@carlonicora/nextjs-jsonapi 1.84.0 → 1.86.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-ZNACEXKX.mjs → BlockNoteEditor-7TZA4XEN.mjs} +3 -3
- package/dist/{BlockNoteEditor-PJWPR4IU.js → BlockNoteEditor-KRDP6OSE.js} +7 -7
- package/dist/{BlockNoteEditor-PJWPR4IU.js.map → BlockNoteEditor-KRDP6OSE.js.map} +1 -1
- package/dist/billing/index.js +303 -303
- package/dist/billing/index.mjs +2 -2
- package/dist/{chunk-ZEJSPTHS.js → chunk-2AK4GRIB.js} +19 -11
- package/dist/chunk-2AK4GRIB.js.map +1 -0
- package/dist/{chunk-B7ZH2R62.js → chunk-AMP2ZDAV.js} +93 -83
- package/dist/chunk-AMP2ZDAV.js.map +1 -0
- package/dist/{chunk-CPXN5OGI.mjs → chunk-CZ56O6JZ.mjs} +22 -12
- package/dist/chunk-CZ56O6JZ.mjs.map +1 -0
- package/dist/{chunk-PV5V6CVW.mjs → chunk-NEJ7CDM3.mjs} +9 -1
- package/dist/chunk-NEJ7CDM3.mjs.map +1 -0
- package/dist/client/index.d.mts +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.js +5 -3
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +4 -2
- package/dist/components/index.d.mts +4 -2
- package/dist/components/index.d.ts +4 -2
- package/dist/components/index.js +3 -3
- package/dist/components/index.mjs +2 -2
- package/dist/{config-B5oBQVEA.d.ts → config-CLQynoaa.d.ts} +15 -1
- package/dist/{config-Bx_uh22h.d.mts → config-k61pe_o2.d.mts} +15 -1
- package/dist/contexts/index.js +3 -3
- package/dist/contexts/index.mjs +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
- package/src/client/config.ts +20 -0
- package/src/components/forms/CommonEditorButtons.tsx +7 -4
- package/src/components/forms/EditorSheet.tsx +9 -1
- package/src/features/auth/components/buttons/GoogleSignInButton.tsx +2 -2
- package/src/features/auth/components/details/LandingComponent.tsx +2 -2
- package/src/features/auth/components/forms/Login.tsx +2 -2
- package/src/features/auth/components/forms/Register.tsx +3 -3
- package/src/index.ts +8 -1
- package/dist/chunk-B7ZH2R62.js.map +0 -1
- package/dist/chunk-CPXN5OGI.mjs.map +0 -1
- package/dist/chunk-PV5V6CVW.mjs.map +0 -1
- package/dist/chunk-ZEJSPTHS.js.map +0 -1
- /package/dist/{BlockNoteEditor-ZNACEXKX.mjs.map → BlockNoteEditor-7TZA4XEN.mjs.map} +0 -0
|
@@ -34,6 +34,13 @@ function getApiUrl() {
|
|
|
34
34
|
return "";
|
|
35
35
|
}
|
|
36
36
|
__name(getApiUrl, "getApiUrl");
|
|
37
|
+
function getPublicApiUrl() {
|
|
38
|
+
if (typeof process !== "undefined" && process.env?.NEXT_PUBLIC_API_URL) {
|
|
39
|
+
return process.env.NEXT_PUBLIC_API_URL;
|
|
40
|
+
}
|
|
41
|
+
return "";
|
|
42
|
+
}
|
|
43
|
+
__name(getPublicApiUrl, "getPublicApiUrl");
|
|
37
44
|
function getAppUrl() {
|
|
38
45
|
if (_clientConfig?.appUrl) {
|
|
39
46
|
return _clientConfig.appUrl;
|
|
@@ -241,6 +248,7 @@ export {
|
|
|
241
248
|
configureJsonApi,
|
|
242
249
|
configureClientConfig,
|
|
243
250
|
getApiUrl,
|
|
251
|
+
getPublicApiUrl,
|
|
244
252
|
getAppUrl,
|
|
245
253
|
getTrackablePages,
|
|
246
254
|
getStripePublishableKey,
|
|
@@ -268,4 +276,4 @@ export {
|
|
|
268
276
|
ACTION_TYPES,
|
|
269
277
|
RbacService
|
|
270
278
|
};
|
|
271
|
-
//# sourceMappingURL=chunk-
|
|
279
|
+
//# sourceMappingURL=chunk-NEJ7CDM3.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/client/config.ts","../src/i18n/config.ts","../src/login/config.ts","../src/roles/config.ts","../src/features/waitlist/config/waitlist.config.ts","../src/features/referral/config.ts","../src/features/rbac/data/RbacTypes.ts","../src/features/rbac/data/RbacService.ts"],"sourcesContent":["\"use client\";\n\nimport { ModuleWithPermissions } from \"../permissions/types\";\nimport { setBootstrapper } from \"../core/registry/bootstrapStore\";\n\n// Config storage for client-side contexts\nlet _clientConfig: {\n apiUrl: string;\n appUrl?: string;\n trackablePages?: ModuleWithPermissions[];\n bootstrapper?: () => void;\n additionalHeaders?: Record<string, string>;\n stripePublishableKey?: string;\n} | null = null;\n\n/**\n * Configure the JSON:API client. This is the main configuration function.\n * This is typically called during app initialization.\n */\nexport function configureJsonApi(config: {\n apiUrl: string;\n appUrl?: string;\n trackablePages?: ModuleWithPermissions[];\n bootstrapper?: () => void;\n additionalHeaders?: Record<string, string>;\n stripePublishableKey?: string;\n}): void {\n _clientConfig = config;\n // Register and call bootstrapper to register all modules\n if (config.bootstrapper) {\n setBootstrapper(config.bootstrapper);\n config.bootstrapper();\n }\n}\n\n/**\n * Configure the client config. This is typically called during app initialization.\n * @deprecated Use configureJsonApi instead\n */\nexport function configureClientConfig(config: {\n apiUrl: string;\n appUrl?: string;\n trackablePages?: ModuleWithPermissions[];\n}): void {\n _clientConfig = config;\n}\n\n/**\n * Get the configured API URL.\n *\n * This may resolve to an internal/private host (e.g. a docker-network\n * hostname) when configured to do so for SSR fetches. Do NOT use this for\n * URLs that are rendered into HTML and followed by the browser — use\n * `getPublicApiUrl()` instead.\n */\nexport function getApiUrl(): string {\n if (_clientConfig?.apiUrl) {\n return _clientConfig.apiUrl;\n }\n if (typeof process !== \"undefined\" && process.env?.NEXT_PUBLIC_API_URL) {\n return process.env.NEXT_PUBLIC_API_URL;\n }\n return \"\";\n}\n\n/**\n * Get the public-facing API URL.\n *\n * Always sourced from `NEXT_PUBLIC_API_URL` so it is identical on server\n * and client, and reachable from the user's browser. Use for any URL that\n * gets rendered into HTML the browser will navigate to (links, redirects,\n * OAuth hrefs).\n */\nexport function getPublicApiUrl(): string {\n if (typeof process !== \"undefined\" && process.env?.NEXT_PUBLIC_API_URL) {\n return process.env.NEXT_PUBLIC_API_URL;\n }\n return \"\";\n}\n\n/**\n * Get the configured app URL.\n */\nexport function getAppUrl(): string {\n if (_clientConfig?.appUrl) {\n return _clientConfig.appUrl;\n }\n if (typeof process !== \"undefined\" && process.env?.NEXT_PUBLIC_APP_URL) {\n return process.env.NEXT_PUBLIC_APP_URL;\n }\n if (typeof window !== \"undefined\") {\n return window.location.origin;\n }\n return \"\";\n}\n\n/**\n * Get the configured trackable pages.\n */\nexport function getTrackablePages(): ModuleWithPermissions[] {\n return _clientConfig?.trackablePages ?? [];\n}\n\n/**\n * Get the configured Stripe publishable key.\n */\nexport function getStripePublishableKey(): string | undefined {\n return _clientConfig?.stripePublishableKey;\n}\n","import { ComponentType } from \"react\";\n\n// Types for injected hooks\nexport interface I18nRouter {\n push: (href: string) => void;\n replace: (href: string) => void;\n back: () => void;\n forward: () => void;\n refresh: () => void;\n prefetch: (href: string) => void;\n}\n\nexport type UseRouterHook = () => I18nRouter;\nexport type UseTranslationsHook = (namespace?: string) => (key: string, values?: Record<string, any>) => string;\nexport type UseLocaleHook = () => string;\n\nexport type UseDateFnsLocaleHook = () => any; // date-fns Locale type\nexport type LinkComponent = ComponentType<{ href: string; children: React.ReactNode; [key: string]: any }>;\n\nexport interface I18nConfig {\n useRouter: UseRouterHook;\n useTranslations: UseTranslationsHook;\n useLocale?: UseLocaleHook;\n useDateFnsLocale?: UseDateFnsLocaleHook;\n Link: LinkComponent;\n usePathname: () => string;\n}\n\n// Private storage\nlet _config: I18nConfig | null = null;\n\n// Configuration function (called by app at startup)\nexport function configureI18n(config: I18nConfig): void {\n _config = config;\n}\n\n// Hooks for library components to use\nexport function useI18nRouter(): I18nRouter {\n if (!_config?.useRouter) {\n throw new Error(\"i18n not configured. Call configureI18n() at app startup.\");\n }\n return _config.useRouter();\n}\n\nexport function useI18nTranslations(namespace?: string): (key: string, values?: Record<string, any>) => string {\n if (!_config?.useTranslations) {\n // Fallback: return key as-is (safe for server/client)\n return (key: string) => key;\n }\n return _config.useTranslations(namespace);\n}\n\nexport function getI18nLink(): LinkComponent {\n if (!_config?.Link) {\n throw new Error(\"i18n not configured. Call configureI18n() at app startup.\");\n }\n return _config.Link;\n}\n\nexport function useI18nLocale(): string {\n if (_config?.useLocale) {\n return _config.useLocale();\n }\n // Fallback to English (safe for server/client)\n return \"en\";\n}\n\nexport function useI18nDateFnsLocale(): any {\n if (_config?.useDateFnsLocale) {\n return _config.useDateFnsLocale();\n }\n // Fallback to undefined (Calendar will use default)\n return undefined;\n}\n","let _useDiscordAuth: boolean = false;\nlet _useGoogleAuth: boolean = false;\nlet _useInternalAuth: boolean = true;\nlet _allowRegistration: boolean = true;\nlet _registrationMode: \"open\" | \"closed\" | \"waitlist\" = \"open\";\n\nexport type RegistrationMode = \"open\" | \"closed\" | \"waitlist\";\n\nexport interface LoginConfig {\n discordClientId?: string;\n googleClientId?: string;\n useInternalAuth?: boolean;\n allowRegistration?: boolean;\n registrationMode?: RegistrationMode;\n}\n\nexport function configureLogin(params: LoginConfig): void {\n _useDiscordAuth = !!params.discordClientId;\n _useGoogleAuth = !!params.googleClientId;\n _useInternalAuth = params.useInternalAuth ?? true;\n _allowRegistration = params.allowRegistration ?? true;\n _registrationMode = params.registrationMode ?? \"open\";\n}\n\nexport function isDiscordAuthEnabled(): boolean {\n return _useDiscordAuth;\n}\n\nexport function isGoogleAuthEnabled(): boolean {\n return _useGoogleAuth;\n}\n\nexport function isInternalAuthEnabled(): boolean {\n return _useInternalAuth;\n}\n\nexport function isRegistrationAllowed(): boolean {\n return _allowRegistration;\n}\n\nexport function getRegistrationMode(): RegistrationMode {\n return _registrationMode;\n}\n","/**\n * Role ID configuration interface\n * Apps provide their role IDs via configureRoles()\n */\nexport interface RoleIdConfig {\n Administrator: string;\n CompanyAdministrator: string;\n [key: string]: string; // Allow additional roles\n}\n\n// Private storage for the injected role IDs\nlet _roleId: RoleIdConfig | null = null;\n\n/**\n * Configure role IDs for the library\n * Call this at app startup to provide role ID constants\n *\n * @example\n * ```typescript\n * import { configureRoles } from \"@carlonicora/nextjs-jsonapi\";\n * import { RoleId } from \"@phlow/shared\";\n *\n * configureRoles(RoleId);\n * ```\n */\nexport function configureRoles(roleId: RoleIdConfig): void {\n _roleId = roleId;\n}\n\n/**\n * Get configured role IDs\n * @throws Error if roles not configured\n */\nexport function getRoleId(): RoleIdConfig {\n if (!_roleId) {\n throw new Error(\"Roles not configured. Call configureRoles() at app startup.\");\n }\n return _roleId;\n}\n\n/**\n * Check if roles have been configured\n */\nexport function isRolesConfigured(): boolean {\n return _roleId !== null;\n}\n","export type QuestionnaireFieldType = \"text\" | \"textarea\" | \"select\" | \"checkbox\";\n\nexport interface QuestionnaireOption {\n value: string;\n label: string;\n description?: string;\n}\n\nexport interface QuestionnaireField {\n id: string;\n type: QuestionnaireFieldType;\n label: string;\n description?: string;\n placeholder?: string;\n required?: boolean;\n options?: QuestionnaireOption[];\n}\n\nexport interface WaitlistConfig {\n questionnaire?: QuestionnaireField[];\n heroTitle?: string;\n heroSubtitle?: string;\n heroDescription?: string;\n benefits?: string[];\n}\n\nlet _waitlistConfig: WaitlistConfig = {};\n\nexport function configureWaitlist(config: WaitlistConfig): void {\n _waitlistConfig = config;\n}\n\nexport function getWaitlistConfig(): WaitlistConfig {\n return _waitlistConfig;\n}\n","/**\n * Configuration interface for frontend referral feature.\n */\nexport interface ReferralConfig {\n /**\n * Whether the referral feature is enabled.\n * When false, components render nothing and hooks return null.\n * @default false\n */\n enabled?: boolean;\n\n /**\n * Name of the cookie used to store referral codes.\n * @default \"referral_code\"\n */\n cookieName?: string;\n\n /**\n * Number of days the referral cookie is valid.\n * @default 30\n */\n cookieDays?: number;\n\n /**\n * Query parameter name for referral code in URL.\n * @default \"ref\"\n */\n urlParamName?: string;\n\n /**\n * Base URL for referral links.\n * @default window.location.origin (client-side only)\n */\n referralUrlBase?: string;\n\n /**\n * Path to append to base URL for referral links.\n * @default \"/\"\n */\n referralPath?: string;\n}\n\n/**\n * Default configuration values\n */\nexport const DEFAULT_REFERRAL_CONFIG: Required<ReferralConfig> = {\n enabled: false,\n cookieName: \"referral_code\",\n cookieDays: 30,\n urlParamName: \"ref\",\n referralUrlBase: \"\",\n referralPath: \"/\",\n};\n\n// Private storage for configuration\nlet _referralConfig: Required<ReferralConfig> = { ...DEFAULT_REFERRAL_CONFIG };\n\n/**\n * Configure referral feature settings.\n * Call this at app startup to enable and configure referral functionality.\n *\n * @example\n * ```typescript\n * import { configureReferral } from \"@carlonicora/nextjs-jsonapi\";\n *\n * configureReferral({\n * enabled: process.env.NEXT_PUBLIC_REFERRAL_ENABLED === 'true',\n * cookieDays: 30,\n * });\n * ```\n */\nexport function configureReferral(config: ReferralConfig): void {\n _referralConfig = { ...DEFAULT_REFERRAL_CONFIG, ...config };\n}\n\n/**\n * Get the current referral configuration.\n * @internal\n */\nexport function getReferralConfig(): Required<ReferralConfig> {\n return _referralConfig;\n}\n\n/**\n * Check if referral feature is enabled.\n */\nexport function isReferralEnabled(): boolean {\n return _referralConfig.enabled;\n}\n","export const COMPANY_ADMINISTRATOR_ROLE_ID = \"2e1eee00-6cba-4506-9059-ccd24e4ea5b0\";\n\nexport type PermissionValue = boolean | string;\n\nexport type ActionType = \"read\" | \"create\" | \"update\" | \"delete\";\n\nexport const ACTION_TYPES: ActionType[] = [\"read\", \"create\", \"update\", \"delete\"];\n\n/** The permissions object shape used by both Module and PermissionMapping entities */\nexport type PermissionsMap = {\n create?: PermissionValue;\n read?: PermissionValue;\n update?: PermissionValue;\n delete?: PermissionValue;\n};\n\n/**\n * Declarative-RBAC matrix types.\n *\n * Mirror of the library types defined in\n * `packages/nestjs-neo4jsonapi/src/foundations/rbac/dsl/types.ts`.\n * Frontend does not import from backend, so the shape is redefined here.\n *\n * A `PermToken` represents a single permission entry:\n * - `scope: true` → unconditional (e.g. full read of the module)\n * - `scope: false` → nothing (rarely used, mostly a placeholder)\n * - `scope: \"path\"` → scoped by relationship path (e.g. \"orders.account\")\n */\nexport type PermToken = { action: string; scope: boolean | string };\n\n/**\n * A per-module block of the matrix. Always has a `default` row (permissions\n * granted to every role). Additional keys are role IDs → role-specific\n * permission tokens that are unioned with `default` to produce the effective\n * permissions for that role in that module.\n */\nexport type RbacModuleBlock = { default: PermToken[] } & Record<string, PermToken[]>;\n\n/**\n * The full RBAC matrix as served by the dev endpoint `GET /_dev/rbac/matrix`.\n * Keys are module IDs; values are module blocks.\n */\nexport type RbacMatrix = Record<string, RbacModuleBlock>;\n","import { AbstractService, EndpointCreator, HttpMethod, Modules } from \"../../../core\";\nimport type { RbacMatrixModel } from \"./RbacMatrixModel\";\nimport type { RbacMatrix } from \"./RbacTypes\";\n\n/**\n * RbacService — fetches RBAC configuration for the admin UI.\n *\n * Declarative-matrix methods (`fetchMatrix`, `saveMatrix`) talk to the\n * dev-only endpoints added in\n * `packages/nestjs-neo4jsonapi/.../rbac-dev.controller.ts`. The controller\n * speaks JSON:API (singleton resource with `type: \"rbac-matrix\"`, `id:\n * \"singleton\"`), so these methods go through the standard `callApi()`\n * pipeline like every other service in the codebase.\n *\n * The backend only registers these routes when `devMode` is enabled on\n * `RbacModule.register` (see `apps/api/src/features/features.modules.ts`).\n * In production the routes return 404; callers should guard with a dev-mode\n * check.\n */\nexport class RbacService extends AbstractService {\n /**\n * Fetch the current RBAC matrix plus each module's known BFS relationship\n * paths (used by the permission picker as scope suggestions).\n *\n * Dev-only endpoint — see class header.\n */\n static async fetchMatrix(): Promise<{\n matrix: RbacMatrix;\n modulePaths: Record<string, readonly string[]>;\n }> {\n const endpoint = new EndpointCreator({ endpoint: Modules.RbacMatrix }).generate();\n\n const model = await this.callApi<RbacMatrixModel>({\n type: Modules.RbacMatrix,\n method: HttpMethod.GET,\n endpoint,\n });\n\n return {\n matrix: model.matrix ?? {},\n modulePaths: model.modulePaths ?? {},\n };\n }\n\n /**\n * Persist a matrix back to the declarative `permissions.ts` file.\n *\n * The backend serializes the matrix to formatted TypeScript using the\n * provided `roleNames` / `moduleNames` lookup tables (so the emitted file\n * references `RoleId.X` / `ModuleId.X` rather than raw UUIDs) and writes\n * it to `outputPath` (absolute, or relative to the repo root).\n *\n * Dev-only endpoint — see class header.\n */\n static async saveMatrix(args: {\n matrix: RbacMatrix;\n roleNames: Record<string, string>;\n moduleNames: Record<string, string>;\n outputPath: string;\n }): Promise<{ bytesWritten: number; path: string }> {\n const endpoint = new EndpointCreator({ endpoint: Modules.RbacMatrix }).generate();\n\n const model = await this.callApi<RbacMatrixModel>({\n type: Modules.RbacMatrix,\n method: HttpMethod.PUT,\n endpoint,\n input: args,\n });\n\n return {\n bytesWritten: model.bytesWritten ?? 0,\n path: model.path ?? \"\",\n };\n }\n}\n"],"mappings":";;;;;;;;;;;;;AAMA,IAAI,gBAOO;AAMJ,SAAS,iBAAiB,QAOxB;AACP,kBAAgB;AAEhB,MAAI,OAAO,cAAc;AACvB,oBAAgB,OAAO,YAAY;AACnC,WAAO,aAAa;AAAA,EACtB;AACF;AAdgB;AAoBT,SAAS,sBAAsB,QAI7B;AACP,kBAAgB;AAClB;AANgB;AAgBT,SAAS,YAAoB;AAClC,MAAI,eAAe,QAAQ;AACzB,WAAO,cAAc;AAAA,EACvB;AACA,MAAI,OAAO,YAAY,eAAe,QAAQ,KAAK,qBAAqB;AACtE,WAAO,QAAQ,IAAI;AAAA,EACrB;AACA,SAAO;AACT;AARgB;AAkBT,SAAS,kBAA0B;AACxC,MAAI,OAAO,YAAY,eAAe,QAAQ,KAAK,qBAAqB;AACtE,WAAO,QAAQ,IAAI;AAAA,EACrB;AACA,SAAO;AACT;AALgB;AAUT,SAAS,YAAoB;AAClC,MAAI,eAAe,QAAQ;AACzB,WAAO,cAAc;AAAA,EACvB;AACA,MAAI,OAAO,YAAY,eAAe,QAAQ,KAAK,qBAAqB;AACtE,WAAO,QAAQ,IAAI;AAAA,EACrB;AACA,MAAI,OAAO,WAAW,aAAa;AACjC,WAAO,OAAO,SAAS;AAAA,EACzB;AACA,SAAO;AACT;AAXgB;AAgBT,SAAS,oBAA6C;AAC3D,SAAO,eAAe,kBAAkB,CAAC;AAC3C;AAFgB;AAOT,SAAS,0BAA8C;AAC5D,SAAO,eAAe;AACxB;AAFgB;;;AC7EhB,IAAI,UAA6B;AAG1B,SAAS,cAAc,QAA0B;AACtD,YAAU;AACZ;AAFgB;AAKT,SAAS,gBAA4B;AAC1C,MAAI,CAAC,SAAS,WAAW;AACvB,UAAM,IAAI,MAAM,2DAA2D;AAAA,EAC7E;AACA,SAAO,QAAQ,UAAU;AAC3B;AALgB;AAOT,SAAS,oBAAoB,WAA2E;AAC7G,MAAI,CAAC,SAAS,iBAAiB;AAE7B,WAAO,CAAC,QAAgB;AAAA,EAC1B;AACA,SAAO,QAAQ,gBAAgB,SAAS;AAC1C;AANgB;AAQT,SAAS,cAA6B;AAC3C,MAAI,CAAC,SAAS,MAAM;AAClB,UAAM,IAAI,MAAM,2DAA2D;AAAA,EAC7E;AACA,SAAO,QAAQ;AACjB;AALgB;AAOT,SAAS,gBAAwB;AACtC,MAAI,SAAS,WAAW;AACtB,WAAO,QAAQ,UAAU;AAAA,EAC3B;AAEA,SAAO;AACT;AANgB;AAQT,SAAS,uBAA4B;AAC1C,MAAI,SAAS,kBAAkB;AAC7B,WAAO,QAAQ,iBAAiB;AAAA,EAClC;AAEA,SAAO;AACT;AANgB;;;ACnEhB,IAAI,kBAA2B;AAC/B,IAAI,iBAA0B;AAC9B,IAAI,mBAA4B;AAChC,IAAI,qBAA8B;AAClC,IAAI,oBAAoD;AAYjD,SAAS,eAAe,QAA2B;AACxD,oBAAkB,CAAC,CAAC,OAAO;AAC3B,mBAAiB,CAAC,CAAC,OAAO;AAC1B,qBAAmB,OAAO,mBAAmB;AAC7C,uBAAqB,OAAO,qBAAqB;AACjD,sBAAoB,OAAO,oBAAoB;AACjD;AANgB;AAQT,SAAS,uBAAgC;AAC9C,SAAO;AACT;AAFgB;AAIT,SAAS,sBAA+B;AAC7C,SAAO;AACT;AAFgB;AAIT,SAAS,wBAAiC;AAC/C,SAAO;AACT;AAFgB;AAIT,SAAS,wBAAiC;AAC/C,SAAO;AACT;AAFgB;AAIT,SAAS,sBAAwC;AACtD,SAAO;AACT;AAFgB;;;AC7BhB,IAAI,UAA+B;AAc5B,SAAS,eAAe,QAA4B;AACzD,YAAU;AACZ;AAFgB;AAQT,SAAS,YAA0B;AACxC,MAAI,CAAC,SAAS;AACZ,UAAM,IAAI,MAAM,6DAA6D;AAAA,EAC/E;AACA,SAAO;AACT;AALgB;AAUT,SAAS,oBAA6B;AAC3C,SAAO,YAAY;AACrB;AAFgB;;;ACjBhB,IAAI,kBAAkC,CAAC;AAEhC,SAAS,kBAAkB,QAA8B;AAC9D,oBAAkB;AACpB;AAFgB;AAIT,SAAS,oBAAoC;AAClD,SAAO;AACT;AAFgB;;;ACaT,IAAM,0BAAoD;AAAA,EAC/D,SAAS;AAAA,EACT,YAAY;AAAA,EACZ,YAAY;AAAA,EACZ,cAAc;AAAA,EACd,iBAAiB;AAAA,EACjB,cAAc;AAChB;AAGA,IAAI,kBAA4C,EAAE,GAAG,wBAAwB;AAgBtE,SAAS,kBAAkB,QAA8B;AAC9D,oBAAkB,EAAE,GAAG,yBAAyB,GAAG,OAAO;AAC5D;AAFgB;AAQT,SAAS,oBAA8C;AAC5D,SAAO;AACT;AAFgB;AAOT,SAAS,oBAA6B;AAC3C,SAAO,gBAAgB;AACzB;AAFgB;;;ACtFT,IAAM,gCAAgC;AAMtC,IAAM,eAA6B,CAAC,QAAQ,UAAU,UAAU,QAAQ;;;ACaxE,IAAM,cAAN,cAA0B,gBAAgB;AAAA,EAnBjD,OAmBiD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAO/C,aAAa,cAGV;AACD,UAAM,WAAW,IAAI,gBAAgB,EAAE,UAAU,QAAQ,WAAW,CAAC,EAAE,SAAS;AAEhF,UAAM,QAAQ,MAAM,KAAK,QAAyB;AAAA,MAChD,MAAM,QAAQ;AAAA,MACd;AAAA,MACA;AAAA,IACF,CAAC;AAED,WAAO;AAAA,MACL,QAAQ,MAAM,UAAU,CAAC;AAAA,MACzB,aAAa,MAAM,eAAe,CAAC;AAAA,IACrC;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAYA,aAAa,WAAW,MAK4B;AAClD,UAAM,WAAW,IAAI,gBAAgB,EAAE,UAAU,QAAQ,WAAW,CAAC,EAAE,SAAS;AAEhF,UAAM,QAAQ,MAAM,KAAK,QAAyB;AAAA,MAChD,MAAM,QAAQ;AAAA,MACd;AAAA,MACA;AAAA,MACA,OAAO;AAAA,IACT,CAAC;AAED,WAAO;AAAA,MACL,cAAc,MAAM,gBAAgB;AAAA,MACpC,MAAM,MAAM,QAAQ;AAAA,IACtB;AAAA,EACF;AACF;","names":[]}
|
package/dist/client/index.d.mts
CHANGED
|
@@ -8,7 +8,7 @@ import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface
|
|
|
8
8
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-rsXRL_Hn.mjs';
|
|
9
9
|
import { A as ApiData } from '../ApiData-DPKNfY-9.mjs';
|
|
10
10
|
import { M as ModuleWithPermissions, b as PageUrl, C as ContentInterface, l as RoleInterface, U as UserInterface } from '../notification.interface-DLZGtV7Z.mjs';
|
|
11
|
-
export { I as I18nConfig,
|
|
11
|
+
export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, n as UseLocaleHook, o as UseRouterHook, p as UseTranslationsHook, h as configureClientConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, i as getI18nLink, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages, u as useI18nDateFnsLocale, j as useI18nLocale, k as useI18nRouter, l as useI18nTranslations } from '../config-k61pe_o2.mjs';
|
|
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';
|
package/dist/client/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface
|
|
|
8
8
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-CWLvSCvS.js';
|
|
9
9
|
import { A as ApiData } from '../ApiData-DPKNfY-9.js';
|
|
10
10
|
import { M as ModuleWithPermissions, b as PageUrl, C as ContentInterface, l as RoleInterface, U as UserInterface } from '../notification.interface-aLEJbA_g.js';
|
|
11
|
-
export { I as I18nConfig,
|
|
11
|
+
export { I as I18nConfig, m as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, n as UseLocaleHook, o as UseRouterHook, p as UseTranslationsHook, h as configureClientConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, i as getI18nLink, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages, u as useI18nDateFnsLocale, j as useI18nLocale, k as useI18nRouter, l as useI18nTranslations } from '../config-CLQynoaa.js';
|
|
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';
|
package/dist/client/index.js
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
var
|
|
29
|
+
var _chunkAMP2ZDAVjs = require('../chunk-AMP2ZDAV.js');
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
|
|
@@ -40,7 +40,8 @@ var _chunkB7ZH2R62js = require('../chunk-B7ZH2R62.js');
|
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
|
|
44
|
+
var _chunk2AK4GRIBjs = require('../chunk-2AK4GRIB.js');
|
|
44
45
|
|
|
45
46
|
|
|
46
47
|
|
|
@@ -117,5 +118,6 @@ require('../chunk-7QVYU63E.js');
|
|
|
117
118
|
|
|
118
119
|
|
|
119
120
|
|
|
120
|
-
|
|
121
|
+
|
|
122
|
+
exports.ClientJsonApiDelete = _chunkN4YZ45SKjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunkN4YZ45SKjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunkN4YZ45SKjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunkN4YZ45SKjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunkN4YZ45SKjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunkAMP2ZDAVjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunkAMP2ZDAVjs.TableGeneratorRegistry; exports.configureClientConfig = _chunk2AK4GRIBjs.configureClientConfig; exports.configureClientJsonApi = _chunkN4YZ45SKjs.configureClientJsonApi; exports.configureI18n = _chunk2AK4GRIBjs.configureI18n; exports.configureJsonApi = _chunk2AK4GRIBjs.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.getApiUrl = _chunk2AK4GRIBjs.getApiUrl; exports.getAppUrl = _chunk2AK4GRIBjs.getAppUrl; exports.getClientApiUrl = _chunkN4YZ45SKjs.getClientApiUrl; exports.getClientAppUrl = _chunkN4YZ45SKjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunkN4YZ45SKjs.getClientTrackablePages; exports.getI18nLink = _chunk2AK4GRIBjs.getI18nLink; exports.getPublicApiUrl = _chunk2AK4GRIBjs.getPublicApiUrl; exports.getStripePublishableKey = _chunk2AK4GRIBjs.getStripePublishableKey; exports.getTrackablePages = _chunk2AK4GRIBjs.getTrackablePages; exports.registerTableGenerator = _chunkAMP2ZDAVjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunkAMP2ZDAVjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunkAMP2ZDAVjs.useContentTableStructure; exports.useCustomD3Graph = _chunkAMP2ZDAVjs.useCustomD3Graph; exports.useDataListRetriever = _chunkAMP2ZDAVjs.useDataListRetriever; exports.useDebounce = _chunkAMP2ZDAVjs.useDebounce; exports.useI18nDateFnsLocale = _chunk2AK4GRIBjs.useI18nDateFnsLocale; exports.useI18nLocale = _chunk2AK4GRIBjs.useI18nLocale; exports.useI18nRouter = _chunk2AK4GRIBjs.useI18nRouter; exports.useI18nTranslations = _chunk2AK4GRIBjs.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunkAMP2ZDAVjs.useJsonApiGet; exports.useJsonApiMutation = _chunkAMP2ZDAVjs.useJsonApiMutation; exports.useNotificationSync = _chunkAMP2ZDAVjs.useNotificationSync; exports.useOAuthClient = _chunkAMP2ZDAVjs.useOAuthClient; exports.useOAuthClients = _chunkAMP2ZDAVjs.useOAuthClients; exports.useOAuthConsent = _chunkAMP2ZDAVjs.useOAuthConsent; exports.usePageTracker = _chunkAMP2ZDAVjs.usePageTracker; exports.usePageUrlGenerator = _chunkAMP2ZDAVjs.usePageUrlGenerator; exports.useRehydration = _chunkAMP2ZDAVjs.useRehydration; exports.useRehydrationList = _chunkAMP2ZDAVjs.useRehydrationList; exports.useRoleTableStructure = _chunkAMP2ZDAVjs.useRoleTableStructure; exports.useSocket = _chunkAMP2ZDAVjs.useSocket; exports.useSubscriptionStatus = _chunkAMP2ZDAVjs.useSubscriptionStatus; exports.useTableGenerator = _chunkAMP2ZDAVjs.useTableGenerator; exports.useUrlRewriter = _chunkAMP2ZDAVjs.useUrlRewriter; exports.useUserSearch = _chunkAMP2ZDAVjs.useUserSearch; exports.useUserTableStructure = _chunkAMP2ZDAVjs.useUserTableStructure;
|
|
121
123
|
//# 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;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;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;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,2tGAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"}
|
package/dist/client/index.mjs
CHANGED
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
useUrlRewriter,
|
|
26
26
|
useUserSearch,
|
|
27
27
|
useUserTableStructure
|
|
28
|
-
} from "../chunk-
|
|
28
|
+
} from "../chunk-CZ56O6JZ.mjs";
|
|
29
29
|
import {
|
|
30
30
|
configureClientConfig,
|
|
31
31
|
configureI18n,
|
|
@@ -33,13 +33,14 @@ import {
|
|
|
33
33
|
getApiUrl,
|
|
34
34
|
getAppUrl,
|
|
35
35
|
getI18nLink,
|
|
36
|
+
getPublicApiUrl,
|
|
36
37
|
getStripePublishableKey,
|
|
37
38
|
getTrackablePages,
|
|
38
39
|
useI18nDateFnsLocale,
|
|
39
40
|
useI18nLocale,
|
|
40
41
|
useI18nRouter,
|
|
41
42
|
useI18nTranslations
|
|
42
|
-
} from "../chunk-
|
|
43
|
+
} from "../chunk-NEJ7CDM3.mjs";
|
|
43
44
|
import {
|
|
44
45
|
ClientJsonApiDelete,
|
|
45
46
|
ClientJsonApiGet,
|
|
@@ -85,6 +86,7 @@ export {
|
|
|
85
86
|
getClientToken,
|
|
86
87
|
getClientTrackablePages,
|
|
87
88
|
getI18nLink,
|
|
89
|
+
getPublicApiUrl,
|
|
88
90
|
getStripePublishableKey,
|
|
89
91
|
getTrackablePages,
|
|
90
92
|
registerTableGenerator,
|
|
@@ -318,8 +318,9 @@ type CommonEditorButtonsProps = {
|
|
|
318
318
|
form: any;
|
|
319
319
|
disabled?: boolean;
|
|
320
320
|
setOpen: (open: boolean) => void;
|
|
321
|
+
hideSubmit?: boolean;
|
|
321
322
|
};
|
|
322
|
-
declare function CommonEditorButtons({ isEdit, form, disabled, setOpen }: CommonEditorButtonsProps): react_jsx_runtime.JSX.Element;
|
|
323
|
+
declare function CommonEditorButtons({ isEdit, form, disabled, setOpen, hideSubmit }: CommonEditorButtonsProps): react_jsx_runtime.JSX.Element;
|
|
323
324
|
|
|
324
325
|
type CommonEditorHeaderProps = {
|
|
325
326
|
type: string;
|
|
@@ -380,6 +381,7 @@ type EditorSheetProps<T extends FieldValues> = {
|
|
|
380
381
|
onNavigate?: (url: string) => void;
|
|
381
382
|
size?: EditorSheetSize;
|
|
382
383
|
disabled?: boolean;
|
|
384
|
+
hideSubmit?: boolean;
|
|
383
385
|
trigger?: ReactNode;
|
|
384
386
|
forceShow?: boolean;
|
|
385
387
|
onClose?: () => void;
|
|
@@ -387,7 +389,7 @@ type EditorSheetProps<T extends FieldValues> = {
|
|
|
387
389
|
onDialogOpenChange?: (open: boolean) => void;
|
|
388
390
|
children: ReactNode;
|
|
389
391
|
};
|
|
390
|
-
declare function EditorSheet<T extends FieldValues>({ form, onSubmit, onReset, isFormDirty: isFormDirtyProp, entityType, entityName, title: titleOverride, description: descriptionOverride, isEdit, module, propagateChanges, onSuccess, onRevalidate, onNavigate, size, disabled, trigger, forceShow, onClose, dialogOpen, onDialogOpenChange, children, }: EditorSheetProps<T>): react_jsx_runtime.JSX.Element;
|
|
392
|
+
declare function EditorSheet<T extends FieldValues>({ form, onSubmit, onReset, isFormDirty: isFormDirtyProp, entityType, entityName, title: titleOverride, description: descriptionOverride, isEdit, module, propagateChanges, onSuccess, onRevalidate, onNavigate, size, disabled, hideSubmit, trigger, forceShow, onClose, dialogOpen, onDialogOpenChange, children, }: EditorSheetProps<T>): react_jsx_runtime.JSX.Element;
|
|
391
393
|
|
|
392
394
|
type DatePickerPopoverProps = {
|
|
393
395
|
children: ReactNode;
|
|
@@ -318,8 +318,9 @@ type CommonEditorButtonsProps = {
|
|
|
318
318
|
form: any;
|
|
319
319
|
disabled?: boolean;
|
|
320
320
|
setOpen: (open: boolean) => void;
|
|
321
|
+
hideSubmit?: boolean;
|
|
321
322
|
};
|
|
322
|
-
declare function CommonEditorButtons({ isEdit, form, disabled, setOpen }: CommonEditorButtonsProps): react_jsx_runtime.JSX.Element;
|
|
323
|
+
declare function CommonEditorButtons({ isEdit, form, disabled, setOpen, hideSubmit }: CommonEditorButtonsProps): react_jsx_runtime.JSX.Element;
|
|
323
324
|
|
|
324
325
|
type CommonEditorHeaderProps = {
|
|
325
326
|
type: string;
|
|
@@ -380,6 +381,7 @@ type EditorSheetProps<T extends FieldValues> = {
|
|
|
380
381
|
onNavigate?: (url: string) => void;
|
|
381
382
|
size?: EditorSheetSize;
|
|
382
383
|
disabled?: boolean;
|
|
384
|
+
hideSubmit?: boolean;
|
|
383
385
|
trigger?: ReactNode;
|
|
384
386
|
forceShow?: boolean;
|
|
385
387
|
onClose?: () => void;
|
|
@@ -387,7 +389,7 @@ type EditorSheetProps<T extends FieldValues> = {
|
|
|
387
389
|
onDialogOpenChange?: (open: boolean) => void;
|
|
388
390
|
children: ReactNode;
|
|
389
391
|
};
|
|
390
|
-
declare function EditorSheet<T extends FieldValues>({ form, onSubmit, onReset, isFormDirty: isFormDirtyProp, entityType, entityName, title: titleOverride, description: descriptionOverride, isEdit, module, propagateChanges, onSuccess, onRevalidate, onNavigate, size, disabled, trigger, forceShow, onClose, dialogOpen, onDialogOpenChange, children, }: EditorSheetProps<T>): react_jsx_runtime.JSX.Element;
|
|
392
|
+
declare function EditorSheet<T extends FieldValues>({ form, onSubmit, onReset, isFormDirty: isFormDirtyProp, entityType, entityName, title: titleOverride, description: descriptionOverride, isEdit, module, propagateChanges, onSuccess, onRevalidate, onNavigate, size, disabled, hideSubmit, trigger, forceShow, onClose, dialogOpen, onDialogOpenChange, children, }: EditorSheetProps<T>): react_jsx_runtime.JSX.Element;
|
|
391
393
|
|
|
392
394
|
type DatePickerPopoverProps = {
|
|
393
395
|
children: ReactNode;
|
package/dist/components/index.js
CHANGED
|
@@ -449,8 +449,8 @@
|
|
|
449
449
|
|
|
450
450
|
|
|
451
451
|
|
|
452
|
-
var
|
|
453
|
-
require('../chunk-
|
|
452
|
+
var _chunkAMP2ZDAVjs = require('../chunk-AMP2ZDAV.js');
|
|
453
|
+
require('../chunk-2AK4GRIB.js');
|
|
454
454
|
|
|
455
455
|
|
|
456
456
|
|
|
@@ -923,5 +923,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
923
923
|
|
|
924
924
|
|
|
925
925
|
|
|
926
|
-
exports.AcceptInvitation = _chunkB7ZH2R62js.AcceptInvitation; exports.Accordion = _chunkB7ZH2R62js.Accordion; exports.AccordionContent = _chunkB7ZH2R62js.AccordionContent; exports.AccordionItem = _chunkB7ZH2R62js.AccordionItem; exports.AccordionTrigger = _chunkB7ZH2R62js.AccordionTrigger; exports.ActivateAccount = _chunkB7ZH2R62js.ActivateAccount; exports.AddUserToRole = _chunkB7ZH2R62js.AddUserToRole; exports.AdminCompanyContainer = _chunkB7ZH2R62js.AdminCompanyContainer; exports.AdminUsersList = _chunkB7ZH2R62js.AdminUsersList; exports.Alert = _chunkB7ZH2R62js.Alert; exports.AlertAction = _chunkB7ZH2R62js.AlertAction; exports.AlertDescription = _chunkB7ZH2R62js.AlertDescription; exports.AlertDialog = _chunkB7ZH2R62js.AlertDialog; exports.AlertDialogAction = _chunkB7ZH2R62js.AlertDialogAction; exports.AlertDialogCancel = _chunkB7ZH2R62js.AlertDialogCancel; exports.AlertDialogContent = _chunkB7ZH2R62js.AlertDialogContent; exports.AlertDialogDescription = _chunkB7ZH2R62js.AlertDialogDescription; exports.AlertDialogFooter = _chunkB7ZH2R62js.AlertDialogFooter; exports.AlertDialogHeader = _chunkB7ZH2R62js.AlertDialogHeader; exports.AlertDialogMedia = _chunkB7ZH2R62js.AlertDialogMedia; exports.AlertDialogOverlay = _chunkB7ZH2R62js.AlertDialogOverlay; exports.AlertDialogPortal = _chunkB7ZH2R62js.AlertDialogPortal; exports.AlertDialogTitle = _chunkB7ZH2R62js.AlertDialogTitle; exports.AlertDialogTrigger = _chunkB7ZH2R62js.AlertDialogTrigger; exports.AlertTitle = _chunkB7ZH2R62js.AlertTitle; exports.AllUsersListContainer = _chunkB7ZH2R62js.AllUsersListContainer; exports.AllowedUsersDetails = _chunkB7ZH2R62js.AllowedUsersDetails; exports.AssistantContainer = _chunkB7ZH2R62js.AssistantContainer; exports.AttributeElement = _chunkB7ZH2R62js.AttributeElement; exports.AuthContainer = _chunkB7ZH2R62js.AuthContainer; exports.Avatar = _chunkB7ZH2R62js.Avatar; exports.AvatarBadge = _chunkB7ZH2R62js.AvatarBadge; exports.AvatarFallback = _chunkB7ZH2R62js.AvatarFallback; exports.AvatarGroup = _chunkB7ZH2R62js.AvatarGroup; exports.AvatarGroupCount = _chunkB7ZH2R62js.AvatarGroupCount; exports.AvatarImage = _chunkB7ZH2R62js.AvatarImage; exports.BackupCodesDialog = _chunkB7ZH2R62js.BackupCodesDialog; exports.Badge = _chunkB7ZH2R62js.Badge; exports.BlockNoteEditorContainer = _chunkB7ZH2R62js.BlockNoteEditorContainer; exports.Board = _chunkB7ZH2R62js.KanbanBoard; exports.Breadcrumb = _chunkB7ZH2R62js.Breadcrumb; exports.BreadcrumbEllipsis = _chunkB7ZH2R62js.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkB7ZH2R62js.BreadcrumbItem; exports.BreadcrumbLink = _chunkB7ZH2R62js.BreadcrumbLink; exports.BreadcrumbList = _chunkB7ZH2R62js.BreadcrumbList; exports.BreadcrumbNavigation = _chunkB7ZH2R62js.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkB7ZH2R62js.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkB7ZH2R62js.BreadcrumbSeparator; exports.Button = _chunkB7ZH2R62js.Button; exports.Calendar = _chunkB7ZH2R62js.Calendar; exports.CalendarDayButton = _chunkB7ZH2R62js.CalendarDayButton; exports.Card = _chunkB7ZH2R62js.Card; exports.CardAction = _chunkB7ZH2R62js.CardAction; exports.CardContent = _chunkB7ZH2R62js.CardContent; exports.CardDescription = _chunkB7ZH2R62js.CardDescription; exports.CardFooter = _chunkB7ZH2R62js.CardFooter; exports.CardHeader = _chunkB7ZH2R62js.CardHeader; exports.CardTitle = _chunkB7ZH2R62js.CardTitle; exports.Carousel = _chunkB7ZH2R62js.Carousel; exports.CarouselContent = _chunkB7ZH2R62js.CarouselContent; exports.CarouselItem = _chunkB7ZH2R62js.CarouselItem; exports.CarouselNext = _chunkB7ZH2R62js.CarouselNext; exports.CarouselPrevious = _chunkB7ZH2R62js.CarouselPrevious; exports.ChartContainer = _chunkB7ZH2R62js.ChartContainer; exports.ChartLegend = _chunkB7ZH2R62js.ChartLegend; exports.ChartLegendContent = _chunkB7ZH2R62js.ChartLegendContent; exports.ChartStyle = _chunkB7ZH2R62js.ChartStyle; exports.ChartTooltip = _chunkB7ZH2R62js.ChartTooltip; exports.ChartTooltipContent = _chunkB7ZH2R62js.ChartTooltipContent; exports.Checkbox = _chunkB7ZH2R62js.Checkbox; exports.Collapsible = _chunkB7ZH2R62js.Collapsible; exports.CollapsibleContent = _chunkB7ZH2R62js.CollapsibleContent; exports.CollapsibleTrigger = _chunkB7ZH2R62js.CollapsibleTrigger; exports.Column = _chunkB7ZH2R62js.KanbanColumn; exports.ColumnHandle = _chunkB7ZH2R62js.KanbanColumnHandle; exports.Combobox = _chunkB7ZH2R62js.Combobox; exports.ComboboxChip = _chunkB7ZH2R62js.ComboboxChip; exports.ComboboxChips = _chunkB7ZH2R62js.ComboboxChips; exports.ComboboxChipsInput = _chunkB7ZH2R62js.ComboboxChipsInput; exports.ComboboxCollection = _chunkB7ZH2R62js.ComboboxCollection; exports.ComboboxContent = _chunkB7ZH2R62js.ComboboxContent; exports.ComboboxEmpty = _chunkB7ZH2R62js.ComboboxEmpty; exports.ComboboxGroup = _chunkB7ZH2R62js.ComboboxGroup; exports.ComboboxInput = _chunkB7ZH2R62js.ComboboxInput; exports.ComboboxItem = _chunkB7ZH2R62js.ComboboxItem; exports.ComboboxLabel = _chunkB7ZH2R62js.ComboboxLabel; exports.ComboboxList = _chunkB7ZH2R62js.ComboboxList; exports.ComboboxSeparator = _chunkB7ZH2R62js.ComboboxSeparator; exports.ComboboxTrigger = _chunkB7ZH2R62js.ComboboxTrigger; exports.ComboboxValue = _chunkB7ZH2R62js.ComboboxValue; exports.Command = _chunkB7ZH2R62js.Command; exports.CommandDialog = _chunkB7ZH2R62js.CommandDialog; exports.CommandEmpty = _chunkB7ZH2R62js.CommandEmpty; exports.CommandGroup = _chunkB7ZH2R62js.CommandGroup; exports.CommandInput = _chunkB7ZH2R62js.CommandInput; exports.CommandItem = _chunkB7ZH2R62js.CommandItem; exports.CommandList = _chunkB7ZH2R62js.CommandList; exports.CommandSeparator = _chunkB7ZH2R62js.CommandSeparator; exports.CommandShortcut = _chunkB7ZH2R62js.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkB7ZH2R62js.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkB7ZH2R62js.CommonAssociationTrigger; exports.CommonDeleter = _chunkB7ZH2R62js.CommonDeleter; exports.CommonEditorButtons = _chunkB7ZH2R62js.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkB7ZH2R62js.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkB7ZH2R62js.CommonEditorHeader; exports.CommonEditorTrigger = _chunkB7ZH2R62js.CommonEditorTrigger; exports.CompaniesList = _chunkB7ZH2R62js.CompaniesList; exports.CompanyConfigurationEditor = _chunkB7ZH2R62js.CompanyConfigurationEditor; exports.CompanyContainer = _chunkB7ZH2R62js.CompanyContainer; exports.CompanyContent = _chunkB7ZH2R62js.CompanyContent; exports.CompanyDeleter = _chunkB7ZH2R62js.CompanyDeleter; exports.CompanyDetails = _chunkB7ZH2R62js.CompanyDetails; exports.CompanyEditor = _chunkB7ZH2R62js.CompanyEditor; exports.CompanyUsersList = _chunkB7ZH2R62js.CompanyUsersList; exports.ContentListGrid = _chunkB7ZH2R62js.ContentListGrid; exports.ContentListTable = _chunkB7ZH2R62js.ContentListTable; exports.ContentTableSearch = _chunkB7ZH2R62js.ContentTableSearch; exports.ContentTitle = _chunkB7ZH2R62js.ContentTitle; exports.ContentsList = _chunkB7ZH2R62js.ContentsList; exports.ContentsListById = _chunkB7ZH2R62js.ContentsListById; exports.ContextMenu = _chunkB7ZH2R62js.ContextMenu; exports.ContextMenuCheckboxItem = _chunkB7ZH2R62js.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkB7ZH2R62js.ContextMenuContent; exports.ContextMenuGroup = _chunkB7ZH2R62js.ContextMenuGroup; exports.ContextMenuItem = _chunkB7ZH2R62js.ContextMenuItem; exports.ContextMenuLabel = _chunkB7ZH2R62js.ContextMenuLabel; exports.ContextMenuPortal = _chunkB7ZH2R62js.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkB7ZH2R62js.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkB7ZH2R62js.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkB7ZH2R62js.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkB7ZH2R62js.ContextMenuShortcut; exports.ContextMenuSub = _chunkB7ZH2R62js.ContextMenuSub; exports.ContextMenuSubContent = _chunkB7ZH2R62js.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkB7ZH2R62js.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkB7ZH2R62js.ContextMenuTrigger; exports.ContributorsList = _chunkB7ZH2R62js.ContributorsList; exports.Cookies = _chunkB7ZH2R62js.Cookies; exports.DatePickerPopover = _chunkB7ZH2R62js.DatePickerPopover; exports.DateRangeSelector = _chunkB7ZH2R62js.DateRangeSelector; exports.Dialog = _chunkB7ZH2R62js.Dialog; exports.DialogClose = _chunkB7ZH2R62js.DialogClose; exports.DialogContent = _chunkB7ZH2R62js.DialogContent; exports.DialogDescription = _chunkB7ZH2R62js.DialogDescription; exports.DialogFooter = _chunkB7ZH2R62js.DialogFooter; exports.DialogHeader = _chunkB7ZH2R62js.DialogHeader; exports.DialogOverlay = _chunkB7ZH2R62js.DialogOverlay; exports.DialogPortal = _chunkB7ZH2R62js.DialogPortal; exports.DialogTitle = _chunkB7ZH2R62js.DialogTitle; exports.DialogTrigger = _chunkB7ZH2R62js.DialogTrigger; exports.DisableTwoFactorDialog = _chunkB7ZH2R62js.DisableTwoFactorDialog; exports.Drawer = _chunkB7ZH2R62js.Drawer; exports.DrawerClose = _chunkB7ZH2R62js.DrawerClose; exports.DrawerContent = _chunkB7ZH2R62js.DrawerContent; exports.DrawerDescription = _chunkB7ZH2R62js.DrawerDescription; exports.DrawerFooter = _chunkB7ZH2R62js.DrawerFooter; exports.DrawerHeader = _chunkB7ZH2R62js.DrawerHeader; exports.DrawerOverlay = _chunkB7ZH2R62js.DrawerOverlay; exports.DrawerPortal = _chunkB7ZH2R62js.DrawerPortal; exports.DrawerTitle = _chunkB7ZH2R62js.DrawerTitle; exports.DrawerTrigger = _chunkB7ZH2R62js.DrawerTrigger; exports.DropdownMenu = _chunkB7ZH2R62js.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkB7ZH2R62js.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkB7ZH2R62js.DropdownMenuContent; exports.DropdownMenuGroup = _chunkB7ZH2R62js.DropdownMenuGroup; exports.DropdownMenuItem = _chunkB7ZH2R62js.DropdownMenuItem; exports.DropdownMenuLabel = _chunkB7ZH2R62js.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkB7ZH2R62js.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkB7ZH2R62js.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkB7ZH2R62js.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkB7ZH2R62js.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkB7ZH2R62js.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkB7ZH2R62js.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkB7ZH2R62js.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkB7ZH2R62js.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkB7ZH2R62js.DropdownMenuTrigger; exports.EditableAvatar = _chunkB7ZH2R62js.EditableAvatar; exports.EditorSheet = _chunkB7ZH2R62js.EditorSheet; exports.EntityAvatar = _chunkB7ZH2R62js.EntityAvatar; exports.EntityMultiSelector = _chunkB7ZH2R62js.EntityMultiSelector; exports.ErrorDetails = _chunkB7ZH2R62js.ErrorDetails; exports.Field = _chunkB7ZH2R62js.Field; exports.FieldContent = _chunkB7ZH2R62js.FieldContent; exports.FieldDescription = _chunkB7ZH2R62js.FieldDescription; exports.FieldError = _chunkB7ZH2R62js.FieldError; exports.FieldGroup = _chunkB7ZH2R62js.FieldGroup; exports.FieldLabel = _chunkB7ZH2R62js.FieldLabel; exports.FieldLegend = _chunkB7ZH2R62js.FieldLegend; exports.FieldSeparator = _chunkB7ZH2R62js.FieldSeparator; exports.FieldSet = _chunkB7ZH2R62js.FieldSet; exports.FieldTitle = _chunkB7ZH2R62js.FieldTitle; exports.FileInput = _chunkB7ZH2R62js.FileInput; exports.FileUploader = _chunkB7ZH2R62js.FileUploader; exports.FileUploaderContent = _chunkB7ZH2R62js.FileUploaderContent; exports.FileUploaderItem = _chunkB7ZH2R62js.FileUploaderItem; exports.FiscalDataDisplay = _chunkB7ZH2R62js.FiscalDataDisplay; exports.ForgotPassword = _chunkB7ZH2R62js.ForgotPassword; exports.Form = _chunkB7ZH2R62js.Form; exports.FormBlockNote = _chunkB7ZH2R62js.FormBlockNote; exports.FormCheckbox = _chunkB7ZH2R62js.FormCheckbox; exports.FormDate = _chunkB7ZH2R62js.FormDate; exports.FormDateTime = _chunkB7ZH2R62js.FormDateTime; exports.FormFeatures = _chunkB7ZH2R62js.FormFeatures; exports.FormFieldWrapper = _chunkB7ZH2R62js.FormFieldWrapper; exports.FormInput = _chunkB7ZH2R62js.FormInput; exports.FormPassword = _chunkB7ZH2R62js.FormPassword; exports.FormPlaceAutocomplete = _chunkB7ZH2R62js.FormPlaceAutocomplete; exports.FormRoles = _chunkB7ZH2R62js.FormRoles; exports.FormSelect = _chunkB7ZH2R62js.FormSelect; exports.FormSlider = _chunkB7ZH2R62js.FormSlider; exports.FormSwitch = _chunkB7ZH2R62js.FormSwitch; exports.FormTextarea = _chunkB7ZH2R62js.FormTextarea; exports.GdprConsentCheckbox = _chunkB7ZH2R62js.GdprConsentCheckbox; exports.GdprConsentSection = _chunkB7ZH2R62js.GdprConsentSection; exports.Header = _chunkB7ZH2R62js.Header; exports.HoverCard = _chunkB7ZH2R62js.HoverCard; exports.HoverCardContent = _chunkB7ZH2R62js.HoverCardContent; exports.HoverCardTrigger = _chunkB7ZH2R62js.HoverCardTrigger; exports.HowToCommand = _chunkB7ZH2R62js.HowToCommand; exports.HowToCommandViewer = _chunkB7ZH2R62js.HowToCommandViewer; exports.HowToContainer = _chunkB7ZH2R62js.HowToContainer; exports.HowToContent = _chunkB7ZH2R62js.HowToContent; exports.HowToDeleter = _chunkB7ZH2R62js.HowToDeleter; exports.HowToDetails = _chunkB7ZH2R62js.HowToDetails; exports.HowToEditor = _chunkB7ZH2R62js.HowToEditor; exports.HowToList = _chunkB7ZH2R62js.HowToList; exports.HowToListContainer = _chunkB7ZH2R62js.HowToListContainer; exports.HowToMultiSelector = _chunkB7ZH2R62js.HowToMultiSelector; exports.HowToSelector = _chunkB7ZH2R62js.HowToSelector; exports.Input = _chunkB7ZH2R62js.Input; exports.InputGroup = _chunkB7ZH2R62js.InputGroup; exports.InputGroupAddon = _chunkB7ZH2R62js.InputGroupAddon; exports.InputGroupButton = _chunkB7ZH2R62js.InputGroupButton; exports.InputGroupInput = _chunkB7ZH2R62js.InputGroupInput; exports.InputGroupText = _chunkB7ZH2R62js.InputGroupText; exports.InputGroupTextarea = _chunkB7ZH2R62js.InputGroupTextarea; exports.InputOTP = _chunkB7ZH2R62js.InputOTP; exports.InputOTPGroup = _chunkB7ZH2R62js.InputOTPGroup; exports.InputOTPSeparator = _chunkB7ZH2R62js.InputOTPSeparator; exports.InputOTPSlot = _chunkB7ZH2R62js.InputOTPSlot; exports.ItalianFiscalData = _chunkB7ZH2R62js.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkB7ZH2R62js.ItalianFiscalDataDisplay; exports.Item = _chunkB7ZH2R62js.KanbanItem; exports.ItemHandle = _chunkB7ZH2R62js.KanbanItemHandle; exports.Kanban = _chunkB7ZH2R62js.KanbanRoot; exports.KanbanBoard = _chunkB7ZH2R62js.KanbanBoard; exports.KanbanColumn = _chunkB7ZH2R62js.KanbanColumn; exports.KanbanColumnHandle = _chunkB7ZH2R62js.KanbanColumnHandle; exports.KanbanItem = _chunkB7ZH2R62js.KanbanItem; exports.KanbanItemHandle = _chunkB7ZH2R62js.KanbanItemHandle; exports.KanbanOverlay = _chunkB7ZH2R62js.KanbanOverlay; exports.Label = _chunkB7ZH2R62js.Label; exports.LandingComponent = _chunkB7ZH2R62js.LandingComponent; exports.Link = _chunkB7ZH2R62js.Link; exports.Login = _chunkB7ZH2R62js.Login; exports.Logout = _chunkB7ZH2R62js.Logout; exports.MessageItem = _chunkB7ZH2R62js.MessageItem; exports.MessageList = _chunkB7ZH2R62js.MessageList; exports.MessageSourcesPanel = _chunkB7ZH2R62js.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkB7ZH2R62js.ModeToggleSwitch; exports.MultiSelect = _chunkB7ZH2R62js.MultiSelect; exports.MultipleSelector = _chunkB7ZH2R62js.MultipleSelector; exports.NavigationMenu = _chunkB7ZH2R62js.NavigationMenu; exports.NavigationMenuContent = _chunkB7ZH2R62js.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkB7ZH2R62js.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkB7ZH2R62js.NavigationMenuItem; exports.NavigationMenuLink = _chunkB7ZH2R62js.NavigationMenuLink; exports.NavigationMenuList = _chunkB7ZH2R62js.NavigationMenuList; exports.NavigationMenuPositioner = _chunkB7ZH2R62js.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkB7ZH2R62js.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkB7ZH2R62js.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkB7ZH2R62js.NotificationMenuItem; exports.NotificationModal = _chunkB7ZH2R62js.NotificationModal; exports.NotificationToast = _chunkB7ZH2R62js.NotificationToast; exports.NotificationsList = _chunkB7ZH2R62js.NotificationsList; exports.NotificationsListContainer = _chunkB7ZH2R62js.NotificationsListContainer; exports.OAuthClientCard = _chunkB7ZH2R62js.OAuthClientCard; exports.OAuthClientDetail = _chunkB7ZH2R62js.OAuthClientDetail; exports.OAuthClientForm = _chunkB7ZH2R62js.OAuthClientForm; exports.OAuthClientList = _chunkB7ZH2R62js.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkB7ZH2R62js.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkB7ZH2R62js.OAuthConsentActions; exports.OAuthConsentHeader = _chunkB7ZH2R62js.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkB7ZH2R62js.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkB7ZH2R62js.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkB7ZH2R62js.OAuthScopeList; exports.OAuthScopeSelector = _chunkB7ZH2R62js.OAuthScopeSelector; exports.OnboardingCard = _chunkB7ZH2R62js.OnboardingCard; exports.Overlay = _chunkB7ZH2R62js.KanbanOverlay; exports.PageContainer = _chunkB7ZH2R62js.PageContainer; exports.PageContainerContentDetails = _chunkB7ZH2R62js.PageContainerContentDetails; exports.PageContentContainer = _chunkB7ZH2R62js.PageContentContainer; exports.PageSection = _chunkB7ZH2R62js.PageSection; exports.PasskeyButton = _chunkB7ZH2R62js.PasskeyButton; exports.PasskeyList = _chunkB7ZH2R62js.PasskeyList; exports.PasskeySetupDialog = _chunkB7ZH2R62js.PasskeySetupDialog; exports.PasswordInput = _chunkB7ZH2R62js.PasswordInput; exports.Popover = _chunkB7ZH2R62js.Popover; exports.PopoverContent = _chunkB7ZH2R62js.PopoverContent; exports.PopoverDescription = _chunkB7ZH2R62js.PopoverDescription; exports.PopoverHeader = _chunkB7ZH2R62js.PopoverHeader; exports.PopoverTitle = _chunkB7ZH2R62js.PopoverTitle; exports.PopoverTrigger = _chunkB7ZH2R62js.PopoverTrigger; exports.Progress = _chunkB7ZH2R62js.Progress; exports.ProgressIndicator = _chunkB7ZH2R62js.ProgressIndicator; exports.ProgressLabel = _chunkB7ZH2R62js.ProgressLabel; exports.ProgressTrack = _chunkB7ZH2R62js.ProgressTrack; exports.ProgressValue = _chunkB7ZH2R62js.ProgressValue; exports.PushNotificationProvider = _chunkB7ZH2R62js.PushNotificationProvider; exports.RadioGroup = _chunkB7ZH2R62js.RadioGroup; exports.RadioGroupItem = _chunkB7ZH2R62js.RadioGroupItem; exports.RbacByRoleContainer = _chunkB7ZH2R62js.RbacByRoleContainer; exports.RbacContainer = _chunkB7ZH2R62js.RbacContainer; exports.RbacPermissionCell = _chunkB7ZH2R62js.RbacPermissionCell; exports.RbacPermissionPicker = _chunkB7ZH2R62js.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkB7ZH2R62js.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkB7ZH2R62js.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkB7ZH2R62js.ReferralCodeCapture; exports.ReferralDialog = _chunkB7ZH2R62js.ReferralDialog; exports.ReferralWidget = _chunkB7ZH2R62js.ReferralWidget; exports.RefreshUser = _chunkB7ZH2R62js.RefreshUser; exports.RelevantContentsList = _chunkB7ZH2R62js.RelevantContentsList; exports.RelevantUsersList = _chunkB7ZH2R62js.RelevantUsersList; exports.RemoveUserFromRole = _chunkB7ZH2R62js.RemoveUserFromRole; exports.ResetPassword = _chunkB7ZH2R62js.ResetPassword; exports.ResizableHandle = _chunkB7ZH2R62js.ResizableHandle; exports.ResizablePanel = _chunkB7ZH2R62js.ResizablePanel; exports.ResizablePanelGroup = _chunkB7ZH2R62js.ResizablePanelGroup; exports.RoleContainer = _chunkB7ZH2R62js.RoleContainer; exports.RoleDetails = _chunkB7ZH2R62js.RoleDetails; exports.RoleUsersList = _chunkB7ZH2R62js.RoleUsersList; exports.RolesList = _chunkB7ZH2R62js.RolesList; exports.Root = _chunkB7ZH2R62js.KanbanRoot; exports.RoundPageContainer = _chunkB7ZH2R62js.RoundPageContainer; exports.RoundPageContainerTitle = _chunkB7ZH2R62js.RoundPageContainerTitle; exports.ScrollArea = _chunkB7ZH2R62js.ScrollArea; exports.ScrollBar = _chunkB7ZH2R62js.ScrollBar; exports.SecurityContainer = _chunkB7ZH2R62js.SecurityContainer; exports.Select = _chunkB7ZH2R62js.Select; exports.SelectContent = _chunkB7ZH2R62js.SelectContent; exports.SelectGroup = _chunkB7ZH2R62js.SelectGroup; exports.SelectItem = _chunkB7ZH2R62js.SelectItem; exports.SelectLabel = _chunkB7ZH2R62js.SelectLabel; exports.SelectScrollDownButton = _chunkB7ZH2R62js.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkB7ZH2R62js.SelectScrollUpButton; exports.SelectSeparator = _chunkB7ZH2R62js.SelectSeparator; exports.SelectTrigger = _chunkB7ZH2R62js.SelectTrigger; exports.SelectValue = _chunkB7ZH2R62js.SelectValue; exports.Separator = _chunkB7ZH2R62js.Separator; exports.Sheet = _chunkB7ZH2R62js.Sheet; exports.SheetClose = _chunkB7ZH2R62js.SheetClose; exports.SheetContent = _chunkB7ZH2R62js.SheetContent; exports.SheetDescription = _chunkB7ZH2R62js.SheetDescription; exports.SheetFooter = _chunkB7ZH2R62js.SheetFooter; exports.SheetHeader = _chunkB7ZH2R62js.SheetHeader; exports.SheetTitle = _chunkB7ZH2R62js.SheetTitle; exports.SheetTrigger = _chunkB7ZH2R62js.SheetTrigger; exports.Sidebar = _chunkB7ZH2R62js.Sidebar; exports.SidebarContent = _chunkB7ZH2R62js.SidebarContent; exports.SidebarFooter = _chunkB7ZH2R62js.SidebarFooter; exports.SidebarGroup = _chunkB7ZH2R62js.SidebarGroup; exports.SidebarGroupAction = _chunkB7ZH2R62js.SidebarGroupAction; exports.SidebarGroupContent = _chunkB7ZH2R62js.SidebarGroupContent; exports.SidebarGroupLabel = _chunkB7ZH2R62js.SidebarGroupLabel; exports.SidebarHeader = _chunkB7ZH2R62js.SidebarHeader; exports.SidebarInput = _chunkB7ZH2R62js.SidebarInput; exports.SidebarInset = _chunkB7ZH2R62js.SidebarInset; exports.SidebarMenu = _chunkB7ZH2R62js.SidebarMenu; exports.SidebarMenuAction = _chunkB7ZH2R62js.SidebarMenuAction; exports.SidebarMenuBadge = _chunkB7ZH2R62js.SidebarMenuBadge; exports.SidebarMenuButton = _chunkB7ZH2R62js.SidebarMenuButton; exports.SidebarMenuItem = _chunkB7ZH2R62js.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkB7ZH2R62js.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkB7ZH2R62js.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkB7ZH2R62js.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkB7ZH2R62js.SidebarMenuSubItem; exports.SidebarProvider = _chunkB7ZH2R62js.SidebarProvider; exports.SidebarRail = _chunkB7ZH2R62js.SidebarRail; exports.SidebarSeparator = _chunkB7ZH2R62js.SidebarSeparator; exports.SidebarTrigger = _chunkB7ZH2R62js.SidebarTrigger; exports.Skeleton = _chunkB7ZH2R62js.Skeleton; exports.Slider = _chunkB7ZH2R62js.Slider; exports.Switch = _chunkB7ZH2R62js.Switch; exports.Table = _chunkB7ZH2R62js.Table; exports.TableBody = _chunkB7ZH2R62js.TableBody; exports.TableCaption = _chunkB7ZH2R62js.TableCaption; exports.TableCell = _chunkB7ZH2R62js.TableCell; exports.TableCellAvatar = _chunkB7ZH2R62js.TableCellAvatar; exports.TableFooter = _chunkB7ZH2R62js.TableFooter; exports.TableHead = _chunkB7ZH2R62js.TableHead; exports.TableHeader = _chunkB7ZH2R62js.TableHeader; exports.TableRow = _chunkB7ZH2R62js.TableRow; exports.Tabs = _chunkB7ZH2R62js.Tabs; exports.TabsContainer = _chunkB7ZH2R62js.TabsContainer; exports.TabsContent = _chunkB7ZH2R62js.TabsContent; exports.TabsList = _chunkB7ZH2R62js.TabsList; exports.TabsTrigger = _chunkB7ZH2R62js.TabsTrigger; exports.Textarea = _chunkB7ZH2R62js.Textarea; exports.Toaster = _chunkB7ZH2R62js.Toaster; exports.Toggle = _chunkB7ZH2R62js.Toggle; exports.TokenStatusIndicator = _chunkB7ZH2R62js.TokenStatusIndicator; exports.Tooltip = _chunkB7ZH2R62js.Tooltip; exports.TooltipContent = _chunkB7ZH2R62js.TooltipContent; exports.TooltipProvider = _chunkB7ZH2R62js.TooltipProvider; exports.TooltipTrigger = _chunkB7ZH2R62js.TooltipTrigger; exports.TotpAuthenticatorList = _chunkB7ZH2R62js.TotpAuthenticatorList; exports.TotpInput = _chunkB7ZH2R62js.TotpInput; exports.TotpSetupDialog = _chunkB7ZH2R62js.TotpSetupDialog; exports.TwoFactorChallenge = _chunkB7ZH2R62js.TwoFactorChallenge; exports.TwoFactorSettings = _chunkB7ZH2R62js.TwoFactorSettings; exports.UserAvatar = _chunkB7ZH2R62js.UserAvatar; exports.UserAvatarEditor = _chunkB7ZH2R62js.UserAvatarEditor; exports.UserAvatarList = _chunkB7ZH2R62js.UserAvatarList; exports.UserContainer = _chunkB7ZH2R62js.UserContainer; exports.UserContent = _chunkB7ZH2R62js.UserContent; exports.UserDeleter = _chunkB7ZH2R62js.UserDeleter; exports.UserEditor = _chunkB7ZH2R62js.UserEditor; exports.UserIndexContainer = _chunkB7ZH2R62js.UserIndexContainer; exports.UserIndexDetails = _chunkB7ZH2R62js.UserIndexDetails; exports.UserListInAdd = _chunkB7ZH2R62js.UserListInAdd; exports.UserMultiSelect = _chunkB7ZH2R62js.UserMultiSelect; exports.UserReactivator = _chunkB7ZH2R62js.UserReactivator; exports.UserResentInvitationEmail = _chunkB7ZH2R62js.UserResentInvitationEmail; exports.UserRoleAdd = _chunkB7ZH2R62js.UserRoleAdd; exports.UserRolesList = _chunkB7ZH2R62js.UserRolesList; exports.UserSearchPopover = _chunkB7ZH2R62js.UserSearchPopover; exports.UserSelector = _chunkB7ZH2R62js.UserSelector; exports.UserStanadaloneDetails = _chunkB7ZH2R62js.UserStanadaloneDetails; exports.UsersList = _chunkB7ZH2R62js.UsersList; exports.UsersListByContentIds = _chunkB7ZH2R62js.UsersListByContentIds; exports.UsersListContainer = _chunkB7ZH2R62js.UsersListContainer; exports.WaitlistConfirmation = _chunkB7ZH2R62js.WaitlistConfirmation; exports.WaitlistForm = _chunkB7ZH2R62js.WaitlistForm; exports.WaitlistHeroSection = _chunkB7ZH2R62js.WaitlistHeroSection; exports.WaitlistList = _chunkB7ZH2R62js.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkB7ZH2R62js.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkB7ZH2R62js.WaitlistSuccessState; exports.badgeVariants = _chunkB7ZH2R62js.badgeVariants; exports.buttonVariants = _chunkB7ZH2R62js.buttonVariants; exports.cellComponent = _chunkB7ZH2R62js.cellComponent; exports.cellDate = _chunkB7ZH2R62js.cellDate; exports.cellId = _chunkB7ZH2R62js.cellId; exports.cellLink = _chunkB7ZH2R62js.cellLink; exports.cellUrl = _chunkB7ZH2R62js.cellUrl; exports.errorToast = _chunkB7ZH2R62js.errorToast; exports.generateNotificationData = _chunkB7ZH2R62js.generateNotificationData; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.navigationMenuTriggerStyle = _chunkB7ZH2R62js.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkB7ZH2R62js.parseFiscalData; exports.tabsListVariants = _chunkB7ZH2R62js.tabsListVariants; exports.toggleVariants = _chunkB7ZH2R62js.toggleVariants; exports.triggerAssociationToast = _chunkB7ZH2R62js.triggerAssociationToast; exports.useCarousel = _chunkB7ZH2R62js.useCarousel; exports.useComboboxAnchor = _chunkB7ZH2R62js.useComboboxAnchor; exports.useDebounce = _chunkB7ZH2R62js.useDebounce2; exports.useEditorDialog = _chunkB7ZH2R62js.useEditorDialog; exports.useFileUpload = _chunkB7ZH2R62js.useFileUpload; exports.useSidebar = _chunkB7ZH2R62js.useSidebar;
|
|
926
|
+
exports.AcceptInvitation = _chunkAMP2ZDAVjs.AcceptInvitation; exports.Accordion = _chunkAMP2ZDAVjs.Accordion; exports.AccordionContent = _chunkAMP2ZDAVjs.AccordionContent; exports.AccordionItem = _chunkAMP2ZDAVjs.AccordionItem; exports.AccordionTrigger = _chunkAMP2ZDAVjs.AccordionTrigger; exports.ActivateAccount = _chunkAMP2ZDAVjs.ActivateAccount; exports.AddUserToRole = _chunkAMP2ZDAVjs.AddUserToRole; exports.AdminCompanyContainer = _chunkAMP2ZDAVjs.AdminCompanyContainer; exports.AdminUsersList = _chunkAMP2ZDAVjs.AdminUsersList; exports.Alert = _chunkAMP2ZDAVjs.Alert; exports.AlertAction = _chunkAMP2ZDAVjs.AlertAction; exports.AlertDescription = _chunkAMP2ZDAVjs.AlertDescription; exports.AlertDialog = _chunkAMP2ZDAVjs.AlertDialog; exports.AlertDialogAction = _chunkAMP2ZDAVjs.AlertDialogAction; exports.AlertDialogCancel = _chunkAMP2ZDAVjs.AlertDialogCancel; exports.AlertDialogContent = _chunkAMP2ZDAVjs.AlertDialogContent; exports.AlertDialogDescription = _chunkAMP2ZDAVjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkAMP2ZDAVjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkAMP2ZDAVjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkAMP2ZDAVjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkAMP2ZDAVjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkAMP2ZDAVjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkAMP2ZDAVjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkAMP2ZDAVjs.AlertDialogTrigger; exports.AlertTitle = _chunkAMP2ZDAVjs.AlertTitle; exports.AllUsersListContainer = _chunkAMP2ZDAVjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkAMP2ZDAVjs.AllowedUsersDetails; exports.AssistantContainer = _chunkAMP2ZDAVjs.AssistantContainer; exports.AttributeElement = _chunkAMP2ZDAVjs.AttributeElement; exports.AuthContainer = _chunkAMP2ZDAVjs.AuthContainer; exports.Avatar = _chunkAMP2ZDAVjs.Avatar; exports.AvatarBadge = _chunkAMP2ZDAVjs.AvatarBadge; exports.AvatarFallback = _chunkAMP2ZDAVjs.AvatarFallback; exports.AvatarGroup = _chunkAMP2ZDAVjs.AvatarGroup; exports.AvatarGroupCount = _chunkAMP2ZDAVjs.AvatarGroupCount; exports.AvatarImage = _chunkAMP2ZDAVjs.AvatarImage; exports.BackupCodesDialog = _chunkAMP2ZDAVjs.BackupCodesDialog; exports.Badge = _chunkAMP2ZDAVjs.Badge; exports.BlockNoteEditorContainer = _chunkAMP2ZDAVjs.BlockNoteEditorContainer; exports.Board = _chunkAMP2ZDAVjs.KanbanBoard; exports.Breadcrumb = _chunkAMP2ZDAVjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkAMP2ZDAVjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkAMP2ZDAVjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkAMP2ZDAVjs.BreadcrumbLink; exports.BreadcrumbList = _chunkAMP2ZDAVjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkAMP2ZDAVjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkAMP2ZDAVjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkAMP2ZDAVjs.BreadcrumbSeparator; exports.Button = _chunkAMP2ZDAVjs.Button; exports.Calendar = _chunkAMP2ZDAVjs.Calendar; exports.CalendarDayButton = _chunkAMP2ZDAVjs.CalendarDayButton; exports.Card = _chunkAMP2ZDAVjs.Card; exports.CardAction = _chunkAMP2ZDAVjs.CardAction; exports.CardContent = _chunkAMP2ZDAVjs.CardContent; exports.CardDescription = _chunkAMP2ZDAVjs.CardDescription; exports.CardFooter = _chunkAMP2ZDAVjs.CardFooter; exports.CardHeader = _chunkAMP2ZDAVjs.CardHeader; exports.CardTitle = _chunkAMP2ZDAVjs.CardTitle; exports.Carousel = _chunkAMP2ZDAVjs.Carousel; exports.CarouselContent = _chunkAMP2ZDAVjs.CarouselContent; exports.CarouselItem = _chunkAMP2ZDAVjs.CarouselItem; exports.CarouselNext = _chunkAMP2ZDAVjs.CarouselNext; exports.CarouselPrevious = _chunkAMP2ZDAVjs.CarouselPrevious; exports.ChartContainer = _chunkAMP2ZDAVjs.ChartContainer; exports.ChartLegend = _chunkAMP2ZDAVjs.ChartLegend; exports.ChartLegendContent = _chunkAMP2ZDAVjs.ChartLegendContent; exports.ChartStyle = _chunkAMP2ZDAVjs.ChartStyle; exports.ChartTooltip = _chunkAMP2ZDAVjs.ChartTooltip; exports.ChartTooltipContent = _chunkAMP2ZDAVjs.ChartTooltipContent; exports.Checkbox = _chunkAMP2ZDAVjs.Checkbox; exports.Collapsible = _chunkAMP2ZDAVjs.Collapsible; exports.CollapsibleContent = _chunkAMP2ZDAVjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkAMP2ZDAVjs.CollapsibleTrigger; exports.Column = _chunkAMP2ZDAVjs.KanbanColumn; exports.ColumnHandle = _chunkAMP2ZDAVjs.KanbanColumnHandle; exports.Combobox = _chunkAMP2ZDAVjs.Combobox; exports.ComboboxChip = _chunkAMP2ZDAVjs.ComboboxChip; exports.ComboboxChips = _chunkAMP2ZDAVjs.ComboboxChips; exports.ComboboxChipsInput = _chunkAMP2ZDAVjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkAMP2ZDAVjs.ComboboxCollection; exports.ComboboxContent = _chunkAMP2ZDAVjs.ComboboxContent; exports.ComboboxEmpty = _chunkAMP2ZDAVjs.ComboboxEmpty; exports.ComboboxGroup = _chunkAMP2ZDAVjs.ComboboxGroup; exports.ComboboxInput = _chunkAMP2ZDAVjs.ComboboxInput; exports.ComboboxItem = _chunkAMP2ZDAVjs.ComboboxItem; exports.ComboboxLabel = _chunkAMP2ZDAVjs.ComboboxLabel; exports.ComboboxList = _chunkAMP2ZDAVjs.ComboboxList; exports.ComboboxSeparator = _chunkAMP2ZDAVjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkAMP2ZDAVjs.ComboboxTrigger; exports.ComboboxValue = _chunkAMP2ZDAVjs.ComboboxValue; exports.Command = _chunkAMP2ZDAVjs.Command; exports.CommandDialog = _chunkAMP2ZDAVjs.CommandDialog; exports.CommandEmpty = _chunkAMP2ZDAVjs.CommandEmpty; exports.CommandGroup = _chunkAMP2ZDAVjs.CommandGroup; exports.CommandInput = _chunkAMP2ZDAVjs.CommandInput; exports.CommandItem = _chunkAMP2ZDAVjs.CommandItem; exports.CommandList = _chunkAMP2ZDAVjs.CommandList; exports.CommandSeparator = _chunkAMP2ZDAVjs.CommandSeparator; exports.CommandShortcut = _chunkAMP2ZDAVjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkAMP2ZDAVjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkAMP2ZDAVjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkAMP2ZDAVjs.CommonDeleter; exports.CommonEditorButtons = _chunkAMP2ZDAVjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkAMP2ZDAVjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkAMP2ZDAVjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkAMP2ZDAVjs.CommonEditorTrigger; exports.CompaniesList = _chunkAMP2ZDAVjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkAMP2ZDAVjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkAMP2ZDAVjs.CompanyContainer; exports.CompanyContent = _chunkAMP2ZDAVjs.CompanyContent; exports.CompanyDeleter = _chunkAMP2ZDAVjs.CompanyDeleter; exports.CompanyDetails = _chunkAMP2ZDAVjs.CompanyDetails; exports.CompanyEditor = _chunkAMP2ZDAVjs.CompanyEditor; exports.CompanyUsersList = _chunkAMP2ZDAVjs.CompanyUsersList; exports.ContentListGrid = _chunkAMP2ZDAVjs.ContentListGrid; exports.ContentListTable = _chunkAMP2ZDAVjs.ContentListTable; exports.ContentTableSearch = _chunkAMP2ZDAVjs.ContentTableSearch; exports.ContentTitle = _chunkAMP2ZDAVjs.ContentTitle; exports.ContentsList = _chunkAMP2ZDAVjs.ContentsList; exports.ContentsListById = _chunkAMP2ZDAVjs.ContentsListById; exports.ContextMenu = _chunkAMP2ZDAVjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkAMP2ZDAVjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkAMP2ZDAVjs.ContextMenuContent; exports.ContextMenuGroup = _chunkAMP2ZDAVjs.ContextMenuGroup; exports.ContextMenuItem = _chunkAMP2ZDAVjs.ContextMenuItem; exports.ContextMenuLabel = _chunkAMP2ZDAVjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkAMP2ZDAVjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkAMP2ZDAVjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkAMP2ZDAVjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkAMP2ZDAVjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkAMP2ZDAVjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkAMP2ZDAVjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkAMP2ZDAVjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkAMP2ZDAVjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkAMP2ZDAVjs.ContextMenuTrigger; exports.ContributorsList = _chunkAMP2ZDAVjs.ContributorsList; exports.Cookies = _chunkAMP2ZDAVjs.Cookies; exports.DatePickerPopover = _chunkAMP2ZDAVjs.DatePickerPopover; exports.DateRangeSelector = _chunkAMP2ZDAVjs.DateRangeSelector; exports.Dialog = _chunkAMP2ZDAVjs.Dialog; exports.DialogClose = _chunkAMP2ZDAVjs.DialogClose; exports.DialogContent = _chunkAMP2ZDAVjs.DialogContent; exports.DialogDescription = _chunkAMP2ZDAVjs.DialogDescription; exports.DialogFooter = _chunkAMP2ZDAVjs.DialogFooter; exports.DialogHeader = _chunkAMP2ZDAVjs.DialogHeader; exports.DialogOverlay = _chunkAMP2ZDAVjs.DialogOverlay; exports.DialogPortal = _chunkAMP2ZDAVjs.DialogPortal; exports.DialogTitle = _chunkAMP2ZDAVjs.DialogTitle; exports.DialogTrigger = _chunkAMP2ZDAVjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkAMP2ZDAVjs.DisableTwoFactorDialog; exports.Drawer = _chunkAMP2ZDAVjs.Drawer; exports.DrawerClose = _chunkAMP2ZDAVjs.DrawerClose; exports.DrawerContent = _chunkAMP2ZDAVjs.DrawerContent; exports.DrawerDescription = _chunkAMP2ZDAVjs.DrawerDescription; exports.DrawerFooter = _chunkAMP2ZDAVjs.DrawerFooter; exports.DrawerHeader = _chunkAMP2ZDAVjs.DrawerHeader; exports.DrawerOverlay = _chunkAMP2ZDAVjs.DrawerOverlay; exports.DrawerPortal = _chunkAMP2ZDAVjs.DrawerPortal; exports.DrawerTitle = _chunkAMP2ZDAVjs.DrawerTitle; exports.DrawerTrigger = _chunkAMP2ZDAVjs.DrawerTrigger; exports.DropdownMenu = _chunkAMP2ZDAVjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkAMP2ZDAVjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkAMP2ZDAVjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkAMP2ZDAVjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkAMP2ZDAVjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkAMP2ZDAVjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkAMP2ZDAVjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkAMP2ZDAVjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkAMP2ZDAVjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkAMP2ZDAVjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkAMP2ZDAVjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkAMP2ZDAVjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkAMP2ZDAVjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkAMP2ZDAVjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkAMP2ZDAVjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkAMP2ZDAVjs.EditableAvatar; exports.EditorSheet = _chunkAMP2ZDAVjs.EditorSheet; exports.EntityAvatar = _chunkAMP2ZDAVjs.EntityAvatar; exports.EntityMultiSelector = _chunkAMP2ZDAVjs.EntityMultiSelector; exports.ErrorDetails = _chunkAMP2ZDAVjs.ErrorDetails; exports.Field = _chunkAMP2ZDAVjs.Field; exports.FieldContent = _chunkAMP2ZDAVjs.FieldContent; exports.FieldDescription = _chunkAMP2ZDAVjs.FieldDescription; exports.FieldError = _chunkAMP2ZDAVjs.FieldError; exports.FieldGroup = _chunkAMP2ZDAVjs.FieldGroup; exports.FieldLabel = _chunkAMP2ZDAVjs.FieldLabel; exports.FieldLegend = _chunkAMP2ZDAVjs.FieldLegend; exports.FieldSeparator = _chunkAMP2ZDAVjs.FieldSeparator; exports.FieldSet = _chunkAMP2ZDAVjs.FieldSet; exports.FieldTitle = _chunkAMP2ZDAVjs.FieldTitle; exports.FileInput = _chunkAMP2ZDAVjs.FileInput; exports.FileUploader = _chunkAMP2ZDAVjs.FileUploader; exports.FileUploaderContent = _chunkAMP2ZDAVjs.FileUploaderContent; exports.FileUploaderItem = _chunkAMP2ZDAVjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkAMP2ZDAVjs.FiscalDataDisplay; exports.ForgotPassword = _chunkAMP2ZDAVjs.ForgotPassword; exports.Form = _chunkAMP2ZDAVjs.Form; exports.FormBlockNote = _chunkAMP2ZDAVjs.FormBlockNote; exports.FormCheckbox = _chunkAMP2ZDAVjs.FormCheckbox; exports.FormDate = _chunkAMP2ZDAVjs.FormDate; exports.FormDateTime = _chunkAMP2ZDAVjs.FormDateTime; exports.FormFeatures = _chunkAMP2ZDAVjs.FormFeatures; exports.FormFieldWrapper = _chunkAMP2ZDAVjs.FormFieldWrapper; exports.FormInput = _chunkAMP2ZDAVjs.FormInput; exports.FormPassword = _chunkAMP2ZDAVjs.FormPassword; exports.FormPlaceAutocomplete = _chunkAMP2ZDAVjs.FormPlaceAutocomplete; exports.FormRoles = _chunkAMP2ZDAVjs.FormRoles; exports.FormSelect = _chunkAMP2ZDAVjs.FormSelect; exports.FormSlider = _chunkAMP2ZDAVjs.FormSlider; exports.FormSwitch = _chunkAMP2ZDAVjs.FormSwitch; exports.FormTextarea = _chunkAMP2ZDAVjs.FormTextarea; exports.GdprConsentCheckbox = _chunkAMP2ZDAVjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkAMP2ZDAVjs.GdprConsentSection; exports.Header = _chunkAMP2ZDAVjs.Header; exports.HoverCard = _chunkAMP2ZDAVjs.HoverCard; exports.HoverCardContent = _chunkAMP2ZDAVjs.HoverCardContent; exports.HoverCardTrigger = _chunkAMP2ZDAVjs.HoverCardTrigger; exports.HowToCommand = _chunkAMP2ZDAVjs.HowToCommand; exports.HowToCommandViewer = _chunkAMP2ZDAVjs.HowToCommandViewer; exports.HowToContainer = _chunkAMP2ZDAVjs.HowToContainer; exports.HowToContent = _chunkAMP2ZDAVjs.HowToContent; exports.HowToDeleter = _chunkAMP2ZDAVjs.HowToDeleter; exports.HowToDetails = _chunkAMP2ZDAVjs.HowToDetails; exports.HowToEditor = _chunkAMP2ZDAVjs.HowToEditor; exports.HowToList = _chunkAMP2ZDAVjs.HowToList; exports.HowToListContainer = _chunkAMP2ZDAVjs.HowToListContainer; exports.HowToMultiSelector = _chunkAMP2ZDAVjs.HowToMultiSelector; exports.HowToSelector = _chunkAMP2ZDAVjs.HowToSelector; exports.Input = _chunkAMP2ZDAVjs.Input; exports.InputGroup = _chunkAMP2ZDAVjs.InputGroup; exports.InputGroupAddon = _chunkAMP2ZDAVjs.InputGroupAddon; exports.InputGroupButton = _chunkAMP2ZDAVjs.InputGroupButton; exports.InputGroupInput = _chunkAMP2ZDAVjs.InputGroupInput; exports.InputGroupText = _chunkAMP2ZDAVjs.InputGroupText; exports.InputGroupTextarea = _chunkAMP2ZDAVjs.InputGroupTextarea; exports.InputOTP = _chunkAMP2ZDAVjs.InputOTP; exports.InputOTPGroup = _chunkAMP2ZDAVjs.InputOTPGroup; exports.InputOTPSeparator = _chunkAMP2ZDAVjs.InputOTPSeparator; exports.InputOTPSlot = _chunkAMP2ZDAVjs.InputOTPSlot; exports.ItalianFiscalData = _chunkAMP2ZDAVjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkAMP2ZDAVjs.ItalianFiscalDataDisplay; exports.Item = _chunkAMP2ZDAVjs.KanbanItem; exports.ItemHandle = _chunkAMP2ZDAVjs.KanbanItemHandle; exports.Kanban = _chunkAMP2ZDAVjs.KanbanRoot; exports.KanbanBoard = _chunkAMP2ZDAVjs.KanbanBoard; exports.KanbanColumn = _chunkAMP2ZDAVjs.KanbanColumn; exports.KanbanColumnHandle = _chunkAMP2ZDAVjs.KanbanColumnHandle; exports.KanbanItem = _chunkAMP2ZDAVjs.KanbanItem; exports.KanbanItemHandle = _chunkAMP2ZDAVjs.KanbanItemHandle; exports.KanbanOverlay = _chunkAMP2ZDAVjs.KanbanOverlay; exports.Label = _chunkAMP2ZDAVjs.Label; exports.LandingComponent = _chunkAMP2ZDAVjs.LandingComponent; exports.Link = _chunkAMP2ZDAVjs.Link; exports.Login = _chunkAMP2ZDAVjs.Login; exports.Logout = _chunkAMP2ZDAVjs.Logout; exports.MessageItem = _chunkAMP2ZDAVjs.MessageItem; exports.MessageList = _chunkAMP2ZDAVjs.MessageList; exports.MessageSourcesPanel = _chunkAMP2ZDAVjs.MessageSourcesPanel; exports.ModeToggleSwitch = _chunkAMP2ZDAVjs.ModeToggleSwitch; exports.MultiSelect = _chunkAMP2ZDAVjs.MultiSelect; exports.MultipleSelector = _chunkAMP2ZDAVjs.MultipleSelector; exports.NavigationMenu = _chunkAMP2ZDAVjs.NavigationMenu; exports.NavigationMenuContent = _chunkAMP2ZDAVjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkAMP2ZDAVjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkAMP2ZDAVjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkAMP2ZDAVjs.NavigationMenuLink; exports.NavigationMenuList = _chunkAMP2ZDAVjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkAMP2ZDAVjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkAMP2ZDAVjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkAMP2ZDAVjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkAMP2ZDAVjs.NotificationMenuItem; exports.NotificationModal = _chunkAMP2ZDAVjs.NotificationModal; exports.NotificationToast = _chunkAMP2ZDAVjs.NotificationToast; exports.NotificationsList = _chunkAMP2ZDAVjs.NotificationsList; exports.NotificationsListContainer = _chunkAMP2ZDAVjs.NotificationsListContainer; exports.OAuthClientCard = _chunkAMP2ZDAVjs.OAuthClientCard; exports.OAuthClientDetail = _chunkAMP2ZDAVjs.OAuthClientDetail; exports.OAuthClientForm = _chunkAMP2ZDAVjs.OAuthClientForm; exports.OAuthClientList = _chunkAMP2ZDAVjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkAMP2ZDAVjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkAMP2ZDAVjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkAMP2ZDAVjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkAMP2ZDAVjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkAMP2ZDAVjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkAMP2ZDAVjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkAMP2ZDAVjs.OAuthScopeSelector; exports.OnboardingCard = _chunkAMP2ZDAVjs.OnboardingCard; exports.Overlay = _chunkAMP2ZDAVjs.KanbanOverlay; exports.PageContainer = _chunkAMP2ZDAVjs.PageContainer; exports.PageContainerContentDetails = _chunkAMP2ZDAVjs.PageContainerContentDetails; exports.PageContentContainer = _chunkAMP2ZDAVjs.PageContentContainer; exports.PageSection = _chunkAMP2ZDAVjs.PageSection; exports.PasskeyButton = _chunkAMP2ZDAVjs.PasskeyButton; exports.PasskeyList = _chunkAMP2ZDAVjs.PasskeyList; exports.PasskeySetupDialog = _chunkAMP2ZDAVjs.PasskeySetupDialog; exports.PasswordInput = _chunkAMP2ZDAVjs.PasswordInput; exports.Popover = _chunkAMP2ZDAVjs.Popover; exports.PopoverContent = _chunkAMP2ZDAVjs.PopoverContent; exports.PopoverDescription = _chunkAMP2ZDAVjs.PopoverDescription; exports.PopoverHeader = _chunkAMP2ZDAVjs.PopoverHeader; exports.PopoverTitle = _chunkAMP2ZDAVjs.PopoverTitle; exports.PopoverTrigger = _chunkAMP2ZDAVjs.PopoverTrigger; exports.Progress = _chunkAMP2ZDAVjs.Progress; exports.ProgressIndicator = _chunkAMP2ZDAVjs.ProgressIndicator; exports.ProgressLabel = _chunkAMP2ZDAVjs.ProgressLabel; exports.ProgressTrack = _chunkAMP2ZDAVjs.ProgressTrack; exports.ProgressValue = _chunkAMP2ZDAVjs.ProgressValue; exports.PushNotificationProvider = _chunkAMP2ZDAVjs.PushNotificationProvider; exports.RadioGroup = _chunkAMP2ZDAVjs.RadioGroup; exports.RadioGroupItem = _chunkAMP2ZDAVjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkAMP2ZDAVjs.RbacByRoleContainer; exports.RbacContainer = _chunkAMP2ZDAVjs.RbacContainer; exports.RbacPermissionCell = _chunkAMP2ZDAVjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkAMP2ZDAVjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkAMP2ZDAVjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkAMP2ZDAVjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkAMP2ZDAVjs.ReferralCodeCapture; exports.ReferralDialog = _chunkAMP2ZDAVjs.ReferralDialog; exports.ReferralWidget = _chunkAMP2ZDAVjs.ReferralWidget; exports.RefreshUser = _chunkAMP2ZDAVjs.RefreshUser; exports.RelevantContentsList = _chunkAMP2ZDAVjs.RelevantContentsList; exports.RelevantUsersList = _chunkAMP2ZDAVjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkAMP2ZDAVjs.RemoveUserFromRole; exports.ResetPassword = _chunkAMP2ZDAVjs.ResetPassword; exports.ResizableHandle = _chunkAMP2ZDAVjs.ResizableHandle; exports.ResizablePanel = _chunkAMP2ZDAVjs.ResizablePanel; exports.ResizablePanelGroup = _chunkAMP2ZDAVjs.ResizablePanelGroup; exports.RoleContainer = _chunkAMP2ZDAVjs.RoleContainer; exports.RoleDetails = _chunkAMP2ZDAVjs.RoleDetails; exports.RoleUsersList = _chunkAMP2ZDAVjs.RoleUsersList; exports.RolesList = _chunkAMP2ZDAVjs.RolesList; exports.Root = _chunkAMP2ZDAVjs.KanbanRoot; exports.RoundPageContainer = _chunkAMP2ZDAVjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkAMP2ZDAVjs.RoundPageContainerTitle; exports.ScrollArea = _chunkAMP2ZDAVjs.ScrollArea; exports.ScrollBar = _chunkAMP2ZDAVjs.ScrollBar; exports.SecurityContainer = _chunkAMP2ZDAVjs.SecurityContainer; exports.Select = _chunkAMP2ZDAVjs.Select; exports.SelectContent = _chunkAMP2ZDAVjs.SelectContent; exports.SelectGroup = _chunkAMP2ZDAVjs.SelectGroup; exports.SelectItem = _chunkAMP2ZDAVjs.SelectItem; exports.SelectLabel = _chunkAMP2ZDAVjs.SelectLabel; exports.SelectScrollDownButton = _chunkAMP2ZDAVjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkAMP2ZDAVjs.SelectScrollUpButton; exports.SelectSeparator = _chunkAMP2ZDAVjs.SelectSeparator; exports.SelectTrigger = _chunkAMP2ZDAVjs.SelectTrigger; exports.SelectValue = _chunkAMP2ZDAVjs.SelectValue; exports.Separator = _chunkAMP2ZDAVjs.Separator; exports.Sheet = _chunkAMP2ZDAVjs.Sheet; exports.SheetClose = _chunkAMP2ZDAVjs.SheetClose; exports.SheetContent = _chunkAMP2ZDAVjs.SheetContent; exports.SheetDescription = _chunkAMP2ZDAVjs.SheetDescription; exports.SheetFooter = _chunkAMP2ZDAVjs.SheetFooter; exports.SheetHeader = _chunkAMP2ZDAVjs.SheetHeader; exports.SheetTitle = _chunkAMP2ZDAVjs.SheetTitle; exports.SheetTrigger = _chunkAMP2ZDAVjs.SheetTrigger; exports.Sidebar = _chunkAMP2ZDAVjs.Sidebar; exports.SidebarContent = _chunkAMP2ZDAVjs.SidebarContent; exports.SidebarFooter = _chunkAMP2ZDAVjs.SidebarFooter; exports.SidebarGroup = _chunkAMP2ZDAVjs.SidebarGroup; exports.SidebarGroupAction = _chunkAMP2ZDAVjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkAMP2ZDAVjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkAMP2ZDAVjs.SidebarGroupLabel; exports.SidebarHeader = _chunkAMP2ZDAVjs.SidebarHeader; exports.SidebarInput = _chunkAMP2ZDAVjs.SidebarInput; exports.SidebarInset = _chunkAMP2ZDAVjs.SidebarInset; exports.SidebarMenu = _chunkAMP2ZDAVjs.SidebarMenu; exports.SidebarMenuAction = _chunkAMP2ZDAVjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkAMP2ZDAVjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkAMP2ZDAVjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkAMP2ZDAVjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkAMP2ZDAVjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkAMP2ZDAVjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkAMP2ZDAVjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkAMP2ZDAVjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkAMP2ZDAVjs.SidebarProvider; exports.SidebarRail = _chunkAMP2ZDAVjs.SidebarRail; exports.SidebarSeparator = _chunkAMP2ZDAVjs.SidebarSeparator; exports.SidebarTrigger = _chunkAMP2ZDAVjs.SidebarTrigger; exports.Skeleton = _chunkAMP2ZDAVjs.Skeleton; exports.Slider = _chunkAMP2ZDAVjs.Slider; exports.Switch = _chunkAMP2ZDAVjs.Switch; exports.Table = _chunkAMP2ZDAVjs.Table; exports.TableBody = _chunkAMP2ZDAVjs.TableBody; exports.TableCaption = _chunkAMP2ZDAVjs.TableCaption; exports.TableCell = _chunkAMP2ZDAVjs.TableCell; exports.TableCellAvatar = _chunkAMP2ZDAVjs.TableCellAvatar; exports.TableFooter = _chunkAMP2ZDAVjs.TableFooter; exports.TableHead = _chunkAMP2ZDAVjs.TableHead; exports.TableHeader = _chunkAMP2ZDAVjs.TableHeader; exports.TableRow = _chunkAMP2ZDAVjs.TableRow; exports.Tabs = _chunkAMP2ZDAVjs.Tabs; exports.TabsContainer = _chunkAMP2ZDAVjs.TabsContainer; exports.TabsContent = _chunkAMP2ZDAVjs.TabsContent; exports.TabsList = _chunkAMP2ZDAVjs.TabsList; exports.TabsTrigger = _chunkAMP2ZDAVjs.TabsTrigger; exports.Textarea = _chunkAMP2ZDAVjs.Textarea; exports.Toaster = _chunkAMP2ZDAVjs.Toaster; exports.Toggle = _chunkAMP2ZDAVjs.Toggle; exports.TokenStatusIndicator = _chunkAMP2ZDAVjs.TokenStatusIndicator; exports.Tooltip = _chunkAMP2ZDAVjs.Tooltip; exports.TooltipContent = _chunkAMP2ZDAVjs.TooltipContent; exports.TooltipProvider = _chunkAMP2ZDAVjs.TooltipProvider; exports.TooltipTrigger = _chunkAMP2ZDAVjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkAMP2ZDAVjs.TotpAuthenticatorList; exports.TotpInput = _chunkAMP2ZDAVjs.TotpInput; exports.TotpSetupDialog = _chunkAMP2ZDAVjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkAMP2ZDAVjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkAMP2ZDAVjs.TwoFactorSettings; exports.UserAvatar = _chunkAMP2ZDAVjs.UserAvatar; exports.UserAvatarEditor = _chunkAMP2ZDAVjs.UserAvatarEditor; exports.UserAvatarList = _chunkAMP2ZDAVjs.UserAvatarList; exports.UserContainer = _chunkAMP2ZDAVjs.UserContainer; exports.UserContent = _chunkAMP2ZDAVjs.UserContent; exports.UserDeleter = _chunkAMP2ZDAVjs.UserDeleter; exports.UserEditor = _chunkAMP2ZDAVjs.UserEditor; exports.UserIndexContainer = _chunkAMP2ZDAVjs.UserIndexContainer; exports.UserIndexDetails = _chunkAMP2ZDAVjs.UserIndexDetails; exports.UserListInAdd = _chunkAMP2ZDAVjs.UserListInAdd; exports.UserMultiSelect = _chunkAMP2ZDAVjs.UserMultiSelect; exports.UserReactivator = _chunkAMP2ZDAVjs.UserReactivator; exports.UserResentInvitationEmail = _chunkAMP2ZDAVjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkAMP2ZDAVjs.UserRoleAdd; exports.UserRolesList = _chunkAMP2ZDAVjs.UserRolesList; exports.UserSearchPopover = _chunkAMP2ZDAVjs.UserSearchPopover; exports.UserSelector = _chunkAMP2ZDAVjs.UserSelector; exports.UserStanadaloneDetails = _chunkAMP2ZDAVjs.UserStanadaloneDetails; exports.UsersList = _chunkAMP2ZDAVjs.UsersList; exports.UsersListByContentIds = _chunkAMP2ZDAVjs.UsersListByContentIds; exports.UsersListContainer = _chunkAMP2ZDAVjs.UsersListContainer; exports.WaitlistConfirmation = _chunkAMP2ZDAVjs.WaitlistConfirmation; exports.WaitlistForm = _chunkAMP2ZDAVjs.WaitlistForm; exports.WaitlistHeroSection = _chunkAMP2ZDAVjs.WaitlistHeroSection; exports.WaitlistList = _chunkAMP2ZDAVjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkAMP2ZDAVjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkAMP2ZDAVjs.WaitlistSuccessState; exports.badgeVariants = _chunkAMP2ZDAVjs.badgeVariants; exports.buttonVariants = _chunkAMP2ZDAVjs.buttonVariants; exports.cellComponent = _chunkAMP2ZDAVjs.cellComponent; exports.cellDate = _chunkAMP2ZDAVjs.cellDate; exports.cellId = _chunkAMP2ZDAVjs.cellId; exports.cellLink = _chunkAMP2ZDAVjs.cellLink; exports.cellUrl = _chunkAMP2ZDAVjs.cellUrl; exports.errorToast = _chunkAMP2ZDAVjs.errorToast; exports.generateNotificationData = _chunkAMP2ZDAVjs.generateNotificationData; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.navigationMenuTriggerStyle = _chunkAMP2ZDAVjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkAMP2ZDAVjs.parseFiscalData; exports.tabsListVariants = _chunkAMP2ZDAVjs.tabsListVariants; exports.toggleVariants = _chunkAMP2ZDAVjs.toggleVariants; exports.triggerAssociationToast = _chunkAMP2ZDAVjs.triggerAssociationToast; exports.useCarousel = _chunkAMP2ZDAVjs.useCarousel; exports.useComboboxAnchor = _chunkAMP2ZDAVjs.useComboboxAnchor; exports.useDebounce = _chunkAMP2ZDAVjs.useDebounce2; exports.useEditorDialog = _chunkAMP2ZDAVjs.useEditorDialog; exports.useFileUpload = _chunkAMP2ZDAVjs.useFileUpload; exports.useSidebar = _chunkAMP2ZDAVjs.useSidebar;
|
|
927
927
|
//# sourceMappingURL=index.js.map
|
|
@@ -449,8 +449,8 @@ import {
|
|
|
449
449
|
useEditorDialog,
|
|
450
450
|
useFileUpload,
|
|
451
451
|
useSidebar
|
|
452
|
-
} from "../chunk-
|
|
453
|
-
import "../chunk-
|
|
452
|
+
} from "../chunk-CZ56O6JZ.mjs";
|
|
453
|
+
import "../chunk-NEJ7CDM3.mjs";
|
|
454
454
|
import {
|
|
455
455
|
getIcon,
|
|
456
456
|
getIconByModule,
|
|
@@ -24,8 +24,22 @@ declare function configureClientConfig(config: {
|
|
|
24
24
|
}): void;
|
|
25
25
|
/**
|
|
26
26
|
* Get the configured API URL.
|
|
27
|
+
*
|
|
28
|
+
* This may resolve to an internal/private host (e.g. a docker-network
|
|
29
|
+
* hostname) when configured to do so for SSR fetches. Do NOT use this for
|
|
30
|
+
* URLs that are rendered into HTML and followed by the browser — use
|
|
31
|
+
* `getPublicApiUrl()` instead.
|
|
27
32
|
*/
|
|
28
33
|
declare function getApiUrl(): string;
|
|
34
|
+
/**
|
|
35
|
+
* Get the public-facing API URL.
|
|
36
|
+
*
|
|
37
|
+
* Always sourced from `NEXT_PUBLIC_API_URL` so it is identical on server
|
|
38
|
+
* and client, and reachable from the user's browser. Use for any URL that
|
|
39
|
+
* gets rendered into HTML the browser will navigate to (links, redirects,
|
|
40
|
+
* OAuth hrefs).
|
|
41
|
+
*/
|
|
42
|
+
declare function getPublicApiUrl(): string;
|
|
29
43
|
/**
|
|
30
44
|
* Get the configured app URL.
|
|
31
45
|
*/
|
|
@@ -71,4 +85,4 @@ declare function getI18nLink(): LinkComponent;
|
|
|
71
85
|
declare function useI18nLocale(): string;
|
|
72
86
|
declare function useI18nDateFnsLocale(): any;
|
|
73
87
|
|
|
74
|
-
export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U,
|
|
88
|
+
export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U, getPublicApiUrl as a, getAppUrl as b, configureJsonApi as c, getTrackablePages as d, getStripePublishableKey as e, configureI18n as f, getApiUrl as g, configureClientConfig as h, getI18nLink as i, useI18nLocale as j, useI18nRouter as k, useI18nTranslations as l, type I18nRouter as m, type UseLocaleHook as n, type UseRouterHook as o, type UseTranslationsHook as p, useI18nDateFnsLocale as u };
|
|
@@ -24,8 +24,22 @@ declare function configureClientConfig(config: {
|
|
|
24
24
|
}): void;
|
|
25
25
|
/**
|
|
26
26
|
* Get the configured API URL.
|
|
27
|
+
*
|
|
28
|
+
* This may resolve to an internal/private host (e.g. a docker-network
|
|
29
|
+
* hostname) when configured to do so for SSR fetches. Do NOT use this for
|
|
30
|
+
* URLs that are rendered into HTML and followed by the browser — use
|
|
31
|
+
* `getPublicApiUrl()` instead.
|
|
27
32
|
*/
|
|
28
33
|
declare function getApiUrl(): string;
|
|
34
|
+
/**
|
|
35
|
+
* Get the public-facing API URL.
|
|
36
|
+
*
|
|
37
|
+
* Always sourced from `NEXT_PUBLIC_API_URL` so it is identical on server
|
|
38
|
+
* and client, and reachable from the user's browser. Use for any URL that
|
|
39
|
+
* gets rendered into HTML the browser will navigate to (links, redirects,
|
|
40
|
+
* OAuth hrefs).
|
|
41
|
+
*/
|
|
42
|
+
declare function getPublicApiUrl(): string;
|
|
29
43
|
/**
|
|
30
44
|
* Get the configured app URL.
|
|
31
45
|
*/
|
|
@@ -71,4 +85,4 @@ declare function getI18nLink(): LinkComponent;
|
|
|
71
85
|
declare function useI18nLocale(): string;
|
|
72
86
|
declare function useI18nDateFnsLocale(): any;
|
|
73
87
|
|
|
74
|
-
export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U,
|
|
88
|
+
export { type I18nConfig as I, type LinkComponent as L, type UseDateFnsLocaleHook as U, getPublicApiUrl as a, getAppUrl as b, configureJsonApi as c, getTrackablePages as d, getStripePublishableKey as e, configureI18n as f, getApiUrl as g, configureClientConfig as h, getI18nLink as i, useI18nLocale as j, useI18nRouter as k, useI18nTranslations as l, type I18nRouter as m, type UseLocaleHook as n, type UseRouterHook as o, type UseTranslationsHook as p, useI18nDateFnsLocale as u };
|
package/dist/contexts/index.js
CHANGED
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
var
|
|
35
|
-
require('../chunk-
|
|
34
|
+
var _chunkAMP2ZDAVjs = require('../chunk-AMP2ZDAV.js');
|
|
35
|
+
require('../chunk-2AK4GRIB.js');
|
|
36
36
|
require('../chunk-N4YZ45SK.js');
|
|
37
37
|
require('../chunk-LXKSUWAV.js');
|
|
38
38
|
require('../chunk-IBS6NI7D.js');
|
|
@@ -71,5 +71,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
|
|
74
|
-
exports.AssistantProvider =
|
|
74
|
+
exports.AssistantProvider = _chunkAMP2ZDAVjs.AssistantProvider; exports.CommonProvider = _chunkAMP2ZDAVjs.CommonProvider; exports.CompanyProvider = _chunkAMP2ZDAVjs.CompanyProvider; exports.CurrentUserProvider = _chunkAMP2ZDAVjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkAMP2ZDAVjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkAMP2ZDAVjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkAMP2ZDAVjs.HeaderLeftContentProvider; exports.HowToProvider = _chunkAMP2ZDAVjs.HowToProvider; exports.NotificationContextProvider = _chunkAMP2ZDAVjs.NotificationContextProvider; exports.OnboardingProvider = _chunkAMP2ZDAVjs.OnboardingProvider; exports.RbacProvider = _chunkAMP2ZDAVjs.RbacProvider; exports.RoleProvider = _chunkAMP2ZDAVjs.RoleProvider; exports.SharedProvider = _chunkAMP2ZDAVjs.SharedProvider; exports.SocketContext = _chunkAMP2ZDAVjs.SocketContext; exports.SocketProvider = _chunkAMP2ZDAVjs.SocketProvider; exports.UserProvider = _chunkAMP2ZDAVjs.UserProvider; exports.recentPagesAtom = _chunkAMP2ZDAVjs.recentPagesAtom; exports.useAssistantContext = _chunkAMP2ZDAVjs.useAssistantContext; exports.useCommonContext = _chunkAMP2ZDAVjs.useCommonContext; exports.useCompanyContext = _chunkAMP2ZDAVjs.useCompanyContext; exports.useCurrentUserContext = _chunkAMP2ZDAVjs.useCurrentUserContext; exports.useHeaderChildren = _chunkAMP2ZDAVjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkAMP2ZDAVjs.useHeaderLeftContent; exports.useHowToContext = _chunkAMP2ZDAVjs.useHowToContext; exports.useNotificationContext = _chunkAMP2ZDAVjs.useNotificationContext; exports.useOnboarding = _chunkAMP2ZDAVjs.useOnboarding; exports.useRbacContext = _chunkAMP2ZDAVjs.useRbacContext; exports.useRoleContext = _chunkAMP2ZDAVjs.useRoleContext; exports.useSharedContext = _chunkAMP2ZDAVjs.useSharedContext; exports.useSocketContext = _chunkAMP2ZDAVjs.useSocketContext; exports.useUserContext = _chunkAMP2ZDAVjs.useUserContext;
|
|
75
75
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
|
@@ -31,8 +31,8 @@ import {
|
|
|
31
31
|
useSharedContext,
|
|
32
32
|
useSocketContext,
|
|
33
33
|
useUserContext
|
|
34
|
-
} from "../chunk-
|
|
35
|
-
import "../chunk-
|
|
34
|
+
} from "../chunk-CZ56O6JZ.mjs";
|
|
35
|
+
import "../chunk-NEJ7CDM3.mjs";
|
|
36
36
|
import "../chunk-6UMB5LTQ.mjs";
|
|
37
37
|
import "../chunk-AUXK7QSA.mjs";
|
|
38
38
|
import "../chunk-C7C7VY4F.mjs";
|
package/dist/index.d.mts
CHANGED
|
@@ -16,7 +16,7 @@ export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P
|
|
|
16
16
|
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-BYgI5z1-.mjs';
|
|
17
17
|
export { F as FeatureInterface, M as ModuleInterface } from './feature.interface-CXb1-vNq.mjs';
|
|
18
18
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-o5FLpiN7.mjs';
|
|
19
|
-
export { I as I18nConfig,
|
|
19
|
+
export { I as I18nConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages } from './config-k61pe_o2.mjs';
|
|
20
20
|
export { Q as QuestionnaireField, a as QuestionnaireFieldType, b as QuestionnaireOption, W as WaitlistConfig, c as configureWaitlist, g as getWaitlistConfig } from './waitlist.config-kPfjImle.mjs';
|
|
21
21
|
import { R as RbacMatrix } from './RbacTypes-BTbr27Ew.mjs';
|
|
22
22
|
export { a as ACTION_TYPES, A as ActionType, C as COMPANY_ADMINISTRATOR_ROLE_ID, c as PermToken, P as PermissionValue, b as PermissionsMap, d as RbacModuleBlock } from './RbacTypes-BTbr27Ew.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -16,7 +16,7 @@ export { I as InvoiceStatus, M as MeterInterface, o as MeterSummaryInterface, P
|
|
|
16
16
|
export { A as AssistantInput, a as AssistantInterface } from './AssistantInterface-DfDcz0gJ.js';
|
|
17
17
|
export { F as FeatureInterface, M as ModuleInterface } from './feature.interface-BO25VLlx.js';
|
|
18
18
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, O as OAuthClientInterface, f as OAuthConsentInfo, d as OAuthConsentRequest, e as OAuthScopeInfo } from './oauth.interface-B6xmfDzK.js';
|
|
19
|
-
export { I as I18nConfig,
|
|
19
|
+
export { I as I18nConfig, f as configureI18n, c as configureJsonApi, g as getApiUrl, b as getAppUrl, a as getPublicApiUrl, e as getStripePublishableKey, d as getTrackablePages } from './config-CLQynoaa.js';
|
|
20
20
|
export { Q as QuestionnaireField, a as QuestionnaireFieldType, b as QuestionnaireOption, W as WaitlistConfig, c as configureWaitlist, g as getWaitlistConfig } from './waitlist.config-kPfjImle.js';
|
|
21
21
|
import { R as RbacMatrix } from './RbacTypes-BTbr27Ew.js';
|
|
22
22
|
export { a as ACTION_TYPES, A as ActionType, C as COMPANY_ADMINISTRATOR_ROLE_ID, c as PermToken, P as PermissionValue, b as PermissionsMap, d as RbacModuleBlock } from './RbacTypes-BTbr27Ew.js';
|
package/dist/index.js
CHANGED
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
var _chunk2AK4GRIBjs = require('./chunk-2AK4GRIB.js');
|
|
21
22
|
|
|
22
23
|
|
|
23
24
|
|
|
@@ -419,5 +420,6 @@ require('./chunk-7QVYU63E.js');
|
|
|
419
420
|
|
|
420
421
|
|
|
421
422
|
|
|
422
|
-
exports.ACTION_TYPES = _chunkZEJSPTHSjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkN4YZ45SKjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkN4YZ45SKjs.AbstractApiData; exports.AbstractService = _chunkN4YZ45SKjs.AbstractService; exports.Action = _chunkN4YZ45SKjs.Action; exports.Assistant = _chunkN4YZ45SKjs.Assistant; exports.AssistantMessage = _chunkN4YZ45SKjs.AssistantMessage; exports.AssistantMessageModule = _chunkN4YZ45SKjs.AssistantMessageModule; exports.AssistantMessageService = _chunkN4YZ45SKjs.AssistantMessageService; exports.AssistantModule = _chunkN4YZ45SKjs.AssistantModule; exports.AssistantService = _chunkN4YZ45SKjs.AssistantService; exports.AuditLog = _chunkN4YZ45SKjs.AuditLog; exports.AuditLogModule = _chunkN4YZ45SKjs.AuditLogModule; exports.AuditLogService = _chunkN4YZ45SKjs.AuditLogService; exports.Auth = _chunkN4YZ45SKjs.Auth; exports.AuthComponent = _chunkN4YZ45SKjs.AuthComponent; exports.AuthModule = _chunkN4YZ45SKjs.AuthModule; exports.AuthService = _chunkN4YZ45SKjs.AuthService; exports.AuthorModule = _chunkN4YZ45SKjs.AuthorModule; exports.BackupCodeVerify = _chunkN4YZ45SKjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkN4YZ45SKjs.BackupCodeVerifyModule; exports.Billing = _chunkN4YZ45SKjs.Billing; exports.BillingModule = _chunkN4YZ45SKjs.BillingModule; exports.BillingService = _chunkN4YZ45SKjs.BillingService; exports.BlockNoteDiffUtil = _chunkN4YZ45SKjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkN4YZ45SKjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunkZEJSPTHSjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.Chunk = _chunkN4YZ45SKjs.Chunk; exports.ChunkModule = _chunkN4YZ45SKjs.ChunkModule; exports.ClientAbstractService = _chunkN4YZ45SKjs.ClientAbstractService; exports.ClientHttpMethod = _chunkN4YZ45SKjs.ClientHttpMethod; exports.Company = _chunkN4YZ45SKjs.Company; exports.CompanyFields = _chunkN4YZ45SKjs.CompanyFields; exports.CompanyModule = _chunkN4YZ45SKjs.CompanyModule; exports.CompanyService = _chunkN4YZ45SKjs.CompanyService; exports.Content = _chunkN4YZ45SKjs.Content; exports.ContentFields = _chunkN4YZ45SKjs.ContentFields; exports.ContentModule = _chunkN4YZ45SKjs.ContentModule; exports.ContentService = _chunkN4YZ45SKjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkN4YZ45SKjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkN4YZ45SKjs.EndpointCreator; exports.Feature = _chunkN4YZ45SKjs.Feature; exports.FeatureModule = _chunkN4YZ45SKjs.FeatureModule; exports.FeatureService = _chunkN4YZ45SKjs.FeatureService; exports.HowTo = _chunkN4YZ45SKjs.HowTo; exports.HowToFields = _chunkN4YZ45SKjs.HowToFields; exports.HowToModule = _chunkN4YZ45SKjs.HowToModule; exports.HowToService = _chunkN4YZ45SKjs.HowToService; exports.HttpMethod = _chunkN4YZ45SKjs.HttpMethod; exports.InvoiceStatus = _chunkN4YZ45SKjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkN4YZ45SKjs.Module; exports.ModuleModule = _chunkN4YZ45SKjs.ModuleModule; exports.ModulePaths = _chunkN4YZ45SKjs.ModulePaths; exports.ModulePathsModule = _chunkN4YZ45SKjs.ModulePathsModule; exports.ModuleRegistrar = _chunkN4YZ45SKjs.ModuleRegistrar; exports.ModuleRegistry = _chunkN4YZ45SKjs.ModuleRegistry; exports.Modules = _chunkN4YZ45SKjs.Modules; exports.Notification = _chunkN4YZ45SKjs.Notification; exports.NotificationFields = _chunkN4YZ45SKjs.NotificationFields; exports.NotificationModule = _chunkN4YZ45SKjs.NotificationModule; exports.NotificationService = _chunkN4YZ45SKjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkN4YZ45SKjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkN4YZ45SKjs.OAuthClient; exports.OAuthModule = _chunkN4YZ45SKjs.OAuthModule; exports.OAuthService = _chunkN4YZ45SKjs.OAuthService; exports.Passkey = _chunkN4YZ45SKjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkN4YZ45SKjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkN4YZ45SKjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkN4YZ45SKjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkN4YZ45SKjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkN4YZ45SKjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkN4YZ45SKjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkN4YZ45SKjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkN4YZ45SKjs.PasskeyRename; exports.PasskeyRenameModule = _chunkN4YZ45SKjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkN4YZ45SKjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkN4YZ45SKjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkN4YZ45SKjs.PaymentMethod; exports.PermissionMapping = _chunkN4YZ45SKjs.PermissionMapping; exports.PermissionMappingModule = _chunkN4YZ45SKjs.PermissionMappingModule; exports.Push = _chunkN4YZ45SKjs.Push; exports.PushModule = _chunkN4YZ45SKjs.PushModule; exports.PushService = _chunkN4YZ45SKjs.PushService; exports.RbacMatrixModel = _chunkN4YZ45SKjs.RbacMatrixModel; exports.RbacMatrixModule = _chunkN4YZ45SKjs.RbacMatrixModule; exports.RbacService = _chunkZEJSPTHSjs.RbacService; exports.ReferralModule = _chunkN4YZ45SKjs.ReferralModule; exports.ReferralService = _chunkN4YZ45SKjs.ReferralService; exports.ReferralStats = _chunkN4YZ45SKjs.ReferralStats; exports.ReferralStatsModule = _chunkN4YZ45SKjs.ReferralStatsModule; exports.RehydrationFactory = _chunkN4YZ45SKjs.RehydrationFactory; exports.Role = _chunkN4YZ45SKjs.Role; exports.RoleFields = _chunkN4YZ45SKjs.RoleFields; exports.RoleModule = _chunkN4YZ45SKjs.RoleModule; exports.RoleService = _chunkN4YZ45SKjs.RoleService; exports.S3 = _chunkN4YZ45SKjs.S3; exports.S3Module = _chunkN4YZ45SKjs.S3Module; exports.S3Service = _chunkN4YZ45SKjs.S3Service; exports.StripeCustomer = _chunkN4YZ45SKjs.StripeCustomer; exports.StripeCustomerModule = _chunkN4YZ45SKjs.StripeCustomerModule; exports.StripeCustomerService = _chunkN4YZ45SKjs.StripeCustomerService; exports.StripeInvoice = _chunkN4YZ45SKjs.StripeInvoice; exports.StripeInvoiceModule = _chunkN4YZ45SKjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkN4YZ45SKjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkN4YZ45SKjs.StripePaymentMethodModule; exports.StripePrice = _chunkN4YZ45SKjs.StripePrice; exports.StripePriceModule = _chunkN4YZ45SKjs.StripePriceModule; exports.StripePriceService = _chunkN4YZ45SKjs.StripePriceService; exports.StripeProduct = _chunkN4YZ45SKjs.StripeProduct; exports.StripeProductModule = _chunkN4YZ45SKjs.StripeProductModule; exports.StripeProductService = _chunkN4YZ45SKjs.StripeProductService; exports.StripePromotionCode = _chunkN4YZ45SKjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkN4YZ45SKjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkN4YZ45SKjs.StripePromotionCodeService; exports.StripeSubscription = _chunkN4YZ45SKjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkN4YZ45SKjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkN4YZ45SKjs.StripeSubscriptionService; exports.StripeUsage = _chunkN4YZ45SKjs.StripeUsage; exports.StripeUsageModule = _chunkN4YZ45SKjs.StripeUsageModule; exports.StripeUsageService = _chunkN4YZ45SKjs.StripeUsageService; exports.SubscriptionStatus = _chunkN4YZ45SKjs.SubscriptionStatus; exports.TableOptions = _chunkN4YZ45SKjs.TableOptions; exports.TotpAuthenticator = _chunkN4YZ45SKjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkN4YZ45SKjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkN4YZ45SKjs.TotpSetup; exports.TotpSetupModule = _chunkN4YZ45SKjs.TotpSetupModule; exports.TotpVerify = _chunkN4YZ45SKjs.TotpVerify; exports.TotpVerifyLogin = _chunkN4YZ45SKjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkN4YZ45SKjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkN4YZ45SKjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkN4YZ45SKjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkN4YZ45SKjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkN4YZ45SKjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkN4YZ45SKjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkN4YZ45SKjs.TwoFactorService; exports.TwoFactorStatus = _chunkN4YZ45SKjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkN4YZ45SKjs.TwoFactorStatusModule; exports.User = _chunkN4YZ45SKjs.User; exports.UserFields = _chunkN4YZ45SKjs.UserFields; exports.UserModule = _chunkN4YZ45SKjs.UserModule; exports.UserService = _chunkN4YZ45SKjs.UserService; exports.Waitlist = _chunkN4YZ45SKjs.Waitlist; exports.WaitlistModule = _chunkN4YZ45SKjs.WaitlistModule; exports.WaitlistService = _chunkN4YZ45SKjs.WaitlistService; exports.WaitlistStats = _chunkN4YZ45SKjs.WaitlistStats; exports.WaitlistStatsModule = _chunkN4YZ45SKjs.WaitlistStatsModule; exports.checkPermissions = _chunkN4YZ45SKjs.checkPermissions; exports.checkPermissionsFromServer = _chunkN4YZ45SKjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkN4YZ45SKjs.clearLastApiTotal; exports.cn = _chunkN4YZ45SKjs.cn; exports.composeRefs = _chunkN4YZ45SKjs.composeRefs; exports.configureAuth = _chunkN4YZ45SKjs.configureAuth; exports.configureI18n = _chunkZEJSPTHSjs.configureI18n; exports.configureJsonApi = _chunkZEJSPTHSjs.configureJsonApi; exports.configureLogin = _chunkZEJSPTHSjs.configureLogin; exports.configureReferral = _chunkZEJSPTHSjs.configureReferral; exports.configureRoles = _chunkZEJSPTHSjs.configureRoles; exports.configureWaitlist = _chunkZEJSPTHSjs.configureWaitlist; exports.createJsonApiInclusion = _chunkN4YZ45SKjs.createJsonApiInclusion; exports.dismissToast = _chunkN4YZ45SKjs.dismissToast; exports.entityObjectSchema = _chunkN4YZ45SKjs.entityObjectSchema; exports.exists = _chunkN4YZ45SKjs.exists; exports.formatDate = _chunkN4YZ45SKjs.formatDate; exports.getApiUrl = _chunkZEJSPTHSjs.getApiUrl; exports.getAppUrl = _chunkZEJSPTHSjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkN4YZ45SKjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkN4YZ45SKjs.getGlobalErrorHandler; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.getLastApiTotal = _chunkN4YZ45SKjs.getLastApiTotal; exports.getLucideIcon = _chunkN4YZ45SKjs.getLucideIcon; exports.getLucideIconByModule = _chunkN4YZ45SKjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkN4YZ45SKjs.getLucideIconByModuleName; exports.getReferralConfig = _chunkZEJSPTHSjs.getReferralConfig; exports.getRoleId = _chunkZEJSPTHSjs.getRoleId; exports.getStripePublishableKey = _chunkZEJSPTHSjs.getStripePublishableKey; exports.getTableComponents = _chunkN4YZ45SKjs.getTableComponents; exports.getTableOptions = _chunkN4YZ45SKjs.getTableOptions; exports.getTokenHandler = _chunkN4YZ45SKjs.getTokenHandler; exports.getTrackablePages = _chunkZEJSPTHSjs.getTrackablePages; exports.getValueFromPath = _chunkN4YZ45SKjs.getValueFromPath; exports.getWaitlistConfig = _chunkZEJSPTHSjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunkZEJSPTHSjs.isReferralEnabled; exports.isRolesConfigured = _chunkZEJSPTHSjs.isRolesConfigured; exports.rehydrate = _chunkN4YZ45SKjs.rehydrate; exports.rehydrateList = _chunkN4YZ45SKjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkN4YZ45SKjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkN4YZ45SKjs.setGlobalErrorHandler; exports.showCustomToast = _chunkN4YZ45SKjs.showCustomToast; exports.showError = _chunkN4YZ45SKjs.showError; exports.showToast = _chunkN4YZ45SKjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkN4YZ45SKjs.useComposedRefs; exports.useIsMobile = _chunkN4YZ45SKjs.useIsMobile; exports.userObjectSchema = _chunkN4YZ45SKjs.userObjectSchema;
|
|
423
|
+
|
|
424
|
+
exports.ACTION_TYPES = _chunk2AK4GRIBjs.ACTION_TYPES; exports.AVAILABLE_OAUTH_SCOPES = _chunkN4YZ45SKjs.AVAILABLE_OAUTH_SCOPES; exports.AbstractApiData = _chunkN4YZ45SKjs.AbstractApiData; exports.AbstractService = _chunkN4YZ45SKjs.AbstractService; exports.Action = _chunkN4YZ45SKjs.Action; exports.Assistant = _chunkN4YZ45SKjs.Assistant; exports.AssistantMessage = _chunkN4YZ45SKjs.AssistantMessage; exports.AssistantMessageModule = _chunkN4YZ45SKjs.AssistantMessageModule; exports.AssistantMessageService = _chunkN4YZ45SKjs.AssistantMessageService; exports.AssistantModule = _chunkN4YZ45SKjs.AssistantModule; exports.AssistantService = _chunkN4YZ45SKjs.AssistantService; exports.AuditLog = _chunkN4YZ45SKjs.AuditLog; exports.AuditLogModule = _chunkN4YZ45SKjs.AuditLogModule; exports.AuditLogService = _chunkN4YZ45SKjs.AuditLogService; exports.Auth = _chunkN4YZ45SKjs.Auth; exports.AuthComponent = _chunkN4YZ45SKjs.AuthComponent; exports.AuthModule = _chunkN4YZ45SKjs.AuthModule; exports.AuthService = _chunkN4YZ45SKjs.AuthService; exports.AuthorModule = _chunkN4YZ45SKjs.AuthorModule; exports.BackupCodeVerify = _chunkN4YZ45SKjs.BackupCodeVerify; exports.BackupCodeVerifyModule = _chunkN4YZ45SKjs.BackupCodeVerifyModule; exports.Billing = _chunkN4YZ45SKjs.Billing; exports.BillingModule = _chunkN4YZ45SKjs.BillingModule; exports.BillingService = _chunkN4YZ45SKjs.BillingService; exports.BlockNoteDiffUtil = _chunkN4YZ45SKjs.BlockNoteDiffUtil; exports.BlockNoteWordDiffRendererUtil = _chunkN4YZ45SKjs.BlockNoteWordDiffRendererUtil; exports.COMPANY_ADMINISTRATOR_ROLE_ID = _chunk2AK4GRIBjs.COMPANY_ADMINISTRATOR_ROLE_ID; exports.Chunk = _chunkN4YZ45SKjs.Chunk; exports.ChunkModule = _chunkN4YZ45SKjs.ChunkModule; exports.ClientAbstractService = _chunkN4YZ45SKjs.ClientAbstractService; exports.ClientHttpMethod = _chunkN4YZ45SKjs.ClientHttpMethod; exports.Company = _chunkN4YZ45SKjs.Company; exports.CompanyFields = _chunkN4YZ45SKjs.CompanyFields; exports.CompanyModule = _chunkN4YZ45SKjs.CompanyModule; exports.CompanyService = _chunkN4YZ45SKjs.CompanyService; exports.Content = _chunkN4YZ45SKjs.Content; exports.ContentFields = _chunkN4YZ45SKjs.ContentFields; exports.ContentModule = _chunkN4YZ45SKjs.ContentModule; exports.ContentService = _chunkN4YZ45SKjs.ContentService; exports.DEFAULT_GRANT_TYPES = _chunkN4YZ45SKjs.DEFAULT_GRANT_TYPES; exports.DataClass = _chunk4MN547K7js.DataClassRegistry; exports.DataClassRegistry = _chunk4MN547K7js.DataClassRegistry; exports.EndpointCreator = _chunkN4YZ45SKjs.EndpointCreator; exports.Feature = _chunkN4YZ45SKjs.Feature; exports.FeatureModule = _chunkN4YZ45SKjs.FeatureModule; exports.FeatureService = _chunkN4YZ45SKjs.FeatureService; exports.HowTo = _chunkN4YZ45SKjs.HowTo; exports.HowToFields = _chunkN4YZ45SKjs.HowToFields; exports.HowToModule = _chunkN4YZ45SKjs.HowToModule; exports.HowToService = _chunkN4YZ45SKjs.HowToService; exports.HttpMethod = _chunkN4YZ45SKjs.HttpMethod; exports.InvoiceStatus = _chunkN4YZ45SKjs.InvoiceStatus; exports.JsonApiDataFactory = _chunk4MN547K7js.JsonApiDataFactory; exports.Module = _chunkN4YZ45SKjs.Module; exports.ModuleModule = _chunkN4YZ45SKjs.ModuleModule; exports.ModulePaths = _chunkN4YZ45SKjs.ModulePaths; exports.ModulePathsModule = _chunkN4YZ45SKjs.ModulePathsModule; exports.ModuleRegistrar = _chunkN4YZ45SKjs.ModuleRegistrar; exports.ModuleRegistry = _chunkN4YZ45SKjs.ModuleRegistry; exports.Modules = _chunkN4YZ45SKjs.Modules; exports.Notification = _chunkN4YZ45SKjs.Notification; exports.NotificationFields = _chunkN4YZ45SKjs.NotificationFields; exports.NotificationModule = _chunkN4YZ45SKjs.NotificationModule; exports.NotificationService = _chunkN4YZ45SKjs.NotificationService; exports.OAUTH_SCOPE_DISPLAY = _chunkN4YZ45SKjs.OAUTH_SCOPE_DISPLAY; exports.OAuthClient = _chunkN4YZ45SKjs.OAuthClient; exports.OAuthModule = _chunkN4YZ45SKjs.OAuthModule; exports.OAuthService = _chunkN4YZ45SKjs.OAuthService; exports.Passkey = _chunkN4YZ45SKjs.Passkey; exports.PasskeyAuthenticationOptions = _chunkN4YZ45SKjs.PasskeyAuthenticationOptions; exports.PasskeyAuthenticationOptionsModule = _chunkN4YZ45SKjs.PasskeyAuthenticationOptionsModule; exports.PasskeyModule = _chunkN4YZ45SKjs.PasskeyModule; exports.PasskeyRegistrationOptions = _chunkN4YZ45SKjs.PasskeyRegistrationOptions; exports.PasskeyRegistrationOptionsModule = _chunkN4YZ45SKjs.PasskeyRegistrationOptionsModule; exports.PasskeyRegistrationVerify = _chunkN4YZ45SKjs.PasskeyRegistrationVerify; exports.PasskeyRegistrationVerifyModule = _chunkN4YZ45SKjs.PasskeyRegistrationVerifyModule; exports.PasskeyRename = _chunkN4YZ45SKjs.PasskeyRename; exports.PasskeyRenameModule = _chunkN4YZ45SKjs.PasskeyRenameModule; exports.PasskeyVerifyLogin = _chunkN4YZ45SKjs.PasskeyVerifyLogin; exports.PasskeyVerifyLoginModule = _chunkN4YZ45SKjs.PasskeyVerifyLoginModule; exports.PaymentMethod = _chunkN4YZ45SKjs.PaymentMethod; exports.PermissionMapping = _chunkN4YZ45SKjs.PermissionMapping; exports.PermissionMappingModule = _chunkN4YZ45SKjs.PermissionMappingModule; exports.Push = _chunkN4YZ45SKjs.Push; exports.PushModule = _chunkN4YZ45SKjs.PushModule; exports.PushService = _chunkN4YZ45SKjs.PushService; exports.RbacMatrixModel = _chunkN4YZ45SKjs.RbacMatrixModel; exports.RbacMatrixModule = _chunkN4YZ45SKjs.RbacMatrixModule; exports.RbacService = _chunk2AK4GRIBjs.RbacService; exports.ReferralModule = _chunkN4YZ45SKjs.ReferralModule; exports.ReferralService = _chunkN4YZ45SKjs.ReferralService; exports.ReferralStats = _chunkN4YZ45SKjs.ReferralStats; exports.ReferralStatsModule = _chunkN4YZ45SKjs.ReferralStatsModule; exports.RehydrationFactory = _chunkN4YZ45SKjs.RehydrationFactory; exports.Role = _chunkN4YZ45SKjs.Role; exports.RoleFields = _chunkN4YZ45SKjs.RoleFields; exports.RoleModule = _chunkN4YZ45SKjs.RoleModule; exports.RoleService = _chunkN4YZ45SKjs.RoleService; exports.S3 = _chunkN4YZ45SKjs.S3; exports.S3Module = _chunkN4YZ45SKjs.S3Module; exports.S3Service = _chunkN4YZ45SKjs.S3Service; exports.StripeCustomer = _chunkN4YZ45SKjs.StripeCustomer; exports.StripeCustomerModule = _chunkN4YZ45SKjs.StripeCustomerModule; exports.StripeCustomerService = _chunkN4YZ45SKjs.StripeCustomerService; exports.StripeInvoice = _chunkN4YZ45SKjs.StripeInvoice; exports.StripeInvoiceModule = _chunkN4YZ45SKjs.StripeInvoiceModule; exports.StripeInvoiceService = _chunkN4YZ45SKjs.StripeInvoiceService; exports.StripePaymentMethodModule = _chunkN4YZ45SKjs.StripePaymentMethodModule; exports.StripePrice = _chunkN4YZ45SKjs.StripePrice; exports.StripePriceModule = _chunkN4YZ45SKjs.StripePriceModule; exports.StripePriceService = _chunkN4YZ45SKjs.StripePriceService; exports.StripeProduct = _chunkN4YZ45SKjs.StripeProduct; exports.StripeProductModule = _chunkN4YZ45SKjs.StripeProductModule; exports.StripeProductService = _chunkN4YZ45SKjs.StripeProductService; exports.StripePromotionCode = _chunkN4YZ45SKjs.StripePromotionCode; exports.StripePromotionCodeModule = _chunkN4YZ45SKjs.StripePromotionCodeModule; exports.StripePromotionCodeService = _chunkN4YZ45SKjs.StripePromotionCodeService; exports.StripeSubscription = _chunkN4YZ45SKjs.StripeSubscription; exports.StripeSubscriptionModule = _chunkN4YZ45SKjs.StripeSubscriptionModule; exports.StripeSubscriptionService = _chunkN4YZ45SKjs.StripeSubscriptionService; exports.StripeUsage = _chunkN4YZ45SKjs.StripeUsage; exports.StripeUsageModule = _chunkN4YZ45SKjs.StripeUsageModule; exports.StripeUsageService = _chunkN4YZ45SKjs.StripeUsageService; exports.SubscriptionStatus = _chunkN4YZ45SKjs.SubscriptionStatus; exports.TableOptions = _chunkN4YZ45SKjs.TableOptions; exports.TotpAuthenticator = _chunkN4YZ45SKjs.TotpAuthenticator; exports.TotpAuthenticatorModule = _chunkN4YZ45SKjs.TotpAuthenticatorModule; exports.TotpSetup = _chunkN4YZ45SKjs.TotpSetup; exports.TotpSetupModule = _chunkN4YZ45SKjs.TotpSetupModule; exports.TotpVerify = _chunkN4YZ45SKjs.TotpVerify; exports.TotpVerifyLogin = _chunkN4YZ45SKjs.TotpVerifyLogin; exports.TotpVerifyLoginModule = _chunkN4YZ45SKjs.TotpVerifyLoginModule; exports.TotpVerifyModule = _chunkN4YZ45SKjs.TotpVerifyModule; exports.TwoFactorChallenge = _chunkN4YZ45SKjs.TwoFactorChallenge; exports.TwoFactorChallengeModule = _chunkN4YZ45SKjs.TwoFactorChallengeModule; exports.TwoFactorEnable = _chunkN4YZ45SKjs.TwoFactorEnable; exports.TwoFactorEnableModule = _chunkN4YZ45SKjs.TwoFactorEnableModule; exports.TwoFactorService = _chunkN4YZ45SKjs.TwoFactorService; exports.TwoFactorStatus = _chunkN4YZ45SKjs.TwoFactorStatus; exports.TwoFactorStatusModule = _chunkN4YZ45SKjs.TwoFactorStatusModule; exports.User = _chunkN4YZ45SKjs.User; exports.UserFields = _chunkN4YZ45SKjs.UserFields; exports.UserModule = _chunkN4YZ45SKjs.UserModule; exports.UserService = _chunkN4YZ45SKjs.UserService; exports.Waitlist = _chunkN4YZ45SKjs.Waitlist; exports.WaitlistModule = _chunkN4YZ45SKjs.WaitlistModule; exports.WaitlistService = _chunkN4YZ45SKjs.WaitlistService; exports.WaitlistStats = _chunkN4YZ45SKjs.WaitlistStats; exports.WaitlistStatsModule = _chunkN4YZ45SKjs.WaitlistStatsModule; exports.checkPermissions = _chunkN4YZ45SKjs.checkPermissions; exports.checkPermissionsFromServer = _chunkN4YZ45SKjs.checkPermissionsFromServer; exports.clearLastApiTotal = _chunkN4YZ45SKjs.clearLastApiTotal; exports.cn = _chunkN4YZ45SKjs.cn; exports.composeRefs = _chunkN4YZ45SKjs.composeRefs; exports.configureAuth = _chunkN4YZ45SKjs.configureAuth; exports.configureI18n = _chunk2AK4GRIBjs.configureI18n; exports.configureJsonApi = _chunk2AK4GRIBjs.configureJsonApi; exports.configureLogin = _chunk2AK4GRIBjs.configureLogin; exports.configureReferral = _chunk2AK4GRIBjs.configureReferral; exports.configureRoles = _chunk2AK4GRIBjs.configureRoles; exports.configureWaitlist = _chunk2AK4GRIBjs.configureWaitlist; exports.createJsonApiInclusion = _chunkN4YZ45SKjs.createJsonApiInclusion; exports.dismissToast = _chunkN4YZ45SKjs.dismissToast; exports.entityObjectSchema = _chunkN4YZ45SKjs.entityObjectSchema; exports.exists = _chunkN4YZ45SKjs.exists; exports.formatDate = _chunkN4YZ45SKjs.formatDate; exports.getApiUrl = _chunk2AK4GRIBjs.getApiUrl; exports.getAppUrl = _chunk2AK4GRIBjs.getAppUrl; exports.getBootstrapper = _chunk4MN547K7js.getBootstrapper; exports.getClientGlobalErrorHandler = _chunkN4YZ45SKjs.getClientGlobalErrorHandler; exports.getGlobalErrorHandler = _chunkN4YZ45SKjs.getGlobalErrorHandler; exports.getIcon = _chunkN4YZ45SKjs.getIcon; exports.getIconByModule = _chunkN4YZ45SKjs.getIconByModule; exports.getIconByModuleName = _chunkN4YZ45SKjs.getIconByModuleName; exports.getInitials = _chunkN4YZ45SKjs.getInitials; exports.getLastApiTotal = _chunkN4YZ45SKjs.getLastApiTotal; exports.getLucideIcon = _chunkN4YZ45SKjs.getLucideIcon; exports.getLucideIconByModule = _chunkN4YZ45SKjs.getLucideIconByModule; exports.getLucideIconByModuleName = _chunkN4YZ45SKjs.getLucideIconByModuleName; exports.getPublicApiUrl = _chunk2AK4GRIBjs.getPublicApiUrl; exports.getReferralConfig = _chunk2AK4GRIBjs.getReferralConfig; exports.getRoleId = _chunk2AK4GRIBjs.getRoleId; exports.getStripePublishableKey = _chunk2AK4GRIBjs.getStripePublishableKey; exports.getTableComponents = _chunkN4YZ45SKjs.getTableComponents; exports.getTableOptions = _chunkN4YZ45SKjs.getTableOptions; exports.getTokenHandler = _chunkN4YZ45SKjs.getTokenHandler; exports.getTrackablePages = _chunk2AK4GRIBjs.getTrackablePages; exports.getValueFromPath = _chunkN4YZ45SKjs.getValueFromPath; exports.getWaitlistConfig = _chunk2AK4GRIBjs.getWaitlistConfig; exports.hasBootstrapper = _chunk4MN547K7js.hasBootstrapper; exports.isReferralEnabled = _chunk2AK4GRIBjs.isReferralEnabled; exports.isRolesConfigured = _chunk2AK4GRIBjs.isRolesConfigured; exports.rehydrate = _chunkN4YZ45SKjs.rehydrate; exports.rehydrateList = _chunkN4YZ45SKjs.rehydrateList; exports.resetBootstrapStore = _chunk4MN547K7js.resetBootstrapStore; exports.setBootstrapper = _chunk4MN547K7js.setBootstrapper; exports.setClientGlobalErrorHandler = _chunkN4YZ45SKjs.setClientGlobalErrorHandler; exports.setGlobalErrorHandler = _chunkN4YZ45SKjs.setGlobalErrorHandler; exports.showCustomToast = _chunkN4YZ45SKjs.showCustomToast; exports.showError = _chunkN4YZ45SKjs.showError; exports.showToast = _chunkN4YZ45SKjs.showToast; exports.translateData = _chunk4MN547K7js.translateData; exports.translateResponse = _chunk4MN547K7js.translateResponse; exports.tryBootstrap = _chunk4MN547K7js.tryBootstrap; exports.useComposedRefs = _chunkN4YZ45SKjs.useComposedRefs; exports.useIsMobile = _chunkN4YZ45SKjs.useIsMobile; exports.userObjectSchema = _chunkN4YZ45SKjs.userObjectSchema;
|
|
423
425
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACF,sDAA4B;AAC5B,+BAA4B;AAC5B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,2sYAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/index.js"}
|