@carlonicora/nextjs-jsonapi 1.99.0 → 1.100.1
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-OBWSYICZ.mjs} +2 -2
- package/dist/{BlockNoteEditor-LYJUF5N4.js → BlockNoteEditor-Z4YI6XFJ.js} +9 -9
- package/dist/{BlockNoteEditor-LYJUF5N4.js.map → BlockNoteEditor-Z4YI6XFJ.js.map} +1 -1
- package/dist/billing/index.js +299 -299
- package/dist/billing/index.mjs +1 -1
- package/dist/{chunk-CDNVUON3.mjs → chunk-J767HTWG.mjs} +102 -8
- package/dist/chunk-J767HTWG.mjs.map +1 -0
- package/dist/{chunk-TRTKIQUB.js → chunk-JQ6O7OEZ.js} +333 -239
- package/dist/chunk-JQ6O7OEZ.js.map +1 -0
- 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 +47 -11
- package/dist/chunk-CDNVUON3.mjs.map +0 -1
- package/dist/chunk-TRTKIQUB.js.map +0 -1
- /package/dist/{BlockNoteEditor-IBV3KBQM.mjs.map → BlockNoteEditor-OBWSYICZ.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 _chunkJQ6O7OEZjs = require('../chunk-JQ6O7OEZ.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 = _chunkJQ6O7OEZjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkJQ6O7OEZjs.TableGeneratorRegistry; exports.computeLayeredLayout = _chunkJQ6O7OEZjs.computeLayeredLayout; exports.configureClientConfig = _chunkSE5HIHJSjs.configureClientConfig; exports.configureClientJsonApi = _chunkXAWKRNYMjs.configureClientJsonApi; exports.configureI18n = _chunkSE5HIHJSjs.configureI18n; exports.configureJsonApi = _chunkSE5HIHJSjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.fitLayeredLayoutToAspectRatio = _chunkJQ6O7OEZjs.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 = _chunkJQ6O7OEZjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkJQ6O7OEZjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkJQ6O7OEZjs.useContentTableStructure; exports.useCustomD3Graph = _chunkJQ6O7OEZjs.useCustomD3Graph; exports.useDataListRetriever = _chunkJQ6O7OEZjs.useDataListRetriever; exports.useDebounce = _chunkJQ6O7OEZjs.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 = _chunkJQ6O7OEZjs.useJsonApiGet; exports.useJsonApiMutation = _chunkJQ6O7OEZjs.useJsonApiMutation; exports.useNotificationSync = _chunkJQ6O7OEZjs.useNotificationSync; exports.useOAuthClient = _chunkJQ6O7OEZjs.useOAuthClient; exports.useOAuthClients = _chunkJQ6O7OEZjs.useOAuthClients; exports.useOAuthConsent = _chunkJQ6O7OEZjs.useOAuthConsent; exports.usePageTracker = _chunkJQ6O7OEZjs.usePageTracker; exports.usePageUrlGenerator = _chunkJQ6O7OEZjs.usePageUrlGenerator; exports.useRehydration = _chunkJQ6O7OEZjs.useRehydration; exports.useRehydrationList = _chunkJQ6O7OEZjs.useRehydrationList; exports.useRoleTableStructure = _chunkJQ6O7OEZjs.useRoleTableStructure; exports.useSocket = _chunkJQ6O7OEZjs.useSocket; exports.useSubscriptionStatus = _chunkJQ6O7OEZjs.useSubscriptionStatus; exports.useTableGenerator = _chunkJQ6O7OEZjs.useTableGenerator; exports.useUrlRewriter = _chunkJQ6O7OEZjs.useUrlRewriter; exports.useUserSearch = _chunkJQ6O7OEZjs.useUserSearch; exports.useUserTableStructure = _chunkJQ6O7OEZjs.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-J767HTWG.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 _chunkJQ6O7OEZjs = require('../chunk-JQ6O7OEZ.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 = _chunkJQ6O7OEZjs.AcceptInvitation; exports.Accordion = _chunkJQ6O7OEZjs.Accordion; exports.AccordionContent = _chunkJQ6O7OEZjs.AccordionContent; exports.AccordionItem = _chunkJQ6O7OEZjs.AccordionItem; exports.AccordionTrigger = _chunkJQ6O7OEZjs.AccordionTrigger; exports.ActivateAccount = _chunkJQ6O7OEZjs.ActivateAccount; exports.AddUserToRole = _chunkJQ6O7OEZjs.AddUserToRole; exports.AdminCompanyContainer = _chunkJQ6O7OEZjs.AdminCompanyContainer; exports.AdminUsersList = _chunkJQ6O7OEZjs.AdminUsersList; exports.Alert = _chunkJQ6O7OEZjs.Alert; exports.AlertAction = _chunkJQ6O7OEZjs.AlertAction; exports.AlertDescription = _chunkJQ6O7OEZjs.AlertDescription; exports.AlertDialog = _chunkJQ6O7OEZjs.AlertDialog; exports.AlertDialogAction = _chunkJQ6O7OEZjs.AlertDialogAction; exports.AlertDialogCancel = _chunkJQ6O7OEZjs.AlertDialogCancel; exports.AlertDialogContent = _chunkJQ6O7OEZjs.AlertDialogContent; exports.AlertDialogDescription = _chunkJQ6O7OEZjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkJQ6O7OEZjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkJQ6O7OEZjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkJQ6O7OEZjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkJQ6O7OEZjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkJQ6O7OEZjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkJQ6O7OEZjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkJQ6O7OEZjs.AlertDialogTrigger; exports.AlertTitle = _chunkJQ6O7OEZjs.AlertTitle; exports.AllUsersListContainer = _chunkJQ6O7OEZjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkJQ6O7OEZjs.AllowedUsersDetails; exports.AssistantContainer = _chunkJQ6O7OEZjs.AssistantContainer; exports.AttributeElement = _chunkJQ6O7OEZjs.AttributeElement; exports.AuthContainer = _chunkJQ6O7OEZjs.AuthContainer; exports.Avatar = _chunkJQ6O7OEZjs.Avatar; exports.AvatarBadge = _chunkJQ6O7OEZjs.AvatarBadge; exports.AvatarFallback = _chunkJQ6O7OEZjs.AvatarFallback; exports.AvatarGroup = _chunkJQ6O7OEZjs.AvatarGroup; exports.AvatarGroupCount = _chunkJQ6O7OEZjs.AvatarGroupCount; exports.AvatarImage = _chunkJQ6O7OEZjs.AvatarImage; exports.BackupCodesDialog = _chunkJQ6O7OEZjs.BackupCodesDialog; exports.Badge = _chunkJQ6O7OEZjs.Badge; exports.BlockNoteEditorContainer = _chunkJQ6O7OEZjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkJQ6O7OEZjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkJQ6O7OEZjs.BlockNoteEditorMentionSuggestionMenu; exports.Board = _chunkJQ6O7OEZjs.KanbanBoard; exports.Breadcrumb = _chunkJQ6O7OEZjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkJQ6O7OEZjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkJQ6O7OEZjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkJQ6O7OEZjs.BreadcrumbLink; exports.BreadcrumbList = _chunkJQ6O7OEZjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkJQ6O7OEZjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkJQ6O7OEZjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkJQ6O7OEZjs.BreadcrumbSeparator; exports.Button = _chunkJQ6O7OEZjs.Button; exports.Calendar = _chunkJQ6O7OEZjs.Calendar; exports.CalendarDayButton = _chunkJQ6O7OEZjs.CalendarDayButton; exports.Card = _chunkJQ6O7OEZjs.Card; exports.CardAction = _chunkJQ6O7OEZjs.CardAction; exports.CardContent = _chunkJQ6O7OEZjs.CardContent; exports.CardDescription = _chunkJQ6O7OEZjs.CardDescription; exports.CardFooter = _chunkJQ6O7OEZjs.CardFooter; exports.CardHeader = _chunkJQ6O7OEZjs.CardHeader; exports.CardTitle = _chunkJQ6O7OEZjs.CardTitle; exports.Carousel = _chunkJQ6O7OEZjs.Carousel; exports.CarouselContent = _chunkJQ6O7OEZjs.CarouselContent; exports.CarouselItem = _chunkJQ6O7OEZjs.CarouselItem; exports.CarouselNext = _chunkJQ6O7OEZjs.CarouselNext; exports.CarouselPrevious = _chunkJQ6O7OEZjs.CarouselPrevious; exports.ChartContainer = _chunkJQ6O7OEZjs.ChartContainer; exports.ChartLegend = _chunkJQ6O7OEZjs.ChartLegend; exports.ChartLegendContent = _chunkJQ6O7OEZjs.ChartLegendContent; exports.ChartStyle = _chunkJQ6O7OEZjs.ChartStyle; exports.ChartTooltip = _chunkJQ6O7OEZjs.ChartTooltip; exports.ChartTooltipContent = _chunkJQ6O7OEZjs.ChartTooltipContent; exports.Checkbox = _chunkJQ6O7OEZjs.Checkbox; exports.Collapsible = _chunkJQ6O7OEZjs.Collapsible; exports.CollapsibleContent = _chunkJQ6O7OEZjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkJQ6O7OEZjs.CollapsibleTrigger; exports.Column = _chunkJQ6O7OEZjs.KanbanColumn; exports.ColumnHandle = _chunkJQ6O7OEZjs.KanbanColumnHandle; exports.Combobox = _chunkJQ6O7OEZjs.Combobox; exports.ComboboxChip = _chunkJQ6O7OEZjs.ComboboxChip; exports.ComboboxChips = _chunkJQ6O7OEZjs.ComboboxChips; exports.ComboboxChipsInput = _chunkJQ6O7OEZjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkJQ6O7OEZjs.ComboboxCollection; exports.ComboboxContent = _chunkJQ6O7OEZjs.ComboboxContent; exports.ComboboxEmpty = _chunkJQ6O7OEZjs.ComboboxEmpty; exports.ComboboxGroup = _chunkJQ6O7OEZjs.ComboboxGroup; exports.ComboboxInput = _chunkJQ6O7OEZjs.ComboboxInput; exports.ComboboxItem = _chunkJQ6O7OEZjs.ComboboxItem; exports.ComboboxLabel = _chunkJQ6O7OEZjs.ComboboxLabel; exports.ComboboxList = _chunkJQ6O7OEZjs.ComboboxList; exports.ComboboxSeparator = _chunkJQ6O7OEZjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkJQ6O7OEZjs.ComboboxTrigger; exports.ComboboxValue = _chunkJQ6O7OEZjs.ComboboxValue; exports.Command = _chunkJQ6O7OEZjs.Command; exports.CommandDialog = _chunkJQ6O7OEZjs.CommandDialog; exports.CommandEmpty = _chunkJQ6O7OEZjs.CommandEmpty; exports.CommandGroup = _chunkJQ6O7OEZjs.CommandGroup; exports.CommandInput = _chunkJQ6O7OEZjs.CommandInput; exports.CommandItem = _chunkJQ6O7OEZjs.CommandItem; exports.CommandList = _chunkJQ6O7OEZjs.CommandList; exports.CommandSeparator = _chunkJQ6O7OEZjs.CommandSeparator; exports.CommandShortcut = _chunkJQ6O7OEZjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkJQ6O7OEZjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkJQ6O7OEZjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkJQ6O7OEZjs.CommonDeleter; exports.CommonEditorButtons = _chunkJQ6O7OEZjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkJQ6O7OEZjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkJQ6O7OEZjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkJQ6O7OEZjs.CommonEditorTrigger; exports.CompaniesList = _chunkJQ6O7OEZjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkJQ6O7OEZjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkJQ6O7OEZjs.CompanyContainer; exports.CompanyContent = _chunkJQ6O7OEZjs.CompanyContent; exports.CompanyDeleter = _chunkJQ6O7OEZjs.CompanyDeleter; exports.CompanyDetails = _chunkJQ6O7OEZjs.CompanyDetails; exports.CompanyEditor = _chunkJQ6O7OEZjs.CompanyEditor; exports.CompanyUsersList = _chunkJQ6O7OEZjs.CompanyUsersList; exports.ContentListGrid = _chunkJQ6O7OEZjs.ContentListGrid; exports.ContentListTable = _chunkJQ6O7OEZjs.ContentListTable; exports.ContentTableSearch = _chunkJQ6O7OEZjs.ContentTableSearch; exports.ContentTitle = _chunkJQ6O7OEZjs.ContentTitle; exports.ContentsList = _chunkJQ6O7OEZjs.ContentsList; exports.ContentsListById = _chunkJQ6O7OEZjs.ContentsListById; exports.ContextMenu = _chunkJQ6O7OEZjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkJQ6O7OEZjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkJQ6O7OEZjs.ContextMenuContent; exports.ContextMenuGroup = _chunkJQ6O7OEZjs.ContextMenuGroup; exports.ContextMenuItem = _chunkJQ6O7OEZjs.ContextMenuItem; exports.ContextMenuLabel = _chunkJQ6O7OEZjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkJQ6O7OEZjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkJQ6O7OEZjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkJQ6O7OEZjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkJQ6O7OEZjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkJQ6O7OEZjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkJQ6O7OEZjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkJQ6O7OEZjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkJQ6O7OEZjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkJQ6O7OEZjs.ContextMenuTrigger; exports.ContributorsList = _chunkJQ6O7OEZjs.ContributorsList; exports.Cookies = _chunkJQ6O7OEZjs.Cookies; exports.DatePickerPopover = _chunkJQ6O7OEZjs.DatePickerPopover; exports.DateRangeSelector = _chunkJQ6O7OEZjs.DateRangeSelector; exports.Dialog = _chunkJQ6O7OEZjs.Dialog; exports.DialogClose = _chunkJQ6O7OEZjs.DialogClose; exports.DialogContent = _chunkJQ6O7OEZjs.DialogContent; exports.DialogDescription = _chunkJQ6O7OEZjs.DialogDescription; exports.DialogFooter = _chunkJQ6O7OEZjs.DialogFooter; exports.DialogHeader = _chunkJQ6O7OEZjs.DialogHeader; exports.DialogOverlay = _chunkJQ6O7OEZjs.DialogOverlay; exports.DialogPortal = _chunkJQ6O7OEZjs.DialogPortal; exports.DialogTitle = _chunkJQ6O7OEZjs.DialogTitle; exports.DialogTrigger = _chunkJQ6O7OEZjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkJQ6O7OEZjs.DisableTwoFactorDialog; exports.Drawer = _chunkJQ6O7OEZjs.Drawer; exports.DrawerClose = _chunkJQ6O7OEZjs.DrawerClose; exports.DrawerContent = _chunkJQ6O7OEZjs.DrawerContent; exports.DrawerDescription = _chunkJQ6O7OEZjs.DrawerDescription; exports.DrawerFooter = _chunkJQ6O7OEZjs.DrawerFooter; exports.DrawerHeader = _chunkJQ6O7OEZjs.DrawerHeader; exports.DrawerOverlay = _chunkJQ6O7OEZjs.DrawerOverlay; exports.DrawerPortal = _chunkJQ6O7OEZjs.DrawerPortal; exports.DrawerTitle = _chunkJQ6O7OEZjs.DrawerTitle; exports.DrawerTrigger = _chunkJQ6O7OEZjs.DrawerTrigger; exports.DropdownMenu = _chunkJQ6O7OEZjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkJQ6O7OEZjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkJQ6O7OEZjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkJQ6O7OEZjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkJQ6O7OEZjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkJQ6O7OEZjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkJQ6O7OEZjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkJQ6O7OEZjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkJQ6O7OEZjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkJQ6O7OEZjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkJQ6O7OEZjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkJQ6O7OEZjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkJQ6O7OEZjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkJQ6O7OEZjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkJQ6O7OEZjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkJQ6O7OEZjs.EditableAvatar; exports.EditorSheet = _chunkJQ6O7OEZjs.EditorSheet; exports.EntityAvatar = _chunkJQ6O7OEZjs.EntityAvatar; exports.EntityMultiSelector = _chunkJQ6O7OEZjs.EntityMultiSelector; exports.ErrorDetails = _chunkJQ6O7OEZjs.ErrorDetails; exports.Field = _chunkJQ6O7OEZjs.Field; exports.FieldContent = _chunkJQ6O7OEZjs.FieldContent; exports.FieldDescription = _chunkJQ6O7OEZjs.FieldDescription; exports.FieldError = _chunkJQ6O7OEZjs.FieldError; exports.FieldGroup = _chunkJQ6O7OEZjs.FieldGroup; exports.FieldLabel = _chunkJQ6O7OEZjs.FieldLabel; exports.FieldLegend = _chunkJQ6O7OEZjs.FieldLegend; exports.FieldSeparator = _chunkJQ6O7OEZjs.FieldSeparator; exports.FieldSet = _chunkJQ6O7OEZjs.FieldSet; exports.FieldTitle = _chunkJQ6O7OEZjs.FieldTitle; exports.FileInput = _chunkJQ6O7OEZjs.FileInput; exports.FileUploader = _chunkJQ6O7OEZjs.FileUploader; exports.FileUploaderContent = _chunkJQ6O7OEZjs.FileUploaderContent; exports.FileUploaderItem = _chunkJQ6O7OEZjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkJQ6O7OEZjs.FiscalDataDisplay; exports.ForgotPassword = _chunkJQ6O7OEZjs.ForgotPassword; exports.Form = _chunkJQ6O7OEZjs.Form; exports.FormBlockNote = _chunkJQ6O7OEZjs.FormBlockNote; exports.FormCheckbox = _chunkJQ6O7OEZjs.FormCheckbox; exports.FormDate = _chunkJQ6O7OEZjs.FormDate; exports.FormDateTime = _chunkJQ6O7OEZjs.FormDateTime; exports.FormFeatures = _chunkJQ6O7OEZjs.FormFeatures; exports.FormFieldWrapper = _chunkJQ6O7OEZjs.FormFieldWrapper; exports.FormInput = _chunkJQ6O7OEZjs.FormInput; exports.FormPassword = _chunkJQ6O7OEZjs.FormPassword; exports.FormPlaceAutocomplete = _chunkJQ6O7OEZjs.FormPlaceAutocomplete; exports.FormRoles = _chunkJQ6O7OEZjs.FormRoles; exports.FormSelect = _chunkJQ6O7OEZjs.FormSelect; exports.FormSlider = _chunkJQ6O7OEZjs.FormSlider; exports.FormSwitch = _chunkJQ6O7OEZjs.FormSwitch; exports.FormTextarea = _chunkJQ6O7OEZjs.FormTextarea; exports.GdprConsentCheckbox = _chunkJQ6O7OEZjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkJQ6O7OEZjs.GdprConsentSection; exports.Header = _chunkJQ6O7OEZjs.Header; exports.HoverCard = _chunkJQ6O7OEZjs.HoverCard; exports.HoverCardContent = _chunkJQ6O7OEZjs.HoverCardContent; exports.HoverCardTrigger = _chunkJQ6O7OEZjs.HoverCardTrigger; exports.HowToCommand = _chunkJQ6O7OEZjs.HowToCommand; exports.HowToCommandViewer = _chunkJQ6O7OEZjs.HowToCommandViewer; exports.HowToContainer = _chunkJQ6O7OEZjs.HowToContainer; exports.HowToContent = _chunkJQ6O7OEZjs.HowToContent; exports.HowToDeleter = _chunkJQ6O7OEZjs.HowToDeleter; exports.HowToDetails = _chunkJQ6O7OEZjs.HowToDetails; exports.HowToEditor = _chunkJQ6O7OEZjs.HowToEditor; exports.HowToList = _chunkJQ6O7OEZjs.HowToList; exports.HowToListContainer = _chunkJQ6O7OEZjs.HowToListContainer; exports.HowToMultiSelector = _chunkJQ6O7OEZjs.HowToMultiSelector; exports.HowToSelector = _chunkJQ6O7OEZjs.HowToSelector; exports.Input = _chunkJQ6O7OEZjs.Input; exports.InputGroup = _chunkJQ6O7OEZjs.InputGroup; exports.InputGroupAddon = _chunkJQ6O7OEZjs.InputGroupAddon; exports.InputGroupButton = _chunkJQ6O7OEZjs.InputGroupButton; exports.InputGroupInput = _chunkJQ6O7OEZjs.InputGroupInput; exports.InputGroupText = _chunkJQ6O7OEZjs.InputGroupText; exports.InputGroupTextarea = _chunkJQ6O7OEZjs.InputGroupTextarea; exports.InputOTP = _chunkJQ6O7OEZjs.InputOTP; exports.InputOTPGroup = _chunkJQ6O7OEZjs.InputOTPGroup; exports.InputOTPSeparator = _chunkJQ6O7OEZjs.InputOTPSeparator; exports.InputOTPSlot = _chunkJQ6O7OEZjs.InputOTPSlot; exports.ItalianFiscalData = _chunkJQ6O7OEZjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkJQ6O7OEZjs.ItalianFiscalDataDisplay; exports.Item = _chunkJQ6O7OEZjs.KanbanItem; exports.ItemHandle = _chunkJQ6O7OEZjs.KanbanItemHandle; exports.Kanban = _chunkJQ6O7OEZjs.KanbanRoot; exports.KanbanBoard = _chunkJQ6O7OEZjs.KanbanBoard; exports.KanbanColumn = _chunkJQ6O7OEZjs.KanbanColumn; exports.KanbanColumnHandle = _chunkJQ6O7OEZjs.KanbanColumnHandle; exports.KanbanItem = _chunkJQ6O7OEZjs.KanbanItem; exports.KanbanItemHandle = _chunkJQ6O7OEZjs.KanbanItemHandle; exports.KanbanOverlay = _chunkJQ6O7OEZjs.KanbanOverlay; exports.Label = _chunkJQ6O7OEZjs.Label; exports.LandingComponent = _chunkJQ6O7OEZjs.LandingComponent; exports.Link = _chunkJQ6O7OEZjs.Link; exports.Login = _chunkJQ6O7OEZjs.Login; exports.Logout = _chunkJQ6O7OEZjs.Logout; exports.MessageItem = _chunkJQ6O7OEZjs.MessageItem; exports.MessageList = _chunkJQ6O7OEZjs.MessageList; exports.MessageSourcesPanel = _chunkJQ6O7OEZjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkJQ6O7OEZjs.ModeToggleSwitch; exports.MultiSelect = _chunkJQ6O7OEZjs.MultiSelect; exports.MultipleSelector = _chunkJQ6O7OEZjs.MultipleSelector; exports.NavigationMenu = _chunkJQ6O7OEZjs.NavigationMenu; exports.NavigationMenuContent = _chunkJQ6O7OEZjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkJQ6O7OEZjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkJQ6O7OEZjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkJQ6O7OEZjs.NavigationMenuLink; exports.NavigationMenuList = _chunkJQ6O7OEZjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkJQ6O7OEZjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkJQ6O7OEZjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkJQ6O7OEZjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkJQ6O7OEZjs.NotificationMenuItem; exports.NotificationModal = _chunkJQ6O7OEZjs.NotificationModal; exports.NotificationToast = _chunkJQ6O7OEZjs.NotificationToast; exports.NotificationsList = _chunkJQ6O7OEZjs.NotificationsList; exports.NotificationsListContainer = _chunkJQ6O7OEZjs.NotificationsListContainer; exports.OAuthClientCard = _chunkJQ6O7OEZjs.OAuthClientCard; exports.OAuthClientDetail = _chunkJQ6O7OEZjs.OAuthClientDetail; exports.OAuthClientForm = _chunkJQ6O7OEZjs.OAuthClientForm; exports.OAuthClientList = _chunkJQ6O7OEZjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkJQ6O7OEZjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkJQ6O7OEZjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkJQ6O7OEZjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkJQ6O7OEZjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkJQ6O7OEZjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkJQ6O7OEZjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkJQ6O7OEZjs.OAuthScopeSelector; exports.OnboardingCard = _chunkJQ6O7OEZjs.OnboardingCard; exports.Overlay = _chunkJQ6O7OEZjs.KanbanOverlay; exports.PageContainer = _chunkJQ6O7OEZjs.PageContainer; exports.PageContainerContentDetails = _chunkJQ6O7OEZjs.PageContainerContentDetails; exports.PageContentContainer = _chunkJQ6O7OEZjs.PageContentContainer; exports.PageSection = _chunkJQ6O7OEZjs.PageSection; exports.PasskeyButton = _chunkJQ6O7OEZjs.PasskeyButton; exports.PasskeyList = _chunkJQ6O7OEZjs.PasskeyList; exports.PasskeySetupDialog = _chunkJQ6O7OEZjs.PasskeySetupDialog; exports.PasswordInput = _chunkJQ6O7OEZjs.PasswordInput; exports.Popover = _chunkJQ6O7OEZjs.Popover; exports.PopoverContent = _chunkJQ6O7OEZjs.PopoverContent; exports.PopoverDescription = _chunkJQ6O7OEZjs.PopoverDescription; exports.PopoverHeader = _chunkJQ6O7OEZjs.PopoverHeader; exports.PopoverTitle = _chunkJQ6O7OEZjs.PopoverTitle; exports.PopoverTrigger = _chunkJQ6O7OEZjs.PopoverTrigger; exports.Progress = _chunkJQ6O7OEZjs.Progress; exports.ProgressIndicator = _chunkJQ6O7OEZjs.ProgressIndicator; exports.ProgressLabel = _chunkJQ6O7OEZjs.ProgressLabel; exports.ProgressTrack = _chunkJQ6O7OEZjs.ProgressTrack; exports.ProgressValue = _chunkJQ6O7OEZjs.ProgressValue; exports.PushNotificationProvider = _chunkJQ6O7OEZjs.PushNotificationProvider; exports.RadioGroup = _chunkJQ6O7OEZjs.RadioGroup; exports.RadioGroupItem = _chunkJQ6O7OEZjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkJQ6O7OEZjs.RbacByRoleContainer; exports.RbacContainer = _chunkJQ6O7OEZjs.RbacContainer; exports.RbacPermissionCell = _chunkJQ6O7OEZjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkJQ6O7OEZjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkJQ6O7OEZjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkJQ6O7OEZjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkJQ6O7OEZjs.ReferralCodeCapture; exports.ReferralDialog = _chunkJQ6O7OEZjs.ReferralDialog; exports.ReferralWidget = _chunkJQ6O7OEZjs.ReferralWidget; exports.RefreshUser = _chunkJQ6O7OEZjs.RefreshUser; exports.RelevantContentsList = _chunkJQ6O7OEZjs.RelevantContentsList; exports.RelevantUsersList = _chunkJQ6O7OEZjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkJQ6O7OEZjs.RemoveUserFromRole; exports.ResetPassword = _chunkJQ6O7OEZjs.ResetPassword; exports.ResizableHandle = _chunkJQ6O7OEZjs.ResizableHandle; exports.ResizablePanel = _chunkJQ6O7OEZjs.ResizablePanel; exports.ResizablePanelGroup = _chunkJQ6O7OEZjs.ResizablePanelGroup; exports.RoleContainer = _chunkJQ6O7OEZjs.RoleContainer; exports.RoleDetails = _chunkJQ6O7OEZjs.RoleDetails; exports.RoleUsersList = _chunkJQ6O7OEZjs.RoleUsersList; exports.RolesList = _chunkJQ6O7OEZjs.RolesList; exports.Root = _chunkJQ6O7OEZjs.KanbanRoot; exports.RoundPageContainer = _chunkJQ6O7OEZjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkJQ6O7OEZjs.RoundPageContainerTitle; exports.ScrollArea = _chunkJQ6O7OEZjs.ScrollArea; exports.ScrollBar = _chunkJQ6O7OEZjs.ScrollBar; exports.SecurityContainer = _chunkJQ6O7OEZjs.SecurityContainer; exports.Select = _chunkJQ6O7OEZjs.Select; exports.SelectContent = _chunkJQ6O7OEZjs.SelectContent; exports.SelectGroup = _chunkJQ6O7OEZjs.SelectGroup; exports.SelectItem = _chunkJQ6O7OEZjs.SelectItem; exports.SelectLabel = _chunkJQ6O7OEZjs.SelectLabel; exports.SelectScrollDownButton = _chunkJQ6O7OEZjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkJQ6O7OEZjs.SelectScrollUpButton; exports.SelectSeparator = _chunkJQ6O7OEZjs.SelectSeparator; exports.SelectTrigger = _chunkJQ6O7OEZjs.SelectTrigger; exports.SelectValue = _chunkJQ6O7OEZjs.SelectValue; exports.Separator = _chunkJQ6O7OEZjs.Separator; exports.Sheet = _chunkJQ6O7OEZjs.Sheet; exports.SheetClose = _chunkJQ6O7OEZjs.SheetClose; exports.SheetContent = _chunkJQ6O7OEZjs.SheetContent; exports.SheetDescription = _chunkJQ6O7OEZjs.SheetDescription; exports.SheetFooter = _chunkJQ6O7OEZjs.SheetFooter; exports.SheetHeader = _chunkJQ6O7OEZjs.SheetHeader; exports.SheetTitle = _chunkJQ6O7OEZjs.SheetTitle; exports.SheetTrigger = _chunkJQ6O7OEZjs.SheetTrigger; exports.Sidebar = _chunkJQ6O7OEZjs.Sidebar; exports.SidebarContent = _chunkJQ6O7OEZjs.SidebarContent; exports.SidebarFooter = _chunkJQ6O7OEZjs.SidebarFooter; exports.SidebarGroup = _chunkJQ6O7OEZjs.SidebarGroup; exports.SidebarGroupAction = _chunkJQ6O7OEZjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkJQ6O7OEZjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkJQ6O7OEZjs.SidebarGroupLabel; exports.SidebarHeader = _chunkJQ6O7OEZjs.SidebarHeader; exports.SidebarInput = _chunkJQ6O7OEZjs.SidebarInput; exports.SidebarInset = _chunkJQ6O7OEZjs.SidebarInset; exports.SidebarMenu = _chunkJQ6O7OEZjs.SidebarMenu; exports.SidebarMenuAction = _chunkJQ6O7OEZjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkJQ6O7OEZjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkJQ6O7OEZjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkJQ6O7OEZjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkJQ6O7OEZjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkJQ6O7OEZjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkJQ6O7OEZjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkJQ6O7OEZjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkJQ6O7OEZjs.SidebarProvider; exports.SidebarRail = _chunkJQ6O7OEZjs.SidebarRail; exports.SidebarSeparator = _chunkJQ6O7OEZjs.SidebarSeparator; exports.SidebarTrigger = _chunkJQ6O7OEZjs.SidebarTrigger; exports.Skeleton = _chunkJQ6O7OEZjs.Skeleton; exports.Slider = _chunkJQ6O7OEZjs.Slider; exports.Switch = _chunkJQ6O7OEZjs.Switch; exports.Table = _chunkJQ6O7OEZjs.Table; exports.TableBody = _chunkJQ6O7OEZjs.TableBody; exports.TableCaption = _chunkJQ6O7OEZjs.TableCaption; exports.TableCell = _chunkJQ6O7OEZjs.TableCell; exports.TableCellAvatar = _chunkJQ6O7OEZjs.TableCellAvatar; exports.TableFooter = _chunkJQ6O7OEZjs.TableFooter; exports.TableHead = _chunkJQ6O7OEZjs.TableHead; exports.TableHeader = _chunkJQ6O7OEZjs.TableHeader; exports.TableRow = _chunkJQ6O7OEZjs.TableRow; exports.Tabs = _chunkJQ6O7OEZjs.Tabs; exports.TabsContainer = _chunkJQ6O7OEZjs.TabsContainer; exports.TabsContent = _chunkJQ6O7OEZjs.TabsContent; exports.TabsList = _chunkJQ6O7OEZjs.TabsList; exports.TabsTrigger = _chunkJQ6O7OEZjs.TabsTrigger; exports.Textarea = _chunkJQ6O7OEZjs.Textarea; exports.Toaster = _chunkJQ6O7OEZjs.Toaster; exports.Toggle = _chunkJQ6O7OEZjs.Toggle; exports.TokenStatusIndicator = _chunkJQ6O7OEZjs.TokenStatusIndicator; exports.Tooltip = _chunkJQ6O7OEZjs.Tooltip; exports.TooltipContent = _chunkJQ6O7OEZjs.TooltipContent; exports.TooltipProvider = _chunkJQ6O7OEZjs.TooltipProvider; exports.TooltipTrigger = _chunkJQ6O7OEZjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkJQ6O7OEZjs.TotpAuthenticatorList; exports.TotpInput = _chunkJQ6O7OEZjs.TotpInput; exports.TotpSetupDialog = _chunkJQ6O7OEZjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkJQ6O7OEZjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkJQ6O7OEZjs.TwoFactorSettings; exports.UserAvatar = _chunkJQ6O7OEZjs.UserAvatar; exports.UserAvatarEditor = _chunkJQ6O7OEZjs.UserAvatarEditor; exports.UserAvatarList = _chunkJQ6O7OEZjs.UserAvatarList; exports.UserContainer = _chunkJQ6O7OEZjs.UserContainer; exports.UserContent = _chunkJQ6O7OEZjs.UserContent; exports.UserDeleter = _chunkJQ6O7OEZjs.UserDeleter; exports.UserEditor = _chunkJQ6O7OEZjs.UserEditor; exports.UserIndexContainer = _chunkJQ6O7OEZjs.UserIndexContainer; exports.UserIndexDetails = _chunkJQ6O7OEZjs.UserIndexDetails; exports.UserListInAdd = _chunkJQ6O7OEZjs.UserListInAdd; exports.UserMultiSelect = _chunkJQ6O7OEZjs.UserMultiSelect; exports.UserReactivator = _chunkJQ6O7OEZjs.UserReactivator; exports.UserResentInvitationEmail = _chunkJQ6O7OEZjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkJQ6O7OEZjs.UserRoleAdd; exports.UserRolesList = _chunkJQ6O7OEZjs.UserRolesList; exports.UserSearchPopover = _chunkJQ6O7OEZjs.UserSearchPopover; exports.UserSelector = _chunkJQ6O7OEZjs.UserSelector; exports.UserStanadaloneDetails = _chunkJQ6O7OEZjs.UserStanadaloneDetails; exports.UsersList = _chunkJQ6O7OEZjs.UsersList; exports.UsersListByContentIds = _chunkJQ6O7OEZjs.UsersListByContentIds; exports.UsersListContainer = _chunkJQ6O7OEZjs.UsersListContainer; exports.WaitlistConfirmation = _chunkJQ6O7OEZjs.WaitlistConfirmation; exports.WaitlistForm = _chunkJQ6O7OEZjs.WaitlistForm; exports.WaitlistHeroSection = _chunkJQ6O7OEZjs.WaitlistHeroSection; exports.WaitlistList = _chunkJQ6O7OEZjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkJQ6O7OEZjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkJQ6O7OEZjs.WaitlistSuccessState; exports.badgeVariants = _chunkJQ6O7OEZjs.badgeVariants; exports.buttonVariants = _chunkJQ6O7OEZjs.buttonVariants; exports.cellComponent = _chunkJQ6O7OEZjs.cellComponent; exports.cellDate = _chunkJQ6O7OEZjs.cellDate; exports.cellDateTime = _chunkJQ6O7OEZjs.cellDateTime; exports.cellId = _chunkJQ6O7OEZjs.cellId; exports.cellLink = _chunkJQ6O7OEZjs.cellLink; exports.cellUrl = _chunkJQ6O7OEZjs.cellUrl; exports.createMentionInlineContentSpec = _chunkJQ6O7OEZjs.createMentionInlineContentSpec; exports.errorToast = _chunkJQ6O7OEZjs.errorToast; exports.generateNotificationData = _chunkJQ6O7OEZjs.generateNotificationData; exports.getIcon = _chunkXAWKRNYMjs.getIcon; exports.getIconByModule = _chunkXAWKRNYMjs.getIconByModule; exports.getIconByModuleName = _chunkXAWKRNYMjs.getIconByModuleName; exports.getInitials = _chunkXAWKRNYMjs.getInitials; exports.mentionDataAttrs = _chunkJQ6O7OEZjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkJQ6O7OEZjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkJQ6O7OEZjs.parseFiscalData; exports.tabsListVariants = _chunkJQ6O7OEZjs.tabsListVariants; exports.toggleVariants = _chunkJQ6O7OEZjs.toggleVariants; exports.triggerAssociationToast = _chunkJQ6O7OEZjs.triggerAssociationToast; exports.useCarousel = _chunkJQ6O7OEZjs.useCarousel; exports.useComboboxAnchor = _chunkJQ6O7OEZjs.useComboboxAnchor; exports.useDebounce = _chunkJQ6O7OEZjs.useDebounce2; exports.useEditorDialog = _chunkJQ6O7OEZjs.useEditorDialog; exports.useFileUpload = _chunkJQ6O7OEZjs.useFileUpload; exports.useMentionInsert = _chunkJQ6O7OEZjs.useMentionInsert; exports.useSidebar = _chunkJQ6O7OEZjs.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 _chunkJQ6O7OEZjs = require('../chunk-JQ6O7OEZ.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 = _chunkJQ6O7OEZjs.AssistantProvider; exports.CommonProvider = _chunkJQ6O7OEZjs.CommonProvider; exports.CompanyProvider = _chunkJQ6O7OEZjs.CompanyProvider; exports.CurrentUserProvider = _chunkJQ6O7OEZjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkJQ6O7OEZjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkJQ6O7OEZjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkJQ6O7OEZjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkJQ6O7OEZjs.HowToProvider; exports.NotificationContextProvider = _chunkJQ6O7OEZjs.NotificationContextProvider; exports.OnboardingProvider = _chunkJQ6O7OEZjs.OnboardingProvider; exports.RbacProvider = _chunkJQ6O7OEZjs.RbacProvider; exports.RoleProvider = _chunkJQ6O7OEZjs.RoleProvider; exports.SharedProvider = _chunkJQ6O7OEZjs.SharedProvider; exports.SocketContext = _chunkJQ6O7OEZjs.SocketContext; exports.SocketProvider = _chunkJQ6O7OEZjs.SocketProvider; exports.UserProvider = _chunkJQ6O7OEZjs.UserProvider; exports.recentPagesAtom = _chunkJQ6O7OEZjs.recentPagesAtom; exports.useAssistantContext = _chunkJQ6O7OEZjs.useAssistantContext; exports.useCommonContext = _chunkJQ6O7OEZjs.useCommonContext; exports.useCompanyContext = _chunkJQ6O7OEZjs.useCompanyContext; exports.useCurrentUserContext = _chunkJQ6O7OEZjs.useCurrentUserContext; exports.useHeaderChildren = _chunkJQ6O7OEZjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkJQ6O7OEZjs.useHeaderLeftContent; exports.useHowToContext = _chunkJQ6O7OEZjs.useHowToContext; exports.useNotificationContext = _chunkJQ6O7OEZjs.useNotificationContext; exports.useOnboarding = _chunkJQ6O7OEZjs.useOnboarding; exports.useRbacContext = _chunkJQ6O7OEZjs.useRbacContext; exports.useRoleContext = _chunkJQ6O7OEZjs.useRoleContext; exports.useSharedContext = _chunkJQ6O7OEZjs.useSharedContext; exports.useSocketContext = _chunkJQ6O7OEZjs.useSocketContext; exports.useUserContext = _chunkJQ6O7OEZjs.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
|
+
});
|