@carlonicora/nextjs-jsonapi 1.97.2 → 1.98.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.
Files changed (33) hide show
  1. package/dist/{BlockNoteEditor-OOZGXU6E.js → BlockNoteEditor-3SXAMY6O.js} +9 -9
  2. package/dist/{BlockNoteEditor-OOZGXU6E.js.map → BlockNoteEditor-3SXAMY6O.js.map} +1 -1
  3. package/dist/{BlockNoteEditor-LRJUTHTW.mjs → BlockNoteEditor-HWQHTLEB.mjs} +2 -2
  4. package/dist/billing/index.js +299 -299
  5. package/dist/billing/index.mjs +1 -1
  6. package/dist/{chunk-HCOX3PKM.js → chunk-S5LH5422.js} +360 -262
  7. package/dist/chunk-S5LH5422.js.map +1 -0
  8. package/dist/{chunk-XYGK26YG.mjs → chunk-TLTENUI6.mjs} +141 -43
  9. package/dist/chunk-TLTENUI6.mjs.map +1 -0
  10. package/dist/client/index.d.mts +4 -2
  11. package/dist/client/index.d.ts +4 -2
  12. package/dist/client/index.js +2 -2
  13. package/dist/client/index.mjs +1 -1
  14. package/dist/components/index.d.mts +5 -2
  15. package/dist/components/index.d.ts +5 -2
  16. package/dist/components/index.js +2 -2
  17. package/dist/components/index.mjs +1 -1
  18. package/dist/{content.fields-hzZvhlBd.d.mts → content.fields-xH3TGvVk.d.mts} +2 -0
  19. package/dist/{content.fields-hzZvhlBd.d.ts → content.fields-xH3TGvVk.d.ts} +2 -0
  20. package/dist/contexts/index.js +2 -2
  21. package/dist/contexts/index.mjs +1 -1
  22. package/dist/core/index.d.mts +1 -1
  23. package/dist/core/index.d.ts +1 -1
  24. package/dist/index.d.mts +1 -1
  25. package/dist/index.d.ts +1 -1
  26. package/package.json +1 -1
  27. package/src/components/forms/FormDate.tsx +27 -3
  28. package/src/components/forms/FormDateTime.tsx +40 -8
  29. package/src/hooks/useCustomD3Graph.tsx +91 -10
  30. package/src/interfaces/d3.node.interface.ts +2 -0
  31. package/dist/chunk-HCOX3PKM.js.map +0 -1
  32. package/dist/chunk-XYGK26YG.mjs.map +0 -1
  33. /package/dist/{BlockNoteEditor-LRJUTHTW.mjs.map → BlockNoteEditor-HWQHTLEB.mjs.map} +0 -0
@@ -12,7 +12,7 @@ export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLo
12
12
  import { ColumnDef } from '@tanstack/react-table';
13
13
  import { D as DataListRetriever } from '../useDataListRetriever-BqJSFBck.mjs';
14
14
  export { u as useDataListRetriever } from '../useDataListRetriever-BqJSFBck.mjs';
15
- import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-hzZvhlBd.mjs';
15
+ import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.mjs';
16
16
  export { u as useSocket } from '../useSocket-BkxHHujj.mjs';
17
17
  import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-o5FLpiN7.mjs';
18
18
  import 'lucide-react';
@@ -366,7 +366,9 @@ declare function useTableGenerator<T, U>(type: ModuleWithPermissions, params: Us
366
366
  /**
367
367
  * Custom hook for D3 graph visualization with larger circles and more interactive features
368
368
  */
369
- declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>, loadingNodeIds?: Set<string>, containerKey?: string | number): {
369
+ declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>, options?: {
370
+ directed?: boolean;
371
+ }, loadingNodeIds?: Set<string>, containerKey?: string | number): {
370
372
  svgRef: React.RefObject<SVGSVGElement | null>;
371
373
  zoomIn: () => void;
372
374
  zoomOut: () => void;
@@ -12,7 +12,7 @@ export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLo
12
12
  import { ColumnDef } from '@tanstack/react-table';
13
13
  import { D as DataListRetriever } from '../useDataListRetriever-BqJSFBck.js';
14
14
  export { u as useDataListRetriever } from '../useDataListRetriever-BqJSFBck.js';
15
- import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-hzZvhlBd.js';
15
+ import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.js';
16
16
  export { u as useSocket } from '../useSocket-CMDjWFYm.js';
17
17
  import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-B6xmfDzK.js';
18
18
  import 'lucide-react';
@@ -366,7 +366,9 @@ declare function useTableGenerator<T, U>(type: ModuleWithPermissions, params: Us
366
366
  /**
367
367
  * Custom hook for D3 graph visualization with larger circles and more interactive features
368
368
  */
369
- declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>, loadingNodeIds?: Set<string>, containerKey?: string | number): {
369
+ declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>, options?: {
370
+ directed?: boolean;
371
+ }, loadingNodeIds?: Set<string>, containerKey?: string | number): {
370
372
  svgRef: React.RefObject<SVGSVGElement | null>;
371
373
  zoomIn: () => void;
372
374
  zoomOut: () => void;
@@ -26,7 +26,7 @@
26
26
 
27
27
 
28
28
 
29
- var _chunkHCOX3PKMjs = require('../chunk-HCOX3PKM.js');
29
+ var _chunkS5LH5422js = require('../chunk-S5LH5422.js');
30
30
 
31
31
 
32
32
 
@@ -119,5 +119,5 @@ require('../chunk-7QVYU63E.js');
119
119
 
120
120
 
121
121
 
122
- exports.ClientJsonApiDelete = _chunkXAWKRNYMjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunkXAWKRNYMjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunkXAWKRNYMjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunkXAWKRNYMjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunkXAWKRNYMjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunkHCOX3PKMjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkHCOX3PKMjs.TableGeneratorRegistry; exports.configureClientConfig = _chunkSE5HIHJSjs.configureClientConfig; exports.configureClientJsonApi = _chunkXAWKRNYMjs.configureClientJsonApi; exports.configureI18n = _chunkSE5HIHJSjs.configureI18n; exports.configureJsonApi = _chunkSE5HIHJSjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.getApiUrl = _chunkSE5HIHJSjs.getApiUrl; exports.getAppUrl = _chunkSE5HIHJSjs.getAppUrl; exports.getClientApiUrl = _chunkXAWKRNYMjs.getClientApiUrl; exports.getClientAppUrl = _chunkXAWKRNYMjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunkXAWKRNYMjs.getClientTrackablePages; exports.getI18nLink = _chunkSE5HIHJSjs.getI18nLink; exports.getPublicApiUrl = _chunkSE5HIHJSjs.getPublicApiUrl; exports.getStripePublishableKey = _chunkSE5HIHJSjs.getStripePublishableKey; exports.getTrackablePages = _chunkSE5HIHJSjs.getTrackablePages; exports.registerTableGenerator = _chunkHCOX3PKMjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkHCOX3PKMjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkHCOX3PKMjs.useContentTableStructure; exports.useCustomD3Graph = _chunkHCOX3PKMjs.useCustomD3Graph; exports.useDataListRetriever = _chunkHCOX3PKMjs.useDataListRetriever; exports.useDebounce = _chunkHCOX3PKMjs.useDebounce; exports.useI18nDateFnsLocale = _chunkSE5HIHJSjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunkSE5HIHJSjs.useI18nLocale; exports.useI18nRouter = _chunkSE5HIHJSjs.useI18nRouter; exports.useI18nTranslations = _chunkSE5HIHJSjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunkHCOX3PKMjs.useJsonApiGet; exports.useJsonApiMutation = _chunkHCOX3PKMjs.useJsonApiMutation; exports.useNotificationSync = _chunkHCOX3PKMjs.useNotificationSync; exports.useOAuthClient = _chunkHCOX3PKMjs.useOAuthClient; exports.useOAuthClients = _chunkHCOX3PKMjs.useOAuthClients; exports.useOAuthConsent = _chunkHCOX3PKMjs.useOAuthConsent; exports.usePageTracker = _chunkHCOX3PKMjs.usePageTracker; exports.usePageUrlGenerator = _chunkHCOX3PKMjs.usePageUrlGenerator; exports.useRehydration = _chunkHCOX3PKMjs.useRehydration; exports.useRehydrationList = _chunkHCOX3PKMjs.useRehydrationList; exports.useRoleTableStructure = _chunkHCOX3PKMjs.useRoleTableStructure; exports.useSocket = _chunkHCOX3PKMjs.useSocket; exports.useSubscriptionStatus = _chunkHCOX3PKMjs.useSubscriptionStatus; exports.useTableGenerator = _chunkHCOX3PKMjs.useTableGenerator; exports.useUrlRewriter = _chunkHCOX3PKMjs.useUrlRewriter; exports.useUserSearch = _chunkHCOX3PKMjs.useUserSearch; exports.useUserTableStructure = _chunkHCOX3PKMjs.useUserTableStructure;
122
+ exports.ClientJsonApiDelete = _chunkXAWKRNYMjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunkXAWKRNYMjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunkXAWKRNYMjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunkXAWKRNYMjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunkXAWKRNYMjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunkS5LH5422js.JsonApiProvider; exports.TableGeneratorRegistry = _chunkS5LH5422js.TableGeneratorRegistry; exports.configureClientConfig = _chunkSE5HIHJSjs.configureClientConfig; exports.configureClientJsonApi = _chunkXAWKRNYMjs.configureClientJsonApi; exports.configureI18n = _chunkSE5HIHJSjs.configureI18n; exports.configureJsonApi = _chunkSE5HIHJSjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.getApiUrl = _chunkSE5HIHJSjs.getApiUrl; exports.getAppUrl = _chunkSE5HIHJSjs.getAppUrl; exports.getClientApiUrl = _chunkXAWKRNYMjs.getClientApiUrl; exports.getClientAppUrl = _chunkXAWKRNYMjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunkXAWKRNYMjs.getClientTrackablePages; exports.getI18nLink = _chunkSE5HIHJSjs.getI18nLink; exports.getPublicApiUrl = _chunkSE5HIHJSjs.getPublicApiUrl; exports.getStripePublishableKey = _chunkSE5HIHJSjs.getStripePublishableKey; exports.getTrackablePages = _chunkSE5HIHJSjs.getTrackablePages; exports.registerTableGenerator = _chunkS5LH5422js.registerTableGenerator; exports.tableGeneratorRegistry = _chunkS5LH5422js.tableGeneratorRegistry; exports.useContentTableStructure = _chunkS5LH5422js.useContentTableStructure; exports.useCustomD3Graph = _chunkS5LH5422js.useCustomD3Graph; exports.useDataListRetriever = _chunkS5LH5422js.useDataListRetriever; exports.useDebounce = _chunkS5LH5422js.useDebounce; exports.useI18nDateFnsLocale = _chunkSE5HIHJSjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunkSE5HIHJSjs.useI18nLocale; exports.useI18nRouter = _chunkSE5HIHJSjs.useI18nRouter; exports.useI18nTranslations = _chunkSE5HIHJSjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunkS5LH5422js.useJsonApiGet; exports.useJsonApiMutation = _chunkS5LH5422js.useJsonApiMutation; exports.useNotificationSync = _chunkS5LH5422js.useNotificationSync; exports.useOAuthClient = _chunkS5LH5422js.useOAuthClient; exports.useOAuthClients = _chunkS5LH5422js.useOAuthClients; exports.useOAuthConsent = _chunkS5LH5422js.useOAuthConsent; exports.usePageTracker = _chunkS5LH5422js.usePageTracker; exports.usePageUrlGenerator = _chunkS5LH5422js.usePageUrlGenerator; exports.useRehydration = _chunkS5LH5422js.useRehydration; exports.useRehydrationList = _chunkS5LH5422js.useRehydrationList; exports.useRoleTableStructure = _chunkS5LH5422js.useRoleTableStructure; exports.useSocket = _chunkS5LH5422js.useSocket; exports.useSubscriptionStatus = _chunkS5LH5422js.useSubscriptionStatus; exports.useTableGenerator = _chunkS5LH5422js.useTableGenerator; exports.useUrlRewriter = _chunkS5LH5422js.useUrlRewriter; exports.useUserSearch = _chunkS5LH5422js.useUserSearch; exports.useUserTableStructure = _chunkS5LH5422js.useUserTableStructure;
123
123
  //# sourceMappingURL=index.js.map
@@ -25,7 +25,7 @@ import {
25
25
  useUrlRewriter,
26
26
  useUserSearch,
27
27
  useUserTableStructure
28
- } from "../chunk-XYGK26YG.mjs";
28
+ } from "../chunk-TLTENUI6.mjs";
29
29
  import {
30
30
  configureClientConfig,
31
31
  configureI18n,
@@ -571,7 +571,7 @@ type FormFieldWrapperProps<T extends FieldValues> = {
571
571
  };
572
572
  declare function FormFieldWrapper<T extends FieldValues>({ form, name, label, description, isRequired, orientation, children, testId, }: FormFieldWrapperProps<T>): react_jsx_runtime.JSX.Element;
573
573
 
574
- declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
574
+ declare function FormDate({ form, id, name, minDate, onChange, isRequired, defaultMonth, allowEmpty, }: {
575
575
  form: any;
576
576
  id: string;
577
577
  name?: string;
@@ -579,9 +579,11 @@ declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
579
579
  minDate?: Date;
580
580
  onChange?: (date?: Date) => Promise<void>;
581
581
  isRequired?: boolean;
582
+ defaultMonth?: Date;
583
+ allowEmpty?: boolean;
582
584
  }): react_jsx_runtime.JSX.Element;
583
585
 
584
- declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }: {
586
+ declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, defaultMonth, }: {
585
587
  form: any;
586
588
  id: string;
587
589
  name?: string;
@@ -589,6 +591,7 @@ declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }
589
591
  minDate?: Date;
590
592
  onChange?: (date?: Date) => Promise<void>;
591
593
  allowEmpty?: boolean;
594
+ defaultMonth?: Date;
592
595
  }): react_jsx_runtime.JSX.Element;
