Skip to content

Commit 2aca056

Browse files
committed
chore: export utils and motion
1 parent 7daf337 commit 2aca056

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AnimatePresence } from 'framer-motion'
1+
import { AnimatePresence, motion } from 'framer-motion'
22

33
export * from './MotionDiv'
4-
export { AnimatePresence }
4+
export { AnimatePresence, motion }

src/Shared/Components/License/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export { default as ActivateLicenseDialog } from './ActivateLicenseDialog'
22
export { default as DevtronLicenseCard } from './DevtronLicenseCard'
33
export { ICDevtronWithBorder, default as InstallationFingerprintInfo } from './License.components'
44
export * from './types'
5-
export { parseDevtronLicenseData } from './utils'
5+
export { parseDevtronLicenseData, parseDevtronLicenseDTOIntoLicenseCardData } from './utils'

src/Shared/Components/License/utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const getDevtronLicenseStatus = ({
3434
return LicenseStatus.ACTIVE
3535
}
3636

37-
const parseDevtronLicenseDTOIntoLicenseCardData = <isCentralDashboard extends boolean = false>(
37+
export const parseDevtronLicenseDTOIntoLicenseCardData = <isCentralDashboard extends boolean = false>(
3838
licenseDTO: DevtronLicenseDTO<isCentralDashboard>,
3939
currentUserEmail?: isCentralDashboard extends true ? string : never,
4040
): Omit<DevtronLicenseCardProps, 'appTheme'> => {

0 commit comments

Comments
 (0)