@carlonicora/nextjs-jsonapi 1.68.0 → 1.70.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/{AuthComponent-NwQ_ZXsv.d.mts → AuthComponent-DXe3kPzb.d.mts} +1 -1
- package/dist/{AuthComponent-DL1D3y7f.d.ts → AuthComponent-Di8DsZ2I.d.ts} +1 -1
- package/dist/{BlockNoteEditor-6FDECIS2.mjs → BlockNoteEditor-6XV2IXLY.mjs} +15 -9
- package/dist/BlockNoteEditor-6XV2IXLY.mjs.map +1 -0
- package/dist/{BlockNoteEditor-DXHROT4C.js → BlockNoteEditor-NVPUPZXB.js} +25 -19
- package/dist/BlockNoteEditor-NVPUPZXB.js.map +1 -0
- package/dist/HowToInterface-DtVWAE1s.d.mts +17 -0
- package/dist/HowToInterface-NaqSG9sE.d.ts +17 -0
- package/dist/{auth.interface-BX_1qZZJ.d.ts → auth.interface-BTco8PWs.d.ts} +1 -1
- package/dist/{auth.interface-yeLelxdI.d.mts → auth.interface-C4uJzBec.d.mts} +1 -1
- package/dist/billing/index.js +346 -346
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-37KYO2UD.js → chunk-56VU7A4I.js} +172 -18
- package/dist/chunk-56VU7A4I.js.map +1 -0
- package/dist/{chunk-WOJIRXIP.js → chunk-6ROMPIIP.js} +11 -11
- package/dist/{chunk-WOJIRXIP.js.map → chunk-6ROMPIIP.js.map} +1 -1
- package/dist/{chunk-IOMDNRX5.mjs → chunk-GZNHBAZF.mjs} +155 -1
- package/dist/chunk-GZNHBAZF.mjs.map +1 -0
- package/dist/{chunk-H4ZS3R76.mjs → chunk-LQEKQYUJ.mjs} +2569 -1603
- package/dist/chunk-LQEKQYUJ.mjs.map +1 -0
- package/dist/{chunk-WVTBEVAL.mjs → chunk-WJYWWOTG.mjs} +2 -2
- package/dist/{chunk-ELTHSXBI.js → chunk-ZKOLKFAS.js} +1664 -698
- package/dist/chunk-ZKOLKFAS.js.map +1 -0
- package/dist/client/index.d.mts +5 -6
- package/dist/client/index.d.ts +5 -6
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +83 -10
- package/dist/components/index.d.ts +83 -10
- package/dist/components/index.js +26 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +25 -3
- package/dist/{config-D-mqttuF.d.mts → config-Bmr_0qTn.d.mts} +1 -1
- package/dist/{config-CyCAWW-d.d.ts → config-n0lfSf27.d.ts} +1 -1
- package/dist/contexts/index.d.mts +16 -4
- package/dist/contexts/index.d.ts +16 -4
- package/dist/contexts/index.js +8 -4
- package/dist/contexts/index.js.map +1 -1
- package/dist/contexts/index.mjs +7 -3
- package/dist/core/index.d.mts +61 -11
- package/dist/core/index.d.ts +61 -11
- package/dist/core/index.js +10 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +9 -1
- package/dist/index.d.mts +9 -10
- package/dist/index.d.ts +9 -10
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -2
- package/dist/{notification.interface-ItBxq2au.d.ts → notification.interface-DYDZENx2.d.ts} +18 -1
- package/dist/{notification.interface-C6UcmJqu.d.mts → notification.interface-DrHu_1MM.d.mts} +18 -1
- package/dist/{s3.service-N1g0piXD.d.ts → s3.service-DK2KKXbR.d.ts} +2 -3
- package/dist/{s3.service-CHOTwfWA.d.mts → s3.service-TsN2unZr.d.mts} +2 -3
- package/dist/server/index.d.mts +3 -4
- package/dist/server/index.d.ts +3 -4
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/dist/{useRbacState-CUj0hp8t.d.ts → useRbacState-BYaSdA78.d.ts} +1 -1
- package/dist/{useRbacState-Btk1gkQg.d.mts → useRbacState-CQEJ_ysV.d.mts} +1 -1
- package/dist/{useSocket-BSUN9s3p.d.ts → useSocket-Cjt_qvkI.d.ts} +1 -1
- package/dist/{useSocket-DKI92Fbg.d.mts → useSocket-VAGetcT3.d.mts} +1 -1
- package/package.json +1 -1
- package/src/components/editors/BlockNoteEditor.tsx +7 -1
- package/src/components/forms/FormBlockNote.tsx +6 -0
- package/src/components/forms/FormSelect.tsx +3 -0
- package/src/components/index.ts +1 -0
- package/src/contexts/index.ts +1 -0
- package/src/core/index.ts +2 -0
- package/src/core/registry/ModuleRegistry.ts +19 -0
- package/src/features/how-to/HowToModule.ts +18 -0
- package/src/features/how-to/components/containers/HowToCommand.tsx +230 -0
- package/src/features/how-to/components/containers/HowToCommandViewer.tsx +76 -0
- package/src/features/how-to/components/containers/HowToContainer.tsx +27 -0
- package/src/features/how-to/components/containers/HowToListContainer.tsx +17 -0
- package/src/features/how-to/components/details/HowToContent.tsx +16 -0
- package/src/features/how-to/components/details/HowToDetails.tsx +52 -0
- package/src/features/how-to/components/forms/HowToDeleter.tsx +31 -0
- package/src/features/how-to/components/forms/HowToEditor.tsx +270 -0
- package/src/features/how-to/components/forms/HowToMultiSelector.tsx +152 -0
- package/src/features/how-to/components/forms/HowToSelector.tsx +164 -0
- package/src/features/how-to/components/index.ts +11 -0
- package/src/features/how-to/components/lists/HowToList.tsx +39 -0
- package/src/features/how-to/contexts/HowToContext.tsx +101 -0
- package/src/features/how-to/data/HowTo.ts +69 -0
- package/src/features/how-to/data/HowToFields.ts +10 -0
- package/src/features/how-to/data/HowToInterface.ts +11 -0
- package/src/features/how-to/data/HowToService.ts +61 -0
- package/src/features/how-to/data/index.ts +4 -0
- package/src/features/how-to/hooks/useHowToTableStructure.tsx +86 -0
- package/src/features/how-to/index.ts +2 -0
- package/src/features/how-to/utils/blocknote.ts +108 -0
- package/src/features/how-to/utils/index.ts +1 -0
- package/dist/BlockNoteEditor-6FDECIS2.mjs.map +0 -1
- package/dist/BlockNoteEditor-DXHROT4C.js.map +0 -1
- package/dist/breadcrumb.item.data.interface-CgB4_1EE.d.mts +0 -6
- package/dist/breadcrumb.item.data.interface-CgB4_1EE.d.ts +0 -6
- package/dist/chunk-37KYO2UD.js.map +0 -1
- package/dist/chunk-ELTHSXBI.js.map +0 -1
- package/dist/chunk-H4ZS3R76.mjs.map +0 -1
- package/dist/chunk-IOMDNRX5.mjs.map +0 -1
- package/dist/content.interface-8T5-G84c.d.mts +0 -21
- package/dist/content.interface-D-xdYxjt.d.ts +0 -21
- /package/dist/{chunk-WVTBEVAL.mjs.map → chunk-WJYWWOTG.mjs.map} +0 -0
package/dist/client/index.d.mts
CHANGED
|
@@ -7,14 +7,13 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
7
7
|
import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface-CYEcRUrh.mjs';
|
|
8
8
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-zeewugD7.mjs';
|
|
9
9
|
import { A as ApiData } from '../ApiData-DPKNfY-9.mjs';
|
|
10
|
-
import { M as ModuleWithPermissions,
|
|
11
|
-
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-
|
|
10
|
+
import { M as ModuleWithPermissions, b as PageUrl, C as ContentInterface, R as RoleInterface, U as UserInterface } from '../notification.interface-DrHu_1MM.mjs';
|
|
11
|
+
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-Bmr_0qTn.mjs';
|
|
12
12
|
import { ColumnDef } from '@tanstack/react-table';
|
|
13
|
-
import { D as DataListRetriever } from '../useRbacState-
|
|
14
|
-
export { a as useDataListRetriever, u as useRbacState } from '../useRbacState-
|
|
13
|
+
import { D as DataListRetriever } from '../useRbacState-CQEJ_ysV.mjs';
|
|
14
|
+
export { a as useDataListRetriever, u as useRbacState } from '../useRbacState-CQEJ_ysV.mjs';
|
|
15
15
|
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.mjs';
|
|
16
|
-
export { u as useSocket } from '../useSocket-
|
|
17
|
-
import { a as ContentInterface } from '../content.interface-8T5-G84c.mjs';
|
|
16
|
+
export { u as useSocket } from '../useSocket-VAGetcT3.mjs';
|
|
18
17
|
import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-DsZ5ecSX.mjs';
|
|
19
18
|
import { b as PermissionsMap } from '../ModulePathsInterface-49EWvbWy.mjs';
|
|
20
19
|
import 'lucide-react';
|
package/dist/client/index.d.ts
CHANGED
|
@@ -7,14 +7,13 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
7
7
|
import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface-CYEcRUrh.js';
|
|
8
8
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-CAIAeP5d.js';
|
|
9
9
|
import { A as ApiData } from '../ApiData-DPKNfY-9.js';
|
|
10
|
-
import { M as ModuleWithPermissions,
|
|
11
|
-
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-
|
|
10
|
+
import { M as ModuleWithPermissions, b as PageUrl, C as ContentInterface, R as RoleInterface, U as UserInterface } from '../notification.interface-DYDZENx2.js';
|
|
11
|
+
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-n0lfSf27.js';
|
|
12
12
|
import { ColumnDef } from '@tanstack/react-table';
|
|
13
|
-
import { D as DataListRetriever } from '../useRbacState-
|
|
14
|
-
export { a as useDataListRetriever, u as useRbacState } from '../useRbacState-
|
|
13
|
+
import { D as DataListRetriever } from '../useRbacState-BYaSdA78.js';
|
|
14
|
+
export { a as useDataListRetriever, u as useRbacState } from '../useRbacState-BYaSdA78.js';
|
|
15
15
|
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.js';
|
|
16
|
-
export { u as useSocket } from '../useSocket-
|
|
17
|
-
import { a as ContentInterface } from '../content.interface-D-xdYxjt.js';
|
|
16
|
+
export { u as useSocket } from '../useSocket-Cjt_qvkI.js';
|
|
18
17
|
import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-vL7za9Bz.js';
|
|
19
18
|
import { b as PermissionsMap } from '../ModulePathsInterface-wVS5Raa4.js';
|
|
20
19
|
import 'lucide-react';
|
package/dist/client/index.js
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
var
|
|
32
|
+
var _chunkZKOLKFASjs = require('../chunk-ZKOLKFAS.js');
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
@@ -43,7 +43,7 @@ var _chunkELTHSXBIjs = require('../chunk-ELTHSXBI.js');
|
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
var
|
|
46
|
+
var _chunk6ROMPIIPjs = require('../chunk-6ROMPIIP.js');
|
|
47
47
|
|
|
48
48
|
|
|
49
49
|
|
|
@@ -54,7 +54,7 @@ var _chunkWOJIRXIPjs = require('../chunk-WOJIRXIP.js');
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
|
|
57
|
-
var
|
|
57
|
+
var _chunk56VU7A4Ijs = require('../chunk-56VU7A4I.js');
|
|
58
58
|
|
|
59
59
|
|
|
60
60
|
var _chunkLXKSUWAVjs = require('../chunk-LXKSUWAV.js');
|
|
@@ -123,5 +123,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
|
|
126
|
-
exports.ClientJsonApiDelete =
|
|
126
|
+
exports.ClientJsonApiDelete = _chunk56VU7A4Ijs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunk56VU7A4Ijs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunk56VU7A4Ijs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunk56VU7A4Ijs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunk56VU7A4Ijs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunkZKOLKFASjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkZKOLKFASjs.TableGeneratorRegistry; exports.configureClientConfig = _chunk6ROMPIIPjs.configureClientConfig; exports.configureClientJsonApi = _chunk56VU7A4Ijs.configureClientJsonApi; exports.configureI18n = _chunk6ROMPIIPjs.configureI18n; exports.configureJsonApi = _chunk6ROMPIIPjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.downloadMigrationFile = _chunkZKOLKFASjs.downloadMigrationFile; exports.generateMigrationFile = _chunkZKOLKFASjs.generateMigrationFile; exports.getApiUrl = _chunk6ROMPIIPjs.getApiUrl; exports.getAppUrl = _chunk6ROMPIIPjs.getAppUrl; exports.getClientApiUrl = _chunk56VU7A4Ijs.getClientApiUrl; exports.getClientAppUrl = _chunk56VU7A4Ijs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunk56VU7A4Ijs.getClientTrackablePages; exports.getI18nLink = _chunk6ROMPIIPjs.getI18nLink; exports.getStripePublishableKey = _chunk6ROMPIIPjs.getStripePublishableKey; exports.getTrackablePages = _chunk6ROMPIIPjs.getTrackablePages; exports.registerTableGenerator = _chunkZKOLKFASjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkZKOLKFASjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkZKOLKFASjs.useContentTableStructure; exports.useCustomD3Graph = _chunkZKOLKFASjs.useCustomD3Graph; exports.useDataListRetriever = _chunkZKOLKFASjs.useDataListRetriever; exports.useDebounce = _chunkZKOLKFASjs.useDebounce; exports.useI18nDateFnsLocale = _chunk6ROMPIIPjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunk6ROMPIIPjs.useI18nLocale; exports.useI18nRouter = _chunk6ROMPIIPjs.useI18nRouter; exports.useI18nTranslations = _chunk6ROMPIIPjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunkZKOLKFASjs.useJsonApiGet; exports.useJsonApiMutation = _chunkZKOLKFASjs.useJsonApiMutation; exports.useNotificationSync = _chunkZKOLKFASjs.useNotificationSync; exports.useOAuthClient = _chunkZKOLKFASjs.useOAuthClient; exports.useOAuthClients = _chunkZKOLKFASjs.useOAuthClients; exports.useOAuthConsent = _chunkZKOLKFASjs.useOAuthConsent; exports.usePageTracker = _chunkZKOLKFASjs.usePageTracker; exports.usePageUrlGenerator = _chunkZKOLKFASjs.usePageUrlGenerator; exports.useRbacState = _chunkZKOLKFASjs.useRbacState; exports.useRehydration = _chunkZKOLKFASjs.useRehydration; exports.useRehydrationList = _chunkZKOLKFASjs.useRehydrationList; exports.useRoleTableStructure = _chunkZKOLKFASjs.useRoleTableStructure; exports.useSocket = _chunkZKOLKFASjs.useSocket; exports.useSubscriptionStatus = _chunkZKOLKFASjs.useSubscriptionStatus; exports.useTableGenerator = _chunkZKOLKFASjs.useTableGenerator; exports.useUrlRewriter = _chunkZKOLKFASjs.useUrlRewriter; exports.useUserSearch = _chunkZKOLKFASjs.useUserSearch; exports.useUserTableStructure = _chunkZKOLKFASjs.useUserTableStructure;
|
|
127
127
|
//# sourceMappingURL=index.js.map
|
package/dist/client/index.mjs
CHANGED
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
useUrlRewriter,
|
|
29
29
|
useUserSearch,
|
|
30
30
|
useUserTableStructure
|
|
31
|
-
} from "../chunk-
|
|
31
|
+
} from "../chunk-LQEKQYUJ.mjs";
|
|
32
32
|
import {
|
|
33
33
|
configureClientConfig,
|
|
34
34
|
configureI18n,
|
|
@@ -42,7 +42,7 @@ import {
|
|
|
42
42
|
useI18nLocale,
|
|
43
43
|
useI18nRouter,
|
|
44
44
|
useI18nTranslations
|
|
45
|
-
} from "../chunk-
|
|
45
|
+
} from "../chunk-WJYWWOTG.mjs";
|
|
46
46
|
import {
|
|
47
47
|
ClientJsonApiDelete,
|
|
48
48
|
ClientJsonApiGet,
|
|
@@ -53,7 +53,7 @@ import {
|
|
|
53
53
|
getClientApiUrl,
|
|
54
54
|
getClientAppUrl,
|
|
55
55
|
getClientTrackablePages
|
|
56
|
-
} from "../chunk-
|
|
56
|
+
} from "../chunk-GZNHBAZF.mjs";
|
|
57
57
|
import {
|
|
58
58
|
getClientToken
|
|
59
59
|
} from "../chunk-AUXK7QSA.mjs";
|
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { R as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action,
|
|
3
|
-
import { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface } from '../AuthComponent-
|
|
4
|
-
export { b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials } from '../AuthComponent-
|
|
2
|
+
import { R as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action, C as ContentInterface, j as CompanyInterface, i as CompanyInput, N as NotificationInterface } from '../notification.interface-DrHu_1MM.mjs';
|
|
3
|
+
import { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface } from '../AuthComponent-DXe3kPzb.mjs';
|
|
4
|
+
export { b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials } from '../AuthComponent-DXe3kPzb.mjs';
|
|
5
5
|
import * as React$1 from 'react';
|
|
6
6
|
import React__default, { ReactNode, ReactElement, Dispatch, SetStateAction, Component, JSX, ComponentPropsWithoutRef } from 'react';
|
|
7
|
-
import { a as ContentInterface } from '../content.interface-8T5-G84c.mjs';
|
|
8
7
|
import { PartialBlock } from '@blocknote/core';
|
|
9
|
-
import { D as DataListRetriever, R as RbacStateApi } from '../useRbacState-
|
|
8
|
+
import { D as DataListRetriever, R as RbacStateApi } from '../useRbacState-CQEJ_ysV.mjs';
|
|
10
9
|
import * as react_hook_form from 'react-hook-form';
|
|
11
10
|
import { FieldValues, UseFormReturn, Path, ControllerRenderProps, ControllerFieldState } from 'react-hook-form';
|
|
12
11
|
import { DateRange, DayPicker, DayButton } from 'react-day-picker';
|
|
13
12
|
import { DropzoneState, DropzoneOptions } from 'react-dropzone';
|
|
14
13
|
export { DropzoneOptions } from 'react-dropzone';
|
|
15
14
|
import { F as FeatureInterface, M as ModuleInterface } from '../feature.interface-BxFFOPNq.mjs';
|
|
16
|
-
import { B as BreadcrumbItemData } from '../
|
|
15
|
+
import { B as BreadcrumbItemData, a as HowToInterface } from '../HowToInterface-DtVWAE1s.mjs';
|
|
17
16
|
import { ColumnDef, ExpandedState } from '@tanstack/react-table';
|
|
18
17
|
import { J as JsonApiHydratedDataInterface } from '../ApiDataInterface-DPP8s46n.mjs';
|
|
19
|
-
import { b as AuthInterface } from '../auth.interface-
|
|
18
|
+
import { b as AuthInterface } from '../auth.interface-C4uJzBec.mjs';
|
|
20
19
|
import z from 'zod';
|
|
21
20
|
import { g as OnboardingCardRenderProps } from '../onboarding.interface-Djyl9qYu.mjs';
|
|
22
21
|
import { e as OAuthScopeInfo, O as OAuthClientInterface, b as OAuthClientCreateRequest, d as OAuthConsentRequest } from '../oauth.interface-DsZ5ecSX.mjs';
|
|
@@ -235,6 +234,8 @@ type BlockNoteEditorProps = {
|
|
|
235
234
|
diffContent?: PartialBlock[];
|
|
236
235
|
placeholder?: string;
|
|
237
236
|
bordered?: boolean;
|
|
237
|
+
inlineContentSpecs?: Record<string, any>;
|
|
238
|
+
renderOverlays?: (editor: any) => React__default.ReactNode;
|
|
238
239
|
};
|
|
239
240
|
|
|
240
241
|
declare const BlockNoteEditorContainer: React__default.NamedExoticComponent<BlockNoteEditorProps>;
|
|
@@ -412,7 +413,7 @@ type FormCheckboxProps = {
|
|
|
412
413
|
};
|
|
413
414
|
declare function FormCheckbox({ form, id, name, labelBefore, description, isRequired }: FormCheckboxProps): react_jsx_runtime.JSX.Element;
|
|
414
415
|
|
|
415
|
-
declare function FormBlockNote({ form, id, name, placeholder, type, isRequired, description, testId, onEmptyChange, }: {
|
|
416
|
+
declare function FormBlockNote({ form, id, name, placeholder, type, isRequired, description, testId, onEmptyChange, inlineContentSpecs, renderOverlays, }: {
|
|
416
417
|
form: any;
|
|
417
418
|
id: string;
|
|
418
419
|
name?: string;
|
|
@@ -422,6 +423,8 @@ declare function FormBlockNote({ form, id, name, placeholder, type, isRequired,
|
|
|
422
423
|
description?: string;
|
|
423
424
|
testId?: string;
|
|
424
425
|
onEmptyChange?: (isEmpty: boolean) => void;
|
|
426
|
+
inlineContentSpecs?: Record<string, any>;
|
|
427
|
+
renderOverlays?: (editor: any) => React__default.ReactNode;
|
|
425
428
|
}): react_jsx_runtime.JSX.Element;
|
|
426
429
|
|
|
427
430
|
type FormFieldWrapperProps<T extends FieldValues> = {
|
|
@@ -533,7 +536,7 @@ interface PlaceAutocompleteProps {
|
|
|
533
536
|
}
|
|
534
537
|
declare function FormPlaceAutocomplete({ form, id, name, placeholder, disabled, testId, isRequired, onPlaceSelect, className, includeTypes, }: PlaceAutocompleteProps): react_jsx_runtime.JSX.Element;
|
|
535
538
|
|
|
536
|
-
declare function FormSelect({ form, id, name, placeholder, disabled, values, onChange, useRows, testId, allowEmpty, }: {
|
|
539
|
+
declare function FormSelect({ form, id, name, placeholder, disabled, values, onChange, useRows, testId, allowEmpty, isRequired, }: {
|
|
537
540
|
form: any;
|
|
538
541
|
id: string;
|
|
539
542
|
name?: string;
|
|
@@ -547,6 +550,7 @@ declare function FormSelect({ form, id, name, placeholder, disabled, values, onC
|
|
|
547
550
|
useRows?: boolean;
|
|
548
551
|
testId?: string;
|
|
549
552
|
allowEmpty?: boolean;
|
|
553
|
+
isRequired?: boolean;
|
|
550
554
|
}): react_jsx_runtime.JSX.Element;
|
|
551
555
|
|
|
552
556
|
declare function FormSlider({ form, id, name, disabled, showPercentage, }: {
|
|
@@ -909,6 +913,75 @@ type RelevantContentsListProps = {
|
|
|
909
913
|
};
|
|
910
914
|
declare function RelevantContentsList({ id }: RelevantContentsListProps): react_jsx_runtime.JSX.Element;
|
|
911
915
|
|
|
916
|
+
type HowToCommandProps = {
|
|
917
|
+
/** Current pathname for page relevance matching */
|
|
918
|
+
pathname: string;
|
|
919
|
+
/** Optional extra command groups to render when not searching */
|
|
920
|
+
extraGroups?: ReactNode;
|
|
921
|
+
/** Called when user starts a chat from the viewer */
|
|
922
|
+
onStartChat?: () => void;
|
|
923
|
+
};
|
|
924
|
+
declare function HowToCommand({ pathname, extraGroups, onStartChat }: HowToCommandProps): react_jsx_runtime.JSX.Element;
|
|
925
|
+
|
|
926
|
+
type HowToCommandViewerProps = {
|
|
927
|
+
howTo: HowToInterface;
|
|
928
|
+
onBack: () => void;
|
|
929
|
+
onStartChat?: () => void;
|
|
930
|
+
};
|
|
931
|
+
declare function HowToCommandViewer({ howTo, onBack, onStartChat }: HowToCommandViewerProps): react_jsx_runtime.JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare function HowToContainer(): react_jsx_runtime.JSX.Element | null;
|
|
934
|
+
|
|
935
|
+
declare function HowToListContainer(): react_jsx_runtime.JSX.Element;
|
|
936
|
+
|
|
937
|
+
declare function HowToContent(): react_jsx_runtime.JSX.Element | null;
|
|
938
|
+
|
|
939
|
+
declare function HowToDetails(): react_jsx_runtime.JSX.Element | null;
|
|
940
|
+
|
|
941
|
+
type HowToDeleterProps = {
|
|
942
|
+
howTo: HowToInterface;
|
|
943
|
+
};
|
|
944
|
+
declare function HowToDeleter(props: HowToDeleterProps): react_jsx_runtime.JSX.Element;
|
|
945
|
+
|
|
946
|
+
type HowToEditorProps = {
|
|
947
|
+
howTo?: HowToInterface;
|
|
948
|
+
propagateChanges?: (howTo: HowToInterface) => void;
|
|
949
|
+
trigger?: ReactNode;
|
|
950
|
+
forceShow?: boolean;
|
|
951
|
+
onClose?: () => void;
|
|
952
|
+
onRevalidate?: (path: string) => Promise<void>;
|
|
953
|
+
dialogOpen?: boolean;
|
|
954
|
+
onDialogOpenChange?: (open: boolean) => void;
|
|
955
|
+
};
|
|
956
|
+
declare function HowToEditor(props: HowToEditorProps): react_jsx_runtime.JSX.Element;
|
|
957
|
+
|
|
958
|
+
type HowToMultiSelectorProps = {
|
|
959
|
+
id: string;
|
|
960
|
+
form: any;
|
|
961
|
+
currentHowTo?: HowToInterface;
|
|
962
|
+
label?: string;
|
|
963
|
+
placeholder?: string;
|
|
964
|
+
onChange?: (howTos?: HowToInterface[]) => void;
|
|
965
|
+
maxCount?: number;
|
|
966
|
+
isRequired?: boolean;
|
|
967
|
+
};
|
|
968
|
+
declare function HowToMultiSelector({ id, form, currentHowTo, label, placeholder, onChange, maxCount, isRequired, }: HowToMultiSelectorProps): react_jsx_runtime.JSX.Element;
|
|
969
|
+
|
|
970
|
+
type HowToSelectorProps = {
|
|
971
|
+
id: string;
|
|
972
|
+
form: any;
|
|
973
|
+
label?: string;
|
|
974
|
+
placeholder?: string;
|
|
975
|
+
onChange?: (howTo?: HowToInterface) => void;
|
|
976
|
+
isRequired?: boolean;
|
|
977
|
+
};
|
|
978
|
+
declare function HowToSelector({ id, form, label, placeholder, onChange, isRequired, }: HowToSelectorProps): react_jsx_runtime.JSX.Element;
|
|
979
|
+
|
|
980
|
+
type HowToListProps = {
|
|
981
|
+
fullWidth?: boolean;
|
|
982
|
+
};
|
|
983
|
+
declare function HowToList({ fullWidth }: HowToListProps): react_jsx_runtime.JSX.Element;
|
|
984
|
+
|
|
912
985
|
interface Props$1 {
|
|
913
986
|
children: ReactNode;
|
|
914
987
|
fallback?: ReactNode;
|
|
@@ -2264,4 +2337,4 @@ interface MultipleSelectorRef {
|
|
|
2264
2337
|
declare function useDebounce<T>(value: T, delay?: number): T;
|
|
2265
2338
|
declare const MultipleSelector: React$1.ForwardRefExoticComponent<MultipleSelectorProps & React$1.RefAttributes<MultipleSelectorRef>>;
|
|
2266
2339
|
|
|
2267
|
-
export { AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, AdminUsersList, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllUsersListContainer, AllowedUsersDetails, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, BackupCodesDialog, Badge, BlockNoteEditorContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorDiscardDialog, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompanyConfigurationEditor, CompanyContainer, CompanyContent, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, DatePickerPopover, DateRangeSelector, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisableTwoFactorDialog, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableAvatar, EditorSheet, type EditorSheetProps, EntityAvatar, ErrorDetails, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileInput, FileUploader, FileUploaderContent, FileUploaderItem, FiscalDataDisplay, type FiscalDataHandle, ForgotPassword, Form, FormBlockNote, FormCheckbox, FormDate, FormDateTime, FormFeatures, FormFieldWrapper, FormInput, FormPassword, FormPlaceAutocomplete, FormRoles, FormSelect, FormSlider, FormSwitch, FormTextarea, GdprConsentCheckbox, GdprConsentSection, type GenerateTableStructureParams, Header, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, ItalianFiscalData, ItalianFiscalDataDisplay, type ItalianFiscalDataProps, KanbanItem as Item, KanbanItemHandle as ItemHandle, KanbanRoot as Kanban, KanbanBoard, KanbanColumn, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Label, LandingComponent, Link, type LinkProps, Login, Logout, ModeToggleSwitch, MultiSelect, MultipleSelector, type MultipleSelectorProps, type MultipleSelectorRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NotificationErrorBoundary, NotificationMenuItem, NotificationModal, NotificationToast, NotificationsList, NotificationsListContainer, OAuthClientCard, type OAuthClientCardProps, OAuthClientDetail, type OAuthClientDetailProps, OAuthClientForm, type OAuthClientFormProps, OAuthClientList, type OAuthClientListProps, OAuthClientSecretDisplay, type OAuthClientSecretDisplayProps, OAuthConsentActions, type OAuthConsentActionsProps, OAuthConsentHeader, type OAuthConsentHeaderProps, OAuthConsentScreen, type OAuthConsentScreenProps, OAuthRedirectUriInput, type OAuthRedirectUriInputProps, OAuthScopeList, type OAuthScopeListProps, OAuthScopeSelector, type OAuthScopeSelectorProps, OnboardingCard, type Option, KanbanOverlay as Overlay, PageContainer, PageContainerContentDetails, type PageContainerItems, PageContentContainer, PageSection, PasskeyButton, PasskeyList, PasskeySetupDialog, PasswordInput, type PasswordInputProps, type PlaceAddressComponents, type PlaceSuggestion, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, PushNotificationProvider, RadioGroup, RadioGroupItem, RbacContainer, RbacFeatureSection, RbacModuleTable, RbacPermissionCell, RbacPermissionPicker, RbacToolbar, ReactMarkdownContainer, RecentPagesNavigator, ReferralCodeCapture, ReferralDialog, type ReferralDialogProps, type ReferralDialogTranslations, ReferralWidget, type ReferralWidgetProps, type ReferralWidgetTranslations, RefreshUser, RelevantContentsList, RelevantUsersList, RemoveUserFromRole, ResetPassword, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleContainer, RoleDetails, RoleUsersList, RolesList, KanbanRoot as Root, RoundPageContainer, RoundPageContainerTitle, ScrollArea, ScrollBar, SecurityContainer, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, type Tab, Table, TableBody, TableCaption, TableCell, TableCellAvatar, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, TokenStatusIndicator, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TotpAuthenticatorList, TotpInput, TotpSetupDialog, TwoFactorChallenge, TwoFactorSettings, UserAvatar, UserAvatarEditor, UserAvatarList, UserContainer, UserContent, UserDeleter, UserEditor, UserIndexContainer, UserIndexDetails, UserListInAdd, UserMultiSelect, UserReactivator, UserResentInvitationEmail, UserRoleAdd, UserRolesList, UserSelector, UserStanadaloneDetails, UsersList, UsersListByContentIds, UsersListContainer, WaitlistConfirmation, WaitlistForm, WaitlistHeroSection, WaitlistList, WaitlistQuestionnaireRenderer, WaitlistSuccessState, badgeVariants, buttonVariants, cellComponent, cellDate, cellId, cellLink, cellUrl, errorToast, generateNotificationData, navigationMenuTriggerStyle, parseFiscalData, tabsListVariants, toggleVariants, triggerAssociationToast, useCarousel, useComboboxAnchor, useDebounce, useEditorDialog, useFileUpload, useSidebar };
|
|
2340
|
+
export { AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, AdminUsersList, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllUsersListContainer, AllowedUsersDetails, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, BackupCodesDialog, Badge, BlockNoteEditorContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorDiscardDialog, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompanyConfigurationEditor, CompanyContainer, CompanyContent, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, DatePickerPopover, DateRangeSelector, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisableTwoFactorDialog, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableAvatar, EditorSheet, type EditorSheetProps, EntityAvatar, ErrorDetails, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileInput, FileUploader, FileUploaderContent, FileUploaderItem, FiscalDataDisplay, type FiscalDataHandle, ForgotPassword, Form, FormBlockNote, FormCheckbox, FormDate, FormDateTime, FormFeatures, FormFieldWrapper, FormInput, FormPassword, FormPlaceAutocomplete, FormRoles, FormSelect, FormSlider, FormSwitch, FormTextarea, GdprConsentCheckbox, GdprConsentSection, type GenerateTableStructureParams, Header, HoverCard, HoverCardContent, HoverCardTrigger, HowToCommand, HowToCommandViewer, HowToContainer, HowToContent, HowToDeleter, HowToDetails, HowToEditor, HowToList, HowToListContainer, HowToMultiSelector, HowToSelector, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, ItalianFiscalData, ItalianFiscalDataDisplay, type ItalianFiscalDataProps, KanbanItem as Item, KanbanItemHandle as ItemHandle, KanbanRoot as Kanban, KanbanBoard, KanbanColumn, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Label, LandingComponent, Link, type LinkProps, Login, Logout, ModeToggleSwitch, MultiSelect, MultipleSelector, type MultipleSelectorProps, type MultipleSelectorRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NotificationErrorBoundary, NotificationMenuItem, NotificationModal, NotificationToast, NotificationsList, NotificationsListContainer, OAuthClientCard, type OAuthClientCardProps, OAuthClientDetail, type OAuthClientDetailProps, OAuthClientForm, type OAuthClientFormProps, OAuthClientList, type OAuthClientListProps, OAuthClientSecretDisplay, type OAuthClientSecretDisplayProps, OAuthConsentActions, type OAuthConsentActionsProps, OAuthConsentHeader, type OAuthConsentHeaderProps, OAuthConsentScreen, type OAuthConsentScreenProps, OAuthRedirectUriInput, type OAuthRedirectUriInputProps, OAuthScopeList, type OAuthScopeListProps, OAuthScopeSelector, type OAuthScopeSelectorProps, OnboardingCard, type Option, KanbanOverlay as Overlay, PageContainer, PageContainerContentDetails, type PageContainerItems, PageContentContainer, PageSection, PasskeyButton, PasskeyList, PasskeySetupDialog, PasswordInput, type PasswordInputProps, type PlaceAddressComponents, type PlaceSuggestion, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, PushNotificationProvider, RadioGroup, RadioGroupItem, RbacContainer, RbacFeatureSection, RbacModuleTable, RbacPermissionCell, RbacPermissionPicker, RbacToolbar, ReactMarkdownContainer, RecentPagesNavigator, ReferralCodeCapture, ReferralDialog, type ReferralDialogProps, type ReferralDialogTranslations, ReferralWidget, type ReferralWidgetProps, type ReferralWidgetTranslations, RefreshUser, RelevantContentsList, RelevantUsersList, RemoveUserFromRole, ResetPassword, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleContainer, RoleDetails, RoleUsersList, RolesList, KanbanRoot as Root, RoundPageContainer, RoundPageContainerTitle, ScrollArea, ScrollBar, SecurityContainer, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, type Tab, Table, TableBody, TableCaption, TableCell, TableCellAvatar, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, TokenStatusIndicator, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TotpAuthenticatorList, TotpInput, TotpSetupDialog, TwoFactorChallenge, TwoFactorSettings, UserAvatar, UserAvatarEditor, UserAvatarList, UserContainer, UserContent, UserDeleter, UserEditor, UserIndexContainer, UserIndexDetails, UserListInAdd, UserMultiSelect, UserReactivator, UserResentInvitationEmail, UserRoleAdd, UserRolesList, UserSelector, UserStanadaloneDetails, UsersList, UsersListByContentIds, UsersListContainer, WaitlistConfirmation, WaitlistForm, WaitlistHeroSection, WaitlistList, WaitlistQuestionnaireRenderer, WaitlistSuccessState, badgeVariants, buttonVariants, cellComponent, cellDate, cellId, cellLink, cellUrl, errorToast, generateNotificationData, navigationMenuTriggerStyle, parseFiscalData, tabsListVariants, toggleVariants, triggerAssociationToast, useCarousel, useComboboxAnchor, useDebounce, useEditorDialog, useFileUpload, useSidebar };
|
|
@@ -1,22 +1,21 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import { R as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action,
|
|
3
|
-
import { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface } from '../AuthComponent-
|
|
4
|
-
export { b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials } from '../AuthComponent-
|
|
2
|
+
import { R as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action, C as ContentInterface, j as CompanyInterface, i as CompanyInput, N as NotificationInterface } from '../notification.interface-DYDZENx2.js';
|
|
3
|
+
import { A as AuthComponent, P as PasskeyInterface, T as TotpAuthenticatorInterface } from '../AuthComponent-Di8DsZ2I.js';
|
|
4
|
+
export { b as getIcon, a as getIconByModule, c as getIconByModuleName, g as getInitials } from '../AuthComponent-Di8DsZ2I.js';
|
|
5
5
|
import * as React$1 from 'react';
|
|
6
6
|
import React__default, { ReactNode, ReactElement, Dispatch, SetStateAction, Component, JSX, ComponentPropsWithoutRef } from 'react';
|
|
7
|
-
import { a as ContentInterface } from '../content.interface-D-xdYxjt.js';
|
|
8
7
|
import { PartialBlock } from '@blocknote/core';
|
|
9
|
-
import { D as DataListRetriever, R as RbacStateApi } from '../useRbacState-
|
|
8
|
+
import { D as DataListRetriever, R as RbacStateApi } from '../useRbacState-BYaSdA78.js';
|
|
10
9
|
import * as react_hook_form from 'react-hook-form';
|
|
11
10
|
import { FieldValues, UseFormReturn, Path, ControllerRenderProps, ControllerFieldState } from 'react-hook-form';
|
|
12
11
|
import { DateRange, DayPicker, DayButton } from 'react-day-picker';
|
|
13
12
|
import { DropzoneState, DropzoneOptions } from 'react-dropzone';
|
|
14
13
|
export { DropzoneOptions } from 'react-dropzone';
|
|
15
14
|
import { F as FeatureInterface, M as ModuleInterface } from '../feature.interface-CIWxo8NP.js';
|
|
16
|
-
import { B as BreadcrumbItemData } from '../
|
|
15
|
+
import { B as BreadcrumbItemData, a as HowToInterface } from '../HowToInterface-NaqSG9sE.js';
|
|
17
16
|
import { ColumnDef, ExpandedState } from '@tanstack/react-table';
|
|
18
17
|
import { J as JsonApiHydratedDataInterface } from '../ApiDataInterface-DPP8s46n.js';
|
|
19
|
-
import { b as AuthInterface } from '../auth.interface-
|
|
18
|
+
import { b as AuthInterface } from '../auth.interface-BTco8PWs.js';
|
|
20
19
|
import z from 'zod';
|
|
21
20
|
import { g as OnboardingCardRenderProps } from '../onboarding.interface-Djyl9qYu.js';
|
|
22
21
|
import { e as OAuthScopeInfo, O as OAuthClientInterface, b as OAuthClientCreateRequest, d as OAuthConsentRequest } from '../oauth.interface-vL7za9Bz.js';
|
|
@@ -235,6 +234,8 @@ type BlockNoteEditorProps = {
|
|
|
235
234
|
diffContent?: PartialBlock[];
|
|
236
235
|
placeholder?: string;
|
|
237
236
|
bordered?: boolean;
|
|
237
|
+
inlineContentSpecs?: Record<string, any>;
|
|
238
|
+
renderOverlays?: (editor: any) => React__default.ReactNode;
|
|
238
239
|
};
|
|
239
240
|
|
|
240
241
|
declare const BlockNoteEditorContainer: React__default.NamedExoticComponent<BlockNoteEditorProps>;
|
|
@@ -412,7 +413,7 @@ type FormCheckboxProps = {
|
|
|
412
413
|
};
|
|
413
414
|
declare function FormCheckbox({ form, id, name, labelBefore, description, isRequired }: FormCheckboxProps): react_jsx_runtime.JSX.Element;
|
|
414
415
|
|
|
415
|
-
declare function FormBlockNote({ form, id, name, placeholder, type, isRequired, description, testId, onEmptyChange, }: {
|
|
416
|
+
declare function FormBlockNote({ form, id, name, placeholder, type, isRequired, description, testId, onEmptyChange, inlineContentSpecs, renderOverlays, }: {
|
|
416
417
|
form: any;
|
|
417
418
|
id: string;
|
|
418
419
|
name?: string;
|
|
@@ -422,6 +423,8 @@ declare function FormBlockNote({ form, id, name, placeholder, type, isRequired,
|
|
|
422
423
|
description?: string;
|
|
423
424
|
testId?: string;
|
|
424
425
|
onEmptyChange?: (isEmpty: boolean) => void;
|
|
426
|
+
inlineContentSpecs?: Record<string, any>;
|
|
427
|
+
renderOverlays?: (editor: any) => React__default.ReactNode;
|
|
425
428
|
}): react_jsx_runtime.JSX.Element;
|
|
426
429
|
|
|
427
430
|
type FormFieldWrapperProps<T extends FieldValues> = {
|
|
@@ -533,7 +536,7 @@ interface PlaceAutocompleteProps {
|
|
|
533
536
|
}
|
|
534
537
|
declare function FormPlaceAutocomplete({ form, id, name, placeholder, disabled, testId, isRequired, onPlaceSelect, className, includeTypes, }: PlaceAutocompleteProps): react_jsx_runtime.JSX.Element;
|
|
535
538
|
|
|
536
|
-
declare function FormSelect({ form, id, name, placeholder, disabled, values, onChange, useRows, testId, allowEmpty, }: {
|
|
539
|
+
declare function FormSelect({ form, id, name, placeholder, disabled, values, onChange, useRows, testId, allowEmpty, isRequired, }: {
|
|
537
540
|
form: any;
|
|
538
541
|
id: string;
|
|
539
542
|
name?: string;
|
|
@@ -547,6 +550,7 @@ declare function FormSelect({ form, id, name, placeholder, disabled, values, onC
|
|
|
547
550
|
useRows?: boolean;
|
|
548
551
|
testId?: string;
|
|
549
552
|
allowEmpty?: boolean;
|
|
553
|
+
isRequired?: boolean;
|
|
550
554
|
}): react_jsx_runtime.JSX.Element;
|
|
551
555
|
|
|
552
556
|
declare function FormSlider({ form, id, name, disabled, showPercentage, }: {
|
|
@@ -909,6 +913,75 @@ type RelevantContentsListProps = {
|
|
|
909
913
|
};
|
|
910
914
|
declare function RelevantContentsList({ id }: RelevantContentsListProps): react_jsx_runtime.JSX.Element;
|
|
911
915
|
|
|
916
|
+
type HowToCommandProps = {
|
|
917
|
+
/** Current pathname for page relevance matching */
|
|
918
|
+
pathname: string;
|
|
919
|
+
/** Optional extra command groups to render when not searching */
|
|
920
|
+
extraGroups?: ReactNode;
|
|
921
|
+
/** Called when user starts a chat from the viewer */
|
|
922
|
+
onStartChat?: () => void;
|
|
923
|
+
};
|
|
924
|
+
declare function HowToCommand({ pathname, extraGroups, onStartChat }: HowToCommandProps): react_jsx_runtime.JSX.Element;
|
|
925
|
+
|
|
926
|
+
type HowToCommandViewerProps = {
|
|
927
|
+
howTo: HowToInterface;
|
|
928
|
+
onBack: () => void;
|
|
929
|
+
onStartChat?: () => void;
|
|
930
|
+
};
|
|
931
|
+
declare function HowToCommandViewer({ howTo, onBack, onStartChat }: HowToCommandViewerProps): react_jsx_runtime.JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare function HowToContainer(): react_jsx_runtime.JSX.Element | null;
|
|
934
|
+
|
|
935
|
+
declare function HowToListContainer(): react_jsx_runtime.JSX.Element;
|
|
936
|
+
|
|
937
|
+
declare function HowToContent(): react_jsx_runtime.JSX.Element | null;
|
|
938
|
+
|
|
939
|
+
declare function HowToDetails(): react_jsx_runtime.JSX.Element | null;
|
|
940
|
+
|
|
941
|
+
type HowToDeleterProps = {
|
|
942
|
+
howTo: HowToInterface;
|
|
943
|
+
};
|
|
944
|
+
declare function HowToDeleter(props: HowToDeleterProps): react_jsx_runtime.JSX.Element;
|
|
945
|
+
|
|
946
|
+
type HowToEditorProps = {
|
|
947
|
+
howTo?: HowToInterface;
|
|
948
|
+
propagateChanges?: (howTo: HowToInterface) => void;
|
|
949
|
+
trigger?: ReactNode;
|
|
950
|
+
forceShow?: boolean;
|
|
951
|
+
onClose?: () => void;
|
|
952
|
+
onRevalidate?: (path: string) => Promise<void>;
|
|
953
|
+
dialogOpen?: boolean;
|
|
954
|
+
onDialogOpenChange?: (open: boolean) => void;
|
|
955
|
+
};
|
|
956
|
+
declare function HowToEditor(props: HowToEditorProps): react_jsx_runtime.JSX.Element;
|
|
957
|
+
|
|
958
|
+
type HowToMultiSelectorProps = {
|
|
959
|
+
id: string;
|
|
960
|
+
form: any;
|
|
961
|
+
currentHowTo?: HowToInterface;
|
|
962
|
+
label?: string;
|
|
963
|
+
placeholder?: string;
|
|
964
|
+
onChange?: (howTos?: HowToInterface[]) => void;
|
|
965
|
+
maxCount?: number;
|
|
966
|
+
isRequired?: boolean;
|
|
967
|
+
};
|
|
968
|
+
declare function HowToMultiSelector({ id, form, currentHowTo, label, placeholder, onChange, maxCount, isRequired, }: HowToMultiSelectorProps): react_jsx_runtime.JSX.Element;
|
|
969
|
+
|
|
970
|
+
type HowToSelectorProps = {
|
|
971
|
+
id: string;
|
|
972
|
+
form: any;
|
|
973
|
+
label?: string;
|
|
974
|
+
placeholder?: string;
|
|
975
|
+
onChange?: (howTo?: HowToInterface) => void;
|
|
976
|
+
isRequired?: boolean;
|
|
977
|
+
};
|
|
978
|
+
declare function HowToSelector({ id, form, label, placeholder, onChange, isRequired, }: HowToSelectorProps): react_jsx_runtime.JSX.Element;
|
|
979
|
+
|
|
980
|
+
type HowToListProps = {
|
|
981
|
+
fullWidth?: boolean;
|
|
982
|
+
};
|
|
983
|
+
declare function HowToList({ fullWidth }: HowToListProps): react_jsx_runtime.JSX.Element;
|
|
984
|
+
|
|
912
985
|
interface Props$1 {
|
|
913
986
|
children: ReactNode;
|
|
914
987
|
fallback?: ReactNode;
|
|
@@ -2264,4 +2337,4 @@ interface MultipleSelectorRef {
|
|
|
2264
2337
|
declare function useDebounce<T>(value: T, delay?: number): T;
|
|
2265
2338
|
declare const MultipleSelector: React$1.ForwardRefExoticComponent<MultipleSelectorProps & React$1.RefAttributes<MultipleSelectorRef>>;
|
|
2266
2339
|
|
|
2267
|
-
export { AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, AdminUsersList, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllUsersListContainer, AllowedUsersDetails, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, BackupCodesDialog, Badge, BlockNoteEditorContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorDiscardDialog, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompanyConfigurationEditor, CompanyContainer, CompanyContent, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, DatePickerPopover, DateRangeSelector, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisableTwoFactorDialog, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableAvatar, EditorSheet, type EditorSheetProps, EntityAvatar, ErrorDetails, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileInput, FileUploader, FileUploaderContent, FileUploaderItem, FiscalDataDisplay, type FiscalDataHandle, ForgotPassword, Form, FormBlockNote, FormCheckbox, FormDate, FormDateTime, FormFeatures, FormFieldWrapper, FormInput, FormPassword, FormPlaceAutocomplete, FormRoles, FormSelect, FormSlider, FormSwitch, FormTextarea, GdprConsentCheckbox, GdprConsentSection, type GenerateTableStructureParams, Header, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, ItalianFiscalData, ItalianFiscalDataDisplay, type ItalianFiscalDataProps, KanbanItem as Item, KanbanItemHandle as ItemHandle, KanbanRoot as Kanban, KanbanBoard, KanbanColumn, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Label, LandingComponent, Link, type LinkProps, Login, Logout, ModeToggleSwitch, MultiSelect, MultipleSelector, type MultipleSelectorProps, type MultipleSelectorRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NotificationErrorBoundary, NotificationMenuItem, NotificationModal, NotificationToast, NotificationsList, NotificationsListContainer, OAuthClientCard, type OAuthClientCardProps, OAuthClientDetail, type OAuthClientDetailProps, OAuthClientForm, type OAuthClientFormProps, OAuthClientList, type OAuthClientListProps, OAuthClientSecretDisplay, type OAuthClientSecretDisplayProps, OAuthConsentActions, type OAuthConsentActionsProps, OAuthConsentHeader, type OAuthConsentHeaderProps, OAuthConsentScreen, type OAuthConsentScreenProps, OAuthRedirectUriInput, type OAuthRedirectUriInputProps, OAuthScopeList, type OAuthScopeListProps, OAuthScopeSelector, type OAuthScopeSelectorProps, OnboardingCard, type Option, KanbanOverlay as Overlay, PageContainer, PageContainerContentDetails, type PageContainerItems, PageContentContainer, PageSection, PasskeyButton, PasskeyList, PasskeySetupDialog, PasswordInput, type PasswordInputProps, type PlaceAddressComponents, type PlaceSuggestion, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, PushNotificationProvider, RadioGroup, RadioGroupItem, RbacContainer, RbacFeatureSection, RbacModuleTable, RbacPermissionCell, RbacPermissionPicker, RbacToolbar, ReactMarkdownContainer, RecentPagesNavigator, ReferralCodeCapture, ReferralDialog, type ReferralDialogProps, type ReferralDialogTranslations, ReferralWidget, type ReferralWidgetProps, type ReferralWidgetTranslations, RefreshUser, RelevantContentsList, RelevantUsersList, RemoveUserFromRole, ResetPassword, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleContainer, RoleDetails, RoleUsersList, RolesList, KanbanRoot as Root, RoundPageContainer, RoundPageContainerTitle, ScrollArea, ScrollBar, SecurityContainer, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, type Tab, Table, TableBody, TableCaption, TableCell, TableCellAvatar, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, TokenStatusIndicator, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TotpAuthenticatorList, TotpInput, TotpSetupDialog, TwoFactorChallenge, TwoFactorSettings, UserAvatar, UserAvatarEditor, UserAvatarList, UserContainer, UserContent, UserDeleter, UserEditor, UserIndexContainer, UserIndexDetails, UserListInAdd, UserMultiSelect, UserReactivator, UserResentInvitationEmail, UserRoleAdd, UserRolesList, UserSelector, UserStanadaloneDetails, UsersList, UsersListByContentIds, UsersListContainer, WaitlistConfirmation, WaitlistForm, WaitlistHeroSection, WaitlistList, WaitlistQuestionnaireRenderer, WaitlistSuccessState, badgeVariants, buttonVariants, cellComponent, cellDate, cellId, cellLink, cellUrl, errorToast, generateNotificationData, navigationMenuTriggerStyle, parseFiscalData, tabsListVariants, toggleVariants, triggerAssociationToast, useCarousel, useComboboxAnchor, useDebounce, useEditorDialog, useFileUpload, useSidebar };
|
|
2340
|
+
export { AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, AdminUsersList, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllUsersListContainer, AllowedUsersDetails, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, BackupCodesDialog, Badge, BlockNoteEditorContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorDiscardDialog, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompanyConfigurationEditor, CompanyContainer, CompanyContent, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, DatePickerPopover, DateRangeSelector, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisableTwoFactorDialog, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableAvatar, EditorSheet, type EditorSheetProps, EntityAvatar, ErrorDetails, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileInput, FileUploader, FileUploaderContent, FileUploaderItem, FiscalDataDisplay, type FiscalDataHandle, ForgotPassword, Form, FormBlockNote, FormCheckbox, FormDate, FormDateTime, FormFeatures, FormFieldWrapper, FormInput, FormPassword, FormPlaceAutocomplete, FormRoles, FormSelect, FormSlider, FormSwitch, FormTextarea, GdprConsentCheckbox, GdprConsentSection, type GenerateTableStructureParams, Header, HoverCard, HoverCardContent, HoverCardTrigger, HowToCommand, HowToCommandViewer, HowToContainer, HowToContent, HowToDeleter, HowToDetails, HowToEditor, HowToList, HowToListContainer, HowToMultiSelector, HowToSelector, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, ItalianFiscalData, ItalianFiscalDataDisplay, type ItalianFiscalDataProps, KanbanItem as Item, KanbanItemHandle as ItemHandle, KanbanRoot as Kanban, KanbanBoard, KanbanColumn, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Label, LandingComponent, Link, type LinkProps, Login, Logout, ModeToggleSwitch, MultiSelect, MultipleSelector, type MultipleSelectorProps, type MultipleSelectorRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NotificationErrorBoundary, NotificationMenuItem, NotificationModal, NotificationToast, NotificationsList, NotificationsListContainer, OAuthClientCard, type OAuthClientCardProps, OAuthClientDetail, type OAuthClientDetailProps, OAuthClientForm, type OAuthClientFormProps, OAuthClientList, type OAuthClientListProps, OAuthClientSecretDisplay, type OAuthClientSecretDisplayProps, OAuthConsentActions, type OAuthConsentActionsProps, OAuthConsentHeader, type OAuthConsentHeaderProps, OAuthConsentScreen, type OAuthConsentScreenProps, OAuthRedirectUriInput, type OAuthRedirectUriInputProps, OAuthScopeList, type OAuthScopeListProps, OAuthScopeSelector, type OAuthScopeSelectorProps, OnboardingCard, type Option, KanbanOverlay as Overlay, PageContainer, PageContainerContentDetails, type PageContainerItems, PageContentContainer, PageSection, PasskeyButton, PasskeyList, PasskeySetupDialog, PasswordInput, type PasswordInputProps, type PlaceAddressComponents, type PlaceSuggestion, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, PushNotificationProvider, RadioGroup, RadioGroupItem, RbacContainer, RbacFeatureSection, RbacModuleTable, RbacPermissionCell, RbacPermissionPicker, RbacToolbar, ReactMarkdownContainer, RecentPagesNavigator, ReferralCodeCapture, ReferralDialog, type ReferralDialogProps, type ReferralDialogTranslations, ReferralWidget, type ReferralWidgetProps, type ReferralWidgetTranslations, RefreshUser, RelevantContentsList, RelevantUsersList, RemoveUserFromRole, ResetPassword, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleContainer, RoleDetails, RoleUsersList, RolesList, KanbanRoot as Root, RoundPageContainer, RoundPageContainerTitle, ScrollArea, ScrollBar, SecurityContainer, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, type Tab, Table, TableBody, TableCaption, TableCell, TableCellAvatar, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, TokenStatusIndicator, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TotpAuthenticatorList, TotpInput, TotpSetupDialog, TwoFactorChallenge, TwoFactorSettings, UserAvatar, UserAvatarEditor, UserAvatarList, UserContainer, UserContent, UserDeleter, UserEditor, UserIndexContainer, UserIndexDetails, UserListInAdd, UserMultiSelect, UserReactivator, UserResentInvitationEmail, UserRoleAdd, UserRolesList, UserSelector, UserStanadaloneDetails, UsersList, UsersListByContentIds, UsersListContainer, WaitlistConfirmation, WaitlistForm, WaitlistHeroSection, WaitlistList, WaitlistQuestionnaireRenderer, WaitlistSuccessState, badgeVariants, buttonVariants, cellComponent, cellDate, cellId, cellLink, cellUrl, errorToast, generateNotificationData, navigationMenuTriggerStyle, parseFiscalData, tabsListVariants, toggleVariants, triggerAssociationToast, useCarousel, useComboboxAnchor, useDebounce, useEditorDialog, useFileUpload, useSidebar };
|