593
596
 
594
597
  declare function FormInput({ form, id, name, placeholder, type, onBlur, disabled, onKeyDown, autoFocus, onChange, testId, isRequired, }: {
@@ -571,7 +571,7 @@ type FormFieldWrapperProps<T extends FieldValues> = {
571
571
  };
572
572
  declare function FormFieldWrapper<T extends FieldValues>({ form, name, label, description, isRequired, orientation, children, testId, }: FormFieldWrapperProps<T>): react_jsx_runtime.JSX.Element;
573
573
 
574
- declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
574
+ declare function FormDate({ form, id, name, minDate, onChange, isRequired, defaultMonth, allowEmpty, }: {
575
575
  form: any;
576
576
  id: string;
577
577
  name?: string;
@@ -579,9 +579,11 @@ declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
579
579
  minDate?: Date;
580
580
  onChange?: (date?: Date) => Promise<void>;
581
581
  isRequired?: boolean;
582
+ defaultMonth?: Date;
583
+ allowEmpty?: boolean;
582
584
  }): react_jsx_runtime.JSX.Element;
583
585
 
584
- declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }: {
586
+ declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, defaultMonth, }: {
585
587
  form: any;
586
588
  id: string;
587
589
  name?: string;
@@ -589,6 +591,7 @@ declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }
589
591
  minDate?: Date;
590
592
  onChange?: (date?: Date) => Promise<void>;
591
593
  allowEmpty?: boolean;
594
+ defaultMonth?: Date;
592
595
  }): react_jsx_runtime.JSX.Element;
593
596
 
