@carlonicora/nextjs-jsonapi 1.28.0 → 1.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BlockNoteEditor-CAUNVZUF.js → BlockNoteEditor-7BDLLHRA.js} +13 -13
- package/dist/{BlockNoteEditor-CAUNVZUF.js.map → BlockNoteEditor-7BDLLHRA.js.map} +1 -1
- package/dist/{BlockNoteEditor-EOA4OEVX.mjs → BlockNoteEditor-F5KCNLVF.mjs} +3 -3
- package/dist/billing/index.d.mts +47 -17
- package/dist/billing/index.d.ts +47 -17
- package/dist/billing/index.js +1241 -1073
- package/dist/billing/index.js.map +1 -1
- package/dist/billing/index.mjs +1375 -1207
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{chunk-IXI4GAKB.js → chunk-7M7NPKOF.js} +490 -433
- package/dist/chunk-7M7NPKOF.js.map +1 -0
- package/dist/{chunk-ORFXBO7F.mjs → chunk-DU64WMZD.mjs} +6 -3
- package/dist/chunk-DU64WMZD.mjs.map +1 -0
- package/dist/{chunk-TSEU4KZ2.js → chunk-J22NEVSK.js} +21 -18
- package/dist/chunk-J22NEVSK.js.map +1 -0
- package/dist/{chunk-PYASRX75.mjs → chunk-YLSLXQ3O.mjs} +83 -26
- package/dist/chunk-YLSLXQ3O.mjs.map +1 -0
- package/dist/client/index.d.mts +14 -5
- package/dist/client/index.d.ts +14 -5
- 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 +2 -2
- package/dist/components/index.d.ts +2 -2
- package/dist/components/index.js +3 -3
- package/dist/components/index.mjs +2 -2
- package/dist/{config-B4pZpLT9.d.ts → config-CHwoRDOp.d.ts} +1 -1
- package/dist/{config-DT1K-t6I.d.mts → config-DiWyJzk9.d.mts} +1 -1
- package/dist/{content.interface-B2Ldg0vg.d.mts → content.interface-BSpowEiW.d.mts} +1 -1
- package/dist/{content.interface-D8NHv3DX.d.ts → content.interface-DFQ7mkpL.d.ts} +1 -1
- package/dist/contexts/index.d.mts +2 -2
- package/dist/contexts/index.d.ts +2 -2
- package/dist/contexts/index.js +3 -3
- package/dist/contexts/index.mjs +2 -2
- package/dist/core/index.d.mts +39 -37
- package/dist/core/index.d.ts +39 -37
- package/dist/core/index.js +2 -2
- package/dist/core/index.mjs +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/{notification.interface-H0L9WBge.d.ts → notification.interface-CmKmObIU.d.ts} +1 -0
- package/dist/{notification.interface-DEn-Yp_b.d.mts → notification.interface-D5MbtfZK.d.mts} +1 -0
- package/dist/{s3.service-BNytYanU.d.mts → s3.service-BMT7W6KS.d.mts} +19 -19
- package/dist/{s3.service-C7f_Ygz5.d.ts → s3.service-DsXo9nop.d.ts} +19 -19
- package/dist/server/index.d.mts +3 -3
- package/dist/server/index.d.ts +3 -3
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/dist/{useSocket-BcnThTD0.d.mts → useSocket-DUqGoPya.d.mts} +1 -1
- package/dist/{useSocket-QZTOCzRF.d.ts → useSocket-QuHa0ZmO.d.ts} +1 -1
- package/package.json +1 -1
- package/src/client/index.ts +1 -0
- package/src/components/forms/FormSelect.tsx +2 -1
- package/src/components/pages/PageContentContainer.tsx +2 -2
- package/src/features/auth/data/auth.ts +0 -2
- package/src/features/billing/components/containers/BillingDashboardContainer.tsx +60 -3
- package/src/features/billing/stripe-customer/components/forms/PaymentMethodEditor.tsx +12 -152
- package/src/features/billing/stripe-customer/components/forms/PaymentMethodForm.tsx +168 -0
- package/src/features/billing/stripe-customer/components/forms/index.ts +1 -0
- package/src/features/billing/stripe-price/components/forms/PriceEditor.tsx +19 -1
- package/src/features/billing/stripe-product/components/forms/ProductEditor.tsx +2 -2
- package/src/features/billing/stripe-subscription/components/containers/SubscriptionsContainer.tsx +24 -235
- package/src/features/billing/stripe-subscription/components/details/SubscriptionDetails.tsx +7 -18
- package/src/features/billing/stripe-subscription/components/forms/index.ts +0 -1
- package/src/features/billing/stripe-subscription/components/lists/SubscriptionsList.tsx +10 -1
- package/src/features/billing/stripe-subscription/components/widgets/IntervalToggle.tsx +28 -0
- package/src/features/billing/stripe-subscription/components/widgets/ProductPricingList.tsx +128 -0
- package/src/features/billing/stripe-subscription/components/widgets/ProductPricingRow.tsx +54 -0
- package/src/features/billing/stripe-subscription/components/widgets/SubscriptionConfirmation.tsx +68 -0
- package/src/features/billing/stripe-subscription/components/widgets/index.ts +4 -1
- package/src/features/billing/stripe-subscription/components/wizards/SubscriptionWizard.tsx +114 -0
- package/src/features/billing/stripe-subscription/components/wizards/WizardProgressIndicator.tsx +66 -0
- package/src/features/billing/stripe-subscription/components/wizards/WizardStepPaymentMethod.tsx +32 -0
- package/src/features/billing/stripe-subscription/components/wizards/WizardStepPlanSelection.tsx +103 -0
- package/src/features/billing/stripe-subscription/components/wizards/WizardStepReview.tsx +133 -0
- package/src/features/billing/stripe-subscription/components/wizards/index.ts +6 -0
- package/src/features/billing/stripe-subscription/hooks/useSubscriptionWizard.ts +217 -0
- package/src/features/billing/stripe-subscription/index.ts +3 -2
- package/src/features/company/components/details/TokenStatusIndicator.tsx +19 -9
- package/src/features/company/data/company.interface.ts +2 -0
- package/src/features/company/data/company.ts +7 -0
- package/src/features/company/hooks/index.ts +1 -0
- package/src/features/company/hooks/useSubscriptionStatus.ts +71 -0
- package/src/features/user/components/forms/UserEditor.tsx +1 -1
- package/src/features/user/components/lists/AdminUsersList.tsx +1 -1
- package/src/features/user/contexts/CurrentUserContext.tsx +1 -1
- package/src/features/user/data/user.ts +1 -1
- package/dist/chunk-IXI4GAKB.js.map +0 -1
- package/dist/chunk-ORFXBO7F.mjs.map +0 -1
- package/dist/chunk-PYASRX75.mjs.map +0 -1
- package/dist/chunk-TSEU4KZ2.js.map +0 -1
- package/src/features/billing/stripe-subscription/components/forms/SubscriptionEditor.tsx +0 -331
- package/src/features/billing/stripe-subscription/components/widgets/PricingCardsGrid.tsx +0 -110
- /package/dist/{BlockNoteEditor-EOA4OEVX.mjs.map → BlockNoteEditor-F5KCNLVF.mjs.map} +0 -0
package/dist/client/index.d.mts
CHANGED
|
@@ -7,14 +7,14 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
7
7
|
import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface-CUKFDBx2.mjs';
|
|
8
8
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-zeewugD7.mjs';
|
|
9
9
|
import { A as ApiData } from '../ApiData-DPKNfY-9.mjs';
|
|
10
|
-
import { M as ModuleWithPermissions, a as PageUrl, k as RoleInterface, U as UserInterface } from '../notification.interface-
|
|
11
|
-
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-
|
|
10
|
+
import { M as ModuleWithPermissions, a as PageUrl, k as RoleInterface, U as UserInterface } from '../notification.interface-D5MbtfZK.mjs';
|
|
11
|
+
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-DiWyJzk9.mjs';
|
|
12
12
|
import { ColumnDef } from '@tanstack/react-table';
|
|
13
13
|
import { D as DataListRetriever } from '../useDataListRetriever-futhx3OP.mjs';
|
|
14
14
|
export { u as useDataListRetriever } from '../useDataListRetriever-futhx3OP.mjs';
|
|
15
15
|
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.mjs';
|
|
16
|
-
export { u as useSocket } from '../useSocket-
|
|
17
|
-
import { a as ContentInterface } from '../content.interface-
|
|
16
|
+
export { u as useSocket } from '../useSocket-DUqGoPya.mjs';
|
|
17
|
+
import { a as ContentInterface } from '../content.interface-BSpowEiW.mjs';
|
|
18
18
|
import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-DsZ5ecSX.mjs';
|
|
19
19
|
import 'lucide-react';
|
|
20
20
|
import 'd3';
|
|
@@ -485,4 +485,13 @@ interface UseOAuthConsentReturn {
|
|
|
485
485
|
*/
|
|
486
486
|
declare function useOAuthConsent(params: OAuthConsentRequest): UseOAuthConsentReturn;
|
|
487
487
|
|
|
488
|
-
|
|
488
|
+
interface TrialSubscriptionStatus {
|
|
489
|
+
status: "loading" | "trial" | "active" | "expired";
|
|
490
|
+
trialEndsAt: Date | null;
|
|
491
|
+
daysRemaining: number;
|
|
492
|
+
isGracePeriod: boolean;
|
|
493
|
+
isBlocked: boolean;
|
|
494
|
+
}
|
|
495
|
+
declare function useSubscriptionStatus(): TrialSubscriptionStatus;
|
|
496
|
+
|
|
497
|
+
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, type MutationMethod, type MutationParams, type TableContent, TableGeneratorRegistry, type TableStructureGeneratorInterface, type TrialSubscriptionStatus, type UseJsonApiGetOptions, type UseJsonApiGetResult, type UseJsonApiMutationResult, type UseOAuthClientReturn, type UseOAuthClientsReturn, type UseOAuthConsentReturn, type UseTableStructureHook, type UseTableStructureHookParams, type UseTableStructureHookReturn, configureClientJsonApi, directFetch, getClientApiUrl, getClientAppUrl, getClientToken, getClientTrackablePages, registerTableGenerator, tableGeneratorRegistry, useContentTableStructure, useCustomD3Graph, useDebounce, useJsonApiGet, useJsonApiMutation, useNotificationSync, useOAuthClient, useOAuthClients, useOAuthConsent, usePageTracker, usePageUrlGenerator, useRehydration, useRehydrationList, useRoleTableStructure, useSubscriptionStatus, useTableGenerator, useUrlRewriter, useUserSearch, useUserTableStructure };
|
package/dist/client/index.d.ts
CHANGED
|
@@ -7,14 +7,14 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
7
7
|
import { A as ApiRequestDataTypeInterface } from '../ApiRequestDataTypeInterface-CUKFDBx2.js';
|
|
8
8
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-CAIAeP5d.js';
|
|
9
9
|
import { A as ApiData } from '../ApiData-DPKNfY-9.js';
|
|
10
|
-
import { M as ModuleWithPermissions, a as PageUrl, k as RoleInterface, U as UserInterface } from '../notification.interface-
|
|
11
|
-
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-
|
|
10
|
+
import { M as ModuleWithPermissions, a as PageUrl, k as RoleInterface, U as UserInterface } from '../notification.interface-CmKmObIU.js';
|
|
11
|
+
export { I as I18nConfig, l as I18nRouter, L as LinkComponent, U as UseDateFnsLocaleHook, m as UseLocaleHook, n as UseRouterHook, o as UseTranslationsHook, f as configureClientConfig, e as configureI18n, c as configureJsonApi, g as getApiUrl, a as getAppUrl, h as getI18nLink, d as getStripePublishableKey, b as getTrackablePages, u as useI18nDateFnsLocale, i as useI18nLocale, j as useI18nRouter, k as useI18nTranslations } from '../config-CHwoRDOp.js';
|
|
12
12
|
import { ColumnDef } from '@tanstack/react-table';
|
|
13
13
|
import { D as DataListRetriever } from '../useDataListRetriever-futhx3OP.js';
|
|
14
14
|
export { u as useDataListRetriever } from '../useDataListRetriever-futhx3OP.js';
|
|
15
15
|
import { a as D3Node, D as D3Link, C as ContentFields, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.js';
|
|
16
|
-
export { u as useSocket } from '../useSocket-
|
|
17
|
-
import { a as ContentInterface } from '../content.interface-
|
|
16
|
+
export { u as useSocket } from '../useSocket-QuHa0ZmO.js';
|
|
17
|
+
import { a as ContentInterface } from '../content.interface-DFQ7mkpL.js';
|
|
18
18
|
import { O as OAuthClientInterface, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, a as OAuthClientInput, f as OAuthConsentInfo, d as OAuthConsentRequest } from '../oauth.interface-vL7za9Bz.js';
|
|
19
19
|
import 'lucide-react';
|
|
20
20
|
import 'd3';
|
|
@@ -485,4 +485,13 @@ interface UseOAuthConsentReturn {
|
|
|
485
485
|
*/
|
|
486
486
|
declare function useOAuthConsent(params: OAuthConsentRequest): UseOAuthConsentReturn;
|
|
487
487
|
|
|
488
|
-
|
|
488
|
+
interface TrialSubscriptionStatus {
|
|
489
|
+
status: "loading" | "trial" | "active" | "expired";
|
|
490
|
+
trialEndsAt: Date | null;
|
|
491
|
+
daysRemaining: number;
|
|
492
|
+
isGracePeriod: boolean;
|
|
493
|
+
isBlocked: boolean;
|
|
494
|
+
}
|
|
495
|
+
declare function useSubscriptionStatus(): TrialSubscriptionStatus;
|
|
496
|
+
|
|
497
|
+
export { ClientJsonApiDelete, ClientJsonApiGet, ClientJsonApiPatch, ClientJsonApiPost, ClientJsonApiPut, DataListRetriever, type DirectFetchParams, JsonApiConfig, JsonApiProvider, type JsonApiProviderProps, type MutationMethod, type MutationParams, type TableContent, TableGeneratorRegistry, type TableStructureGeneratorInterface, type TrialSubscriptionStatus, type UseJsonApiGetOptions, type UseJsonApiGetResult, type UseJsonApiMutationResult, type UseOAuthClientReturn, type UseOAuthClientsReturn, type UseOAuthConsentReturn, type UseTableStructureHook, type UseTableStructureHookParams, type UseTableStructureHookReturn, configureClientJsonApi, directFetch, getClientApiUrl, getClientAppUrl, getClientToken, getClientTrackablePages, registerTableGenerator, tableGeneratorRegistry, useContentTableStructure, useCustomD3Graph, useDebounce, useJsonApiGet, useJsonApiMutation, useNotificationSync, useOAuthClient, useOAuthClients, useOAuthConsent, usePageTracker, usePageUrlGenerator, useRehydration, useRehydrationList, useRoleTableStructure, useSubscriptionStatus, useTableGenerator, useUrlRewriter, useUserSearch, useUserTableStructure };
|
package/dist/client/index.js
CHANGED
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
|
|
29
|
+
var _chunk7M7NPKOFjs = require('../chunk-7M7NPKOF.js');
|
|
29
30
|
|
|
30
31
|
|
|
31
32
|
|
|
@@ -50,7 +51,7 @@ var _chunkEW6QPMN3js = require('../chunk-EW6QPMN3.js');
|
|
|
50
51
|
|
|
51
52
|
|
|
52
53
|
|
|
53
|
-
var
|
|
54
|
+
var _chunkJ22NEVSKjs = require('../chunk-J22NEVSK.js');
|
|
54
55
|
|
|
55
56
|
|
|
56
57
|
var _chunkLXKSUWAVjs = require('../chunk-LXKSUWAV.js');
|
|
@@ -115,5 +116,6 @@ require('../chunk-7QVYU63E.js');
|
|
|
115
116
|
|
|
116
117
|
|
|
117
118
|
|
|
118
|
-
|
|
119
|
+
|
|
120
|
+
exports.ClientJsonApiDelete = _chunkJ22NEVSKjs.ClientJsonApiDelete; exports.ClientJsonApiGet = _chunkJ22NEVSKjs.ClientJsonApiGet; exports.ClientJsonApiPatch = _chunkJ22NEVSKjs.ClientJsonApiPatch; exports.ClientJsonApiPost = _chunkJ22NEVSKjs.ClientJsonApiPost; exports.ClientJsonApiPut = _chunkJ22NEVSKjs.ClientJsonApiPut; exports.JsonApiContext = _chunk3EPNHTMHjs.JsonApiContext; exports.JsonApiProvider = _chunk7M7NPKOFjs.JsonApiProvider; exports.TableGeneratorRegistry = _chunk7M7NPKOFjs.TableGeneratorRegistry; exports.configureClientConfig = _chunkEW6QPMN3js.configureClientConfig; exports.configureClientJsonApi = _chunkJ22NEVSKjs.configureClientJsonApi; exports.configureI18n = _chunkEW6QPMN3js.configureI18n; exports.configureJsonApi = _chunkEW6QPMN3js.configureJsonApi; exports.directFetch = _chunkIBS6NI7Djs.directFetch; exports.getApiUrl = _chunkEW6QPMN3js.getApiUrl; exports.getAppUrl = _chunkEW6QPMN3js.getAppUrl; exports.getClientApiUrl = _chunkJ22NEVSKjs.getClientApiUrl; exports.getClientAppUrl = _chunkJ22NEVSKjs.getClientAppUrl; exports.getClientToken = _chunkLXKSUWAVjs.getClientToken; exports.getClientTrackablePages = _chunkJ22NEVSKjs.getClientTrackablePages; exports.getI18nLink = _chunkEW6QPMN3js.getI18nLink; exports.getStripePublishableKey = _chunkEW6QPMN3js.getStripePublishableKey; exports.getTrackablePages = _chunkEW6QPMN3js.getTrackablePages; exports.registerTableGenerator = _chunk7M7NPKOFjs.registerTableGenerator; exports.tableGeneratorRegistry = _chunk7M7NPKOFjs.tableGeneratorRegistry; exports.useContentTableStructure = _chunk7M7NPKOFjs.useContentTableStructure; exports.useCustomD3Graph = _chunk7M7NPKOFjs.useCustomD3Graph; exports.useDataListRetriever = _chunk7M7NPKOFjs.useDataListRetriever; exports.useDebounce = _chunk7M7NPKOFjs.useDebounce; exports.useI18nDateFnsLocale = _chunkEW6QPMN3js.useI18nDateFnsLocale; exports.useI18nLocale = _chunkEW6QPMN3js.useI18nLocale; exports.useI18nRouter = _chunkEW6QPMN3js.useI18nRouter; exports.useI18nTranslations = _chunkEW6QPMN3js.useI18nTranslations; exports.useJsonApiConfig = _chunk3EPNHTMHjs.useJsonApiConfig; exports.useJsonApiConfigOptional = _chunk3EPNHTMHjs.useJsonApiConfigOptional; exports.useJsonApiGet = _chunk7M7NPKOFjs.useJsonApiGet; exports.useJsonApiMutation = _chunk7M7NPKOFjs.useJsonApiMutation; exports.useNotificationSync = _chunk7M7NPKOFjs.useNotificationSync; exports.useOAuthClient = _chunk7M7NPKOFjs.useOAuthClient; exports.useOAuthClients = _chunk7M7NPKOFjs.useOAuthClients; exports.useOAuthConsent = _chunk7M7NPKOFjs.useOAuthConsent; exports.usePageTracker = _chunk7M7NPKOFjs.usePageTracker; exports.usePageUrlGenerator = _chunk7M7NPKOFjs.usePageUrlGenerator; exports.useRehydration = _chunk7M7NPKOFjs.useRehydration; exports.useRehydrationList = _chunk7M7NPKOFjs.useRehydrationList; exports.useRoleTableStructure = _chunk7M7NPKOFjs.useRoleTableStructure; exports.useSocket = _chunk7M7NPKOFjs.useSocket; exports.useSubscriptionStatus = _chunk7M7NPKOFjs.useSubscriptionStatus; exports.useTableGenerator = _chunk7M7NPKOFjs.useTableGenerator; exports.useUrlRewriter = _chunk7M7NPKOFjs.useUrlRewriter; exports.useUserSearch = _chunk7M7NPKOFjs.useUserSearch; exports.useUserTableStructure = _chunk7M7NPKOFjs.useUserTableStructure;
|
|
119
121
|
//# 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;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;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;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,+pGAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/client/index.js"}
|
package/dist/client/index.mjs
CHANGED
|
@@ -20,11 +20,12 @@ import {
|
|
|
20
20
|
useRehydrationList,
|
|
21
21
|
useRoleTableStructure,
|
|
22
22
|
useSocket,
|
|
23
|
+
useSubscriptionStatus,
|
|
23
24
|
useTableGenerator,
|
|
24
25
|
useUrlRewriter,
|
|
25
26
|
useUserSearch,
|
|
26
27
|
useUserTableStructure
|
|
27
|
-
} from "../chunk-
|
|
28
|
+
} from "../chunk-YLSLXQ3O.mjs";
|
|
28
29
|
import {
|
|
29
30
|
configureClientConfig,
|
|
30
31
|
configureI18n,
|
|
@@ -49,7 +50,7 @@ import {
|
|
|
49
50
|
getClientApiUrl,
|
|
50
51
|
getClientAppUrl,
|
|
51
52
|
getClientTrackablePages
|
|
52
|
-
} from "../chunk-
|
|
53
|
+
} from "../chunk-DU64WMZD.mjs";
|
|
53
54
|
import {
|
|
54
55
|
getClientToken
|
|
55
56
|
} from "../chunk-AUXK7QSA.mjs";
|
|
@@ -110,6 +111,7 @@ export {
|
|
|
110
111
|
useRehydrationList,
|
|
111
112
|
useRoleTableStructure,
|
|
112
113
|
useSocket,
|
|
114
|
+
useSubscriptionStatus,
|
|
113
115
|
useTableGenerator,
|
|
114
116
|
useUrlRewriter,
|
|
115
117
|
useUserSearch,
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactElement, ReactNode, Dispatch, SetStateAction, Component, JSX } from 'react';
|
|
4
|
-
import { k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action, F as FeatureInterface, h as CompanyInterface, N as NotificationInterface } from '../notification.interface-
|
|
5
|
-
import { a as ContentInterface } from '../content.interface-
|
|
4
|
+
import { k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action, F as FeatureInterface, h as CompanyInterface, N as NotificationInterface } from '../notification.interface-D5MbtfZK.mjs';
|
|
5
|
+
import { a as ContentInterface } from '../content.interface-BSpowEiW.mjs';
|
|
6
6
|
import { PartialBlock } from '@blocknote/core';
|
|
7
7
|
import { D as DataListRetriever } from '../useDataListRetriever-futhx3OP.mjs';
|
|
8
8
|
import { DateRange, DayPicker, DayButton } from 'react-day-picker';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import React__default, { ReactElement, ReactNode, Dispatch, SetStateAction, Component, JSX } from 'react';
|
|
4
|
-
import { k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action, F as FeatureInterface, h as CompanyInterface, N as NotificationInterface } from '../notification.interface-
|
|
5
|
-
import { a as ContentInterface } from '../content.interface-
|
|
4
|
+
import { k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action, F as FeatureInterface, h as CompanyInterface, N as NotificationInterface } from '../notification.interface-CmKmObIU.js';
|
|
5
|
+
import { a as ContentInterface } from '../content.interface-DFQ7mkpL.js';
|
|
6
6
|
import { PartialBlock } from '@blocknote/core';
|
|
7
7
|
import { D as DataListRetriever } from '../useDataListRetriever-futhx3OP.js';
|
|
8
8
|
import { DateRange, DayPicker, DayButton } from 'react-day-picker';
|
package/dist/components/index.js
CHANGED
|
@@ -370,9 +370,9 @@
|
|
|
370
370
|
|
|
371
371
|
|
|
372
372
|
|
|
373
|
-
var
|
|
373
|
+
var _chunk7M7NPKOFjs = require('../chunk-7M7NPKOF.js');
|
|
374
374
|
require('../chunk-EW6QPMN3.js');
|
|
375
|
-
require('../chunk-
|
|
375
|
+
require('../chunk-J22NEVSK.js');
|
|
376
376
|
require('../chunk-LXKSUWAV.js');
|
|
377
377
|
require('../chunk-IBS6NI7D.js');
|
|
378
378
|
require('../chunk-FM6WRAN5.js');
|
|
@@ -756,5 +756,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
756
756
|
|
|
757
757
|
|
|
758
758
|
|
|
759
|
-
exports.AcceptInvitation = _chunkIXI4GAKBjs.AcceptInvitation; exports.Accordion = _chunkIXI4GAKBjs.Accordion; exports.AccordionContent = _chunkIXI4GAKBjs.AccordionContent; exports.AccordionItem = _chunkIXI4GAKBjs.AccordionItem; exports.AccordionTrigger = _chunkIXI4GAKBjs.AccordionTrigger; exports.ActivateAccount = _chunkIXI4GAKBjs.ActivateAccount; exports.AddUserToRole = _chunkIXI4GAKBjs.AddUserToRole; exports.AdminCompanyContainer = _chunkIXI4GAKBjs.AdminCompanyContainer; exports.AdminUsersList = _chunkIXI4GAKBjs.AdminUsersList; exports.Alert = _chunkIXI4GAKBjs.Alert; exports.AlertAction = _chunkIXI4GAKBjs.AlertAction; exports.AlertDescription = _chunkIXI4GAKBjs.AlertDescription; exports.AlertDialog = _chunkIXI4GAKBjs.AlertDialog; exports.AlertDialogAction = _chunkIXI4GAKBjs.AlertDialogAction; exports.AlertDialogCancel = _chunkIXI4GAKBjs.AlertDialogCancel; exports.AlertDialogContent = _chunkIXI4GAKBjs.AlertDialogContent; exports.AlertDialogDescription = _chunkIXI4GAKBjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkIXI4GAKBjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkIXI4GAKBjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkIXI4GAKBjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkIXI4GAKBjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkIXI4GAKBjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkIXI4GAKBjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkIXI4GAKBjs.AlertDialogTrigger; exports.AlertTitle = _chunkIXI4GAKBjs.AlertTitle; exports.AllowedUsersDetails = _chunkIXI4GAKBjs.AllowedUsersDetails; exports.AttributeElement = _chunkIXI4GAKBjs.AttributeElement; exports.AuthContainer = _chunkIXI4GAKBjs.AuthContainer; exports.Avatar = _chunkIXI4GAKBjs.Avatar; exports.AvatarBadge = _chunkIXI4GAKBjs.AvatarBadge; exports.AvatarFallback = _chunkIXI4GAKBjs.AvatarFallback; exports.AvatarGroup = _chunkIXI4GAKBjs.AvatarGroup; exports.AvatarGroupCount = _chunkIXI4GAKBjs.AvatarGroupCount; exports.AvatarImage = _chunkIXI4GAKBjs.AvatarImage; exports.Badge = _chunkIXI4GAKBjs.Badge; exports.BlockNoteEditorContainer = _chunkIXI4GAKBjs.BlockNoteEditorContainer; exports.Board = _chunkIXI4GAKBjs.KanbanBoard; exports.Breadcrumb = _chunkIXI4GAKBjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkIXI4GAKBjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkIXI4GAKBjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkIXI4GAKBjs.BreadcrumbLink; exports.BreadcrumbList = _chunkIXI4GAKBjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkIXI4GAKBjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkIXI4GAKBjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkIXI4GAKBjs.BreadcrumbSeparator; exports.Button = _chunkIXI4GAKBjs.Button; exports.Calendar = _chunkIXI4GAKBjs.Calendar; exports.CalendarDayButton = _chunkIXI4GAKBjs.CalendarDayButton; exports.Card = _chunkIXI4GAKBjs.Card; exports.CardAction = _chunkIXI4GAKBjs.CardAction; exports.CardContent = _chunkIXI4GAKBjs.CardContent; exports.CardDescription = _chunkIXI4GAKBjs.CardDescription; exports.CardFooter = _chunkIXI4GAKBjs.CardFooter; exports.CardHeader = _chunkIXI4GAKBjs.CardHeader; exports.CardTitle = _chunkIXI4GAKBjs.CardTitle; exports.Carousel = _chunkIXI4GAKBjs.Carousel; exports.CarouselContent = _chunkIXI4GAKBjs.CarouselContent; exports.CarouselItem = _chunkIXI4GAKBjs.CarouselItem; exports.CarouselNext = _chunkIXI4GAKBjs.CarouselNext; exports.CarouselPrevious = _chunkIXI4GAKBjs.CarouselPrevious; exports.ChartContainer = _chunkIXI4GAKBjs.ChartContainer; exports.ChartLegend = _chunkIXI4GAKBjs.ChartLegend; exports.ChartLegendContent = _chunkIXI4GAKBjs.ChartLegendContent; exports.ChartStyle = _chunkIXI4GAKBjs.ChartStyle; exports.ChartTooltip = _chunkIXI4GAKBjs.ChartTooltip; exports.ChartTooltipContent = _chunkIXI4GAKBjs.ChartTooltipContent; exports.Checkbox = _chunkIXI4GAKBjs.Checkbox; exports.Collapsible = _chunkIXI4GAKBjs.Collapsible; exports.CollapsibleContent = _chunkIXI4GAKBjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkIXI4GAKBjs.CollapsibleTrigger; exports.Column = _chunkIXI4GAKBjs.KanbanColumn; exports.ColumnHandle = _chunkIXI4GAKBjs.KanbanColumnHandle; exports.Command = _chunkIXI4GAKBjs.Command; exports.CommandDialog = _chunkIXI4GAKBjs.CommandDialog; exports.CommandEmpty = _chunkIXI4GAKBjs.CommandEmpty; exports.CommandGroup = _chunkIXI4GAKBjs.CommandGroup; exports.CommandInput = _chunkIXI4GAKBjs.CommandInput; exports.CommandItem = _chunkIXI4GAKBjs.CommandItem; exports.CommandList = _chunkIXI4GAKBjs.CommandList; exports.CommandSeparator = _chunkIXI4GAKBjs.CommandSeparator; exports.CommandShortcut = _chunkIXI4GAKBjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkIXI4GAKBjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkIXI4GAKBjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkIXI4GAKBjs.CommonDeleter; exports.CommonEditorButtons = _chunkIXI4GAKBjs.CommonEditorButtons; exports.CommonEditorHeader = _chunkIXI4GAKBjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkIXI4GAKBjs.CommonEditorTrigger; exports.CompaniesList = _chunkIXI4GAKBjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkIXI4GAKBjs.CompanyConfigurationEditor; exports.CompanyConfigurationSecurityForm = _chunkIXI4GAKBjs.CompanyConfigurationSecurityForm; exports.CompanyContainer = _chunkIXI4GAKBjs.CompanyContainer; exports.CompanyDeleter = _chunkIXI4GAKBjs.CompanyDeleter; exports.CompanyDetails = _chunkIXI4GAKBjs.CompanyDetails; exports.CompanyEditor = _chunkIXI4GAKBjs.CompanyEditor; exports.CompanyUsersList = _chunkIXI4GAKBjs.CompanyUsersList; exports.ContentListTable = _chunkIXI4GAKBjs.ContentListTable; exports.ContentTableSearch = _chunkIXI4GAKBjs.ContentTableSearch; exports.ContentTitle = _chunkIXI4GAKBjs.ContentTitle; exports.ContentsList = _chunkIXI4GAKBjs.ContentsList; exports.ContentsListById = _chunkIXI4GAKBjs.ContentsListById; exports.ContextMenu = _chunkIXI4GAKBjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkIXI4GAKBjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkIXI4GAKBjs.ContextMenuContent; exports.ContextMenuGroup = _chunkIXI4GAKBjs.ContextMenuGroup; exports.ContextMenuItem = _chunkIXI4GAKBjs.ContextMenuItem; exports.ContextMenuLabel = _chunkIXI4GAKBjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkIXI4GAKBjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkIXI4GAKBjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkIXI4GAKBjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkIXI4GAKBjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkIXI4GAKBjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkIXI4GAKBjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkIXI4GAKBjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkIXI4GAKBjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkIXI4GAKBjs.ContextMenuTrigger; exports.ContributorsList = _chunkIXI4GAKBjs.ContributorsList; exports.Cookies = _chunkIXI4GAKBjs.Cookies; exports.DatePickerPopover = _chunkIXI4GAKBjs.DatePickerPopover; exports.DateRangeSelector = _chunkIXI4GAKBjs.DateRangeSelector; exports.Dialog = _chunkIXI4GAKBjs.Dialog; exports.DialogClose = _chunkIXI4GAKBjs.DialogClose; exports.DialogContent = _chunkIXI4GAKBjs.DialogContent; exports.DialogDescription = _chunkIXI4GAKBjs.DialogDescription; exports.DialogFooter = _chunkIXI4GAKBjs.DialogFooter; exports.DialogHeader = _chunkIXI4GAKBjs.DialogHeader; exports.DialogOverlay = _chunkIXI4GAKBjs.DialogOverlay; exports.DialogPortal = _chunkIXI4GAKBjs.DialogPortal; exports.DialogTitle = _chunkIXI4GAKBjs.DialogTitle; exports.DialogTrigger = _chunkIXI4GAKBjs.DialogTrigger; exports.Drawer = _chunkIXI4GAKBjs.Drawer; exports.DrawerClose = _chunkIXI4GAKBjs.DrawerClose; exports.DrawerContent = _chunkIXI4GAKBjs.DrawerContent; exports.DrawerDescription = _chunkIXI4GAKBjs.DrawerDescription; exports.DrawerFooter = _chunkIXI4GAKBjs.DrawerFooter; exports.DrawerHeader = _chunkIXI4GAKBjs.DrawerHeader; exports.DrawerOverlay = _chunkIXI4GAKBjs.DrawerOverlay; exports.DrawerPortal = _chunkIXI4GAKBjs.DrawerPortal; exports.DrawerTitle = _chunkIXI4GAKBjs.DrawerTitle; exports.DrawerTrigger = _chunkIXI4GAKBjs.DrawerTrigger; exports.DropdownMenu = _chunkIXI4GAKBjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkIXI4GAKBjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkIXI4GAKBjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkIXI4GAKBjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkIXI4GAKBjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkIXI4GAKBjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkIXI4GAKBjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkIXI4GAKBjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkIXI4GAKBjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkIXI4GAKBjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkIXI4GAKBjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkIXI4GAKBjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkIXI4GAKBjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkIXI4GAKBjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkIXI4GAKBjs.DropdownMenuTrigger; exports.ErrorDetails = _chunkIXI4GAKBjs.ErrorDetails; exports.Field = _chunkIXI4GAKBjs.Field; exports.FieldContent = _chunkIXI4GAKBjs.FieldContent; exports.FieldDescription = _chunkIXI4GAKBjs.FieldDescription; exports.FieldError = _chunkIXI4GAKBjs.FieldError; exports.FieldGroup = _chunkIXI4GAKBjs.FieldGroup; exports.FieldLabel = _chunkIXI4GAKBjs.FieldLabel; exports.FieldLegend = _chunkIXI4GAKBjs.FieldLegend; exports.FieldSeparator = _chunkIXI4GAKBjs.FieldSeparator; exports.FieldSet = _chunkIXI4GAKBjs.FieldSet; exports.FieldTitle = _chunkIXI4GAKBjs.FieldTitle; exports.FileInput = _chunkIXI4GAKBjs.FileInput; exports.FileUploader = _chunkIXI4GAKBjs.FileUploader; exports.FileUploaderContent = _chunkIXI4GAKBjs.FileUploaderContent; exports.FileUploaderItem = _chunkIXI4GAKBjs.FileUploaderItem; exports.ForgotPassword = _chunkIXI4GAKBjs.ForgotPassword; exports.Form = _chunkIXI4GAKBjs.Form; exports.FormCheckbox = _chunkIXI4GAKBjs.FormCheckbox; exports.FormDate = _chunkIXI4GAKBjs.FormDate; exports.FormDateTime = _chunkIXI4GAKBjs.FormDateTime; exports.FormFeatures = _chunkIXI4GAKBjs.FormFeatures; exports.FormFieldWrapper = _chunkIXI4GAKBjs.FormFieldWrapper; exports.FormInput = _chunkIXI4GAKBjs.FormInput; exports.FormPassword = _chunkIXI4GAKBjs.FormPassword; exports.FormPlaceAutocomplete = _chunkIXI4GAKBjs.FormPlaceAutocomplete; exports.FormRoles = _chunkIXI4GAKBjs.FormRoles; exports.FormSelect = _chunkIXI4GAKBjs.FormSelect; exports.FormSlider = _chunkIXI4GAKBjs.FormSlider; exports.FormSwitch = _chunkIXI4GAKBjs.FormSwitch; exports.FormTextarea = _chunkIXI4GAKBjs.FormTextarea; exports.Header = _chunkIXI4GAKBjs.Header; exports.HoverCard = _chunkIXI4GAKBjs.HoverCard; exports.HoverCardContent = _chunkIXI4GAKBjs.HoverCardContent; exports.HoverCardTrigger = _chunkIXI4GAKBjs.HoverCardTrigger; exports.Input = _chunkIXI4GAKBjs.Input; exports.InputGroup = _chunkIXI4GAKBjs.InputGroup; exports.InputGroupAddon = _chunkIXI4GAKBjs.InputGroupAddon; exports.InputGroupButton = _chunkIXI4GAKBjs.InputGroupButton; exports.InputGroupInput = _chunkIXI4GAKBjs.InputGroupInput; exports.InputGroupText = _chunkIXI4GAKBjs.InputGroupText; exports.InputGroupTextarea = _chunkIXI4GAKBjs.InputGroupTextarea; exports.InputOTP = _chunkIXI4GAKBjs.InputOTP; exports.InputOTPGroup = _chunkIXI4GAKBjs.InputOTPGroup; exports.InputOTPSeparator = _chunkIXI4GAKBjs.InputOTPSeparator; exports.InputOTPSlot = _chunkIXI4GAKBjs.InputOTPSlot; exports.Item = _chunkIXI4GAKBjs.KanbanItem; exports.ItemHandle = _chunkIXI4GAKBjs.KanbanItemHandle; exports.Kanban = _chunkIXI4GAKBjs.KanbanRoot; exports.KanbanBoard = _chunkIXI4GAKBjs.KanbanBoard; exports.KanbanColumn = _chunkIXI4GAKBjs.KanbanColumn; exports.KanbanColumnHandle = _chunkIXI4GAKBjs.KanbanColumnHandle; exports.KanbanItem = _chunkIXI4GAKBjs.KanbanItem; exports.KanbanItemHandle = _chunkIXI4GAKBjs.KanbanItemHandle; exports.KanbanOverlay = _chunkIXI4GAKBjs.KanbanOverlay; exports.Label = _chunkIXI4GAKBjs.Label; exports.LandingComponent = _chunkIXI4GAKBjs.LandingComponent; exports.Link = _chunkIXI4GAKBjs.Link; exports.Login = _chunkIXI4GAKBjs.Login; exports.Logout = _chunkIXI4GAKBjs.Logout; exports.ModeToggleSwitch = _chunkIXI4GAKBjs.ModeToggleSwitch; exports.MultiSelect = _chunkIXI4GAKBjs.MultiSelect; exports.NavigationMenu = _chunkIXI4GAKBjs.NavigationMenu; exports.NavigationMenuContent = _chunkIXI4GAKBjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkIXI4GAKBjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkIXI4GAKBjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkIXI4GAKBjs.NavigationMenuLink; exports.NavigationMenuList = _chunkIXI4GAKBjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkIXI4GAKBjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkIXI4GAKBjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkIXI4GAKBjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkIXI4GAKBjs.NotificationMenuItem; exports.NotificationModal = _chunkIXI4GAKBjs.NotificationModal; exports.NotificationToast = _chunkIXI4GAKBjs.NotificationToast; exports.NotificationsList = _chunkIXI4GAKBjs.NotificationsList; exports.NotificationsListContainer = _chunkIXI4GAKBjs.NotificationsListContainer; exports.OAuthClientCard = _chunkIXI4GAKBjs.OAuthClientCard; exports.OAuthClientDetail = _chunkIXI4GAKBjs.OAuthClientDetail; exports.OAuthClientForm = _chunkIXI4GAKBjs.OAuthClientForm; exports.OAuthClientList = _chunkIXI4GAKBjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkIXI4GAKBjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkIXI4GAKBjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkIXI4GAKBjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkIXI4GAKBjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkIXI4GAKBjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkIXI4GAKBjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkIXI4GAKBjs.OAuthScopeSelector; exports.Overlay = _chunkIXI4GAKBjs.KanbanOverlay; exports.PageContainer = _chunkIXI4GAKBjs.PageContainer; exports.PageContainerContentDetails = _chunkIXI4GAKBjs.PageContainerContentDetails; exports.PageContentContainer = _chunkIXI4GAKBjs.PageContentContainer; exports.PageSection = _chunkIXI4GAKBjs.PageSection; exports.PasswordInput = _chunkIXI4GAKBjs.PasswordInput; exports.Popover = _chunkIXI4GAKBjs.Popover; exports.PopoverContent = _chunkIXI4GAKBjs.PopoverContent; exports.PopoverDescription = _chunkIXI4GAKBjs.PopoverDescription; exports.PopoverHeader = _chunkIXI4GAKBjs.PopoverHeader; exports.PopoverTitle = _chunkIXI4GAKBjs.PopoverTitle; exports.PopoverTrigger = _chunkIXI4GAKBjs.PopoverTrigger; exports.Progress = _chunkIXI4GAKBjs.Progress; exports.ProgressIndicator = _chunkIXI4GAKBjs.ProgressIndicator; exports.ProgressLabel = _chunkIXI4GAKBjs.ProgressLabel; exports.ProgressTrack = _chunkIXI4GAKBjs.ProgressTrack; exports.ProgressValue = _chunkIXI4GAKBjs.ProgressValue; exports.PushNotificationProvider = _chunkIXI4GAKBjs.PushNotificationProvider; exports.RadioGroup = _chunkIXI4GAKBjs.RadioGroup; exports.RadioGroupItem = _chunkIXI4GAKBjs.RadioGroupItem; exports.ReactMarkdownContainer = _chunkIXI4GAKBjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkIXI4GAKBjs.RecentPagesNavigator; exports.RefreshUser = _chunkIXI4GAKBjs.RefreshUser; exports.RelevantContentsList = _chunkIXI4GAKBjs.RelevantContentsList; exports.RelevantUsersList = _chunkIXI4GAKBjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkIXI4GAKBjs.RemoveUserFromRole; exports.ResetPassword = _chunkIXI4GAKBjs.ResetPassword; exports.ResizableHandle = _chunkIXI4GAKBjs.ResizableHandle; exports.ResizablePanel = _chunkIXI4GAKBjs.ResizablePanel; exports.ResizablePanelGroup = _chunkIXI4GAKBjs.ResizablePanelGroup; exports.RoleContainer = _chunkIXI4GAKBjs.RoleContainer; exports.RoleDetails = _chunkIXI4GAKBjs.RoleDetails; exports.RoleUsersList = _chunkIXI4GAKBjs.RoleUsersList; exports.RolesList = _chunkIXI4GAKBjs.RolesList; exports.Root = _chunkIXI4GAKBjs.KanbanRoot; exports.ScrollArea = _chunkIXI4GAKBjs.ScrollArea; exports.ScrollBar = _chunkIXI4GAKBjs.ScrollBar; exports.Select = _chunkIXI4GAKBjs.Select; exports.SelectContent = _chunkIXI4GAKBjs.SelectContent; exports.SelectGroup = _chunkIXI4GAKBjs.SelectGroup; exports.SelectItem = _chunkIXI4GAKBjs.SelectItem; exports.SelectLabel = _chunkIXI4GAKBjs.SelectLabel; exports.SelectScrollDownButton = _chunkIXI4GAKBjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkIXI4GAKBjs.SelectScrollUpButton; exports.SelectSeparator = _chunkIXI4GAKBjs.SelectSeparator; exports.SelectTrigger = _chunkIXI4GAKBjs.SelectTrigger; exports.SelectValue = _chunkIXI4GAKBjs.SelectValue; exports.Separator = _chunkIXI4GAKBjs.Separator; exports.Sheet = _chunkIXI4GAKBjs.Sheet; exports.SheetClose = _chunkIXI4GAKBjs.SheetClose; exports.SheetContent = _chunkIXI4GAKBjs.SheetContent; exports.SheetDescription = _chunkIXI4GAKBjs.SheetDescription; exports.SheetFooter = _chunkIXI4GAKBjs.SheetFooter; exports.SheetHeader = _chunkIXI4GAKBjs.SheetHeader; exports.SheetTitle = _chunkIXI4GAKBjs.SheetTitle; exports.SheetTrigger = _chunkIXI4GAKBjs.SheetTrigger; exports.Sidebar = _chunkIXI4GAKBjs.Sidebar; exports.SidebarContent = _chunkIXI4GAKBjs.SidebarContent; exports.SidebarFooter = _chunkIXI4GAKBjs.SidebarFooter; exports.SidebarGroup = _chunkIXI4GAKBjs.SidebarGroup; exports.SidebarGroupAction = _chunkIXI4GAKBjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkIXI4GAKBjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkIXI4GAKBjs.SidebarGroupLabel; exports.SidebarHeader = _chunkIXI4GAKBjs.SidebarHeader; exports.SidebarInput = _chunkIXI4GAKBjs.SidebarInput; exports.SidebarInset = _chunkIXI4GAKBjs.SidebarInset; exports.SidebarMenu = _chunkIXI4GAKBjs.SidebarMenu; exports.SidebarMenuAction = _chunkIXI4GAKBjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkIXI4GAKBjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkIXI4GAKBjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkIXI4GAKBjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkIXI4GAKBjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkIXI4GAKBjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkIXI4GAKBjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkIXI4GAKBjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkIXI4GAKBjs.SidebarProvider; exports.SidebarRail = _chunkIXI4GAKBjs.SidebarRail; exports.SidebarSeparator = _chunkIXI4GAKBjs.SidebarSeparator; exports.SidebarTrigger = _chunkIXI4GAKBjs.SidebarTrigger; exports.Skeleton = _chunkIXI4GAKBjs.Skeleton; exports.Slider = _chunkIXI4GAKBjs.Slider; exports.Switch = _chunkIXI4GAKBjs.Switch; exports.Table = _chunkIXI4GAKBjs.Table; exports.TableBody = _chunkIXI4GAKBjs.TableBody; exports.TableCaption = _chunkIXI4GAKBjs.TableCaption; exports.TableCell = _chunkIXI4GAKBjs.TableCell; exports.TableFooter = _chunkIXI4GAKBjs.TableFooter; exports.TableHead = _chunkIXI4GAKBjs.TableHead; exports.TableHeader = _chunkIXI4GAKBjs.TableHeader; exports.TableRow = _chunkIXI4GAKBjs.TableRow; exports.Tabs = _chunkIXI4GAKBjs.Tabs; exports.TabsContainer = _chunkIXI4GAKBjs.TabsContainer; exports.TabsContent = _chunkIXI4GAKBjs.TabsContent; exports.TabsList = _chunkIXI4GAKBjs.TabsList; exports.TabsTrigger = _chunkIXI4GAKBjs.TabsTrigger; exports.Textarea = _chunkIXI4GAKBjs.Textarea; exports.Toaster = _chunkIXI4GAKBjs.Toaster; exports.Toggle = _chunkIXI4GAKBjs.Toggle; exports.TokenStatusIndicator = _chunkIXI4GAKBjs.TokenStatusIndicator; exports.Tooltip = _chunkIXI4GAKBjs.Tooltip; exports.TooltipContent = _chunkIXI4GAKBjs.TooltipContent; exports.TooltipProvider = _chunkIXI4GAKBjs.TooltipProvider; exports.TooltipTrigger = _chunkIXI4GAKBjs.TooltipTrigger; exports.UserAvatar = _chunkIXI4GAKBjs.UserAvatar; exports.UserAvatarEditor = _chunkIXI4GAKBjs.UserAvatarEditor; exports.UserContainer = _chunkIXI4GAKBjs.UserContainer; exports.UserDeleter = _chunkIXI4GAKBjs.UserDeleter; exports.UserDetails = _chunkIXI4GAKBjs.UserDetails; exports.UserEditor = _chunkIXI4GAKBjs.UserEditor; exports.UserIndexContainer = _chunkIXI4GAKBjs.UserIndexContainer; exports.UserIndexDetails = _chunkIXI4GAKBjs.UserIndexDetails; exports.UserListInAdd = _chunkIXI4GAKBjs.UserListInAdd; exports.UserMultiSelect = _chunkIXI4GAKBjs.UserMultiSelect; exports.UserReactivator = _chunkIXI4GAKBjs.UserReactivator; exports.UserResentInvitationEmail = _chunkIXI4GAKBjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkIXI4GAKBjs.UserRoleAdd; exports.UserRolesList = _chunkIXI4GAKBjs.UserRolesList; exports.UserSelector = _chunkIXI4GAKBjs.UserSelector; exports.UsersList = _chunkIXI4GAKBjs.UsersList; exports.UsersListByContentIds = _chunkIXI4GAKBjs.UsersListByContentIds; exports.UsersListContainer = _chunkIXI4GAKBjs.UsersListContainer; exports.badgeVariants = _chunkIXI4GAKBjs.badgeVariants; exports.buttonVariants = _chunkIXI4GAKBjs.buttonVariants; exports.cellComponent = _chunkIXI4GAKBjs.cellComponent; exports.cellDate = _chunkIXI4GAKBjs.cellDate; exports.cellId = _chunkIXI4GAKBjs.cellId; exports.cellLink = _chunkIXI4GAKBjs.cellLink; exports.cellUrl = _chunkIXI4GAKBjs.cellUrl; exports.errorToast = _chunkIXI4GAKBjs.errorToast; exports.generateNotificationData = _chunkIXI4GAKBjs.generateNotificationData; exports.navigationMenuTriggerStyle = _chunkIXI4GAKBjs.navigationMenuTriggerStyle; exports.tabsListVariants = _chunkIXI4GAKBjs.tabsListVariants; exports.toggleVariants = _chunkIXI4GAKBjs.toggleVariants; exports.triggerAssociationToast = _chunkIXI4GAKBjs.triggerAssociationToast; exports.useCarousel = _chunkIXI4GAKBjs.useCarousel; exports.useFileUpload = _chunkIXI4GAKBjs.useFileUpload; exports.useSidebar = _chunkIXI4GAKBjs.useSidebar;
|
|
759
|
+
exports.AcceptInvitation = _chunk7M7NPKOFjs.AcceptInvitation; exports.Accordion = _chunk7M7NPKOFjs.Accordion; exports.AccordionContent = _chunk7M7NPKOFjs.AccordionContent; exports.AccordionItem = _chunk7M7NPKOFjs.AccordionItem; exports.AccordionTrigger = _chunk7M7NPKOFjs.AccordionTrigger; exports.ActivateAccount = _chunk7M7NPKOFjs.ActivateAccount; exports.AddUserToRole = _chunk7M7NPKOFjs.AddUserToRole; exports.AdminCompanyContainer = _chunk7M7NPKOFjs.AdminCompanyContainer; exports.AdminUsersList = _chunk7M7NPKOFjs.AdminUsersList; exports.Alert = _chunk7M7NPKOFjs.Alert; exports.AlertAction = _chunk7M7NPKOFjs.AlertAction; exports.AlertDescription = _chunk7M7NPKOFjs.AlertDescription; exports.AlertDialog = _chunk7M7NPKOFjs.AlertDialog; exports.AlertDialogAction = _chunk7M7NPKOFjs.AlertDialogAction; exports.AlertDialogCancel = _chunk7M7NPKOFjs.AlertDialogCancel; exports.AlertDialogContent = _chunk7M7NPKOFjs.AlertDialogContent; exports.AlertDialogDescription = _chunk7M7NPKOFjs.AlertDialogDescription; exports.AlertDialogFooter = _chunk7M7NPKOFjs.AlertDialogFooter; exports.AlertDialogHeader = _chunk7M7NPKOFjs.AlertDialogHeader; exports.AlertDialogMedia = _chunk7M7NPKOFjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunk7M7NPKOFjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunk7M7NPKOFjs.AlertDialogPortal; exports.AlertDialogTitle = _chunk7M7NPKOFjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunk7M7NPKOFjs.AlertDialogTrigger; exports.AlertTitle = _chunk7M7NPKOFjs.AlertTitle; exports.AllowedUsersDetails = _chunk7M7NPKOFjs.AllowedUsersDetails; exports.AttributeElement = _chunk7M7NPKOFjs.AttributeElement; exports.AuthContainer = _chunk7M7NPKOFjs.AuthContainer; exports.Avatar = _chunk7M7NPKOFjs.Avatar; exports.AvatarBadge = _chunk7M7NPKOFjs.AvatarBadge; exports.AvatarFallback = _chunk7M7NPKOFjs.AvatarFallback; exports.AvatarGroup = _chunk7M7NPKOFjs.AvatarGroup; exports.AvatarGroupCount = _chunk7M7NPKOFjs.AvatarGroupCount; exports.AvatarImage = _chunk7M7NPKOFjs.AvatarImage; exports.Badge = _chunk7M7NPKOFjs.Badge; exports.BlockNoteEditorContainer = _chunk7M7NPKOFjs.BlockNoteEditorContainer; exports.Board = _chunk7M7NPKOFjs.KanbanBoard; exports.Breadcrumb = _chunk7M7NPKOFjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunk7M7NPKOFjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunk7M7NPKOFjs.BreadcrumbItem; exports.BreadcrumbLink = _chunk7M7NPKOFjs.BreadcrumbLink; exports.BreadcrumbList = _chunk7M7NPKOFjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunk7M7NPKOFjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunk7M7NPKOFjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunk7M7NPKOFjs.BreadcrumbSeparator; exports.Button = _chunk7M7NPKOFjs.Button; exports.Calendar = _chunk7M7NPKOFjs.Calendar; exports.CalendarDayButton = _chunk7M7NPKOFjs.CalendarDayButton; exports.Card = _chunk7M7NPKOFjs.Card; exports.CardAction = _chunk7M7NPKOFjs.CardAction; exports.CardContent = _chunk7M7NPKOFjs.CardContent; exports.CardDescription = _chunk7M7NPKOFjs.CardDescription; exports.CardFooter = _chunk7M7NPKOFjs.CardFooter; exports.CardHeader = _chunk7M7NPKOFjs.CardHeader; exports.CardTitle = _chunk7M7NPKOFjs.CardTitle; exports.Carousel = _chunk7M7NPKOFjs.Carousel; exports.CarouselContent = _chunk7M7NPKOFjs.CarouselContent; exports.CarouselItem = _chunk7M7NPKOFjs.CarouselItem; exports.CarouselNext = _chunk7M7NPKOFjs.CarouselNext; exports.CarouselPrevious = _chunk7M7NPKOFjs.CarouselPrevious; exports.ChartContainer = _chunk7M7NPKOFjs.ChartContainer; exports.ChartLegend = _chunk7M7NPKOFjs.ChartLegend; exports.ChartLegendContent = _chunk7M7NPKOFjs.ChartLegendContent; exports.ChartStyle = _chunk7M7NPKOFjs.ChartStyle; exports.ChartTooltip = _chunk7M7NPKOFjs.ChartTooltip; exports.ChartTooltipContent = _chunk7M7NPKOFjs.ChartTooltipContent; exports.Checkbox = _chunk7M7NPKOFjs.Checkbox; exports.Collapsible = _chunk7M7NPKOFjs.Collapsible; exports.CollapsibleContent = _chunk7M7NPKOFjs.CollapsibleContent; exports.CollapsibleTrigger = _chunk7M7NPKOFjs.CollapsibleTrigger; exports.Column = _chunk7M7NPKOFjs.KanbanColumn; exports.ColumnHandle = _chunk7M7NPKOFjs.KanbanColumnHandle; exports.Command = _chunk7M7NPKOFjs.Command; exports.CommandDialog = _chunk7M7NPKOFjs.CommandDialog; exports.CommandEmpty = _chunk7M7NPKOFjs.CommandEmpty; exports.CommandGroup = _chunk7M7NPKOFjs.CommandGroup; exports.CommandInput = _chunk7M7NPKOFjs.CommandInput; exports.CommandItem = _chunk7M7NPKOFjs.CommandItem; exports.CommandList = _chunk7M7NPKOFjs.CommandList; exports.CommandSeparator = _chunk7M7NPKOFjs.CommandSeparator; exports.CommandShortcut = _chunk7M7NPKOFjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunk7M7NPKOFjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunk7M7NPKOFjs.CommonAssociationTrigger; exports.CommonDeleter = _chunk7M7NPKOFjs.CommonDeleter; exports.CommonEditorButtons = _chunk7M7NPKOFjs.CommonEditorButtons; exports.CommonEditorHeader = _chunk7M7NPKOFjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunk7M7NPKOFjs.CommonEditorTrigger; exports.CompaniesList = _chunk7M7NPKOFjs.CompaniesList; exports.CompanyConfigurationEditor = _chunk7M7NPKOFjs.CompanyConfigurationEditor; exports.CompanyConfigurationSecurityForm = _chunk7M7NPKOFjs.CompanyConfigurationSecurityForm; exports.CompanyContainer = _chunk7M7NPKOFjs.CompanyContainer; exports.CompanyDeleter = _chunk7M7NPKOFjs.CompanyDeleter; exports.CompanyDetails = _chunk7M7NPKOFjs.CompanyDetails; exports.CompanyEditor = _chunk7M7NPKOFjs.CompanyEditor; exports.CompanyUsersList = _chunk7M7NPKOFjs.CompanyUsersList; exports.ContentListTable = _chunk7M7NPKOFjs.ContentListTable; exports.ContentTableSearch = _chunk7M7NPKOFjs.ContentTableSearch; exports.ContentTitle = _chunk7M7NPKOFjs.ContentTitle; exports.ContentsList = _chunk7M7NPKOFjs.ContentsList; exports.ContentsListById = _chunk7M7NPKOFjs.ContentsListById; exports.ContextMenu = _chunk7M7NPKOFjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunk7M7NPKOFjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunk7M7NPKOFjs.ContextMenuContent; exports.ContextMenuGroup = _chunk7M7NPKOFjs.ContextMenuGroup; exports.ContextMenuItem = _chunk7M7NPKOFjs.ContextMenuItem; exports.ContextMenuLabel = _chunk7M7NPKOFjs.ContextMenuLabel; exports.ContextMenuPortal = _chunk7M7NPKOFjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunk7M7NPKOFjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunk7M7NPKOFjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunk7M7NPKOFjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunk7M7NPKOFjs.ContextMenuShortcut; exports.ContextMenuSub = _chunk7M7NPKOFjs.ContextMenuSub; exports.ContextMenuSubContent = _chunk7M7NPKOFjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunk7M7NPKOFjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunk7M7NPKOFjs.ContextMenuTrigger; exports.ContributorsList = _chunk7M7NPKOFjs.ContributorsList; exports.Cookies = _chunk7M7NPKOFjs.Cookies; exports.DatePickerPopover = _chunk7M7NPKOFjs.DatePickerPopover; exports.DateRangeSelector = _chunk7M7NPKOFjs.DateRangeSelector; exports.Dialog = _chunk7M7NPKOFjs.Dialog; exports.DialogClose = _chunk7M7NPKOFjs.DialogClose; exports.DialogContent = _chunk7M7NPKOFjs.DialogContent; exports.DialogDescription = _chunk7M7NPKOFjs.DialogDescription; exports.DialogFooter = _chunk7M7NPKOFjs.DialogFooter; exports.DialogHeader = _chunk7M7NPKOFjs.DialogHeader; exports.DialogOverlay = _chunk7M7NPKOFjs.DialogOverlay; exports.DialogPortal = _chunk7M7NPKOFjs.DialogPortal; exports.DialogTitle = _chunk7M7NPKOFjs.DialogTitle; exports.DialogTrigger = _chunk7M7NPKOFjs.DialogTrigger; exports.Drawer = _chunk7M7NPKOFjs.Drawer; exports.DrawerClose = _chunk7M7NPKOFjs.DrawerClose; exports.DrawerContent = _chunk7M7NPKOFjs.DrawerContent; exports.DrawerDescription = _chunk7M7NPKOFjs.DrawerDescription; exports.DrawerFooter = _chunk7M7NPKOFjs.DrawerFooter; exports.DrawerHeader = _chunk7M7NPKOFjs.DrawerHeader; exports.DrawerOverlay = _chunk7M7NPKOFjs.DrawerOverlay; exports.DrawerPortal = _chunk7M7NPKOFjs.DrawerPortal; exports.DrawerTitle = _chunk7M7NPKOFjs.DrawerTitle; exports.DrawerTrigger = _chunk7M7NPKOFjs.DrawerTrigger; exports.DropdownMenu = _chunk7M7NPKOFjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunk7M7NPKOFjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunk7M7NPKOFjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunk7M7NPKOFjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunk7M7NPKOFjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunk7M7NPKOFjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunk7M7NPKOFjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunk7M7NPKOFjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunk7M7NPKOFjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunk7M7NPKOFjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunk7M7NPKOFjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunk7M7NPKOFjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunk7M7NPKOFjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunk7M7NPKOFjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunk7M7NPKOFjs.DropdownMenuTrigger; exports.ErrorDetails = _chunk7M7NPKOFjs.ErrorDetails; exports.Field = _chunk7M7NPKOFjs.Field; exports.FieldContent = _chunk7M7NPKOFjs.FieldContent; exports.FieldDescription = _chunk7M7NPKOFjs.FieldDescription; exports.FieldError = _chunk7M7NPKOFjs.FieldError; exports.FieldGroup = _chunk7M7NPKOFjs.FieldGroup; exports.FieldLabel = _chunk7M7NPKOFjs.FieldLabel; exports.FieldLegend = _chunk7M7NPKOFjs.FieldLegend; exports.FieldSeparator = _chunk7M7NPKOFjs.FieldSeparator; exports.FieldSet = _chunk7M7NPKOFjs.FieldSet; exports.FieldTitle = _chunk7M7NPKOFjs.FieldTitle; exports.FileInput = _chunk7M7NPKOFjs.FileInput; exports.FileUploader = _chunk7M7NPKOFjs.FileUploader; exports.FileUploaderContent = _chunk7M7NPKOFjs.FileUploaderContent; exports.FileUploaderItem = _chunk7M7NPKOFjs.FileUploaderItem; exports.ForgotPassword = _chunk7M7NPKOFjs.ForgotPassword; exports.Form = _chunk7M7NPKOFjs.Form; exports.FormCheckbox = _chunk7M7NPKOFjs.FormCheckbox; exports.FormDate = _chunk7M7NPKOFjs.FormDate; exports.FormDateTime = _chunk7M7NPKOFjs.FormDateTime; exports.FormFeatures = _chunk7M7NPKOFjs.FormFeatures; exports.FormFieldWrapper = _chunk7M7NPKOFjs.FormFieldWrapper; exports.FormInput = _chunk7M7NPKOFjs.FormInput; exports.FormPassword = _chunk7M7NPKOFjs.FormPassword; exports.FormPlaceAutocomplete = _chunk7M7NPKOFjs.FormPlaceAutocomplete; exports.FormRoles = _chunk7M7NPKOFjs.FormRoles; exports.FormSelect = _chunk7M7NPKOFjs.FormSelect; exports.FormSlider = _chunk7M7NPKOFjs.FormSlider; exports.FormSwitch = _chunk7M7NPKOFjs.FormSwitch; exports.FormTextarea = _chunk7M7NPKOFjs.FormTextarea; exports.Header = _chunk7M7NPKOFjs.Header; exports.HoverCard = _chunk7M7NPKOFjs.HoverCard; exports.HoverCardContent = _chunk7M7NPKOFjs.HoverCardContent; exports.HoverCardTrigger = _chunk7M7NPKOFjs.HoverCardTrigger; exports.Input = _chunk7M7NPKOFjs.Input; exports.InputGroup = _chunk7M7NPKOFjs.InputGroup; exports.InputGroupAddon = _chunk7M7NPKOFjs.InputGroupAddon; exports.InputGroupButton = _chunk7M7NPKOFjs.InputGroupButton; exports.InputGroupInput = _chunk7M7NPKOFjs.InputGroupInput; exports.InputGroupText = _chunk7M7NPKOFjs.InputGroupText; exports.InputGroupTextarea = _chunk7M7NPKOFjs.InputGroupTextarea; exports.InputOTP = _chunk7M7NPKOFjs.InputOTP; exports.InputOTPGroup = _chunk7M7NPKOFjs.InputOTPGroup; exports.InputOTPSeparator = _chunk7M7NPKOFjs.InputOTPSeparator; exports.InputOTPSlot = _chunk7M7NPKOFjs.InputOTPSlot; exports.Item = _chunk7M7NPKOFjs.KanbanItem; exports.ItemHandle = _chunk7M7NPKOFjs.KanbanItemHandle; exports.Kanban = _chunk7M7NPKOFjs.KanbanRoot; exports.KanbanBoard = _chunk7M7NPKOFjs.KanbanBoard; exports.KanbanColumn = _chunk7M7NPKOFjs.KanbanColumn; exports.KanbanColumnHandle = _chunk7M7NPKOFjs.KanbanColumnHandle; exports.KanbanItem = _chunk7M7NPKOFjs.KanbanItem; exports.KanbanItemHandle = _chunk7M7NPKOFjs.KanbanItemHandle; exports.KanbanOverlay = _chunk7M7NPKOFjs.KanbanOverlay; exports.Label = _chunk7M7NPKOFjs.Label; exports.LandingComponent = _chunk7M7NPKOFjs.LandingComponent; exports.Link = _chunk7M7NPKOFjs.Link; exports.Login = _chunk7M7NPKOFjs.Login; exports.Logout = _chunk7M7NPKOFjs.Logout; exports.ModeToggleSwitch = _chunk7M7NPKOFjs.ModeToggleSwitch; exports.MultiSelect = _chunk7M7NPKOFjs.MultiSelect; exports.NavigationMenu = _chunk7M7NPKOFjs.NavigationMenu; exports.NavigationMenuContent = _chunk7M7NPKOFjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunk7M7NPKOFjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunk7M7NPKOFjs.NavigationMenuItem; exports.NavigationMenuLink = _chunk7M7NPKOFjs.NavigationMenuLink; exports.NavigationMenuList = _chunk7M7NPKOFjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunk7M7NPKOFjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunk7M7NPKOFjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunk7M7NPKOFjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunk7M7NPKOFjs.NotificationMenuItem; exports.NotificationModal = _chunk7M7NPKOFjs.NotificationModal; exports.NotificationToast = _chunk7M7NPKOFjs.NotificationToast; exports.NotificationsList = _chunk7M7NPKOFjs.NotificationsList; exports.NotificationsListContainer = _chunk7M7NPKOFjs.NotificationsListContainer; exports.OAuthClientCard = _chunk7M7NPKOFjs.OAuthClientCard; exports.OAuthClientDetail = _chunk7M7NPKOFjs.OAuthClientDetail; exports.OAuthClientForm = _chunk7M7NPKOFjs.OAuthClientForm; exports.OAuthClientList = _chunk7M7NPKOFjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunk7M7NPKOFjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunk7M7NPKOFjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunk7M7NPKOFjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunk7M7NPKOFjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunk7M7NPKOFjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunk7M7NPKOFjs.OAuthScopeList; exports.OAuthScopeSelector = _chunk7M7NPKOFjs.OAuthScopeSelector; exports.Overlay = _chunk7M7NPKOFjs.KanbanOverlay; exports.PageContainer = _chunk7M7NPKOFjs.PageContainer; exports.PageContainerContentDetails = _chunk7M7NPKOFjs.PageContainerContentDetails; exports.PageContentContainer = _chunk7M7NPKOFjs.PageContentContainer; exports.PageSection = _chunk7M7NPKOFjs.PageSection; exports.PasswordInput = _chunk7M7NPKOFjs.PasswordInput; exports.Popover = _chunk7M7NPKOFjs.Popover; exports.PopoverContent = _chunk7M7NPKOFjs.PopoverContent; exports.PopoverDescription = _chunk7M7NPKOFjs.PopoverDescription; exports.PopoverHeader = _chunk7M7NPKOFjs.PopoverHeader; exports.PopoverTitle = _chunk7M7NPKOFjs.PopoverTitle; exports.PopoverTrigger = _chunk7M7NPKOFjs.PopoverTrigger; exports.Progress = _chunk7M7NPKOFjs.Progress; exports.ProgressIndicator = _chunk7M7NPKOFjs.ProgressIndicator; exports.ProgressLabel = _chunk7M7NPKOFjs.ProgressLabel; exports.ProgressTrack = _chunk7M7NPKOFjs.ProgressTrack; exports.ProgressValue = _chunk7M7NPKOFjs.ProgressValue; exports.PushNotificationProvider = _chunk7M7NPKOFjs.PushNotificationProvider; exports.RadioGroup = _chunk7M7NPKOFjs.RadioGroup; exports.RadioGroupItem = _chunk7M7NPKOFjs.RadioGroupItem; exports.ReactMarkdownContainer = _chunk7M7NPKOFjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunk7M7NPKOFjs.RecentPagesNavigator; exports.RefreshUser = _chunk7M7NPKOFjs.RefreshUser; exports.RelevantContentsList = _chunk7M7NPKOFjs.RelevantContentsList; exports.RelevantUsersList = _chunk7M7NPKOFjs.RelevantUsersList; exports.RemoveUserFromRole = _chunk7M7NPKOFjs.RemoveUserFromRole; exports.ResetPassword = _chunk7M7NPKOFjs.ResetPassword; exports.ResizableHandle = _chunk7M7NPKOFjs.ResizableHandle; exports.ResizablePanel = _chunk7M7NPKOFjs.ResizablePanel; exports.ResizablePanelGroup = _chunk7M7NPKOFjs.ResizablePanelGroup; exports.RoleContainer = _chunk7M7NPKOFjs.RoleContainer; exports.RoleDetails = _chunk7M7NPKOFjs.RoleDetails; exports.RoleUsersList = _chunk7M7NPKOFjs.RoleUsersList; exports.RolesList = _chunk7M7NPKOFjs.RolesList; exports.Root = _chunk7M7NPKOFjs.KanbanRoot; exports.ScrollArea = _chunk7M7NPKOFjs.ScrollArea; exports.ScrollBar = _chunk7M7NPKOFjs.ScrollBar; exports.Select = _chunk7M7NPKOFjs.Select; exports.SelectContent = _chunk7M7NPKOFjs.SelectContent; exports.SelectGroup = _chunk7M7NPKOFjs.SelectGroup; exports.SelectItem = _chunk7M7NPKOFjs.SelectItem; exports.SelectLabel = _chunk7M7NPKOFjs.SelectLabel; exports.SelectScrollDownButton = _chunk7M7NPKOFjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunk7M7NPKOFjs.SelectScrollUpButton; exports.SelectSeparator = _chunk7M7NPKOFjs.SelectSeparator; exports.SelectTrigger = _chunk7M7NPKOFjs.SelectTrigger; exports.SelectValue = _chunk7M7NPKOFjs.SelectValue; exports.Separator = _chunk7M7NPKOFjs.Separator; exports.Sheet = _chunk7M7NPKOFjs.Sheet; exports.SheetClose = _chunk7M7NPKOFjs.SheetClose; exports.SheetContent = _chunk7M7NPKOFjs.SheetContent; exports.SheetDescription = _chunk7M7NPKOFjs.SheetDescription; exports.SheetFooter = _chunk7M7NPKOFjs.SheetFooter; exports.SheetHeader = _chunk7M7NPKOFjs.SheetHeader; exports.SheetTitle = _chunk7M7NPKOFjs.SheetTitle; exports.SheetTrigger = _chunk7M7NPKOFjs.SheetTrigger; exports.Sidebar = _chunk7M7NPKOFjs.Sidebar; exports.SidebarContent = _chunk7M7NPKOFjs.SidebarContent; exports.SidebarFooter = _chunk7M7NPKOFjs.SidebarFooter; exports.SidebarGroup = _chunk7M7NPKOFjs.SidebarGroup; exports.SidebarGroupAction = _chunk7M7NPKOFjs.SidebarGroupAction; exports.SidebarGroupContent = _chunk7M7NPKOFjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunk7M7NPKOFjs.SidebarGroupLabel; exports.SidebarHeader = _chunk7M7NPKOFjs.SidebarHeader; exports.SidebarInput = _chunk7M7NPKOFjs.SidebarInput; exports.SidebarInset = _chunk7M7NPKOFjs.SidebarInset; exports.SidebarMenu = _chunk7M7NPKOFjs.SidebarMenu; exports.SidebarMenuAction = _chunk7M7NPKOFjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunk7M7NPKOFjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunk7M7NPKOFjs.SidebarMenuButton; exports.SidebarMenuItem = _chunk7M7NPKOFjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunk7M7NPKOFjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunk7M7NPKOFjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunk7M7NPKOFjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunk7M7NPKOFjs.SidebarMenuSubItem; exports.SidebarProvider = _chunk7M7NPKOFjs.SidebarProvider; exports.SidebarRail = _chunk7M7NPKOFjs.SidebarRail; exports.SidebarSeparator = _chunk7M7NPKOFjs.SidebarSeparator; exports.SidebarTrigger = _chunk7M7NPKOFjs.SidebarTrigger; exports.Skeleton = _chunk7M7NPKOFjs.Skeleton; exports.Slider = _chunk7M7NPKOFjs.Slider; exports.Switch = _chunk7M7NPKOFjs.Switch; exports.Table = _chunk7M7NPKOFjs.Table; exports.TableBody = _chunk7M7NPKOFjs.TableBody; exports.TableCaption = _chunk7M7NPKOFjs.TableCaption; exports.TableCell = _chunk7M7NPKOFjs.TableCell; exports.TableFooter = _chunk7M7NPKOFjs.TableFooter; exports.TableHead = _chunk7M7NPKOFjs.TableHead; exports.TableHeader = _chunk7M7NPKOFjs.TableHeader; exports.TableRow = _chunk7M7NPKOFjs.TableRow; exports.Tabs = _chunk7M7NPKOFjs.Tabs; exports.TabsContainer = _chunk7M7NPKOFjs.TabsContainer; exports.TabsContent = _chunk7M7NPKOFjs.TabsContent; exports.TabsList = _chunk7M7NPKOFjs.TabsList; exports.TabsTrigger = _chunk7M7NPKOFjs.TabsTrigger; exports.Textarea = _chunk7M7NPKOFjs.Textarea; exports.Toaster = _chunk7M7NPKOFjs.Toaster; exports.Toggle = _chunk7M7NPKOFjs.Toggle; exports.TokenStatusIndicator = _chunk7M7NPKOFjs.TokenStatusIndicator; exports.Tooltip = _chunk7M7NPKOFjs.Tooltip; exports.TooltipContent = _chunk7M7NPKOFjs.TooltipContent; exports.TooltipProvider = _chunk7M7NPKOFjs.TooltipProvider; exports.TooltipTrigger = _chunk7M7NPKOFjs.TooltipTrigger; exports.UserAvatar = _chunk7M7NPKOFjs.UserAvatar; exports.UserAvatarEditor = _chunk7M7NPKOFjs.UserAvatarEditor; exports.UserContainer = _chunk7M7NPKOFjs.UserContainer; exports.UserDeleter = _chunk7M7NPKOFjs.UserDeleter; exports.UserDetails = _chunk7M7NPKOFjs.UserDetails; exports.UserEditor = _chunk7M7NPKOFjs.UserEditor; exports.UserIndexContainer = _chunk7M7NPKOFjs.UserIndexContainer; exports.UserIndexDetails = _chunk7M7NPKOFjs.UserIndexDetails; exports.UserListInAdd = _chunk7M7NPKOFjs.UserListInAdd; exports.UserMultiSelect = _chunk7M7NPKOFjs.UserMultiSelect; exports.UserReactivator = _chunk7M7NPKOFjs.UserReactivator; exports.UserResentInvitationEmail = _chunk7M7NPKOFjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunk7M7NPKOFjs.UserRoleAdd; exports.UserRolesList = _chunk7M7NPKOFjs.UserRolesList; exports.UserSelector = _chunk7M7NPKOFjs.UserSelector; exports.UsersList = _chunk7M7NPKOFjs.UsersList; exports.UsersListByContentIds = _chunk7M7NPKOFjs.UsersListByContentIds; exports.UsersListContainer = _chunk7M7NPKOFjs.UsersListContainer; exports.badgeVariants = _chunk7M7NPKOFjs.badgeVariants; exports.buttonVariants = _chunk7M7NPKOFjs.buttonVariants; exports.cellComponent = _chunk7M7NPKOFjs.cellComponent; exports.cellDate = _chunk7M7NPKOFjs.cellDate; exports.cellId = _chunk7M7NPKOFjs.cellId; exports.cellLink = _chunk7M7NPKOFjs.cellLink; exports.cellUrl = _chunk7M7NPKOFjs.cellUrl; exports.errorToast = _chunk7M7NPKOFjs.errorToast; exports.generateNotificationData = _chunk7M7NPKOFjs.generateNotificationData; exports.navigationMenuTriggerStyle = _chunk7M7NPKOFjs.navigationMenuTriggerStyle; exports.tabsListVariants = _chunk7M7NPKOFjs.tabsListVariants; exports.toggleVariants = _chunk7M7NPKOFjs.toggleVariants; exports.triggerAssociationToast = _chunk7M7NPKOFjs.triggerAssociationToast; exports.useCarousel = _chunk7M7NPKOFjs.useCarousel; exports.useFileUpload = _chunk7M7NPKOFjs.useFileUpload; exports.useSidebar = _chunk7M7NPKOFjs.useSidebar;
|
|
760
760
|
//# sourceMappingURL=index.js.map
|
|
@@ -370,9 +370,9 @@ import {
|
|
|
370
370
|
useCarousel,
|
|
371
371
|
useFileUpload,
|
|
372
372
|
useSidebar
|
|
373
|
-
} from "../chunk-
|
|
373
|
+
} from "../chunk-YLSLXQ3O.mjs";
|
|
374
374
|
import "../chunk-GR4QPP36.mjs";
|
|
375
|
-
import "../chunk-
|
|
375
|
+
import "../chunk-DU64WMZD.mjs";
|
|
376
376
|
import "../chunk-AUXK7QSA.mjs";
|
|
377
377
|
import "../chunk-C7C7VY4F.mjs";
|
|
378
378
|
import "../chunk-U4MTVHOC.mjs";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React__default, { ReactNode, ReactElement } from 'react';
|
|
3
3
|
import { J as JsonApiHydratedDataInterface } from '../ApiDataInterface-DPP8s46n.mjs';
|
|
4
|
-
import { h as CompanyInterface, N as NotificationInterface, k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action } from '../notification.interface-
|
|
4
|
+
import { h as CompanyInterface, N as NotificationInterface, k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action } from '../notification.interface-D5MbtfZK.mjs';
|
|
5
5
|
import { B as BreadcrumbItemData } from '../breadcrumb.item.data.interface-CgB4_1EE.mjs';
|
|
6
|
-
import { u as useSocket } from '../useSocket-
|
|
6
|
+
import { u as useSocket } from '../useSocket-DUqGoPya.mjs';
|
|
7
7
|
import * as jotai from 'jotai';
|
|
8
8
|
import * as jotai_utils from 'jotai/utils';
|
|
9
9
|
import 'lucide-react';
|
package/dist/contexts/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import React__default, { ReactNode, ReactElement } from 'react';
|
|
3
3
|
import { J as JsonApiHydratedDataInterface } from '../ApiDataInterface-DPP8s46n.js';
|
|
4
|
-
import { h as CompanyInterface, N as NotificationInterface, k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action } from '../notification.interface-
|
|
4
|
+
import { h as CompanyInterface, N as NotificationInterface, k as RoleInterface, U as UserInterface, M as ModuleWithPermissions, A as Action } from '../notification.interface-CmKmObIU.js';
|
|
5
5
|
import { B as BreadcrumbItemData } from '../breadcrumb.item.data.interface-CgB4_1EE.js';
|
|
6
|
-
import { u as useSocket } from '../useSocket-
|
|
6
|
+
import { u as useSocket } from '../useSocket-QuHa0ZmO.js';
|
|
7
7
|
import * as jotai from 'jotai';
|
|
8
8
|
import * as jotai_utils from 'jotai/utils';
|
|
9
9
|
import 'lucide-react';
|
package/dist/contexts/index.js
CHANGED
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
var
|
|
23
|
+
var _chunk7M7NPKOFjs = require('../chunk-7M7NPKOF.js');
|
|
24
24
|
require('../chunk-EW6QPMN3.js');
|
|
25
|
-
require('../chunk-
|
|
25
|
+
require('../chunk-J22NEVSK.js');
|
|
26
26
|
require('../chunk-LXKSUWAV.js');
|
|
27
27
|
require('../chunk-IBS6NI7D.js');
|
|
28
28
|
require('../chunk-FM6WRAN5.js');
|
|
@@ -49,5 +49,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
|
|
52
|
-
exports.CommonProvider =
|
|
52
|
+
exports.CommonProvider = _chunk7M7NPKOFjs.CommonProvider; exports.CompanyProvider = _chunk7M7NPKOFjs.CompanyProvider; exports.CurrentUserProvider = _chunk7M7NPKOFjs.CurrentUserProvider; exports.HeaderChildrenProvider = _chunk7M7NPKOFjs.HeaderChildrenProvider; exports.NotificationContextProvider = _chunk7M7NPKOFjs.NotificationContextProvider; exports.RoleProvider = _chunk7M7NPKOFjs.RoleProvider; exports.SharedProvider = _chunk7M7NPKOFjs.SharedProvider; exports.SocketContext = _chunk7M7NPKOFjs.SocketContext; exports.SocketProvider = _chunk7M7NPKOFjs.SocketProvider; exports.UserProvider = _chunk7M7NPKOFjs.UserProvider; exports.recentPagesAtom = _chunk7M7NPKOFjs.recentPagesAtom; exports.useCommonContext = _chunk7M7NPKOFjs.useCommonContext; exports.useCompanyContext = _chunk7M7NPKOFjs.useCompanyContext; exports.useCurrentUserContext = _chunk7M7NPKOFjs.useCurrentUserContext; exports.useHeaderChildren = _chunk7M7NPKOFjs.useHeaderChildren; exports.useNotificationContext = _chunk7M7NPKOFjs.useNotificationContext; exports.useRoleContext = _chunk7M7NPKOFjs.useRoleContext; exports.useSharedContext = _chunk7M7NPKOFjs.useSharedContext; exports.useSocketContext = _chunk7M7NPKOFjs.useSocketContext; exports.useUserContext = _chunk7M7NPKOFjs.useUserContext;
|
|
53
53
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
|
@@ -20,9 +20,9 @@ import {
|
|
|
20
20
|
useSharedContext,
|
|
21
21
|
useSocketContext,
|
|
22
22
|
useUserContext
|
|
23
|
-
} from "../chunk-
|
|
23
|
+
} from "../chunk-YLSLXQ3O.mjs";
|
|
24
24
|
import "../chunk-GR4QPP36.mjs";
|
|
25
|
-
import "../chunk-
|
|
25
|
+
import "../chunk-DU64WMZD.mjs";
|
|
26
26
|
import "../chunk-AUXK7QSA.mjs";
|
|
27
27
|
import "../chunk-C7C7VY4F.mjs";
|
|
28
28
|
import "../chunk-U4MTVHOC.mjs";
|
package/dist/core/index.d.mts
CHANGED
|
@@ -3,10 +3,10 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
3
3
|
import { A as ApiRequestDataTypeInterface, F as FieldSelector } from '../ApiRequestDataTypeInterface-CUKFDBx2.mjs';
|
|
4
4
|
export { G as GetterKeys, c as createJsonApiInclusion } from '../ApiRequestDataTypeInterface-CUKFDBx2.mjs';
|
|
5
5
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-zeewugD7.mjs';
|
|
6
|
-
import { c as AuthInterface, a as AuthInput, A as AbstractService, N as NextRef, P as PreviousRef, j as S3Interface, i as S3Input } from '../s3.service-
|
|
7
|
-
export { b as AuthQuery, d as AuthService, C as CompanyService, e as ContentService, F as FeatureService, H as HttpMethod, f as NotificationService, h as PushService, R as RoleService, k as S3Service, S as SelfRef, U as UserService, g as getGlobalErrorHandler, s as setGlobalErrorHandler } from '../s3.service-
|
|
8
|
-
import { M as ModuleWithPermissions, f as PermissionUser, A as Action, e as PermissionModule, g as ModuleFactory, i as ModuleInterface, F as FeatureInterface, k as RoleInterface, R as RoleInput,
|
|
9
|
-
export { c as ModuleDefinition, b as ModulePermissionDefinition, a as PageUrl, P as PermissionCheck, d as PermissionConfig } from '../notification.interface-
|
|
6
|
+
import { c as AuthInterface, a as AuthInput, A as AbstractService, N as NextRef, P as PreviousRef, j as S3Interface, i as S3Input } from '../s3.service-BMT7W6KS.mjs';
|
|
7
|
+
export { b as AuthQuery, d as AuthService, C as CompanyService, e as ContentService, F as FeatureService, H as HttpMethod, f as NotificationService, h as PushService, R as RoleService, k as S3Service, S as SelfRef, U as UserService, g as getGlobalErrorHandler, s as setGlobalErrorHandler } from '../s3.service-BMT7W6KS.mjs';
|
|
8
|
+
import { M as ModuleWithPermissions, f as PermissionUser, A as Action, e as PermissionModule, g as ModuleFactory, i as ModuleInterface, F as FeatureInterface, k as RoleInterface, R as RoleInput, U as UserInterface, h as CompanyInterface, l as UserInput, C as CompanyInput, N as NotificationInterface, j as NotificationInput } from '../notification.interface-D5MbtfZK.mjs';
|
|
9
|
+
export { c as ModuleDefinition, b as ModulePermissionDefinition, a as PageUrl, P as PermissionCheck, d as PermissionConfig } from '../notification.interface-D5MbtfZK.mjs';
|
|
10
10
|
export { B as BreadcrumbItemData } from '../breadcrumb.item.data.interface-CgB4_1EE.mjs';
|
|
11
11
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.mjs';
|
|
12
12
|
import { ClassValue } from 'clsx';
|
|
@@ -19,7 +19,7 @@ import { LucideIcon } from 'lucide-react';
|
|
|
19
19
|
export { A as AuthComponent } from '../AuthComponent-hxOPs9o8.mjs';
|
|
20
20
|
import { M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, S as StripeCustomerInterface, a as StripeInvoiceInterface, j as StripeSubscriptionInterface, I as InvoiceStatus, g as StripeProductInterface, d as StripePriceInterface, h as StripeProductInput, e as PriceRecurring, f as StripePriceInput, i as SubscriptionStatus, k as StripeSubscriptionInput, m as StripeSubscriptionCreateResponse, b as ProrationPreviewInterface, n as StripeUsageInterface, R as ReportUsageInput, U as UsageSummaryInterface } from '../stripe-subscription.interface-Cm_It1fz.mjs';
|
|
21
21
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-subscription.interface-Cm_It1fz.mjs';
|
|
22
|
-
import { a as ContentInterface, C as ContentInput } from '../content.interface-
|
|
22
|
+
import { a as ContentInterface, C as ContentInput } from '../content.interface-BSpowEiW.mjs';
|
|
23
23
|
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-DsZ5ecSX.mjs';
|
|
24
24
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-DsZ5ecSX.mjs';
|
|
25
25
|
import 'd3';
|
|
@@ -633,38 +633,6 @@ declare class Role extends AbstractApiData implements RoleInterface {
|
|
|
633
633
|
|
|
634
634
|
declare const RoleModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
635
635
|
|
|
636
|
-
declare const CompanyModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
637
|
-
|
|
638
|
-
declare class Company extends AbstractApiData implements CompanyInterface {
|
|
639
|
-
private _name?;
|
|
640
|
-
private _logo?;
|
|
641
|
-
private _logoUrl?;
|
|
642
|
-
private _configurations?;
|
|
643
|
-
private _monthlyTokens;
|
|
644
|
-
private _availableMonthlyTokens;
|
|
645
|
-
private _availableExtraTokens;
|
|
646
|
-
private _features?;
|
|
647
|
-
private _modules?;
|
|
648
|
-
get name(): string;
|
|
649
|
-
get logo(): string | undefined;
|
|
650
|
-
get logoUrl(): string | undefined;
|
|
651
|
-
get monthlyTokens(): number;
|
|
652
|
-
get availableMonthlyTokens(): number;
|
|
653
|
-
get availableExtraTokens(): number;
|
|
654
|
-
get features(): FeatureInterface[];
|
|
655
|
-
get modules(): ModuleInterface[];
|
|
656
|
-
get configurations(): any | undefined;
|
|
657
|
-
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
658
|
-
createJsonApi(data: CompanyInput): any;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
declare enum CompanyFields {
|
|
662
|
-
companyId = "companyId",
|
|
663
|
-
name = "name",
|
|
664
|
-
createdAt = "createdAt",
|
|
665
|
-
updatedAt = "updatedAt"
|
|
666
|
-
}
|
|
667
|
-
|
|
668
636
|
interface SearchResultInterface {
|
|
669
637
|
get searchResult(): string;
|
|
670
638
|
}
|
|
@@ -1216,6 +1184,40 @@ declare class StripeUsageService extends AbstractService {
|
|
|
1216
1184
|
|
|
1217
1185
|
declare const StripeUsageModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1218
1186
|
|
|
1187
|
+
declare const CompanyModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1188
|
+
|
|
1189
|
+
declare class Company extends AbstractApiData implements CompanyInterface {
|
|
1190
|
+
private _name?;
|
|
1191
|
+
private _logo?;
|
|
1192
|
+
private _logoUrl?;
|
|
1193
|
+
private _configurations?;
|
|
1194
|
+
private _isActiveSubscription;
|
|
1195
|
+
private _monthlyTokens;
|
|
1196
|
+
private _availableMonthlyTokens;
|
|
1197
|
+
private _availableExtraTokens;
|
|
1198
|
+
private _features?;
|
|
1199
|
+
private _modules?;
|
|
1200
|
+
get name(): string;
|
|
1201
|
+
get logo(): string | undefined;
|
|
1202
|
+
get logoUrl(): string | undefined;
|
|
1203
|
+
get isActiveSubscription(): boolean;
|
|
1204
|
+
get monthlyTokens(): number;
|
|
1205
|
+
get availableMonthlyTokens(): number;
|
|
1206
|
+
get availableExtraTokens(): number;
|
|
1207
|
+
get features(): FeatureInterface[];
|
|
1208
|
+
get modules(): ModuleInterface[];
|
|
1209
|
+
get configurations(): any | undefined;
|
|
1210
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1211
|
+
createJsonApi(data: CompanyInput): any;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
declare enum CompanyFields {
|
|
1215
|
+
companyId = "companyId",
|
|
1216
|
+
name = "name",
|
|
1217
|
+
createdAt = "createdAt",
|
|
1218
|
+
updatedAt = "updatedAt"
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1219
1221
|
declare const ContentModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1220
1222
|
|
|
1221
1223
|
declare class Content extends AbstractApiData implements ContentInterface, SearchResultInterface {
|
package/dist/core/index.d.ts
CHANGED
|
@@ -3,10 +3,10 @@ import { A as ApiDataInterface, J as JsonApiHydratedDataInterface } from '../Api
|
|
|
3
3
|
import { A as ApiRequestDataTypeInterface, F as FieldSelector } from '../ApiRequestDataTypeInterface-CUKFDBx2.js';
|
|
4
4
|
export { G as GetterKeys, c as createJsonApiInclusion } from '../ApiRequestDataTypeInterface-CUKFDBx2.js';
|
|
5
5
|
import { A as ApiResponseInterface } from '../ApiResponseInterface-CAIAeP5d.js';
|
|
6
|
-
import { c as AuthInterface, a as AuthInput, A as AbstractService, N as NextRef, P as PreviousRef, j as S3Interface, i as S3Input } from '../s3.service-
|
|
7
|
-
export { b as AuthQuery, d as AuthService, C as CompanyService, e as ContentService, F as FeatureService, H as HttpMethod, f as NotificationService, h as PushService, R as RoleService, k as S3Service, S as SelfRef, U as UserService, g as getGlobalErrorHandler, s as setGlobalErrorHandler } from '../s3.service-
|
|
8
|
-
import { M as ModuleWithPermissions, f as PermissionUser, A as Action, e as PermissionModule, g as ModuleFactory, i as ModuleInterface, F as FeatureInterface, k as RoleInterface, R as RoleInput,
|
|
9
|
-
export { c as ModuleDefinition, b as ModulePermissionDefinition, a as PageUrl, P as PermissionCheck, d as PermissionConfig } from '../notification.interface-
|
|
6
|
+
import { c as AuthInterface, a as AuthInput, A as AbstractService, N as NextRef, P as PreviousRef, j as S3Interface, i as S3Input } from '../s3.service-DsXo9nop.js';
|
|
7
|
+
export { b as AuthQuery, d as AuthService, C as CompanyService, e as ContentService, F as FeatureService, H as HttpMethod, f as NotificationService, h as PushService, R as RoleService, k as S3Service, S as SelfRef, U as UserService, g as getGlobalErrorHandler, s as setGlobalErrorHandler } from '../s3.service-DsXo9nop.js';
|
|
8
|
+
import { M as ModuleWithPermissions, f as PermissionUser, A as Action, e as PermissionModule, g as ModuleFactory, i as ModuleInterface, F as FeatureInterface, k as RoleInterface, R as RoleInput, U as UserInterface, h as CompanyInterface, l as UserInput, C as CompanyInput, N as NotificationInterface, j as NotificationInput } from '../notification.interface-CmKmObIU.js';
|
|
9
|
+
export { c as ModuleDefinition, b as ModulePermissionDefinition, a as PageUrl, P as PermissionCheck, d as PermissionConfig } from '../notification.interface-CmKmObIU.js';
|
|
10
10
|
export { B as BreadcrumbItemData } from '../breadcrumb.item.data.interface-CgB4_1EE.js';
|
|
11
11
|
export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-Ck5lkQ5d.js';
|
|
12
12
|
import { ClassValue } from 'clsx';
|
|
@@ -19,7 +19,7 @@ import { LucideIcon } from 'lucide-react';
|
|
|
19
19
|
export { A as AuthComponent } from '../AuthComponent-hxOPs9o8.js';
|
|
20
20
|
import { M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, S as StripeCustomerInterface, a as StripeInvoiceInterface, j as StripeSubscriptionInterface, I as InvoiceStatus, g as StripeProductInterface, d as StripePriceInterface, h as StripeProductInput, e as PriceRecurring, f as StripePriceInput, i as SubscriptionStatus, k as StripeSubscriptionInput, m as StripeSubscriptionCreateResponse, b as ProrationPreviewInterface, n as StripeUsageInterface, R as ReportUsageInput, U as UsageSummaryInterface } from '../stripe-subscription.interface-BaZUngWe.js';
|
|
21
21
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-subscription.interface-BaZUngWe.js';
|
|
22
|
-
import { a as ContentInterface, C as ContentInput } from '../content.interface-
|
|
22
|
+
import { a as ContentInterface, C as ContentInput } from '../content.interface-DFQ7mkpL.js';
|
|
23
23
|
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-vL7za9Bz.js';
|
|
24
24
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-vL7za9Bz.js';
|
|
25
25
|
import 'd3';
|
|
@@ -633,38 +633,6 @@ declare class Role extends AbstractApiData implements RoleInterface {
|
|
|
633
633
|
|
|
634
634
|
declare const RoleModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
635
635
|
|
|
636
|
-
declare const CompanyModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
637
|
-
|
|
638
|
-
declare class Company extends AbstractApiData implements CompanyInterface {
|
|
639
|
-
private _name?;
|
|
640
|
-
private _logo?;
|
|
641
|
-
private _logoUrl?;
|
|
642
|
-
private _configurations?;
|
|
643
|
-
private _monthlyTokens;
|
|
644
|
-
private _availableMonthlyTokens;
|
|
645
|
-
private _availableExtraTokens;
|
|
646
|
-
private _features?;
|
|
647
|
-
private _modules?;
|
|
648
|
-
get name(): string;
|
|
649
|
-
get logo(): string | undefined;
|
|
650
|
-
get logoUrl(): string | undefined;
|
|
651
|
-
get monthlyTokens(): number;
|
|
652
|
-
get availableMonthlyTokens(): number;
|
|
653
|
-
get availableExtraTokens(): number;
|
|
654
|
-
get features(): FeatureInterface[];
|
|
655
|
-
get modules(): ModuleInterface[];
|
|
656
|
-
get configurations(): any | undefined;
|
|
657
|
-
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
658
|
-
createJsonApi(data: CompanyInput): any;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
declare enum CompanyFields {
|
|
662
|
-
companyId = "companyId",
|
|
663
|
-
name = "name",
|
|
664
|
-
createdAt = "createdAt",
|
|
665
|
-
updatedAt = "updatedAt"
|
|
666
|
-
}
|
|
667
|
-
|
|
668
636
|
interface SearchResultInterface {
|
|
669
637
|
get searchResult(): string;
|
|
670
638
|
}
|
|
@@ -1216,6 +1184,40 @@ declare class StripeUsageService extends AbstractService {
|
|
|
1216
1184
|
|
|
1217
1185
|
declare const StripeUsageModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1218
1186
|
|
|
1187
|
+
declare const CompanyModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1188
|
+
|
|
1189
|
+
declare class Company extends AbstractApiData implements CompanyInterface {
|
|
1190
|
+
private _name?;
|
|
1191
|
+
private _logo?;
|
|
1192
|
+
private _logoUrl?;
|
|
1193
|
+
private _configurations?;
|
|
1194
|
+
private _isActiveSubscription;
|
|
1195
|
+
private _monthlyTokens;
|
|
1196
|
+
private _availableMonthlyTokens;
|
|
1197
|
+
private _availableExtraTokens;
|
|
1198
|
+
private _features?;
|
|
1199
|
+
private _modules?;
|
|
1200
|
+
get name(): string;
|
|
1201
|
+
get logo(): string | undefined;
|
|
1202
|
+
get logoUrl(): string | undefined;
|
|
1203
|
+
get isActiveSubscription(): boolean;
|
|
1204
|
+
get monthlyTokens(): number;
|
|
1205
|
+
get availableMonthlyTokens(): number;
|
|
1206
|
+
get availableExtraTokens(): number;
|
|
1207
|
+
get features(): FeatureInterface[];
|
|
1208
|
+
get modules(): ModuleInterface[];
|
|
1209
|
+
get configurations(): any | undefined;
|
|
1210
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1211
|
+
createJsonApi(data: CompanyInput): any;
|
|
1212
|
+
}
|
|
1213
|
+
|
|
1214
|
+
declare enum CompanyFields {
|
|
1215
|
+
companyId = "companyId",
|
|
1216
|
+
name = "name",
|
|
1217
|
+
createdAt = "createdAt",
|
|
1218
|
+
updatedAt = "updatedAt"
|
|
1219
|
+
}
|
|
1220
|
+
|
|
1219
1221
|
declare const ContentModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1220
1222
|
|
|
1221
1223
|
declare class Content extends AbstractApiData implements ContentInterface, SearchResultInterface {
|