@carlonicora/nextjs-jsonapi 1.131.1 → 1.132.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlockNoteEditor-BR3IRGJW.js → BlockNoteEditor-JAELO23S.js} +19 -19
- package/dist/{BlockNoteEditor-BR3IRGJW.js.map → BlockNoteEditor-JAELO23S.js.map} +1 -1
- package/dist/{BlockNoteEditor-PVBZYPMF.mjs → BlockNoteEditor-WZFEJS2B.mjs} +4 -4
- package/dist/billing/index.js +357 -357
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-LBMNRFCY.js → chunk-5IE6DZ2D.js} +153 -77
- package/dist/chunk-5IE6DZ2D.js.map +1 -0
- package/dist/{chunk-MDXT47V4.mjs → chunk-67LIVKYU.mjs} +198 -203
- package/dist/chunk-67LIVKYU.mjs.map +1 -0
- package/dist/{chunk-5MNE72ZE.mjs → chunk-DZL2G7NB.mjs} +77 -1
- package/dist/chunk-DZL2G7NB.mjs.map +1 -0
- package/dist/{chunk-XTLTQQ7X.js → chunk-F6KBHC2X.js} +7 -7
- package/dist/{chunk-XTLTQQ7X.js.map → chunk-F6KBHC2X.js.map} +1 -1
- package/dist/{chunk-5SQFK35K.js → chunk-MP5VURBB.js} +1028 -1033
- package/dist/chunk-MP5VURBB.js.map +1 -0
- package/dist/{chunk-NATPK5ME.mjs → chunk-VSAAVVHY.mjs} +2 -2
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +3 -2
- package/dist/components/index.d.ts +3 -2
- package/dist/components/index.js +4 -4
- package/dist/components/index.mjs +3 -3
- package/dist/contexts/index.d.mts +9 -2
- package/dist/contexts/index.d.ts +9 -2
- package/dist/contexts/index.js +6 -4
- package/dist/contexts/index.js.map +1 -1
- package/dist/contexts/index.mjs +5 -3
- package/dist/core/index.d.mts +11 -1
- package/dist/core/index.d.ts +11 -1
- package/dist/core/index.js +12 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +13 -3
- package/dist/features/help/index.js +39 -39
- package/dist/features/help/index.js.map +1 -1
- package/dist/features/help/index.mjs +5 -5
- package/dist/features/help/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -4
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/containers/ReactMarkdownContainer.tsx +1 -1
- package/src/components/containers/RoundPageContainer.tsx +7 -0
- package/src/components/forms/EditorSheet.tsx +24 -1
- package/src/components/forms/FormDateTime.tsx +5 -0
- package/src/components/navigations/Breadcrumb.tsx +13 -11
- package/src/components/navigations/Header.tsx +3 -1
- package/src/contexts/HeaderChildrenContext.tsx +17 -2
- package/src/features/assistant-message/components/MessageItem.tsx +1 -1
- package/src/features/auth/components/GdprConsentSection.tsx +2 -2
- package/src/features/auth/components/forms/Register.tsx +2 -2
- package/src/features/help/components/HelpArticleBody.tsx +2 -2
- package/src/features/notification/components/common/NotificationErrorBoundary.tsx +1 -4
- package/src/features/notification/contexts/__tests__/NotificationContext.spec.tsx +34 -8
- package/src/features/oauth/components/consent/OAuthConsentScreen.tsx +2 -2
- package/src/features/user/contexts/CurrentUserContext.tsx +43 -9
- package/src/features/user/contexts/__tests__/CurrentUserContext.spec.tsx +149 -6
- package/src/features/waitlist/components/forms/WaitlistForm.tsx +2 -2
- package/src/features/waitlist/components/lists/WaitlistList.tsx +13 -2
- package/src/shadcnui/custom/link.tsx +1 -1
- package/src/shadcnui/ui/accordion.tsx +1 -1
- package/src/shadcnui/ui/alert-dialog.tsx +1 -1
- package/src/shadcnui/ui/alert.tsx +2 -5
- package/src/shadcnui/ui/badge.tsx +1 -1
- package/src/shadcnui/ui/button.tsx +1 -1
- package/src/shadcnui/ui/dialog.tsx +1 -4
- package/src/shadcnui/ui/field.tsx +1 -1
- package/src/utils/__tests__/italian-validators.test.ts +63 -0
- package/src/utils/index.ts +8 -0
- package/src/utils/italian-validators.ts +18 -5
- package/dist/chunk-5MNE72ZE.mjs.map +0 -1
- package/dist/chunk-5SQFK35K.js.map +0 -1
- package/dist/chunk-LBMNRFCY.js.map +0 -1
- package/dist/chunk-MDXT47V4.mjs.map +0 -1
- /package/dist/{BlockNoteEditor-PVBZYPMF.mjs.map → BlockNoteEditor-WZFEJS2B.mjs.map} +0 -0
- /package/dist/{chunk-NATPK5ME.mjs.map → chunk-VSAAVVHY.mjs.map} +0 -0
|
@@ -2,7 +2,7 @@ import {
|
|
|
2
2
|
AbstractService,
|
|
3
3
|
EndpointCreator,
|
|
4
4
|
Modules
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-DZL2G7NB.mjs";
|
|
6
6
|
import {
|
|
7
7
|
setBootstrapper
|
|
8
8
|
} from "./chunk-Z2CB63VG.mjs";
|
|
@@ -296,4 +296,4 @@ export {
|
|
|
296
296
|
ACTION_TYPES,
|
|
297
297
|
RbacService
|
|
298
298
|
};
|
|
299
|
-
//# sourceMappingURL=chunk-
|
|
299
|
+
//# sourceMappingURL=chunk-VSAAVVHY.mjs.map
|
package/dist/client/index.js
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunkMP5VURBBjs = require('../chunk-MP5VURBB.js');
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
|
|
@@ -43,7 +43,7 @@ var _chunk5SQFK35Kjs = require('../chunk-5SQFK35K.js');
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
var
|
|
46
|
+
var _chunkF6KBHC2Xjs = require('../chunk-F6KBHC2X.js');
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
|
|
@@ -55,7 +55,7 @@ var _chunkXTLTQQ7Xjs = require('../chunk-XTLTQQ7X.js');
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
var
|
|
58
|
+
var _chunk5IE6DZ2Djs = require('../chunk-5IE6DZ2D.js');
|
|
59
59
|
|
|
60
60
|
|
|
61
61
|
var _chunkLXKSUWAVjs = require('../chunk-LXKSUWAV.js');
|
|
@@ -125,5 +125,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
125
125
|
|
|
126
126
|
|
|
127
127
|
|
|
128
|
-
exports.ClientJsonApiDelete =
|
|
128
|
+
exports.ClientJsonApiDelete = _chunk5IE6DZ2Djs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunk5IE6DZ2Djs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunk5IE6DZ2Djs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunk5IE6DZ2Djs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunk5IE6DZ2Djs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunkMP5VURBBjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkMP5VURBBjs.TableGeneratorRegistry; exports.buildClientUrl = _chunk5IE6DZ2Djs.buildClientUrl; exports.computeLayeredLayout = _chunkMP5VURBBjs.computeLayeredLayout; exports.configureClientConfig = _chunkF6KBHC2Xjs.configureClientConfig; exports.configureClientJsonApi = _chunk5IE6DZ2Djs.configureClientJsonApi; exports.configureI18n = _chunkF6KBHC2Xjs.configureI18n; exports.configureJsonApi = _chunkF6KBHC2Xjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.fitLayeredLayoutToAspectRatio = _chunkMP5VURBBjs.fitLayeredLayoutToAspectRatio; exports.getApiUrl = _chunkF6KBHC2Xjs.getApiUrl; exports.getAppUrl = _chunkF6KBHC2Xjs.getAppUrl; exports.getClientApiUrl = _chunk5IE6DZ2Djs.getClientApiUrl; exports.getClientAppUrl = _chunk5IE6DZ2Djs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunk5IE6DZ2Djs.getClientTrackablePages; exports.getI18nLink = _chunkF6KBHC2Xjs.getI18nLink; exports.getPublicApiUrl = _chunkF6KBHC2Xjs.getPublicApiUrl; exports.getStripePublishableKey = _chunkF6KBHC2Xjs.getStripePublishableKey; exports.getTrackablePages = _chunkF6KBHC2Xjs.getTrackablePages; exports.registerTableGenerator = _chunkMP5VURBBjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkMP5VURBBjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkMP5VURBBjs.useContentTableStructure; exports.useCustomD3Graph = _chunkMP5VURBBjs.useCustomD3Graph; exports.useDataListRetriever = _chunkMP5VURBBjs.useDataListRetriever; exports.useDebounce = _chunkMP5VURBBjs.useDebounce; exports.useI18nDateFnsLocale = _chunkF6KBHC2Xjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunkF6KBHC2Xjs.useI18nLocale; exports.useI18nRouter = _chunkF6KBHC2Xjs.useI18nRouter; exports.useI18nTranslations = _chunkF6KBHC2Xjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunkMP5VURBBjs.useJsonApiGet; exports.useJsonApiMutation = _chunkMP5VURBBjs.useJsonApiMutation; exports.useNotificationSync = _chunkMP5VURBBjs.useNotificationSync; exports.useOAuthClient = _chunkMP5VURBBjs.useOAuthClient; exports.useOAuthClients = _chunkMP5VURBBjs.useOAuthClients; exports.useOAuthConsent = _chunkMP5VURBBjs.useOAuthConsent; exports.usePageTracker = _chunkMP5VURBBjs.usePageTracker; exports.usePageUrlGenerator = _chunkMP5VURBBjs.usePageUrlGenerator; exports.useRehydration = _chunkMP5VURBBjs.useRehydration; exports.useRehydrationList = _chunkMP5VURBBjs.useRehydrationList; exports.useRoleTableStructure = _chunkMP5VURBBjs.useRoleTableStructure; exports.useSocket = _chunkMP5VURBBjs.useSocket; exports.useSubscriptionStatus = _chunkMP5VURBBjs.useSubscriptionStatus; exports.useTableGenerator = _chunkMP5VURBBjs.useTableGenerator; exports.useUrlRewriter = _chunkMP5VURBBjs.useUrlRewriter; exports.useUserSearch = _chunkMP5VURBBjs.useUserSearch; exports.useUserTableStructure = _chunkMP5VURBBjs.useUserTableStructure;
|
|
129
129
|
//# sourceMappingURL=index.js.map
|
package/dist/client/index.mjs
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
useUrlRewriter,
|
|
28
28
|
useUserSearch,
|
|
29
29
|
useUserTableStructure
|
|
30
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-67LIVKYU.mjs";
|
|
31
31
|
import {
|
|
32
32
|
configureClientConfig,
|
|
33
33
|
configureI18n,
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
useI18nLocale,
|
|
43
43
|
useI18nRouter,
|
|
44
44
|
useI18nTranslations
|
|
45
|
-
} from "../chunk-
|
|
45
|
+
} from "../chunk-VSAAVVHY.mjs";
|
|
46
46
|
import {
|
|
47
47
|
ClientJsonApiDelete,
|
|
48
48
|
ClientJsonApiGet,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
getClientApiUrl,
|
|
55
55
|
getClientAppUrl,
|
|
56
56
|
getClientTrackablePages
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-DZL2G7NB.mjs";
|
|
58
58
|
import {
|
|
59
59
|
getClientToken
|
|
60
60
|
} from "../chunk-AUXK7QSA.mjs";
|
|
@@ -952,8 +952,9 @@ declare function useEditorDialog(isFormDirty: () => boolean, options?: UseEditor
|
|
|
952
952
|
|
|
953
953
|
type BreadcrumbProps = {
|
|
954
954
|
items: BreadcrumbItemData[];
|
|
955
|
+
rootLabel?: string;
|
|
955
956
|
};
|
|
956
|
-
declare function BreadcrumbNavigation({ items }: BreadcrumbProps): React$1.JSX.Element;
|
|
957
|
+
declare function BreadcrumbNavigation({ items, rootLabel }: BreadcrumbProps): React$1.JSX.Element;
|
|
957
958
|
|
|
958
959
|
type TitleProps = {
|
|
959
960
|
type?: string | string[];
|
|
@@ -2432,7 +2433,7 @@ declare function FieldError({ className, children, errors, ...props }: React.Com
|
|
|
2432
2433
|
* </Form>
|
|
2433
2434
|
* );
|
|
2434
2435
|
*/
|
|
2435
|
-
declare const Form: <TFieldValues extends react_hook_form.FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
2436
|
+
declare const Form: <TFieldValues extends react_hook_form.FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, resetDefaultValues, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
2436
2437
|
|
|
2437
2438
|
declare function HoverCard({ ...props }: PreviewCard.Root.Props): React$1.JSX.Element;
|
|
2438
2439
|
declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): React$1.JSX.Element;
|
|
@@ -952,8 +952,9 @@ declare function useEditorDialog(isFormDirty: () => boolean, options?: UseEditor
|
|
|
952
952
|
|
|
953
953
|
type BreadcrumbProps = {
|
|
954
954
|
items: BreadcrumbItemData[];
|
|
955
|
+
rootLabel?: string;
|
|
955
956
|
};
|
|
956
|
-
declare function BreadcrumbNavigation({ items }: BreadcrumbProps): React$1.JSX.Element;
|
|
957
|
+
declare function BreadcrumbNavigation({ items, rootLabel }: BreadcrumbProps): React$1.JSX.Element;
|
|
957
958
|
|
|
958
959
|
type TitleProps = {
|
|
959
960
|
type?: string | string[];
|
|
@@ -2432,7 +2433,7 @@ declare function FieldError({ className, children, errors, ...props }: React.Com
|
|
|
2432
2433
|
* </Form>
|
|
2433
2434
|
* );
|
|
2434
2435
|
*/
|
|
2435
|
-
declare const Form: <TFieldValues extends react_hook_form.FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
2436
|
+
declare const Form: <TFieldValues extends react_hook_form.FieldValues, TContext = any, TTransformedValues = TFieldValues>({ children, watch, getValues, getFieldState, setError, clearErrors, setValue, setValues, trigger, formState, resetField, reset, resetDefaultValues, handleSubmit, unregister, control, register, setFocus, subscribe, }: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
2436
2437
|
|
|
2437
2438
|
declare function HoverCard({ ...props }: PreviewCard.Root.Props): React$1.JSX.Element;
|
|
2438
2439
|
declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): React$1.JSX.Element;
|
package/dist/components/index.js
CHANGED
|
@@ -477,14 +477,14 @@
|
|
|
477
477
|
|
|
478
478
|
|
|
479
479
|
|
|
480
|
-
var
|
|
481
|
-
require('../chunk-
|
|
480
|
+
var _chunkMP5VURBBjs = require('../chunk-MP5VURBB.js');
|
|
481
|
+
require('../chunk-F6KBHC2X.js');
|
|
482
482
|
|
|
483
483
|
|
|
484
484
|
|
|
485
485
|
|
|
486
486
|
|
|
487
|
-
var
|
|
487
|
+
var _chunk5IE6DZ2Djs = require('../chunk-5IE6DZ2D.js');
|
|
488
488
|
require('../chunk-LXKSUWAV.js');
|
|
489
489
|
require('../chunk-IBS6NI7D.js');
|
|
490
490
|
require('../chunk-QWCAOLBD.js');
|
|
@@ -979,5 +979,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
979
979
|
|
|
980
980
|
|
|
981
981
|
|
|
982
|
-
exports.AcceptInvitation = _chunk5SQFK35Kjs.AcceptInvitation; exports.Accordion = _chunk5SQFK35Kjs.Accordion; exports.AccordionContent = _chunk5SQFK35Kjs.AccordionContent; exports.AccordionItem = _chunk5SQFK35Kjs.AccordionItem; exports.AccordionTrigger = _chunk5SQFK35Kjs.AccordionTrigger; exports.ActivateAccount = _chunk5SQFK35Kjs.ActivateAccount; exports.AddUserToRole = _chunk5SQFK35Kjs.AddUserToRole; exports.AdminCompanyContainer = _chunk5SQFK35Kjs.AdminCompanyContainer; exports.AdminUsersList = _chunk5SQFK35Kjs.AdminUsersList; exports.Alert = _chunk5SQFK35Kjs.Alert; exports.AlertAction = _chunk5SQFK35Kjs.AlertAction; exports.AlertDescription = _chunk5SQFK35Kjs.AlertDescription; exports.AlertDialog = _chunk5SQFK35Kjs.AlertDialog; exports.AlertDialogAction = _chunk5SQFK35Kjs.AlertDialogAction; exports.AlertDialogCancel = _chunk5SQFK35Kjs.AlertDialogCancel; exports.AlertDialogContent = _chunk5SQFK35Kjs.AlertDialogContent; exports.AlertDialogDescription = _chunk5SQFK35Kjs.AlertDialogDescription; exports.AlertDialogFooter = _chunk5SQFK35Kjs.AlertDialogFooter; exports.AlertDialogHeader = _chunk5SQFK35Kjs.AlertDialogHeader; exports.AlertDialogMedia = _chunk5SQFK35Kjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunk5SQFK35Kjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunk5SQFK35Kjs.AlertDialogPortal; exports.AlertDialogTitle = _chunk5SQFK35Kjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunk5SQFK35Kjs.AlertDialogTrigger; exports.AlertTitle = _chunk5SQFK35Kjs.AlertTitle; exports.AllUsersListContainer = _chunk5SQFK35Kjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunk5SQFK35Kjs.AllowedUsersDetails; exports.AssistantContainer = _chunk5SQFK35Kjs.AssistantContainer; exports.AttributeElement = _chunk5SQFK35Kjs.AttributeElement; exports.AuthContainer = _chunk5SQFK35Kjs.AuthContainer; exports.Avatar = _chunk5SQFK35Kjs.Avatar; exports.AvatarBadge = _chunk5SQFK35Kjs.AvatarBadge; exports.AvatarFallback = _chunk5SQFK35Kjs.AvatarFallback; exports.AvatarGroup = _chunk5SQFK35Kjs.AvatarGroup; exports.AvatarGroupCount = _chunk5SQFK35Kjs.AvatarGroupCount; exports.AvatarImage = _chunk5SQFK35Kjs.AvatarImage; exports.BackupCodesDialog = _chunk5SQFK35Kjs.BackupCodesDialog; exports.Badge = _chunk5SQFK35Kjs.Badge; exports.BlockNoteEditorContainer = _chunk5SQFK35Kjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunk5SQFK35Kjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunk5SQFK35Kjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunk5SQFK35Kjs.BlockNoteViewerContainer; exports.Board = _chunk5SQFK35Kjs.KanbanBoard; exports.Breadcrumb = _chunk5SQFK35Kjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunk5SQFK35Kjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunk5SQFK35Kjs.BreadcrumbItem; exports.BreadcrumbLink = _chunk5SQFK35Kjs.BreadcrumbLink; exports.BreadcrumbList = _chunk5SQFK35Kjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunk5SQFK35Kjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunk5SQFK35Kjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunk5SQFK35Kjs.BreadcrumbSeparator; exports.Button = _chunk5SQFK35Kjs.Button; exports.Calendar = _chunk5SQFK35Kjs.Calendar; exports.CalendarDayButton = _chunk5SQFK35Kjs.CalendarDayButton; exports.Card = _chunk5SQFK35Kjs.Card; exports.CardAction = _chunk5SQFK35Kjs.CardAction; exports.CardContent = _chunk5SQFK35Kjs.CardContent; exports.CardDescription = _chunk5SQFK35Kjs.CardDescription; exports.CardFooter = _chunk5SQFK35Kjs.CardFooter; exports.CardHeader = _chunk5SQFK35Kjs.CardHeader; exports.CardTitle = _chunk5SQFK35Kjs.CardTitle; exports.Carousel = _chunk5SQFK35Kjs.Carousel; exports.CarouselContent = _chunk5SQFK35Kjs.CarouselContent; exports.CarouselItem = _chunk5SQFK35Kjs.CarouselItem; exports.CarouselNext = _chunk5SQFK35Kjs.CarouselNext; exports.CarouselPrevious = _chunk5SQFK35Kjs.CarouselPrevious; exports.ChartContainer = _chunk5SQFK35Kjs.ChartContainer; exports.ChartLegend = _chunk5SQFK35Kjs.ChartLegend; exports.ChartLegendContent = _chunk5SQFK35Kjs.ChartLegendContent; exports.ChartStyle = _chunk5SQFK35Kjs.ChartStyle; exports.ChartTooltip = _chunk5SQFK35Kjs.ChartTooltip; exports.ChartTooltipContent = _chunk5SQFK35Kjs.ChartTooltipContent; exports.Checkbox = _chunk5SQFK35Kjs.Checkbox; exports.Collapsible = _chunk5SQFK35Kjs.Collapsible; exports.CollapsibleContent = _chunk5SQFK35Kjs.CollapsibleContent; exports.CollapsibleTrigger = _chunk5SQFK35Kjs.CollapsibleTrigger; exports.Column = _chunk5SQFK35Kjs.KanbanColumn; exports.ColumnHandle = _chunk5SQFK35Kjs.KanbanColumnHandle; exports.Combobox = _chunk5SQFK35Kjs.Combobox; exports.ComboboxChip = _chunk5SQFK35Kjs.ComboboxChip; exports.ComboboxChips = _chunk5SQFK35Kjs.ComboboxChips; exports.ComboboxChipsInput = _chunk5SQFK35Kjs.ComboboxChipsInput; exports.ComboboxCollection = _chunk5SQFK35Kjs.ComboboxCollection; exports.ComboboxContent = _chunk5SQFK35Kjs.ComboboxContent; exports.ComboboxEmpty = _chunk5SQFK35Kjs.ComboboxEmpty; exports.ComboboxGroup = _chunk5SQFK35Kjs.ComboboxGroup; exports.ComboboxInput = _chunk5SQFK35Kjs.ComboboxInput; exports.ComboboxItem = _chunk5SQFK35Kjs.ComboboxItem; exports.ComboboxLabel = _chunk5SQFK35Kjs.ComboboxLabel; exports.ComboboxList = _chunk5SQFK35Kjs.ComboboxList; exports.ComboboxSeparator = _chunk5SQFK35Kjs.ComboboxSeparator; exports.ComboboxTrigger = _chunk5SQFK35Kjs.ComboboxTrigger; exports.ComboboxValue = _chunk5SQFK35Kjs.ComboboxValue; exports.Command = _chunk5SQFK35Kjs.Command; exports.CommandDialog = _chunk5SQFK35Kjs.CommandDialog; exports.CommandEmpty = _chunk5SQFK35Kjs.CommandEmpty; exports.CommandGroup = _chunk5SQFK35Kjs.CommandGroup; exports.CommandInput = _chunk5SQFK35Kjs.CommandInput; exports.CommandItem = _chunk5SQFK35Kjs.CommandItem; exports.CommandList = _chunk5SQFK35Kjs.CommandList; exports.CommandSeparator = _chunk5SQFK35Kjs.CommandSeparator; exports.CommandShortcut = _chunk5SQFK35Kjs.CommandShortcut; exports.CommonAddTrigger = _chunk5SQFK35Kjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunk5SQFK35Kjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunk5SQFK35Kjs.CommonAssociationTrigger; exports.CommonDeleter = _chunk5SQFK35Kjs.CommonDeleter; exports.CommonEditorButtons = _chunk5SQFK35Kjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunk5SQFK35Kjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunk5SQFK35Kjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunk5SQFK35Kjs.CommonEditorTrigger; exports.CompaniesList = _chunk5SQFK35Kjs.CompaniesList; exports.CompanyConfigurationEditor = _chunk5SQFK35Kjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunk5SQFK35Kjs.CompanyContainer; exports.CompanyContent = _chunk5SQFK35Kjs.CompanyContent; exports.CompanyDeleter = _chunk5SQFK35Kjs.CompanyDeleter; exports.CompanyDetails = _chunk5SQFK35Kjs.CompanyDetails; exports.CompanyEditor = _chunk5SQFK35Kjs.CompanyEditor; exports.CompanyUsersList = _chunk5SQFK35Kjs.CompanyUsersList; exports.ConfirmDialog = _chunk5SQFK35Kjs.ConfirmDialog; exports.ContentListGrid = _chunk5SQFK35Kjs.ContentListGrid; exports.ContentListTable = _chunk5SQFK35Kjs.ContentListTable; exports.ContentTableSearch = _chunk5SQFK35Kjs.ContentTableSearch; exports.ContentTitle = _chunk5SQFK35Kjs.ContentTitle; exports.ContentsList = _chunk5SQFK35Kjs.ContentsList; exports.ContentsListById = _chunk5SQFK35Kjs.ContentsListById; exports.ContextMenu = _chunk5SQFK35Kjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunk5SQFK35Kjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunk5SQFK35Kjs.ContextMenuContent; exports.ContextMenuGroup = _chunk5SQFK35Kjs.ContextMenuGroup; exports.ContextMenuItem = _chunk5SQFK35Kjs.ContextMenuItem; exports.ContextMenuLabel = _chunk5SQFK35Kjs.ContextMenuLabel; exports.ContextMenuPortal = _chunk5SQFK35Kjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunk5SQFK35Kjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunk5SQFK35Kjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunk5SQFK35Kjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunk5SQFK35Kjs.ContextMenuShortcut; exports.ContextMenuSub = _chunk5SQFK35Kjs.ContextMenuSub; exports.ContextMenuSubContent = _chunk5SQFK35Kjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunk5SQFK35Kjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunk5SQFK35Kjs.ContextMenuTrigger; exports.ContributorsList = _chunk5SQFK35Kjs.ContributorsList; exports.Cookies = _chunk5SQFK35Kjs.Cookies; exports.CurrencyInput = _chunk5SQFK35Kjs.CurrencyInput; exports.DatePickerPopover = _chunk5SQFK35Kjs.DatePickerPopover; exports.DateRangeSelector = _chunk5SQFK35Kjs.DateRangeSelector; exports.DetailField = _chunk5SQFK35Kjs.DetailField; exports.Dialog = _chunk5SQFK35Kjs.Dialog; exports.DialogClose = _chunk5SQFK35Kjs.DialogClose; exports.DialogContent = _chunk5SQFK35Kjs.DialogContent; exports.DialogDescription = _chunk5SQFK35Kjs.DialogDescription; exports.DialogFooter = _chunk5SQFK35Kjs.DialogFooter; exports.DialogHeader = _chunk5SQFK35Kjs.DialogHeader; exports.DialogOverlay = _chunk5SQFK35Kjs.DialogOverlay; exports.DialogPortal = _chunk5SQFK35Kjs.DialogPortal; exports.DialogTitle = _chunk5SQFK35Kjs.DialogTitle; exports.DialogTrigger = _chunk5SQFK35Kjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunk5SQFK35Kjs.DisableTwoFactorDialog; exports.Drawer = _chunk5SQFK35Kjs.Drawer; exports.DrawerClose = _chunk5SQFK35Kjs.DrawerClose; exports.DrawerContent = _chunk5SQFK35Kjs.DrawerContent; exports.DrawerDescription = _chunk5SQFK35Kjs.DrawerDescription; exports.DrawerFooter = _chunk5SQFK35Kjs.DrawerFooter; exports.DrawerHeader = _chunk5SQFK35Kjs.DrawerHeader; exports.DrawerOverlay = _chunk5SQFK35Kjs.DrawerOverlay; exports.DrawerPortal = _chunk5SQFK35Kjs.DrawerPortal; exports.DrawerTitle = _chunk5SQFK35Kjs.DrawerTitle; exports.DrawerTrigger = _chunk5SQFK35Kjs.DrawerTrigger; exports.DropdownMenu = _chunk5SQFK35Kjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunk5SQFK35Kjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunk5SQFK35Kjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunk5SQFK35Kjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunk5SQFK35Kjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunk5SQFK35Kjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunk5SQFK35Kjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunk5SQFK35Kjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunk5SQFK35Kjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunk5SQFK35Kjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunk5SQFK35Kjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunk5SQFK35Kjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunk5SQFK35Kjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunk5SQFK35Kjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunk5SQFK35Kjs.DropdownMenuTrigger; exports.EditableAvatar = _chunk5SQFK35Kjs.EditableAvatar; exports.EditorSheet = _chunk5SQFK35Kjs.EditorSheet; exports.EmptyState = _chunk5SQFK35Kjs.EmptyState; exports.EntityAvatar = _chunk5SQFK35Kjs.EntityAvatar; exports.EntityHero = _chunk5SQFK35Kjs.EntityHero; exports.EntityHeroAvatar = _chunk5SQFK35Kjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunk5SQFK35Kjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunk5SQFK35Kjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunk5SQFK35Kjs.EntityMultiSelector; exports.EntitySection = _chunk5SQFK35Kjs.EntitySection; exports.EntitySelector = _chunk5SQFK35Kjs.EntitySelector; exports.ErrorDetails = _chunk5SQFK35Kjs.ErrorDetails; exports.Field = _chunk5SQFK35Kjs.Field; exports.FieldContent = _chunk5SQFK35Kjs.FieldContent; exports.FieldDescription = _chunk5SQFK35Kjs.FieldDescription; exports.FieldError = _chunk5SQFK35Kjs.FieldError; exports.FieldGroup = _chunk5SQFK35Kjs.FieldGroup; exports.FieldLabel = _chunk5SQFK35Kjs.FieldLabel; exports.FieldLegend = _chunk5SQFK35Kjs.FieldLegend; exports.FieldSeparator = _chunk5SQFK35Kjs.FieldSeparator; exports.FieldSet = _chunk5SQFK35Kjs.FieldSet; exports.FieldTitle = _chunk5SQFK35Kjs.FieldTitle; exports.FileInput = _chunk5SQFK35Kjs.FileInput; exports.FileUploader = _chunk5SQFK35Kjs.FileUploader; exports.FileUploaderContent = _chunk5SQFK35Kjs.FileUploaderContent; exports.FileUploaderItem = _chunk5SQFK35Kjs.FileUploaderItem; exports.FiscalDataDisplay = _chunk5SQFK35Kjs.FiscalDataDisplay; exports.ForgotPassword = _chunk5SQFK35Kjs.ForgotPassword; exports.Form = _chunk5SQFK35Kjs.Form; exports.FormBlockNote = _chunk5SQFK35Kjs.FormBlockNote; exports.FormBody = _chunk5SQFK35Kjs.FormBody; exports.FormCheckbox = _chunk5SQFK35Kjs.FormCheckbox; exports.FormCol = _chunk5SQFK35Kjs.FormCol; exports.FormDate = _chunk5SQFK35Kjs.FormDate; exports.FormDateTime = _chunk5SQFK35Kjs.FormDateTime; exports.FormFeatures = _chunk5SQFK35Kjs.FormFeatures; exports.FormFieldWrapper = _chunk5SQFK35Kjs.FormFieldWrapper; exports.FormInput = _chunk5SQFK35Kjs.FormInput; exports.FormPassword = _chunk5SQFK35Kjs.FormPassword; exports.FormPlaceAutocomplete = _chunk5SQFK35Kjs.FormPlaceAutocomplete; exports.FormRoles = _chunk5SQFK35Kjs.FormRoles; exports.FormRow = _chunk5SQFK35Kjs.FormRow; exports.FormSection = _chunk5SQFK35Kjs.FormSection; exports.FormSelect = _chunk5SQFK35Kjs.FormSelect; exports.FormSlider = _chunk5SQFK35Kjs.FormSlider; exports.FormSwitch = _chunk5SQFK35Kjs.FormSwitch; exports.FormTextarea = _chunk5SQFK35Kjs.FormTextarea; exports.GdprConsentCheckbox = _chunk5SQFK35Kjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunk5SQFK35Kjs.GdprConsentSection; exports.Header = _chunk5SQFK35Kjs.Header; exports.HoverCard = _chunk5SQFK35Kjs.HoverCard; exports.HoverCardContent = _chunk5SQFK35Kjs.HoverCardContent; exports.HoverCardTrigger = _chunk5SQFK35Kjs.HoverCardTrigger; exports.HowToCommand = _chunk5SQFK35Kjs.HowToCommand; exports.HowToCommandViewer = _chunk5SQFK35Kjs.HowToCommandViewer; exports.HowToContainer = _chunk5SQFK35Kjs.HowToContainer; exports.HowToContent = _chunk5SQFK35Kjs.HowToContent; exports.HowToDeleter = _chunk5SQFK35Kjs.HowToDeleter; exports.HowToDetails = _chunk5SQFK35Kjs.HowToDetails; exports.HowToEditor = _chunk5SQFK35Kjs.HowToEditor; exports.HowToList = _chunk5SQFK35Kjs.HowToList; exports.HowToListContainer = _chunk5SQFK35Kjs.HowToListContainer; exports.HowToMultiSelector = _chunk5SQFK35Kjs.HowToMultiSelector; exports.HowToSelector = _chunk5SQFK35Kjs.HowToSelector; exports.Input = _chunk5SQFK35Kjs.Input; exports.InputGroup = _chunk5SQFK35Kjs.InputGroup; exports.InputGroupAddon = _chunk5SQFK35Kjs.InputGroupAddon; exports.InputGroupButton = _chunk5SQFK35Kjs.InputGroupButton; exports.InputGroupInput = _chunk5SQFK35Kjs.InputGroupInput; exports.InputGroupText = _chunk5SQFK35Kjs.InputGroupText; exports.InputGroupTextarea = _chunk5SQFK35Kjs.InputGroupTextarea; exports.InputOTP = _chunk5SQFK35Kjs.InputOTP; exports.InputOTPGroup = _chunk5SQFK35Kjs.InputOTPGroup; exports.InputOTPSeparator = _chunk5SQFK35Kjs.InputOTPSeparator; exports.InputOTPSlot = _chunk5SQFK35Kjs.InputOTPSlot; exports.ItalianFiscalData = _chunk5SQFK35Kjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunk5SQFK35Kjs.ItalianFiscalDataDisplay; exports.Item = _chunk5SQFK35Kjs.KanbanItem; exports.ItemHandle = _chunk5SQFK35Kjs.KanbanItemHandle; exports.Kanban = _chunk5SQFK35Kjs.KanbanRoot; exports.KanbanBoard = _chunk5SQFK35Kjs.KanbanBoard; exports.KanbanColumn = _chunk5SQFK35Kjs.KanbanColumn; exports.KanbanColumnHandle = _chunk5SQFK35Kjs.KanbanColumnHandle; exports.KanbanItem = _chunk5SQFK35Kjs.KanbanItem; exports.KanbanItemHandle = _chunk5SQFK35Kjs.KanbanItemHandle; exports.KanbanOverlay = _chunk5SQFK35Kjs.KanbanOverlay; exports.Label = _chunk5SQFK35Kjs.Label; exports.LandingComponent = _chunk5SQFK35Kjs.LandingComponent; exports.Link = _chunk5SQFK35Kjs.Link; exports.Login = _chunk5SQFK35Kjs.Login; exports.Logout = _chunk5SQFK35Kjs.Logout; exports.MessageItem = _chunk5SQFK35Kjs.MessageItem; exports.MessageList = _chunk5SQFK35Kjs.MessageList; exports.MessageSourcesPanel = _chunk5SQFK35Kjs.MessageSourcesPanel; exports.MicroLabel = _chunk5SQFK35Kjs.MicroLabel; exports.ModeToggleSwitch = _chunk5SQFK35Kjs.ModeToggleSwitch; exports.MultiSelect = _chunk5SQFK35Kjs.MultiSelect; exports.MultipleSelector = _chunk5SQFK35Kjs.MultipleSelector; exports.NavigationMenu = _chunk5SQFK35Kjs.NavigationMenu; exports.NavigationMenuContent = _chunk5SQFK35Kjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunk5SQFK35Kjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunk5SQFK35Kjs.NavigationMenuItem; exports.NavigationMenuLink = _chunk5SQFK35Kjs.NavigationMenuLink; exports.NavigationMenuList = _chunk5SQFK35Kjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunk5SQFK35Kjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunk5SQFK35Kjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunk5SQFK35Kjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunk5SQFK35Kjs.NotificationMenuItem; exports.NotificationModal = _chunk5SQFK35Kjs.NotificationModal; exports.NotificationToast = _chunk5SQFK35Kjs.NotificationToast; exports.NotificationsList = _chunk5SQFK35Kjs.NotificationsList; exports.NotificationsListContainer = _chunk5SQFK35Kjs.NotificationsListContainer; exports.OAuthClientCard = _chunk5SQFK35Kjs.OAuthClientCard; exports.OAuthClientDetail = _chunk5SQFK35Kjs.OAuthClientDetail; exports.OAuthClientForm = _chunk5SQFK35Kjs.OAuthClientForm; exports.OAuthClientList = _chunk5SQFK35Kjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunk5SQFK35Kjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunk5SQFK35Kjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunk5SQFK35Kjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunk5SQFK35Kjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunk5SQFK35Kjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunk5SQFK35Kjs.OAuthScopeList; exports.OAuthScopeSelector = _chunk5SQFK35Kjs.OAuthScopeSelector; exports.OnboardingCard = _chunk5SQFK35Kjs.OnboardingCard; exports.Overlay = _chunk5SQFK35Kjs.KanbanOverlay; exports.PageContainer = _chunk5SQFK35Kjs.PageContainer; exports.PageContainerContentDetails = _chunk5SQFK35Kjs.PageContainerContentDetails; exports.PageContentContainer = _chunk5SQFK35Kjs.PageContentContainer; exports.PageSection = _chunk5SQFK35Kjs.PageSection; exports.PasskeyButton = _chunk5SQFK35Kjs.PasskeyButton; exports.PasskeyList = _chunk5SQFK35Kjs.PasskeyList; exports.PasskeySetupDialog = _chunk5SQFK35Kjs.PasskeySetupDialog; exports.PasswordInput = _chunk5SQFK35Kjs.PasswordInput; exports.Popover = _chunk5SQFK35Kjs.Popover; exports.PopoverContent = _chunk5SQFK35Kjs.PopoverContent; exports.PopoverDescription = _chunk5SQFK35Kjs.PopoverDescription; exports.PopoverHeader = _chunk5SQFK35Kjs.PopoverHeader; exports.PopoverTitle = _chunk5SQFK35Kjs.PopoverTitle; exports.PopoverTrigger = _chunk5SQFK35Kjs.PopoverTrigger; exports.Progress = _chunk5SQFK35Kjs.Progress; exports.ProgressIndicator = _chunk5SQFK35Kjs.ProgressIndicator; exports.ProgressLabel = _chunk5SQFK35Kjs.ProgressLabel; exports.ProgressTrack = _chunk5SQFK35Kjs.ProgressTrack; exports.ProgressValue = _chunk5SQFK35Kjs.ProgressValue; exports.PushNotificationProvider = _chunk5SQFK35Kjs.PushNotificationProvider; exports.RadioGroup = _chunk5SQFK35Kjs.RadioGroup; exports.RadioGroupItem = _chunk5SQFK35Kjs.RadioGroupItem; exports.RbacByRoleContainer = _chunk5SQFK35Kjs.RbacByRoleContainer; exports.RbacContainer = _chunk5SQFK35Kjs.RbacContainer; exports.RbacPermissionCell = _chunk5SQFK35Kjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunk5SQFK35Kjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunk5SQFK35Kjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunk5SQFK35Kjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunk5SQFK35Kjs.ReferralCodeCapture; exports.ReferralDialog = _chunk5SQFK35Kjs.ReferralDialog; exports.ReferralWidget = _chunk5SQFK35Kjs.ReferralWidget; exports.RefreshUser = _chunk5SQFK35Kjs.RefreshUser; exports.RelevantContentsList = _chunk5SQFK35Kjs.RelevantContentsList; exports.RelevantUsersList = _chunk5SQFK35Kjs.RelevantUsersList; exports.RemoveUserFromRole = _chunk5SQFK35Kjs.RemoveUserFromRole; exports.ResetPassword = _chunk5SQFK35Kjs.ResetPassword; exports.ResizableHandle = _chunk5SQFK35Kjs.ResizableHandle; exports.ResizablePanel = _chunk5SQFK35Kjs.ResizablePanel; exports.ResizablePanelGroup = _chunk5SQFK35Kjs.ResizablePanelGroup; exports.RoleContainer = _chunk5SQFK35Kjs.RoleContainer; exports.RoleDetails = _chunk5SQFK35Kjs.RoleDetails; exports.RoleUsersList = _chunk5SQFK35Kjs.RoleUsersList; exports.RolesList = _chunk5SQFK35Kjs.RolesList; exports.Root = _chunk5SQFK35Kjs.KanbanRoot; exports.RoundPageContainer = _chunk5SQFK35Kjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunk5SQFK35Kjs.RoundPageContainerTitle; exports.ScrollArea = _chunk5SQFK35Kjs.ScrollArea; exports.ScrollBar = _chunk5SQFK35Kjs.ScrollBar; exports.SectionHeader = _chunk5SQFK35Kjs.SectionHeader; exports.SecurityContainer = _chunk5SQFK35Kjs.SecurityContainer; exports.Select = _chunk5SQFK35Kjs.Select; exports.SelectContent = _chunk5SQFK35Kjs.SelectContent; exports.SelectGroup = _chunk5SQFK35Kjs.SelectGroup; exports.SelectItem = _chunk5SQFK35Kjs.SelectItem; exports.SelectLabel = _chunk5SQFK35Kjs.SelectLabel; exports.SelectScrollDownButton = _chunk5SQFK35Kjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunk5SQFK35Kjs.SelectScrollUpButton; exports.SelectSeparator = _chunk5SQFK35Kjs.SelectSeparator; exports.SelectTrigger = _chunk5SQFK35Kjs.SelectTrigger; exports.SelectValue = _chunk5SQFK35Kjs.SelectValue; exports.Separator = _chunk5SQFK35Kjs.Separator; exports.Sheet = _chunk5SQFK35Kjs.Sheet; exports.SheetClose = _chunk5SQFK35Kjs.SheetClose; exports.SheetContent = _chunk5SQFK35Kjs.SheetContent; exports.SheetDescription = _chunk5SQFK35Kjs.SheetDescription; exports.SheetFooter = _chunk5SQFK35Kjs.SheetFooter; exports.SheetHeader = _chunk5SQFK35Kjs.SheetHeader; exports.SheetTitle = _chunk5SQFK35Kjs.SheetTitle; exports.SheetTrigger = _chunk5SQFK35Kjs.SheetTrigger; exports.Sidebar = _chunk5SQFK35Kjs.Sidebar; exports.SidebarContent = _chunk5SQFK35Kjs.SidebarContent; exports.SidebarFooter = _chunk5SQFK35Kjs.SidebarFooter; exports.SidebarGroup = _chunk5SQFK35Kjs.SidebarGroup; exports.SidebarGroupAction = _chunk5SQFK35Kjs.SidebarGroupAction; exports.SidebarGroupContent = _chunk5SQFK35Kjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunk5SQFK35Kjs.SidebarGroupLabel; exports.SidebarHeader = _chunk5SQFK35Kjs.SidebarHeader; exports.SidebarInput = _chunk5SQFK35Kjs.SidebarInput; exports.SidebarInset = _chunk5SQFK35Kjs.SidebarInset; exports.SidebarMenu = _chunk5SQFK35Kjs.SidebarMenu; exports.SidebarMenuAction = _chunk5SQFK35Kjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunk5SQFK35Kjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunk5SQFK35Kjs.SidebarMenuButton; exports.SidebarMenuItem = _chunk5SQFK35Kjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunk5SQFK35Kjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunk5SQFK35Kjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunk5SQFK35Kjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunk5SQFK35Kjs.SidebarMenuSubItem; exports.SidebarProvider = _chunk5SQFK35Kjs.SidebarProvider; exports.SidebarRail = _chunk5SQFK35Kjs.SidebarRail; exports.SidebarSeparator = _chunk5SQFK35Kjs.SidebarSeparator; exports.SidebarTrigger = _chunk5SQFK35Kjs.SidebarTrigger; exports.Skeleton = _chunk5SQFK35Kjs.Skeleton; exports.Slider = _chunk5SQFK35Kjs.Slider; exports.Spinner = _chunk5SQFK35Kjs.Spinner; exports.Switch = _chunk5SQFK35Kjs.Switch; exports.Table = _chunk5SQFK35Kjs.Table; exports.TableBody = _chunk5SQFK35Kjs.TableBody; exports.TableCaption = _chunk5SQFK35Kjs.TableCaption; exports.TableCell = _chunk5SQFK35Kjs.TableCell; exports.TableCellAvatar = _chunk5SQFK35Kjs.TableCellAvatar; exports.TableFooter = _chunk5SQFK35Kjs.TableFooter; exports.TableHead = _chunk5SQFK35Kjs.TableHead; exports.TableHeader = _chunk5SQFK35Kjs.TableHeader; exports.TableRow = _chunk5SQFK35Kjs.TableRow; exports.Tabs = _chunk5SQFK35Kjs.Tabs; exports.TabsContainer = _chunk5SQFK35Kjs.TabsContainer; exports.TabsContent = _chunk5SQFK35Kjs.TabsContent; exports.TabsList = _chunk5SQFK35Kjs.TabsList; exports.TabsTrigger = _chunk5SQFK35Kjs.TabsTrigger; exports.Textarea = _chunk5SQFK35Kjs.Textarea; exports.Toaster = _chunk5SQFK35Kjs.Toaster; exports.Toggle = _chunk5SQFK35Kjs.Toggle; exports.TokenStatusIndicator = _chunk5SQFK35Kjs.TokenStatusIndicator; exports.Tooltip = _chunk5SQFK35Kjs.Tooltip; exports.TooltipContent = _chunk5SQFK35Kjs.TooltipContent; exports.TooltipProvider = _chunk5SQFK35Kjs.TooltipProvider; exports.TooltipTrigger = _chunk5SQFK35Kjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunk5SQFK35Kjs.TotpAuthenticatorList; exports.TotpInput = _chunk5SQFK35Kjs.TotpInput; exports.TotpSetupDialog = _chunk5SQFK35Kjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunk5SQFK35Kjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunk5SQFK35Kjs.TwoFactorSettings; exports.UserAvatar = _chunk5SQFK35Kjs.UserAvatar; exports.UserAvatarEditor = _chunk5SQFK35Kjs.UserAvatarEditor; exports.UserAvatarList = _chunk5SQFK35Kjs.UserAvatarList; exports.UserContainer = _chunk5SQFK35Kjs.UserContainer; exports.UserContent = _chunk5SQFK35Kjs.UserContent; exports.UserDeleter = _chunk5SQFK35Kjs.UserDeleter; exports.UserEditor = _chunk5SQFK35Kjs.UserEditor; exports.UserIndexContainer = _chunk5SQFK35Kjs.UserIndexContainer; exports.UserIndexDetails = _chunk5SQFK35Kjs.UserIndexDetails; exports.UserListInAdd = _chunk5SQFK35Kjs.UserListInAdd; exports.UserMultiSelect = _chunk5SQFK35Kjs.UserMultiSelect; exports.UserReactivator = _chunk5SQFK35Kjs.UserReactivator; exports.UserResentInvitationEmail = _chunk5SQFK35Kjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunk5SQFK35Kjs.UserRoleAdd; exports.UserRolesList = _chunk5SQFK35Kjs.UserRolesList; exports.UserSearchPopover = _chunk5SQFK35Kjs.UserSearchPopover; exports.UserSelector = _chunk5SQFK35Kjs.UserSelector; exports.UserStanadaloneDetails = _chunk5SQFK35Kjs.UserStanadaloneDetails; exports.UsersList = _chunk5SQFK35Kjs.UsersList; exports.UsersListByContentIds = _chunk5SQFK35Kjs.UsersListByContentIds; exports.UsersListContainer = _chunk5SQFK35Kjs.UsersListContainer; exports.WaitlistConfirmation = _chunk5SQFK35Kjs.WaitlistConfirmation; exports.WaitlistForm = _chunk5SQFK35Kjs.WaitlistForm; exports.WaitlistHeroSection = _chunk5SQFK35Kjs.WaitlistHeroSection; exports.WaitlistList = _chunk5SQFK35Kjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunk5SQFK35Kjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunk5SQFK35Kjs.WaitlistSuccessState; exports.badgeVariants = _chunk5SQFK35Kjs.badgeVariants; exports.buttonVariants = _chunk5SQFK35Kjs.buttonVariants; exports.cellComponent = _chunk5SQFK35Kjs.cellComponent; exports.cellDate = _chunk5SQFK35Kjs.cellDate; exports.cellDateTime = _chunk5SQFK35Kjs.cellDateTime; exports.cellId = _chunk5SQFK35Kjs.cellId; exports.cellLink = _chunk5SQFK35Kjs.cellLink; exports.cellUrl = _chunk5SQFK35Kjs.cellUrl; exports.createMentionInlineContentSpec = _chunk5SQFK35Kjs.createMentionInlineContentSpec; exports.errorToast = _chunk5SQFK35Kjs.errorToast; exports.generateNotificationData = _chunk5SQFK35Kjs.generateNotificationData; exports.getIcon = _chunkLBMNRFCYjs.getIcon; exports.getIconByModule = _chunkLBMNRFCYjs.getIconByModule; exports.getIconByModuleName = _chunkLBMNRFCYjs.getIconByModuleName; exports.getInitials = _chunkLBMNRFCYjs.getInitials; exports.mentionDataAttrs = _chunk5SQFK35Kjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunk5SQFK35Kjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunk5SQFK35Kjs.parseFiscalData; exports.parseMentionElement = _chunk5SQFK35Kjs.parseMentionElement; exports.partitionTabs = _chunk5SQFK35Kjs.partitionTabs; exports.spinnerVariants = _chunk5SQFK35Kjs.spinnerVariants; exports.tabsListVariants = _chunk5SQFK35Kjs.tabsListVariants; exports.toggleVariants = _chunk5SQFK35Kjs.toggleVariants; exports.triggerAssociationToast = _chunk5SQFK35Kjs.triggerAssociationToast; exports.useCarousel = _chunk5SQFK35Kjs.useCarousel; exports.useComboboxAnchor = _chunk5SQFK35Kjs.useComboboxAnchor; exports.useDebounce = _chunk5SQFK35Kjs.useDebounce2; exports.useEditorDialog = _chunk5SQFK35Kjs.useEditorDialog; exports.useFileUpload = _chunk5SQFK35Kjs.useFileUpload; exports.useMentionInsert = _chunk5SQFK35Kjs.useMentionInsert; exports.useSidebar = _chunk5SQFK35Kjs.useSidebar;
|
|
982
|
+
exports.AcceptInvitation = _chunkMP5VURBBjs.AcceptInvitation; exports.Accordion = _chunkMP5VURBBjs.Accordion; exports.AccordionContent = _chunkMP5VURBBjs.AccordionContent; exports.AccordionItem = _chunkMP5VURBBjs.AccordionItem; exports.AccordionTrigger = _chunkMP5VURBBjs.AccordionTrigger; exports.ActivateAccount = _chunkMP5VURBBjs.ActivateAccount; exports.AddUserToRole = _chunkMP5VURBBjs.AddUserToRole; exports.AdminCompanyContainer = _chunkMP5VURBBjs.AdminCompanyContainer; exports.AdminUsersList = _chunkMP5VURBBjs.AdminUsersList; exports.Alert = _chunkMP5VURBBjs.Alert; exports.AlertAction = _chunkMP5VURBBjs.AlertAction; exports.AlertDescription = _chunkMP5VURBBjs.AlertDescription; exports.AlertDialog = _chunkMP5VURBBjs.AlertDialog; exports.AlertDialogAction = _chunkMP5VURBBjs.AlertDialogAction; exports.AlertDialogCancel = _chunkMP5VURBBjs.AlertDialogCancel; exports.AlertDialogContent = _chunkMP5VURBBjs.AlertDialogContent; exports.AlertDialogDescription = _chunkMP5VURBBjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkMP5VURBBjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkMP5VURBBjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkMP5VURBBjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkMP5VURBBjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkMP5VURBBjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkMP5VURBBjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkMP5VURBBjs.AlertDialogTrigger; exports.AlertTitle = _chunkMP5VURBBjs.AlertTitle; exports.AllUsersListContainer = _chunkMP5VURBBjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkMP5VURBBjs.AllowedUsersDetails; exports.AssistantContainer = _chunkMP5VURBBjs.AssistantContainer; exports.AttributeElement = _chunkMP5VURBBjs.AttributeElement; exports.AuthContainer = _chunkMP5VURBBjs.AuthContainer; exports.Avatar = _chunkMP5VURBBjs.Avatar; exports.AvatarBadge = _chunkMP5VURBBjs.AvatarBadge; exports.AvatarFallback = _chunkMP5VURBBjs.AvatarFallback; exports.AvatarGroup = _chunkMP5VURBBjs.AvatarGroup; exports.AvatarGroupCount = _chunkMP5VURBBjs.AvatarGroupCount; exports.AvatarImage = _chunkMP5VURBBjs.AvatarImage; exports.BackupCodesDialog = _chunkMP5VURBBjs.BackupCodesDialog; exports.Badge = _chunkMP5VURBBjs.Badge; exports.BlockNoteEditorContainer = _chunkMP5VURBBjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkMP5VURBBjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkMP5VURBBjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkMP5VURBBjs.BlockNoteViewerContainer; exports.Board = _chunkMP5VURBBjs.KanbanBoard; exports.Breadcrumb = _chunkMP5VURBBjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkMP5VURBBjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkMP5VURBBjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkMP5VURBBjs.BreadcrumbLink; exports.BreadcrumbList = _chunkMP5VURBBjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkMP5VURBBjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkMP5VURBBjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkMP5VURBBjs.BreadcrumbSeparator; exports.Button = _chunkMP5VURBBjs.Button; exports.Calendar = _chunkMP5VURBBjs.Calendar; exports.CalendarDayButton = _chunkMP5VURBBjs.CalendarDayButton; exports.Card = _chunkMP5VURBBjs.Card; exports.CardAction = _chunkMP5VURBBjs.CardAction; exports.CardContent = _chunkMP5VURBBjs.CardContent; exports.CardDescription = _chunkMP5VURBBjs.CardDescription; exports.CardFooter = _chunkMP5VURBBjs.CardFooter; exports.CardHeader = _chunkMP5VURBBjs.CardHeader; exports.CardTitle = _chunkMP5VURBBjs.CardTitle; exports.Carousel = _chunkMP5VURBBjs.Carousel; exports.CarouselContent = _chunkMP5VURBBjs.CarouselContent; exports.CarouselItem = _chunkMP5VURBBjs.CarouselItem; exports.CarouselNext = _chunkMP5VURBBjs.CarouselNext; exports.CarouselPrevious = _chunkMP5VURBBjs.CarouselPrevious; exports.ChartContainer = _chunkMP5VURBBjs.ChartContainer; exports.ChartLegend = _chunkMP5VURBBjs.ChartLegend; exports.ChartLegendContent = _chunkMP5VURBBjs.ChartLegendContent; exports.ChartStyle = _chunkMP5VURBBjs.ChartStyle; exports.ChartTooltip = _chunkMP5VURBBjs.ChartTooltip; exports.ChartTooltipContent = _chunkMP5VURBBjs.ChartTooltipContent; exports.Checkbox = _chunkMP5VURBBjs.Checkbox; exports.Collapsible = _chunkMP5VURBBjs.Collapsible; exports.CollapsibleContent = _chunkMP5VURBBjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkMP5VURBBjs.CollapsibleTrigger; exports.Column = _chunkMP5VURBBjs.KanbanColumn; exports.ColumnHandle = _chunkMP5VURBBjs.KanbanColumnHandle; exports.Combobox = _chunkMP5VURBBjs.Combobox; exports.ComboboxChip = _chunkMP5VURBBjs.ComboboxChip; exports.ComboboxChips = _chunkMP5VURBBjs.ComboboxChips; exports.ComboboxChipsInput = _chunkMP5VURBBjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkMP5VURBBjs.ComboboxCollection; exports.ComboboxContent = _chunkMP5VURBBjs.ComboboxContent; exports.ComboboxEmpty = _chunkMP5VURBBjs.ComboboxEmpty; exports.ComboboxGroup = _chunkMP5VURBBjs.ComboboxGroup; exports.ComboboxInput = _chunkMP5VURBBjs.ComboboxInput; exports.ComboboxItem = _chunkMP5VURBBjs.ComboboxItem; exports.ComboboxLabel = _chunkMP5VURBBjs.ComboboxLabel; exports.ComboboxList = _chunkMP5VURBBjs.ComboboxList; exports.ComboboxSeparator = _chunkMP5VURBBjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkMP5VURBBjs.ComboboxTrigger; exports.ComboboxValue = _chunkMP5VURBBjs.ComboboxValue; exports.Command = _chunkMP5VURBBjs.Command; exports.CommandDialog = _chunkMP5VURBBjs.CommandDialog; exports.CommandEmpty = _chunkMP5VURBBjs.CommandEmpty; exports.CommandGroup = _chunkMP5VURBBjs.CommandGroup; exports.CommandInput = _chunkMP5VURBBjs.CommandInput; exports.CommandItem = _chunkMP5VURBBjs.CommandItem; exports.CommandList = _chunkMP5VURBBjs.CommandList; exports.CommandSeparator = _chunkMP5VURBBjs.CommandSeparator; exports.CommandShortcut = _chunkMP5VURBBjs.CommandShortcut; exports.CommonAddTrigger = _chunkMP5VURBBjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkMP5VURBBjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkMP5VURBBjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkMP5VURBBjs.CommonDeleter; exports.CommonEditorButtons = _chunkMP5VURBBjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkMP5VURBBjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkMP5VURBBjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkMP5VURBBjs.CommonEditorTrigger; exports.CompaniesList = _chunkMP5VURBBjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkMP5VURBBjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkMP5VURBBjs.CompanyContainer; exports.CompanyContent = _chunkMP5VURBBjs.CompanyContent; exports.CompanyDeleter = _chunkMP5VURBBjs.CompanyDeleter; exports.CompanyDetails = _chunkMP5VURBBjs.CompanyDetails; exports.CompanyEditor = _chunkMP5VURBBjs.CompanyEditor; exports.CompanyUsersList = _chunkMP5VURBBjs.CompanyUsersList; exports.ConfirmDialog = _chunkMP5VURBBjs.ConfirmDialog; exports.ContentListGrid = _chunkMP5VURBBjs.ContentListGrid; exports.ContentListTable = _chunkMP5VURBBjs.ContentListTable; exports.ContentTableSearch = _chunkMP5VURBBjs.ContentTableSearch; exports.ContentTitle = _chunkMP5VURBBjs.ContentTitle; exports.ContentsList = _chunkMP5VURBBjs.ContentsList; exports.ContentsListById = _chunkMP5VURBBjs.ContentsListById; exports.ContextMenu = _chunkMP5VURBBjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkMP5VURBBjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkMP5VURBBjs.ContextMenuContent; exports.ContextMenuGroup = _chunkMP5VURBBjs.ContextMenuGroup; exports.ContextMenuItem = _chunkMP5VURBBjs.ContextMenuItem; exports.ContextMenuLabel = _chunkMP5VURBBjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkMP5VURBBjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkMP5VURBBjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkMP5VURBBjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkMP5VURBBjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkMP5VURBBjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkMP5VURBBjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkMP5VURBBjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkMP5VURBBjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkMP5VURBBjs.ContextMenuTrigger; exports.ContributorsList = _chunkMP5VURBBjs.ContributorsList; exports.Cookies = _chunkMP5VURBBjs.Cookies; exports.CurrencyInput = _chunkMP5VURBBjs.CurrencyInput; exports.DatePickerPopover = _chunkMP5VURBBjs.DatePickerPopover; exports.DateRangeSelector = _chunkMP5VURBBjs.DateRangeSelector; exports.DetailField = _chunkMP5VURBBjs.DetailField; exports.Dialog = _chunkMP5VURBBjs.Dialog; exports.DialogClose = _chunkMP5VURBBjs.DialogClose; exports.DialogContent = _chunkMP5VURBBjs.DialogContent; exports.DialogDescription = _chunkMP5VURBBjs.DialogDescription; exports.DialogFooter = _chunkMP5VURBBjs.DialogFooter; exports.DialogHeader = _chunkMP5VURBBjs.DialogHeader; exports.DialogOverlay = _chunkMP5VURBBjs.DialogOverlay; exports.DialogPortal = _chunkMP5VURBBjs.DialogPortal; exports.DialogTitle = _chunkMP5VURBBjs.DialogTitle; exports.DialogTrigger = _chunkMP5VURBBjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkMP5VURBBjs.DisableTwoFactorDialog; exports.Drawer = _chunkMP5VURBBjs.Drawer; exports.DrawerClose = _chunkMP5VURBBjs.DrawerClose; exports.DrawerContent = _chunkMP5VURBBjs.DrawerContent; exports.DrawerDescription = _chunkMP5VURBBjs.DrawerDescription; exports.DrawerFooter = _chunkMP5VURBBjs.DrawerFooter; exports.DrawerHeader = _chunkMP5VURBBjs.DrawerHeader; exports.DrawerOverlay = _chunkMP5VURBBjs.DrawerOverlay; exports.DrawerPortal = _chunkMP5VURBBjs.DrawerPortal; exports.DrawerTitle = _chunkMP5VURBBjs.DrawerTitle; exports.DrawerTrigger = _chunkMP5VURBBjs.DrawerTrigger; exports.DropdownMenu = _chunkMP5VURBBjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkMP5VURBBjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkMP5VURBBjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkMP5VURBBjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkMP5VURBBjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkMP5VURBBjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkMP5VURBBjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkMP5VURBBjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkMP5VURBBjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkMP5VURBBjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkMP5VURBBjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkMP5VURBBjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkMP5VURBBjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkMP5VURBBjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkMP5VURBBjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkMP5VURBBjs.EditableAvatar; exports.EditorSheet = _chunkMP5VURBBjs.EditorSheet; exports.EmptyState = _chunkMP5VURBBjs.EmptyState; exports.EntityAvatar = _chunkMP5VURBBjs.EntityAvatar; exports.EntityHero = _chunkMP5VURBBjs.EntityHero; exports.EntityHeroAvatar = _chunkMP5VURBBjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunkMP5VURBBjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkMP5VURBBjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkMP5VURBBjs.EntityMultiSelector; exports.EntitySection = _chunkMP5VURBBjs.EntitySection; exports.EntitySelector = _chunkMP5VURBBjs.EntitySelector; exports.ErrorDetails = _chunkMP5VURBBjs.ErrorDetails; exports.Field = _chunkMP5VURBBjs.Field; exports.FieldContent = _chunkMP5VURBBjs.FieldContent; exports.FieldDescription = _chunkMP5VURBBjs.FieldDescription; exports.FieldError = _chunkMP5VURBBjs.FieldError; exports.FieldGroup = _chunkMP5VURBBjs.FieldGroup; exports.FieldLabel = _chunkMP5VURBBjs.FieldLabel; exports.FieldLegend = _chunkMP5VURBBjs.FieldLegend; exports.FieldSeparator = _chunkMP5VURBBjs.FieldSeparator; exports.FieldSet = _chunkMP5VURBBjs.FieldSet; exports.FieldTitle = _chunkMP5VURBBjs.FieldTitle; exports.FileInput = _chunkMP5VURBBjs.FileInput; exports.FileUploader = _chunkMP5VURBBjs.FileUploader; exports.FileUploaderContent = _chunkMP5VURBBjs.FileUploaderContent; exports.FileUploaderItem = _chunkMP5VURBBjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkMP5VURBBjs.FiscalDataDisplay; exports.ForgotPassword = _chunkMP5VURBBjs.ForgotPassword; exports.Form = _chunkMP5VURBBjs.Form; exports.FormBlockNote = _chunkMP5VURBBjs.FormBlockNote; exports.FormBody = _chunkMP5VURBBjs.FormBody; exports.FormCheckbox = _chunkMP5VURBBjs.FormCheckbox; exports.FormCol = _chunkMP5VURBBjs.FormCol; exports.FormDate = _chunkMP5VURBBjs.FormDate; exports.FormDateTime = _chunkMP5VURBBjs.FormDateTime; exports.FormFeatures = _chunkMP5VURBBjs.FormFeatures; exports.FormFieldWrapper = _chunkMP5VURBBjs.FormFieldWrapper; exports.FormInput = _chunkMP5VURBBjs.FormInput; exports.FormPassword = _chunkMP5VURBBjs.FormPassword; exports.FormPlaceAutocomplete = _chunkMP5VURBBjs.FormPlaceAutocomplete; exports.FormRoles = _chunkMP5VURBBjs.FormRoles; exports.FormRow = _chunkMP5VURBBjs.FormRow; exports.FormSection = _chunkMP5VURBBjs.FormSection; exports.FormSelect = _chunkMP5VURBBjs.FormSelect; exports.FormSlider = _chunkMP5VURBBjs.FormSlider; exports.FormSwitch = _chunkMP5VURBBjs.FormSwitch; exports.FormTextarea = _chunkMP5VURBBjs.FormTextarea; exports.GdprConsentCheckbox = _chunkMP5VURBBjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkMP5VURBBjs.GdprConsentSection; exports.Header = _chunkMP5VURBBjs.Header; exports.HoverCard = _chunkMP5VURBBjs.HoverCard; exports.HoverCardContent = _chunkMP5VURBBjs.HoverCardContent; exports.HoverCardTrigger = _chunkMP5VURBBjs.HoverCardTrigger; exports.HowToCommand = _chunkMP5VURBBjs.HowToCommand; exports.HowToCommandViewer = _chunkMP5VURBBjs.HowToCommandViewer; exports.HowToContainer = _chunkMP5VURBBjs.HowToContainer; exports.HowToContent = _chunkMP5VURBBjs.HowToContent; exports.HowToDeleter = _chunkMP5VURBBjs.HowToDeleter; exports.HowToDetails = _chunkMP5VURBBjs.HowToDetails; exports.HowToEditor = _chunkMP5VURBBjs.HowToEditor; exports.HowToList = _chunkMP5VURBBjs.HowToList; exports.HowToListContainer = _chunkMP5VURBBjs.HowToListContainer; exports.HowToMultiSelector = _chunkMP5VURBBjs.HowToMultiSelector; exports.HowToSelector = _chunkMP5VURBBjs.HowToSelector; exports.Input = _chunkMP5VURBBjs.Input; exports.InputGroup = _chunkMP5VURBBjs.InputGroup; exports.InputGroupAddon = _chunkMP5VURBBjs.InputGroupAddon; exports.InputGroupButton = _chunkMP5VURBBjs.InputGroupButton; exports.InputGroupInput = _chunkMP5VURBBjs.InputGroupInput; exports.InputGroupText = _chunkMP5VURBBjs.InputGroupText; exports.InputGroupTextarea = _chunkMP5VURBBjs.InputGroupTextarea; exports.InputOTP = _chunkMP5VURBBjs.InputOTP; exports.InputOTPGroup = _chunkMP5VURBBjs.InputOTPGroup; exports.InputOTPSeparator = _chunkMP5VURBBjs.InputOTPSeparator; exports.InputOTPSlot = _chunkMP5VURBBjs.InputOTPSlot; exports.ItalianFiscalData = _chunkMP5VURBBjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkMP5VURBBjs.ItalianFiscalDataDisplay; exports.Item = _chunkMP5VURBBjs.KanbanItem; exports.ItemHandle = _chunkMP5VURBBjs.KanbanItemHandle; exports.Kanban = _chunkMP5VURBBjs.KanbanRoot; exports.KanbanBoard = _chunkMP5VURBBjs.KanbanBoard; exports.KanbanColumn = _chunkMP5VURBBjs.KanbanColumn; exports.KanbanColumnHandle = _chunkMP5VURBBjs.KanbanColumnHandle; exports.KanbanItem = _chunkMP5VURBBjs.KanbanItem; exports.KanbanItemHandle = _chunkMP5VURBBjs.KanbanItemHandle; exports.KanbanOverlay = _chunkMP5VURBBjs.KanbanOverlay; exports.Label = _chunkMP5VURBBjs.Label; exports.LandingComponent = _chunkMP5VURBBjs.LandingComponent; exports.Link = _chunkMP5VURBBjs.Link; exports.Login = _chunkMP5VURBBjs.Login; exports.Logout = _chunkMP5VURBBjs.Logout; exports.MessageItem = _chunkMP5VURBBjs.MessageItem; exports.MessageList = _chunkMP5VURBBjs.MessageList; exports.MessageSourcesPanel = _chunkMP5VURBBjs.MessageSourcesPanel; exports.MicroLabel = _chunkMP5VURBBjs.MicroLabel; exports.ModeToggleSwitch = _chunkMP5VURBBjs.ModeToggleSwitch; exports.MultiSelect = _chunkMP5VURBBjs.MultiSelect; exports.MultipleSelector = _chunkMP5VURBBjs.MultipleSelector; exports.NavigationMenu = _chunkMP5VURBBjs.NavigationMenu; exports.NavigationMenuContent = _chunkMP5VURBBjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkMP5VURBBjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkMP5VURBBjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkMP5VURBBjs.NavigationMenuLink; exports.NavigationMenuList = _chunkMP5VURBBjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkMP5VURBBjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkMP5VURBBjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkMP5VURBBjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkMP5VURBBjs.NotificationMenuItem; exports.NotificationModal = _chunkMP5VURBBjs.NotificationModal; exports.NotificationToast = _chunkMP5VURBBjs.NotificationToast; exports.NotificationsList = _chunkMP5VURBBjs.NotificationsList; exports.NotificationsListContainer = _chunkMP5VURBBjs.NotificationsListContainer; exports.OAuthClientCard = _chunkMP5VURBBjs.OAuthClientCard; exports.OAuthClientDetail = _chunkMP5VURBBjs.OAuthClientDetail; exports.OAuthClientForm = _chunkMP5VURBBjs.OAuthClientForm; exports.OAuthClientList = _chunkMP5VURBBjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkMP5VURBBjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkMP5VURBBjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkMP5VURBBjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkMP5VURBBjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkMP5VURBBjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkMP5VURBBjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkMP5VURBBjs.OAuthScopeSelector; exports.OnboardingCard = _chunkMP5VURBBjs.OnboardingCard; exports.Overlay = _chunkMP5VURBBjs.KanbanOverlay; exports.PageContainer = _chunkMP5VURBBjs.PageContainer; exports.PageContainerContentDetails = _chunkMP5VURBBjs.PageContainerContentDetails; exports.PageContentContainer = _chunkMP5VURBBjs.PageContentContainer; exports.PageSection = _chunkMP5VURBBjs.PageSection; exports.PasskeyButton = _chunkMP5VURBBjs.PasskeyButton; exports.PasskeyList = _chunkMP5VURBBjs.PasskeyList; exports.PasskeySetupDialog = _chunkMP5VURBBjs.PasskeySetupDialog; exports.PasswordInput = _chunkMP5VURBBjs.PasswordInput; exports.Popover = _chunkMP5VURBBjs.Popover; exports.PopoverContent = _chunkMP5VURBBjs.PopoverContent; exports.PopoverDescription = _chunkMP5VURBBjs.PopoverDescription; exports.PopoverHeader = _chunkMP5VURBBjs.PopoverHeader; exports.PopoverTitle = _chunkMP5VURBBjs.PopoverTitle; exports.PopoverTrigger = _chunkMP5VURBBjs.PopoverTrigger; exports.Progress = _chunkMP5VURBBjs.Progress; exports.ProgressIndicator = _chunkMP5VURBBjs.ProgressIndicator; exports.ProgressLabel = _chunkMP5VURBBjs.ProgressLabel; exports.ProgressTrack = _chunkMP5VURBBjs.ProgressTrack; exports.ProgressValue = _chunkMP5VURBBjs.ProgressValue; exports.PushNotificationProvider = _chunkMP5VURBBjs.PushNotificationProvider; exports.RadioGroup = _chunkMP5VURBBjs.RadioGroup; exports.RadioGroupItem = _chunkMP5VURBBjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkMP5VURBBjs.RbacByRoleContainer; exports.RbacContainer = _chunkMP5VURBBjs.RbacContainer; exports.RbacPermissionCell = _chunkMP5VURBBjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkMP5VURBBjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkMP5VURBBjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkMP5VURBBjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkMP5VURBBjs.ReferralCodeCapture; exports.ReferralDialog = _chunkMP5VURBBjs.ReferralDialog; exports.ReferralWidget = _chunkMP5VURBBjs.ReferralWidget; exports.RefreshUser = _chunkMP5VURBBjs.RefreshUser; exports.RelevantContentsList = _chunkMP5VURBBjs.RelevantContentsList; exports.RelevantUsersList = _chunkMP5VURBBjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkMP5VURBBjs.RemoveUserFromRole; exports.ResetPassword = _chunkMP5VURBBjs.ResetPassword; exports.ResizableHandle = _chunkMP5VURBBjs.ResizableHandle; exports.ResizablePanel = _chunkMP5VURBBjs.ResizablePanel; exports.ResizablePanelGroup = _chunkMP5VURBBjs.ResizablePanelGroup; exports.RoleContainer = _chunkMP5VURBBjs.RoleContainer; exports.RoleDetails = _chunkMP5VURBBjs.RoleDetails; exports.RoleUsersList = _chunkMP5VURBBjs.RoleUsersList; exports.RolesList = _chunkMP5VURBBjs.RolesList; exports.Root = _chunkMP5VURBBjs.KanbanRoot; exports.RoundPageContainer = _chunkMP5VURBBjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkMP5VURBBjs.RoundPageContainerTitle; exports.ScrollArea = _chunkMP5VURBBjs.ScrollArea; exports.ScrollBar = _chunkMP5VURBBjs.ScrollBar; exports.SectionHeader = _chunkMP5VURBBjs.SectionHeader; exports.SecurityContainer = _chunkMP5VURBBjs.SecurityContainer; exports.Select = _chunkMP5VURBBjs.Select; exports.SelectContent = _chunkMP5VURBBjs.SelectContent; exports.SelectGroup = _chunkMP5VURBBjs.SelectGroup; exports.SelectItem = _chunkMP5VURBBjs.SelectItem; exports.SelectLabel = _chunkMP5VURBBjs.SelectLabel; exports.SelectScrollDownButton = _chunkMP5VURBBjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkMP5VURBBjs.SelectScrollUpButton; exports.SelectSeparator = _chunkMP5VURBBjs.SelectSeparator; exports.SelectTrigger = _chunkMP5VURBBjs.SelectTrigger; exports.SelectValue = _chunkMP5VURBBjs.SelectValue; exports.Separator = _chunkMP5VURBBjs.Separator; exports.Sheet = _chunkMP5VURBBjs.Sheet; exports.SheetClose = _chunkMP5VURBBjs.SheetClose; exports.SheetContent = _chunkMP5VURBBjs.SheetContent; exports.SheetDescription = _chunkMP5VURBBjs.SheetDescription; exports.SheetFooter = _chunkMP5VURBBjs.SheetFooter; exports.SheetHeader = _chunkMP5VURBBjs.SheetHeader; exports.SheetTitle = _chunkMP5VURBBjs.SheetTitle; exports.SheetTrigger = _chunkMP5VURBBjs.SheetTrigger; exports.Sidebar = _chunkMP5VURBBjs.Sidebar; exports.SidebarContent = _chunkMP5VURBBjs.SidebarContent; exports.SidebarFooter = _chunkMP5VURBBjs.SidebarFooter; exports.SidebarGroup = _chunkMP5VURBBjs.SidebarGroup; exports.SidebarGroupAction = _chunkMP5VURBBjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkMP5VURBBjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkMP5VURBBjs.SidebarGroupLabel; exports.SidebarHeader = _chunkMP5VURBBjs.SidebarHeader; exports.SidebarInput = _chunkMP5VURBBjs.SidebarInput; exports.SidebarInset = _chunkMP5VURBBjs.SidebarInset; exports.SidebarMenu = _chunkMP5VURBBjs.SidebarMenu; exports.SidebarMenuAction = _chunkMP5VURBBjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkMP5VURBBjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkMP5VURBBjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkMP5VURBBjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkMP5VURBBjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkMP5VURBBjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkMP5VURBBjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkMP5VURBBjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkMP5VURBBjs.SidebarProvider; exports.SidebarRail = _chunkMP5VURBBjs.SidebarRail; exports.SidebarSeparator = _chunkMP5VURBBjs.SidebarSeparator; exports.SidebarTrigger = _chunkMP5VURBBjs.SidebarTrigger; exports.Skeleton = _chunkMP5VURBBjs.Skeleton; exports.Slider = _chunkMP5VURBBjs.Slider; exports.Spinner = _chunkMP5VURBBjs.Spinner; exports.Switch = _chunkMP5VURBBjs.Switch; exports.Table = _chunkMP5VURBBjs.Table; exports.TableBody = _chunkMP5VURBBjs.TableBody; exports.TableCaption = _chunkMP5VURBBjs.TableCaption; exports.TableCell = _chunkMP5VURBBjs.TableCell; exports.TableCellAvatar = _chunkMP5VURBBjs.TableCellAvatar; exports.TableFooter = _chunkMP5VURBBjs.TableFooter; exports.TableHead = _chunkMP5VURBBjs.TableHead; exports.TableHeader = _chunkMP5VURBBjs.TableHeader; exports.TableRow = _chunkMP5VURBBjs.TableRow; exports.Tabs = _chunkMP5VURBBjs.Tabs; exports.TabsContainer = _chunkMP5VURBBjs.TabsContainer; exports.TabsContent = _chunkMP5VURBBjs.TabsContent; exports.TabsList = _chunkMP5VURBBjs.TabsList; exports.TabsTrigger = _chunkMP5VURBBjs.TabsTrigger; exports.Textarea = _chunkMP5VURBBjs.Textarea; exports.Toaster = _chunkMP5VURBBjs.Toaster; exports.Toggle = _chunkMP5VURBBjs.Toggle; exports.TokenStatusIndicator = _chunkMP5VURBBjs.TokenStatusIndicator; exports.Tooltip = _chunkMP5VURBBjs.Tooltip; exports.TooltipContent = _chunkMP5VURBBjs.TooltipContent; exports.TooltipProvider = _chunkMP5VURBBjs.TooltipProvider; exports.TooltipTrigger = _chunkMP5VURBBjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkMP5VURBBjs.TotpAuthenticatorList; exports.TotpInput = _chunkMP5VURBBjs.TotpInput; exports.TotpSetupDialog = _chunkMP5VURBBjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkMP5VURBBjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkMP5VURBBjs.TwoFactorSettings; exports.UserAvatar = _chunkMP5VURBBjs.UserAvatar; exports.UserAvatarEditor = _chunkMP5VURBBjs.UserAvatarEditor; exports.UserAvatarList = _chunkMP5VURBBjs.UserAvatarList; exports.UserContainer = _chunkMP5VURBBjs.UserContainer; exports.UserContent = _chunkMP5VURBBjs.UserContent; exports.UserDeleter = _chunkMP5VURBBjs.UserDeleter; exports.UserEditor = _chunkMP5VURBBjs.UserEditor; exports.UserIndexContainer = _chunkMP5VURBBjs.UserIndexContainer; exports.UserIndexDetails = _chunkMP5VURBBjs.UserIndexDetails; exports.UserListInAdd = _chunkMP5VURBBjs.UserListInAdd; exports.UserMultiSelect = _chunkMP5VURBBjs.UserMultiSelect; exports.UserReactivator = _chunkMP5VURBBjs.UserReactivator; exports.UserResentInvitationEmail = _chunkMP5VURBBjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkMP5VURBBjs.UserRoleAdd; exports.UserRolesList = _chunkMP5VURBBjs.UserRolesList; exports.UserSearchPopover = _chunkMP5VURBBjs.UserSearchPopover; exports.UserSelector = _chunkMP5VURBBjs.UserSelector; exports.UserStanadaloneDetails = _chunkMP5VURBBjs.UserStanadaloneDetails; exports.UsersList = _chunkMP5VURBBjs.UsersList; exports.UsersListByContentIds = _chunkMP5VURBBjs.UsersListByContentIds; exports.UsersListContainer = _chunkMP5VURBBjs.UsersListContainer; exports.WaitlistConfirmation = _chunkMP5VURBBjs.WaitlistConfirmation; exports.WaitlistForm = _chunkMP5VURBBjs.WaitlistForm; exports.WaitlistHeroSection = _chunkMP5VURBBjs.WaitlistHeroSection; exports.WaitlistList = _chunkMP5VURBBjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkMP5VURBBjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkMP5VURBBjs.WaitlistSuccessState; exports.badgeVariants = _chunkMP5VURBBjs.badgeVariants; exports.buttonVariants = _chunkMP5VURBBjs.buttonVariants; exports.cellComponent = _chunkMP5VURBBjs.cellComponent; exports.cellDate = _chunkMP5VURBBjs.cellDate; exports.cellDateTime = _chunkMP5VURBBjs.cellDateTime; exports.cellId = _chunkMP5VURBBjs.cellId; exports.cellLink = _chunkMP5VURBBjs.cellLink; exports.cellUrl = _chunkMP5VURBBjs.cellUrl; exports.createMentionInlineContentSpec = _chunkMP5VURBBjs.createMentionInlineContentSpec; exports.errorToast = _chunkMP5VURBBjs.errorToast; exports.generateNotificationData = _chunkMP5VURBBjs.generateNotificationData; exports.getIcon = _chunk5IE6DZ2Djs.getIcon; exports.getIconByModule = _chunk5IE6DZ2Djs.getIconByModule; exports.getIconByModuleName = _chunk5IE6DZ2Djs.getIconByModuleName; exports.getInitials = _chunk5IE6DZ2Djs.getInitials; exports.mentionDataAttrs = _chunkMP5VURBBjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkMP5VURBBjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkMP5VURBBjs.parseFiscalData; exports.parseMentionElement = _chunkMP5VURBBjs.parseMentionElement; exports.partitionTabs = _chunkMP5VURBBjs.partitionTabs; exports.spinnerVariants = _chunkMP5VURBBjs.spinnerVariants; exports.tabsListVariants = _chunkMP5VURBBjs.tabsListVariants; exports.toggleVariants = _chunkMP5VURBBjs.toggleVariants; exports.triggerAssociationToast = _chunkMP5VURBBjs.triggerAssociationToast; exports.useCarousel = _chunkMP5VURBBjs.useCarousel; exports.useComboboxAnchor = _chunkMP5VURBBjs.useComboboxAnchor; exports.useDebounce = _chunkMP5VURBBjs.useDebounce2; exports.useEditorDialog = _chunkMP5VURBBjs.useEditorDialog; exports.useFileUpload = _chunkMP5VURBBjs.useFileUpload; exports.useMentionInsert = _chunkMP5VURBBjs.useMentionInsert; exports.useSidebar = _chunkMP5VURBBjs.useSidebar;
|
|
983
983
|
//# sourceMappingURL=index.js.map
|
|
@@ -477,14 +477,14 @@ import {
|
|
|
477
477
|
useFileUpload,
|
|
478
478
|
useMentionInsert,
|
|
479
479
|
useSidebar
|
|
480
|
-
} from "../chunk-
|
|
481
|
-
import "../chunk-
|
|
480
|
+
} from "../chunk-67LIVKYU.mjs";
|
|
481
|
+
import "../chunk-VSAAVVHY.mjs";
|
|
482
482
|
import {
|
|
483
483
|
getIcon,
|
|
484
484
|
getIconByModule,
|
|
485
485
|
getIconByModuleName,
|
|
486
486
|
getInitials
|
|
487
|
-
} from "../chunk-
|
|
487
|
+
} from "../chunk-DZL2G7NB.mjs";
|
|
488
488
|
import "../chunk-AUXK7QSA.mjs";
|
|
489
489
|
import "../chunk-C7C7VY4F.mjs";
|
|
490
490
|
import "../chunk-Z2CB63VG.mjs";
|
|
@@ -206,17 +206,24 @@ declare const useCommonContext: () => CommonContextType;
|
|
|
206
206
|
interface HeaderChildrenProviderProps {
|
|
207
207
|
children: ReactNode;
|
|
208
208
|
content: ReactNode;
|
|
209
|
+
rootLabel?: string;
|
|
209
210
|
}
|
|
210
211
|
/**
|
|
211
212
|
* Provider to supply custom content to be rendered in the Header component.
|
|
212
213
|
* Wrap your layout with this provider and pass the content you want in the header.
|
|
214
|
+
* Optionally pass `rootLabel` to override the first breadcrumb entry (defaults to `common.home`).
|
|
213
215
|
*/
|
|
214
|
-
declare function HeaderChildrenProvider({ children, content }: HeaderChildrenProviderProps): React.JSX.Element;
|
|
216
|
+
declare function HeaderChildrenProvider({ children, content, rootLabel }: HeaderChildrenProviderProps): React.JSX.Element;
|
|
215
217
|
/**
|
|
216
218
|
* Hook to get the header children content from context.
|
|
217
219
|
* Used internally by PageContainer to pass children to Header.
|
|
218
220
|
*/
|
|
219
221
|
declare function useHeaderChildren(): ReactNode | null;
|
|
222
|
+
/**
|
|
223
|
+
* Hook to get the label of the first breadcrumb entry, when the application supplies one.
|
|
224
|
+
* Returns null when no override was provided, in which case the Header falls back to `common.home`.
|
|
225
|
+
*/
|
|
226
|
+
declare function useHeaderRootLabel(): string | null;
|
|
220
227
|
|
|
221
228
|
interface HeaderLeftContentProviderProps {
|
|
222
229
|
children: ReactNode;
|
|
@@ -281,4 +288,4 @@ interface RecentPage {
|
|
|
281
288
|
}
|
|
282
289
|
declare const recentPagesAtom: jotai.WritableAtom<RecentPage[], [typeof jotai_utils.RESET | RecentPage[] | ((prev: RecentPage[]) => typeof jotai_utils.RESET | RecentPage[])], void>;
|
|
283
290
|
|
|
284
|
-
export { AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HowToProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, recentPagesAtom, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHowToContext, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
|
|
291
|
+
export { AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HowToProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, recentPagesAtom, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHeaderRootLabel, useHowToContext, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
|
package/dist/contexts/index.d.ts
CHANGED
|
@@ -206,17 +206,24 @@ declare const useCommonContext: () => CommonContextType;
|
|
|
206
206
|
interface HeaderChildrenProviderProps {
|
|
207
207
|
children: ReactNode;
|
|
208
208
|
content: ReactNode;
|
|
209
|
+
rootLabel?: string;
|
|
209
210
|
}
|
|
210
211
|
/**
|
|
211
212
|
* Provider to supply custom content to be rendered in the Header component.
|
|
212
213
|
* Wrap your layout with this provider and pass the content you want in the header.
|
|
214
|
+
* Optionally pass `rootLabel` to override the first breadcrumb entry (defaults to `common.home`).
|
|
213
215
|
*/
|
|
214
|
-
declare function HeaderChildrenProvider({ children, content }: HeaderChildrenProviderProps): React.JSX.Element;
|
|
216
|
+
declare function HeaderChildrenProvider({ children, content, rootLabel }: HeaderChildrenProviderProps): React.JSX.Element;
|
|
215
217
|
/**
|
|
216
218
|
* Hook to get the header children content from context.
|
|
217
219
|
* Used internally by PageContainer to pass children to Header.
|
|
218
220
|
*/
|
|
219
221
|
declare function useHeaderChildren(): ReactNode | null;
|
|
222
|
+
/**
|
|
223
|
+
* Hook to get the label of the first breadcrumb entry, when the application supplies one.
|
|
224
|
+
* Returns null when no override was provided, in which case the Header falls back to `common.home`.
|
|
225
|
+
*/
|
|
226
|
+
declare function useHeaderRootLabel(): string | null;
|
|
220
227
|
|
|
221
228
|
interface HeaderLeftContentProviderProps {
|
|
222
229
|
children: ReactNode;
|
|
@@ -281,4 +288,4 @@ interface RecentPage {
|
|
|
281
288
|
}
|
|
282
289
|
declare const recentPagesAtom: jotai.WritableAtom<RecentPage[], [typeof jotai_utils.RESET | RecentPage[] | ((prev: RecentPage[]) => typeof jotai_utils.RESET | RecentPage[])], void>;
|
|
283
290
|
|
|
284
|
-
export { AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HowToProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, recentPagesAtom, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHowToContext, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
|
|
291
|
+
export { AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HowToProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, recentPagesAtom, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHeaderRootLabel, useHowToContext, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
|
package/dist/contexts/index.js
CHANGED
|
@@ -31,9 +31,10 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
require('../chunk-
|
|
36
|
-
require('../chunk-
|
|
34
|
+
|
|
35
|
+
var _chunkMP5VURBBjs = require('../chunk-MP5VURBB.js');
|
|
36
|
+
require('../chunk-F6KBHC2X.js');
|
|
37
|
+
require('../chunk-5IE6DZ2D.js');
|
|
37
38
|
require('../chunk-LXKSUWAV.js');
|
|
38
39
|
require('../chunk-IBS6NI7D.js');
|
|
39
40
|
require('../chunk-QWCAOLBD.js');
|
|
@@ -71,5 +72,6 @@ require('../chunk-7QVYU63E.js');
|
|
|
71
72
|
|
|
72
73
|
|
|
73
74
|
|
|
74
|
-
|
|
75
|
+
|
|
76
|
+
exports.AssistantProvider = _chunkMP5VURBBjs.AssistantProvider; exports.CommonProvider = _chunkMP5VURBBjs.CommonProvider; exports.CompanyProvider = _chunkMP5VURBBjs.CompanyProvider; exports.CurrentUserProvider = _chunkMP5VURBBjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkMP5VURBBjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkMP5VURBBjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkMP5VURBBjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkMP5VURBBjs.HowToProvider; exports.NotificationContextProvider = _chunkMP5VURBBjs.NotificationContextProvider; exports.OnboardingProvider = _chunkMP5VURBBjs.OnboardingProvider; exports.RbacProvider = _chunkMP5VURBBjs.RbacProvider; exports.RoleProvider = _chunkMP5VURBBjs.RoleProvider; exports.SharedProvider = _chunkMP5VURBBjs.SharedProvider; exports.SocketContext = _chunkMP5VURBBjs.SocketContext; exports.SocketProvider = _chunkMP5VURBBjs.SocketProvider; exports.UserProvider = _chunkMP5VURBBjs.UserProvider; exports.recentPagesAtom = _chunkMP5VURBBjs.recentPagesAtom; exports.useAssistantContext = _chunkMP5VURBBjs.useAssistantContext; exports.useCommonContext = _chunkMP5VURBBjs.useCommonContext; exports.useCompanyContext = _chunkMP5VURBBjs.useCompanyContext; exports.useCurrentUserContext = _chunkMP5VURBBjs.useCurrentUserContext; exports.useHeaderChildren = _chunkMP5VURBBjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkMP5VURBBjs.useHeaderLeftContent; exports.useHeaderRootLabel = _chunkMP5VURBBjs.useHeaderRootLabel; exports.useHowToContext = _chunkMP5VURBBjs.useHowToContext; exports.useNotificationContext = _chunkMP5VURBBjs.useNotificationContext; exports.useOnboarding = _chunkMP5VURBBjs.useOnboarding; exports.useRbacContext = _chunkMP5VURBBjs.useRbacContext; exports.useRoleContext = _chunkMP5VURBBjs.useRoleContext; exports.useSharedContext = _chunkMP5VURBBjs.useSharedContext; exports.useSocketContext = _chunkMP5VURBBjs.useSocketContext; exports.useUserContext = _chunkMP5VURBBjs.useUserContext;
|
|
75
77
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/contexts/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/contexts/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,q/DAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/contexts/index.js"}
|
package/dist/contexts/index.mjs
CHANGED
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
useCurrentUserContext,
|
|
24
24
|
useHeaderChildren,
|
|
25
25
|
useHeaderLeftContent,
|
|
26
|
+
useHeaderRootLabel,
|
|
26
27
|
useHowToContext,
|
|
27
28
|
useNotificationContext,
|
|
28
29
|
useOnboarding,
|
|
@@ -31,9 +32,9 @@ import {
|
|
|
31
32
|
useSharedContext,
|
|
32
33
|
useSocketContext,
|
|
33
34
|
useUserContext
|
|
34
|
-
} from "../chunk-
|
|
35
|
-
import "../chunk-
|
|
36
|
-
import "../chunk-
|
|
35
|
+
} from "../chunk-67LIVKYU.mjs";
|
|
36
|
+
import "../chunk-VSAAVVHY.mjs";
|
|
37
|
+
import "../chunk-DZL2G7NB.mjs";
|
|
37
38
|
import "../chunk-AUXK7QSA.mjs";
|
|
38
39
|
import "../chunk-C7C7VY4F.mjs";
|
|
39
40
|
import "../chunk-Z2CB63VG.mjs";
|
|
@@ -63,6 +64,7 @@ export {
|
|
|
63
64
|
useCurrentUserContext,
|
|
64
65
|
useHeaderChildren,
|
|
65
66
|
useHeaderLeftContent,
|
|
67
|
+
useHeaderRootLabel,
|
|
66
68
|
useHowToContext,
|
|
67
69
|
useNotificationContext,
|
|
68
70
|
useOnboarding,
|
package/dist/core/index.d.mts
CHANGED
|
@@ -522,6 +522,16 @@ declare const entityObjectSchema: z.ZodObject<{
|
|
|
522
522
|
}, z.core.$strip>;
|
|
523
523
|
type EntityObject = z.infer<typeof entityObjectSchema>;
|
|
524
524
|
|
|
525
|
+
declare function validatePartitaIva(partitaIva: string): boolean;
|
|
526
|
+
type CodiceFiscaleValidationOptions = {
|
|
527
|
+
/** When true, a valid Partita IVA is also accepted as a valid value. */
|
|
528
|
+
allowPartitaIva?: boolean;
|
|
529
|
+
};
|
|
530
|
+
declare function validateCodiceFiscale(codiceFiscale: string, options?: CodiceFiscaleValidationOptions): boolean;
|
|
531
|
+
declare function validateItalianTaxCode(value: string, type: "partitaIva" | "codiceFiscale", options?: CodiceFiscaleValidationOptions): boolean;
|
|
532
|
+
declare function formatPartitaIva(partitaIva: string): string;
|
|
533
|
+
declare function formatCodiceFiscale(codiceFiscale: string): string;
|
|
534
|
+
|
|
525
535
|
interface WordDiff {
|
|
526
536
|
type: "added" | "removed" | "unchanged";
|
|
527
537
|
text: string;
|
|
@@ -2398,4 +2408,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2398
2408
|
|
|
2399
2409
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2400
2410
|
|
|
2401
|
-
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, formatLocalDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
|
|
2411
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|
package/dist/core/index.d.ts
CHANGED
|
@@ -522,6 +522,16 @@ declare const entityObjectSchema: z.ZodObject<{
|
|
|
522
522
|
}, z.core.$strip>;
|
|
523
523
|
type EntityObject = z.infer<typeof entityObjectSchema>;
|
|
524
524
|
|
|
525
|
+
declare function validatePartitaIva(partitaIva: string): boolean;
|
|
526
|
+
type CodiceFiscaleValidationOptions = {
|
|
527
|
+
/** When true, a valid Partita IVA is also accepted as a valid value. */
|
|
528
|
+
allowPartitaIva?: boolean;
|
|
529
|
+
};
|
|
530
|
+
declare function validateCodiceFiscale(codiceFiscale: string, options?: CodiceFiscaleValidationOptions): boolean;
|
|
531
|
+
declare function validateItalianTaxCode(value: string, type: "partitaIva" | "codiceFiscale", options?: CodiceFiscaleValidationOptions): boolean;
|
|
532
|
+
declare function formatPartitaIva(partitaIva: string): string;
|
|
533
|
+
declare function formatCodiceFiscale(codiceFiscale: string): string;
|
|
534
|
+
|
|
525
535
|
interface WordDiff {
|
|
526
536
|
type: "added" | "removed" | "unchanged";
|
|
527
537
|
text: string;
|
|
@@ -2398,4 +2408,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2398
2408
|
|
|
2399
2409
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2400
2410
|
|
|
2401
|
-
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatDate, formatLocalDate, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema };
|
|
2411
|
+
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|
package/dist/core/index.js
CHANGED
|
@@ -173,7 +173,12 @@
|
|
|
173
173
|
|
|
174
174
|
|
|
175
175
|
|
|
176
|
-
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
var _chunk5IE6DZ2Djs = require('../chunk-5IE6DZ2D.js');
|
|
177
182
|
require('../chunk-LXKSUWAV.js');
|
|
178
183
|
require('../chunk-IBS6NI7D.js');
|
|
179
184
|
|
|
@@ -373,5 +378,10 @@ require('../chunk-7QVYU63E.js');
|
|
|
373
378
|
|
|
374
379
|
|
|
375
380
|
|
|
376
|
-
exports.AVAILABLE_OAUTH_SCOPES = _chunkLBMNRFCYjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkLBMNRFCYjs.AbstractApiData; exports.AbstractService = _chunkLBMNRFCYjs.AbstractService; exports.Action = _chunkLBMNRFCYjs.Action; exports.Assistant = _chunkLBMNRFCYjs.Assistant; exports.AssistantMessage = _chunkLBMNRFCYjs.AssistantMessage; exports.AssistantMessageModule = _chunkLBMNRFCYjs.AssistantMessageModule; exports.AssistantMessageService = _chunkLBMNRFCYjs.AssistantMessageService; exports.AssistantModule = _chunkLBMNRFCYjs.AssistantModule; exports.AssistantService = _chunkLBMNRFCYjs.AssistantService; exports.AuditLog = _chunkLBMNRFCYjs.AuditLog; exports.AuditLogModule = _chunkLBMNRFCYjs.AuditLogModule; exports.AuditLogService = _chunkLBMNRFCYjs.AuditLogService; exports.Auth = _chunkLBMNRFCYjs.Auth; exports.AuthComponent = _chunkLBMNRFCYjs.AuthComponent; exports.AuthModule = _chunkLBMNRFCYjs.AuthModule; exports.AuthService = _chunkLBMNRFCYjs.AuthService; exports.AuthorModule = _chunkLBMNRFCYjs.AuthorModule; exports.BackupCodeVerify = _chunkLBMNRFCYjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkLBMNRFCYjs.BackupCodeVerifyModule; exports.Billing = _chunkLBMNRFCYjs.Billing; exports.BillingModule = _chunkLBMNRFCYjs.BillingModule; exports.BillingService = _chunkLBMNRFCYjs.BillingService; exports.BlockNoteDiffUtil = _chunkLBMNRFCYjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkLBMNRFCYjs.BlockNoteWordDiffRendererUtil; exports.Chunk = _chunkLBMNRFCYjs.Chunk; exports.ChunkModule = _chunkLBMNRFCYjs.ChunkModule; exports.ClientAbstractService = _chunkLBMNRFCYjs.ClientAbstractService; exports.ClientHttpMethod = _chunkLBMNRFCYjs.ClientHttpMethod; exports.Company = _chunkLBMNRFCYjs.Company; exports.CompanyFields = _chunkLBMNRFCYjs.CompanyFields; exports.CompanyModule = _chunkLBMNRFCYjs.CompanyModule; exports.CompanyService = _chunkLBMNRFCYjs.CompanyService; exports.Content = _chunkLBMNRFCYjs.Content; exports.ContentFields = _chunkLBMNRFCYjs.ContentFields; exports.ContentModule = _chunkLBMNRFCYjs.ContentModule; exports.ContentService = _chunkLBMNRFCYjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkLBMNRFCYjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunkQWCAOLBDjs.DataClassRegistry; exports.DataClassRegistry = _chunkQWCAOLBDjs.DataClassRegistry; exports.EndpointCreator = _chunkLBMNRFCYjs.EndpointCreator; exports.Feature = _chunkLBMNRFCYjs.Feature; exports.FeatureModule = _chunkLBMNRFCYjs.FeatureModule; exports.FeatureService = _chunkLBMNRFCYjs.FeatureService; exports.HowTo = _chunkLBMNRFCYjs.HowTo; exports.HowToFields = _chunkLBMNRFCYjs.HowToFields; exports.HowToModule = _chunkLBMNRFCYjs.HowToModule; exports.HowToService = _chunkLBMNRFCYjs.HowToService; exports.HttpMethod = _chunkLBMNRFCYjs.HttpMethod; exports.InvoiceStatus = _chunkLBMNRFCYjs.InvoiceStatus; exports.JsonApiDataFactory = _chunkQWCAOLBDjs.JsonApiDataFactory; exports.Module = _chunkLBMNRFCYjs.Module; exports.ModuleModule = _chunkLBMNRFCYjs.ModuleModule; exports.ModulePathsModule = _chunkLBMNRFCYjs.ModulePathsModule; exports.ModuleRegistrar = _chunkLBMNRFCYjs.ModuleRegistrar; exports.ModuleRegistry = _chunkLBMNRFCYjs.ModuleRegistry; exports.Modules = _chunkLBMNRFCYjs.Modules; exports.Notification = _chunkLBMNRFCYjs.Notification; exports.NotificationFields = _chunkLBMNRFCYjs.NotificationFields; exports.NotificationModule = _chunkLBMNRFCYjs.NotificationModule; exports.NotificationService = _chunkLBMNRFCYjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkLBMNRFCYjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkLBMNRFCYjs.OAuthClient; exports.OAuthModule = _chunkLBMNRFCYjs.OAuthModule; exports.OAuthService = _chunkLBMNRFCYjs.OAuthService; exports.Passkey = _chunkLBMNRFCYjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkLBMNRFCYjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkLBMNRFCYjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkLBMNRFCYjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkLBMNRFCYjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkLBMNRFCYjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkLBMNRFCYjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkLBMNRFCYjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkLBMNRFCYjs.PasskeyRename; exports.PasskeyRenameModule = _chunkLBMNRFCYjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkLBMNRFCYjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkLBMNRFCYjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkLBMNRFCYjs.PaymentMethod; exports.PermissionMappingModule = _chunkLBMNRFCYjs.PermissionMappingModule; exports.Push = _chunkLBMNRFCYjs.Push; exports.PushModule = _chunkLBMNRFCYjs.PushModule; exports.PushService = _chunkLBMNRFCYjs.PushService; exports.RbacMatrixModule = _chunkLBMNRFCYjs.RbacMatrixModule; exports.ReferralModule = _chunkLBMNRFCYjs.ReferralModule; exports.ReferralService = _chunkLBMNRFCYjs.ReferralService; exports.ReferralStats = _chunkLBMNRFCYjs.ReferralStats; exports.ReferralStatsModule = _chunkLBMNRFCYjs.ReferralStatsModule; exports.RehydrationFactory = _chunkLBMNRFCYjs.RehydrationFactory; exports.Role = _chunkLBMNRFCYjs.Role; exports.RoleFields = _chunkLBMNRFCYjs.RoleFields; exports.RoleModule = _chunkLBMNRFCYjs.RoleModule; exports.RoleService = _chunkLBMNRFCYjs.RoleService; exports.S3 = _chunkLBMNRFCYjs.S3; exports.S3Module = _chunkLBMNRFCYjs.S3Module; exports.S3Service = _chunkLBMNRFCYjs.S3Service; exports.StripeCustomer = _chunkLBMNRFCYjs.StripeCustomer; exports.StripeCustomerModule = _chunkLBMNRFCYjs.StripeCustomerModule; exports.StripeCustomerService = _chunkLBMNRFCYjs.StripeCustomerService; exports.StripeInvoice = _chunkLBMNRFCYjs.StripeInvoice; exports.StripeInvoiceModule = _chunkLBMNRFCYjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkLBMNRFCYjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkLBMNRFCYjs.StripePaymentMethodModule; exports.StripePrice = _chunkLBMNRFCYjs.StripePrice; exports.StripePriceModule = _chunkLBMNRFCYjs.StripePriceModule; exports.StripePriceService = _chunkLBMNRFCYjs.StripePriceService; exports.StripeProduct = _chunkLBMNRFCYjs.StripeProduct; exports.StripeProductModule = _chunkLBMNRFCYjs.StripeProductModule; exports.StripeProductService = _chunkLBMNRFCYjs.StripeProductService; exports.StripePromotionCode = _chunkLBMNRFCYjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkLBMNRFCYjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkLBMNRFCYjs.StripePromotionCodeService; exports.StripeSubscription = _chunkLBMNRFCYjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkLBMNRFCYjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkLBMNRFCYjs.StripeSubscriptionService; exports.StripeUsage = _chunkLBMNRFCYjs.StripeUsage; exports.StripeUsageModule = _chunkLBMNRFCYjs.StripeUsageModule; exports.StripeUsageService = _chunkLBMNRFCYjs.StripeUsageService; exports.SubscriptionStatus = _chunkLBMNRFCYjs.SubscriptionStatus; exports.TableOptions = _chunkLBMNRFCYjs.TableOptions; exports.TotpAuthenticator = _chunkLBMNRFCYjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkLBMNRFCYjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkLBMNRFCYjs.TotpSetup; exports.TotpSetupModule = _chunkLBMNRFCYjs.TotpSetupModule; exports.TotpVerify = _chunkLBMNRFCYjs.TotpVerify; exports.TotpVerifyLogin = _chunkLBMNRFCYjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkLBMNRFCYjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkLBMNRFCYjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkLBMNRFCYjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkLBMNRFCYjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkLBMNRFCYjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkLBMNRFCYjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkLBMNRFCYjs.TwoFactorService; exports.TwoFactorStatus = _chunkLBMNRFCYjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkLBMNRFCYjs.TwoFactorStatusModule; exports.User = _chunkLBMNRFCYjs.User; exports.UserFields = _chunkLBMNRFCYjs.UserFields; exports.UserModule = _chunkLBMNRFCYjs.UserModule; exports.UserService = _chunkLBMNRFCYjs.UserService; exports.Waitlist = _chunkLBMNRFCYjs.Waitlist; exports.WaitlistModule = _chunkLBMNRFCYjs.WaitlistModule; exports.WaitlistService = _chunkLBMNRFCYjs.WaitlistService; exports.WaitlistStats = _chunkLBMNRFCYjs.WaitlistStats; exports.WaitlistStatsModule = _chunkLBMNRFCYjs.WaitlistStatsModule; exports.checkPermissions = _chunkLBMNRFCYjs.checkPermissions; exports.checkPermissionsFromServer = _chunkLBMNRFCYjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkLBMNRFCYjs.clearLastApiTotal; exports.cn = _chunkLBMNRFCYjs.cn; exports.composeRefs = _chunkLBMNRFCYjs.composeRefs; exports.createJsonApiInclusion = _chunkLBMNRFCYjs.createJsonApiInclusion; exports.dismissToast = _chunkLBMNRFCYjs.dismissToast; exports.entityObjectSchema = _chunkLBMNRFCYjs.entityObjectSchema; exports.exists = _chunkLBMNRFCYjs.exists; exports.formatDate = _chunkLBMNRFCYjs.formatDate; exports.formatLocalDate = _chunkLBMNRFCYjs.formatLocalDate; exports.getBootstrapper = _chunkQWCAOLBDjs.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkLBMNRFCYjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkLBMNRFCYjs.getGlobalErrorHandler; exports.getIcon = _chunkLBMNRFCYjs.getIcon; exports.getIconByModule = _chunkLBMNRFCYjs.getIconByModule; exports.getIconByModuleName = _chunkLBMNRFCYjs.getIconByModuleName; exports.getInitials = _chunkLBMNRFCYjs.getInitials; exports.getLastApiTotal = _chunkLBMNRFCYjs.getLastApiTotal; exports.getLucideIcon = _chunkLBMNRFCYjs.getLucideIcon; exports.getLucideIconByModule = _chunkLBMNRFCYjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkLBMNRFCYjs.getLucideIconByModuleName; exports.getTableComponents = _chunkLBMNRFCYjs.getTableComponents; exports.getTableOptions = _chunkLBMNRFCYjs.getTableOptions; exports.getValueFromPath = _chunkLBMNRFCYjs.getValueFromPath; exports.hasBootstrapper = _chunkQWCAOLBDjs.hasBootstrapper; exports.rehydrate = _chunkLBMNRFCYjs.rehydrate; exports.rehydrateList = _chunkLBMNRFCYjs.rehydrateList; exports.resetBootstrapStore = _chunkQWCAOLBDjs.resetBootstrapStore; exports.setBootstrapper = _chunkQWCAOLBDjs.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkLBMNRFCYjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkLBMNRFCYjs.setGlobalErrorHandler; exports.showCustomToast = _chunkLBMNRFCYjs.showCustomToast; exports.showError = _chunkLBMNRFCYjs.showError; exports.showToast = _chunkLBMNRFCYjs.showToast; exports.translateData = _chunkQWCAOLBDjs.translateData; exports.translateResponse = _chunkQWCAOLBDjs.translateResponse; exports.tryBootstrap = _chunkQWCAOLBDjs.tryBootstrap; exports.useComposedRefs = _chunkLBMNRFCYjs.useComposedRefs; exports.useIsMobile = _chunkLBMNRFCYjs.useIsMobile; exports.userObjectSchema = _chunkLBMNRFCYjs.userObjectSchema;
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
exports.AVAILABLE_OAUTH_SCOPES = _chunk5IE6DZ2Djs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunk5IE6DZ2Djs.AbstractApiData; exports.AbstractService = _chunk5IE6DZ2Djs.AbstractService; exports.Action = _chunk5IE6DZ2Djs.Action; exports.Assistant = _chunk5IE6DZ2Djs.Assistant; exports.AssistantMessage = _chunk5IE6DZ2Djs.AssistantMessage; exports.AssistantMessageModule = _chunk5IE6DZ2Djs.AssistantMessageModule; exports.AssistantMessageService = _chunk5IE6DZ2Djs.AssistantMessageService; exports.AssistantModule = _chunk5IE6DZ2Djs.AssistantModule; exports.AssistantService = _chunk5IE6DZ2Djs.AssistantService; exports.AuditLog = _chunk5IE6DZ2Djs.AuditLog; exports.AuditLogModule = _chunk5IE6DZ2Djs.AuditLogModule; exports.AuditLogService = _chunk5IE6DZ2Djs.AuditLogService; exports.Auth = _chunk5IE6DZ2Djs.Auth; exports.AuthComponent = _chunk5IE6DZ2Djs.AuthComponent; exports.AuthModule = _chunk5IE6DZ2Djs.AuthModule; exports.AuthService = _chunk5IE6DZ2Djs.AuthService; exports.AuthorModule = _chunk5IE6DZ2Djs.AuthorModule; exports.BackupCodeVerify = _chunk5IE6DZ2Djs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunk5IE6DZ2Djs.BackupCodeVerifyModule; exports.Billing = _chunk5IE6DZ2Djs.Billing; exports.BillingModule = _chunk5IE6DZ2Djs.BillingModule; exports.BillingService = _chunk5IE6DZ2Djs.BillingService; exports.BlockNoteDiffUtil = _chunk5IE6DZ2Djs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunk5IE6DZ2Djs.BlockNoteWordDiffRendererUtil; exports.Chunk = _chunk5IE6DZ2Djs.Chunk; exports.ChunkModule = _chunk5IE6DZ2Djs.ChunkModule; exports.ClientAbstractService = _chunk5IE6DZ2Djs.ClientAbstractService; exports.ClientHttpMethod = _chunk5IE6DZ2Djs.ClientHttpMethod; exports.Company = _chunk5IE6DZ2Djs.Company; exports.CompanyFields = _chunk5IE6DZ2Djs.CompanyFields; exports.CompanyModule = _chunk5IE6DZ2Djs.CompanyModule; exports.CompanyService = _chunk5IE6DZ2Djs.CompanyService; exports.Content = _chunk5IE6DZ2Djs.Content; exports.ContentFields = _chunk5IE6DZ2Djs.ContentFields; exports.ContentModule = _chunk5IE6DZ2Djs.ContentModule; exports.ContentService = _chunk5IE6DZ2Djs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunk5IE6DZ2Djs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunkQWCAOLBDjs.DataClassRegistry; exports.DataClassRegistry = _chunkQWCAOLBDjs.DataClassRegistry; exports.EndpointCreator = _chunk5IE6DZ2Djs.EndpointCreator; exports.Feature = _chunk5IE6DZ2Djs.Feature; exports.FeatureModule = _chunk5IE6DZ2Djs.FeatureModule; exports.FeatureService = _chunk5IE6DZ2Djs.FeatureService; exports.HowTo = _chunk5IE6DZ2Djs.HowTo; exports.HowToFields = _chunk5IE6DZ2Djs.HowToFields; exports.HowToModule = _chunk5IE6DZ2Djs.HowToModule; exports.HowToService = _chunk5IE6DZ2Djs.HowToService; exports.HttpMethod = _chunk5IE6DZ2Djs.HttpMethod; exports.InvoiceStatus = _chunk5IE6DZ2Djs.InvoiceStatus; exports.JsonApiDataFactory = _chunkQWCAOLBDjs.JsonApiDataFactory; exports.Module = _chunk5IE6DZ2Djs.Module; exports.ModuleModule = _chunk5IE6DZ2Djs.ModuleModule; exports.ModulePathsModule = _chunk5IE6DZ2Djs.ModulePathsModule; exports.ModuleRegistrar = _chunk5IE6DZ2Djs.ModuleRegistrar; exports.ModuleRegistry = _chunk5IE6DZ2Djs.ModuleRegistry; exports.Modules = _chunk5IE6DZ2Djs.Modules; exports.Notification = _chunk5IE6DZ2Djs.Notification; exports.NotificationFields = _chunk5IE6DZ2Djs.NotificationFields; exports.NotificationModule = _chunk5IE6DZ2Djs.NotificationModule; exports.NotificationService = _chunk5IE6DZ2Djs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunk5IE6DZ2Djs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunk5IE6DZ2Djs.OAuthClient; exports.OAuthModule = _chunk5IE6DZ2Djs.OAuthModule; exports.OAuthService = _chunk5IE6DZ2Djs.OAuthService; exports.Passkey = _chunk5IE6DZ2Djs.Passkey; exports.PasskeyAuthenticationOptions = _chunk5IE6DZ2Djs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunk5IE6DZ2Djs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunk5IE6DZ2Djs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunk5IE6DZ2Djs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunk5IE6DZ2Djs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunk5IE6DZ2Djs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunk5IE6DZ2Djs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunk5IE6DZ2Djs.PasskeyRename; exports.PasskeyRenameModule = _chunk5IE6DZ2Djs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunk5IE6DZ2Djs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunk5IE6DZ2Djs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunk5IE6DZ2Djs.PaymentMethod; exports.PermissionMappingModule = _chunk5IE6DZ2Djs.PermissionMappingModule; exports.Push = _chunk5IE6DZ2Djs.Push; exports.PushModule = _chunk5IE6DZ2Djs.PushModule; exports.PushService = _chunk5IE6DZ2Djs.PushService; exports.RbacMatrixModule = _chunk5IE6DZ2Djs.RbacMatrixModule; exports.ReferralModule = _chunk5IE6DZ2Djs.ReferralModule; exports.ReferralService = _chunk5IE6DZ2Djs.ReferralService; exports.ReferralStats = _chunk5IE6DZ2Djs.ReferralStats; exports.ReferralStatsModule = _chunk5IE6DZ2Djs.ReferralStatsModule; exports.RehydrationFactory = _chunk5IE6DZ2Djs.RehydrationFactory; exports.Role = _chunk5IE6DZ2Djs.Role; exports.RoleFields = _chunk5IE6DZ2Djs.RoleFields; exports.RoleModule = _chunk5IE6DZ2Djs.RoleModule; exports.RoleService = _chunk5IE6DZ2Djs.RoleService; exports.S3 = _chunk5IE6DZ2Djs.S3; exports.S3Module = _chunk5IE6DZ2Djs.S3Module; exports.S3Service = _chunk5IE6DZ2Djs.S3Service; exports.StripeCustomer = _chunk5IE6DZ2Djs.StripeCustomer; exports.StripeCustomerModule = _chunk5IE6DZ2Djs.StripeCustomerModule; exports.StripeCustomerService = _chunk5IE6DZ2Djs.StripeCustomerService; exports.StripeInvoice = _chunk5IE6DZ2Djs.StripeInvoice; exports.StripeInvoiceModule = _chunk5IE6DZ2Djs.StripeInvoiceModule; exports.StripeInvoiceService = _chunk5IE6DZ2Djs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunk5IE6DZ2Djs.StripePaymentMethodModule; exports.StripePrice = _chunk5IE6DZ2Djs.StripePrice; exports.StripePriceModule = _chunk5IE6DZ2Djs.StripePriceModule; exports.StripePriceService = _chunk5IE6DZ2Djs.StripePriceService; exports.StripeProduct = _chunk5IE6DZ2Djs.StripeProduct; exports.StripeProductModule = _chunk5IE6DZ2Djs.StripeProductModule; exports.StripeProductService = _chunk5IE6DZ2Djs.StripeProductService; exports.StripePromotionCode = _chunk5IE6DZ2Djs.StripePromotionCode; exports.StripePromotionCodeModule = _chunk5IE6DZ2Djs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunk5IE6DZ2Djs.StripePromotionCodeService; exports.StripeSubscription = _chunk5IE6DZ2Djs.StripeSubscription; exports.StripeSubscriptionModule = _chunk5IE6DZ2Djs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunk5IE6DZ2Djs.StripeSubscriptionService; exports.StripeUsage = _chunk5IE6DZ2Djs.StripeUsage; exports.StripeUsageModule = _chunk5IE6DZ2Djs.StripeUsageModule; exports.StripeUsageService = _chunk5IE6DZ2Djs.StripeUsageService; exports.SubscriptionStatus = _chunk5IE6DZ2Djs.SubscriptionStatus; exports.TableOptions = _chunk5IE6DZ2Djs.TableOptions; exports.TotpAuthenticator = _chunk5IE6DZ2Djs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunk5IE6DZ2Djs.TotpAuthenticatorModule; exports.TotpSetup = _chunk5IE6DZ2Djs.TotpSetup; exports.TotpSetupModule = _chunk5IE6DZ2Djs.TotpSetupModule; exports.TotpVerify = _chunk5IE6DZ2Djs.TotpVerify; exports.TotpVerifyLogin = _chunk5IE6DZ2Djs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunk5IE6DZ2Djs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunk5IE6DZ2Djs.TotpVerifyModule; exports.TwoFactorChallenge = _chunk5IE6DZ2Djs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunk5IE6DZ2Djs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunk5IE6DZ2Djs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunk5IE6DZ2Djs.TwoFactorEnableModule; exports.TwoFactorService = _chunk5IE6DZ2Djs.TwoFactorService; exports.TwoFactorStatus = _chunk5IE6DZ2Djs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunk5IE6DZ2Djs.TwoFactorStatusModule; exports.User = _chunk5IE6DZ2Djs.User; exports.UserFields = _chunk5IE6DZ2Djs.UserFields; exports.UserModule = _chunk5IE6DZ2Djs.UserModule; exports.UserService = _chunk5IE6DZ2Djs.UserService; exports.Waitlist = _chunk5IE6DZ2Djs.Waitlist; exports.WaitlistModule = _chunk5IE6DZ2Djs.WaitlistModule; exports.WaitlistService = _chunk5IE6DZ2Djs.WaitlistService; exports.WaitlistStats = _chunk5IE6DZ2Djs.WaitlistStats; exports.WaitlistStatsModule = _chunk5IE6DZ2Djs.WaitlistStatsModule; exports.checkPermissions = _chunk5IE6DZ2Djs.checkPermissions; exports.checkPermissionsFromServer = _chunk5IE6DZ2Djs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunk5IE6DZ2Djs.clearLastApiTotal; exports.cn = _chunk5IE6DZ2Djs.cn; exports.composeRefs = _chunk5IE6DZ2Djs.composeRefs; exports.createJsonApiInclusion = _chunk5IE6DZ2Djs.createJsonApiInclusion; exports.dismissToast = _chunk5IE6DZ2Djs.dismissToast; exports.entityObjectSchema = _chunk5IE6DZ2Djs.entityObjectSchema; exports.exists = _chunk5IE6DZ2Djs.exists; exports.formatCodiceFiscale = _chunk5IE6DZ2Djs.formatCodiceFiscale; exports.formatDate = _chunk5IE6DZ2Djs.formatDate; exports.formatLocalDate = _chunk5IE6DZ2Djs.formatLocalDate; exports.formatPartitaIva = _chunk5IE6DZ2Djs.formatPartitaIva; exports.getBootstrapper = _chunkQWCAOLBDjs.getBootstrapper; exports.getClientGlobalErrorHandler = _chunk5IE6DZ2Djs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunk5IE6DZ2Djs.getGlobalErrorHandler; exports.getIcon = _chunk5IE6DZ2Djs.getIcon; exports.getIconByModule = _chunk5IE6DZ2Djs.getIconByModule; exports.getIconByModuleName = _chunk5IE6DZ2Djs.getIconByModuleName; exports.getInitials = _chunk5IE6DZ2Djs.getInitials; exports.getLastApiTotal = _chunk5IE6DZ2Djs.getLastApiTotal; exports.getLucideIcon = _chunk5IE6DZ2Djs.getLucideIcon; exports.getLucideIconByModule = _chunk5IE6DZ2Djs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunk5IE6DZ2Djs.getLucideIconByModuleName; exports.getTableComponents = _chunk5IE6DZ2Djs.getTableComponents; exports.getTableOptions = _chunk5IE6DZ2Djs.getTableOptions; exports.getValueFromPath = _chunk5IE6DZ2Djs.getValueFromPath; exports.hasBootstrapper = _chunkQWCAOLBDjs.hasBootstrapper; exports.rehydrate = _chunk5IE6DZ2Djs.rehydrate; exports.rehydrateList = _chunk5IE6DZ2Djs.rehydrateList; exports.resetBootstrapStore = _chunkQWCAOLBDjs.resetBootstrapStore; exports.setBootstrapper = _chunkQWCAOLBDjs.setBootstrapper; exports.setClientGlobalErrorHandler = _chunk5IE6DZ2Djs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunk5IE6DZ2Djs.setGlobalErrorHandler; exports.showCustomToast = _chunk5IE6DZ2Djs.showCustomToast; exports.showError = _chunk5IE6DZ2Djs.showError; exports.showToast = _chunk5IE6DZ2Djs.showToast; exports.translateData = _chunkQWCAOLBDjs.translateData; exports.translateResponse = _chunkQWCAOLBDjs.translateResponse; exports.tryBootstrap = _chunkQWCAOLBDjs.tryBootstrap; exports.useComposedRefs = _chunk5IE6DZ2Djs.useComposedRefs; exports.useIsMobile = _chunk5IE6DZ2Djs.useIsMobile; exports.userObjectSchema = _chunk5IE6DZ2Djs.userObjectSchema; exports.validateCodiceFiscale = _chunk5IE6DZ2Djs.validateCodiceFiscale; exports.validateItalianTaxCode = _chunk5IE6DZ2Djs.validateItalianTaxCode; exports.validatePartitaIva = _chunk5IE6DZ2Djs.validatePartitaIva;
|
|
377
387
|
//# sourceMappingURL=index.js.map
|