594
597
  declare function FormInput({ form, id, name, placeholder, type, onBlur, disabled, onKeyDown, autoFocus, onChange, testId, isRequired, }: {
@@ -455,7 +455,7 @@
455
455
 
456
456
 
457
457
 
458
- var _chunkHCOX3PKMjs = require('../chunk-HCOX3PKM.js');
458
+ var _chunkS5LH5422js = require('../chunk-S5LH5422.js');
459
459
  require('../chunk-SE5HIHJS.js');
460
460
 
461
461
 
@@ -935,5 +935,5 @@ require('../chunk-7QVYU63E.js');
935
935
 
936
936
 
937
937
 
938
- exports.AcceptInvitation = _chunkHCOX3PKMjs.AcceptInvitation; exports.Accordion = _chunkHCOX3PKMjs.Accordion; exports.AccordionContent = _chunkHCOX3PKMjs.AccordionContent; exports.AccordionItem = _chunkHCOX3PKMjs.AccordionItem; exports.AccordionTrigger = _chunkHCOX3PKMjs.AccordionTrigger; exports.ActivateAccount = _chunkHCOX3PKMjs.ActivateAccount; exports.AddUserToRole = _chunkHCOX3PKMjs.AddUserToRole; exports.AdminCompanyContainer = _chunkHCOX3PKMjs.AdminCompanyContainer; exports.AdminUsersList = _chunkHCOX3PKMjs.AdminUsersList; exports.Alert = _chunkHCOX3PKMjs.Alert; exports.AlertAction = _chunkHCOX3PKMjs.AlertAction; exports.AlertDescription = _chunkHCOX3PKMjs.AlertDescription; exports.AlertDialog = _chunkHCOX3PKMjs.AlertDialog; exports.AlertDialogAction = _chunkHCOX3PKMjs.AlertDialogAction; exports.AlertDialogCancel = _chunkHCOX3PKMjs.AlertDialogCancel; exports.AlertDialogContent = _chunkHCOX3PKMjs.AlertDialogContent; exports.AlertDialogDescription = _chunkHCOX3PKMjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkHCOX3PKMjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkHCOX3PKMjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkHCOX3PKMjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkHCOX3PKMjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkHCOX3PKMjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkHCOX3PKMjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkHCOX3PKMjs.AlertDialogTrigger; exports.AlertTitle = _chunkHCOX3PKMjs.AlertTitle; exports.AllUsersListContainer = _chunkHCOX3PKMjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkHCOX3PKMjs.AllowedUsersDetails; exports.AssistantContainer = _chunkHCOX3PKMjs.AssistantContainer; exports.AttributeElement = _chunkHCOX3PKMjs.AttributeElement; exports.AuthContainer = _chunkHCOX3PKMjs.AuthContainer; exports.Avatar = _chunkHCOX3PKMjs.Avatar; exports.AvatarBadge = _chunkHCOX3PKMjs.AvatarBadge; exports.AvatarFallback = _chunkHCOX3PKMjs.AvatarFallback; exports.AvatarGroup = _chunkHCOX3PKMjs.AvatarGroup; exports.AvatarGroupCount = _chunkHCOX3PKMjs.AvatarGroupCount; exports.AvatarImage = _chunkHCOX3PKMjs.AvatarImage; exports.BackupCodesDialog = _chunkHCOX3PKMjs.BackupCodesDialog; exports.Badge = _chunkHCOX3PKMjs.Badge; exports.BlockNoteEditorContainer = _chunkHCOX3PKMjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkHCOX3PKMjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkHCOX3PKMjs.BlockNoteEditorMentionSuggestionMenu; exports.Board = _chunkHCOX3PKMjs.KanbanBoard; exports.Breadcrumb = _chunkHCOX3PKMjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkHCOX3PKMjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkHCOX3PKMjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkHCOX3PKMjs.BreadcrumbLink; exports.BreadcrumbList = _chunkHCOX3PKMjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkHCOX3PKMjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkHCOX3PKMjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkHCOX3PKMjs.BreadcrumbSeparator; exports.Button = _chunkHCOX3PKMjs.Button; exports.Calendar = _chunkHCOX3PKMjs.Calendar; exports.CalendarDayButton = _chunkHCOX3PKMjs.CalendarDayButton; exports.Card = _chunkHCOX3PKMjs.Card; exports.CardAction = _chunkHCOX3PKMjs.CardAction; exports.CardContent = _chunkHCOX3PKMjs.CardContent; exports.CardDescription = _chunkHCOX3PKMjs.CardDescription; exports.CardFooter = _chunkHCOX3PKMjs.CardFooter; exports.CardHeader = _chunkHCOX3PKMjs.CardHeader; exports.CardTitle = _chunkHCOX3PKMjs.CardTitle; exports.Carousel = _chunkHCOX3PKMjs.Carousel; exports.CarouselContent = _chunkHCOX3PKMjs.CarouselContent; exports.CarouselItem = _chunkHCOX3PKMjs.CarouselItem; exports.CarouselNext = _chunkHCOX3PKMjs.CarouselNext; exports.CarouselPrevious = _chunkHCOX3PKMjs.CarouselPrevious; exports.ChartContainer = _chunkHCOX3PKMjs.ChartContainer; exports.ChartLegend = _chunkHCOX3PKMjs.ChartLegend; exports.ChartLegendContent = _chunkHCOX3PKMjs.ChartLegendContent; exports.ChartStyle = _chunkHCOX3PKMjs.ChartStyle; exports.ChartTooltip = _chunkHCOX3PKMjs.ChartTooltip; exports.ChartTooltipContent = _chunkHCOX3PKMjs.ChartTooltipContent; exports.Checkbox = _chunkHCOX3PKMjs.Checkbox; exports.Collapsible = _chunkHCOX3PKMjs.Collapsible; exports.CollapsibleContent = _chunkHCOX3PKMjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkHCOX3PKMjs.CollapsibleTrigger; exports.Column = _chunkHCOX3PKMjs.KanbanColumn; exports.ColumnHandle = _chunkHCOX3PKMjs.KanbanColumnHandle; exports.Combobox = _chunkHCOX3PKMjs.Combobox; exports.ComboboxChip = _chunkHCOX3PKMjs.ComboboxChip; exports.ComboboxChips = _chunkHCOX3PKMjs.ComboboxChips; exports.ComboboxChipsInput = _chunkHCOX3PKMjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkHCOX3PKMjs.ComboboxCollection; exports.ComboboxContent = _chunkHCOX3PKMjs.ComboboxContent; exports.ComboboxEmpty = _chunkHCOX3PKMjs.ComboboxEmpty; exports.ComboboxGroup = _chunkHCOX3PKMjs.ComboboxGroup; exports.ComboboxInput = _chunkHCOX3PKMjs.ComboboxInput; exports.ComboboxItem = _chunkHCOX3PKMjs.ComboboxItem; exports.ComboboxLabel = _chunkHCOX3PKMjs.ComboboxLabel; exports.ComboboxList = _chunkHCOX3PKMjs.ComboboxList; exports.ComboboxSeparator = _chunkHCOX3PKMjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkHCOX3PKMjs.ComboboxTrigger; exports.ComboboxValue = _chunkHCOX3PKMjs.ComboboxValue; exports.Command = _chunkHCOX3PKMjs.Command; exports.CommandDialog = _chunkHCOX3PKMjs.CommandDialog; exports.CommandEmpty = _chunkHCOX3PKMjs.CommandEmpty; exports.CommandGroup = _chunkHCOX3PKMjs.CommandGroup; exports.CommandInput = _chunkHCOX3PKMjs.CommandInput; exports.CommandItem = _chunkHCOX3PKMjs.CommandItem; exports.CommandList = _chunkHCOX3PKMjs.CommandList; exports.CommandSeparator = _chunkHCOX3PKMjs.CommandSeparator; exports.CommandShortcut = _chunkHCOX3PKMjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkHCOX3PKMjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkHCOX3PKMjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkHCOX3PKMjs.CommonDeleter; exports.CommonEditorButtons = _chunkHCOX3PKMjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkHCOX3PKMjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkHCOX3PKMjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkHCOX3PKMjs.CommonEditorTrigger; exports.CompaniesList = _chunkHCOX3PKMjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkHCOX3PKMjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkHCOX3PKMjs.CompanyContainer; exports.CompanyContent = _chunkHCOX3PKMjs.CompanyContent; exports.CompanyDeleter = _chunkHCOX3PKMjs.CompanyDeleter; exports.CompanyDetails = _chunkHCOX3PKMjs.CompanyDetails; exports.CompanyEditor = _chunkHCOX3PKMjs.CompanyEditor; exports.CompanyUsersList = _chunkHCOX3PKMjs.CompanyUsersList; exports.ContentListGrid = _chunkHCOX3PKMjs.ContentListGrid; exports.ContentListTable = _chunkHCOX3PKMjs.ContentListTable; exports.ContentTableSearch = _chunkHCOX3PKMjs.ContentTableSearch; exports.ContentTitle = _chunkHCOX3PKMjs.ContentTitle; exports.ContentsList = _chunkHCOX3PKMjs.ContentsList; exports.ContentsListById = _chunkHCOX3PKMjs.ContentsListById; exports.ContextMenu = _chunkHCOX3PKMjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkHCOX3PKMjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkHCOX3PKMjs.ContextMenuContent; exports.ContextMenuGroup = _chunkHCOX3PKMjs.ContextMenuGroup; exports.ContextMenuItem = _chunkHCOX3PKMjs.ContextMenuItem; exports.ContextMenuLabel = _chunkHCOX3PKMjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkHCOX3PKMjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkHCOX3PKMjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkHCOX3PKMjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkHCOX3PKMjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkHCOX3PKMjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkHCOX3PKMjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkHCOX3PKMjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkHCOX3PKMjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkHCOX3PKMjs.ContextMenuTrigger; exports.ContributorsList = _chunkHCOX3PKMjs.ContributorsList; exports.Cookies = _chunkHCOX3PKMjs.Cookies; exports.DatePickerPopover = _chunkHCOX3PKMjs.DatePickerPopover; exports.DateRangeSelector = _chunkHCOX3PKMjs.DateRangeSelector; exports.Dialog = _chunkHCOX3PKMjs.Dialog; exports.DialogClose = _chunkHCOX3PKMjs.DialogClose; exports.DialogContent = _chunkHCOX3PKMjs.DialogContent; exports.DialogDescription = _chunkHCOX3PKMjs.DialogDescription; exports.DialogFooter = _chunkHCOX3PKMjs.DialogFooter; exports.DialogHeader = _chunkHCOX3PKMjs.DialogHeader; exports.DialogOverlay = _chunkHCOX3PKMjs.DialogOverlay; exports.DialogPortal = _chunkHCOX3PKMjs.DialogPortal; exports.DialogTitle = _chunkHCOX3PKMjs.DialogTitle; exports.DialogTrigger = _chunkHCOX3PKMjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkHCOX3PKMjs.DisableTwoFactorDialog; exports.Drawer = _chunkHCOX3PKMjs.Drawer; exports.DrawerClose = _chunkHCOX3PKMjs.DrawerClose; exports.DrawerContent = _chunkHCOX3PKMjs.DrawerContent; exports.DrawerDescription = _chunkHCOX3PKMjs.DrawerDescription; exports.DrawerFooter = _chunkHCOX3PKMjs.DrawerFooter; exports.DrawerHeader = _chunkHCOX3PKMjs.DrawerHeader; exports.DrawerOverlay = _chunkHCOX3PKMjs.DrawerOverlay; exports.DrawerPortal = _chunkHCOX3PKMjs.DrawerPortal; exports.DrawerTitle = _chunkHCOX3PKMjs.DrawerTitle; exports.DrawerTrigger = _chunkHCOX3PKMjs.DrawerTrigger; exports.DropdownMenu = _chunkHCOX3PKMjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkHCOX3PKMjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkHCOX3PKMjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkHCOX3PKMjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkHCOX3PKMjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkHCOX3PKMjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkHCOX3PKMjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkHCOX3PKMjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkHCOX3PKMjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkHCOX3PKMjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkHCOX3PKMjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkHCOX3PKMjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkHCOX3PKMjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkHCOX3PKMjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkHCOX3PKMjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkHCOX3PKMjs.EditableAvatar; exports.EditorSheet = _chunkHCOX3PKMjs.EditorSheet; exports.EntityAvatar = _chunkHCOX3PKMjs.EntityAvatar; exports.EntityMultiSelector = _chunkHCOX3PKMjs.EntityMultiSelector; exports.ErrorDetails = _chunkHCOX3PKMjs.ErrorDetails; exports.Field = _chunkHCOX3PKMjs.Field; exports.FieldContent = _chunkHCOX3PKMjs.FieldContent; exports.FieldDescription = _chunkHCOX3PKMjs.FieldDescription; exports.FieldError = _chunkHCOX3PKMjs.FieldError; exports.FieldGroup = _chunkHCOX3PKMjs.FieldGroup; exports.FieldLabel = _chunkHCOX3PKMjs.FieldLabel; exports.FieldLegend = _chunkHCOX3PKMjs.FieldLegend; exports.FieldSeparator = _chunkHCOX3PKMjs.FieldSeparator; exports.FieldSet = _chunkHCOX3PKMjs.FieldSet; exports.FieldTitle = _chunkHCOX3PKMjs.FieldTitle; exports.FileInput = _chunkHCOX3PKMjs.FileInput; exports.FileUploader = _chunkHCOX3PKMjs.FileUploader; exports.FileUploaderContent = _chunkHCOX3PKMjs.FileUploaderContent; exports.FileUploaderItem = _chunkHCOX3PKMjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkHCOX3PKMjs.FiscalDataDisplay; exports.ForgotPassword = _chunkHCOX3PKMjs.ForgotPassword; exports.Form = _chunkHCOX3PKMjs.Form; exports.FormBlockNote = _chunkHCOX3PKMjs.FormBlockNote; exports.FormCheckbox = _chunkHCOX3PKMjs.FormCheckbox; exports.FormDate = _chunkHCOX3PKMjs.FormDate; exports.FormDateTime = _chunkHCOX3PKMjs.FormDateTime; exports.FormFeatures = _chunkHCOX3PKMjs.FormFeatures; exports.FormFieldWrapper = _chunkHCOX3PKMjs.FormFieldWrapper; exports.FormInput = _chunkHCOX3PKMjs.FormInput; exports.FormPassword = _chunkHCOX3PKMjs.FormPassword; exports.FormPlaceAutocomplete = _chunkHCOX3PKMjs.FormPlaceAutocomplete; exports.FormRoles = _chunkHCOX3PKMjs.FormRoles; exports.FormSelect = _chunkHCOX3PKMjs.FormSelect; exports.FormSlider = _chunkHCOX3PKMjs.FormSlider; exports.FormSwitch = _chunkHCOX3PKMjs.FormSwitch; exports.FormTextarea = _chunkHCOX3PKMjs.FormTextarea; exports.GdprConsentCheckbox = _chunkHCOX3PKMjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkHCOX3PKMjs.GdprConsentSection; exports.Header = _chunkHCOX3PKMjs.Header; exports.HoverCard = _chunkHCOX3PKMjs.HoverCard; exports.HoverCardContent = _chunkHCOX3PKMjs.HoverCardContent; exports.HoverCardTrigger = _chunkHCOX3PKMjs.HoverCardTrigger; exports.HowToCommand = _chunkHCOX3PKMjs.HowToCommand; exports.HowToCommandViewer = _chunkHCOX3PKMjs.HowToCommandViewer; exports.HowToContainer = _chunkHCOX3PKMjs.HowToContainer; exports.HowToContent = _chunkHCOX3PKMjs.HowToContent; exports.HowToDeleter = _chunkHCOX3PKMjs.HowToDeleter; exports.HowToDetails = _chunkHCOX3PKMjs.HowToDetails; exports.HowToEditor = _chunkHCOX3PKMjs.HowToEditor; exports.HowToList = _chunkHCOX3PKMjs.HowToList; exports.HowToListContainer = _chunkHCOX3PKMjs.HowToListContainer; exports.HowToMultiSelector = _chunkHCOX3PKMjs.HowToMultiSelector; exports.HowToSelector = _chunkHCOX3PKMjs.HowToSelector; exports.Input = _chunkHCOX3PKMjs.Input; exports.InputGroup = _chunkHCOX3PKMjs.InputGroup; exports.InputGroupAddon = _chunkHCOX3PKMjs.InputGroupAddon; exports.InputGroupButton = _chunkHCOX3PKMjs.InputGroupButton; exports.InputGroupInput = _chunkHCOX3PKMjs.InputGroupInput; exports.InputGroupText = _chunkHCOX3PKMjs.InputGroupText; exports.InputGroupTextarea = _chunkHCOX3PKMjs.InputGroupTextarea; exports.InputOTP = _chunkHCOX3PKMjs.InputOTP; exports.InputOTPGroup = _chunkHCOX3PKMjs.InputOTPGroup; exports.InputOTPSeparator = _chunkHCOX3PKMjs.InputOTPSeparator; exports.InputOTPSlot = _chunkHCOX3PKMjs.InputOTPSlot; exports.ItalianFiscalData = _chunkHCOX3PKMjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkHCOX3PKMjs.ItalianFiscalDataDisplay; exports.Item = _chunkHCOX3PKMjs.KanbanItem; exports.ItemHandle = _chunkHCOX3PKMjs.KanbanItemHandle; exports.Kanban = _chunkHCOX3PKMjs.KanbanRoot; exports.KanbanBoard = _chunkHCOX3PKMjs.KanbanBoard; exports.KanbanColumn = _chunkHCOX3PKMjs.KanbanColumn; exports.KanbanColumnHandle = _chunkHCOX3PKMjs.KanbanColumnHandle; exports.KanbanItem = _chunkHCOX3PKMjs.KanbanItem; exports.KanbanItemHandle = _chunkHCOX3PKMjs.KanbanItemHandle; exports.KanbanOverlay = _chunkHCOX3PKMjs.KanbanOverlay; exports.Label = _chunkHCOX3PKMjs.Label; exports.LandingComponent = _chunkHCOX3PKMjs.LandingComponent; exports.Link = _chunkHCOX3PKMjs.Link; exports.Login = _chunkHCOX3PKMjs.Login; exports.Logout = _chunkHCOX3PKMjs.Logout; exports.MessageItem = _chunkHCOX3PKMjs.MessageItem; exports.MessageList = _chunkHCOX3PKMjs.MessageList; exports.MessageSourcesPanel = _chunkHCOX3PKMjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkHCOX3PKMjs.ModeToggleSwitch; exports.MultiSelect = _chunkHCOX3PKMjs.MultiSelect; exports.MultipleSelector = _chunkHCOX3PKMjs.MultipleSelector; exports.NavigationMenu = _chunkHCOX3PKMjs.NavigationMenu; exports.NavigationMenuContent = _chunkHCOX3PKMjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkHCOX3PKMjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkHCOX3PKMjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkHCOX3PKMjs.NavigationMenuLink; exports.NavigationMenuList = _chunkHCOX3PKMjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkHCOX3PKMjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkHCOX3PKMjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkHCOX3PKMjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkHCOX3PKMjs.NotificationMenuItem; exports.NotificationModal = _chunkHCOX3PKMjs.NotificationModal; exports.NotificationToast = _chunkHCOX3PKMjs.NotificationToast; exports.NotificationsList = _chunkHCOX3PKMjs.NotificationsList; exports.NotificationsListContainer = _chunkHCOX3PKMjs.NotificationsListContainer; exports.OAuthClientCard = _chunkHCOX3PKMjs.OAuthClientCard; exports.OAuthClientDetail = _chunkHCOX3PKMjs.OAuthClientDetail; exports.OAuthClientForm = _chunkHCOX3PKMjs.OAuthClientForm; exports.OAuthClientList = _chunkHCOX3PKMjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkHCOX3PKMjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkHCOX3PKMjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkHCOX3PKMjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkHCOX3PKMjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkHCOX3PKMjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkHCOX3PKMjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkHCOX3PKMjs.OAuthScopeSelector; exports.OnboardingCard = _chunkHCOX3PKMjs.OnboardingCard; exports.Overlay = _chunkHCOX3PKMjs.KanbanOverlay; exports.PageContainer = _chunkHCOX3PKMjs.PageContainer; exports.PageContainerContentDetails = _chunkHCOX3PKMjs.PageContainerContentDetails; exports.PageContentContainer = _chunkHCOX3PKMjs.PageContentContainer; exports.PageSection = _chunkHCOX3PKMjs.PageSection; exports.PasskeyButton = _chunkHCOX3PKMjs.PasskeyButton; exports.PasskeyList = _chunkHCOX3PKMjs.PasskeyList; exports.PasskeySetupDialog = _chunkHCOX3PKMjs.PasskeySetupDialog; exports.PasswordInput = _chunkHCOX3PKMjs.PasswordInput; exports.Popover = _chunkHCOX3PKMjs.Popover; exports.PopoverContent = _chunkHCOX3PKMjs.PopoverContent; exports.PopoverDescription = _chunkHCOX3PKMjs.PopoverDescription; exports.PopoverHeader = _chunkHCOX3PKMjs.PopoverHeader; exports.PopoverTitle = _chunkHCOX3PKMjs.PopoverTitle; exports.PopoverTrigger = _chunkHCOX3PKMjs.PopoverTrigger; exports.Progress = _chunkHCOX3PKMjs.Progress; exports.ProgressIndicator = _chunkHCOX3PKMjs.ProgressIndicator; exports.ProgressLabel = _chunkHCOX3PKMjs.ProgressLabel; exports.ProgressTrack = _chunkHCOX3PKMjs.ProgressTrack; exports.ProgressValue = _chunkHCOX3PKMjs.ProgressValue; exports.PushNotificationProvider = _chunkHCOX3PKMjs.PushNotificationProvider; exports.RadioGroup = _chunkHCOX3PKMjs.RadioGroup; exports.RadioGroupItem = _chunkHCOX3PKMjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkHCOX3PKMjs.RbacByRoleContainer; exports.RbacContainer = _chunkHCOX3PKMjs.RbacContainer; exports.RbacPermissionCell = _chunkHCOX3PKMjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkHCOX3PKMjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkHCOX3PKMjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkHCOX3PKMjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkHCOX3PKMjs.ReferralCodeCapture; exports.ReferralDialog = _chunkHCOX3PKMjs.ReferralDialog; exports.ReferralWidget = _chunkHCOX3PKMjs.ReferralWidget; exports.RefreshUser = _chunkHCOX3PKMjs.RefreshUser; exports.RelevantContentsList = _chunkHCOX3PKMjs.RelevantContentsList; exports.RelevantUsersList = _chunkHCOX3PKMjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkHCOX3PKMjs.RemoveUserFromRole; exports.ResetPassword = _chunkHCOX3PKMjs.ResetPassword; exports.ResizableHandle = _chunkHCOX3PKMjs.ResizableHandle; exports.ResizablePanel = _chunkHCOX3PKMjs.ResizablePanel; exports.ResizablePanelGroup = _chunkHCOX3PKMjs.ResizablePanelGroup; exports.RoleContainer = _chunkHCOX3PKMjs.RoleContainer; exports.RoleDetails = _chunkHCOX3PKMjs.RoleDetails; exports.RoleUsersList = _chunkHCOX3PKMjs.RoleUsersList; exports.RolesList = _chunkHCOX3PKMjs.RolesList; exports.Root = _chunkHCOX3PKMjs.KanbanRoot; exports.RoundPageContainer = _chunkHCOX3PKMjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkHCOX3PKMjs.RoundPageContainerTitle; exports.ScrollArea = _chunkHCOX3PKMjs.ScrollArea; exports.ScrollBar = _chunkHCOX3PKMjs.ScrollBar; exports.SecurityContainer = _chunkHCOX3PKMjs.SecurityContainer; exports.Select = _chunkHCOX3PKMjs.Select; exports.SelectContent = _chunkHCOX3PKMjs.SelectContent; exports.SelectGroup = _chunkHCOX3PKMjs.SelectGroup; exports.SelectItem = _chunkHCOX3PKMjs.SelectItem; exports.SelectLabel = _chunkHCOX3PKMjs.SelectLabel; exports.SelectScrollDownButton = _chunkHCOX3PKMjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkHCOX3PKMjs.SelectScrollUpButton; exports.SelectSeparator = _chunkHCOX3PKMjs.SelectSeparator; exports.SelectTrigger = _chunkHCOX3PKMjs.SelectTrigger; exports.SelectValue = _chunkHCOX3PKMjs.SelectValue; exports.Separator = _chunkHCOX3PKMjs.Separator; exports.Sheet = _chunkHCOX3PKMjs.Sheet; exports.SheetClose = _chunkHCOX3PKMjs.SheetClose; exports.SheetContent = _chunkHCOX3PKMjs.SheetContent; exports.SheetDescription = _chunkHCOX3PKMjs.SheetDescription; exports.SheetFooter = _chunkHCOX3PKMjs.SheetFooter; exports.SheetHeader = _chunkHCOX3PKMjs.SheetHeader; exports.SheetTitle = _chunkHCOX3PKMjs.SheetTitle; exports.SheetTrigger = _chunkHCOX3PKMjs.SheetTrigger; exports.Sidebar = _chunkHCOX3PKMjs.Sidebar; exports.SidebarContent = _chunkHCOX3PKMjs.SidebarContent; exports.SidebarFooter = _chunkHCOX3PKMjs.SidebarFooter; exports.SidebarGroup = _chunkHCOX3PKMjs.SidebarGroup; exports.SidebarGroupAction = _chunkHCOX3PKMjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkHCOX3PKMjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkHCOX3PKMjs.SidebarGroupLabel; exports.SidebarHeader = _chunkHCOX3PKMjs.SidebarHeader; exports.SidebarInput = _chunkHCOX3PKMjs.SidebarInput; exports.SidebarInset = _chunkHCOX3PKMjs.SidebarInset; exports.SidebarMenu = _chunkHCOX3PKMjs.SidebarMenu; exports.SidebarMenuAction = _chunkHCOX3PKMjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkHCOX3PKMjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkHCOX3PKMjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkHCOX3PKMjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkHCOX3PKMjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkHCOX3PKMjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkHCOX3PKMjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkHCOX3PKMjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkHCOX3PKMjs.SidebarProvider; exports.SidebarRail = _chunkHCOX3PKMjs.SidebarRail; exports.SidebarSeparator = _chunkHCOX3PKMjs.SidebarSeparator; exports.SidebarTrigger = _chunkHCOX3PKMjs.SidebarTrigger; exports.Skeleton = _chunkHCOX3PKMjs.Skeleton; exports.Slider = _chunkHCOX3PKMjs.Slider; exports.Switch = _chunkHCOX3PKMjs.Switch; exports.Table = _chunkHCOX3PKMjs.Table; exports.TableBody = _chunkHCOX3PKMjs.TableBody; exports.TableCaption = _chunkHCOX3PKMjs.TableCaption; exports.TableCell = _chunkHCOX3PKMjs.TableCell; exports.TableCellAvatar = _chunkHCOX3PKMjs.TableCellAvatar; exports.TableFooter = _chunkHCOX3PKMjs.TableFooter; exports.TableHead = _chunkHCOX3PKMjs.TableHead; exports.TableHeader = _chunkHCOX3PKMjs.TableHeader; exports.TableRow = _chunkHCOX3PKMjs.TableRow; exports.Tabs = _chunkHCOX3PKMjs.Tabs; exports.TabsContainer = _chunkHCOX3PKMjs.TabsContainer; exports.TabsContent = _chunkHCOX3PKMjs.TabsContent; exports.TabsList = _chunkHCOX3PKMjs.TabsList; exports.TabsTrigger = _chunkHCOX3PKMjs.TabsTrigger; exports.Textarea = _chunkHCOX3PKMjs.Textarea; exports.Toaster = _chunkHCOX3PKMjs.Toaster; exports.Toggle = _chunkHCOX3PKMjs.Toggle; exports.TokenStatusIndicator = _chunkHCOX3PKMjs.TokenStatusIndicator; exports.Tooltip = _chunkHCOX3PKMjs.Tooltip; exports.TooltipContent = _chunkHCOX3PKMjs.TooltipContent; exports.TooltipProvider = _chunkHCOX3PKMjs.TooltipProvider; exports.TooltipTrigger = _chunkHCOX3PKMjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkHCOX3PKMjs.TotpAuthenticatorList; exports.TotpInput = _chunkHCOX3PKMjs.TotpInput; exports.TotpSetupDialog = _chunkHCOX3PKMjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkHCOX3PKMjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkHCOX3PKMjs.TwoFactorSettings; exports.UserAvatar = _chunkHCOX3PKMjs.UserAvatar; exports.UserAvatarEditor = _chunkHCOX3PKMjs.UserAvatarEditor; exports.UserAvatarList = _chunkHCOX3PKMjs.UserAvatarList; exports.UserContainer = _chunkHCOX3PKMjs.UserContainer; exports.UserContent = _chunkHCOX3PKMjs.UserContent; exports.UserDeleter = _chunkHCOX3PKMjs.UserDeleter; exports.UserEditor = _chunkHCOX3PKMjs.UserEditor; exports.UserIndexContainer = _chunkHCOX3PKMjs.UserIndexContainer; exports.UserIndexDetails = _chunkHCOX3PKMjs.UserIndexDetails; exports.UserListInAdd = _chunkHCOX3PKMjs.UserListInAdd; exports.UserMultiSelect = _chunkHCOX3PKMjs.UserMultiSelect; exports.UserReactivator = _chunkHCOX3PKMjs.UserReactivator; exports.UserResentInvitationEmail = _chunkHCOX3PKMjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkHCOX3PKMjs.UserRoleAdd; exports.UserRolesList = _chunkHCOX3PKMjs.UserRolesList; exports.UserSearchPopover = _chunkHCOX3PKMjs.UserSearchPopover; exports.UserSelector = _chunkHCOX3PKMjs.UserSelector; exports.UserStanadaloneDetails = _chunkHCOX3PKMjs.UserStanadaloneDetails; exports.UsersList = _chunkHCOX3PKMjs.UsersList; exports.UsersListByContentIds = _chunkHCOX3PKMjs.UsersListByContentIds; exports.UsersListContainer = _chunkHCOX3PKMjs.UsersListContainer; exports.WaitlistConfirmation = _chunkHCOX3PKMjs.WaitlistConfirmation; exports.WaitlistForm = _chunkHCOX3PKMjs.WaitlistForm; exports.WaitlistHeroSection = _chunkHCOX3PKMjs.WaitlistHeroSection; exports.WaitlistList = _chunkHCOX3PKMjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkHCOX3PKMjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkHCOX3PKMjs.WaitlistSuccessState; exports.badgeVariants = _chunkHCOX3PKMjs.badgeVariants; exports.buttonVariants = _chunkHCOX3PKMjs.buttonVariants; exports.cellComponent = _chunkHCOX3PKMjs.cellComponent; exports.cellDate = _chunkHCOX3PKMjs.cellDate; exports.cellDateTime = _chunkHCOX3PKMjs.cellDateTime; exports.cellId = _chunkHCOX3PKMjs.cellId; exports.cellLink = _chunkHCOX3PKMjs.cellLink; exports.cellUrl = _chunkHCOX3PKMjs.cellUrl; exports.createMentionInlineContentSpec = _chunkHCOX3PKMjs.createMentionInlineContentSpec; exports.errorToast = _chunkHCOX3PKMjs.errorToast; exports.generateNotificationData = _chunkHCOX3PKMjs.generateNotificationData; exports.getIcon = _chunkXAWKRNYMjs.getIcon; exports.getIconByModule = _chunkXAWKRNYMjs.getIconByModule; exports.getIconByModuleName = _chunkXAWKRNYMjs.getIconByModuleName; exports.getInitials = _chunkXAWKRNYMjs.getInitials; exports.mentionDataAttrs = _chunkHCOX3PKMjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkHCOX3PKMjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkHCOX3PKMjs.parseFiscalData; exports.tabsListVariants = _chunkHCOX3PKMjs.tabsListVariants; exports.toggleVariants = _chunkHCOX3PKMjs.toggleVariants; exports.triggerAssociationToast = _chunkHCOX3PKMjs.triggerAssociationToast; exports.useCarousel = _chunkHCOX3PKMjs.useCarousel; exports.useComboboxAnchor = _chunkHCOX3PKMjs.useComboboxAnchor; exports.useDebounce = _chunkHCOX3PKMjs.useDebounce2; exports.useEditorDialog = _chunkHCOX3PKMjs.useEditorDialog; exports.useFileUpload = _chunkHCOX3PKMjs.useFileUpload; exports.useMentionInsert = _chunkHCOX3PKMjs.useMentionInsert; exports.useSidebar = _chunkHCOX3PKMjs.useSidebar;
938
+ exports.AcceptInvitation = _chunkS5LH5422js.AcceptInvitation; exports.Accordion = _chunkS5LH5422js.Accordion; exports.AccordionContent = _chunkS5LH5422js.AccordionContent; exports.AccordionItem = _chunkS5LH5422js.AccordionItem; exports.AccordionTrigger = _chunkS5LH5422js.AccordionTrigger; exports.ActivateAccount = _chunkS5LH5422js.ActivateAccount; exports.AddUserToRole = _chunkS5LH5422js.AddUserToRole; exports.AdminCompanyContainer = _chunkS5LH5422js.AdminCompanyContainer; exports.AdminUsersList = _chunkS5LH5422js.AdminUsersList; exports.Alert = _chunkS5LH5422js.Alert; exports.AlertAction = _chunkS5LH5422js.AlertAction; exports.AlertDescription = _chunkS5LH5422js.AlertDescription; exports.AlertDialog = _chunkS5LH5422js.AlertDialog; exports.AlertDialogAction = _chunkS5LH5422js.AlertDialogAction; exports.AlertDialogCancel = _chunkS5LH5422js.AlertDialogCancel; exports.AlertDialogContent = _chunkS5LH5422js.AlertDialogContent; exports.AlertDialogDescription = _chunkS5LH5422js.AlertDialogDescription; exports.AlertDialogFooter = _chunkS5LH5422js.AlertDialogFooter; exports.AlertDialogHeader = _chunkS5LH5422js.AlertDialogHeader; exports.AlertDialogMedia = _chunkS5LH5422js.AlertDialogMedia; exports.AlertDialogOverlay = _chunkS5LH5422js.AlertDialogOverlay; exports.AlertDialogPortal = _chunkS5LH5422js.AlertDialogPortal; exports.AlertDialogTitle = _chunkS5LH5422js.AlertDialogTitle; exports.AlertDialogTrigger = _chunkS5LH5422js.AlertDialogTrigger; exports.AlertTitle = _chunkS5LH5422js.AlertTitle; exports.AllUsersListContainer = _chunkS5LH5422js.AllUsersListContainer; exports.AllowedUsersDetails = _chunkS5LH5422js.AllowedUsersDetails; exports.AssistantContainer = _chunkS5LH5422js.AssistantContainer; exports.AttributeElement = _chunkS5LH5422js.AttributeElement; exports.AuthContainer = _chunkS5LH5422js.AuthContainer; exports.Avatar = _chunkS5LH5422js.Avatar; exports.AvatarBadge = _chunkS5LH5422js.AvatarBadge; exports.AvatarFallback = _chunkS5LH5422js.AvatarFallback; exports.AvatarGroup = _chunkS5LH5422js.AvatarGroup; exports.AvatarGroupCount = _chunkS5LH5422js.AvatarGroupCount; exports.AvatarImage = _chunkS5LH5422js.AvatarImage; exports.BackupCodesDialog = _chunkS5LH5422js.BackupCodesDialog; exports.Badge = _chunkS5LH5422js.Badge; exports.BlockNoteEditorContainer = _chunkS5LH5422js.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkS5LH5422js.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkS5LH5422js.BlockNoteEditorMentionSuggestionMenu; exports.Board = _chunkS5LH5422js.KanbanBoard; exports.Breadcrumb = _chunkS5LH5422js.Breadcrumb; exports.BreadcrumbEllipsis = _chunkS5LH5422js.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkS5LH5422js.BreadcrumbItem; exports.BreadcrumbLink = _chunkS5LH5422js.BreadcrumbLink; exports.BreadcrumbList = _chunkS5LH5422js.BreadcrumbList; exports.BreadcrumbNavigation = _chunkS5LH5422js.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkS5LH5422js.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkS5LH5422js.BreadcrumbSeparator; exports.Button = _chunkS5LH5422js.Button; exports.Calendar = _chunkS5LH5422js.Calendar; exports.CalendarDayButton = _chunkS5LH5422js.CalendarDayButton; exports.Card = _chunkS5LH5422js.Card; exports.CardAction = _chunkS5LH5422js.CardAction; exports.CardContent = _chunkS5LH5422js.CardContent; exports.CardDescription = _chunkS5LH5422js.CardDescription; exports.CardFooter = _chunkS5LH5422js.CardFooter; exports.CardHeader = _chunkS5LH5422js.CardHeader; exports.CardTitle = _chunkS5LH5422js.CardTitle; exports.Carousel = _chunkS5LH5422js.Carousel; exports.CarouselContent = _chunkS5LH5422js.CarouselContent; exports.CarouselItem = _chunkS5LH5422js.CarouselItem; exports.CarouselNext = _chunkS5LH5422js.CarouselNext; exports.CarouselPrevious = _chunkS5LH5422js.CarouselPrevious; exports.ChartContainer = _chunkS5LH5422js.ChartContainer; exports.ChartLegend = _chunkS5LH5422js.ChartLegend; exports.ChartLegendContent = _chunkS5LH5422js.ChartLegendContent; exports.ChartStyle = _chunkS5LH5422js.ChartStyle; exports.ChartTooltip = _chunkS5LH5422js.ChartTooltip; exports.ChartTooltipContent = _chunkS5LH5422js.ChartTooltipContent; exports.Checkbox = _chunkS5LH5422js.Checkbox; exports.Collapsible = _chunkS5LH5422js.Collapsible; exports.CollapsibleContent = _chunkS5LH5422js.CollapsibleContent; exports.CollapsibleTrigger = _chunkS5LH5422js.CollapsibleTrigger; exports.Column = _chunkS5LH5422js.KanbanColumn; exports.ColumnHandle = _chunkS5LH5422js.KanbanColumnHandle; exports.Combobox = _chunkS5LH5422js.Combobox; exports.ComboboxChip = _chunkS5LH5422js.ComboboxChip; exports.ComboboxChips = _chunkS5LH5422js.ComboboxChips; exports.ComboboxChipsInput = _chunkS5LH5422js.ComboboxChipsInput; exports.ComboboxCollection = _chunkS5LH5422js.ComboboxCollection; exports.ComboboxContent = _chunkS5LH5422js.ComboboxContent; exports.ComboboxEmpty = _chunkS5LH5422js.ComboboxEmpty; exports.ComboboxGroup = _chunkS5LH5422js.ComboboxGroup; exports.ComboboxInput = _chunkS5LH5422js.ComboboxInput; exports.ComboboxItem = _chunkS5LH5422js.ComboboxItem; exports.ComboboxLabel = _chunkS5LH5422js.ComboboxLabel; exports.ComboboxList = _chunkS5LH5422js.ComboboxList; exports.ComboboxSeparator = _chunkS5LH5422js.ComboboxSeparator; exports.ComboboxTrigger = _chunkS5LH5422js.ComboboxTrigger; exports.ComboboxValue = _chunkS5LH5422js.ComboboxValue; exports.Command = _chunkS5LH5422js.Command; exports.CommandDialog = _chunkS5LH5422js.CommandDialog; exports.CommandEmpty = _chunkS5LH5422js.CommandEmpty; exports.CommandGroup = _chunkS5LH5422js.CommandGroup; exports.CommandInput = _chunkS5LH5422js.CommandInput; exports.CommandItem = _chunkS5LH5422js.CommandItem; exports.CommandList = _chunkS5LH5422js.CommandList; exports.CommandSeparator = _chunkS5LH5422js.CommandSeparator; exports.CommandShortcut = _chunkS5LH5422js.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkS5LH5422js.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkS5LH5422js.CommonAssociationTrigger; exports.CommonDeleter = _chunkS5LH5422js.CommonDeleter; exports.CommonEditorButtons = _chunkS5LH5422js.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkS5LH5422js.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkS5LH5422js.CommonEditorHeader; exports.CommonEditorTrigger = _chunkS5LH5422js.CommonEditorTrigger; exports.CompaniesList = _chunkS5LH5422js.CompaniesList; exports.CompanyConfigurationEditor = _chunkS5LH5422js.CompanyConfigurationEditor; exports.CompanyContainer = _chunkS5LH5422js.CompanyContainer; exports.CompanyContent = _chunkS5LH5422js.CompanyContent; exports.CompanyDeleter = _chunkS5LH5422js.CompanyDeleter; exports.CompanyDetails = _chunkS5LH5422js.CompanyDetails; exports.CompanyEditor = _chunkS5LH5422js.CompanyEditor; exports.CompanyUsersList = _chunkS5LH5422js.CompanyUsersList; exports.ContentListGrid = _chunkS5LH5422js.ContentListGrid; exports.ContentListTable = _chunkS5LH5422js.ContentListTable; exports.ContentTableSearch = _chunkS5LH5422js.ContentTableSearch; exports.ContentTitle = _chunkS5LH5422js.ContentTitle; exports.ContentsList = _chunkS5LH5422js.ContentsList; exports.ContentsListById = _chunkS5LH5422js.ContentsListById; exports.ContextMenu = _chunkS5LH5422js.ContextMenu; exports.ContextMenuCheckboxItem = _chunkS5LH5422js.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkS5LH5422js.ContextMenuContent; exports.ContextMenuGroup = _chunkS5LH5422js.ContextMenuGroup; exports.ContextMenuItem = _chunkS5LH5422js.ContextMenuItem; exports.ContextMenuLabel = _chunkS5LH5422js.ContextMenuLabel; exports.ContextMenuPortal = _chunkS5LH5422js.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkS5LH5422js.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkS5LH5422js.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkS5LH5422js.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkS5LH5422js.ContextMenuShortcut; exports.ContextMenuSub = _chunkS5LH5422js.ContextMenuSub; exports.ContextMenuSubContent = _chunkS5LH5422js.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkS5LH5422js.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkS5LH5422js.ContextMenuTrigger; exports.ContributorsList = _chunkS5LH5422js.ContributorsList; exports.Cookies = _chunkS5LH5422js.Cookies; exports.DatePickerPopover = _chunkS5LH5422js.DatePickerPopover; exports.DateRangeSelector = _chunkS5LH5422js.DateRangeSelector; exports.Dialog = _chunkS5LH5422js.Dialog; exports.DialogClose = _chunkS5LH5422js.DialogClose; exports.DialogContent = _chunkS5LH5422js.DialogContent; exports.DialogDescription = _chunkS5LH5422js.DialogDescription; exports.DialogFooter = _chunkS5LH5422js.DialogFooter; exports.DialogHeader = _chunkS5LH5422js.DialogHeader; exports.DialogOverlay = _chunkS5LH5422js.DialogOverlay; exports.DialogPortal = _chunkS5LH5422js.DialogPortal; exports.DialogTitle = _chunkS5LH5422js.DialogTitle; exports.DialogTrigger = _chunkS5LH5422js.DialogTrigger; exports.DisableTwoFactorDialog = _chunkS5LH5422js.DisableTwoFactorDialog; exports.Drawer = _chunkS5LH5422js.Drawer; exports.DrawerClose = _chunkS5LH5422js.DrawerClose; exports.DrawerContent = _chunkS5LH5422js.DrawerContent; exports.DrawerDescription = _chunkS5LH5422js.DrawerDescription; exports.DrawerFooter = _chunkS5LH5422js.DrawerFooter; exports.DrawerHeader = _chunkS5LH5422js.DrawerHeader; exports.DrawerOverlay = _chunkS5LH5422js.DrawerOverlay; exports.DrawerPortal = _chunkS5LH5422js.DrawerPortal; exports.DrawerTitle = _chunkS5LH5422js.DrawerTitle; exports.DrawerTrigger = _chunkS5LH5422js.DrawerTrigger; exports.DropdownMenu = _chunkS5LH5422js.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkS5LH5422js.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkS5LH5422js.DropdownMenuContent; exports.DropdownMenuGroup = _chunkS5LH5422js.DropdownMenuGroup; exports.DropdownMenuItem = _chunkS5LH5422js.DropdownMenuItem; exports.DropdownMenuLabel = _chunkS5LH5422js.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkS5LH5422js.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkS5LH5422js.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkS5LH5422js.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkS5LH5422js.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkS5LH5422js.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkS5LH5422js.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkS5LH5422js.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkS5LH5422js.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkS5LH5422js.DropdownMenuTrigger; exports.EditableAvatar = _chunkS5LH5422js.EditableAvatar; exports.EditorSheet = _chunkS5LH5422js.EditorSheet; exports.EntityAvatar = _chunkS5LH5422js.EntityAvatar; exports.EntityMultiSelector = _chunkS5LH5422js.EntityMultiSelector; exports.ErrorDetails = _chunkS5LH5422js.ErrorDetails; exports.Field = _chunkS5LH5422js.Field; exports.FieldContent = _chunkS5LH5422js.FieldContent; exports.FieldDescription = _chunkS5LH5422js.FieldDescription; exports.FieldError = _chunkS5LH5422js.FieldError; exports.FieldGroup = _chunkS5LH5422js.FieldGroup; exports.FieldLabel = _chunkS5LH5422js.FieldLabel; exports.FieldLegend = _chunkS5LH5422js.FieldLegend; exports.FieldSeparator = _chunkS5LH5422js.FieldSeparator; exports.FieldSet = _chunkS5LH5422js.FieldSet; exports.FieldTitle = _chunkS5LH5422js.FieldTitle; exports.FileInput = _chunkS5LH5422js.FileInput; exports.FileUploader = _chunkS5LH5422js.FileUploader; exports.FileUploaderContent = _chunkS5LH5422js.FileUploaderContent; exports.FileUploaderItem = _chunkS5LH5422js.FileUploaderItem; exports.FiscalDataDisplay = _chunkS5LH5422js.FiscalDataDisplay; exports.ForgotPassword = _chunkS5LH5422js.ForgotPassword; exports.Form = _chunkS5LH5422js.Form; exports.FormBlockNote = _chunkS5LH5422js.FormBlockNote; exports.FormCheckbox = _chunkS5LH5422js.FormCheckbox; exports.FormDate = _chunkS5LH5422js.FormDate; exports.FormDateTime = _chunkS5LH5422js.FormDateTime; exports.FormFeatures = _chunkS5LH5422js.FormFeatures; exports.FormFieldWrapper = _chunkS5LH5422js.FormFieldWrapper; exports.FormInput = _chunkS5LH5422js.FormInput; exports.FormPassword = _chunkS5LH5422js.FormPassword; exports.FormPlaceAutocomplete = _chunkS5LH5422js.FormPlaceAutocomplete; exports.FormRoles = _chunkS5LH5422js.FormRoles; exports.FormSelect = _chunkS5LH5422js.FormSelect; exports.FormSlider = _chunkS5LH5422js.FormSlider; exports.FormSwitch = _chunkS5LH5422js.FormSwitch; exports.FormTextarea = _chunkS5LH5422js.FormTextarea; exports.GdprConsentCheckbox = _chunkS5LH5422js.GdprConsentCheckbox; exports.GdprConsentSection = _chunkS5LH5422js.GdprConsentSection; exports.Header = _chunkS5LH5422js.Header; exports.HoverCard = _chunkS5LH5422js.HoverCard; exports.HoverCardContent = _chunkS5LH5422js.HoverCardContent; exports.HoverCardTrigger = _chunkS5LH5422js.HoverCardTrigger; exports.HowToCommand = _chunkS5LH5422js.HowToCommand; exports.HowToCommandViewer = _chunkS5LH5422js.HowToCommandViewer; exports.HowToContainer = _chunkS5LH5422js.HowToContainer; exports.HowToContent = _chunkS5LH5422js.HowToContent; exports.HowToDeleter = _chunkS5LH5422js.HowToDeleter; exports.HowToDetails = _chunkS5LH5422js.HowToDetails; exports.HowToEditor = _chunkS5LH5422js.HowToEditor; exports.HowToList = _chunkS5LH5422js.HowToList; exports.HowToListContainer = _chunkS5LH5422js.HowToListContainer; exports.HowToMultiSelector = _chunkS5LH5422js.HowToMultiSelector; exports.HowToSelector = _chunkS5LH5422js.HowToSelector; exports.Input = _chunkS5LH5422js.Input; exports.InputGroup = _chunkS5LH5422js.InputGroup; exports.InputGroupAddon = _chunkS5LH5422js.InputGroupAddon; exports.InputGroupButton = _chunkS5LH5422js.InputGroupButton; exports.InputGroupInput = _chunkS5LH5422js.InputGroupInput; exports.InputGroupText = _chunkS5LH5422js.InputGroupText; exports.InputGroupTextarea = _chunkS5LH5422js.InputGroupTextarea; exports.InputOTP = _chunkS5LH5422js.InputOTP; exports.InputOTPGroup = _chunkS5LH5422js.InputOTPGroup; exports.InputOTPSeparator = _chunkS5LH5422js.InputOTPSeparator; exports.InputOTPSlot = _chunkS5LH5422js.InputOTPSlot; exports.ItalianFiscalData = _chunkS5LH5422js.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkS5LH5422js.ItalianFiscalDataDisplay; exports.Item = _chunkS5LH5422js.KanbanItem; exports.ItemHandle = _chunkS5LH5422js.KanbanItemHandle; exports.Kanban = _chunkS5LH5422js.KanbanRoot; exports.KanbanBoard = _chunkS5LH5422js.KanbanBoard; exports.KanbanColumn = _chunkS5LH5422js.KanbanColumn; exports.KanbanColumnHandle = _chunkS5LH5422js.KanbanColumnHandle; exports.KanbanItem = _chunkS5LH5422js.KanbanItem; exports.KanbanItemHandle = _chunkS5LH5422js.KanbanItemHandle; exports.KanbanOverlay = _chunkS5LH5422js.KanbanOverlay; exports.Label = _chunkS5LH5422js.Label; exports.LandingComponent = _chunkS5LH5422js.LandingComponent; exports.Link = _chunkS5LH5422js.Link; exports.Login = _chunkS5LH5422js.Login; exports.Logout = _chunkS5LH5422js.Logout; exports.MessageItem = _chunkS5LH5422js.MessageItem; exports.MessageList = _chunkS5LH5422js.MessageList; exports.MessageSourcesPanel = _chunkS5LH5422js.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkS5LH5422js.ModeToggleSwitch; exports.MultiSelect = _chunkS5LH5422js.MultiSelect; exports.MultipleSelector = _chunkS5LH5422js.MultipleSelector; exports.NavigationMenu = _chunkS5LH5422js.NavigationMenu; exports.NavigationMenuContent = _chunkS5LH5422js.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkS5LH5422js.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkS5LH5422js.NavigationMenuItem; exports.NavigationMenuLink = _chunkS5LH5422js.NavigationMenuLink; exports.NavigationMenuList = _chunkS5LH5422js.NavigationMenuList; exports.NavigationMenuPositioner = _chunkS5LH5422js.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkS5LH5422js.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkS5LH5422js.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkS5LH5422js.NotificationMenuItem; exports.NotificationModal = _chunkS5LH5422js.NotificationModal; exports.NotificationToast = _chunkS5LH5422js.NotificationToast; exports.NotificationsList = _chunkS5LH5422js.NotificationsList; exports.NotificationsListContainer = _chunkS5LH5422js.NotificationsListContainer; exports.OAuthClientCard = _chunkS5LH5422js.OAuthClientCard; exports.OAuthClientDetail = _chunkS5LH5422js.OAuthClientDetail; exports.OAuthClientForm = _chunkS5LH5422js.OAuthClientForm; exports.OAuthClientList = _chunkS5LH5422js.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkS5LH5422js.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkS5LH5422js.OAuthConsentActions; exports.OAuthConsentHeader = _chunkS5LH5422js.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkS5LH5422js.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkS5LH5422js.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkS5LH5422js.OAuthScopeList; exports.OAuthScopeSelector = _chunkS5LH5422js.OAuthScopeSelector; exports.OnboardingCard = _chunkS5LH5422js.OnboardingCard; exports.Overlay = _chunkS5LH5422js.KanbanOverlay; exports.PageContainer = _chunkS5LH5422js.PageContainer; exports.PageContainerContentDetails = _chunkS5LH5422js.PageContainerContentDetails; exports.PageContentContainer = _chunkS5LH5422js.PageContentContainer; exports.PageSection = _chunkS5LH5422js.PageSection; exports.PasskeyButton = _chunkS5LH5422js.PasskeyButton; exports.PasskeyList = _chunkS5LH5422js.PasskeyList; exports.PasskeySetupDialog = _chunkS5LH5422js.PasskeySetupDialog; exports.PasswordInput = _chunkS5LH5422js.PasswordInput; exports.Popover = _chunkS5LH5422js.Popover; exports.PopoverContent = _chunkS5LH5422js.PopoverContent; exports.PopoverDescription = _chunkS5LH5422js.PopoverDescription; exports.PopoverHeader = _chunkS5LH5422js.PopoverHeader; exports.PopoverTitle = _chunkS5LH5422js.PopoverTitle; exports.PopoverTrigger = _chunkS5LH5422js.PopoverTrigger; exports.Progress = _chunkS5LH5422js.Progress; exports.ProgressIndicator = _chunkS5LH5422js.ProgressIndicator; exports.ProgressLabel = _chunkS5LH5422js.ProgressLabel; exports.ProgressTrack = _chunkS5LH5422js.ProgressTrack; exports.ProgressValue = _chunkS5LH5422js.ProgressValue; exports.PushNotificationProvider = _chunkS5LH5422js.PushNotificationProvider; exports.RadioGroup = _chunkS5LH5422js.RadioGroup; exports.RadioGroupItem = _chunkS5LH5422js.RadioGroupItem; exports.RbacByRoleContainer = _chunkS5LH5422js.RbacByRoleContainer; exports.RbacContainer = _chunkS5LH5422js.RbacContainer; exports.RbacPermissionCell = _chunkS5LH5422js.RbacPermissionCell; exports.RbacPermissionPicker = _chunkS5LH5422js.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkS5LH5422js.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkS5LH5422js.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkS5LH5422js.ReferralCodeCapture; exports.ReferralDialog = _chunkS5LH5422js.ReferralDialog; exports.ReferralWidget = _chunkS5LH5422js.ReferralWidget; exports.RefreshUser = _chunkS5LH5422js.RefreshUser; exports.RelevantContentsList = _chunkS5LH5422js.RelevantContentsList; exports.RelevantUsersList = _chunkS5LH5422js.RelevantUsersList; exports.RemoveUserFromRole = _chunkS5LH5422js.RemoveUserFromRole; exports.ResetPassword = _chunkS5LH5422js.ResetPassword; exports.ResizableHandle = _chunkS5LH5422js.ResizableHandle; exports.ResizablePanel = _chunkS5LH5422js.ResizablePanel; exports.ResizablePanelGroup = _chunkS5LH5422js.ResizablePanelGroup; exports.RoleContainer = _chunkS5LH5422js.RoleContainer; exports.RoleDetails = _chunkS5LH5422js.RoleDetails; exports.RoleUsersList = _chunkS5LH5422js.RoleUsersList; exports.RolesList = _chunkS5LH5422js.RolesList; exports.Root = _chunkS5LH5422js.KanbanRoot; exports.RoundPageContainer = _chunkS5LH5422js.RoundPageContainer; exports.RoundPageContainerTitle = _chunkS5LH5422js.RoundPageContainerTitle; exports.ScrollArea = _chunkS5LH5422js.ScrollArea; exports.ScrollBar = _chunkS5LH5422js.ScrollBar; exports.SecurityContainer = _chunkS5LH5422js.SecurityContainer; exports.Select = _chunkS5LH5422js.Select; exports.SelectContent = _chunkS5LH5422js.SelectContent; exports.SelectGroup = _chunkS5LH5422js.SelectGroup; exports.SelectItem = _chunkS5LH5422js.SelectItem; exports.SelectLabel = _chunkS5LH5422js.SelectLabel; exports.SelectScrollDownButton = _chunkS5LH5422js.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkS5LH5422js.SelectScrollUpButton; exports.SelectSeparator = _chunkS5LH5422js.SelectSeparator; exports.SelectTrigger = _chunkS5LH5422js.SelectTrigger; exports.SelectValue = _chunkS5LH5422js.SelectValue; exports.Separator = _chunkS5LH5422js.Separator; exports.Sheet = _chunkS5LH5422js.Sheet; exports.SheetClose = _chunkS5LH5422js.SheetClose; exports.SheetContent = _chunkS5LH5422js.SheetContent; exports.SheetDescription = _chunkS5LH5422js.SheetDescription; exports.SheetFooter = _chunkS5LH5422js.SheetFooter; exports.SheetHeader = _chunkS5LH5422js.SheetHeader; exports.SheetTitle = _chunkS5LH5422js.SheetTitle; exports.SheetTrigger = _chunkS5LH5422js.SheetTrigger; exports.Sidebar = _chunkS5LH5422js.Sidebar; exports.SidebarContent = _chunkS5LH5422js.SidebarContent; exports.SidebarFooter = _chunkS5LH5422js.SidebarFooter; exports.SidebarGroup = _chunkS5LH5422js.SidebarGroup; exports.SidebarGroupAction = _chunkS5LH5422js.SidebarGroupAction; exports.SidebarGroupContent = _chunkS5LH5422js.SidebarGroupContent; exports.SidebarGroupLabel = _chunkS5LH5422js.SidebarGroupLabel; exports.SidebarHeader = _chunkS5LH5422js.SidebarHeader; exports.SidebarInput = _chunkS5LH5422js.SidebarInput; exports.SidebarInset = _chunkS5LH5422js.SidebarInset; exports.SidebarMenu = _chunkS5LH5422js.SidebarMenu; exports.SidebarMenuAction = _chunkS5LH5422js.SidebarMenuAction; exports.SidebarMenuBadge = _chunkS5LH5422js.SidebarMenuBadge; exports.SidebarMenuButton = _chunkS5LH5422js.SidebarMenuButton; exports.SidebarMenuItem = _chunkS5LH5422js.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkS5LH5422js.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkS5LH5422js.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkS5LH5422js.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkS5LH5422js.SidebarMenuSubItem; exports.SidebarProvider = _chunkS5LH5422js.SidebarProvider; exports.SidebarRail = _chunkS5LH5422js.SidebarRail; exports.SidebarSeparator = _chunkS5LH5422js.SidebarSeparator; exports.SidebarTrigger = _chunkS5LH5422js.SidebarTrigger; exports.Skeleton = _chunkS5LH5422js.Skeleton; exports.Slider = _chunkS5LH5422js.Slider; exports.Switch = _chunkS5LH5422js.Switch; exports.Table = _chunkS5LH5422js.Table; exports.TableBody = _chunkS5LH5422js.TableBody; exports.TableCaption = _chunkS5LH5422js.TableCaption; exports.TableCell = _chunkS5LH5422js.TableCell; exports.TableCellAvatar = _chunkS5LH5422js.TableCellAvatar; exports.TableFooter = _chunkS5LH5422js.TableFooter; exports.TableHead = _chunkS5LH5422js.TableHead; exports.TableHeader = _chunkS5LH5422js.TableHeader; exports.TableRow = _chunkS5LH5422js.TableRow; exports.Tabs = _chunkS5LH5422js.Tabs; exports.TabsContainer = _chunkS5LH5422js.TabsContainer; exports.TabsContent = _chunkS5LH5422js.TabsContent; exports.TabsList = _chunkS5LH5422js.TabsList; exports.TabsTrigger = _chunkS5LH5422js.TabsTrigger; exports.Textarea = _chunkS5LH5422js.Textarea; exports.Toaster = _chunkS5LH5422js.Toaster; exports.Toggle = _chunkS5LH5422js.Toggle; exports.TokenStatusIndicator = _chunkS5LH5422js.TokenStatusIndicator; exports.Tooltip = _chunkS5LH5422js.Tooltip; exports.TooltipContent = _chunkS5LH5422js.TooltipContent; exports.TooltipProvider = _chunkS5LH5422js.TooltipProvider; exports.TooltipTrigger = _chunkS5LH5422js.TooltipTrigger; exports.TotpAuthenticatorList = _chunkS5LH5422js.TotpAuthenticatorList; exports.TotpInput = _chunkS5LH5422js.TotpInput; exports.TotpSetupDialog = _chunkS5LH5422js.TotpSetupDialog; exports.TwoFactorChallenge = _chunkS5LH5422js.TwoFactorChallenge; exports.TwoFactorSettings = _chunkS5LH5422js.TwoFactorSettings; exports.UserAvatar = _chunkS5LH5422js.UserAvatar; exports.UserAvatarEditor = _chunkS5LH5422js.UserAvatarEditor; exports.UserAvatarList = _chunkS5LH5422js.UserAvatarList; exports.UserContainer = _chunkS5LH5422js.UserContainer; exports.UserContent = _chunkS5LH5422js.UserContent; exports.UserDeleter = _chunkS5LH5422js.UserDeleter; exports.UserEditor = _chunkS5LH5422js.UserEditor; exports.UserIndexContainer = _chunkS5LH5422js.UserIndexContainer; exports.UserIndexDetails = _chunkS5LH5422js.UserIndexDetails; exports.UserListInAdd = _chunkS5LH5422js.UserListInAdd; exports.UserMultiSelect = _chunkS5LH5422js.UserMultiSelect; exports.UserReactivator = _chunkS5LH5422js.UserReactivator; exports.UserResentInvitationEmail = _chunkS5LH5422js.UserResentInvitationEmail; exports.UserRoleAdd = _chunkS5LH5422js.UserRoleAdd; exports.UserRolesList = _chunkS5LH5422js.UserRolesList; exports.UserSearchPopover = _chunkS5LH5422js.UserSearchPopover; exports.UserSelector = _chunkS5LH5422js.UserSelector; exports.UserStanadaloneDetails = _chunkS5LH5422js.UserStanadaloneDetails; exports.UsersList = _chunkS5LH5422js.UsersList; exports.UsersListByContentIds = _chunkS5LH5422js.UsersListByContentIds; exports.UsersListContainer = _chunkS5LH5422js.UsersListContainer; exports.WaitlistConfirmation = _chunkS5LH5422js.WaitlistConfirmation; exports.WaitlistForm = _chunkS5LH5422js.WaitlistForm; exports.WaitlistHeroSection = _chunkS5LH5422js.WaitlistHeroSection; exports.WaitlistList = _chunkS5LH5422js.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkS5LH5422js.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkS5LH5422js.WaitlistSuccessState; exports.badgeVariants = _chunkS5LH5422js.badgeVariants; exports.buttonVariants = _chunkS5LH5422js.buttonVariants; exports.cellComponent = _chunkS5LH5422js.cellComponent; exports.cellDate = _chunkS5LH5422js.cellDate; exports.cellDateTime = _chunkS5LH5422js.cellDateTime; exports.cellId = _chunkS5LH5422js.cellId; exports.cellLink = _chunkS5LH5422js.cellLink; exports.cellUrl = _chunkS5LH5422js.cellUrl; exports.createMentionInlineContentSpec = _chunkS5LH5422js.createMentionInlineContentSpec; exports.errorToast = _chunkS5LH5422js.errorToast; exports.generateNotificationData = _chunkS5LH5422js.generateNotificationData; exports.getIcon = _chunkXAWKRNYMjs.getIcon; exports.getIconByModule = _chunkXAWKRNYMjs.getIconByModule; exports.getIconByModuleName = _chunkXAWKRNYMjs.getIconByModuleName; exports.getInitials = _chunkXAWKRNYMjs.getInitials; exports.mentionDataAttrs = _chunkS5LH5422js.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkS5LH5422js.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkS5LH5422js.parseFiscalData; exports.tabsListVariants = _chunkS5LH5422js.tabsListVariants; exports.toggleVariants = _chunkS5LH5422js.toggleVariants; exports.triggerAssociationToast = _chunkS5LH5422js.triggerAssociationToast; exports.useCarousel = _chunkS5LH5422js.useCarousel; exports.useComboboxAnchor = _chunkS5LH5422js.useComboboxAnchor; exports.useDebounce = _chunkS5LH5422js.useDebounce2; exports.useEditorDialog = _chunkS5LH5422js.useEditorDialog; exports.useFileUpload = _chunkS5LH5422js.useFileUpload; exports.useMentionInsert = _chunkS5LH5422js.useMentionInsert; exports.useSidebar = _chunkS5LH5422js.useSidebar;
939
939
  //# sourceMappingURL=index.js.map
@@ -455,7 +455,7 @@ import {
455
455
  useFileUpload,
456
456
  useMentionInsert,
457
457
  useSidebar
458
- } from "../chunk-XYGK26YG.mjs";
458
+ } from "../chunk-TLTENUI6.mjs";
459
459
  import "../chunk-CK3BMQWY.mjs";
460
460
  import {
461
461
  getIcon,
@@ -12,6 +12,8 @@ interface D3Node extends d3.SimulationNodeDatum {
12
12
  visible?: boolean;
13
13
  washedOut?: boolean;
14
14
  bold?: boolean;
15
+ color?: string;
16
+ subtitle?: string;
15
17
  }
16
18
 
17
19
  interface D3Link extends SimulationLinkDatum<D3Node> {
@@ -12,6 +12,8 @@ interface D3Node extends d3.SimulationNodeDatum {
12
12
  visible?: boolean;
13
13
  washedOut?: boolean;
14
14
  bold?: boolean;
15
+ color?: string;
16
+ subtitle?: string;
15
17
  }
16
18
 
17
19
  interface D3Link extends SimulationLinkDatum<D3Node> {
@@ -31,7 +31,7 @@
31
31
 
32
32
 
33
33
 
34
- var _chunkHCOX3PKMjs = require('../chunk-HCOX3PKM.js');
34
+ var _chunkS5LH5422js = require('../chunk-S5LH5422.js');
35
35
  require('../chunk-SE5HIHJS.js');
36
36
  require('../chunk-XAWKRNYM.js');
37
37
  require('../chunk-LXKSUWAV.js');
@@ -71,5 +71,5 @@ require('../chunk-7QVYU63E.js');
71
71
 
72
72
 
73
73
 
74
- exports.AssistantProvider = _chunkHCOX3PKMjs.AssistantProvider; exports.CommonProvider = _chunkHCOX3PKMjs.CommonProvider; exports.CompanyProvider = _chunkHCOX3PKMjs.CompanyProvider; exports.CurrentUserProvider = _chunkHCOX3PKMjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkHCOX3PKMjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkHCOX3PKMjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkHCOX3PKMjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkHCOX3PKMjs.HowToProvider; exports.NotificationContextProvider = _chunkHCOX3PKMjs.NotificationContextProvider; exports.OnboardingProvider = _chunkHCOX3PKMjs.OnboardingProvider; exports.RbacProvider = _chunkHCOX3PKMjs.RbacProvider; exports.RoleProvider = _chunkHCOX3PKMjs.RoleProvider; exports.SharedProvider = _chunkHCOX3PKMjs.SharedProvider; exports.SocketContext = _chunkHCOX3PKMjs.SocketContext; exports.SocketProvider = _chunkHCOX3PKMjs.SocketProvider; exports.UserProvider = _chunkHCOX3PKMjs.UserProvider; exports.recentPagesAtom = _chunkHCOX3PKMjs.recentPagesAtom; exports.useAssistantContext = _chunkHCOX3PKMjs.useAssistantContext; exports.useCommonContext = _chunkHCOX3PKMjs.useCommonContext; exports.useCompanyContext = _chunkHCOX3PKMjs.useCompanyContext; exports.useCurrentUserContext = _chunkHCOX3PKMjs.useCurrentUserContext; exports.useHeaderChildren = _chunkHCOX3PKMjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkHCOX3PKMjs.useHeaderLeftContent; exports.useHowToContext = _chunkHCOX3PKMjs.useHowToContext; exports.useNotificationContext = _chunkHCOX3PKMjs.useNotificationContext; exports.useOnboarding = _chunkHCOX3PKMjs.useOnboarding; exports.useRbacContext = _chunkHCOX3PKMjs.useRbacContext; exports.useRoleContext = _chunkHCOX3PKMjs.useRoleContext; exports.useSharedContext = _chunkHCOX3PKMjs.useSharedContext; exports.useSocketContext = _chunkHCOX3PKMjs.useSocketContext; exports.useUserContext = _chunkHCOX3PKMjs.useUserContext;
74
+ exports.AssistantProvider = _chunkS5LH5422js.AssistantProvider; exports.CommonProvider = _chunkS5LH5422js.CommonProvider; exports.CompanyProvider = _chunkS5LH5422js.CompanyProvider; exports.CurrentUserProvider = _chunkS5LH5422js.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkS5LH5422js.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkS5LH5422js.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkS5LH5422js.HeaderLeftContentProvider; exports.HowToProvider = _chunkS5LH5422js.HowToProvider; exports.NotificationContextProvider = _chunkS5LH5422js.NotificationContextProvider; exports.OnboardingProvider = _chunkS5LH5422js.OnboardingProvider; exports.RbacProvider = _chunkS5LH5422js.RbacProvider; exports.RoleProvider = _chunkS5LH5422js.RoleProvider; exports.SharedProvider = _chunkS5LH5422js.SharedProvider; exports.SocketContext = _chunkS5LH5422js.SocketContext; exports.SocketProvider = _chunkS5LH5422js.SocketProvider; exports.UserProvider = _chunkS5LH5422js.UserProvider; exports.recentPagesAtom = _chunkS5LH5422js.recentPagesAtom; exports.useAssistantContext = _chunkS5LH5422js.useAssistantContext; exports.useCommonContext = _chunkS5LH5422js.useCommonContext; exports.useCompanyContext = _chunkS5LH5422js.useCompanyContext; exports.useCurrentUserContext = _chunkS5LH5422js.useCurrentUserContext; exports.useHeaderChildren = _chunkS5LH5422js.useHeaderChildren; exports.useHeaderLeftContent = _chunkS5LH5422js.useHeaderLeftContent; exports.useHowToContext = _chunkS5LH5422js.useHowToContext; exports.useNotificationContext = _chunkS5LH5422js.useNotificationContext; exports.useOnboarding = _chunkS5LH5422js.useOnboarding; exports.useRbacContext = _chunkS5LH5422js.useRbacContext; exports.useRoleContext = _chunkS5LH5422js.useRoleContext; exports.useSharedContext = _chunkS5LH5422js.useSharedContext; exports.useSocketContext = _chunkS5LH5422js.useSocketContext; exports.useUserContext = _chunkS5LH5422js.useUserContext;
75
75
  //# sourceMappingURL=index.js.map
@@ -31,7 +31,7 @@ import {
31
31
  useSharedContext,
32
32
  useSocketContext,
33
33
  useUserContext
34
- } from "../chunk-XYGK26YG.mjs";
34
+ } from "../chunk-TLTENUI6.mjs";
35
35
  import "../chunk-CK3BMQWY.mjs";
36
36
  import "../chunk-3KDGODJ7.mjs";
37
37
  import "../chunk-AUXK7QSA.mjs";
@@ -9,7 +9,7 @@ import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as Perm
9
9
  export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-DLZGtV7Z.mjs';
10
10
  import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, d as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageInput } from '../AssistantMessageInterface-DJ3Me16Y.mjs';
11
11
  export { B as BreadcrumbItemData } from '../AssistantMessageInterface-DJ3Me16Y.mjs';
12
- export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-hzZvhlBd.mjs';
12
+ export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.mjs';
13
13
  import { ClassValue } from 'clsx';
14
14
  export { ClassValue } from 'clsx';
15
15
  import * as React from 'react';
@@ -9,7 +9,7 @@ import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as Perm
9
9
  export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-aLEJbA_g.js';
10
10
  import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, d as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageInput } from '../AssistantMessageInterface-BpEhx2pC.js';
11
11
  export { B as BreadcrumbItemData } from '../AssistantMessageInterface-BpEhx2pC.js';
12
- export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-hzZvhlBd.js';
12
+ export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.js';
13
13
  import { ClassValue } from 'clsx';
14
14
  export { ClassValue } from 'clsx';
15
15
  import * as React from 'react';
package/dist/index.d.mts CHANGED
@@ -7,7 +7,7 @@ export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModu
7
7
  import { b as AbstractService } from './s3.service-CVgLWaDc.mjs';
8
8
  export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-CVgLWaDc.mjs';
9
9
  export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, d as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-DJ3Me16Y.mjs';
10
- export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-hzZvhlBd.mjs';
10
+ export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-xH3TGvVk.mjs';
11
11
  export { ClassValue } from 'clsx';
12
12
  export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-BKI0ZbtD.mjs';
13
13
  export { A as Action, i as CompanyInput, j as CompanyInterface, a as ContentInput, C as ContentInterface, d as ModuleDefinition, h as ModuleFactory, c as ModulePermissionDefinition, M as ModuleWithPermissions, k as NotificationInput, N as NotificationInterface, b as PageUrl, P as PermissionCheck, e as PermissionConfig, f as PermissionModule, g as PermissionUser, R as RoleInput, l as RoleInterface, m as UserInput, U as UserInterface } from './notification.interface-DLZGtV7Z.mjs';
package/dist/index.d.ts CHANGED
@@ -7,7 +7,7 @@ export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModu
7
7
  import { b as AbstractService } from './s3.service-SLlX0Zbz.js';
8
8
  export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-SLlX0Zbz.js';
9
9
  export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, d as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-BpEhx2pC.js';
10
- export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-hzZvhlBd.js';
10
+ export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-xH3TGvVk.js';
11
11
  export { ClassValue } from 'clsx';
12
12
  export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-B6DIk8Vf.js';
13
13
  export { A as Action, i as CompanyInput, j as CompanyInterface, a as ContentInput, C as ContentInterface, d as ModuleDefinition, h as ModuleFactory, c as ModulePermissionDefinition, M as ModuleWithPermissions, k as NotificationInput, N as NotificationInterface, b as PageUrl, P as PermissionCheck, e as PermissionConfig, f as PermissionModule, g as PermissionUser, R as RoleInput, l as RoleInterface, m as UserInput, U as UserInterface } from './notification.interface-aLEJbA_g.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlonicora/nextjs-jsonapi",
3
- "version": "1.97.2",
3
+ "version": "1.98.0",
4
4
  "description": "Next.js JSON:API client with server/client support and caching",
5
5
  "author": "Carlo Nicora",
6
6
  "license": "GPL-3.0-or-later",
@@ -3,8 +3,9 @@
3
3
  import { isValid, parse } from "date-fns";
4
4
  import { Calendar as CalendarIcon, CircleXIcon } from "lucide-react";
5
5
  import { useMemo, useState } from "react";
6
- import { useI18nDateFnsLocale, useI18nLocale } from "../../i18n";
6
+ import { useI18nDateFnsLocale, useI18nLocale, useI18nTranslations } from "../../i18n";
7
7
  import {
8
+ Button,
8
9
  Calendar,
9
10
  InputGroup,
10
11
  InputGroupAddon,
@@ -23,6 +24,8 @@ export function FormDate({
23
24
  minDate,
24
25
  onChange,
25
26
  isRequired = false,
27
+ defaultMonth,
28
+ allowEmpty,
26
29
  }: {
27
30
  form: any;
28
31
  id: string;
@@ -31,13 +34,16 @@ export function FormDate({
31
34
  minDate?: Date;
32
35
  onChange?: (date?: Date) => Promise<void>;
33
36
  isRequired?: boolean;
37
+ defaultMonth?: Date;
38
+ allowEmpty?: boolean;
34
39
  }) {
40
+ const t = useI18nTranslations();
35
41
  const locale = useI18nLocale();
36
42
  const dateFnsLocale = useI18nDateFnsLocale();
37
43
  const [open, setOpen] = useState<boolean>(false);
38
44
  const [displayMonth, setDisplayMonth] = useState<Date>(() => {
39
45
  const currentValue = form.getValues(id);
40
- return currentValue || new Date();
46
+ return currentValue || defaultMonth || new Date();
41
47
  });
42
48
 
43
49
  // Locale-aware date formatter
@@ -126,7 +132,7 @@ export function FormDate({
126
132
  <CalendarIcon className="h-4 w-4 opacity-50" />
127
133
  </InputGroupButton>
128
134
  </PopoverTrigger>
129
- {field.value && (
135
+ {field.value && allowEmpty !== false && (
130
136
  <InputGroupButton
131
137
  variant="ghost"
132
138
  size="icon-xs"
@@ -158,6 +164,24 @@ export function FormDate({
158
164
  startMonth={new Date(1900, 0)}
159
165
  endMonth={new Date(new Date().getFullYear() + 10, 11)}
160
166
  />
167
+ {allowEmpty !== false && (
168
+ <div className="border-t p-2">
169
+ <Button
170
+ type="button"
171
+ variant="outline"
172
+ className="w-full"
173
+ disabled={!field.value}
174
+ onClick={() => {
175
+ field.onChange(undefined);
176
+ setInputValue("");
177
+ if (onChange) onChange(undefined);
178
+ setOpen(false);
179
+ }}
180
+ >
181
+ {t(`ui.buttons.clear`)}
182
+ </Button>
183
+ </div>
184
+ )}
161
185
  </PopoverContent>
162
186
  </Popover>
163
187
  )}
@@ -26,6 +26,7 @@ export function FormDateTime({
26
26
  minDate,
27
27
  onChange,
28
28
  allowEmpty,
29
+ defaultMonth,
29
30
  }: {
30
31
  form: any;
31
32
  id: string;
@@ -34,12 +35,18 @@ export function FormDateTime({
34
35
  minDate?: Date;
35
36
  onChange?: (date?: Date) => Promise<void>;
36
37
  allowEmpty?: boolean;
38
+ defaultMonth?: Date;
37
39
  }) {
38
40
  const [open, setOpen] = useState<boolean>(false);
39
41
  const t = useI18nTranslations();
40
42
  const locale = useI18nLocale();
41
43
  const dateFnsLocale = useI18nDateFnsLocale();
42
44
 
45
+ const [displayMonth, setDisplayMonth] = useState<Date>(() => {
46
+ const currentValue = form.getValues(id);
47
+ return currentValue || defaultMonth || new Date();
48
+ });
49
+
43
50
  // Locale-aware date-time formatter
44
51
  const dateTimeFormatter = useMemo(
45
52
  () =>
@@ -123,7 +130,10 @@ export function FormDateTime({
123
130
  <div className="flex flex-col space-y-4">
124
131
  <Calendar
125
132
  mode="single"
133
+ captionLayout="dropdown"
126
134
  selected={field.value}
135
+ month={displayMonth}
136
+ onMonthChange={setDisplayMonth}
127
137
  onSelect={(date) => {
128
138
  if (date) {
129
139
  // Preserve the current time when selecting a new date
@@ -135,6 +145,7 @@ export function FormDateTime({
135
145
  newDate.setHours(selectedHours, selectedMinutes);
136
146
  }
137
147
  form.setValue(id, newDate);
148
+ setDisplayMonth(newDate);
138
149
  if (onChange) onChange(newDate);
139
150
 
140
151
  // Update time state values
@@ -144,6 +155,9 @@ export function FormDateTime({
144
155
  }}
145
156
  disabled={(date) => (minDate && date < minDate ? true : false)}
146
157
  locale={dateFnsLocale}
158
+ weekStartsOn={1}
159
+ startMonth={new Date(1900, 0)}
160
+ endMonth={new Date(new Date().getFullYear() + 10, 11)}
147
161
  />
148
162
  <div className="flex flex-row items-end justify-center space-x-4">
149
163
  <div className="flex flex-col space-y-2">
@@ -201,14 +215,32 @@ export function FormDateTime({
201
215
  </Select>
202
216
  </div>
203
217
  </div>
204
- <Button
205
- className="mt-2"
206
- onClick={() => {
207
- setOpen(false);
208
- }}
209
- >
210
- {t(`ui.buttons.select_date`)}
211
- </Button>
218
+ <div className="mt-2 flex flex-row gap-x-2">
219
+ {allowEmpty !== false && (
220
+ <Button
221
+ type="button"
222
+ variant="outline"
223
+ className="flex-1"
224
+ disabled={!field.value}
225
+ onClick={() => {
226
+ if (onChange) onChange(undefined);
227
+ form.setValue(id, "");
228
+ setOpen(false);
229
+ }}
230
+ >
231
+ {t(`ui.buttons.clear`)}
232
+ </Button>
233
+ )}
234
+ <Button
235
+ type="button"
236
+ className="flex-1"
237
+ onClick={() => {
238
+ setOpen(false);
239
+ }}
240
+ >
241
+ {t(`ui.buttons.select_date`)}
242
+ </Button>
243
+ </div>
212
244
  </div>
213
245
  </PopoverContent>
214
246
  </Popover>