@carlonicora/nextjs-jsonapi 1.99.0 → 1.100.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-IBV3KBQM.mjs → BlockNoteEditor-QH3NPFYN.mjs} +2 -2
- package/dist/{BlockNoteEditor-LYJUF5N4.js → BlockNoteEditor-ZD2AMN72.js} +9 -9
- package/dist/{BlockNoteEditor-LYJUF5N4.js.map → BlockNoteEditor-ZD2AMN72.js.map} +1 -1
- package/dist/billing/index.js +299 -299
- package/dist/billing/index.mjs +1 -1
- package/dist/{chunk-TRTKIQUB.js → chunk-LIZ5C76W.js} +300 -224
- package/dist/chunk-LIZ5C76W.js.map +1 -0
- package/dist/{chunk-CDNVUON3.mjs → chunk-S34H33HJ.mjs} +82 -6
- package/dist/{chunk-CDNVUON3.mjs.map → chunk-S34H33HJ.mjs.map} +1 -1
- package/dist/client/index.d.mts +17 -1
- package/dist/client/index.d.ts +17 -1
- package/dist/client/index.js +4 -2
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +3 -1
- package/dist/components/index.js +2 -2
- package/dist/components/index.mjs +1 -1
- package/dist/contexts/index.js +2 -2
- package/dist/contexts/index.mjs +1 -1
- package/package.json +1 -1
- package/src/hooks/__tests__/computeLayeredLayout.spec.ts +135 -1
- package/src/hooks/computeLayeredLayout.ts +126 -13
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useCustomD3Graph.tsx +20 -8
- package/dist/chunk-TRTKIQUB.js.map +0 -1
- /package/dist/{BlockNoteEditor-IBV3KBQM.mjs.map → BlockNoteEditor-QH3NPFYN.mjs.map} +0 -0
package/dist/client/index.d.mts
CHANGED
|
@@ -375,6 +375,11 @@ interface LayeredLayoutPosition {
|
|
|
375
375
|
x: number;
|
|
376
376
|
y: number;
|
|
377
377
|
}
|
|
378
|
+
interface FitLayeredLayoutOptions extends LayeredLayoutOptions {
|
|
379
|
+
targetAspectRatio: number;
|
|
380
|
+
maxIterations?: number;
|
|
381
|
+
tolerance?: number;
|
|
382
|
+
}
|
|
378
383
|
/**
|
|
379
384
|
* Compute a layered DAG layout using dagre. Pure function: no DOM, no React,
|
|
380
385
|
* no d3 globals. Returns a Map of node.id -> { x, y } in graph coordinates.
|
|
@@ -383,6 +388,16 @@ interface LayeredLayoutPosition {
|
|
|
383
388
|
* should fall back to their previous layout in that case.
|
|
384
389
|
*/
|
|
385
390
|
declare function computeLayeredLayout(nodes: D3Node[], links: D3Link[], opts: LayeredLayoutOptions): Map<string, LayeredLayoutPosition> | null;
|
|
391
|
+
/**
|
|
392
|
+
* Compute a layered layout, then iteratively re-run dagre with adjusted
|
|
393
|
+
* `nodesep`/`ranksep` until the bounding-box aspect ratio is within
|
|
394
|
+
* `tolerance` of `targetAspectRatio` (or `maxIterations` is reached).
|
|
395
|
+
*
|
|
396
|
+
* Degenerate cases (empty graph, single-rank graph where one axis has
|
|
397
|
+
* zero extent, missing target ratio) skip fitting and return the
|
|
398
|
+
* single-pass result.
|
|
399
|
+
*/
|
|
400
|
+
declare function fitLayeredLayoutToAspectRatio(nodes: D3Node[], links: D3Link[], opts: FitLayeredLayoutOptions): Map<string, LayeredLayoutPosition> | null;
|
|
386
401
|
|
|
387
402
|
/**
|
|
388
403
|
* Custom hook for D3 graph visualization with larger circles and more interactive features
|
|
@@ -394,6 +409,7 @@ declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick:
|
|
|
394
409
|
rankdir?: LayeredRankDir;
|
|
395
410
|
nodesep?: number;
|
|
396
411
|
ranksep?: number;
|
|
412
|
+
fitContainer?: boolean;
|
|
397
413
|
};
|
|
398
414
|
}, loadingNodeIds?: Set<string>, containerKey?: string | number): {
|
|
399
415
|
svgRef: React.RefObject<SVGSVGElement | null>;
|
|
@@ -526,4 +542,4 @@ interface TrialSubscriptionStatus {
|
|
|
526
542
|
}
|
|
527
543
|
declare function useSubscriptionStatus(): TrialSubscriptionStatus;
|
|
528
544
|
|
|
529
|
-
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, type LayeredLayoutOptions, type LayeredLayoutPosition, type LayeredRankDir, type MutationMethod, type MutationParams, type TableContent, TableGeneratorRegistry, type TableStructureGeneratorInterface, type TrialSubscriptionStatus, type UseJsonApiGetOptions, type UseJsonApiGetResult, type UseJsonApiMutationResult, type UseOAuthClientReturn, type UseOAuthClientsReturn, type UseOAuthConsentReturn, type UseTableStructureHook, type UseTableStructureHookParams, type UseTableStructureHookReturn, computeLayeredLayout, configureClientJsonApi, directFetch, getClientApiUrl, getClientAppUrl, getClientToken, getClientTrackablePages, registerTableGenerator, tableGeneratorRegistry, useContentTableStructure, useCustomD3Graph, useDebounce, useJsonApiGet, useJsonApiMutation, useNotificationSync, useOAuthClient, useOAuthClients, useOAuthConsent, usePageTracker, usePageUrlGenerator, useRehydration, useRehydrationList, useRoleTableStructure, useSubscriptionStatus, useTableGenerator, useUrlRewriter, useUserSearch, useUserTableStructure };
|
|
545
|
+
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, type FitLayeredLayoutOptions, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, type LayeredLayoutOptions, type LayeredLayoutPosition, type LayeredRankDir, type MutationMethod, type MutationParams, type TableContent, TableGeneratorRegistry, type TableStructureGeneratorInterface, type TrialSubscriptionStatus, type UseJsonApiGetOptions, type UseJsonApiGetResult, type UseJsonApiMutationResult, type UseOAuthClientReturn, type UseOAuthClientsReturn, type UseOAuthConsentReturn, type UseTableStructureHook, type UseTableStructureHookParams, type UseTableStructureHookReturn, computeLayeredLayout, configureClientJsonApi, directFetch, fitLayeredLayoutToAspectRatio, getClientApiUrl, getClientAppUrl, getClientToken, getClientTrackablePages, registerTableGenerator, tableGeneratorRegistry, useContentTableStructure, useCustomD3Graph, useDebounce, useJsonApiGet, useJsonApiMutation, useNotificationSync, useOAuthClient, useOAuthClients, useOAuthConsent, usePageTracker, usePageUrlGenerator, useRehydration, useRehydrationList, useRoleTableStructure, useSubscriptionStatus, useTableGenerator, useUrlRewriter, useUserSearch, useUserTableStructure };
|
package/dist/client/index.d.ts
CHANGED
|
@@ -375,6 +375,11 @@ interface LayeredLayoutPosition {
|
|
|
375
375
|
x: number;
|
|
376
376
|
y: number;
|
|
377
377
|
}
|
|
378
|
+
interface FitLayeredLayoutOptions extends LayeredLayoutOptions {
|
|
379
|
+
targetAspectRatio: number;
|
|
380
|
+
maxIterations?: number;
|
|
381
|
+
tolerance?: number;
|
|
382
|
+
}
|
|
378
383
|
/**
|
|
379
384
|
* Compute a layered DAG layout using dagre. Pure function: no DOM, no React,
|
|
380
385
|
* no d3 globals. Returns a Map of node.id -> { x, y } in graph coordinates.
|
|
@@ -383,6 +388,16 @@ interface LayeredLayoutPosition {
|
|
|
383
388
|
* should fall back to their previous layout in that case.
|
|
384
389
|
*/
|
|
385
390
|
declare function computeLayeredLayout(nodes: D3Node[], links: D3Link[], opts: LayeredLayoutOptions): Map<string, LayeredLayoutPosition> | null;
|
|
391
|
+
/**
|
|
392
|
+
* Compute a layered layout, then iteratively re-run dagre with adjusted
|
|
393
|
+
* `nodesep`/`ranksep` until the bounding-box aspect ratio is within
|
|
394
|
+
* `tolerance` of `targetAspectRatio` (or `maxIterations` is reached).
|
|
395
|
+
*
|
|
396
|
+
* Degenerate cases (empty graph, single-rank graph where one axis has
|
|
397
|
+
* zero extent, missing target ratio) skip fitting and return the
|
|
398
|
+
* single-pass result.
|
|
399
|
+
*/
|
|
400
|
+
declare function fitLayeredLayoutToAspectRatio(nodes: D3Node[], links: D3Link[], opts: FitLayeredLayoutOptions): Map<string, LayeredLayoutPosition> | null;
|
|
386
401
|
|
|
387
402
|
/**
|
|
388
403
|
* Custom hook for D3 graph visualization with larger circles and more interactive features
|
|
@@ -394,6 +409,7 @@ declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick:
|
|
|
394
409
|
rankdir?: LayeredRankDir;
|
|
395
410
|
nodesep?: number;
|
|
396
411
|
ranksep?: number;
|
|
412
|
+
fitContainer?: boolean;
|
|
397
413
|
};
|
|
398
414
|
}, loadingNodeIds?: Set<string>, containerKey?: string | number): {
|
|
399
415
|
svgRef: React.RefObject<SVGSVGElement | null>;
|
|
@@ -526,4 +542,4 @@ interface TrialSubscriptionStatus {
|
|
|
526
542
|
}
|
|
527
543
|
declare function useSubscriptionStatus(): TrialSubscriptionStatus;
|
|
528
544
|
|
|
529
|
-
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, type LayeredLayoutOptions, type LayeredLayoutPosition, type LayeredRankDir, type MutationMethod, type MutationParams, type TableContent, TableGeneratorRegistry, type TableStructureGeneratorInterface, type TrialSubscriptionStatus, type UseJsonApiGetOptions, type UseJsonApiGetResult, type UseJsonApiMutationResult, type UseOAuthClientReturn, type UseOAuthClientsReturn, type UseOAuthConsentReturn, type UseTableStructureHook, type UseTableStructureHookParams, type UseTableStructureHookReturn, computeLayeredLayout, configureClientJsonApi, directFetch, getClientApiUrl, getClientAppUrl, getClientToken, getClientTrackablePages, registerTableGenerator, tableGeneratorRegistry, useContentTableStructure, useCustomD3Graph, useDebounce, useJsonApiGet, useJsonApiMutation, useNotificationSync, useOAuthClient, useOAuthClients, useOAuthConsent, usePageTracker, usePageUrlGenerator, useRehydration, useRehydrationList, useRoleTableStructure, useSubscriptionStatus, useTableGenerator, useUrlRewriter, useUserSearch, useUserTableStructure };
|
|
545
|
+
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, type FitLayeredLayoutOptions, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, type LayeredLayoutOptions, type LayeredLayoutPosition, type LayeredRankDir, type MutationMethod, type MutationParams, type TableContent, TableGeneratorRegistry, type TableStructureGeneratorInterface, type TrialSubscriptionStatus, type UseJsonApiGetOptions, type UseJsonApiGetResult, type UseJsonApiMutationResult, type UseOAuthClientReturn, type UseOAuthClientsReturn, type UseOAuthConsentReturn, type UseTableStructureHook, type UseTableStructureHookParams, type UseTableStructureHookReturn, computeLayeredLayout, configureClientJsonApi, directFetch, fitLayeredLayoutToAspectRatio, getClientApiUrl, getClientAppUrl, getClientToken, getClientTrackablePages, registerTableGenerator, tableGeneratorRegistry, useContentTableStructure, useCustomD3Graph, useDebounce, useJsonApiGet, useJsonApiMutation, useNotificationSync, useOAuthClient, useOAuthClients, useOAuthConsent, usePageTracker, usePageUrlGenerator, useRehydration, useRehydrationList, useRoleTableStructure, useSubscriptionStatus, useTableGenerator, useUrlRewriter, useUserSearch, useUserTableStructure };
|
package/dist/client/index.js
CHANGED
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
|
|
31
|
+
var _chunkLIZ5C76Wjs = require('../chunk-LIZ5C76W.js');
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
|
|
@@ -121,5 +122,6 @@ require('../chunk-7QVYU63E.js');
|
|
|
121
122
|
|
|
122
123
|
|
|
123
124
|
|
|
124
|
-
|
|
125
|
+
|
|
126
|
+
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 = _chunkLIZ5C76Wjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkLIZ5C76Wjs.TableGeneratorRegistry; exports.computeLayeredLayout = _chunkLIZ5C76Wjs.computeLayeredLayout; exports.configureClientConfig = _chunkSE5HIHJSjs.configureClientConfig; exports.configureClientJsonApi = _chunkXAWKRNYMjs.configureClientJsonApi; exports.configureI18n = _chunkSE5HIHJSjs.configureI18n; exports.configureJsonApi = _chunkSE5HIHJSjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.fitLayeredLayoutToAspectRatio = _chunkLIZ5C76Wjs.fitLayeredLayoutToAspectRatio; 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 = _chunkLIZ5C76Wjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkLIZ5C76Wjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkLIZ5C76Wjs.useContentTableStructure; exports.useCustomD3Graph = _chunkLIZ5C76Wjs.useCustomD3Graph; exports.useDataListRetriever = _chunkLIZ5C76Wjs.useDataListRetriever; exports.useDebounce = _chunkLIZ5C76Wjs.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 = _chunkLIZ5C76Wjs.useJsonApiGet; exports.useJsonApiMutation = _chunkLIZ5C76Wjs.useJsonApiMutation; exports.useNotificationSync = _chunkLIZ5C76Wjs.useNotificationSync; exports.useOAuthClient = _chunkLIZ5C76Wjs.useOAuthClient; exports.useOAuthClients = _chunkLIZ5C76Wjs.useOAuthClients; exports.useOAuthConsent = _chunkLIZ5C76Wjs.useOAuthConsent; exports.usePageTracker = _chunkLIZ5C76Wjs.usePageTracker; exports.usePageUrlGenerator = _chunkLIZ5C76Wjs.usePageUrlGenerator; exports.useRehydration = _chunkLIZ5C76Wjs.useRehydration; exports.useRehydrationList = _chunkLIZ5C76Wjs.useRehydrationList; exports.useRoleTableStructure = _chunkLIZ5C76Wjs.useRoleTableStructure; exports.useSocket = _chunkLIZ5C76Wjs.useSocket; exports.useSubscriptionStatus = _chunkLIZ5C76Wjs.useSubscriptionStatus; exports.useTableGenerator = _chunkLIZ5C76Wjs.useTableGenerator; exports.useUrlRewriter = _chunkLIZ5C76Wjs.useUrlRewriter; exports.useUserSearch = _chunkLIZ5C76Wjs.useUserSearch; exports.useUserTableStructure = _chunkLIZ5C76Wjs.useUserTableStructure;
|
|
125
127
|
//# sourceMappingURL=index.js.map
|
package/dist/client/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"],"names":[],"mappings":"AAAA,qFAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"],"names":[],"mappings":"AAAA,qFAAY;AACZ;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B;AACE;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACF,uDAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,y3GAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"}
|
package/dist/client/index.mjs
CHANGED
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
JsonApiProvider,
|
|
4
4
|
TableGeneratorRegistry,
|
|
5
5
|
computeLayeredLayout,
|
|
6
|
+
fitLayeredLayoutToAspectRatio,
|
|
6
7
|
registerTableGenerator,
|
|
7
8
|
tableGeneratorRegistry,
|
|
8
9
|
useContentTableStructure,
|
|
@@ -26,7 +27,7 @@ import {
|
|
|
26
27
|
useUrlRewriter,
|
|
27
28
|
useUserSearch,
|
|
28
29
|
useUserTableStructure
|
|
29
|
-
} from "../chunk-
|
|
30
|
+
} from "../chunk-S34H33HJ.mjs";
|
|
30
31
|
import {
|
|
31
32
|
configureClientConfig,
|
|
32
33
|
configureI18n,
|
|
@@ -81,6 +82,7 @@ export {
|
|
|
81
82
|
configureI18n,
|
|
82
83
|
configureJsonApi,
|
|
83
84
|
directFetch,
|
|
85
|
+
fitLayeredLayoutToAspectRatio,
|
|
84
86
|
getApiUrl,
|
|
85
87
|
getAppUrl,
|
|
86
88
|
getClientApiUrl,
|
package/dist/components/index.js
CHANGED
|
@@ -455,7 +455,7 @@
|
|
|
455
455
|
|
|
456
456
|
|
|
457
457
|
|
|
458
|
-
var
|
|
458
|
+
var _chunkLIZ5C76Wjs = require('../chunk-LIZ5C76W.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 = _chunkTRTKIQUBjs.AcceptInvitation; exports.Accordion = _chunkTRTKIQUBjs.Accordion; exports.AccordionContent = _chunkTRTKIQUBjs.AccordionContent; exports.AccordionItem = _chunkTRTKIQUBjs.AccordionItem; exports.AccordionTrigger = _chunkTRTKIQUBjs.AccordionTrigger; exports.ActivateAccount = _chunkTRTKIQUBjs.ActivateAccount; exports.AddUserToRole = _chunkTRTKIQUBjs.AddUserToRole; exports.AdminCompanyContainer = _chunkTRTKIQUBjs.AdminCompanyContainer; exports.AdminUsersList = _chunkTRTKIQUBjs.AdminUsersList; exports.Alert = _chunkTRTKIQUBjs.Alert; exports.AlertAction = _chunkTRTKIQUBjs.AlertAction; exports.AlertDescription = _chunkTRTKIQUBjs.AlertDescription; exports.AlertDialog = _chunkTRTKIQUBjs.AlertDialog; exports.AlertDialogAction = _chunkTRTKIQUBjs.AlertDialogAction; exports.AlertDialogCancel = _chunkTRTKIQUBjs.AlertDialogCancel; exports.AlertDialogContent = _chunkTRTKIQUBjs.AlertDialogContent; exports.AlertDialogDescription = _chunkTRTKIQUBjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkTRTKIQUBjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkTRTKIQUBjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkTRTKIQUBjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkTRTKIQUBjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkTRTKIQUBjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkTRTKIQUBjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkTRTKIQUBjs.AlertDialogTrigger; exports.AlertTitle = _chunkTRTKIQUBjs.AlertTitle; exports.AllUsersListContainer = _chunkTRTKIQUBjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkTRTKIQUBjs.AllowedUsersDetails; exports.AssistantContainer = _chunkTRTKIQUBjs.AssistantContainer; exports.AttributeElement = _chunkTRTKIQUBjs.AttributeElement; exports.AuthContainer = _chunkTRTKIQUBjs.AuthContainer; exports.Avatar = _chunkTRTKIQUBjs.Avatar; exports.AvatarBadge = _chunkTRTKIQUBjs.AvatarBadge; exports.AvatarFallback = _chunkTRTKIQUBjs.AvatarFallback; exports.AvatarGroup = _chunkTRTKIQUBjs.AvatarGroup; exports.AvatarGroupCount = _chunkTRTKIQUBjs.AvatarGroupCount; exports.AvatarImage = _chunkTRTKIQUBjs.AvatarImage; exports.BackupCodesDialog = _chunkTRTKIQUBjs.BackupCodesDialog; exports.Badge = _chunkTRTKIQUBjs.Badge; exports.BlockNoteEditorContainer = _chunkTRTKIQUBjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkTRTKIQUBjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkTRTKIQUBjs.BlockNoteEditorMentionSuggestionMenu; exports.Board = _chunkTRTKIQUBjs.KanbanBoard; exports.Breadcrumb = _chunkTRTKIQUBjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkTRTKIQUBjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkTRTKIQUBjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkTRTKIQUBjs.BreadcrumbLink; exports.BreadcrumbList = _chunkTRTKIQUBjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkTRTKIQUBjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkTRTKIQUBjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkTRTKIQUBjs.BreadcrumbSeparator; exports.Button = _chunkTRTKIQUBjs.Button; exports.Calendar = _chunkTRTKIQUBjs.Calendar; exports.CalendarDayButton = _chunkTRTKIQUBjs.CalendarDayButton; exports.Card = _chunkTRTKIQUBjs.Card; exports.CardAction = _chunkTRTKIQUBjs.CardAction; exports.CardContent = _chunkTRTKIQUBjs.CardContent; exports.CardDescription = _chunkTRTKIQUBjs.CardDescription; exports.CardFooter = _chunkTRTKIQUBjs.CardFooter; exports.CardHeader = _chunkTRTKIQUBjs.CardHeader; exports.CardTitle = _chunkTRTKIQUBjs.CardTitle; exports.Carousel = _chunkTRTKIQUBjs.Carousel; exports.CarouselContent = _chunkTRTKIQUBjs.CarouselContent; exports.CarouselItem = _chunkTRTKIQUBjs.CarouselItem; exports.CarouselNext = _chunkTRTKIQUBjs.CarouselNext; exports.CarouselPrevious = _chunkTRTKIQUBjs.CarouselPrevious; exports.ChartContainer = _chunkTRTKIQUBjs.ChartContainer; exports.ChartLegend = _chunkTRTKIQUBjs.ChartLegend; exports.ChartLegendContent = _chunkTRTKIQUBjs.ChartLegendContent; exports.ChartStyle = _chunkTRTKIQUBjs.ChartStyle; exports.ChartTooltip = _chunkTRTKIQUBjs.ChartTooltip; exports.ChartTooltipContent = _chunkTRTKIQUBjs.ChartTooltipContent; exports.Checkbox = _chunkTRTKIQUBjs.Checkbox; exports.Collapsible = _chunkTRTKIQUBjs.Collapsible; exports.CollapsibleContent = _chunkTRTKIQUBjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkTRTKIQUBjs.CollapsibleTrigger; exports.Column = _chunkTRTKIQUBjs.KanbanColumn; exports.ColumnHandle = _chunkTRTKIQUBjs.KanbanColumnHandle; exports.Combobox = _chunkTRTKIQUBjs.Combobox; exports.ComboboxChip = _chunkTRTKIQUBjs.ComboboxChip; exports.ComboboxChips = _chunkTRTKIQUBjs.ComboboxChips; exports.ComboboxChipsInput = _chunkTRTKIQUBjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkTRTKIQUBjs.ComboboxCollection; exports.ComboboxContent = _chunkTRTKIQUBjs.ComboboxContent; exports.ComboboxEmpty = _chunkTRTKIQUBjs.ComboboxEmpty; exports.ComboboxGroup = _chunkTRTKIQUBjs.ComboboxGroup; exports.ComboboxInput = _chunkTRTKIQUBjs.ComboboxInput; exports.ComboboxItem = _chunkTRTKIQUBjs.ComboboxItem; exports.ComboboxLabel = _chunkTRTKIQUBjs.ComboboxLabel; exports.ComboboxList = _chunkTRTKIQUBjs.ComboboxList; exports.ComboboxSeparator = _chunkTRTKIQUBjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkTRTKIQUBjs.ComboboxTrigger; exports.ComboboxValue = _chunkTRTKIQUBjs.ComboboxValue; exports.Command = _chunkTRTKIQUBjs.Command; exports.CommandDialog = _chunkTRTKIQUBjs.CommandDialog; exports.CommandEmpty = _chunkTRTKIQUBjs.CommandEmpty; exports.CommandGroup = _chunkTRTKIQUBjs.CommandGroup; exports.CommandInput = _chunkTRTKIQUBjs.CommandInput; exports.CommandItem = _chunkTRTKIQUBjs.CommandItem; exports.CommandList = _chunkTRTKIQUBjs.CommandList; exports.CommandSeparator = _chunkTRTKIQUBjs.CommandSeparator; exports.CommandShortcut = _chunkTRTKIQUBjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkTRTKIQUBjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkTRTKIQUBjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkTRTKIQUBjs.CommonDeleter; exports.CommonEditorButtons = _chunkTRTKIQUBjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkTRTKIQUBjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkTRTKIQUBjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkTRTKIQUBjs.CommonEditorTrigger; exports.CompaniesList = _chunkTRTKIQUBjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkTRTKIQUBjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkTRTKIQUBjs.CompanyContainer; exports.CompanyContent = _chunkTRTKIQUBjs.CompanyContent; exports.CompanyDeleter = _chunkTRTKIQUBjs.CompanyDeleter; exports.CompanyDetails = _chunkTRTKIQUBjs.CompanyDetails; exports.CompanyEditor = _chunkTRTKIQUBjs.CompanyEditor; exports.CompanyUsersList = _chunkTRTKIQUBjs.CompanyUsersList; exports.ContentListGrid = _chunkTRTKIQUBjs.ContentListGrid; exports.ContentListTable = _chunkTRTKIQUBjs.ContentListTable; exports.ContentTableSearch = _chunkTRTKIQUBjs.ContentTableSearch; exports.ContentTitle = _chunkTRTKIQUBjs.ContentTitle; exports.ContentsList = _chunkTRTKIQUBjs.ContentsList; exports.ContentsListById = _chunkTRTKIQUBjs.ContentsListById; exports.ContextMenu = _chunkTRTKIQUBjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkTRTKIQUBjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkTRTKIQUBjs.ContextMenuContent; exports.ContextMenuGroup = _chunkTRTKIQUBjs.ContextMenuGroup; exports.ContextMenuItem = _chunkTRTKIQUBjs.ContextMenuItem; exports.ContextMenuLabel = _chunkTRTKIQUBjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkTRTKIQUBjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkTRTKIQUBjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkTRTKIQUBjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkTRTKIQUBjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkTRTKIQUBjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkTRTKIQUBjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkTRTKIQUBjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkTRTKIQUBjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkTRTKIQUBjs.ContextMenuTrigger; exports.ContributorsList = _chunkTRTKIQUBjs.ContributorsList; exports.Cookies = _chunkTRTKIQUBjs.Cookies; exports.DatePickerPopover = _chunkTRTKIQUBjs.DatePickerPopover; exports.DateRangeSelector = _chunkTRTKIQUBjs.DateRangeSelector; exports.Dialog = _chunkTRTKIQUBjs.Dialog; exports.DialogClose = _chunkTRTKIQUBjs.DialogClose; exports.DialogContent = _chunkTRTKIQUBjs.DialogContent; exports.DialogDescription = _chunkTRTKIQUBjs.DialogDescription; exports.DialogFooter = _chunkTRTKIQUBjs.DialogFooter; exports.DialogHeader = _chunkTRTKIQUBjs.DialogHeader; exports.DialogOverlay = _chunkTRTKIQUBjs.DialogOverlay; exports.DialogPortal = _chunkTRTKIQUBjs.DialogPortal; exports.DialogTitle = _chunkTRTKIQUBjs.DialogTitle; exports.DialogTrigger = _chunkTRTKIQUBjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkTRTKIQUBjs.DisableTwoFactorDialog; exports.Drawer = _chunkTRTKIQUBjs.Drawer; exports.DrawerClose = _chunkTRTKIQUBjs.DrawerClose; exports.DrawerContent = _chunkTRTKIQUBjs.DrawerContent; exports.DrawerDescription = _chunkTRTKIQUBjs.DrawerDescription; exports.DrawerFooter = _chunkTRTKIQUBjs.DrawerFooter; exports.DrawerHeader = _chunkTRTKIQUBjs.DrawerHeader; exports.DrawerOverlay = _chunkTRTKIQUBjs.DrawerOverlay; exports.DrawerPortal = _chunkTRTKIQUBjs.DrawerPortal; exports.DrawerTitle = _chunkTRTKIQUBjs.DrawerTitle; exports.DrawerTrigger = _chunkTRTKIQUBjs.DrawerTrigger; exports.DropdownMenu = _chunkTRTKIQUBjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkTRTKIQUBjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkTRTKIQUBjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkTRTKIQUBjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkTRTKIQUBjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkTRTKIQUBjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkTRTKIQUBjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkTRTKIQUBjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkTRTKIQUBjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkTRTKIQUBjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkTRTKIQUBjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkTRTKIQUBjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkTRTKIQUBjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkTRTKIQUBjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkTRTKIQUBjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkTRTKIQUBjs.EditableAvatar; exports.EditorSheet = _chunkTRTKIQUBjs.EditorSheet; exports.EntityAvatar = _chunkTRTKIQUBjs.EntityAvatar; exports.EntityMultiSelector = _chunkTRTKIQUBjs.EntityMultiSelector; exports.ErrorDetails = _chunkTRTKIQUBjs.ErrorDetails; exports.Field = _chunkTRTKIQUBjs.Field; exports.FieldContent = _chunkTRTKIQUBjs.FieldContent; exports.FieldDescription = _chunkTRTKIQUBjs.FieldDescription; exports.FieldError = _chunkTRTKIQUBjs.FieldError; exports.FieldGroup = _chunkTRTKIQUBjs.FieldGroup; exports.FieldLabel = _chunkTRTKIQUBjs.FieldLabel; exports.FieldLegend = _chunkTRTKIQUBjs.FieldLegend; exports.FieldSeparator = _chunkTRTKIQUBjs.FieldSeparator; exports.FieldSet = _chunkTRTKIQUBjs.FieldSet; exports.FieldTitle = _chunkTRTKIQUBjs.FieldTitle; exports.FileInput = _chunkTRTKIQUBjs.FileInput; exports.FileUploader = _chunkTRTKIQUBjs.FileUploader; exports.FileUploaderContent = _chunkTRTKIQUBjs.FileUploaderContent; exports.FileUploaderItem = _chunkTRTKIQUBjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkTRTKIQUBjs.FiscalDataDisplay; exports.ForgotPassword = _chunkTRTKIQUBjs.ForgotPassword; exports.Form = _chunkTRTKIQUBjs.Form; exports.FormBlockNote = _chunkTRTKIQUBjs.FormBlockNote; exports.FormCheckbox = _chunkTRTKIQUBjs.FormCheckbox; exports.FormDate = _chunkTRTKIQUBjs.FormDate; exports.FormDateTime = _chunkTRTKIQUBjs.FormDateTime; exports.FormFeatures = _chunkTRTKIQUBjs.FormFeatures; exports.FormFieldWrapper = _chunkTRTKIQUBjs.FormFieldWrapper; exports.FormInput = _chunkTRTKIQUBjs.FormInput; exports.FormPassword = _chunkTRTKIQUBjs.FormPassword; exports.FormPlaceAutocomplete = _chunkTRTKIQUBjs.FormPlaceAutocomplete; exports.FormRoles = _chunkTRTKIQUBjs.FormRoles; exports.FormSelect = _chunkTRTKIQUBjs.FormSelect; exports.FormSlider = _chunkTRTKIQUBjs.FormSlider; exports.FormSwitch = _chunkTRTKIQUBjs.FormSwitch; exports.FormTextarea = _chunkTRTKIQUBjs.FormTextarea; exports.GdprConsentCheckbox = _chunkTRTKIQUBjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkTRTKIQUBjs.GdprConsentSection; exports.Header = _chunkTRTKIQUBjs.Header; exports.HoverCard = _chunkTRTKIQUBjs.HoverCard; exports.HoverCardContent = _chunkTRTKIQUBjs.HoverCardContent; exports.HoverCardTrigger = _chunkTRTKIQUBjs.HoverCardTrigger; exports.HowToCommand = _chunkTRTKIQUBjs.HowToCommand; exports.HowToCommandViewer = _chunkTRTKIQUBjs.HowToCommandViewer; exports.HowToContainer = _chunkTRTKIQUBjs.HowToContainer; exports.HowToContent = _chunkTRTKIQUBjs.HowToContent; exports.HowToDeleter = _chunkTRTKIQUBjs.HowToDeleter; exports.HowToDetails = _chunkTRTKIQUBjs.HowToDetails; exports.HowToEditor = _chunkTRTKIQUBjs.HowToEditor; exports.HowToList = _chunkTRTKIQUBjs.HowToList; exports.HowToListContainer = _chunkTRTKIQUBjs.HowToListContainer; exports.HowToMultiSelector = _chunkTRTKIQUBjs.HowToMultiSelector; exports.HowToSelector = _chunkTRTKIQUBjs.HowToSelector; exports.Input = _chunkTRTKIQUBjs.Input; exports.InputGroup = _chunkTRTKIQUBjs.InputGroup; exports.InputGroupAddon = _chunkTRTKIQUBjs.InputGroupAddon; exports.InputGroupButton = _chunkTRTKIQUBjs.InputGroupButton; exports.InputGroupInput = _chunkTRTKIQUBjs.InputGroupInput; exports.InputGroupText = _chunkTRTKIQUBjs.InputGroupText; exports.InputGroupTextarea = _chunkTRTKIQUBjs.InputGroupTextarea; exports.InputOTP = _chunkTRTKIQUBjs.InputOTP; exports.InputOTPGroup = _chunkTRTKIQUBjs.InputOTPGroup; exports.InputOTPSeparator = _chunkTRTKIQUBjs.InputOTPSeparator; exports.InputOTPSlot = _chunkTRTKIQUBjs.InputOTPSlot; exports.ItalianFiscalData = _chunkTRTKIQUBjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkTRTKIQUBjs.ItalianFiscalDataDisplay; exports.Item = _chunkTRTKIQUBjs.KanbanItem; exports.ItemHandle = _chunkTRTKIQUBjs.KanbanItemHandle; exports.Kanban = _chunkTRTKIQUBjs.KanbanRoot; exports.KanbanBoard = _chunkTRTKIQUBjs.KanbanBoard; exports.KanbanColumn = _chunkTRTKIQUBjs.KanbanColumn; exports.KanbanColumnHandle = _chunkTRTKIQUBjs.KanbanColumnHandle; exports.KanbanItem = _chunkTRTKIQUBjs.KanbanItem; exports.KanbanItemHandle = _chunkTRTKIQUBjs.KanbanItemHandle; exports.KanbanOverlay = _chunkTRTKIQUBjs.KanbanOverlay; exports.Label = _chunkTRTKIQUBjs.Label; exports.LandingComponent = _chunkTRTKIQUBjs.LandingComponent; exports.Link = _chunkTRTKIQUBjs.Link; exports.Login = _chunkTRTKIQUBjs.Login; exports.Logout = _chunkTRTKIQUBjs.Logout; exports.MessageItem = _chunkTRTKIQUBjs.MessageItem; exports.MessageList = _chunkTRTKIQUBjs.MessageList; exports.MessageSourcesPanel = _chunkTRTKIQUBjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkTRTKIQUBjs.ModeToggleSwitch; exports.MultiSelect = _chunkTRTKIQUBjs.MultiSelect; exports.MultipleSelector = _chunkTRTKIQUBjs.MultipleSelector; exports.NavigationMenu = _chunkTRTKIQUBjs.NavigationMenu; exports.NavigationMenuContent = _chunkTRTKIQUBjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkTRTKIQUBjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkTRTKIQUBjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkTRTKIQUBjs.NavigationMenuLink; exports.NavigationMenuList = _chunkTRTKIQUBjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkTRTKIQUBjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkTRTKIQUBjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkTRTKIQUBjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkTRTKIQUBjs.NotificationMenuItem; exports.NotificationModal = _chunkTRTKIQUBjs.NotificationModal; exports.NotificationToast = _chunkTRTKIQUBjs.NotificationToast; exports.NotificationsList = _chunkTRTKIQUBjs.NotificationsList; exports.NotificationsListContainer = _chunkTRTKIQUBjs.NotificationsListContainer; exports.OAuthClientCard = _chunkTRTKIQUBjs.OAuthClientCard; exports.OAuthClientDetail = _chunkTRTKIQUBjs.OAuthClientDetail; exports.OAuthClientForm = _chunkTRTKIQUBjs.OAuthClientForm; exports.OAuthClientList = _chunkTRTKIQUBjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkTRTKIQUBjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkTRTKIQUBjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkTRTKIQUBjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkTRTKIQUBjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkTRTKIQUBjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkTRTKIQUBjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkTRTKIQUBjs.OAuthScopeSelector; exports.OnboardingCard = _chunkTRTKIQUBjs.OnboardingCard; exports.Overlay = _chunkTRTKIQUBjs.KanbanOverlay; exports.PageContainer = _chunkTRTKIQUBjs.PageContainer; exports.PageContainerContentDetails = _chunkTRTKIQUBjs.PageContainerContentDetails; exports.PageContentContainer = _chunkTRTKIQUBjs.PageContentContainer; exports.PageSection = _chunkTRTKIQUBjs.PageSection; exports.PasskeyButton = _chunkTRTKIQUBjs.PasskeyButton; exports.PasskeyList = _chunkTRTKIQUBjs.PasskeyList; exports.PasskeySetupDialog = _chunkTRTKIQUBjs.PasskeySetupDialog; exports.PasswordInput = _chunkTRTKIQUBjs.PasswordInput; exports.Popover = _chunkTRTKIQUBjs.Popover; exports.PopoverContent = _chunkTRTKIQUBjs.PopoverContent; exports.PopoverDescription = _chunkTRTKIQUBjs.PopoverDescription; exports.PopoverHeader = _chunkTRTKIQUBjs.PopoverHeader; exports.PopoverTitle = _chunkTRTKIQUBjs.PopoverTitle; exports.PopoverTrigger = _chunkTRTKIQUBjs.PopoverTrigger; exports.Progress = _chunkTRTKIQUBjs.Progress; exports.ProgressIndicator = _chunkTRTKIQUBjs.ProgressIndicator; exports.ProgressLabel = _chunkTRTKIQUBjs.ProgressLabel; exports.ProgressTrack = _chunkTRTKIQUBjs.ProgressTrack; exports.ProgressValue = _chunkTRTKIQUBjs.ProgressValue; exports.PushNotificationProvider = _chunkTRTKIQUBjs.PushNotificationProvider; exports.RadioGroup = _chunkTRTKIQUBjs.RadioGroup; exports.RadioGroupItem = _chunkTRTKIQUBjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkTRTKIQUBjs.RbacByRoleContainer; exports.RbacContainer = _chunkTRTKIQUBjs.RbacContainer; exports.RbacPermissionCell = _chunkTRTKIQUBjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkTRTKIQUBjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkTRTKIQUBjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkTRTKIQUBjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkTRTKIQUBjs.ReferralCodeCapture; exports.ReferralDialog = _chunkTRTKIQUBjs.ReferralDialog; exports.ReferralWidget = _chunkTRTKIQUBjs.ReferralWidget; exports.RefreshUser = _chunkTRTKIQUBjs.RefreshUser; exports.RelevantContentsList = _chunkTRTKIQUBjs.RelevantContentsList; exports.RelevantUsersList = _chunkTRTKIQUBjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkTRTKIQUBjs.RemoveUserFromRole; exports.ResetPassword = _chunkTRTKIQUBjs.ResetPassword; exports.ResizableHandle = _chunkTRTKIQUBjs.ResizableHandle; exports.ResizablePanel = _chunkTRTKIQUBjs.ResizablePanel; exports.ResizablePanelGroup = _chunkTRTKIQUBjs.ResizablePanelGroup; exports.RoleContainer = _chunkTRTKIQUBjs.RoleContainer; exports.RoleDetails = _chunkTRTKIQUBjs.RoleDetails; exports.RoleUsersList = _chunkTRTKIQUBjs.RoleUsersList; exports.RolesList = _chunkTRTKIQUBjs.RolesList; exports.Root = _chunkTRTKIQUBjs.KanbanRoot; exports.RoundPageContainer = _chunkTRTKIQUBjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkTRTKIQUBjs.RoundPageContainerTitle; exports.ScrollArea = _chunkTRTKIQUBjs.ScrollArea; exports.ScrollBar = _chunkTRTKIQUBjs.ScrollBar; exports.SecurityContainer = _chunkTRTKIQUBjs.SecurityContainer; exports.Select = _chunkTRTKIQUBjs.Select; exports.SelectContent = _chunkTRTKIQUBjs.SelectContent; exports.SelectGroup = _chunkTRTKIQUBjs.SelectGroup; exports.SelectItem = _chunkTRTKIQUBjs.SelectItem; exports.SelectLabel = _chunkTRTKIQUBjs.SelectLabel; exports.SelectScrollDownButton = _chunkTRTKIQUBjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkTRTKIQUBjs.SelectScrollUpButton; exports.SelectSeparator = _chunkTRTKIQUBjs.SelectSeparator; exports.SelectTrigger = _chunkTRTKIQUBjs.SelectTrigger; exports.SelectValue = _chunkTRTKIQUBjs.SelectValue; exports.Separator = _chunkTRTKIQUBjs.Separator; exports.Sheet = _chunkTRTKIQUBjs.Sheet; exports.SheetClose = _chunkTRTKIQUBjs.SheetClose; exports.SheetContent = _chunkTRTKIQUBjs.SheetContent; exports.SheetDescription = _chunkTRTKIQUBjs.SheetDescription; exports.SheetFooter = _chunkTRTKIQUBjs.SheetFooter; exports.SheetHeader = _chunkTRTKIQUBjs.SheetHeader; exports.SheetTitle = _chunkTRTKIQUBjs.SheetTitle; exports.SheetTrigger = _chunkTRTKIQUBjs.SheetTrigger; exports.Sidebar = _chunkTRTKIQUBjs.Sidebar; exports.SidebarContent = _chunkTRTKIQUBjs.SidebarContent; exports.SidebarFooter = _chunkTRTKIQUBjs.SidebarFooter; exports.SidebarGroup = _chunkTRTKIQUBjs.SidebarGroup; exports.SidebarGroupAction = _chunkTRTKIQUBjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkTRTKIQUBjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkTRTKIQUBjs.SidebarGroupLabel; exports.SidebarHeader = _chunkTRTKIQUBjs.SidebarHeader; exports.SidebarInput = _chunkTRTKIQUBjs.SidebarInput; exports.SidebarInset = _chunkTRTKIQUBjs.SidebarInset; exports.SidebarMenu = _chunkTRTKIQUBjs.SidebarMenu; exports.SidebarMenuAction = _chunkTRTKIQUBjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkTRTKIQUBjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkTRTKIQUBjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkTRTKIQUBjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkTRTKIQUBjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkTRTKIQUBjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkTRTKIQUBjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkTRTKIQUBjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkTRTKIQUBjs.SidebarProvider; exports.SidebarRail = _chunkTRTKIQUBjs.SidebarRail; exports.SidebarSeparator = _chunkTRTKIQUBjs.SidebarSeparator; exports.SidebarTrigger = _chunkTRTKIQUBjs.SidebarTrigger; exports.Skeleton = _chunkTRTKIQUBjs.Skeleton; exports.Slider = _chunkTRTKIQUBjs.Slider; exports.Switch = _chunkTRTKIQUBjs.Switch; exports.Table = _chunkTRTKIQUBjs.Table; exports.TableBody = _chunkTRTKIQUBjs.TableBody; exports.TableCaption = _chunkTRTKIQUBjs.TableCaption; exports.TableCell = _chunkTRTKIQUBjs.TableCell; exports.TableCellAvatar = _chunkTRTKIQUBjs.TableCellAvatar; exports.TableFooter = _chunkTRTKIQUBjs.TableFooter; exports.TableHead = _chunkTRTKIQUBjs.TableHead; exports.TableHeader = _chunkTRTKIQUBjs.TableHeader; exports.TableRow = _chunkTRTKIQUBjs.TableRow; exports.Tabs = _chunkTRTKIQUBjs.Tabs; exports.TabsContainer = _chunkTRTKIQUBjs.TabsContainer; exports.TabsContent = _chunkTRTKIQUBjs.TabsContent; exports.TabsList = _chunkTRTKIQUBjs.TabsList; exports.TabsTrigger = _chunkTRTKIQUBjs.TabsTrigger; exports.Textarea = _chunkTRTKIQUBjs.Textarea; exports.Toaster = _chunkTRTKIQUBjs.Toaster; exports.Toggle = _chunkTRTKIQUBjs.Toggle; exports.TokenStatusIndicator = _chunkTRTKIQUBjs.TokenStatusIndicator; exports.Tooltip = _chunkTRTKIQUBjs.Tooltip; exports.TooltipContent = _chunkTRTKIQUBjs.TooltipContent; exports.TooltipProvider = _chunkTRTKIQUBjs.TooltipProvider; exports.TooltipTrigger = _chunkTRTKIQUBjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkTRTKIQUBjs.TotpAuthenticatorList; exports.TotpInput = _chunkTRTKIQUBjs.TotpInput; exports.TotpSetupDialog = _chunkTRTKIQUBjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkTRTKIQUBjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkTRTKIQUBjs.TwoFactorSettings; exports.UserAvatar = _chunkTRTKIQUBjs.UserAvatar; exports.UserAvatarEditor = _chunkTRTKIQUBjs.UserAvatarEditor; exports.UserAvatarList = _chunkTRTKIQUBjs.UserAvatarList; exports.UserContainer = _chunkTRTKIQUBjs.UserContainer; exports.UserContent = _chunkTRTKIQUBjs.UserContent; exports.UserDeleter = _chunkTRTKIQUBjs.UserDeleter; exports.UserEditor = _chunkTRTKIQUBjs.UserEditor; exports.UserIndexContainer = _chunkTRTKIQUBjs.UserIndexContainer; exports.UserIndexDetails = _chunkTRTKIQUBjs.UserIndexDetails; exports.UserListInAdd = _chunkTRTKIQUBjs.UserListInAdd; exports.UserMultiSelect = _chunkTRTKIQUBjs.UserMultiSelect; exports.UserReactivator = _chunkTRTKIQUBjs.UserReactivator; exports.UserResentInvitationEmail = _chunkTRTKIQUBjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkTRTKIQUBjs.UserRoleAdd; exports.UserRolesList = _chunkTRTKIQUBjs.UserRolesList; exports.UserSearchPopover = _chunkTRTKIQUBjs.UserSearchPopover; exports.UserSelector = _chunkTRTKIQUBjs.UserSelector; exports.UserStanadaloneDetails = _chunkTRTKIQUBjs.UserStanadaloneDetails; exports.UsersList = _chunkTRTKIQUBjs.UsersList; exports.UsersListByContentIds = _chunkTRTKIQUBjs.UsersListByContentIds; exports.UsersListContainer = _chunkTRTKIQUBjs.UsersListContainer; exports.WaitlistConfirmation = _chunkTRTKIQUBjs.WaitlistConfirmation; exports.WaitlistForm = _chunkTRTKIQUBjs.WaitlistForm; exports.WaitlistHeroSection = _chunkTRTKIQUBjs.WaitlistHeroSection; exports.WaitlistList = _chunkTRTKIQUBjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkTRTKIQUBjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkTRTKIQUBjs.WaitlistSuccessState; exports.badgeVariants = _chunkTRTKIQUBjs.badgeVariants; exports.buttonVariants = _chunkTRTKIQUBjs.buttonVariants; exports.cellComponent = _chunkTRTKIQUBjs.cellComponent; exports.cellDate = _chunkTRTKIQUBjs.cellDate; exports.cellDateTime = _chunkTRTKIQUBjs.cellDateTime; exports.cellId = _chunkTRTKIQUBjs.cellId; exports.cellLink = _chunkTRTKIQUBjs.cellLink; exports.cellUrl = _chunkTRTKIQUBjs.cellUrl; exports.createMentionInlineContentSpec = _chunkTRTKIQUBjs.createMentionInlineContentSpec; exports.errorToast = _chunkTRTKIQUBjs.errorToast; exports.generateNotificationData = _chunkTRTKIQUBjs.generateNotificationData; exports.getIcon = _chunkXAWKRNYMjs.getIcon; exports.getIconByModule = _chunkXAWKRNYMjs.getIconByModule; exports.getIconByModuleName = _chunkXAWKRNYMjs.getIconByModuleName; exports.getInitials = _chunkXAWKRNYMjs.getInitials; exports.mentionDataAttrs = _chunkTRTKIQUBjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkTRTKIQUBjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkTRTKIQUBjs.parseFiscalData; exports.tabsListVariants = _chunkTRTKIQUBjs.tabsListVariants; exports.toggleVariants = _chunkTRTKIQUBjs.toggleVariants; exports.triggerAssociationToast = _chunkTRTKIQUBjs.triggerAssociationToast; exports.useCarousel = _chunkTRTKIQUBjs.useCarousel; exports.useComboboxAnchor = _chunkTRTKIQUBjs.useComboboxAnchor; exports.useDebounce = _chunkTRTKIQUBjs.useDebounce2; exports.useEditorDialog = _chunkTRTKIQUBjs.useEditorDialog; exports.useFileUpload = _chunkTRTKIQUBjs.useFileUpload; exports.useMentionInsert = _chunkTRTKIQUBjs.useMentionInsert; exports.useSidebar = _chunkTRTKIQUBjs.useSidebar;
|
|
938
|
+
exports.AcceptInvitation = _chunkLIZ5C76Wjs.AcceptInvitation; exports.Accordion = _chunkLIZ5C76Wjs.Accordion; exports.AccordionContent = _chunkLIZ5C76Wjs.AccordionContent; exports.AccordionItem = _chunkLIZ5C76Wjs.AccordionItem; exports.AccordionTrigger = _chunkLIZ5C76Wjs.AccordionTrigger; exports.ActivateAccount = _chunkLIZ5C76Wjs.ActivateAccount; exports.AddUserToRole = _chunkLIZ5C76Wjs.AddUserToRole; exports.AdminCompanyContainer = _chunkLIZ5C76Wjs.AdminCompanyContainer; exports.AdminUsersList = _chunkLIZ5C76Wjs.AdminUsersList; exports.Alert = _chunkLIZ5C76Wjs.Alert; exports.AlertAction = _chunkLIZ5C76Wjs.AlertAction; exports.AlertDescription = _chunkLIZ5C76Wjs.AlertDescription; exports.AlertDialog = _chunkLIZ5C76Wjs.AlertDialog; exports.AlertDialogAction = _chunkLIZ5C76Wjs.AlertDialogAction; exports.AlertDialogCancel = _chunkLIZ5C76Wjs.AlertDialogCancel; exports.AlertDialogContent = _chunkLIZ5C76Wjs.AlertDialogContent; exports.AlertDialogDescription = _chunkLIZ5C76Wjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkLIZ5C76Wjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkLIZ5C76Wjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkLIZ5C76Wjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkLIZ5C76Wjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkLIZ5C76Wjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkLIZ5C76Wjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkLIZ5C76Wjs.AlertDialogTrigger; exports.AlertTitle = _chunkLIZ5C76Wjs.AlertTitle; exports.AllUsersListContainer = _chunkLIZ5C76Wjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkLIZ5C76Wjs.AllowedUsersDetails; exports.AssistantContainer = _chunkLIZ5C76Wjs.AssistantContainer; exports.AttributeElement = _chunkLIZ5C76Wjs.AttributeElement; exports.AuthContainer = _chunkLIZ5C76Wjs.AuthContainer; exports.Avatar = _chunkLIZ5C76Wjs.Avatar; exports.AvatarBadge = _chunkLIZ5C76Wjs.AvatarBadge; exports.AvatarFallback = _chunkLIZ5C76Wjs.AvatarFallback; exports.AvatarGroup = _chunkLIZ5C76Wjs.AvatarGroup; exports.AvatarGroupCount = _chunkLIZ5C76Wjs.AvatarGroupCount; exports.AvatarImage = _chunkLIZ5C76Wjs.AvatarImage; exports.BackupCodesDialog = _chunkLIZ5C76Wjs.BackupCodesDialog; exports.Badge = _chunkLIZ5C76Wjs.Badge; exports.BlockNoteEditorContainer = _chunkLIZ5C76Wjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkLIZ5C76Wjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkLIZ5C76Wjs.BlockNoteEditorMentionSuggestionMenu; exports.Board = _chunkLIZ5C76Wjs.KanbanBoard; exports.Breadcrumb = _chunkLIZ5C76Wjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkLIZ5C76Wjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkLIZ5C76Wjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkLIZ5C76Wjs.BreadcrumbLink; exports.BreadcrumbList = _chunkLIZ5C76Wjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkLIZ5C76Wjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkLIZ5C76Wjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkLIZ5C76Wjs.BreadcrumbSeparator; exports.Button = _chunkLIZ5C76Wjs.Button; exports.Calendar = _chunkLIZ5C76Wjs.Calendar; exports.CalendarDayButton = _chunkLIZ5C76Wjs.CalendarDayButton; exports.Card = _chunkLIZ5C76Wjs.Card; exports.CardAction = _chunkLIZ5C76Wjs.CardAction; exports.CardContent = _chunkLIZ5C76Wjs.CardContent; exports.CardDescription = _chunkLIZ5C76Wjs.CardDescription; exports.CardFooter = _chunkLIZ5C76Wjs.CardFooter; exports.CardHeader = _chunkLIZ5C76Wjs.CardHeader; exports.CardTitle = _chunkLIZ5C76Wjs.CardTitle; exports.Carousel = _chunkLIZ5C76Wjs.Carousel; exports.CarouselContent = _chunkLIZ5C76Wjs.CarouselContent; exports.CarouselItem = _chunkLIZ5C76Wjs.CarouselItem; exports.CarouselNext = _chunkLIZ5C76Wjs.CarouselNext; exports.CarouselPrevious = _chunkLIZ5C76Wjs.CarouselPrevious; exports.ChartContainer = _chunkLIZ5C76Wjs.ChartContainer; exports.ChartLegend = _chunkLIZ5C76Wjs.ChartLegend; exports.ChartLegendContent = _chunkLIZ5C76Wjs.ChartLegendContent; exports.ChartStyle = _chunkLIZ5C76Wjs.ChartStyle; exports.ChartTooltip = _chunkLIZ5C76Wjs.ChartTooltip; exports.ChartTooltipContent = _chunkLIZ5C76Wjs.ChartTooltipContent; exports.Checkbox = _chunkLIZ5C76Wjs.Checkbox; exports.Collapsible = _chunkLIZ5C76Wjs.Collapsible; exports.CollapsibleContent = _chunkLIZ5C76Wjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkLIZ5C76Wjs.CollapsibleTrigger; exports.Column = _chunkLIZ5C76Wjs.KanbanColumn; exports.ColumnHandle = _chunkLIZ5C76Wjs.KanbanColumnHandle; exports.Combobox = _chunkLIZ5C76Wjs.Combobox; exports.ComboboxChip = _chunkLIZ5C76Wjs.ComboboxChip; exports.ComboboxChips = _chunkLIZ5C76Wjs.ComboboxChips; exports.ComboboxChipsInput = _chunkLIZ5C76Wjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkLIZ5C76Wjs.ComboboxCollection; exports.ComboboxContent = _chunkLIZ5C76Wjs.ComboboxContent; exports.ComboboxEmpty = _chunkLIZ5C76Wjs.ComboboxEmpty; exports.ComboboxGroup = _chunkLIZ5C76Wjs.ComboboxGroup; exports.ComboboxInput = _chunkLIZ5C76Wjs.ComboboxInput; exports.ComboboxItem = _chunkLIZ5C76Wjs.ComboboxItem; exports.ComboboxLabel = _chunkLIZ5C76Wjs.ComboboxLabel; exports.ComboboxList = _chunkLIZ5C76Wjs.ComboboxList; exports.ComboboxSeparator = _chunkLIZ5C76Wjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkLIZ5C76Wjs.ComboboxTrigger; exports.ComboboxValue = _chunkLIZ5C76Wjs.ComboboxValue; exports.Command = _chunkLIZ5C76Wjs.Command; exports.CommandDialog = _chunkLIZ5C76Wjs.CommandDialog; exports.CommandEmpty = _chunkLIZ5C76Wjs.CommandEmpty; exports.CommandGroup = _chunkLIZ5C76Wjs.CommandGroup; exports.CommandInput = _chunkLIZ5C76Wjs.CommandInput; exports.CommandItem = _chunkLIZ5C76Wjs.CommandItem; exports.CommandList = _chunkLIZ5C76Wjs.CommandList; exports.CommandSeparator = _chunkLIZ5C76Wjs.CommandSeparator; exports.CommandShortcut = _chunkLIZ5C76Wjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkLIZ5C76Wjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkLIZ5C76Wjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkLIZ5C76Wjs.CommonDeleter; exports.CommonEditorButtons = _chunkLIZ5C76Wjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkLIZ5C76Wjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkLIZ5C76Wjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkLIZ5C76Wjs.CommonEditorTrigger; exports.CompaniesList = _chunkLIZ5C76Wjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkLIZ5C76Wjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkLIZ5C76Wjs.CompanyContainer; exports.CompanyContent = _chunkLIZ5C76Wjs.CompanyContent; exports.CompanyDeleter = _chunkLIZ5C76Wjs.CompanyDeleter; exports.CompanyDetails = _chunkLIZ5C76Wjs.CompanyDetails; exports.CompanyEditor = _chunkLIZ5C76Wjs.CompanyEditor; exports.CompanyUsersList = _chunkLIZ5C76Wjs.CompanyUsersList; exports.ContentListGrid = _chunkLIZ5C76Wjs.ContentListGrid; exports.ContentListTable = _chunkLIZ5C76Wjs.ContentListTable; exports.ContentTableSearch = _chunkLIZ5C76Wjs.ContentTableSearch; exports.ContentTitle = _chunkLIZ5C76Wjs.ContentTitle; exports.ContentsList = _chunkLIZ5C76Wjs.ContentsList; exports.ContentsListById = _chunkLIZ5C76Wjs.ContentsListById; exports.ContextMenu = _chunkLIZ5C76Wjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkLIZ5C76Wjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkLIZ5C76Wjs.ContextMenuContent; exports.ContextMenuGroup = _chunkLIZ5C76Wjs.ContextMenuGroup; exports.ContextMenuItem = _chunkLIZ5C76Wjs.ContextMenuItem; exports.ContextMenuLabel = _chunkLIZ5C76Wjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkLIZ5C76Wjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkLIZ5C76Wjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkLIZ5C76Wjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkLIZ5C76Wjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkLIZ5C76Wjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkLIZ5C76Wjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkLIZ5C76Wjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkLIZ5C76Wjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkLIZ5C76Wjs.ContextMenuTrigger; exports.ContributorsList = _chunkLIZ5C76Wjs.ContributorsList; exports.Cookies = _chunkLIZ5C76Wjs.Cookies; exports.DatePickerPopover = _chunkLIZ5C76Wjs.DatePickerPopover; exports.DateRangeSelector = _chunkLIZ5C76Wjs.DateRangeSelector; exports.Dialog = _chunkLIZ5C76Wjs.Dialog; exports.DialogClose = _chunkLIZ5C76Wjs.DialogClose; exports.DialogContent = _chunkLIZ5C76Wjs.DialogContent; exports.DialogDescription = _chunkLIZ5C76Wjs.DialogDescription; exports.DialogFooter = _chunkLIZ5C76Wjs.DialogFooter; exports.DialogHeader = _chunkLIZ5C76Wjs.DialogHeader; exports.DialogOverlay = _chunkLIZ5C76Wjs.DialogOverlay; exports.DialogPortal = _chunkLIZ5C76Wjs.DialogPortal; exports.DialogTitle = _chunkLIZ5C76Wjs.DialogTitle; exports.DialogTrigger = _chunkLIZ5C76Wjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkLIZ5C76Wjs.DisableTwoFactorDialog; exports.Drawer = _chunkLIZ5C76Wjs.Drawer; exports.DrawerClose = _chunkLIZ5C76Wjs.DrawerClose; exports.DrawerContent = _chunkLIZ5C76Wjs.DrawerContent; exports.DrawerDescription = _chunkLIZ5C76Wjs.DrawerDescription; exports.DrawerFooter = _chunkLIZ5C76Wjs.DrawerFooter; exports.DrawerHeader = _chunkLIZ5C76Wjs.DrawerHeader; exports.DrawerOverlay = _chunkLIZ5C76Wjs.DrawerOverlay; exports.DrawerPortal = _chunkLIZ5C76Wjs.DrawerPortal; exports.DrawerTitle = _chunkLIZ5C76Wjs.DrawerTitle; exports.DrawerTrigger = _chunkLIZ5C76Wjs.DrawerTrigger; exports.DropdownMenu = _chunkLIZ5C76Wjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkLIZ5C76Wjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkLIZ5C76Wjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkLIZ5C76Wjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkLIZ5C76Wjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkLIZ5C76Wjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkLIZ5C76Wjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkLIZ5C76Wjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkLIZ5C76Wjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkLIZ5C76Wjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkLIZ5C76Wjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkLIZ5C76Wjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkLIZ5C76Wjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkLIZ5C76Wjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkLIZ5C76Wjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkLIZ5C76Wjs.EditableAvatar; exports.EditorSheet = _chunkLIZ5C76Wjs.EditorSheet; exports.EntityAvatar = _chunkLIZ5C76Wjs.EntityAvatar; exports.EntityMultiSelector = _chunkLIZ5C76Wjs.EntityMultiSelector; exports.ErrorDetails = _chunkLIZ5C76Wjs.ErrorDetails; exports.Field = _chunkLIZ5C76Wjs.Field; exports.FieldContent = _chunkLIZ5C76Wjs.FieldContent; exports.FieldDescription = _chunkLIZ5C76Wjs.FieldDescription; exports.FieldError = _chunkLIZ5C76Wjs.FieldError; exports.FieldGroup = _chunkLIZ5C76Wjs.FieldGroup; exports.FieldLabel = _chunkLIZ5C76Wjs.FieldLabel; exports.FieldLegend = _chunkLIZ5C76Wjs.FieldLegend; exports.FieldSeparator = _chunkLIZ5C76Wjs.FieldSeparator; exports.FieldSet = _chunkLIZ5C76Wjs.FieldSet; exports.FieldTitle = _chunkLIZ5C76Wjs.FieldTitle; exports.FileInput = _chunkLIZ5C76Wjs.FileInput; exports.FileUploader = _chunkLIZ5C76Wjs.FileUploader; exports.FileUploaderContent = _chunkLIZ5C76Wjs.FileUploaderContent; exports.FileUploaderItem = _chunkLIZ5C76Wjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkLIZ5C76Wjs.FiscalDataDisplay; exports.ForgotPassword = _chunkLIZ5C76Wjs.ForgotPassword; exports.Form = _chunkLIZ5C76Wjs.Form; exports.FormBlockNote = _chunkLIZ5C76Wjs.FormBlockNote; exports.FormCheckbox = _chunkLIZ5C76Wjs.FormCheckbox; exports.FormDate = _chunkLIZ5C76Wjs.FormDate; exports.FormDateTime = _chunkLIZ5C76Wjs.FormDateTime; exports.FormFeatures = _chunkLIZ5C76Wjs.FormFeatures; exports.FormFieldWrapper = _chunkLIZ5C76Wjs.FormFieldWrapper; exports.FormInput = _chunkLIZ5C76Wjs.FormInput; exports.FormPassword = _chunkLIZ5C76Wjs.FormPassword; exports.FormPlaceAutocomplete = _chunkLIZ5C76Wjs.FormPlaceAutocomplete; exports.FormRoles = _chunkLIZ5C76Wjs.FormRoles; exports.FormSelect = _chunkLIZ5C76Wjs.FormSelect; exports.FormSlider = _chunkLIZ5C76Wjs.FormSlider; exports.FormSwitch = _chunkLIZ5C76Wjs.FormSwitch; exports.FormTextarea = _chunkLIZ5C76Wjs.FormTextarea; exports.GdprConsentCheckbox = _chunkLIZ5C76Wjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkLIZ5C76Wjs.GdprConsentSection; exports.Header = _chunkLIZ5C76Wjs.Header; exports.HoverCard = _chunkLIZ5C76Wjs.HoverCard; exports.HoverCardContent = _chunkLIZ5C76Wjs.HoverCardContent; exports.HoverCardTrigger = _chunkLIZ5C76Wjs.HoverCardTrigger; exports.HowToCommand = _chunkLIZ5C76Wjs.HowToCommand; exports.HowToCommandViewer = _chunkLIZ5C76Wjs.HowToCommandViewer; exports.HowToContainer = _chunkLIZ5C76Wjs.HowToContainer; exports.HowToContent = _chunkLIZ5C76Wjs.HowToContent; exports.HowToDeleter = _chunkLIZ5C76Wjs.HowToDeleter; exports.HowToDetails = _chunkLIZ5C76Wjs.HowToDetails; exports.HowToEditor = _chunkLIZ5C76Wjs.HowToEditor; exports.HowToList = _chunkLIZ5C76Wjs.HowToList; exports.HowToListContainer = _chunkLIZ5C76Wjs.HowToListContainer; exports.HowToMultiSelector = _chunkLIZ5C76Wjs.HowToMultiSelector; exports.HowToSelector = _chunkLIZ5C76Wjs.HowToSelector; exports.Input = _chunkLIZ5C76Wjs.Input; exports.InputGroup = _chunkLIZ5C76Wjs.InputGroup; exports.InputGroupAddon = _chunkLIZ5C76Wjs.InputGroupAddon; exports.InputGroupButton = _chunkLIZ5C76Wjs.InputGroupButton; exports.InputGroupInput = _chunkLIZ5C76Wjs.InputGroupInput; exports.InputGroupText = _chunkLIZ5C76Wjs.InputGroupText; exports.InputGroupTextarea = _chunkLIZ5C76Wjs.InputGroupTextarea; exports.InputOTP = _chunkLIZ5C76Wjs.InputOTP; exports.InputOTPGroup = _chunkLIZ5C76Wjs.InputOTPGroup; exports.InputOTPSeparator = _chunkLIZ5C76Wjs.InputOTPSeparator; exports.InputOTPSlot = _chunkLIZ5C76Wjs.InputOTPSlot; exports.ItalianFiscalData = _chunkLIZ5C76Wjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkLIZ5C76Wjs.ItalianFiscalDataDisplay; exports.Item = _chunkLIZ5C76Wjs.KanbanItem; exports.ItemHandle = _chunkLIZ5C76Wjs.KanbanItemHandle; exports.Kanban = _chunkLIZ5C76Wjs.KanbanRoot; exports.KanbanBoard = _chunkLIZ5C76Wjs.KanbanBoard; exports.KanbanColumn = _chunkLIZ5C76Wjs.KanbanColumn; exports.KanbanColumnHandle = _chunkLIZ5C76Wjs.KanbanColumnHandle; exports.KanbanItem = _chunkLIZ5C76Wjs.KanbanItem; exports.KanbanItemHandle = _chunkLIZ5C76Wjs.KanbanItemHandle; exports.KanbanOverlay = _chunkLIZ5C76Wjs.KanbanOverlay; exports.Label = _chunkLIZ5C76Wjs.Label; exports.LandingComponent = _chunkLIZ5C76Wjs.LandingComponent; exports.Link = _chunkLIZ5C76Wjs.Link; exports.Login = _chunkLIZ5C76Wjs.Login; exports.Logout = _chunkLIZ5C76Wjs.Logout; exports.MessageItem = _chunkLIZ5C76Wjs.MessageItem; exports.MessageList = _chunkLIZ5C76Wjs.MessageList; exports.MessageSourcesPanel = _chunkLIZ5C76Wjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkLIZ5C76Wjs.ModeToggleSwitch; exports.MultiSelect = _chunkLIZ5C76Wjs.MultiSelect; exports.MultipleSelector = _chunkLIZ5C76Wjs.MultipleSelector; exports.NavigationMenu = _chunkLIZ5C76Wjs.NavigationMenu; exports.NavigationMenuContent = _chunkLIZ5C76Wjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkLIZ5C76Wjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkLIZ5C76Wjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkLIZ5C76Wjs.NavigationMenuLink; exports.NavigationMenuList = _chunkLIZ5C76Wjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkLIZ5C76Wjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkLIZ5C76Wjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkLIZ5C76Wjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkLIZ5C76Wjs.NotificationMenuItem; exports.NotificationModal = _chunkLIZ5C76Wjs.NotificationModal; exports.NotificationToast = _chunkLIZ5C76Wjs.NotificationToast; exports.NotificationsList = _chunkLIZ5C76Wjs.NotificationsList; exports.NotificationsListContainer = _chunkLIZ5C76Wjs.NotificationsListContainer; exports.OAuthClientCard = _chunkLIZ5C76Wjs.OAuthClientCard; exports.OAuthClientDetail = _chunkLIZ5C76Wjs.OAuthClientDetail; exports.OAuthClientForm = _chunkLIZ5C76Wjs.OAuthClientForm; exports.OAuthClientList = _chunkLIZ5C76Wjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkLIZ5C76Wjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkLIZ5C76Wjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkLIZ5C76Wjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkLIZ5C76Wjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkLIZ5C76Wjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkLIZ5C76Wjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkLIZ5C76Wjs.OAuthScopeSelector; exports.OnboardingCard = _chunkLIZ5C76Wjs.OnboardingCard; exports.Overlay = _chunkLIZ5C76Wjs.KanbanOverlay; exports.PageContainer = _chunkLIZ5C76Wjs.PageContainer; exports.PageContainerContentDetails = _chunkLIZ5C76Wjs.PageContainerContentDetails; exports.PageContentContainer = _chunkLIZ5C76Wjs.PageContentContainer; exports.PageSection = _chunkLIZ5C76Wjs.PageSection; exports.PasskeyButton = _chunkLIZ5C76Wjs.PasskeyButton; exports.PasskeyList = _chunkLIZ5C76Wjs.PasskeyList; exports.PasskeySetupDialog = _chunkLIZ5C76Wjs.PasskeySetupDialog; exports.PasswordInput = _chunkLIZ5C76Wjs.PasswordInput; exports.Popover = _chunkLIZ5C76Wjs.Popover; exports.PopoverContent = _chunkLIZ5C76Wjs.PopoverContent; exports.PopoverDescription = _chunkLIZ5C76Wjs.PopoverDescription; exports.PopoverHeader = _chunkLIZ5C76Wjs.PopoverHeader; exports.PopoverTitle = _chunkLIZ5C76Wjs.PopoverTitle; exports.PopoverTrigger = _chunkLIZ5C76Wjs.PopoverTrigger; exports.Progress = _chunkLIZ5C76Wjs.Progress; exports.ProgressIndicator = _chunkLIZ5C76Wjs.ProgressIndicator; exports.ProgressLabel = _chunkLIZ5C76Wjs.ProgressLabel; exports.ProgressTrack = _chunkLIZ5C76Wjs.ProgressTrack; exports.ProgressValue = _chunkLIZ5C76Wjs.ProgressValue; exports.PushNotificationProvider = _chunkLIZ5C76Wjs.PushNotificationProvider; exports.RadioGroup = _chunkLIZ5C76Wjs.RadioGroup; exports.RadioGroupItem = _chunkLIZ5C76Wjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkLIZ5C76Wjs.RbacByRoleContainer; exports.RbacContainer = _chunkLIZ5C76Wjs.RbacContainer; exports.RbacPermissionCell = _chunkLIZ5C76Wjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkLIZ5C76Wjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkLIZ5C76Wjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkLIZ5C76Wjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkLIZ5C76Wjs.ReferralCodeCapture; exports.ReferralDialog = _chunkLIZ5C76Wjs.ReferralDialog; exports.ReferralWidget = _chunkLIZ5C76Wjs.ReferralWidget; exports.RefreshUser = _chunkLIZ5C76Wjs.RefreshUser; exports.RelevantContentsList = _chunkLIZ5C76Wjs.RelevantContentsList; exports.RelevantUsersList = _chunkLIZ5C76Wjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkLIZ5C76Wjs.RemoveUserFromRole; exports.ResetPassword = _chunkLIZ5C76Wjs.ResetPassword; exports.ResizableHandle = _chunkLIZ5C76Wjs.ResizableHandle; exports.ResizablePanel = _chunkLIZ5C76Wjs.ResizablePanel; exports.ResizablePanelGroup = _chunkLIZ5C76Wjs.ResizablePanelGroup; exports.RoleContainer = _chunkLIZ5C76Wjs.RoleContainer; exports.RoleDetails = _chunkLIZ5C76Wjs.RoleDetails; exports.RoleUsersList = _chunkLIZ5C76Wjs.RoleUsersList; exports.RolesList = _chunkLIZ5C76Wjs.RolesList; exports.Root = _chunkLIZ5C76Wjs.KanbanRoot; exports.RoundPageContainer = _chunkLIZ5C76Wjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkLIZ5C76Wjs.RoundPageContainerTitle; exports.ScrollArea = _chunkLIZ5C76Wjs.ScrollArea; exports.ScrollBar = _chunkLIZ5C76Wjs.ScrollBar; exports.SecurityContainer = _chunkLIZ5C76Wjs.SecurityContainer; exports.Select = _chunkLIZ5C76Wjs.Select; exports.SelectContent = _chunkLIZ5C76Wjs.SelectContent; exports.SelectGroup = _chunkLIZ5C76Wjs.SelectGroup; exports.SelectItem = _chunkLIZ5C76Wjs.SelectItem; exports.SelectLabel = _chunkLIZ5C76Wjs.SelectLabel; exports.SelectScrollDownButton = _chunkLIZ5C76Wjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkLIZ5C76Wjs.SelectScrollUpButton; exports.SelectSeparator = _chunkLIZ5C76Wjs.SelectSeparator; exports.SelectTrigger = _chunkLIZ5C76Wjs.SelectTrigger; exports.SelectValue = _chunkLIZ5C76Wjs.SelectValue; exports.Separator = _chunkLIZ5C76Wjs.Separator; exports.Sheet = _chunkLIZ5C76Wjs.Sheet; exports.SheetClose = _chunkLIZ5C76Wjs.SheetClose; exports.SheetContent = _chunkLIZ5C76Wjs.SheetContent; exports.SheetDescription = _chunkLIZ5C76Wjs.SheetDescription; exports.SheetFooter = _chunkLIZ5C76Wjs.SheetFooter; exports.SheetHeader = _chunkLIZ5C76Wjs.SheetHeader; exports.SheetTitle = _chunkLIZ5C76Wjs.SheetTitle; exports.SheetTrigger = _chunkLIZ5C76Wjs.SheetTrigger; exports.Sidebar = _chunkLIZ5C76Wjs.Sidebar; exports.SidebarContent = _chunkLIZ5C76Wjs.SidebarContent; exports.SidebarFooter = _chunkLIZ5C76Wjs.SidebarFooter; exports.SidebarGroup = _chunkLIZ5C76Wjs.SidebarGroup; exports.SidebarGroupAction = _chunkLIZ5C76Wjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkLIZ5C76Wjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkLIZ5C76Wjs.SidebarGroupLabel; exports.SidebarHeader = _chunkLIZ5C76Wjs.SidebarHeader; exports.SidebarInput = _chunkLIZ5C76Wjs.SidebarInput; exports.SidebarInset = _chunkLIZ5C76Wjs.SidebarInset; exports.SidebarMenu = _chunkLIZ5C76Wjs.SidebarMenu; exports.SidebarMenuAction = _chunkLIZ5C76Wjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkLIZ5C76Wjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkLIZ5C76Wjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkLIZ5C76Wjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkLIZ5C76Wjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkLIZ5C76Wjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkLIZ5C76Wjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkLIZ5C76Wjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkLIZ5C76Wjs.SidebarProvider; exports.SidebarRail = _chunkLIZ5C76Wjs.SidebarRail; exports.SidebarSeparator = _chunkLIZ5C76Wjs.SidebarSeparator; exports.SidebarTrigger = _chunkLIZ5C76Wjs.SidebarTrigger; exports.Skeleton = _chunkLIZ5C76Wjs.Skeleton; exports.Slider = _chunkLIZ5C76Wjs.Slider; exports.Switch = _chunkLIZ5C76Wjs.Switch; exports.Table = _chunkLIZ5C76Wjs.Table; exports.TableBody = _chunkLIZ5C76Wjs.TableBody; exports.TableCaption = _chunkLIZ5C76Wjs.TableCaption; exports.TableCell = _chunkLIZ5C76Wjs.TableCell; exports.TableCellAvatar = _chunkLIZ5C76Wjs.TableCellAvatar; exports.TableFooter = _chunkLIZ5C76Wjs.TableFooter; exports.TableHead = _chunkLIZ5C76Wjs.TableHead; exports.TableHeader = _chunkLIZ5C76Wjs.TableHeader; exports.TableRow = _chunkLIZ5C76Wjs.TableRow; exports.Tabs = _chunkLIZ5C76Wjs.Tabs; exports.TabsContainer = _chunkLIZ5C76Wjs.TabsContainer; exports.TabsContent = _chunkLIZ5C76Wjs.TabsContent; exports.TabsList = _chunkLIZ5C76Wjs.TabsList; exports.TabsTrigger = _chunkLIZ5C76Wjs.TabsTrigger; exports.Textarea = _chunkLIZ5C76Wjs.Textarea; exports.Toaster = _chunkLIZ5C76Wjs.Toaster; exports.Toggle = _chunkLIZ5C76Wjs.Toggle; exports.TokenStatusIndicator = _chunkLIZ5C76Wjs.TokenStatusIndicator; exports.Tooltip = _chunkLIZ5C76Wjs.Tooltip; exports.TooltipContent = _chunkLIZ5C76Wjs.TooltipContent; exports.TooltipProvider = _chunkLIZ5C76Wjs.TooltipProvider; exports.TooltipTrigger = _chunkLIZ5C76Wjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkLIZ5C76Wjs.TotpAuthenticatorList; exports.TotpInput = _chunkLIZ5C76Wjs.TotpInput; exports.TotpSetupDialog = _chunkLIZ5C76Wjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkLIZ5C76Wjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkLIZ5C76Wjs.TwoFactorSettings; exports.UserAvatar = _chunkLIZ5C76Wjs.UserAvatar; exports.UserAvatarEditor = _chunkLIZ5C76Wjs.UserAvatarEditor; exports.UserAvatarList = _chunkLIZ5C76Wjs.UserAvatarList; exports.UserContainer = _chunkLIZ5C76Wjs.UserContainer; exports.UserContent = _chunkLIZ5C76Wjs.UserContent; exports.UserDeleter = _chunkLIZ5C76Wjs.UserDeleter; exports.UserEditor = _chunkLIZ5C76Wjs.UserEditor; exports.UserIndexContainer = _chunkLIZ5C76Wjs.UserIndexContainer; exports.UserIndexDetails = _chunkLIZ5C76Wjs.UserIndexDetails; exports.UserListInAdd = _chunkLIZ5C76Wjs.UserListInAdd; exports.UserMultiSelect = _chunkLIZ5C76Wjs.UserMultiSelect; exports.UserReactivator = _chunkLIZ5C76Wjs.UserReactivator; exports.UserResentInvitationEmail = _chunkLIZ5C76Wjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkLIZ5C76Wjs.UserRoleAdd; exports.UserRolesList = _chunkLIZ5C76Wjs.UserRolesList; exports.UserSearchPopover = _chunkLIZ5C76Wjs.UserSearchPopover; exports.UserSelector = _chunkLIZ5C76Wjs.UserSelector; exports.UserStanadaloneDetails = _chunkLIZ5C76Wjs.UserStanadaloneDetails; exports.UsersList = _chunkLIZ5C76Wjs.UsersList; exports.UsersListByContentIds = _chunkLIZ5C76Wjs.UsersListByContentIds; exports.UsersListContainer = _chunkLIZ5C76Wjs.UsersListContainer; exports.WaitlistConfirmation = _chunkLIZ5C76Wjs.WaitlistConfirmation; exports.WaitlistForm = _chunkLIZ5C76Wjs.WaitlistForm; exports.WaitlistHeroSection = _chunkLIZ5C76Wjs.WaitlistHeroSection; exports.WaitlistList = _chunkLIZ5C76Wjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkLIZ5C76Wjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkLIZ5C76Wjs.WaitlistSuccessState; exports.badgeVariants = _chunkLIZ5C76Wjs.badgeVariants; exports.buttonVariants = _chunkLIZ5C76Wjs.buttonVariants; exports.cellComponent = _chunkLIZ5C76Wjs.cellComponent; exports.cellDate = _chunkLIZ5C76Wjs.cellDate; exports.cellDateTime = _chunkLIZ5C76Wjs.cellDateTime; exports.cellId = _chunkLIZ5C76Wjs.cellId; exports.cellLink = _chunkLIZ5C76Wjs.cellLink; exports.cellUrl = _chunkLIZ5C76Wjs.cellUrl; exports.createMentionInlineContentSpec = _chunkLIZ5C76Wjs.createMentionInlineContentSpec; exports.errorToast = _chunkLIZ5C76Wjs.errorToast; exports.generateNotificationData = _chunkLIZ5C76Wjs.generateNotificationData; exports.getIcon = _chunkXAWKRNYMjs.getIcon; exports.getIconByModule = _chunkXAWKRNYMjs.getIconByModule; exports.getIconByModuleName = _chunkXAWKRNYMjs.getIconByModuleName; exports.getInitials = _chunkXAWKRNYMjs.getInitials; exports.mentionDataAttrs = _chunkLIZ5C76Wjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkLIZ5C76Wjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkLIZ5C76Wjs.parseFiscalData; exports.tabsListVariants = _chunkLIZ5C76Wjs.tabsListVariants; exports.toggleVariants = _chunkLIZ5C76Wjs.toggleVariants; exports.triggerAssociationToast = _chunkLIZ5C76Wjs.triggerAssociationToast; exports.useCarousel = _chunkLIZ5C76Wjs.useCarousel; exports.useComboboxAnchor = _chunkLIZ5C76Wjs.useComboboxAnchor; exports.useDebounce = _chunkLIZ5C76Wjs.useDebounce2; exports.useEditorDialog = _chunkLIZ5C76Wjs.useEditorDialog; exports.useFileUpload = _chunkLIZ5C76Wjs.useFileUpload; exports.useMentionInsert = _chunkLIZ5C76Wjs.useMentionInsert; exports.useSidebar = _chunkLIZ5C76Wjs.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 _chunkLIZ5C76Wjs = require('../chunk-LIZ5C76W.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 = _chunkLIZ5C76Wjs.AssistantProvider; exports.CommonProvider = _chunkLIZ5C76Wjs.CommonProvider; exports.CompanyProvider = _chunkLIZ5C76Wjs.CompanyProvider; exports.CurrentUserProvider = _chunkLIZ5C76Wjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkLIZ5C76Wjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkLIZ5C76Wjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkLIZ5C76Wjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkLIZ5C76Wjs.HowToProvider; exports.NotificationContextProvider = _chunkLIZ5C76Wjs.NotificationContextProvider; exports.OnboardingProvider = _chunkLIZ5C76Wjs.OnboardingProvider; exports.RbacProvider = _chunkLIZ5C76Wjs.RbacProvider; exports.RoleProvider = _chunkLIZ5C76Wjs.RoleProvider; exports.SharedProvider = _chunkLIZ5C76Wjs.SharedProvider; exports.SocketContext = _chunkLIZ5C76Wjs.SocketContext; exports.SocketProvider = _chunkLIZ5C76Wjs.SocketProvider; exports.UserProvider = _chunkLIZ5C76Wjs.UserProvider; exports.recentPagesAtom = _chunkLIZ5C76Wjs.recentPagesAtom; exports.useAssistantContext = _chunkLIZ5C76Wjs.useAssistantContext; exports.useCommonContext = _chunkLIZ5C76Wjs.useCommonContext; exports.useCompanyContext = _chunkLIZ5C76Wjs.useCompanyContext; exports.useCurrentUserContext = _chunkLIZ5C76Wjs.useCurrentUserContext; exports.useHeaderChildren = _chunkLIZ5C76Wjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkLIZ5C76Wjs.useHeaderLeftContent; exports.useHowToContext = _chunkLIZ5C76Wjs.useHowToContext; exports.useNotificationContext = _chunkLIZ5C76Wjs.useNotificationContext; exports.useOnboarding = _chunkLIZ5C76Wjs.useOnboarding; exports.useRbacContext = _chunkLIZ5C76Wjs.useRbacContext; exports.useRoleContext = _chunkLIZ5C76Wjs.useRoleContext; exports.useSharedContext = _chunkLIZ5C76Wjs.useSharedContext; exports.useSocketContext = _chunkLIZ5C76Wjs.useSocketContext; exports.useUserContext = _chunkLIZ5C76Wjs.useUserContext;
|
|
75
75
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { describe, expect, it } from "vitest";
|
|
2
|
-
import { computeLayeredLayout } from "../computeLayeredLayout";
|
|
2
|
+
import { computeLayeredLayout, fitLayeredLayoutToAspectRatio } from "../computeLayeredLayout";
|
|
3
3
|
import type { D3Link, D3Node } from "../../interfaces";
|
|
4
4
|
|
|
5
5
|
function makeNode(id: string, name = id, extra: Partial<D3Node> = {}): D3Node {
|
|
@@ -150,3 +150,137 @@ describe("computeLayeredLayout", () => {
|
|
|
150
150
|
expect(result!.size).toBe(2);
|
|
151
151
|
});
|
|
152
152
|
});
|
|
153
|
+
|
|
154
|
+
function boundingBoxAspect(positions: Map<string, { x: number; y: number }>): number {
|
|
155
|
+
if (positions.size <= 1) return NaN;
|
|
156
|
+
let xMin = Infinity;
|
|
157
|
+
let xMax = -Infinity;
|
|
158
|
+
let yMin = Infinity;
|
|
159
|
+
let yMax = -Infinity;
|
|
160
|
+
positions.forEach((p) => {
|
|
161
|
+
xMin = Math.min(xMin, p.x);
|
|
162
|
+
xMax = Math.max(xMax, p.x);
|
|
163
|
+
yMin = Math.min(yMin, p.y);
|
|
164
|
+
yMax = Math.max(yMax, p.y);
|
|
165
|
+
});
|
|
166
|
+
const w = xMax - xMin;
|
|
167
|
+
const h = yMax - yMin;
|
|
168
|
+
if (h === 0) return Infinity;
|
|
169
|
+
return w / h;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
describe("fitLayeredLayoutToAspectRatio", () => {
|
|
173
|
+
it("returns an empty map for an empty graph", () => {
|
|
174
|
+
const result = fitLayeredLayoutToAspectRatio([], [], {
|
|
175
|
+
minNodeWidth: MIN_WIDTH,
|
|
176
|
+
minNodeHeight: MIN_HEIGHT,
|
|
177
|
+
targetAspectRatio: 1.5,
|
|
178
|
+
});
|
|
179
|
+
expect(result).not.toBeNull();
|
|
180
|
+
expect(result!.size).toBe(0);
|
|
181
|
+
});
|
|
182
|
+
|
|
183
|
+
it("returns a single node at finite coords without crashing", () => {
|
|
184
|
+
const result = fitLayeredLayoutToAspectRatio([makeNode("a")], [], {
|
|
185
|
+
minNodeWidth: MIN_WIDTH,
|
|
186
|
+
minNodeHeight: MIN_HEIGHT,
|
|
187
|
+
targetAspectRatio: 1.5,
|
|
188
|
+
});
|
|
189
|
+
expect(result).not.toBeNull();
|
|
190
|
+
const pos = result!.get("a")!;
|
|
191
|
+
expect(Number.isFinite(pos.x)).toBe(true);
|
|
192
|
+
expect(Number.isFinite(pos.y)).toBe(true);
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
it("nudges aspect ratio toward a wider target than single-pass", () => {
|
|
196
|
+
// A branchy DAG with vertical structure under TB: a -> b1,b2,b3,b4,b5
|
|
197
|
+
// Single-pass TB makes this tall (5 siblings stacked vertically below a).
|
|
198
|
+
const nodes = [makeNode("a"), makeNode("b1"), makeNode("b2"), makeNode("b3"), makeNode("b4"), makeNode("b5")];
|
|
199
|
+
const links = [
|
|
200
|
+
makeLink("a", "b1"),
|
|
201
|
+
makeLink("a", "b2"),
|
|
202
|
+
makeLink("a", "b3"),
|
|
203
|
+
makeLink("a", "b4"),
|
|
204
|
+
makeLink("a", "b5"),
|
|
205
|
+
];
|
|
206
|
+
const baseline = computeLayeredLayout(nodes, links, {
|
|
207
|
+
rankdir: "TB",
|
|
208
|
+
minNodeWidth: MIN_WIDTH,
|
|
209
|
+
minNodeHeight: MIN_HEIGHT,
|
|
210
|
+
});
|
|
211
|
+
const fitted = fitLayeredLayoutToAspectRatio(nodes, links, {
|
|
212
|
+
rankdir: "TB",
|
|
213
|
+
minNodeWidth: MIN_WIDTH,
|
|
214
|
+
minNodeHeight: MIN_HEIGHT,
|
|
215
|
+
targetAspectRatio: 4.0,
|
|
216
|
+
});
|
|
217
|
+
expect(baseline).not.toBeNull();
|
|
218
|
+
expect(fitted).not.toBeNull();
|
|
219
|
+
const baseAspect = boundingBoxAspect(baseline!);
|
|
220
|
+
const fitAspect = boundingBoxAspect(fitted!);
|
|
221
|
+
expect(Math.abs(fitAspect - 4.0)).toBeLessThan(Math.abs(baseAspect - 4.0));
|
|
222
|
+
});
|
|
223
|
+
|
|
224
|
+
it("nudges aspect ratio toward a narrower target than single-pass", () => {
|
|
225
|
+
// A wide LR chain (single rank deep, multi-rank wide); single-pass is
|
|
226
|
+
// very wide. Target 0.5 (taller than wide) should reduce ranksep and
|
|
227
|
+
// increase nodesep — though with no siblings the height grows slowly.
|
|
228
|
+
// We use a graph with one branching point to give the fitter vertical
|
|
229
|
+
// structure to expand into.
|
|
230
|
+
const nodes = [makeNode("a"), makeNode("b"), makeNode("c"), makeNode("d"), makeNode("e")];
|
|
231
|
+
const links = [makeLink("a", "b"), makeLink("a", "c"), makeLink("b", "d"), makeLink("c", "e")];
|
|
232
|
+
const baseline = computeLayeredLayout(nodes, links, {
|
|
233
|
+
rankdir: "LR",
|
|
234
|
+
minNodeWidth: MIN_WIDTH,
|
|
235
|
+
minNodeHeight: MIN_HEIGHT,
|
|
236
|
+
});
|
|
237
|
+
const fitted = fitLayeredLayoutToAspectRatio(nodes, links, {
|
|
238
|
+
rankdir: "LR",
|
|
239
|
+
minNodeWidth: MIN_WIDTH,
|
|
240
|
+
minNodeHeight: MIN_HEIGHT,
|
|
241
|
+
targetAspectRatio: 0.6,
|
|
242
|
+
});
|
|
243
|
+
expect(baseline).not.toBeNull();
|
|
244
|
+
expect(fitted).not.toBeNull();
|
|
245
|
+
const baseAspect = boundingBoxAspect(baseline!);
|
|
246
|
+
const fitAspect = boundingBoxAspect(fitted!);
|
|
247
|
+
expect(Math.abs(fitAspect - 0.6)).toBeLessThan(Math.abs(baseAspect - 0.6));
|
|
248
|
+
});
|
|
249
|
+
|
|
250
|
+
it("skips fitting for single-rank graphs (zero height in LR)", () => {
|
|
251
|
+
// Linear LR chain: all nodes on the same y (single rank tall),
|
|
252
|
+
// bbox height collapses to 0 — fitter should return positions
|
|
253
|
+
// unchanged from single-pass.
|
|
254
|
+
const nodes = [makeNode("a"), makeNode("b"), makeNode("c")];
|
|
255
|
+
const links = [makeLink("a", "b"), makeLink("b", "c")];
|
|
256
|
+
const fitted = fitLayeredLayoutToAspectRatio(nodes, links, {
|
|
257
|
+
rankdir: "LR",
|
|
258
|
+
minNodeWidth: MIN_WIDTH,
|
|
259
|
+
minNodeHeight: MIN_HEIGHT,
|
|
260
|
+
targetAspectRatio: 0.5,
|
|
261
|
+
});
|
|
262
|
+
expect(fitted).not.toBeNull();
|
|
263
|
+
expect(fitted!.size).toBe(3);
|
|
264
|
+
});
|
|
265
|
+
|
|
266
|
+
it("treats invalid targetAspectRatio (zero or NaN) as a no-op fit", () => {
|
|
267
|
+
const nodes = [makeNode("a"), makeNode("b")];
|
|
268
|
+
const links = [makeLink("a", "b")];
|
|
269
|
+
const zero = fitLayeredLayoutToAspectRatio(nodes, links, {
|
|
270
|
+
rankdir: "LR",
|
|
271
|
+
minNodeWidth: MIN_WIDTH,
|
|
272
|
+
minNodeHeight: MIN_HEIGHT,
|
|
273
|
+
targetAspectRatio: 0,
|
|
274
|
+
});
|
|
275
|
+
const nan = fitLayeredLayoutToAspectRatio(nodes, links, {
|
|
276
|
+
rankdir: "LR",
|
|
277
|
+
minNodeWidth: MIN_WIDTH,
|
|
278
|
+
minNodeHeight: MIN_HEIGHT,
|
|
279
|
+
targetAspectRatio: NaN,
|
|
280
|
+
});
|
|
281
|
+
expect(zero).not.toBeNull();
|
|
282
|
+
expect(zero!.size).toBe(2);
|
|
283
|
+
expect(nan).not.toBeNull();
|
|
284
|
+
expect(nan!.size).toBe(2);
|
|
285
|
+
});
|
|
286
|
+
});
|