@carlonicora/nextjs-jsonapi 1.97.2 → 1.99.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-LRJUTHTW.mjs → BlockNoteEditor-IBV3KBQM.mjs} +2 -2
- package/dist/{BlockNoteEditor-OOZGXU6E.js → BlockNoteEditor-LYJUF5N4.js} +9 -9
- package/dist/{BlockNoteEditor-OOZGXU6E.js.map → BlockNoteEditor-LYJUF5N4.js.map} +1 -1
- package/dist/billing/index.js +299 -299
- package/dist/billing/index.mjs +1 -1
- package/dist/{chunk-XYGK26YG.mjs → chunk-CDNVUON3.mjs} +374 -148
- package/dist/chunk-CDNVUON3.mjs.map +1 -0
- package/dist/{chunk-HCOX3PKM.js → chunk-TRTKIQUB.js} +608 -382
- package/dist/chunk-TRTKIQUB.js.map +1 -0
- package/dist/client/index.d.mts +32 -3
- package/dist/client/index.d.ts +32 -3
- 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.d.mts +5 -2
- package/dist/components/index.d.ts +5 -2
- package/dist/components/index.js +2 -2
- package/dist/components/index.mjs +1 -1
- package/dist/{content.fields-hzZvhlBd.d.mts → content.fields-xH3TGvVk.d.mts} +2 -0
- package/dist/{content.fields-hzZvhlBd.d.ts → content.fields-xH3TGvVk.d.ts} +2 -0
- package/dist/contexts/index.js +2 -2
- package/dist/contexts/index.mjs +1 -1
- package/dist/core/index.d.mts +1 -1
- package/dist/core/index.d.ts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -1
- package/src/components/forms/FormDate.tsx +27 -3
- package/src/components/forms/FormDateTime.tsx +40 -8
- package/src/hooks/__tests__/computeLayeredLayout.spec.ts +152 -0
- package/src/hooks/computeLayeredLayout.ts +96 -0
- package/src/hooks/index.ts +6 -0
- package/src/hooks/useCustomD3Graph.tsx +310 -148
- package/src/interfaces/d3.node.interface.ts +2 -0
- package/dist/chunk-HCOX3PKM.js.map +0 -1
- package/dist/chunk-XYGK26YG.mjs.map +0 -1
- /package/dist/{BlockNoteEditor-LRJUTHTW.mjs.map → BlockNoteEditor-IBV3KBQM.mjs.map} +0 -0
package/dist/client/index.d.mts
CHANGED
|
@@ -12,7 +12,7 @@ export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLo
|
|
|
12
12
|
import { ColumnDef } from '@tanstack/react-table';
|
|
13
13
|
import { D as DataListRetriever } from '../useDataListRetriever-BqJSFBck.mjs';
|
|
14
14
|
export { u as useDataListRetriever } from '../useDataListRetriever-BqJSFBck.mjs';
|
|
15
|
-
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-
|
|
15
|
+
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.mjs';
|
|
16
16
|
export { u as useSocket } from '../useSocket-BkxHHujj.mjs';
|
|
17
17
|
import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-o5FLpiN7.mjs';
|
|
18
18
|
import 'lucide-react';
|
|
@@ -363,10 +363,39 @@ declare function usePageUrlGenerator(): (params: {
|
|
|
363
363
|
declare function registerTableGenerator<T, U>(type: string | ModuleWithPermissions, hook: UseTableStructureHook<T, U>): void;
|
|
364
364
|
declare function useTableGenerator<T, U>(type: ModuleWithPermissions, params: UseTableStructureHookParams<T, U>): UseTableStructureHookReturn<T>;
|
|
365
365
|
|
|
366
|
+
type LayeredRankDir = "LR" | "RL" | "TB" | "BT";
|
|
367
|
+
interface LayeredLayoutOptions {
|
|
368
|
+
rankdir?: LayeredRankDir;
|
|
369
|
+
nodesep?: number;
|
|
370
|
+
ranksep?: number;
|
|
371
|
+
minNodeWidth: number;
|
|
372
|
+
minNodeHeight: number;
|
|
373
|
+
}
|
|
374
|
+
interface LayeredLayoutPosition {
|
|
375
|
+
x: number;
|
|
376
|
+
y: number;
|
|
377
|
+
}
|
|
378
|
+
/**
|
|
379
|
+
* Compute a layered DAG layout using dagre. Pure function: no DOM, no React,
|
|
380
|
+
* no d3 globals. Returns a Map of node.id -> { x, y } in graph coordinates.
|
|
381
|
+
*
|
|
382
|
+
* Returns null if dagre.layout throws (e.g. an unexpected cycle). Callers
|
|
383
|
+
* should fall back to their previous layout in that case.
|
|
384
|
+
*/
|
|
385
|
+
declare function computeLayeredLayout(nodes: D3Node[], links: D3Link[], opts: LayeredLayoutOptions): Map<string, LayeredLayoutPosition> | null;
|
|
386
|
+
|
|
366
387
|
/**
|
|
367
388
|
* Custom hook for D3 graph visualization with larger circles and more interactive features
|
|
368
389
|
*/
|
|
369
|
-
declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>,
|
|
390
|
+
declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>, options?: {
|
|
391
|
+
directed?: boolean;
|
|
392
|
+
layout?: "radial" | "layered";
|
|
393
|
+
layered?: {
|
|
394
|
+
rankdir?: LayeredRankDir;
|
|
395
|
+
nodesep?: number;
|
|
396
|
+
ranksep?: number;
|
|
397
|
+
};
|
|
398
|
+
}, loadingNodeIds?: Set<string>, containerKey?: string | number): {
|
|
370
399
|
svgRef: React.RefObject<SVGSVGElement | null>;
|
|
371
400
|
zoomIn: () => void;
|
|
372
401
|
zoomOut: () => void;
|
|
@@ -497,4 +526,4 @@ interface TrialSubscriptionStatus {
|
|
|
497
526
|
}
|
|
498
527
|
declare function useSubscriptionStatus(): TrialSubscriptionStatus;
|
|
499
528
|
|
|
500
|
-
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, 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, 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 };
|
|
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 };
|
package/dist/client/index.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLo
|
|
|
12
12
|
import { ColumnDef } from '@tanstack/react-table';
|
|
13
13
|
import { D as DataListRetriever } from '../useDataListRetriever-BqJSFBck.js';
|
|
14
14
|
export { u as useDataListRetriever } from '../useDataListRetriever-BqJSFBck.js';
|
|
15
|
-
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-
|
|
15
|
+
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.js';
|
|
16
16
|
export { u as useSocket } from '../useSocket-CMDjWFYm.js';
|
|
17
17
|
import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-B6xmfDzK.js';
|
|
18
18
|
import 'lucide-react';
|
|
@@ -363,10 +363,39 @@ declare function usePageUrlGenerator(): (params: {
|
|
|
363
363
|
declare function registerTableGenerator<T, U>(type: string | ModuleWithPermissions, hook: UseTableStructureHook<T, U>): void;
|
|
364
364
|
declare function useTableGenerator<T, U>(type: ModuleWithPermissions, params: UseTableStructureHookParams<T, U>): UseTableStructureHookReturn<T>;
|
|
365
365
|
|
|
366
|
+
type LayeredRankDir = "LR" | "RL" | "TB" | "BT";
|
|
367
|
+
interface LayeredLayoutOptions {
|
|
368
|
+
rankdir?: LayeredRankDir;
|
|
369
|
+
nodesep?: number;
|
|
370
|
+
ranksep?: number;
|
|
371
|
+
minNodeWidth: number;
|
|
372
|
+
minNodeHeight: number;
|
|
373
|
+
}
|
|
374
|
+
interface LayeredLayoutPosition {
|
|
375
|
+
x: number;
|
|
376
|
+
y: number;
|
|
377
|
+
}
|
|
378
|
+
/**
|
|
379
|
+
* Compute a layered DAG layout using dagre. Pure function: no DOM, no React,
|
|
380
|
+
* no d3 globals. Returns a Map of node.id -> { x, y } in graph coordinates.
|
|
381
|
+
*
|
|
382
|
+
* Returns null if dagre.layout throws (e.g. an unexpected cycle). Callers
|
|
383
|
+
* should fall back to their previous layout in that case.
|
|
384
|
+
*/
|
|
385
|
+
declare function computeLayeredLayout(nodes: D3Node[], links: D3Link[], opts: LayeredLayoutOptions): Map<string, LayeredLayoutPosition> | null;
|
|
386
|
+
|
|
366
387
|
/**
|
|
367
388
|
* Custom hook for D3 graph visualization with larger circles and more interactive features
|
|
368
389
|
*/
|
|
369
|
-
declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>,
|
|
390
|
+
declare function useCustomD3Graph(nodes: D3Node[], links: D3Link[], onNodeClick: (nodeId: string) => void, visibleNodeIds?: Set<string>, options?: {
|
|
391
|
+
directed?: boolean;
|
|
392
|
+
layout?: "radial" | "layered";
|
|
393
|
+
layered?: {
|
|
394
|
+
rankdir?: LayeredRankDir;
|
|
395
|
+
nodesep?: number;
|
|
396
|
+
ranksep?: number;
|
|
397
|
+
};
|
|
398
|
+
}, loadingNodeIds?: Set<string>, containerKey?: string | number): {
|
|
370
399
|
svgRef: React.RefObject<SVGSVGElement | null>;
|
|
371
400
|
zoomIn: () => void;
|
|
372
401
|
zoomOut: () => void;
|
|
@@ -497,4 +526,4 @@ interface TrialSubscriptionStatus {
|
|
|
497
526
|
}
|
|
498
527
|
declare function useSubscriptionStatus(): TrialSubscriptionStatus;
|
|
499
528
|
|
|
500
|
-
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, 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, 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 };
|
|
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 };
|
package/dist/client/index.js
CHANGED
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
|
|
30
|
+
var _chunkTRTKIQUBjs = require('../chunk-TRTKIQUB.js');
|
|
30
31
|
|
|
31
32
|
|
|
32
33
|
|
|
@@ -119,5 +120,6 @@ require('../chunk-7QVYU63E.js');
|
|
|
119
120
|
|
|
120
121
|
|
|
121
122
|
|
|
122
|
-
|
|
123
|
+
|
|
124
|
+
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 = _chunkTRTKIQUBjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkTRTKIQUBjs.TableGeneratorRegistry; exports.computeLayeredLayout = _chunkTRTKIQUBjs.computeLayeredLayout; exports.configureClientConfig = _chunkSE5HIHJSjs.configureClientConfig; exports.configureClientJsonApi = _chunkXAWKRNYMjs.configureClientJsonApi; exports.configureI18n = _chunkSE5HIHJSjs.configureI18n; exports.configureJsonApi = _chunkSE5HIHJSjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.getApiUrl = _chunkSE5HIHJSjs.getApiUrl; exports.getAppUrl = _chunkSE5HIHJSjs.getAppUrl; exports.getClientApiUrl = _chunkXAWKRNYMjs.getClientApiUrl; exports.getClientAppUrl = _chunkXAWKRNYMjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunkXAWKRNYMjs.getClientTrackablePages; exports.getI18nLink = _chunkSE5HIHJSjs.getI18nLink; exports.getPublicApiUrl = _chunkSE5HIHJSjs.getPublicApiUrl; exports.getStripePublishableKey = _chunkSE5HIHJSjs.getStripePublishableKey; exports.getTrackablePages = _chunkSE5HIHJSjs.getTrackablePages; exports.registerTableGenerator = _chunkTRTKIQUBjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkTRTKIQUBjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkTRTKIQUBjs.useContentTableStructure; exports.useCustomD3Graph = _chunkTRTKIQUBjs.useCustomD3Graph; exports.useDataListRetriever = _chunkTRTKIQUBjs.useDataListRetriever; exports.useDebounce = _chunkTRTKIQUBjs.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 = _chunkTRTKIQUBjs.useJsonApiGet; exports.useJsonApiMutation = _chunkTRTKIQUBjs.useJsonApiMutation; exports.useNotificationSync = _chunkTRTKIQUBjs.useNotificationSync; exports.useOAuthClient = _chunkTRTKIQUBjs.useOAuthClient; exports.useOAuthClients = _chunkTRTKIQUBjs.useOAuthClients; exports.useOAuthConsent = _chunkTRTKIQUBjs.useOAuthConsent; exports.usePageTracker = _chunkTRTKIQUBjs.usePageTracker; exports.usePageUrlGenerator = _chunkTRTKIQUBjs.usePageUrlGenerator; exports.useRehydration = _chunkTRTKIQUBjs.useRehydration; exports.useRehydrationList = _chunkTRTKIQUBjs.useRehydrationList; exports.useRoleTableStructure = _chunkTRTKIQUBjs.useRoleTableStructure; exports.useSocket = _chunkTRTKIQUBjs.useSocket; exports.useSubscriptionStatus = _chunkTRTKIQUBjs.useSubscriptionStatus; exports.useTableGenerator = _chunkTRTKIQUBjs.useTableGenerator; exports.useUrlRewriter = _chunkTRTKIQUBjs.useUrlRewriter; exports.useUserSearch = _chunkTRTKIQUBjs.useUserSearch; exports.useUserTableStructure = _chunkTRTKIQUBjs.useUserTableStructure;
|
|
123
125
|
//# 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;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;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;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,iyGAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"}
|
package/dist/client/index.mjs
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
import {
|
|
3
3
|
JsonApiProvider,
|
|
4
4
|
TableGeneratorRegistry,
|
|
5
|
+
computeLayeredLayout,
|
|
5
6
|
registerTableGenerator,
|
|
6
7
|
tableGeneratorRegistry,
|
|
7
8
|
useContentTableStructure,
|
|
@@ -25,7 +26,7 @@ import {
|
|
|
25
26
|
useUrlRewriter,
|
|
26
27
|
useUserSearch,
|
|
27
28
|
useUserTableStructure
|
|
28
|
-
} from "../chunk-
|
|
29
|
+
} from "../chunk-CDNVUON3.mjs";
|
|
29
30
|
import {
|
|
30
31
|
configureClientConfig,
|
|
31
32
|
configureI18n,
|
|
@@ -74,6 +75,7 @@ export {
|
|
|
74
75
|
JsonApiContext,
|
|
75
76
|
JsonApiProvider,
|
|
76
77
|
TableGeneratorRegistry,
|
|
78
|
+
computeLayeredLayout,
|
|
77
79
|
configureClientConfig,
|
|
78
80
|
configureClientJsonApi,
|
|
79
81
|
configureI18n,
|
|
@@ -571,7 +571,7 @@ type FormFieldWrapperProps<T extends FieldValues> = {
|
|
|
571
571
|
};
|
|
572
572
|
declare function FormFieldWrapper<T extends FieldValues>({ form, name, label, description, isRequired, orientation, children, testId, }: FormFieldWrapperProps<T>): react_jsx_runtime.JSX.Element;
|
|
573
573
|
|
|
574
|
-
declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
|
|
574
|
+
declare function FormDate({ form, id, name, minDate, onChange, isRequired, defaultMonth, allowEmpty, }: {
|
|
575
575
|
form: any;
|
|
576
576
|
id: string;
|
|
577
577
|
name?: string;
|
|
@@ -579,9 +579,11 @@ declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
|
|
|
579
579
|
minDate?: Date;
|
|
580
580
|
onChange?: (date?: Date) => Promise<void>;
|
|
581
581
|
isRequired?: boolean;
|
|
582
|
+
defaultMonth?: Date;
|
|
583
|
+
allowEmpty?: boolean;
|
|
582
584
|
}): react_jsx_runtime.JSX.Element;
|
|
583
585
|
|
|
584
|
-
declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }: {
|
|
586
|
+
declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, defaultMonth, }: {
|
|
585
587
|
form: any;
|
|
586
588
|
id: string;
|
|
587
589
|
name?: string;
|
|
@@ -589,6 +591,7 @@ declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }
|
|
|
589
591
|
minDate?: Date;
|
|
590
592
|
onChange?: (date?: Date) => Promise<void>;
|
|
591
593
|
allowEmpty?: boolean;
|
|
594
|
+
defaultMonth?: Date;
|
|
592
595
|
}): react_jsx_runtime.JSX.Element;
|
|
593
596
|
|
|
594
597
|
declare function FormInput({ form, id, name, placeholder, type, onBlur, disabled, onKeyDown, autoFocus, onChange, testId, isRequired, }: {
|
|
@@ -571,7 +571,7 @@ type FormFieldWrapperProps<T extends FieldValues> = {
|
|
|
571
571
|
};
|
|
572
572
|
declare function FormFieldWrapper<T extends FieldValues>({ form, name, label, description, isRequired, orientation, children, testId, }: FormFieldWrapperProps<T>): react_jsx_runtime.JSX.Element;
|
|
573
573
|
|
|
574
|
-
declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
|
|
574
|
+
declare function FormDate({ form, id, name, minDate, onChange, isRequired, defaultMonth, allowEmpty, }: {
|
|
575
575
|
form: any;
|
|
576
576
|
id: string;
|
|
577
577
|
name?: string;
|
|
@@ -579,9 +579,11 @@ declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
|
|
|
579
579
|
minDate?: Date;
|
|
580
580
|
onChange?: (date?: Date) => Promise<void>;
|
|
581
581
|
isRequired?: boolean;
|
|
582
|
+
defaultMonth?: Date;
|
|
583
|
+
allowEmpty?: boolean;
|
|
582
584
|
}): react_jsx_runtime.JSX.Element;
|
|
583
585
|
|
|
584
|
-
declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }: {
|
|
586
|
+
declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, defaultMonth, }: {
|
|
585
587
|
form: any;
|
|
586
588
|
id: string;
|
|
587
589
|
name?: string;
|
|
@@ -589,6 +591,7 @@ declare function FormDateTime({ form, id, name, minDate, onChange, allowEmpty, }
|
|
|
589
591
|
minDate?: Date;
|
|
590
592
|
onChange?: (date?: Date) => Promise<void>;
|
|
591
593
|
allowEmpty?: boolean;
|
|
594
|
+
defaultMonth?: Date;
|
|
592
595
|
}): react_jsx_runtime.JSX.Element;
|
|
593
596
|
|
|
594
597
|
declare function FormInput({ form, id, name, placeholder, type, onBlur, disabled, onKeyDown, autoFocus, onChange, testId, isRequired, }: {
|
package/dist/components/index.js
CHANGED
|
@@ -455,7 +455,7 @@
|
|
|
455
455
|
|
|
456
456
|
|
|
457
457
|
|
|
458
|
-
var
|
|
458
|
+
var _chunkTRTKIQUBjs = require('../chunk-TRTKIQUB.js');
|
|
459
459
|
require('../chunk-SE5HIHJS.js');
|
|
460
460
|
|
|
461
461
|
|
|
@@ -935,5 +935,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
935
935
|
|
|
936
936
|
|
|
937
937
|
|
|
938
|
-
exports.AcceptInvitation = _chunkHCOX3PKMjs.AcceptInvitation; exports.Accordion = _chunkHCOX3PKMjs.Accordion; exports.AccordionContent = _chunkHCOX3PKMjs.AccordionContent; exports.AccordionItem = _chunkHCOX3PKMjs.AccordionItem; exports.AccordionTrigger = _chunkHCOX3PKMjs.AccordionTrigger; exports.ActivateAccount = _chunkHCOX3PKMjs.ActivateAccount; exports.AddUserToRole = _chunkHCOX3PKMjs.AddUserToRole; exports.AdminCompanyContainer = _chunkHCOX3PKMjs.AdminCompanyContainer; exports.AdminUsersList = _chunkHCOX3PKMjs.AdminUsersList; exports.Alert = _chunkHCOX3PKMjs.Alert; exports.AlertAction = _chunkHCOX3PKMjs.AlertAction; exports.AlertDescription = _chunkHCOX3PKMjs.AlertDescription; exports.AlertDialog = _chunkHCOX3PKMjs.AlertDialog; exports.AlertDialogAction = _chunkHCOX3PKMjs.AlertDialogAction; exports.AlertDialogCancel = _chunkHCOX3PKMjs.AlertDialogCancel; exports.AlertDialogContent = _chunkHCOX3PKMjs.AlertDialogContent; exports.AlertDialogDescription = _chunkHCOX3PKMjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkHCOX3PKMjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkHCOX3PKMjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkHCOX3PKMjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkHCOX3PKMjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkHCOX3PKMjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkHCOX3PKMjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkHCOX3PKMjs.AlertDialogTrigger; exports.AlertTitle = _chunkHCOX3PKMjs.AlertTitle; exports.AllUsersListContainer = _chunkHCOX3PKMjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkHCOX3PKMjs.AllowedUsersDetails; exports.AssistantContainer = _chunkHCOX3PKMjs.AssistantContainer; exports.AttributeElement = _chunkHCOX3PKMjs.AttributeElement; exports.AuthContainer = _chunkHCOX3PKMjs.AuthContainer; exports.Avatar = _chunkHCOX3PKMjs.Avatar; exports.AvatarBadge = _chunkHCOX3PKMjs.AvatarBadge; exports.AvatarFallback = _chunkHCOX3PKMjs.AvatarFallback; exports.AvatarGroup = _chunkHCOX3PKMjs.AvatarGroup; exports.AvatarGroupCount = _chunkHCOX3PKMjs.AvatarGroupCount; exports.AvatarImage = _chunkHCOX3PKMjs.AvatarImage; exports.BackupCodesDialog = _chunkHCOX3PKMjs.BackupCodesDialog; exports.Badge = _chunkHCOX3PKMjs.Badge; exports.BlockNoteEditorContainer = _chunkHCOX3PKMjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkHCOX3PKMjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkHCOX3PKMjs.BlockNoteEditorMentionSuggestionMenu; exports.Board = _chunkHCOX3PKMjs.KanbanBoard; exports.Breadcrumb = _chunkHCOX3PKMjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkHCOX3PKMjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkHCOX3PKMjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkHCOX3PKMjs.BreadcrumbLink; exports.BreadcrumbList = _chunkHCOX3PKMjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkHCOX3PKMjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkHCOX3PKMjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkHCOX3PKMjs.BreadcrumbSeparator; exports.Button = _chunkHCOX3PKMjs.Button; exports.Calendar = _chunkHCOX3PKMjs.Calendar; exports.CalendarDayButton = _chunkHCOX3PKMjs.CalendarDayButton; exports.Card = _chunkHCOX3PKMjs.Card; exports.CardAction = _chunkHCOX3PKMjs.CardAction; exports.CardContent = _chunkHCOX3PKMjs.CardContent; exports.CardDescription = _chunkHCOX3PKMjs.CardDescription; exports.CardFooter = _chunkHCOX3PKMjs.CardFooter; exports.CardHeader = _chunkHCOX3PKMjs.CardHeader; exports.CardTitle = _chunkHCOX3PKMjs.CardTitle; exports.Carousel = _chunkHCOX3PKMjs.Carousel; exports.CarouselContent = _chunkHCOX3PKMjs.CarouselContent; exports.CarouselItem = _chunkHCOX3PKMjs.CarouselItem; exports.CarouselNext = _chunkHCOX3PKMjs.CarouselNext; exports.CarouselPrevious = _chunkHCOX3PKMjs.CarouselPrevious; exports.ChartContainer = _chunkHCOX3PKMjs.ChartContainer; exports.ChartLegend = _chunkHCOX3PKMjs.ChartLegend; exports.ChartLegendContent = _chunkHCOX3PKMjs.ChartLegendContent; exports.ChartStyle = _chunkHCOX3PKMjs.ChartStyle; exports.ChartTooltip = _chunkHCOX3PKMjs.ChartTooltip; exports.ChartTooltipContent = _chunkHCOX3PKMjs.ChartTooltipContent; exports.Checkbox = _chunkHCOX3PKMjs.Checkbox; exports.Collapsible = _chunkHCOX3PKMjs.Collapsible; exports.CollapsibleContent = _chunkHCOX3PKMjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkHCOX3PKMjs.CollapsibleTrigger; exports.Column = _chunkHCOX3PKMjs.KanbanColumn; exports.ColumnHandle = _chunkHCOX3PKMjs.KanbanColumnHandle; exports.Combobox = _chunkHCOX3PKMjs.Combobox; exports.ComboboxChip = _chunkHCOX3PKMjs.ComboboxChip; exports.ComboboxChips = _chunkHCOX3PKMjs.ComboboxChips; exports.ComboboxChipsInput = _chunkHCOX3PKMjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkHCOX3PKMjs.ComboboxCollection; exports.ComboboxContent = _chunkHCOX3PKMjs.ComboboxContent; exports.ComboboxEmpty = _chunkHCOX3PKMjs.ComboboxEmpty; exports.ComboboxGroup = _chunkHCOX3PKMjs.ComboboxGroup; exports.ComboboxInput = _chunkHCOX3PKMjs.ComboboxInput; exports.ComboboxItem = _chunkHCOX3PKMjs.ComboboxItem; exports.ComboboxLabel = _chunkHCOX3PKMjs.ComboboxLabel; exports.ComboboxList = _chunkHCOX3PKMjs.ComboboxList; exports.ComboboxSeparator = _chunkHCOX3PKMjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkHCOX3PKMjs.ComboboxTrigger; exports.ComboboxValue = _chunkHCOX3PKMjs.ComboboxValue; exports.Command = _chunkHCOX3PKMjs.Command; exports.CommandDialog = _chunkHCOX3PKMjs.CommandDialog; exports.CommandEmpty = _chunkHCOX3PKMjs.CommandEmpty; exports.CommandGroup = _chunkHCOX3PKMjs.CommandGroup; exports.CommandInput = _chunkHCOX3PKMjs.CommandInput; exports.CommandItem = _chunkHCOX3PKMjs.CommandItem; exports.CommandList = _chunkHCOX3PKMjs.CommandList; exports.CommandSeparator = _chunkHCOX3PKMjs.CommandSeparator; exports.CommandShortcut = _chunkHCOX3PKMjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkHCOX3PKMjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkHCOX3PKMjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkHCOX3PKMjs.CommonDeleter; exports.CommonEditorButtons = _chunkHCOX3PKMjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkHCOX3PKMjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkHCOX3PKMjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkHCOX3PKMjs.CommonEditorTrigger; exports.CompaniesList = _chunkHCOX3PKMjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkHCOX3PKMjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkHCOX3PKMjs.CompanyContainer; exports.CompanyContent = _chunkHCOX3PKMjs.CompanyContent; exports.CompanyDeleter = _chunkHCOX3PKMjs.CompanyDeleter; exports.CompanyDetails = _chunkHCOX3PKMjs.CompanyDetails; exports.CompanyEditor = _chunkHCOX3PKMjs.CompanyEditor; exports.CompanyUsersList = _chunkHCOX3PKMjs.CompanyUsersList; exports.ContentListGrid = _chunkHCOX3PKMjs.ContentListGrid; exports.ContentListTable = _chunkHCOX3PKMjs.ContentListTable; exports.ContentTableSearch = _chunkHCOX3PKMjs.ContentTableSearch; exports.ContentTitle = _chunkHCOX3PKMjs.ContentTitle; exports.ContentsList = _chunkHCOX3PKMjs.ContentsList; exports.ContentsListById = _chunkHCOX3PKMjs.ContentsListById; exports.ContextMenu = _chunkHCOX3PKMjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkHCOX3PKMjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkHCOX3PKMjs.ContextMenuContent; exports.ContextMenuGroup = _chunkHCOX3PKMjs.ContextMenuGroup; exports.ContextMenuItem = _chunkHCOX3PKMjs.ContextMenuItem; exports.ContextMenuLabel = _chunkHCOX3PKMjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkHCOX3PKMjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkHCOX3PKMjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkHCOX3PKMjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkHCOX3PKMjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkHCOX3PKMjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkHCOX3PKMjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkHCOX3PKMjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkHCOX3PKMjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkHCOX3PKMjs.ContextMenuTrigger; exports.ContributorsList = _chunkHCOX3PKMjs.ContributorsList; exports.Cookies = _chunkHCOX3PKMjs.Cookies; exports.DatePickerPopover = _chunkHCOX3PKMjs.DatePickerPopover; exports.DateRangeSelector = _chunkHCOX3PKMjs.DateRangeSelector; exports.Dialog = _chunkHCOX3PKMjs.Dialog; exports.DialogClose = _chunkHCOX3PKMjs.DialogClose; exports.DialogContent = _chunkHCOX3PKMjs.DialogContent; exports.DialogDescription = _chunkHCOX3PKMjs.DialogDescription; exports.DialogFooter = _chunkHCOX3PKMjs.DialogFooter; exports.DialogHeader = _chunkHCOX3PKMjs.DialogHeader; exports.DialogOverlay = _chunkHCOX3PKMjs.DialogOverlay; exports.DialogPortal = _chunkHCOX3PKMjs.DialogPortal; exports.DialogTitle = _chunkHCOX3PKMjs.DialogTitle; exports.DialogTrigger = _chunkHCOX3PKMjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkHCOX3PKMjs.DisableTwoFactorDialog; exports.Drawer = _chunkHCOX3PKMjs.Drawer; exports.DrawerClose = _chunkHCOX3PKMjs.DrawerClose; exports.DrawerContent = _chunkHCOX3PKMjs.DrawerContent; exports.DrawerDescription = _chunkHCOX3PKMjs.DrawerDescription; exports.DrawerFooter = _chunkHCOX3PKMjs.DrawerFooter; exports.DrawerHeader = _chunkHCOX3PKMjs.DrawerHeader; exports.DrawerOverlay = _chunkHCOX3PKMjs.DrawerOverlay; exports.DrawerPortal = _chunkHCOX3PKMjs.DrawerPortal; exports.DrawerTitle = _chunkHCOX3PKMjs.DrawerTitle; exports.DrawerTrigger = _chunkHCOX3PKMjs.DrawerTrigger; exports.DropdownMenu = _chunkHCOX3PKMjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkHCOX3PKMjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkHCOX3PKMjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkHCOX3PKMjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkHCOX3PKMjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkHCOX3PKMjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkHCOX3PKMjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkHCOX3PKMjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkHCOX3PKMjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkHCOX3PKMjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkHCOX3PKMjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkHCOX3PKMjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkHCOX3PKMjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkHCOX3PKMjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkHCOX3PKMjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkHCOX3PKMjs.EditableAvatar; exports.EditorSheet = _chunkHCOX3PKMjs.EditorSheet; exports.EntityAvatar = _chunkHCOX3PKMjs.EntityAvatar; exports.EntityMultiSelector = _chunkHCOX3PKMjs.EntityMultiSelector; exports.ErrorDetails = _chunkHCOX3PKMjs.ErrorDetails; exports.Field = _chunkHCOX3PKMjs.Field; exports.FieldContent = _chunkHCOX3PKMjs.FieldContent; exports.FieldDescription = _chunkHCOX3PKMjs.FieldDescription; exports.FieldError = _chunkHCOX3PKMjs.FieldError; exports.FieldGroup = _chunkHCOX3PKMjs.FieldGroup; exports.FieldLabel = _chunkHCOX3PKMjs.FieldLabel; exports.FieldLegend = _chunkHCOX3PKMjs.FieldLegend; exports.FieldSeparator = _chunkHCOX3PKMjs.FieldSeparator; exports.FieldSet = _chunkHCOX3PKMjs.FieldSet; exports.FieldTitle = _chunkHCOX3PKMjs.FieldTitle; exports.FileInput = _chunkHCOX3PKMjs.FileInput; exports.FileUploader = _chunkHCOX3PKMjs.FileUploader; exports.FileUploaderContent = _chunkHCOX3PKMjs.FileUploaderContent; exports.FileUploaderItem = _chunkHCOX3PKMjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkHCOX3PKMjs.FiscalDataDisplay; exports.ForgotPassword = _chunkHCOX3PKMjs.ForgotPassword; exports.Form = _chunkHCOX3PKMjs.Form; exports.FormBlockNote = _chunkHCOX3PKMjs.FormBlockNote; exports.FormCheckbox = _chunkHCOX3PKMjs.FormCheckbox; exports.FormDate = _chunkHCOX3PKMjs.FormDate; exports.FormDateTime = _chunkHCOX3PKMjs.FormDateTime; exports.FormFeatures = _chunkHCOX3PKMjs.FormFeatures; exports.FormFieldWrapper = _chunkHCOX3PKMjs.FormFieldWrapper; exports.FormInput = _chunkHCOX3PKMjs.FormInput; exports.FormPassword = _chunkHCOX3PKMjs.FormPassword; exports.FormPlaceAutocomplete = _chunkHCOX3PKMjs.FormPlaceAutocomplete; exports.FormRoles = _chunkHCOX3PKMjs.FormRoles; exports.FormSelect = _chunkHCOX3PKMjs.FormSelect; exports.FormSlider = _chunkHCOX3PKMjs.FormSlider; exports.FormSwitch = _chunkHCOX3PKMjs.FormSwitch; exports.FormTextarea = _chunkHCOX3PKMjs.FormTextarea; exports.GdprConsentCheckbox = _chunkHCOX3PKMjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkHCOX3PKMjs.GdprConsentSection; exports.Header = _chunkHCOX3PKMjs.Header; exports.HoverCard = _chunkHCOX3PKMjs.HoverCard; exports.HoverCardContent = _chunkHCOX3PKMjs.HoverCardContent; exports.HoverCardTrigger = _chunkHCOX3PKMjs.HoverCardTrigger; exports.HowToCommand = _chunkHCOX3PKMjs.HowToCommand; exports.HowToCommandViewer = _chunkHCOX3PKMjs.HowToCommandViewer; exports.HowToContainer = _chunkHCOX3PKMjs.HowToContainer; exports.HowToContent = _chunkHCOX3PKMjs.HowToContent; exports.HowToDeleter = _chunkHCOX3PKMjs.HowToDeleter; exports.HowToDetails = _chunkHCOX3PKMjs.HowToDetails; exports.HowToEditor = _chunkHCOX3PKMjs.HowToEditor; exports.HowToList = _chunkHCOX3PKMjs.HowToList; exports.HowToListContainer = _chunkHCOX3PKMjs.HowToListContainer; exports.HowToMultiSelector = _chunkHCOX3PKMjs.HowToMultiSelector; exports.HowToSelector = _chunkHCOX3PKMjs.HowToSelector; exports.Input = _chunkHCOX3PKMjs.Input; exports.InputGroup = _chunkHCOX3PKMjs.InputGroup; exports.InputGroupAddon = _chunkHCOX3PKMjs.InputGroupAddon; exports.InputGroupButton = _chunkHCOX3PKMjs.InputGroupButton; exports.InputGroupInput = _chunkHCOX3PKMjs.InputGroupInput; exports.InputGroupText = _chunkHCOX3PKMjs.InputGroupText; exports.InputGroupTextarea = _chunkHCOX3PKMjs.InputGroupTextarea; exports.InputOTP = _chunkHCOX3PKMjs.InputOTP; exports.InputOTPGroup = _chunkHCOX3PKMjs.InputOTPGroup; exports.InputOTPSeparator = _chunkHCOX3PKMjs.InputOTPSeparator; exports.InputOTPSlot = _chunkHCOX3PKMjs.InputOTPSlot; exports.ItalianFiscalData = _chunkHCOX3PKMjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkHCOX3PKMjs.ItalianFiscalDataDisplay; exports.Item = _chunkHCOX3PKMjs.KanbanItem; exports.ItemHandle = _chunkHCOX3PKMjs.KanbanItemHandle; exports.Kanban = _chunkHCOX3PKMjs.KanbanRoot; exports.KanbanBoard = _chunkHCOX3PKMjs.KanbanBoard; exports.KanbanColumn = _chunkHCOX3PKMjs.KanbanColumn; exports.KanbanColumnHandle = _chunkHCOX3PKMjs.KanbanColumnHandle; exports.KanbanItem = _chunkHCOX3PKMjs.KanbanItem; exports.KanbanItemHandle = _chunkHCOX3PKMjs.KanbanItemHandle; exports.KanbanOverlay = _chunkHCOX3PKMjs.KanbanOverlay; exports.Label = _chunkHCOX3PKMjs.Label; exports.LandingComponent = _chunkHCOX3PKMjs.LandingComponent; exports.Link = _chunkHCOX3PKMjs.Link; exports.Login = _chunkHCOX3PKMjs.Login; exports.Logout = _chunkHCOX3PKMjs.Logout; exports.MessageItem = _chunkHCOX3PKMjs.MessageItem; exports.MessageList = _chunkHCOX3PKMjs.MessageList; exports.MessageSourcesPanel = _chunkHCOX3PKMjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkHCOX3PKMjs.ModeToggleSwitch; exports.MultiSelect = _chunkHCOX3PKMjs.MultiSelect; exports.MultipleSelector = _chunkHCOX3PKMjs.MultipleSelector; exports.NavigationMenu = _chunkHCOX3PKMjs.NavigationMenu; exports.NavigationMenuContent = _chunkHCOX3PKMjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkHCOX3PKMjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkHCOX3PKMjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkHCOX3PKMjs.NavigationMenuLink; exports.NavigationMenuList = _chunkHCOX3PKMjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkHCOX3PKMjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkHCOX3PKMjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkHCOX3PKMjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkHCOX3PKMjs.NotificationMenuItem; exports.NotificationModal = _chunkHCOX3PKMjs.NotificationModal; exports.NotificationToast = _chunkHCOX3PKMjs.NotificationToast; exports.NotificationsList = _chunkHCOX3PKMjs.NotificationsList; exports.NotificationsListContainer = _chunkHCOX3PKMjs.NotificationsListContainer; exports.OAuthClientCard = _chunkHCOX3PKMjs.OAuthClientCard; exports.OAuthClientDetail = _chunkHCOX3PKMjs.OAuthClientDetail; exports.OAuthClientForm = _chunkHCOX3PKMjs.OAuthClientForm; exports.OAuthClientList = _chunkHCOX3PKMjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkHCOX3PKMjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkHCOX3PKMjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkHCOX3PKMjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkHCOX3PKMjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkHCOX3PKMjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkHCOX3PKMjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkHCOX3PKMjs.OAuthScopeSelector; exports.OnboardingCard = _chunkHCOX3PKMjs.OnboardingCard; exports.Overlay = _chunkHCOX3PKMjs.KanbanOverlay; exports.PageContainer = _chunkHCOX3PKMjs.PageContainer; exports.PageContainerContentDetails = _chunkHCOX3PKMjs.PageContainerContentDetails; exports.PageContentContainer = _chunkHCOX3PKMjs.PageContentContainer; exports.PageSection = _chunkHCOX3PKMjs.PageSection; exports.PasskeyButton = _chunkHCOX3PKMjs.PasskeyButton; exports.PasskeyList = _chunkHCOX3PKMjs.PasskeyList; exports.PasskeySetupDialog = _chunkHCOX3PKMjs.PasskeySetupDialog; exports.PasswordInput = _chunkHCOX3PKMjs.PasswordInput; exports.Popover = _chunkHCOX3PKMjs.Popover; exports.PopoverContent = _chunkHCOX3PKMjs.PopoverContent; exports.PopoverDescription = _chunkHCOX3PKMjs.PopoverDescription; exports.PopoverHeader = _chunkHCOX3PKMjs.PopoverHeader; exports.PopoverTitle = _chunkHCOX3PKMjs.PopoverTitle; exports.PopoverTrigger = _chunkHCOX3PKMjs.PopoverTrigger; exports.Progress = _chunkHCOX3PKMjs.Progress; exports.ProgressIndicator = _chunkHCOX3PKMjs.ProgressIndicator; exports.ProgressLabel = _chunkHCOX3PKMjs.ProgressLabel; exports.ProgressTrack = _chunkHCOX3PKMjs.ProgressTrack; exports.ProgressValue = _chunkHCOX3PKMjs.ProgressValue; exports.PushNotificationProvider = _chunkHCOX3PKMjs.PushNotificationProvider; exports.RadioGroup = _chunkHCOX3PKMjs.RadioGroup; exports.RadioGroupItem = _chunkHCOX3PKMjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkHCOX3PKMjs.RbacByRoleContainer; exports.RbacContainer = _chunkHCOX3PKMjs.RbacContainer; exports.RbacPermissionCell = _chunkHCOX3PKMjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkHCOX3PKMjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkHCOX3PKMjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkHCOX3PKMjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkHCOX3PKMjs.ReferralCodeCapture; exports.ReferralDialog = _chunkHCOX3PKMjs.ReferralDialog; exports.ReferralWidget = _chunkHCOX3PKMjs.ReferralWidget; exports.RefreshUser = _chunkHCOX3PKMjs.RefreshUser; exports.RelevantContentsList = _chunkHCOX3PKMjs.RelevantContentsList; exports.RelevantUsersList = _chunkHCOX3PKMjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkHCOX3PKMjs.RemoveUserFromRole; exports.ResetPassword = _chunkHCOX3PKMjs.ResetPassword; exports.ResizableHandle = _chunkHCOX3PKMjs.ResizableHandle; exports.ResizablePanel = _chunkHCOX3PKMjs.ResizablePanel; exports.ResizablePanelGroup = _chunkHCOX3PKMjs.ResizablePanelGroup; exports.RoleContainer = _chunkHCOX3PKMjs.RoleContainer; exports.RoleDetails = _chunkHCOX3PKMjs.RoleDetails; exports.RoleUsersList = _chunkHCOX3PKMjs.RoleUsersList; exports.RolesList = _chunkHCOX3PKMjs.RolesList; exports.Root = _chunkHCOX3PKMjs.KanbanRoot; exports.RoundPageContainer = _chunkHCOX3PKMjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkHCOX3PKMjs.RoundPageContainerTitle; exports.ScrollArea = _chunkHCOX3PKMjs.ScrollArea; exports.ScrollBar = _chunkHCOX3PKMjs.ScrollBar; exports.SecurityContainer = _chunkHCOX3PKMjs.SecurityContainer; exports.Select = _chunkHCOX3PKMjs.Select; exports.SelectContent = _chunkHCOX3PKMjs.SelectContent; exports.SelectGroup = _chunkHCOX3PKMjs.SelectGroup; exports.SelectItem = _chunkHCOX3PKMjs.SelectItem; exports.SelectLabel = _chunkHCOX3PKMjs.SelectLabel; exports.SelectScrollDownButton = _chunkHCOX3PKMjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkHCOX3PKMjs.SelectScrollUpButton; exports.SelectSeparator = _chunkHCOX3PKMjs.SelectSeparator; exports.SelectTrigger = _chunkHCOX3PKMjs.SelectTrigger; exports.SelectValue = _chunkHCOX3PKMjs.SelectValue; exports.Separator = _chunkHCOX3PKMjs.Separator; exports.Sheet = _chunkHCOX3PKMjs.Sheet; exports.SheetClose = _chunkHCOX3PKMjs.SheetClose; exports.SheetContent = _chunkHCOX3PKMjs.SheetContent; exports.SheetDescription = _chunkHCOX3PKMjs.SheetDescription; exports.SheetFooter = _chunkHCOX3PKMjs.SheetFooter; exports.SheetHeader = _chunkHCOX3PKMjs.SheetHeader; exports.SheetTitle = _chunkHCOX3PKMjs.SheetTitle; exports.SheetTrigger = _chunkHCOX3PKMjs.SheetTrigger; exports.Sidebar = _chunkHCOX3PKMjs.Sidebar; exports.SidebarContent = _chunkHCOX3PKMjs.SidebarContent; exports.SidebarFooter = _chunkHCOX3PKMjs.SidebarFooter; exports.SidebarGroup = _chunkHCOX3PKMjs.SidebarGroup; exports.SidebarGroupAction = _chunkHCOX3PKMjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkHCOX3PKMjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkHCOX3PKMjs.SidebarGroupLabel; exports.SidebarHeader = _chunkHCOX3PKMjs.SidebarHeader; exports.SidebarInput = _chunkHCOX3PKMjs.SidebarInput; exports.SidebarInset = _chunkHCOX3PKMjs.SidebarInset; exports.SidebarMenu = _chunkHCOX3PKMjs.SidebarMenu; exports.SidebarMenuAction = _chunkHCOX3PKMjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkHCOX3PKMjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkHCOX3PKMjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkHCOX3PKMjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkHCOX3PKMjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkHCOX3PKMjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkHCOX3PKMjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkHCOX3PKMjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkHCOX3PKMjs.SidebarProvider; exports.SidebarRail = _chunkHCOX3PKMjs.SidebarRail; exports.SidebarSeparator = _chunkHCOX3PKMjs.SidebarSeparator; exports.SidebarTrigger = _chunkHCOX3PKMjs.SidebarTrigger; exports.Skeleton = _chunkHCOX3PKMjs.Skeleton; exports.Slider = _chunkHCOX3PKMjs.Slider; exports.Switch = _chunkHCOX3PKMjs.Switch; exports.Table = _chunkHCOX3PKMjs.Table; exports.TableBody = _chunkHCOX3PKMjs.TableBody; exports.TableCaption = _chunkHCOX3PKMjs.TableCaption; exports.TableCell = _chunkHCOX3PKMjs.TableCell; exports.TableCellAvatar = _chunkHCOX3PKMjs.TableCellAvatar; exports.TableFooter = _chunkHCOX3PKMjs.TableFooter; exports.TableHead = _chunkHCOX3PKMjs.TableHead; exports.TableHeader = _chunkHCOX3PKMjs.TableHeader; exports.TableRow = _chunkHCOX3PKMjs.TableRow; exports.Tabs = _chunkHCOX3PKMjs.Tabs; exports.TabsContainer = _chunkHCOX3PKMjs.TabsContainer; exports.TabsContent = _chunkHCOX3PKMjs.TabsContent; exports.TabsList = _chunkHCOX3PKMjs.TabsList; exports.TabsTrigger = _chunkHCOX3PKMjs.TabsTrigger; exports.Textarea = _chunkHCOX3PKMjs.Textarea; exports.Toaster = _chunkHCOX3PKMjs.Toaster; exports.Toggle = _chunkHCOX3PKMjs.Toggle; exports.TokenStatusIndicator = _chunkHCOX3PKMjs.TokenStatusIndicator; exports.Tooltip = _chunkHCOX3PKMjs.Tooltip; exports.TooltipContent = _chunkHCOX3PKMjs.TooltipContent; exports.TooltipProvider = _chunkHCOX3PKMjs.TooltipProvider; exports.TooltipTrigger = _chunkHCOX3PKMjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkHCOX3PKMjs.TotpAuthenticatorList; exports.TotpInput = _chunkHCOX3PKMjs.TotpInput; exports.TotpSetupDialog = _chunkHCOX3PKMjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkHCOX3PKMjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkHCOX3PKMjs.TwoFactorSettings; exports.UserAvatar = _chunkHCOX3PKMjs.UserAvatar; exports.UserAvatarEditor = _chunkHCOX3PKMjs.UserAvatarEditor; exports.UserAvatarList = _chunkHCOX3PKMjs.UserAvatarList; exports.UserContainer = _chunkHCOX3PKMjs.UserContainer; exports.UserContent = _chunkHCOX3PKMjs.UserContent; exports.UserDeleter = _chunkHCOX3PKMjs.UserDeleter; exports.UserEditor = _chunkHCOX3PKMjs.UserEditor; exports.UserIndexContainer = _chunkHCOX3PKMjs.UserIndexContainer; exports.UserIndexDetails = _chunkHCOX3PKMjs.UserIndexDetails; exports.UserListInAdd = _chunkHCOX3PKMjs.UserListInAdd; exports.UserMultiSelect = _chunkHCOX3PKMjs.UserMultiSelect; exports.UserReactivator = _chunkHCOX3PKMjs.UserReactivator; exports.UserResentInvitationEmail = _chunkHCOX3PKMjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkHCOX3PKMjs.UserRoleAdd; exports.UserRolesList = _chunkHCOX3PKMjs.UserRolesList; exports.UserSearchPopover = _chunkHCOX3PKMjs.UserSearchPopover; exports.UserSelector = _chunkHCOX3PKMjs.UserSelector; exports.UserStanadaloneDetails = _chunkHCOX3PKMjs.UserStanadaloneDetails; exports.UsersList = _chunkHCOX3PKMjs.UsersList; exports.UsersListByContentIds = _chunkHCOX3PKMjs.UsersListByContentIds; exports.UsersListContainer = _chunkHCOX3PKMjs.UsersListContainer; exports.WaitlistConfirmation = _chunkHCOX3PKMjs.WaitlistConfirmation; exports.WaitlistForm = _chunkHCOX3PKMjs.WaitlistForm; exports.WaitlistHeroSection = _chunkHCOX3PKMjs.WaitlistHeroSection; exports.WaitlistList = _chunkHCOX3PKMjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkHCOX3PKMjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkHCOX3PKMjs.WaitlistSuccessState; exports.badgeVariants = _chunkHCOX3PKMjs.badgeVariants; exports.buttonVariants = _chunkHCOX3PKMjs.buttonVariants; exports.cellComponent = _chunkHCOX3PKMjs.cellComponent; exports.cellDate = _chunkHCOX3PKMjs.cellDate; exports.cellDateTime = _chunkHCOX3PKMjs.cellDateTime; exports.cellId = _chunkHCOX3PKMjs.cellId; exports.cellLink = _chunkHCOX3PKMjs.cellLink; exports.cellUrl = _chunkHCOX3PKMjs.cellUrl; exports.createMentionInlineContentSpec = _chunkHCOX3PKMjs.createMentionInlineContentSpec; exports.errorToast = _chunkHCOX3PKMjs.errorToast; exports.generateNotificationData = _chunkHCOX3PKMjs.generateNotificationData; exports.getIcon = _chunkXAWKRNYMjs.getIcon; exports.getIconByModule = _chunkXAWKRNYMjs.getIconByModule; exports.getIconByModuleName = _chunkXAWKRNYMjs.getIconByModuleName; exports.getInitials = _chunkXAWKRNYMjs.getInitials; exports.mentionDataAttrs = _chunkHCOX3PKMjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkHCOX3PKMjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkHCOX3PKMjs.parseFiscalData; exports.tabsListVariants = _chunkHCOX3PKMjs.tabsListVariants; exports.toggleVariants = _chunkHCOX3PKMjs.toggleVariants; exports.triggerAssociationToast = _chunkHCOX3PKMjs.triggerAssociationToast; exports.useCarousel = _chunkHCOX3PKMjs.useCarousel; exports.useComboboxAnchor = _chunkHCOX3PKMjs.useComboboxAnchor; exports.useDebounce = _chunkHCOX3PKMjs.useDebounce2; exports.useEditorDialog = _chunkHCOX3PKMjs.useEditorDialog; exports.useFileUpload = _chunkHCOX3PKMjs.useFileUpload; exports.useMentionInsert = _chunkHCOX3PKMjs.useMentionInsert; exports.useSidebar = _chunkHCOX3PKMjs.useSidebar;
|
|
938
|
+
exports.AcceptInvitation = _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;
|
|
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 _chunkTRTKIQUBjs = require('../chunk-TRTKIQUB.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 = _chunkTRTKIQUBjs.AssistantProvider; exports.CommonProvider = _chunkTRTKIQUBjs.CommonProvider; exports.CompanyProvider = _chunkTRTKIQUBjs.CompanyProvider; exports.CurrentUserProvider = _chunkTRTKIQUBjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkTRTKIQUBjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkTRTKIQUBjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkTRTKIQUBjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkTRTKIQUBjs.HowToProvider; exports.NotificationContextProvider = _chunkTRTKIQUBjs.NotificationContextProvider; exports.OnboardingProvider = _chunkTRTKIQUBjs.OnboardingProvider; exports.RbacProvider = _chunkTRTKIQUBjs.RbacProvider; exports.RoleProvider = _chunkTRTKIQUBjs.RoleProvider; exports.SharedProvider = _chunkTRTKIQUBjs.SharedProvider; exports.SocketContext = _chunkTRTKIQUBjs.SocketContext; exports.SocketProvider = _chunkTRTKIQUBjs.SocketProvider; exports.UserProvider = _chunkTRTKIQUBjs.UserProvider; exports.recentPagesAtom = _chunkTRTKIQUBjs.recentPagesAtom; exports.useAssistantContext = _chunkTRTKIQUBjs.useAssistantContext; exports.useCommonContext = _chunkTRTKIQUBjs.useCommonContext; exports.useCompanyContext = _chunkTRTKIQUBjs.useCompanyContext; exports.useCurrentUserContext = _chunkTRTKIQUBjs.useCurrentUserContext; exports.useHeaderChildren = _chunkTRTKIQUBjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkTRTKIQUBjs.useHeaderLeftContent; exports.useHowToContext = _chunkTRTKIQUBjs.useHowToContext; exports.useNotificationContext = _chunkTRTKIQUBjs.useNotificationContext; exports.useOnboarding = _chunkTRTKIQUBjs.useOnboarding; exports.useRbacContext = _chunkTRTKIQUBjs.useRbacContext; exports.useRoleContext = _chunkTRTKIQUBjs.useRoleContext; exports.useSharedContext = _chunkTRTKIQUBjs.useSharedContext; exports.useSocketContext = _chunkTRTKIQUBjs.useSocketContext; exports.useUserContext = _chunkTRTKIQUBjs.useUserContext;
|
|
75
75
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
package/dist/core/index.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as Perm
|
|
|
9
9
|
export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-DLZGtV7Z.mjs';
|
|
10
10
|
import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, d as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageInput } from '../AssistantMessageInterface-DJ3Me16Y.mjs';
|
|
11
11
|
export { B as BreadcrumbItemData } from '../AssistantMessageInterface-DJ3Me16Y.mjs';
|
|
12
|
-
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-
|
|
12
|
+
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.mjs';
|
|
13
13
|
import { ClassValue } from 'clsx';
|
|
14
14
|
export { ClassValue } from 'clsx';
|
|
15
15
|
import * as React from 'react';
|
package/dist/core/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as Perm
|
|
|
9
9
|
export { d as ModuleDefinition, c as ModulePermissionDefinition, b as PageUrl, P as PermissionCheck, e as PermissionConfig } from '../notification.interface-aLEJbA_g.js';
|
|
10
10
|
import { a as HowToInterface, H as HowToInput, c as AssistantMessageInterface, A as AssistantMessageRole, d as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageInput } from '../AssistantMessageInterface-BpEhx2pC.js';
|
|
11
11
|
export { B as BreadcrumbItemData } from '../AssistantMessageInterface-BpEhx2pC.js';
|
|
12
|
-
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-
|
|
12
|
+
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.js';
|
|
13
13
|
import { ClassValue } from 'clsx';
|
|
14
14
|
export { ClassValue } from 'clsx';
|
|
15
15
|
import * as React from 'react';
|
package/dist/index.d.mts
CHANGED
|
@@ -7,7 +7,7 @@ export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModu
|
|
|
7
7
|
import { b as AbstractService } from './s3.service-CVgLWaDc.mjs';
|
|
8
8
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-CVgLWaDc.mjs';
|
|
9
9
|
export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, d as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-DJ3Me16Y.mjs';
|
|
10
|
-
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-
|
|
10
|
+
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-xH3TGvVk.mjs';
|
|
11
11
|
export { ClassValue } from 'clsx';
|
|
12
12
|
export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-BKI0ZbtD.mjs';
|
|
13
13
|
export { A as Action, i as CompanyInput, j as CompanyInterface, a as ContentInput, C as ContentInterface, d as ModuleDefinition, h as ModuleFactory, c as ModulePermissionDefinition, M as ModuleWithPermissions, k as NotificationInput, N as NotificationInterface, b as PageUrl, P as PermissionCheck, e as PermissionConfig, f as PermissionModule, g as PermissionUser, R as RoleInput, l as RoleInterface, m as UserInput, U as UserInterface } from './notification.interface-DLZGtV7Z.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ export { AppModuleDefinitions, Assistant, AssistantMessage, AssistantMessageModu
|
|
|
7
7
|
import { b as AbstractService } from './s3.service-SLlX0Zbz.js';
|
|
8
8
|
export { A as AuthService, C as CompanyService, a as ContentService, F as FeatureService, H as HttpMethod, c as NextRef, N as NotificationService, d as PreviousRef, P as PushService, R as RoleService, j as S3Input, k as S3Interface, S as S3Service, e as SelfRef, T as TotalRef, i as TwoFactorChallengeInterface, U as UserService, f as clearLastApiTotal, h as getGlobalErrorHandler, g as getLastApiTotal, s as setGlobalErrorHandler } from './s3.service-SLlX0Zbz.js';
|
|
9
9
|
export { b as AssistantMessageInput, c as AssistantMessageInterface, A as AssistantMessageRole, B as BreadcrumbItemData, d as ChunkInterface, C as ChunkRelationshipMeta, H as HowToInput, a as HowToInterface } from './AssistantMessageInterface-BpEhx2pC.js';
|
|
10
|
-
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-
|
|
10
|
+
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from './content.fields-xH3TGvVk.js';
|
|
11
11
|
export { ClassValue } from 'clsx';
|
|
12
12
|
export { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface, b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials, d as getLucideIcon, e as getLucideIconByModule, f as getLucideIconByModuleName } from './AuthComponent-B6DIk8Vf.js';
|
|
13
13
|
export { A as Action, i as CompanyInput, j as CompanyInterface, a as ContentInput, C as ContentInterface, d as ModuleDefinition, h as ModuleFactory, c as ModulePermissionDefinition, M as ModuleWithPermissions, k as NotificationInput, N as NotificationInterface, b as PageUrl, P as PermissionCheck, e as PermissionConfig, f as PermissionModule, g as PermissionUser, R as RoleInput, l as RoleInterface, m as UserInput, U as UserInterface } from './notification.interface-aLEJbA_g.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carlonicora/nextjs-jsonapi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.99.0",
|
|
4
4
|
"description": "Next.js JSON:API client with server/client support and caching",
|
|
5
5
|
"author": "Carlo Nicora",
|
|
6
6
|
"license": "GPL-3.0-or-later",
|
|
@@ -121,6 +121,7 @@
|
|
|
121
121
|
"commander": "^14.0.2",
|
|
122
122
|
"cookies-next": "^6.1.1",
|
|
123
123
|
"d3": "^7.9.0",
|
|
124
|
+
"dagre": "^0.8.5",
|
|
124
125
|
"date-fns": "^4.1.0",
|
|
125
126
|
"embla-carousel-react": "^8.6.0",
|
|
126
127
|
"input-otp": "^1.4.2",
|
|
@@ -158,6 +159,7 @@
|
|
|
158
159
|
"@testing-library/react": "^16.3.2",
|
|
159
160
|
"@testing-library/user-event": "^14.6.1",
|
|
160
161
|
"@types/d3": "^7.4.3",
|
|
162
|
+
"@types/dagre": "^0.7.54",
|
|
161
163
|
"@types/node": "^25.0.10",
|
|
162
164
|
"@types/pako": "^2.0.4",
|
|
163
165
|
"@types/qrcode.react": "^3.0.0",
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
import { isValid, parse } from "date-fns";
|
|
4
4
|
import { Calendar as CalendarIcon, CircleXIcon } from "lucide-react";
|
|
5
5
|
import { useMemo, useState } from "react";
|
|
6
|
-
import { useI18nDateFnsLocale, useI18nLocale } from "../../i18n";
|
|
6
|
+
import { useI18nDateFnsLocale, useI18nLocale, useI18nTranslations } from "../../i18n";
|
|
7
7
|
import {
|
|
8
|
+
Button,
|
|
8
9
|
Calendar,
|
|
9
10
|
InputGroup,
|
|
10
11
|
InputGroupAddon,
|
|
@@ -23,6 +24,8 @@ export function FormDate({
|
|
|
23
24
|
minDate,
|
|
24
25
|
onChange,
|
|
25
26
|
isRequired = false,
|
|
27
|
+
defaultMonth,
|
|
28
|
+
allowEmpty,
|
|
26
29
|
}: {
|
|
27
30
|
form: any;
|
|
28
31
|
id: string;
|
|
@@ -31,13 +34,16 @@ export function FormDate({
|
|
|
31
34
|
minDate?: Date;
|
|
32
35
|
onChange?: (date?: Date) => Promise<void>;
|
|
33
36
|
isRequired?: boolean;
|
|
37
|
+
defaultMonth?: Date;
|
|
38
|
+
allowEmpty?: boolean;
|
|
34
39
|
}) {
|
|
40
|
+
const t = useI18nTranslations();
|
|
35
41
|
const locale = useI18nLocale();
|
|
36
42
|
const dateFnsLocale = useI18nDateFnsLocale();
|
|
37
43
|
const [open, setOpen] = useState<boolean>(false);
|
|
38
44
|
const [displayMonth, setDisplayMonth] = useState<Date>(() => {
|
|
39
45
|
const currentValue = form.getValues(id);
|
|
40
|
-
return currentValue || new Date();
|
|
46
|
+
return currentValue || defaultMonth || new Date();
|
|
41
47
|
});
|
|
42
48
|
|
|
43
49
|
// Locale-aware date formatter
|
|
@@ -126,7 +132,7 @@ export function FormDate({
|
|
|
126
132
|
<CalendarIcon className="h-4 w-4 opacity-50" />
|
|
127
133
|
</InputGroupButton>
|
|
128
134
|
</PopoverTrigger>
|
|
129
|
-
{field.value && (
|
|
135
|
+
{field.value && allowEmpty !== false && (
|
|
130
136
|
<InputGroupButton
|
|
131
137
|
variant="ghost"
|
|
132
138
|
size="icon-xs"
|
|
@@ -158,6 +164,24 @@ export function FormDate({
|
|
|
158
164
|
startMonth={new Date(1900, 0)}
|
|
159
165
|
endMonth={new Date(new Date().getFullYear() + 10, 11)}
|
|
160
166
|
/>
|
|
167
|
+
{allowEmpty !== false && (
|
|
168
|
+
<div className="border-t p-2">
|
|
169
|
+
<Button
|
|
170
|
+
type="button"
|
|
171
|
+
variant="outline"
|
|
172
|
+
className="w-full"
|
|
173
|
+
disabled={!field.value}
|
|
174
|
+
onClick={() => {
|
|
175
|
+
field.onChange(undefined);
|
|
176
|
+
setInputValue("");
|
|
177
|
+
if (onChange) onChange(undefined);
|
|
178
|
+
setOpen(false);
|
|
179
|
+
}}
|
|
180
|
+
>
|
|
181
|
+
{t(`ui.buttons.clear`)}
|
|
182
|
+
</Button>
|
|
183
|
+
</div>
|
|
184
|
+
)}
|
|
161
185
|
</PopoverContent>
|
|
162
186
|
</Popover>
|
|
163
187
|
)}
|