@carlonicora/nextjs-jsonapi 1.97.1 → 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.
- package/dist/{BlockNoteEditor-7SXXGSJH.js → BlockNoteEditor-3SXAMY6O.js} +9 -9
- package/dist/{BlockNoteEditor-7SXXGSJH.js.map → BlockNoteEditor-3SXAMY6O.js.map} +1 -1
- package/dist/{BlockNoteEditor-74GNMOST.mjs → BlockNoteEditor-HWQHTLEB.mjs} +2 -2
- package/dist/billing/index.js +299 -299
- package/dist/billing/index.mjs +1 -1
- package/dist/{chunk-XHCHSTAX.js → chunk-S5LH5422.js} +360 -262
- package/dist/chunk-S5LH5422.js.map +1 -0
- package/dist/{chunk-A4EZFGFA.mjs → chunk-TLTENUI6.mjs} +141 -43
- package/dist/chunk-TLTENUI6.mjs.map +1 -0
- package/dist/client/index.d.mts +4 -2
- package/dist/client/index.d.ts +4 -2
- package/dist/client/index.js +2 -2
- package/dist/client/index.mjs +1 -1
- package/dist/components/index.d.mts +5 -2
- package/dist/components/index.d.ts +5 -2
- package/dist/components/index.js +2 -2
- package/dist/components/index.mjs +1 -1
- package/dist/{content.fields-hzZvhlBd.d.mts → content.fields-xH3TGvVk.d.mts} +2 -0
- package/dist/{content.fields-hzZvhlBd.d.ts → content.fields-xH3TGvVk.d.ts} +2 -0
- package/dist/contexts/index.js +2 -2
- package/dist/contexts/index.mjs +1 -1
- package/dist/core/index.d.mts +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/editors/BlockNoteEditorSuggestionMenuController.tsx +1 -2
- package/src/components/forms/FormDate.tsx +27 -3
- package/src/components/forms/FormDateTime.tsx +40 -8
- package/src/hooks/useCustomD3Graph.tsx +91 -10
- package/src/interfaces/d3.node.interface.ts +2 -0
- package/dist/chunk-A4EZFGFA.mjs.map +0 -1
- package/dist/chunk-XHCHSTAX.js.map +0 -1
- /package/dist/{BlockNoteEditor-74GNMOST.mjs.map → BlockNoteEditor-HWQHTLEB.mjs.map} +0 -0
package/dist/client/index.d.mts
CHANGED
|
@@ -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-
|
|
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>,
|
|
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;
|
package/dist/client/index.d.ts
CHANGED
|
@@ -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-
|
|
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>,
|
|
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;
|
package/dist/client/index.js
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
var
|
|
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 =
|
|
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
|
package/dist/client/index.mjs
CHANGED
|
@@ -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, }: {
|
package/dist/components/index.js
CHANGED
|
@@ -455,7 +455,7 @@
|
|
|
455
455
|
|
|
456
456
|
|
|
457
457
|
|
|
458
|
-
var
|
|
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 = _chunkXHCHSTAXjs.AcceptInvitation; exports.Accordion = _chunkXHCHSTAXjs.Accordion; exports.AccordionContent = _chunkXHCHSTAXjs.AccordionContent; exports.AccordionItem = _chunkXHCHSTAXjs.AccordionItem; exports.AccordionTrigger = _chunkXHCHSTAXjs.AccordionTrigger; exports.ActivateAccount = _chunkXHCHSTAXjs.ActivateAccount; exports.AddUserToRole = _chunkXHCHSTAXjs.AddUserToRole; exports.AdminCompanyContainer = _chunkXHCHSTAXjs.AdminCompanyContainer; exports.AdminUsersList = _chunkXHCHSTAXjs.AdminUsersList; exports.Alert = _chunkXHCHSTAXjs.Alert; exports.AlertAction = _chunkXHCHSTAXjs.AlertAction; exports.AlertDescription = _chunkXHCHSTAXjs.AlertDescription; exports.AlertDialog = _chunkXHCHSTAXjs.AlertDialog; exports.AlertDialogAction = _chunkXHCHSTAXjs.AlertDialogAction; exports.AlertDialogCancel = _chunkXHCHSTAXjs.AlertDialogCancel; exports.AlertDialogContent = _chunkXHCHSTAXjs.AlertDialogContent; exports.AlertDialogDescription = _chunkXHCHSTAXjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkXHCHSTAXjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkXHCHSTAXjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkXHCHSTAXjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkXHCHSTAXjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkXHCHSTAXjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkXHCHSTAXjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkXHCHSTAXjs.AlertDialogTrigger; exports.AlertTitle = _chunkXHCHSTAXjs.AlertTitle; exports.AllUsersListContainer = _chunkXHCHSTAXjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkXHCHSTAXjs.AllowedUsersDetails; exports.AssistantContainer = _chunkXHCHSTAXjs.AssistantContainer; exports.AttributeElement = _chunkXHCHSTAXjs.AttributeElement; exports.AuthContainer = _chunkXHCHSTAXjs.AuthContainer; exports.Avatar = _chunkXHCHSTAXjs.Avatar; exports.AvatarBadge = _chunkXHCHSTAXjs.AvatarBadge; exports.AvatarFallback = _chunkXHCHSTAXjs.AvatarFallback; exports.AvatarGroup = _chunkXHCHSTAXjs.AvatarGroup; exports.AvatarGroupCount = _chunkXHCHSTAXjs.AvatarGroupCount; exports.AvatarImage = _chunkXHCHSTAXjs.AvatarImage; exports.BackupCodesDialog = _chunkXHCHSTAXjs.BackupCodesDialog; exports.Badge = _chunkXHCHSTAXjs.Badge; exports.BlockNoteEditorContainer = _chunkXHCHSTAXjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkXHCHSTAXjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkXHCHSTAXjs.BlockNoteEditorMentionSuggestionMenu; exports.Board = _chunkXHCHSTAXjs.KanbanBoard; exports.Breadcrumb = _chunkXHCHSTAXjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkXHCHSTAXjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkXHCHSTAXjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkXHCHSTAXjs.BreadcrumbLink; exports.BreadcrumbList = _chunkXHCHSTAXjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkXHCHSTAXjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkXHCHSTAXjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkXHCHSTAXjs.BreadcrumbSeparator; exports.Button = _chunkXHCHSTAXjs.Button; exports.Calendar = _chunkXHCHSTAXjs.Calendar; exports.CalendarDayButton = _chunkXHCHSTAXjs.CalendarDayButton; exports.Card = _chunkXHCHSTAXjs.Card; exports.CardAction = _chunkXHCHSTAXjs.CardAction; exports.CardContent = _chunkXHCHSTAXjs.CardContent; exports.CardDescription = _chunkXHCHSTAXjs.CardDescription; exports.CardFooter = _chunkXHCHSTAXjs.CardFooter; exports.CardHeader = _chunkXHCHSTAXjs.CardHeader; exports.CardTitle = _chunkXHCHSTAXjs.CardTitle; exports.Carousel = _chunkXHCHSTAXjs.Carousel; exports.CarouselContent = _chunkXHCHSTAXjs.CarouselContent; exports.CarouselItem = _chunkXHCHSTAXjs.CarouselItem; exports.CarouselNext = _chunkXHCHSTAXjs.CarouselNext; exports.CarouselPrevious = _chunkXHCHSTAXjs.CarouselPrevious; exports.ChartContainer = _chunkXHCHSTAXjs.ChartContainer; exports.ChartLegend = _chunkXHCHSTAXjs.ChartLegend; exports.ChartLegendContent = _chunkXHCHSTAXjs.ChartLegendContent; exports.ChartStyle = _chunkXHCHSTAXjs.ChartStyle; exports.ChartTooltip = _chunkXHCHSTAXjs.ChartTooltip; exports.ChartTooltipContent = _chunkXHCHSTAXjs.ChartTooltipContent; exports.Checkbox = _chunkXHCHSTAXjs.Checkbox; exports.Collapsible = _chunkXHCHSTAXjs.Collapsible; exports.CollapsibleContent = _chunkXHCHSTAXjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkXHCHSTAXjs.CollapsibleTrigger; exports.Column = _chunkXHCHSTAXjs.KanbanColumn; exports.ColumnHandle = _chunkXHCHSTAXjs.KanbanColumnHandle; exports.Combobox = _chunkXHCHSTAXjs.Combobox; exports.ComboboxChip = _chunkXHCHSTAXjs.ComboboxChip; exports.ComboboxChips = _chunkXHCHSTAXjs.ComboboxChips; exports.ComboboxChipsInput = _chunkXHCHSTAXjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkXHCHSTAXjs.ComboboxCollection; exports.ComboboxContent = _chunkXHCHSTAXjs.ComboboxContent; exports.ComboboxEmpty = _chunkXHCHSTAXjs.ComboboxEmpty; exports.ComboboxGroup = _chunkXHCHSTAXjs.ComboboxGroup; exports.ComboboxInput = _chunkXHCHSTAXjs.ComboboxInput; exports.ComboboxItem = _chunkXHCHSTAXjs.ComboboxItem; exports.ComboboxLabel = _chunkXHCHSTAXjs.ComboboxLabel; exports.ComboboxList = _chunkXHCHSTAXjs.ComboboxList; exports.ComboboxSeparator = _chunkXHCHSTAXjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkXHCHSTAXjs.ComboboxTrigger; exports.ComboboxValue = _chunkXHCHSTAXjs.ComboboxValue; exports.Command = _chunkXHCHSTAXjs.Command; exports.CommandDialog = _chunkXHCHSTAXjs.CommandDialog; exports.CommandEmpty = _chunkXHCHSTAXjs.CommandEmpty; exports.CommandGroup = _chunkXHCHSTAXjs.CommandGroup; exports.CommandInput = _chunkXHCHSTAXjs.CommandInput; exports.CommandItem = _chunkXHCHSTAXjs.CommandItem; exports.CommandList = _chunkXHCHSTAXjs.CommandList; exports.CommandSeparator = _chunkXHCHSTAXjs.CommandSeparator; exports.CommandShortcut = _chunkXHCHSTAXjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkXHCHSTAXjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkXHCHSTAXjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkXHCHSTAXjs.CommonDeleter; exports.CommonEditorButtons = _chunkXHCHSTAXjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkXHCHSTAXjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkXHCHSTAXjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkXHCHSTAXjs.CommonEditorTrigger; exports.CompaniesList = _chunkXHCHSTAXjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkXHCHSTAXjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkXHCHSTAXjs.CompanyContainer; exports.CompanyContent = _chunkXHCHSTAXjs.CompanyContent; exports.CompanyDeleter = _chunkXHCHSTAXjs.CompanyDeleter; exports.CompanyDetails = _chunkXHCHSTAXjs.CompanyDetails; exports.CompanyEditor = _chunkXHCHSTAXjs.CompanyEditor; exports.CompanyUsersList = _chunkXHCHSTAXjs.CompanyUsersList; exports.ContentListGrid = _chunkXHCHSTAXjs.ContentListGrid; exports.ContentListTable = _chunkXHCHSTAXjs.ContentListTable; exports.ContentTableSearch = _chunkXHCHSTAXjs.ContentTableSearch; exports.ContentTitle = _chunkXHCHSTAXjs.ContentTitle; exports.ContentsList = _chunkXHCHSTAXjs.ContentsList; exports.ContentsListById = _chunkXHCHSTAXjs.ContentsListById; exports.ContextMenu = _chunkXHCHSTAXjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkXHCHSTAXjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkXHCHSTAXjs.ContextMenuContent; exports.ContextMenuGroup = _chunkXHCHSTAXjs.ContextMenuGroup; exports.ContextMenuItem = _chunkXHCHSTAXjs.ContextMenuItem; exports.ContextMenuLabel = _chunkXHCHSTAXjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkXHCHSTAXjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkXHCHSTAXjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkXHCHSTAXjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkXHCHSTAXjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkXHCHSTAXjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkXHCHSTAXjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkXHCHSTAXjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkXHCHSTAXjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkXHCHSTAXjs.ContextMenuTrigger; exports.ContributorsList = _chunkXHCHSTAXjs.ContributorsList; exports.Cookies = _chunkXHCHSTAXjs.Cookies; exports.DatePickerPopover = _chunkXHCHSTAXjs.DatePickerPopover; exports.DateRangeSelector = _chunkXHCHSTAXjs.DateRangeSelector; exports.Dialog = _chunkXHCHSTAXjs.Dialog; exports.DialogClose = _chunkXHCHSTAXjs.DialogClose; exports.DialogContent = _chunkXHCHSTAXjs.DialogContent; exports.DialogDescription = _chunkXHCHSTAXjs.DialogDescription; exports.DialogFooter = _chunkXHCHSTAXjs.DialogFooter; exports.DialogHeader = _chunkXHCHSTAXjs.DialogHeader; exports.DialogOverlay = _chunkXHCHSTAXjs.DialogOverlay; exports.DialogPortal = _chunkXHCHSTAXjs.DialogPortal; exports.DialogTitle = _chunkXHCHSTAXjs.DialogTitle; exports.DialogTrigger = _chunkXHCHSTAXjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkXHCHSTAXjs.DisableTwoFactorDialog; exports.Drawer = _chunkXHCHSTAXjs.Drawer; exports.DrawerClose = _chunkXHCHSTAXjs.DrawerClose; exports.DrawerContent = _chunkXHCHSTAXjs.DrawerContent; exports.DrawerDescription = _chunkXHCHSTAXjs.DrawerDescription; exports.DrawerFooter = _chunkXHCHSTAXjs.DrawerFooter; exports.DrawerHeader = _chunkXHCHSTAXjs.DrawerHeader; exports.DrawerOverlay = _chunkXHCHSTAXjs.DrawerOverlay; exports.DrawerPortal = _chunkXHCHSTAXjs.DrawerPortal; exports.DrawerTitle = _chunkXHCHSTAXjs.DrawerTitle; exports.DrawerTrigger = _chunkXHCHSTAXjs.DrawerTrigger; exports.DropdownMenu = _chunkXHCHSTAXjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkXHCHSTAXjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkXHCHSTAXjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkXHCHSTAXjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkXHCHSTAXjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkXHCHSTAXjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkXHCHSTAXjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkXHCHSTAXjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkXHCHSTAXjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkXHCHSTAXjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkXHCHSTAXjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkXHCHSTAXjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkXHCHSTAXjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkXHCHSTAXjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkXHCHSTAXjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkXHCHSTAXjs.EditableAvatar; exports.EditorSheet = _chunkXHCHSTAXjs.EditorSheet; exports.EntityAvatar = _chunkXHCHSTAXjs.EntityAvatar; exports.EntityMultiSelector = _chunkXHCHSTAXjs.EntityMultiSelector; exports.ErrorDetails = _chunkXHCHSTAXjs.ErrorDetails; exports.Field = _chunkXHCHSTAXjs.Field; exports.FieldContent = _chunkXHCHSTAXjs.FieldContent; exports.FieldDescription = _chunkXHCHSTAXjs.FieldDescription; exports.FieldError = _chunkXHCHSTAXjs.FieldError; exports.FieldGroup = _chunkXHCHSTAXjs.FieldGroup; exports.FieldLabel = _chunkXHCHSTAXjs.FieldLabel; exports.FieldLegend = _chunkXHCHSTAXjs.FieldLegend; exports.FieldSeparator = _chunkXHCHSTAXjs.FieldSeparator; exports.FieldSet = _chunkXHCHSTAXjs.FieldSet; exports.FieldTitle = _chunkXHCHSTAXjs.FieldTitle; exports.FileInput = _chunkXHCHSTAXjs.FileInput; exports.FileUploader = _chunkXHCHSTAXjs.FileUploader; exports.FileUploaderContent = _chunkXHCHSTAXjs.FileUploaderContent; exports.FileUploaderItem = _chunkXHCHSTAXjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkXHCHSTAXjs.FiscalDataDisplay; exports.ForgotPassword = _chunkXHCHSTAXjs.ForgotPassword; exports.Form = _chunkXHCHSTAXjs.Form; exports.FormBlockNote = _chunkXHCHSTAXjs.FormBlockNote; exports.FormCheckbox = _chunkXHCHSTAXjs.FormCheckbox; exports.FormDate = _chunkXHCHSTAXjs.FormDate; exports.FormDateTime = _chunkXHCHSTAXjs.FormDateTime; exports.FormFeatures = _chunkXHCHSTAXjs.FormFeatures; exports.FormFieldWrapper = _chunkXHCHSTAXjs.FormFieldWrapper; exports.FormInput = _chunkXHCHSTAXjs.FormInput; exports.FormPassword = _chunkXHCHSTAXjs.FormPassword; exports.FormPlaceAutocomplete = _chunkXHCHSTAXjs.FormPlaceAutocomplete; exports.FormRoles = _chunkXHCHSTAXjs.FormRoles; exports.FormSelect = _chunkXHCHSTAXjs.FormSelect; exports.FormSlider = _chunkXHCHSTAXjs.FormSlider; exports.FormSwitch = _chunkXHCHSTAXjs.FormSwitch; exports.FormTextarea = _chunkXHCHSTAXjs.FormTextarea; exports.GdprConsentCheckbox = _chunkXHCHSTAXjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkXHCHSTAXjs.GdprConsentSection; exports.Header = _chunkXHCHSTAXjs.Header; exports.HoverCard = _chunkXHCHSTAXjs.HoverCard; exports.HoverCardContent = _chunkXHCHSTAXjs.HoverCardContent; exports.HoverCardTrigger = _chunkXHCHSTAXjs.HoverCardTrigger; exports.HowToCommand = _chunkXHCHSTAXjs.HowToCommand; exports.HowToCommandViewer = _chunkXHCHSTAXjs.HowToCommandViewer; exports.HowToContainer = _chunkXHCHSTAXjs.HowToContainer; exports.HowToContent = _chunkXHCHSTAXjs.HowToContent; exports.HowToDeleter = _chunkXHCHSTAXjs.HowToDeleter; exports.HowToDetails = _chunkXHCHSTAXjs.HowToDetails; exports.HowToEditor = _chunkXHCHSTAXjs.HowToEditor; exports.HowToList = _chunkXHCHSTAXjs.HowToList; exports.HowToListContainer = _chunkXHCHSTAXjs.HowToListContainer; exports.HowToMultiSelector = _chunkXHCHSTAXjs.HowToMultiSelector; exports.HowToSelector = _chunkXHCHSTAXjs.HowToSelector; exports.Input = _chunkXHCHSTAXjs.Input; exports.InputGroup = _chunkXHCHSTAXjs.InputGroup; exports.InputGroupAddon = _chunkXHCHSTAXjs.InputGroupAddon; exports.InputGroupButton = _chunkXHCHSTAXjs.InputGroupButton; exports.InputGroupInput = _chunkXHCHSTAXjs.InputGroupInput; exports.InputGroupText = _chunkXHCHSTAXjs.InputGroupText; exports.InputGroupTextarea = _chunkXHCHSTAXjs.InputGroupTextarea; exports.InputOTP = _chunkXHCHSTAXjs.InputOTP; exports.InputOTPGroup = _chunkXHCHSTAXjs.InputOTPGroup; exports.InputOTPSeparator = _chunkXHCHSTAXjs.InputOTPSeparator; exports.InputOTPSlot = _chunkXHCHSTAXjs.InputOTPSlot; exports.ItalianFiscalData = _chunkXHCHSTAXjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkXHCHSTAXjs.ItalianFiscalDataDisplay; exports.Item = _chunkXHCHSTAXjs.KanbanItem; exports.ItemHandle = _chunkXHCHSTAXjs.KanbanItemHandle; exports.Kanban = _chunkXHCHSTAXjs.KanbanRoot; exports.KanbanBoard = _chunkXHCHSTAXjs.KanbanBoard; exports.KanbanColumn = _chunkXHCHSTAXjs.KanbanColumn; exports.KanbanColumnHandle = _chunkXHCHSTAXjs.KanbanColumnHandle; exports.KanbanItem = _chunkXHCHSTAXjs.KanbanItem; exports.KanbanItemHandle = _chunkXHCHSTAXjs.KanbanItemHandle; exports.KanbanOverlay = _chunkXHCHSTAXjs.KanbanOverlay; exports.Label = _chunkXHCHSTAXjs.Label; exports.LandingComponent = _chunkXHCHSTAXjs.LandingComponent; exports.Link = _chunkXHCHSTAXjs.Link; exports.Login = _chunkXHCHSTAXjs.Login; exports.Logout = _chunkXHCHSTAXjs.Logout; exports.MessageItem = _chunkXHCHSTAXjs.MessageItem; exports.MessageList = _chunkXHCHSTAXjs.MessageList; exports.MessageSourcesPanel = _chunkXHCHSTAXjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkXHCHSTAXjs.ModeToggleSwitch; exports.MultiSelect = _chunkXHCHSTAXjs.MultiSelect; exports.MultipleSelector = _chunkXHCHSTAXjs.MultipleSelector; exports.NavigationMenu = _chunkXHCHSTAXjs.NavigationMenu; exports.NavigationMenuContent = _chunkXHCHSTAXjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkXHCHSTAXjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkXHCHSTAXjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkXHCHSTAXjs.NavigationMenuLink; exports.NavigationMenuList = _chunkXHCHSTAXjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkXHCHSTAXjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkXHCHSTAXjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkXHCHSTAXjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkXHCHSTAXjs.NotificationMenuItem; exports.NotificationModal = _chunkXHCHSTAXjs.NotificationModal; exports.NotificationToast = _chunkXHCHSTAXjs.NotificationToast; exports.NotificationsList = _chunkXHCHSTAXjs.NotificationsList; exports.NotificationsListContainer = _chunkXHCHSTAXjs.NotificationsListContainer; exports.OAuthClientCard = _chunkXHCHSTAXjs.OAuthClientCard; exports.OAuthClientDetail = _chunkXHCHSTAXjs.OAuthClientDetail; exports.OAuthClientForm = _chunkXHCHSTAXjs.OAuthClientForm; exports.OAuthClientList = _chunkXHCHSTAXjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkXHCHSTAXjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkXHCHSTAXjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkXHCHSTAXjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkXHCHSTAXjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkXHCHSTAXjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkXHCHSTAXjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkXHCHSTAXjs.OAuthScopeSelector; exports.OnboardingCard = _chunkXHCHSTAXjs.OnboardingCard; exports.Overlay = _chunkXHCHSTAXjs.KanbanOverlay; exports.PageContainer = _chunkXHCHSTAXjs.PageContainer; exports.PageContainerContentDetails = _chunkXHCHSTAXjs.PageContainerContentDetails; exports.PageContentContainer = _chunkXHCHSTAXjs.PageContentContainer; exports.PageSection = _chunkXHCHSTAXjs.PageSection; exports.PasskeyButton = _chunkXHCHSTAXjs.PasskeyButton; exports.PasskeyList = _chunkXHCHSTAXjs.PasskeyList; exports.PasskeySetupDialog = _chunkXHCHSTAXjs.PasskeySetupDialog; exports.PasswordInput = _chunkXHCHSTAXjs.PasswordInput; exports.Popover = _chunkXHCHSTAXjs.Popover; exports.PopoverContent = _chunkXHCHSTAXjs.PopoverContent; exports.PopoverDescription = _chunkXHCHSTAXjs.PopoverDescription; exports.PopoverHeader = _chunkXHCHSTAXjs.PopoverHeader; exports.PopoverTitle = _chunkXHCHSTAXjs.PopoverTitle; exports.PopoverTrigger = _chunkXHCHSTAXjs.PopoverTrigger; exports.Progress = _chunkXHCHSTAXjs.Progress; exports.ProgressIndicator = _chunkXHCHSTAXjs.ProgressIndicator; exports.ProgressLabel = _chunkXHCHSTAXjs.ProgressLabel; exports.ProgressTrack = _chunkXHCHSTAXjs.ProgressTrack; exports.ProgressValue = _chunkXHCHSTAXjs.ProgressValue; exports.PushNotificationProvider = _chunkXHCHSTAXjs.PushNotificationProvider; exports.RadioGroup = _chunkXHCHSTAXjs.RadioGroup; exports.RadioGroupItem = _chunkXHCHSTAXjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkXHCHSTAXjs.RbacByRoleContainer; exports.RbacContainer = _chunkXHCHSTAXjs.RbacContainer; exports.RbacPermissionCell = _chunkXHCHSTAXjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkXHCHSTAXjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkXHCHSTAXjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkXHCHSTAXjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkXHCHSTAXjs.ReferralCodeCapture; exports.ReferralDialog = _chunkXHCHSTAXjs.ReferralDialog; exports.ReferralWidget = _chunkXHCHSTAXjs.ReferralWidget; exports.RefreshUser = _chunkXHCHSTAXjs.RefreshUser; exports.RelevantContentsList = _chunkXHCHSTAXjs.RelevantContentsList; exports.RelevantUsersList = _chunkXHCHSTAXjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkXHCHSTAXjs.RemoveUserFromRole; exports.ResetPassword = _chunkXHCHSTAXjs.ResetPassword; exports.ResizableHandle = _chunkXHCHSTAXjs.ResizableHandle; exports.ResizablePanel = _chunkXHCHSTAXjs.ResizablePanel; exports.ResizablePanelGroup = _chunkXHCHSTAXjs.ResizablePanelGroup; exports.RoleContainer = _chunkXHCHSTAXjs.RoleContainer; exports.RoleDetails = _chunkXHCHSTAXjs.RoleDetails; exports.RoleUsersList = _chunkXHCHSTAXjs.RoleUsersList; exports.RolesList = _chunkXHCHSTAXjs.RolesList; exports.Root = _chunkXHCHSTAXjs.KanbanRoot; exports.RoundPageContainer = _chunkXHCHSTAXjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkXHCHSTAXjs.RoundPageContainerTitle; exports.ScrollArea = _chunkXHCHSTAXjs.ScrollArea; exports.ScrollBar = _chunkXHCHSTAXjs.ScrollBar; exports.SecurityContainer = _chunkXHCHSTAXjs.SecurityContainer; exports.Select = _chunkXHCHSTAXjs.Select; exports.SelectContent = _chunkXHCHSTAXjs.SelectContent; exports.SelectGroup = _chunkXHCHSTAXjs.SelectGroup; exports.SelectItem = _chunkXHCHSTAXjs.SelectItem; exports.SelectLabel = _chunkXHCHSTAXjs.SelectLabel; exports.SelectScrollDownButton = _chunkXHCHSTAXjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkXHCHSTAXjs.SelectScrollUpButton; exports.SelectSeparator = _chunkXHCHSTAXjs.SelectSeparator; exports.SelectTrigger = _chunkXHCHSTAXjs.SelectTrigger; exports.SelectValue = _chunkXHCHSTAXjs.SelectValue; exports.Separator = _chunkXHCHSTAXjs.Separator; exports.Sheet = _chunkXHCHSTAXjs.Sheet; exports.SheetClose = _chunkXHCHSTAXjs.SheetClose; exports.SheetContent = _chunkXHCHSTAXjs.SheetContent; exports.SheetDescription = _chunkXHCHSTAXjs.SheetDescription; exports.SheetFooter = _chunkXHCHSTAXjs.SheetFooter; exports.SheetHeader = _chunkXHCHSTAXjs.SheetHeader; exports.SheetTitle = _chunkXHCHSTAXjs.SheetTitle; exports.SheetTrigger = _chunkXHCHSTAXjs.SheetTrigger; exports.Sidebar = _chunkXHCHSTAXjs.Sidebar; exports.SidebarContent = _chunkXHCHSTAXjs.SidebarContent; exports.SidebarFooter = _chunkXHCHSTAXjs.SidebarFooter; exports.SidebarGroup = _chunkXHCHSTAXjs.SidebarGroup; exports.SidebarGroupAction = _chunkXHCHSTAXjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkXHCHSTAXjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkXHCHSTAXjs.SidebarGroupLabel; exports.SidebarHeader = _chunkXHCHSTAXjs.SidebarHeader; exports.SidebarInput = _chunkXHCHSTAXjs.SidebarInput; exports.SidebarInset = _chunkXHCHSTAXjs.SidebarInset; exports.SidebarMenu = _chunkXHCHSTAXjs.SidebarMenu; exports.SidebarMenuAction = _chunkXHCHSTAXjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkXHCHSTAXjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkXHCHSTAXjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkXHCHSTAXjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkXHCHSTAXjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkXHCHSTAXjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkXHCHSTAXjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkXHCHSTAXjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkXHCHSTAXjs.SidebarProvider; exports.SidebarRail = _chunkXHCHSTAXjs.SidebarRail; exports.SidebarSeparator = _chunkXHCHSTAXjs.SidebarSeparator; exports.SidebarTrigger = _chunkXHCHSTAXjs.SidebarTrigger; exports.Skeleton = _chunkXHCHSTAXjs.Skeleton; exports.Slider = _chunkXHCHSTAXjs.Slider; exports.Switch = _chunkXHCHSTAXjs.Switch; exports.Table = _chunkXHCHSTAXjs.Table; exports.TableBody = _chunkXHCHSTAXjs.TableBody; exports.TableCaption = _chunkXHCHSTAXjs.TableCaption; exports.TableCell = _chunkXHCHSTAXjs.TableCell; exports.TableCellAvatar = _chunkXHCHSTAXjs.TableCellAvatar; exports.TableFooter = _chunkXHCHSTAXjs.TableFooter; exports.TableHead = _chunkXHCHSTAXjs.TableHead; exports.TableHeader = _chunkXHCHSTAXjs.TableHeader; exports.TableRow = _chunkXHCHSTAXjs.TableRow; exports.Tabs = _chunkXHCHSTAXjs.Tabs; exports.TabsContainer = _chunkXHCHSTAXjs.TabsContainer; exports.TabsContent = _chunkXHCHSTAXjs.TabsContent; exports.TabsList = _chunkXHCHSTAXjs.TabsList; exports.TabsTrigger = _chunkXHCHSTAXjs.TabsTrigger; exports.Textarea = _chunkXHCHSTAXjs.Textarea; exports.Toaster = _chunkXHCHSTAXjs.Toaster; exports.Toggle = _chunkXHCHSTAXjs.Toggle; exports.TokenStatusIndicator = _chunkXHCHSTAXjs.TokenStatusIndicator; exports.Tooltip = _chunkXHCHSTAXjs.Tooltip; exports.TooltipContent = _chunkXHCHSTAXjs.TooltipContent; exports.TooltipProvider = _chunkXHCHSTAXjs.TooltipProvider; exports.TooltipTrigger = _chunkXHCHSTAXjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkXHCHSTAXjs.TotpAuthenticatorList; exports.TotpInput = _chunkXHCHSTAXjs.TotpInput; exports.TotpSetupDialog = _chunkXHCHSTAXjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkXHCHSTAXjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkXHCHSTAXjs.TwoFactorSettings; exports.UserAvatar = _chunkXHCHSTAXjs.UserAvatar; exports.UserAvatarEditor = _chunkXHCHSTAXjs.UserAvatarEditor; exports.UserAvatarList = _chunkXHCHSTAXjs.UserAvatarList; exports.UserContainer = _chunkXHCHSTAXjs.UserContainer; exports.UserContent = _chunkXHCHSTAXjs.UserContent; exports.UserDeleter = _chunkXHCHSTAXjs.UserDeleter; exports.UserEditor = _chunkXHCHSTAXjs.UserEditor; exports.UserIndexContainer = _chunkXHCHSTAXjs.UserIndexContainer; exports.UserIndexDetails = _chunkXHCHSTAXjs.UserIndexDetails; exports.UserListInAdd = _chunkXHCHSTAXjs.UserListInAdd; exports.UserMultiSelect = _chunkXHCHSTAXjs.UserMultiSelect; exports.UserReactivator = _chunkXHCHSTAXjs.UserReactivator; exports.UserResentInvitationEmail = _chunkXHCHSTAXjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkXHCHSTAXjs.UserRoleAdd; exports.UserRolesList = _chunkXHCHSTAXjs.UserRolesList; exports.UserSearchPopover = _chunkXHCHSTAXjs.UserSearchPopover; exports.UserSelector = _chunkXHCHSTAXjs.UserSelector; exports.UserStanadaloneDetails = _chunkXHCHSTAXjs.UserStanadaloneDetails; exports.UsersList = _chunkXHCHSTAXjs.UsersList; exports.UsersListByContentIds = _chunkXHCHSTAXjs.UsersListByContentIds; exports.UsersListContainer = _chunkXHCHSTAXjs.UsersListContainer; exports.WaitlistConfirmation = _chunkXHCHSTAXjs.WaitlistConfirmation; exports.WaitlistForm = _chunkXHCHSTAXjs.WaitlistForm; exports.WaitlistHeroSection = _chunkXHCHSTAXjs.WaitlistHeroSection; exports.WaitlistList = _chunkXHCHSTAXjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkXHCHSTAXjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkXHCHSTAXjs.WaitlistSuccessState; exports.badgeVariants = _chunkXHCHSTAXjs.badgeVariants; exports.buttonVariants = _chunkXHCHSTAXjs.buttonVariants; exports.cellComponent = _chunkXHCHSTAXjs.cellComponent; exports.cellDate = _chunkXHCHSTAXjs.cellDate; exports.cellDateTime = _chunkXHCHSTAXjs.cellDateTime; exports.cellId = _chunkXHCHSTAXjs.cellId; exports.cellLink = _chunkXHCHSTAXjs.cellLink; exports.cellUrl = _chunkXHCHSTAXjs.cellUrl; exports.createMentionInlineContentSpec = _chunkXHCHSTAXjs.createMentionInlineContentSpec; exports.errorToast = _chunkXHCHSTAXjs.errorToast; exports.generateNotificationData = _chunkXHCHSTAXjs.generateNotificationData; exports.getIcon = _chunkXAWKRNYMjs.getIcon; exports.getIconByModule = _chunkXAWKRNYMjs.getIconByModule; exports.getIconByModuleName = _chunkXAWKRNYMjs.getIconByModuleName; exports.getInitials = _chunkXAWKRNYMjs.getInitials; exports.mentionDataAttrs = _chunkXHCHSTAXjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkXHCHSTAXjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkXHCHSTAXjs.parseFiscalData; exports.tabsListVariants = _chunkXHCHSTAXjs.tabsListVariants; exports.toggleVariants = _chunkXHCHSTAXjs.toggleVariants; exports.triggerAssociationToast = _chunkXHCHSTAXjs.triggerAssociationToast; exports.useCarousel = _chunkXHCHSTAXjs.useCarousel; exports.useComboboxAnchor = _chunkXHCHSTAXjs.useComboboxAnchor; exports.useDebounce = _chunkXHCHSTAXjs.useDebounce2; exports.useEditorDialog = _chunkXHCHSTAXjs.useEditorDialog; exports.useFileUpload = _chunkXHCHSTAXjs.useFileUpload; exports.useMentionInsert = _chunkXHCHSTAXjs.useMentionInsert; exports.useSidebar = _chunkXHCHSTAXjs.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
|
package/dist/contexts/index.js
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
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 =
|
|
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
|
package/dist/contexts/index.mjs
CHANGED
package/dist/core/index.d.mts
CHANGED
|
@@ -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-
|
|
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';
|
package/dist/core/index.d.ts
CHANGED
|
@@ -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-
|
|
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-
|
|
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-
|
|
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
|
@@ -89,8 +89,7 @@ export function BlockNoteEditorMentionSuggestionMenu({
|
|
|
89
89
|
if (!suggestionMenuComponent) return undefined;
|
|
90
90
|
const Component = suggestionMenuComponent;
|
|
91
91
|
const Wrapped: React.FC<SuggestionMenuProps<DefaultReactSuggestionItem>> = (props) => {
|
|
92
|
-
const isSentinelOnly =
|
|
93
|
-
props.items.length === 1 && props.items[0]?.title === KEEP_OPEN_SENTINEL_TITLE;
|
|
92
|
+
const isSentinelOnly = props.items.length === 1 && props.items[0]?.title === KEEP_OPEN_SENTINEL_TITLE;
|
|
94
93
|
return (
|
|
95
94
|
<Component
|
|
96
95
|
{...props}
|
|
@@ -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
|
-
<
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
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>
|