@carlonicora/nextjs-jsonapi 1.24.2 → 1.25.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-7OSPCSFW.js → BlockNoteEditor-CKMTHP7C.js} +13 -13
- package/dist/{BlockNoteEditor-7OSPCSFW.js.map → BlockNoteEditor-CKMTHP7C.js.map} +1 -1
- package/dist/{BlockNoteEditor-63GKCJK3.mjs → BlockNoteEditor-EJQLNOLB.mjs} +3 -3
- package/dist/billing/index.js +345 -348
- package/dist/billing/index.js.map +1 -1
- package/dist/billing/index.mjs +6 -9
- package/dist/billing/index.mjs.map +1 -1
- package/dist/{chunk-UTPWUC6O.mjs → chunk-JNLXGGHE.mjs} +5790 -4519
- package/dist/chunk-JNLXGGHE.mjs.map +1 -0
- package/dist/{chunk-5U4NJJOF.mjs → chunk-LNBT2YPZ.mjs} +289 -2
- package/dist/chunk-LNBT2YPZ.mjs.map +1 -0
- package/dist/{chunk-NQVPCNRS.js → chunk-O3LLMGP7.js} +290 -3
- package/dist/chunk-O3LLMGP7.js.map +1 -0
- package/dist/{chunk-HIKTQMCR.js → chunk-YYZ2U4WU.js} +7332 -6061
- package/dist/chunk-YYZ2U4WU.js.map +1 -0
- package/dist/client/index.d.mts +96 -1
- package/dist/client/index.d.ts +96 -1
- package/dist/client/index.js +9 -3
- package/dist/client/index.js.map +1 -1
- package/dist/client/index.mjs +8 -2
- package/dist/components/index.d.mts +291 -32
- package/dist/components/index.d.ts +291 -32
- package/dist/components/index.js +43 -3
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +58 -18
- package/dist/contexts/index.js +3 -3
- package/dist/contexts/index.mjs +2 -2
- package/dist/core/index.d.mts +108 -1
- package/dist/core/index.d.ts +108 -1
- package/dist/core/index.js +14 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +13 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -1
- package/dist/oauth.interface-DsZ5ecSX.d.mts +119 -0
- package/dist/oauth.interface-vL7za9Bz.d.ts +119 -0
- package/dist/scripts/generate-web-module/templates/components/editor.template.js +11 -13
- package/dist/scripts/generate-web-module/templates/components/editor.template.js.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/multi-selector.template.d.ts.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/multi-selector.template.js +13 -26
- package/dist/scripts/generate-web-module/templates/components/multi-selector.template.js.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/selector.template.d.ts.map +1 -1
- package/dist/scripts/generate-web-module/templates/components/selector.template.js +59 -76
- package/dist/scripts/generate-web-module/templates/components/selector.template.js.map +1 -1
- package/dist/scripts/generate-web-module/transformers/field-mapper.d.ts.map +1 -1
- package/dist/scripts/generate-web-module/transformers/field-mapper.js +10 -12
- package/dist/scripts/generate-web-module/transformers/field-mapper.js.map +1 -1
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/scripts/generate-web-module/templates/components/editor.template.ts +11 -13
- package/scripts/generate-web-module/templates/components/multi-selector.template.ts +13 -26
- package/scripts/generate-web-module/templates/components/selector.template.ts +59 -76
- package/scripts/generate-web-module/transformers/field-mapper.ts +10 -12
- package/src/client/index.ts +1 -0
- package/src/components/forms/FormCheckbox.tsx +18 -24
- package/src/components/forms/FormDate.tsx +103 -116
- package/src/components/forms/FormDateTime.tsx +122 -130
- package/src/components/forms/FormFieldWrapper.tsx +54 -0
- package/src/components/forms/FormInput.tsx +58 -46
- package/src/components/forms/FormPassword.tsx +17 -24
- package/src/components/forms/FormPlaceAutocomplete.tsx +50 -75
- package/src/components/forms/FormSelect.tsx +29 -35
- package/src/components/forms/FormSlider.tsx +23 -27
- package/src/components/forms/FormSwitch.tsx +12 -14
- package/src/components/forms/FormTextarea.tsx +12 -19
- package/src/components/forms/index.ts +1 -1
- package/src/components/index.ts +1 -0
- package/src/core/index.ts +3 -0
- package/src/core/registry/ModuleRegistry.ts +2 -0
- package/src/features/billing/stripe-price/components/forms/PriceEditor.tsx +9 -13
- package/src/features/company/components/forms/CompanyConfigurationSecurityForm.tsx +19 -33
- package/src/features/feature/components/forms/FormFeatures.tsx +3 -4
- package/src/features/index.ts +1 -0
- package/src/features/oauth/atoms/index.ts +1 -0
- package/src/features/oauth/atoms/oauth.atoms.ts +131 -0
- package/src/features/oauth/components/OAuthClientCard.tsx +105 -0
- package/src/features/oauth/components/OAuthClientDetail.tsx +269 -0
- package/src/features/oauth/components/OAuthClientForm.tsx +212 -0
- package/src/features/oauth/components/OAuthClientList.tsx +127 -0
- package/src/features/oauth/components/OAuthClientSecretDisplay.tsx +127 -0
- package/src/features/oauth/components/OAuthRedirectUriInput.tsx +152 -0
- package/src/features/oauth/components/OAuthScopeSelector.tsx +123 -0
- package/src/features/oauth/components/consent/OAuthConsentActions.tsx +41 -0
- package/src/features/oauth/components/consent/OAuthConsentHeader.tsx +51 -0
- package/src/features/oauth/components/consent/OAuthConsentScreen.tsx +142 -0
- package/src/features/oauth/components/consent/OAuthScopeList.tsx +72 -0
- package/src/features/oauth/components/consent/index.ts +4 -0
- package/src/features/oauth/components/index.ts +8 -0
- package/src/features/oauth/data/index.ts +2 -0
- package/src/features/oauth/data/oauth.service.ts +191 -0
- package/src/features/oauth/data/oauth.ts +87 -0
- package/src/features/oauth/hooks/index.ts +3 -0
- package/src/features/oauth/hooks/useOAuthClient.ts +161 -0
- package/src/features/oauth/hooks/useOAuthClients.ts +111 -0
- package/src/features/oauth/hooks/useOAuthConsent.ts +125 -0
- package/src/features/oauth/index.ts +6 -0
- package/src/features/oauth/interfaces/index.ts +1 -0
- package/src/features/oauth/interfaces/oauth.interface.ts +175 -0
- package/src/features/oauth/oauth.module.ts +9 -0
- package/src/features/role/components/forms/FormRoles.tsx +40 -51
- package/src/features/user/components/forms/UserMultiSelect.tsx +12 -29
- package/src/features/user/components/forms/UserSelector.tsx +79 -91
- package/src/shadcnui/index.ts +2 -0
- package/src/shadcnui/ui/field.tsx +3 -3
- package/src/shadcnui/ui/form.tsx +17 -134
- package/src/shadcnui/ui/input-group.tsx +4 -4
- package/dist/chunk-5U4NJJOF.mjs.map +0 -1
- package/dist/chunk-HIKTQMCR.js.map +0 -1
- package/dist/chunk-NQVPCNRS.js.map +0 -1
- package/dist/chunk-UTPWUC6O.mjs.map +0 -1
- package/src/components/forms/FormContainerGeneric.tsx +0 -39
- /package/dist/{BlockNoteEditor-63GKCJK3.mjs.map → BlockNoteEditor-EJQLNOLB.mjs.map} +0 -0
|
@@ -8,12 +8,13 @@ import { D as DataListRetriever } from '../useDataListRetriever-futhx3OP.js';
|
|
|
8
8
|
import { DateRange, DayPicker, DayButton } from 'react-day-picker';
|
|
9
9
|
import { DropzoneState, DropzoneOptions } from 'react-dropzone';
|
|
10
10
|
export { DropzoneOptions } from 'react-dropzone';
|
|
11
|
+
import * as react_hook_form from 'react-hook-form';
|
|
12
|
+
import { FieldValues, UseFormReturn, Path, ControllerRenderProps, ControllerFieldState } from 'react-hook-form';
|
|
11
13
|
import { B as BreadcrumbItemData } from '../breadcrumb.item.data.interface-CgB4_1EE.js';
|
|
12
14
|
import { ColumnDef } from '@tanstack/react-table';
|
|
13
15
|
import { A as AuthComponent } from '../AuthComponent-hxOPs9o8.js';
|
|
14
16
|
import { J as JsonApiHydratedDataInterface } from '../ApiDataInterface-DPP8s46n.js';
|
|
15
|
-
import
|
|
16
|
-
import { UseFormReturn, FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
17
|
+
import { e as OAuthScopeInfo, O as OAuthClientInterface, b as OAuthClientCreateRequest, d as OAuthConsentRequest } from '../oauth.interface-vL7za9Bz.js';
|
|
17
18
|
import { Accordion as Accordion$1 } from '@base-ui/react/accordion';
|
|
18
19
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
19
20
|
import { VariantProps } from 'class-variance-authority';
|
|
@@ -30,8 +31,6 @@ import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
|
30
31
|
import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
|
|
31
32
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
32
33
|
import { Menu } from '@base-ui/react/menu';
|
|
33
|
-
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
34
|
-
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
35
34
|
import { PreviewCard } from '@base-ui/react/preview-card';
|
|
36
35
|
import { OTPInput } from 'input-otp';
|
|
37
36
|
import { NavigationMenu as NavigationMenu$1 } from '@base-ui/react/navigation-menu';
|
|
@@ -299,13 +298,17 @@ type FormCheckboxProps = {
|
|
|
299
298
|
};
|
|
300
299
|
declare function FormCheckbox({ form, id, name, labelBefore, description, isRequired }: FormCheckboxProps): react_jsx_runtime.JSX.Element;
|
|
301
300
|
|
|
302
|
-
|
|
303
|
-
form:
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
301
|
+
type FormFieldWrapperProps<T extends FieldValues> = {
|
|
302
|
+
form: UseFormReturn<T>;
|
|
303
|
+
name: Path<T>;
|
|
304
|
+
label?: string;
|
|
305
|
+
description?: string;
|
|
307
306
|
isRequired?: boolean;
|
|
308
|
-
|
|
307
|
+
orientation?: "vertical" | "horizontal" | "responsive";
|
|
308
|
+
children: (field: ControllerRenderProps<T, Path<T>>, fieldState: ControllerFieldState) => ReactNode;
|
|
309
|
+
testId?: string;
|
|
310
|
+
};
|
|
311
|
+
declare function FormFieldWrapper<T extends FieldValues>({ form, name, label, description, isRequired, orientation, children, testId, }: FormFieldWrapperProps<T>): react_jsx_runtime.JSX.Element;
|
|
309
312
|
|
|
310
313
|
declare function FormDate({ form, id, name, minDate, onChange, isRequired, }: {
|
|
311
314
|
form: any;
|
|
@@ -780,6 +783,229 @@ type UserAvatarProps = {
|
|
|
780
783
|
};
|
|
781
784
|
declare function UserAvatar({ user, className, showFull, showLink, showTooltip }: UserAvatarProps): react_jsx_runtime.JSX.Element;
|
|
782
785
|
|
|
786
|
+
interface OAuthRedirectUriInputProps {
|
|
787
|
+
/** Current array of redirect URIs */
|
|
788
|
+
value: string[];
|
|
789
|
+
/** Called when URIs change */
|
|
790
|
+
onChange: (uris: string[]) => void;
|
|
791
|
+
/** Error message to display */
|
|
792
|
+
error?: string;
|
|
793
|
+
/** Whether input is disabled */
|
|
794
|
+
disabled?: boolean;
|
|
795
|
+
/** Label text */
|
|
796
|
+
label?: string;
|
|
797
|
+
}
|
|
798
|
+
/**
|
|
799
|
+
* Dynamic input for managing OAuth redirect URIs
|
|
800
|
+
*
|
|
801
|
+
* @example
|
|
802
|
+
* ```tsx
|
|
803
|
+
* const [redirectUris, setRedirectUris] = useState<string[]>(['']);
|
|
804
|
+
*
|
|
805
|
+
* <OAuthRedirectUriInput
|
|
806
|
+
* value={redirectUris}
|
|
807
|
+
* onChange={setRedirectUris}
|
|
808
|
+
* error={errors.redirectUris}
|
|
809
|
+
* />
|
|
810
|
+
* ```
|
|
811
|
+
*/
|
|
812
|
+
declare function OAuthRedirectUriInput({ value, onChange, error, disabled, label, }: OAuthRedirectUriInputProps): react_jsx_runtime.JSX.Element;
|
|
813
|
+
|
|
814
|
+
interface OAuthScopeSelectorProps {
|
|
815
|
+
/** Currently selected scopes */
|
|
816
|
+
value: string[];
|
|
817
|
+
/** Called when selection changes */
|
|
818
|
+
onChange: (scopes: string[]) => void;
|
|
819
|
+
/** Available scopes to display (defaults to all) */
|
|
820
|
+
availableScopes?: OAuthScopeInfo[];
|
|
821
|
+
/** Whether selector is disabled */
|
|
822
|
+
disabled?: boolean;
|
|
823
|
+
/** Error message */
|
|
824
|
+
error?: string;
|
|
825
|
+
/** Label text */
|
|
826
|
+
label?: string;
|
|
827
|
+
}
|
|
828
|
+
/**
|
|
829
|
+
* Checkbox selector for OAuth scopes
|
|
830
|
+
*
|
|
831
|
+
* @example
|
|
832
|
+
* ```tsx
|
|
833
|
+
* const [scopes, setScopes] = useState<string[]>([]);
|
|
834
|
+
*
|
|
835
|
+
* <OAuthScopeSelector
|
|
836
|
+
* value={scopes}
|
|
837
|
+
* onChange={setScopes}
|
|
838
|
+
* error={errors.scopes}
|
|
839
|
+
* />
|
|
840
|
+
* ```
|
|
841
|
+
*/
|
|
842
|
+
declare function OAuthScopeSelector({ value, onChange, availableScopes, disabled, error, label, }: OAuthScopeSelectorProps): react_jsx_runtime.JSX.Element;
|
|
843
|
+
|
|
844
|
+
interface OAuthClientSecretDisplayProps {
|
|
845
|
+
/** The client secret to display */
|
|
846
|
+
secret: string;
|
|
847
|
+
/** Called when user dismisses the dialog */
|
|
848
|
+
onDismiss: () => void;
|
|
849
|
+
/** Whether the dialog is open */
|
|
850
|
+
open: boolean;
|
|
851
|
+
/** Optional client name for context */
|
|
852
|
+
clientName?: string;
|
|
853
|
+
}
|
|
854
|
+
/**
|
|
855
|
+
* Modal dialog for displaying a client secret ONE TIME
|
|
856
|
+
* Shows warning that secret cannot be retrieved again
|
|
857
|
+
*
|
|
858
|
+
* @example
|
|
859
|
+
* ```tsx
|
|
860
|
+
* const [secret, setSecret] = useAtom(oauthNewClientSecretAtom);
|
|
861
|
+
*
|
|
862
|
+
* <OAuthClientSecretDisplay
|
|
863
|
+
* secret={secret || ''}
|
|
864
|
+
* open={!!secret}
|
|
865
|
+
* onDismiss={() => setSecret(null)}
|
|
866
|
+
* />
|
|
867
|
+
* ```
|
|
868
|
+
*/
|
|
869
|
+
declare function OAuthClientSecretDisplay({ secret, onDismiss, open, clientName, }: OAuthClientSecretDisplayProps): react_jsx_runtime.JSX.Element;
|
|
870
|
+
|
|
871
|
+
interface OAuthClientCardProps {
|
|
872
|
+
/** The OAuth client to display */
|
|
873
|
+
client: OAuthClientInterface;
|
|
874
|
+
/** Called when card is clicked */
|
|
875
|
+
onClick?: () => void;
|
|
876
|
+
/** Called when edit is clicked */
|
|
877
|
+
onEdit?: () => void;
|
|
878
|
+
/** Called when delete is clicked */
|
|
879
|
+
onDelete?: () => void;
|
|
880
|
+
}
|
|
881
|
+
/**
|
|
882
|
+
* Card component for displaying an OAuth client in a list
|
|
883
|
+
*/
|
|
884
|
+
declare function OAuthClientCard({ client, onClick, onEdit, onDelete, }: OAuthClientCardProps): react_jsx_runtime.JSX.Element;
|
|
885
|
+
|
|
886
|
+
interface OAuthClientListProps {
|
|
887
|
+
/** List of OAuth clients */
|
|
888
|
+
clients: OAuthClientInterface[];
|
|
889
|
+
/** Whether list is loading */
|
|
890
|
+
isLoading?: boolean;
|
|
891
|
+
/** Error to display */
|
|
892
|
+
error?: Error | null;
|
|
893
|
+
/** Called when a client is clicked */
|
|
894
|
+
onClientClick?: (client: OAuthClientInterface) => void;
|
|
895
|
+
/** Called when create button is clicked */
|
|
896
|
+
onCreateClick?: () => void;
|
|
897
|
+
/** Called when edit is clicked on a client */
|
|
898
|
+
onEditClick?: (client: OAuthClientInterface) => void;
|
|
899
|
+
/** Called when delete is clicked on a client */
|
|
900
|
+
onDeleteClick?: (client: OAuthClientInterface) => void;
|
|
901
|
+
/** Message to show when list is empty */
|
|
902
|
+
emptyStateMessage?: string;
|
|
903
|
+
/** Title for the list */
|
|
904
|
+
title?: string;
|
|
905
|
+
}
|
|
906
|
+
/**
|
|
907
|
+
* Component for displaying a list of OAuth clients
|
|
908
|
+
*/
|
|
909
|
+
declare function OAuthClientList({ clients, isLoading, error, onClientClick, onCreateClick, onEditClick, onDeleteClick, emptyStateMessage, title, }: OAuthClientListProps): react_jsx_runtime.JSX.Element;
|
|
910
|
+
|
|
911
|
+
interface OAuthClientFormProps {
|
|
912
|
+
/** Existing client for edit mode (undefined = create mode) */
|
|
913
|
+
client?: OAuthClientInterface;
|
|
914
|
+
/** Called on form submit */
|
|
915
|
+
onSubmit: (data: OAuthClientCreateRequest) => Promise<void>;
|
|
916
|
+
/** Called on cancel */
|
|
917
|
+
onCancel: () => void;
|
|
918
|
+
/** Whether form is submitting */
|
|
919
|
+
isLoading?: boolean;
|
|
920
|
+
}
|
|
921
|
+
/**
|
|
922
|
+
* Form for creating or editing an OAuth client
|
|
923
|
+
*/
|
|
924
|
+
declare function OAuthClientForm({ client, onSubmit, onCancel, isLoading, }: OAuthClientFormProps): react_jsx_runtime.JSX.Element;
|
|
925
|
+
|
|
926
|
+
interface OAuthClientDetailProps {
|
|
927
|
+
/** The OAuth client to display */
|
|
928
|
+
client: OAuthClientInterface;
|
|
929
|
+
/** Whether data is loading */
|
|
930
|
+
isLoading?: boolean;
|
|
931
|
+
/** Called when edit is clicked */
|
|
932
|
+
onEdit?: () => void;
|
|
933
|
+
/** Called when delete is clicked */
|
|
934
|
+
onDelete?: () => Promise<void>;
|
|
935
|
+
/** Called when regenerate secret is clicked */
|
|
936
|
+
onRegenerateSecret?: () => Promise<void>;
|
|
937
|
+
}
|
|
938
|
+
/**
|
|
939
|
+
* Detailed view of an OAuth client
|
|
940
|
+
*/
|
|
941
|
+
declare function OAuthClientDetail({ client, isLoading, onEdit, onDelete, onRegenerateSecret, }: OAuthClientDetailProps): react_jsx_runtime.JSX.Element;
|
|
942
|
+
|
|
943
|
+
interface OAuthConsentHeaderProps {
|
|
944
|
+
/** The requesting OAuth client */
|
|
945
|
+
client: OAuthClientInterface;
|
|
946
|
+
/** Optional logo URL override */
|
|
947
|
+
logoUrl?: string;
|
|
948
|
+
/** Application name (e.g., "Only35") */
|
|
949
|
+
appName?: string;
|
|
950
|
+
}
|
|
951
|
+
/**
|
|
952
|
+
* Header component for OAuth consent screen
|
|
953
|
+
* Shows platform logo and requesting app information
|
|
954
|
+
*/
|
|
955
|
+
declare function OAuthConsentHeader({ client, logoUrl, appName, }: OAuthConsentHeaderProps): react_jsx_runtime.JSX.Element;
|
|
956
|
+
|
|
957
|
+
interface OAuthScopeListProps {
|
|
958
|
+
/** List of requested scopes */
|
|
959
|
+
scopes: OAuthScopeInfo[];
|
|
960
|
+
}
|
|
961
|
+
/**
|
|
962
|
+
* List of requested OAuth scopes for consent display
|
|
963
|
+
*/
|
|
964
|
+
declare function OAuthScopeList({ scopes }: OAuthScopeListProps): react_jsx_runtime.JSX.Element | null;
|
|
965
|
+
|
|
966
|
+
interface OAuthConsentActionsProps {
|
|
967
|
+
/** Called when user clicks Authorize */
|
|
968
|
+
onApprove: () => void;
|
|
969
|
+
/** Called when user clicks Deny */
|
|
970
|
+
onDeny: () => void;
|
|
971
|
+
/** Whether an action is in progress */
|
|
972
|
+
isLoading?: boolean;
|
|
973
|
+
}
|
|
974
|
+
/**
|
|
975
|
+
* Action buttons for OAuth consent screen
|
|
976
|
+
*/
|
|
977
|
+
declare function OAuthConsentActions({ onApprove, onDeny, isLoading, }: OAuthConsentActionsProps): react_jsx_runtime.JSX.Element;
|
|
978
|
+
|
|
979
|
+
interface OAuthConsentScreenProps {
|
|
980
|
+
/** OAuth authorization parameters */
|
|
981
|
+
params: OAuthConsentRequest;
|
|
982
|
+
/** Optional platform logo URL */
|
|
983
|
+
logoUrl?: string;
|
|
984
|
+
/** Platform name */
|
|
985
|
+
appName?: string;
|
|
986
|
+
/** Terms of Service URL */
|
|
987
|
+
termsUrl?: string;
|
|
988
|
+
/** Privacy Policy URL */
|
|
989
|
+
privacyUrl?: string;
|
|
990
|
+
}
|
|
991
|
+
/**
|
|
992
|
+
* Main OAuth consent screen component
|
|
993
|
+
* Displays client info, requested scopes, and approve/deny buttons
|
|
994
|
+
*
|
|
995
|
+
* @example
|
|
996
|
+
* ```tsx
|
|
997
|
+
* <OAuthConsentScreen
|
|
998
|
+
* params={{
|
|
999
|
+
* clientId: searchParams.client_id,
|
|
1000
|
+
* redirectUri: searchParams.redirect_uri,
|
|
1001
|
+
* scope: searchParams.scope,
|
|
1002
|
+
* state: searchParams.state,
|
|
1003
|
+
* }}
|
|
1004
|
+
* />
|
|
1005
|
+
* ```
|
|
1006
|
+
*/
|
|
1007
|
+
declare function OAuthConsentScreen({ params, logoUrl, appName, termsUrl, privacyUrl, }: OAuthConsentScreenProps): react_jsx_runtime.JSX.Element;
|
|
1008
|
+
|
|
783
1009
|
declare function Accordion({ className, ...props }: Accordion$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
784
1010
|
declare function AccordionItem({ className, ...props }: Accordion$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
785
1011
|
declare function AccordionTrigger({ className, children, ...props }: Accordion$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -1028,25 +1254,45 @@ declare function DropdownMenuRadioItem({ className, children, ...props }: Menu.R
|
|
|
1028
1254
|
declare function DropdownMenuSeparator({ className, ...props }: Menu.Separator.Props): react_jsx_runtime.JSX.Element;
|
|
1029
1255
|
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
1030
1256
|
|
|
1031
|
-
declare
|
|
1032
|
-
|
|
1033
|
-
declare
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
};
|
|
1045
|
-
declare
|
|
1046
|
-
declare
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
declare
|
|
1257
|
+
declare function Label({ className, ...props }: React$1.ComponentProps<"label">): react_jsx_runtime.JSX.Element;
|
|
1258
|
+
|
|
1259
|
+
declare function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">): react_jsx_runtime.JSX.Element;
|
|
1260
|
+
declare function FieldLegend({ className, variant, ...props }: React.ComponentProps<"legend"> & {
|
|
1261
|
+
variant?: "legend" | "label";
|
|
1262
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1263
|
+
declare function FieldGroup({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1264
|
+
declare const fieldVariants: (props?: ({
|
|
1265
|
+
orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
|
|
1266
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1267
|
+
declare function Field({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof fieldVariants>): react_jsx_runtime.JSX.Element;
|
|
1268
|
+
declare function FieldContent({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1269
|
+
declare function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>): react_jsx_runtime.JSX.Element;
|
|
1270
|
+
declare function FieldTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1271
|
+
declare function FieldDescription({ className, ...props }: React.ComponentProps<"p">): react_jsx_runtime.JSX.Element;
|
|
1272
|
+
declare function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & {
|
|
1273
|
+
children?: React.ReactNode;
|
|
1274
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1275
|
+
declare function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & {
|
|
1276
|
+
errors?: Array<{
|
|
1277
|
+
message?: string;
|
|
1278
|
+
} | undefined>;
|
|
1279
|
+
}): react_jsx_runtime.JSX.Element | null;
|
|
1280
|
+
|
|
1281
|
+
/**
|
|
1282
|
+
* Form component is a wrapper around react-hook-form's FormProvider.
|
|
1283
|
+
* Use this to wrap your form and spread the form object into it.
|
|
1284
|
+
*
|
|
1285
|
+
* @example
|
|
1286
|
+
* const form = useForm<FormValues>();
|
|
1287
|
+
* return (
|
|
1288
|
+
* <Form {...form}>
|
|
1289
|
+
* <form onSubmit={form.handleSubmit(onSubmit)}>
|
|
1290
|
+
* <FormInput form={form} id="email" name="Email" />
|
|
1291
|
+
* </form>
|
|
1292
|
+
* </Form>
|
|
1293
|
+
* );
|
|
1294
|
+
*/
|
|
1295
|
+
declare const Form: <TFieldValues extends react_hook_form.FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
1050
1296
|
|
|
1051
1297
|
declare function HoverCard({ ...props }: PreviewCard.Root.Props): react_jsx_runtime.JSX.Element;
|
|
1052
1298
|
declare function HoverCardTrigger({ ...props }: PreviewCard.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -1054,6 +1300,21 @@ declare function HoverCardContent({ className, side, sideOffset, align, alignOff
|
|
|
1054
1300
|
|
|
1055
1301
|
declare function Input({ className, type, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
1056
1302
|
|
|
1303
|
+
declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1304
|
+
declare const inputGroupAddonVariants: (props?: ({
|
|
1305
|
+
align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
|
|
1306
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1307
|
+
declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
|
|
1308
|
+
declare const inputGroupButtonVariants: (props?: ({
|
|
1309
|
+
size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
|
|
1310
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1311
|
+
declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size" | "type"> & VariantProps<typeof inputGroupButtonVariants> & {
|
|
1312
|
+
type?: "button" | "submit" | "reset";
|
|
1313
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1314
|
+
declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
1315
|
+
declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
|
|
1316
|
+
declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
|
|
1317
|
+
|
|
1057
1318
|
declare function InputOTP({ className, containerClassName, ...props }: React$1.ComponentProps<typeof OTPInput> & {
|
|
1058
1319
|
containerClassName?: string;
|
|
1059
1320
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -1063,8 +1324,6 @@ declare function InputOTPSlot({ index, className, ...props }: React$1.ComponentP
|
|
|
1063
1324
|
}): react_jsx_runtime.JSX.Element;
|
|
1064
1325
|
declare function InputOTPSeparator({ ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
1065
1326
|
|
|
1066
|
-
declare function Label({ className, ...props }: React$1.ComponentProps<"label">): react_jsx_runtime.JSX.Element;
|
|
1067
|
-
|
|
1068
1327
|
declare function NavigationMenu({ className, children, ...props }: NavigationMenu$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
1069
1328
|
declare function NavigationMenuList({ className, ...props }: NavigationMenu$1.List.Props): react_jsx_runtime.JSX.Element;
|
|
1070
1329
|
declare function NavigationMenuItem({ className, ...props }: NavigationMenu$1.Item.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -1358,4 +1617,4 @@ interface MultiSelectProps extends React$1.ButtonHTMLAttributes<HTMLButtonElemen
|
|
|
1358
1617
|
}
|
|
1359
1618
|
declare const MultiSelect: React$1.ForwardRefExoticComponent<MultiSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1360
1619
|
|
|
1361
|
-
export { AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, AdminUsersList, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllowedUsersDetails, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BlockNoteEditorContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompanyConfigurationEditor, CompanyConfigurationSecurityForm, CompanyContainer, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, DatePickerPopover, DateRangeSelector, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ErrorDetails,
|
|
1620
|
+
export { AcceptInvitation, Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivateAccount, AddUserToRole, AdminCompanyContainer, AdminUsersList, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AllowedUsersDetails, AttributeElement, AuthContainer, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, BlockNoteEditorContainer, KanbanBoard as Board, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbNavigation, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, KanbanColumn as Column, KanbanColumnHandle as ColumnHandle, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CommonAssociationCommandDialog, CommonAssociationTrigger, CommonDeleter, CommonEditorButtons, CommonEditorHeader, CommonEditorTrigger, CompaniesList, CompanyConfigurationEditor, CompanyConfigurationSecurityForm, CompanyContainer, CompanyDeleter, CompanyDetails, CompanyEditor, CompanyUsersList, ContentListTable, ContentTableSearch, ContentTitle, ContentsList, ContentsListById, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, ContributorsList, Cookies, DatePickerPopover, DateRangeSelector, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ErrorDetails, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, FileInput, FileUploader, FileUploaderContent, FileUploaderItem, ForgotPassword, Form, FormCheckbox, FormDate, FormDateTime, FormFeatures, FormFieldWrapper, FormInput, FormPassword, FormPlaceAutocomplete, FormRoles, FormSelect, FormSlider, FormSwitch, FormTextarea, type GenerateTableStructureParams, Header, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KanbanItem as Item, KanbanItemHandle as ItemHandle, KanbanRoot as Kanban, KanbanBoard, KanbanColumn, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Label, LandingComponent, Link, type LinkProps, Login, Logout, ModeToggleSwitch, MultiSelect, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NotificationErrorBoundary, NotificationMenuItem, NotificationModal, NotificationToast, NotificationsList, NotificationsListContainer, OAuthClientCard, type OAuthClientCardProps, OAuthClientDetail, type OAuthClientDetailProps, OAuthClientForm, type OAuthClientFormProps, OAuthClientList, type OAuthClientListProps, OAuthClientSecretDisplay, type OAuthClientSecretDisplayProps, OAuthConsentActions, type OAuthConsentActionsProps, OAuthConsentHeader, type OAuthConsentHeaderProps, OAuthConsentScreen, type OAuthConsentScreenProps, OAuthRedirectUriInput, type OAuthRedirectUriInputProps, OAuthScopeList, type OAuthScopeListProps, OAuthScopeSelector, type OAuthScopeSelectorProps, KanbanOverlay as Overlay, PageContainer, PageContainerContentDetails, type PageContainerItems, PageContentContainer, PageSection, PasswordInput, type PasswordInputProps, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, PushNotificationProvider, RadioGroup, RadioGroupItem, ReactMarkdownContainer, RecentPagesNavigator, RefreshUser, RelevantContentsList, RelevantUsersList, RemoveUserFromRole, ResetPassword, ResizableHandle, ResizablePanel, ResizablePanelGroup, RoleContainer, RoleDetails, RoleUsersList, RolesList, KanbanRoot as Root, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Switch, type Tab, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContainer, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UserAvatar, UserAvatarEditor, UserContainer, UserDeleter, UserDetails, UserEditor, UserIndexContainer, UserIndexDetails, UserListInAdd, UserMultiSelect, UserReactivator, UserResentInvitationEmail, UserRoleAdd, UserRolesList, UserSelector, UsersList, UsersListByContentIds, UsersListContainer, badgeVariants, buttonVariants, cellComponent, cellDate, cellId, cellLink, cellUrl, errorToast, generateNotificationData, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, triggerAssociationToast, useCarousel, useFileUpload, useSidebar };
|
package/dist/components/index.js
CHANGED
|
@@ -349,9 +349,29 @@
|
|
|
349
349
|
|
|
350
350
|
|
|
351
351
|
|
|
352
|
-
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
var _chunkYYZ2U4WUjs = require('../chunk-YYZ2U4WU.js');
|
|
353
373
|
require('../chunk-EW6QPMN3.js');
|
|
354
|
-
require('../chunk-
|
|
374
|
+
require('../chunk-O3LLMGP7.js');
|
|
355
375
|
require('../chunk-LXKSUWAV.js');
|
|
356
376
|
require('../chunk-IBS6NI7D.js');
|
|
357
377
|
require('../chunk-FM6WRAN5.js');
|
|
@@ -714,5 +734,25 @@ require('../chunk-7QVYU63E.js');
|
|
|
714
734
|
|
|
715
735
|
|
|
716
736
|
|
|
717
|
-
exports.AcceptInvitation = _chunkHIKTQMCRjs.AcceptInvitation; exports.Accordion = _chunkHIKTQMCRjs.Accordion; exports.AccordionContent = _chunkHIKTQMCRjs.AccordionContent; exports.AccordionItem = _chunkHIKTQMCRjs.AccordionItem; exports.AccordionTrigger = _chunkHIKTQMCRjs.AccordionTrigger; exports.ActivateAccount = _chunkHIKTQMCRjs.ActivateAccount; exports.AddUserToRole = _chunkHIKTQMCRjs.AddUserToRole; exports.AdminCompanyContainer = _chunkHIKTQMCRjs.AdminCompanyContainer; exports.AdminUsersList = _chunkHIKTQMCRjs.AdminUsersList; exports.Alert = _chunkHIKTQMCRjs.Alert; exports.AlertAction = _chunkHIKTQMCRjs.AlertAction; exports.AlertDescription = _chunkHIKTQMCRjs.AlertDescription; exports.AlertDialog = _chunkHIKTQMCRjs.AlertDialog; exports.AlertDialogAction = _chunkHIKTQMCRjs.AlertDialogAction; exports.AlertDialogCancel = _chunkHIKTQMCRjs.AlertDialogCancel; exports.AlertDialogContent = _chunkHIKTQMCRjs.AlertDialogContent; exports.AlertDialogDescription = _chunkHIKTQMCRjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkHIKTQMCRjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkHIKTQMCRjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkHIKTQMCRjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkHIKTQMCRjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkHIKTQMCRjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkHIKTQMCRjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkHIKTQMCRjs.AlertDialogTrigger; exports.AlertTitle = _chunkHIKTQMCRjs.AlertTitle; exports.AllowedUsersDetails = _chunkHIKTQMCRjs.AllowedUsersDetails; exports.AttributeElement = _chunkHIKTQMCRjs.AttributeElement; exports.AuthContainer = _chunkHIKTQMCRjs.AuthContainer; exports.Avatar = _chunkHIKTQMCRjs.Avatar; exports.AvatarBadge = _chunkHIKTQMCRjs.AvatarBadge; exports.AvatarFallback = _chunkHIKTQMCRjs.AvatarFallback; exports.AvatarGroup = _chunkHIKTQMCRjs.AvatarGroup; exports.AvatarGroupCount = _chunkHIKTQMCRjs.AvatarGroupCount; exports.AvatarImage = _chunkHIKTQMCRjs.AvatarImage; exports.Badge = _chunkHIKTQMCRjs.Badge; exports.BlockNoteEditorContainer = _chunkHIKTQMCRjs.BlockNoteEditorContainer; exports.Board = _chunkHIKTQMCRjs.KanbanBoard; exports.Breadcrumb = _chunkHIKTQMCRjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkHIKTQMCRjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkHIKTQMCRjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkHIKTQMCRjs.BreadcrumbLink; exports.BreadcrumbList = _chunkHIKTQMCRjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkHIKTQMCRjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkHIKTQMCRjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkHIKTQMCRjs.BreadcrumbSeparator; exports.Button = _chunkHIKTQMCRjs.Button; exports.Calendar = _chunkHIKTQMCRjs.Calendar; exports.CalendarDayButton = _chunkHIKTQMCRjs.CalendarDayButton; exports.Card = _chunkHIKTQMCRjs.Card; exports.CardAction = _chunkHIKTQMCRjs.CardAction; exports.CardContent = _chunkHIKTQMCRjs.CardContent; exports.CardDescription = _chunkHIKTQMCRjs.CardDescription; exports.CardFooter = _chunkHIKTQMCRjs.CardFooter; exports.CardHeader = _chunkHIKTQMCRjs.CardHeader; exports.CardTitle = _chunkHIKTQMCRjs.CardTitle; exports.Carousel = _chunkHIKTQMCRjs.Carousel; exports.CarouselContent = _chunkHIKTQMCRjs.CarouselContent; exports.CarouselItem = _chunkHIKTQMCRjs.CarouselItem; exports.CarouselNext = _chunkHIKTQMCRjs.CarouselNext; exports.CarouselPrevious = _chunkHIKTQMCRjs.CarouselPrevious; exports.ChartContainer = _chunkHIKTQMCRjs.ChartContainer; exports.ChartLegend = _chunkHIKTQMCRjs.ChartLegend; exports.ChartLegendContent = _chunkHIKTQMCRjs.ChartLegendContent; exports.ChartStyle = _chunkHIKTQMCRjs.ChartStyle; exports.ChartTooltip = _chunkHIKTQMCRjs.ChartTooltip; exports.ChartTooltipContent = _chunkHIKTQMCRjs.ChartTooltipContent; exports.Checkbox = _chunkHIKTQMCRjs.Checkbox; exports.Collapsible = _chunkHIKTQMCRjs.Collapsible; exports.CollapsibleContent = _chunkHIKTQMCRjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkHIKTQMCRjs.CollapsibleTrigger; exports.Column = _chunkHIKTQMCRjs.KanbanColumn; exports.ColumnHandle = _chunkHIKTQMCRjs.KanbanColumnHandle; exports.Command = _chunkHIKTQMCRjs.Command; exports.CommandDialog = _chunkHIKTQMCRjs.CommandDialog; exports.CommandEmpty = _chunkHIKTQMCRjs.CommandEmpty; exports.CommandGroup = _chunkHIKTQMCRjs.CommandGroup; exports.CommandInput = _chunkHIKTQMCRjs.CommandInput; exports.CommandItem = _chunkHIKTQMCRjs.CommandItem; exports.CommandList = _chunkHIKTQMCRjs.CommandList; exports.CommandSeparator = _chunkHIKTQMCRjs.CommandSeparator; exports.CommandShortcut = _chunkHIKTQMCRjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkHIKTQMCRjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkHIKTQMCRjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkHIKTQMCRjs.CommonDeleter; exports.CommonEditorButtons = _chunkHIKTQMCRjs.CommonEditorButtons; exports.CommonEditorHeader = _chunkHIKTQMCRjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkHIKTQMCRjs.CommonEditorTrigger; exports.CompaniesList = _chunkHIKTQMCRjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkHIKTQMCRjs.CompanyConfigurationEditor; exports.CompanyConfigurationSecurityForm = _chunkHIKTQMCRjs.CompanyConfigurationSecurityForm; exports.CompanyContainer = _chunkHIKTQMCRjs.CompanyContainer; exports.CompanyDeleter = _chunkHIKTQMCRjs.CompanyDeleter; exports.CompanyDetails = _chunkHIKTQMCRjs.CompanyDetails; exports.CompanyEditor = _chunkHIKTQMCRjs.CompanyEditor; exports.CompanyUsersList = _chunkHIKTQMCRjs.CompanyUsersList; exports.ContentListTable = _chunkHIKTQMCRjs.ContentListTable; exports.ContentTableSearch = _chunkHIKTQMCRjs.ContentTableSearch; exports.ContentTitle = _chunkHIKTQMCRjs.ContentTitle; exports.ContentsList = _chunkHIKTQMCRjs.ContentsList; exports.ContentsListById = _chunkHIKTQMCRjs.ContentsListById; exports.ContextMenu = _chunkHIKTQMCRjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkHIKTQMCRjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkHIKTQMCRjs.ContextMenuContent; exports.ContextMenuGroup = _chunkHIKTQMCRjs.ContextMenuGroup; exports.ContextMenuItem = _chunkHIKTQMCRjs.ContextMenuItem; exports.ContextMenuLabel = _chunkHIKTQMCRjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkHIKTQMCRjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkHIKTQMCRjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkHIKTQMCRjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkHIKTQMCRjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkHIKTQMCRjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkHIKTQMCRjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkHIKTQMCRjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkHIKTQMCRjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkHIKTQMCRjs.ContextMenuTrigger; exports.ContributorsList = _chunkHIKTQMCRjs.ContributorsList; exports.Cookies = _chunkHIKTQMCRjs.Cookies; exports.DatePickerPopover = _chunkHIKTQMCRjs.DatePickerPopover; exports.DateRangeSelector = _chunkHIKTQMCRjs.DateRangeSelector; exports.Dialog = _chunkHIKTQMCRjs.Dialog; exports.DialogClose = _chunkHIKTQMCRjs.DialogClose; exports.DialogContent = _chunkHIKTQMCRjs.DialogContent; exports.DialogDescription = _chunkHIKTQMCRjs.DialogDescription; exports.DialogFooter = _chunkHIKTQMCRjs.DialogFooter; exports.DialogHeader = _chunkHIKTQMCRjs.DialogHeader; exports.DialogOverlay = _chunkHIKTQMCRjs.DialogOverlay; exports.DialogPortal = _chunkHIKTQMCRjs.DialogPortal; exports.DialogTitle = _chunkHIKTQMCRjs.DialogTitle; exports.DialogTrigger = _chunkHIKTQMCRjs.DialogTrigger; exports.Drawer = _chunkHIKTQMCRjs.Drawer; exports.DrawerClose = _chunkHIKTQMCRjs.DrawerClose; exports.DrawerContent = _chunkHIKTQMCRjs.DrawerContent; exports.DrawerDescription = _chunkHIKTQMCRjs.DrawerDescription; exports.DrawerFooter = _chunkHIKTQMCRjs.DrawerFooter; exports.DrawerHeader = _chunkHIKTQMCRjs.DrawerHeader; exports.DrawerOverlay = _chunkHIKTQMCRjs.DrawerOverlay; exports.DrawerPortal = _chunkHIKTQMCRjs.DrawerPortal; exports.DrawerTitle = _chunkHIKTQMCRjs.DrawerTitle; exports.DrawerTrigger = _chunkHIKTQMCRjs.DrawerTrigger; exports.DropdownMenu = _chunkHIKTQMCRjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkHIKTQMCRjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkHIKTQMCRjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkHIKTQMCRjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkHIKTQMCRjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkHIKTQMCRjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkHIKTQMCRjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkHIKTQMCRjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkHIKTQMCRjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkHIKTQMCRjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkHIKTQMCRjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkHIKTQMCRjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkHIKTQMCRjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkHIKTQMCRjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkHIKTQMCRjs.DropdownMenuTrigger; exports.ErrorDetails = _chunkHIKTQMCRjs.ErrorDetails; exports.FileInput = _chunkHIKTQMCRjs.FileInput; exports.FileUploader = _chunkHIKTQMCRjs.FileUploader; exports.FileUploaderContent = _chunkHIKTQMCRjs.FileUploaderContent; exports.FileUploaderItem = _chunkHIKTQMCRjs.FileUploaderItem; exports.ForgotPassword = _chunkHIKTQMCRjs.ForgotPassword; exports.Form = _chunkHIKTQMCRjs.Form; exports.FormCheckbox = _chunkHIKTQMCRjs.FormCheckbox; exports.FormContainerGeneric = _chunkHIKTQMCRjs.FormContainerGeneric; exports.FormControl = _chunkHIKTQMCRjs.FormControl; exports.FormDate = _chunkHIKTQMCRjs.FormDate; exports.FormDateTime = _chunkHIKTQMCRjs.FormDateTime; exports.FormDescription = _chunkHIKTQMCRjs.FormDescription; exports.FormFeatures = _chunkHIKTQMCRjs.FormFeatures; exports.FormField = _chunkHIKTQMCRjs.FormField; exports.FormInput = _chunkHIKTQMCRjs.FormInput; exports.FormItem = _chunkHIKTQMCRjs.FormItem; exports.FormLabel = _chunkHIKTQMCRjs.FormLabel; exports.FormMessage = _chunkHIKTQMCRjs.FormMessage; exports.FormPassword = _chunkHIKTQMCRjs.FormPassword; exports.FormPlaceAutocomplete = _chunkHIKTQMCRjs.FormPlaceAutocomplete; exports.FormRoles = _chunkHIKTQMCRjs.FormRoles; exports.FormSelect = _chunkHIKTQMCRjs.FormSelect; exports.FormSlider = _chunkHIKTQMCRjs.FormSlider; exports.FormSwitch = _chunkHIKTQMCRjs.FormSwitch; exports.FormTextarea = _chunkHIKTQMCRjs.FormTextarea; exports.Header = _chunkHIKTQMCRjs.Header; exports.HoverCard = _chunkHIKTQMCRjs.HoverCard; exports.HoverCardContent = _chunkHIKTQMCRjs.HoverCardContent; exports.HoverCardTrigger = _chunkHIKTQMCRjs.HoverCardTrigger; exports.Input = _chunkHIKTQMCRjs.Input; exports.InputOTP = _chunkHIKTQMCRjs.InputOTP; exports.InputOTPGroup = _chunkHIKTQMCRjs.InputOTPGroup; exports.InputOTPSeparator = _chunkHIKTQMCRjs.InputOTPSeparator; exports.InputOTPSlot = _chunkHIKTQMCRjs.InputOTPSlot; exports.Item = _chunkHIKTQMCRjs.KanbanItem; exports.ItemHandle = _chunkHIKTQMCRjs.KanbanItemHandle; exports.Kanban = _chunkHIKTQMCRjs.KanbanRoot; exports.KanbanBoard = _chunkHIKTQMCRjs.KanbanBoard; exports.KanbanColumn = _chunkHIKTQMCRjs.KanbanColumn; exports.KanbanColumnHandle = _chunkHIKTQMCRjs.KanbanColumnHandle; exports.KanbanItem = _chunkHIKTQMCRjs.KanbanItem; exports.KanbanItemHandle = _chunkHIKTQMCRjs.KanbanItemHandle; exports.KanbanOverlay = _chunkHIKTQMCRjs.KanbanOverlay; exports.Label = _chunkHIKTQMCRjs.Label; exports.LandingComponent = _chunkHIKTQMCRjs.LandingComponent; exports.Link = _chunkHIKTQMCRjs.Link; exports.Login = _chunkHIKTQMCRjs.Login; exports.Logout = _chunkHIKTQMCRjs.Logout; exports.ModeToggleSwitch = _chunkHIKTQMCRjs.ModeToggleSwitch; exports.MultiSelect = _chunkHIKTQMCRjs.MultiSelect; exports.NavigationMenu = _chunkHIKTQMCRjs.NavigationMenu; exports.NavigationMenuContent = _chunkHIKTQMCRjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkHIKTQMCRjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkHIKTQMCRjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkHIKTQMCRjs.NavigationMenuLink; exports.NavigationMenuList = _chunkHIKTQMCRjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkHIKTQMCRjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkHIKTQMCRjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkHIKTQMCRjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkHIKTQMCRjs.NotificationMenuItem; exports.NotificationModal = _chunkHIKTQMCRjs.NotificationModal; exports.NotificationToast = _chunkHIKTQMCRjs.NotificationToast; exports.NotificationsList = _chunkHIKTQMCRjs.NotificationsList; exports.NotificationsListContainer = _chunkHIKTQMCRjs.NotificationsListContainer; exports.Overlay = _chunkHIKTQMCRjs.KanbanOverlay; exports.PageContainer = _chunkHIKTQMCRjs.PageContainer; exports.PageContainerContentDetails = _chunkHIKTQMCRjs.PageContainerContentDetails; exports.PageContentContainer = _chunkHIKTQMCRjs.PageContentContainer; exports.PageSection = _chunkHIKTQMCRjs.PageSection; exports.PasswordInput = _chunkHIKTQMCRjs.PasswordInput; exports.Popover = _chunkHIKTQMCRjs.Popover; exports.PopoverContent = _chunkHIKTQMCRjs.PopoverContent; exports.PopoverDescription = _chunkHIKTQMCRjs.PopoverDescription; exports.PopoverHeader = _chunkHIKTQMCRjs.PopoverHeader; exports.PopoverTitle = _chunkHIKTQMCRjs.PopoverTitle; exports.PopoverTrigger = _chunkHIKTQMCRjs.PopoverTrigger; exports.Progress = _chunkHIKTQMCRjs.Progress; exports.ProgressIndicator = _chunkHIKTQMCRjs.ProgressIndicator; exports.ProgressLabel = _chunkHIKTQMCRjs.ProgressLabel; exports.ProgressTrack = _chunkHIKTQMCRjs.ProgressTrack; exports.ProgressValue = _chunkHIKTQMCRjs.ProgressValue; exports.PushNotificationProvider = _chunkHIKTQMCRjs.PushNotificationProvider; exports.RadioGroup = _chunkHIKTQMCRjs.RadioGroup; exports.RadioGroupItem = _chunkHIKTQMCRjs.RadioGroupItem; exports.ReactMarkdownContainer = _chunkHIKTQMCRjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkHIKTQMCRjs.RecentPagesNavigator; exports.RefreshUser = _chunkHIKTQMCRjs.RefreshUser; exports.RelevantContentsList = _chunkHIKTQMCRjs.RelevantContentsList; exports.RelevantUsersList = _chunkHIKTQMCRjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkHIKTQMCRjs.RemoveUserFromRole; exports.ResetPassword = _chunkHIKTQMCRjs.ResetPassword; exports.ResizableHandle = _chunkHIKTQMCRjs.ResizableHandle; exports.ResizablePanel = _chunkHIKTQMCRjs.ResizablePanel; exports.ResizablePanelGroup = _chunkHIKTQMCRjs.ResizablePanelGroup; exports.RoleContainer = _chunkHIKTQMCRjs.RoleContainer; exports.RoleDetails = _chunkHIKTQMCRjs.RoleDetails; exports.RoleUsersList = _chunkHIKTQMCRjs.RoleUsersList; exports.RolesList = _chunkHIKTQMCRjs.RolesList; exports.Root = _chunkHIKTQMCRjs.KanbanRoot; exports.ScrollArea = _chunkHIKTQMCRjs.ScrollArea; exports.ScrollBar = _chunkHIKTQMCRjs.ScrollBar; exports.Select = _chunkHIKTQMCRjs.Select; exports.SelectContent = _chunkHIKTQMCRjs.SelectContent; exports.SelectGroup = _chunkHIKTQMCRjs.SelectGroup; exports.SelectItem = _chunkHIKTQMCRjs.SelectItem; exports.SelectLabel = _chunkHIKTQMCRjs.SelectLabel; exports.SelectScrollDownButton = _chunkHIKTQMCRjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkHIKTQMCRjs.SelectScrollUpButton; exports.SelectSeparator = _chunkHIKTQMCRjs.SelectSeparator; exports.SelectTrigger = _chunkHIKTQMCRjs.SelectTrigger; exports.SelectValue = _chunkHIKTQMCRjs.SelectValue; exports.Separator = _chunkHIKTQMCRjs.Separator; exports.Sheet = _chunkHIKTQMCRjs.Sheet; exports.SheetClose = _chunkHIKTQMCRjs.SheetClose; exports.SheetContent = _chunkHIKTQMCRjs.SheetContent; exports.SheetDescription = _chunkHIKTQMCRjs.SheetDescription; exports.SheetFooter = _chunkHIKTQMCRjs.SheetFooter; exports.SheetHeader = _chunkHIKTQMCRjs.SheetHeader; exports.SheetTitle = _chunkHIKTQMCRjs.SheetTitle; exports.SheetTrigger = _chunkHIKTQMCRjs.SheetTrigger; exports.Sidebar = _chunkHIKTQMCRjs.Sidebar; exports.SidebarContent = _chunkHIKTQMCRjs.SidebarContent; exports.SidebarFooter = _chunkHIKTQMCRjs.SidebarFooter; exports.SidebarGroup = _chunkHIKTQMCRjs.SidebarGroup; exports.SidebarGroupAction = _chunkHIKTQMCRjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkHIKTQMCRjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkHIKTQMCRjs.SidebarGroupLabel; exports.SidebarHeader = _chunkHIKTQMCRjs.SidebarHeader; exports.SidebarInput = _chunkHIKTQMCRjs.SidebarInput; exports.SidebarInset = _chunkHIKTQMCRjs.SidebarInset; exports.SidebarMenu = _chunkHIKTQMCRjs.SidebarMenu; exports.SidebarMenuAction = _chunkHIKTQMCRjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkHIKTQMCRjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkHIKTQMCRjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkHIKTQMCRjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkHIKTQMCRjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkHIKTQMCRjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkHIKTQMCRjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkHIKTQMCRjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkHIKTQMCRjs.SidebarProvider; exports.SidebarRail = _chunkHIKTQMCRjs.SidebarRail; exports.SidebarSeparator = _chunkHIKTQMCRjs.SidebarSeparator; exports.SidebarTrigger = _chunkHIKTQMCRjs.SidebarTrigger; exports.Skeleton = _chunkHIKTQMCRjs.Skeleton; exports.Slider = _chunkHIKTQMCRjs.Slider; exports.Switch = _chunkHIKTQMCRjs.Switch; exports.Table = _chunkHIKTQMCRjs.Table; exports.TableBody = _chunkHIKTQMCRjs.TableBody; exports.TableCaption = _chunkHIKTQMCRjs.TableCaption; exports.TableCell = _chunkHIKTQMCRjs.TableCell; exports.TableFooter = _chunkHIKTQMCRjs.TableFooter; exports.TableHead = _chunkHIKTQMCRjs.TableHead; exports.TableHeader = _chunkHIKTQMCRjs.TableHeader; exports.TableRow = _chunkHIKTQMCRjs.TableRow; exports.Tabs = _chunkHIKTQMCRjs.Tabs; exports.TabsContainer = _chunkHIKTQMCRjs.TabsContainer; exports.TabsContent = _chunkHIKTQMCRjs.TabsContent; exports.TabsList = _chunkHIKTQMCRjs.TabsList; exports.TabsTrigger = _chunkHIKTQMCRjs.TabsTrigger; exports.Textarea = _chunkHIKTQMCRjs.Textarea; exports.Toaster = _chunkHIKTQMCRjs.Toaster; exports.Toggle = _chunkHIKTQMCRjs.Toggle; exports.Tooltip = _chunkHIKTQMCRjs.Tooltip; exports.TooltipContent = _chunkHIKTQMCRjs.TooltipContent; exports.TooltipProvider = _chunkHIKTQMCRjs.TooltipProvider; exports.TooltipTrigger = _chunkHIKTQMCRjs.TooltipTrigger; exports.UserAvatar = _chunkHIKTQMCRjs.UserAvatar; exports.UserAvatarEditor = _chunkHIKTQMCRjs.UserAvatarEditor; exports.UserContainer = _chunkHIKTQMCRjs.UserContainer; exports.UserDeleter = _chunkHIKTQMCRjs.UserDeleter; exports.UserDetails = _chunkHIKTQMCRjs.UserDetails; exports.UserEditor = _chunkHIKTQMCRjs.UserEditor; exports.UserIndexContainer = _chunkHIKTQMCRjs.UserIndexContainer; exports.UserIndexDetails = _chunkHIKTQMCRjs.UserIndexDetails; exports.UserListInAdd = _chunkHIKTQMCRjs.UserListInAdd; exports.UserMultiSelect = _chunkHIKTQMCRjs.UserMultiSelect; exports.UserReactivator = _chunkHIKTQMCRjs.UserReactivator; exports.UserResentInvitationEmail = _chunkHIKTQMCRjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkHIKTQMCRjs.UserRoleAdd; exports.UserRolesList = _chunkHIKTQMCRjs.UserRolesList; exports.UserSelector = _chunkHIKTQMCRjs.UserSelector; exports.UsersList = _chunkHIKTQMCRjs.UsersList; exports.UsersListByContentIds = _chunkHIKTQMCRjs.UsersListByContentIds; exports.UsersListContainer = _chunkHIKTQMCRjs.UsersListContainer; exports.badgeVariants = _chunkHIKTQMCRjs.badgeVariants; exports.buttonVariants = _chunkHIKTQMCRjs.buttonVariants; exports.cellComponent = _chunkHIKTQMCRjs.cellComponent; exports.cellDate = _chunkHIKTQMCRjs.cellDate; exports.cellId = _chunkHIKTQMCRjs.cellId; exports.cellLink = _chunkHIKTQMCRjs.cellLink; exports.cellUrl = _chunkHIKTQMCRjs.cellUrl; exports.errorToast = _chunkHIKTQMCRjs.errorToast; exports.generateNotificationData = _chunkHIKTQMCRjs.generateNotificationData; exports.navigationMenuTriggerStyle = _chunkHIKTQMCRjs.navigationMenuTriggerStyle; exports.tabsListVariants = _chunkHIKTQMCRjs.tabsListVariants; exports.toggleVariants = _chunkHIKTQMCRjs.toggleVariants; exports.triggerAssociationToast = _chunkHIKTQMCRjs.triggerAssociationToast; exports.useCarousel = _chunkHIKTQMCRjs.useCarousel; exports.useFileUpload = _chunkHIKTQMCRjs.useFileUpload; exports.useFormField = _chunkHIKTQMCRjs.useFormField; exports.useSidebar = _chunkHIKTQMCRjs.useSidebar;
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
|
|
744
|
+
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
exports.AcceptInvitation = _chunkYYZ2U4WUjs.AcceptInvitation; exports.Accordion = _chunkYYZ2U4WUjs.Accordion; exports.AccordionContent = _chunkYYZ2U4WUjs.AccordionContent; exports.AccordionItem = _chunkYYZ2U4WUjs.AccordionItem; exports.AccordionTrigger = _chunkYYZ2U4WUjs.AccordionTrigger; exports.ActivateAccount = _chunkYYZ2U4WUjs.ActivateAccount; exports.AddUserToRole = _chunkYYZ2U4WUjs.AddUserToRole; exports.AdminCompanyContainer = _chunkYYZ2U4WUjs.AdminCompanyContainer; exports.AdminUsersList = _chunkYYZ2U4WUjs.AdminUsersList; exports.Alert = _chunkYYZ2U4WUjs.Alert; exports.AlertAction = _chunkYYZ2U4WUjs.AlertAction; exports.AlertDescription = _chunkYYZ2U4WUjs.AlertDescription; exports.AlertDialog = _chunkYYZ2U4WUjs.AlertDialog; exports.AlertDialogAction = _chunkYYZ2U4WUjs.AlertDialogAction; exports.AlertDialogCancel = _chunkYYZ2U4WUjs.AlertDialogCancel; exports.AlertDialogContent = _chunkYYZ2U4WUjs.AlertDialogContent; exports.AlertDialogDescription = _chunkYYZ2U4WUjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkYYZ2U4WUjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkYYZ2U4WUjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkYYZ2U4WUjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkYYZ2U4WUjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkYYZ2U4WUjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkYYZ2U4WUjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkYYZ2U4WUjs.AlertDialogTrigger; exports.AlertTitle = _chunkYYZ2U4WUjs.AlertTitle; exports.AllowedUsersDetails = _chunkYYZ2U4WUjs.AllowedUsersDetails; exports.AttributeElement = _chunkYYZ2U4WUjs.AttributeElement; exports.AuthContainer = _chunkYYZ2U4WUjs.AuthContainer; exports.Avatar = _chunkYYZ2U4WUjs.Avatar; exports.AvatarBadge = _chunkYYZ2U4WUjs.AvatarBadge; exports.AvatarFallback = _chunkYYZ2U4WUjs.AvatarFallback; exports.AvatarGroup = _chunkYYZ2U4WUjs.AvatarGroup; exports.AvatarGroupCount = _chunkYYZ2U4WUjs.AvatarGroupCount; exports.AvatarImage = _chunkYYZ2U4WUjs.AvatarImage; exports.Badge = _chunkYYZ2U4WUjs.Badge; exports.BlockNoteEditorContainer = _chunkYYZ2U4WUjs.BlockNoteEditorContainer; exports.Board = _chunkYYZ2U4WUjs.KanbanBoard; exports.Breadcrumb = _chunkYYZ2U4WUjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkYYZ2U4WUjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkYYZ2U4WUjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkYYZ2U4WUjs.BreadcrumbLink; exports.BreadcrumbList = _chunkYYZ2U4WUjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkYYZ2U4WUjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkYYZ2U4WUjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkYYZ2U4WUjs.BreadcrumbSeparator; exports.Button = _chunkYYZ2U4WUjs.Button; exports.Calendar = _chunkYYZ2U4WUjs.Calendar; exports.CalendarDayButton = _chunkYYZ2U4WUjs.CalendarDayButton; exports.Card = _chunkYYZ2U4WUjs.Card; exports.CardAction = _chunkYYZ2U4WUjs.CardAction; exports.CardContent = _chunkYYZ2U4WUjs.CardContent; exports.CardDescription = _chunkYYZ2U4WUjs.CardDescription; exports.CardFooter = _chunkYYZ2U4WUjs.CardFooter; exports.CardHeader = _chunkYYZ2U4WUjs.CardHeader; exports.CardTitle = _chunkYYZ2U4WUjs.CardTitle; exports.Carousel = _chunkYYZ2U4WUjs.Carousel; exports.CarouselContent = _chunkYYZ2U4WUjs.CarouselContent; exports.CarouselItem = _chunkYYZ2U4WUjs.CarouselItem; exports.CarouselNext = _chunkYYZ2U4WUjs.CarouselNext; exports.CarouselPrevious = _chunkYYZ2U4WUjs.CarouselPrevious; exports.ChartContainer = _chunkYYZ2U4WUjs.ChartContainer; exports.ChartLegend = _chunkYYZ2U4WUjs.ChartLegend; exports.ChartLegendContent = _chunkYYZ2U4WUjs.ChartLegendContent; exports.ChartStyle = _chunkYYZ2U4WUjs.ChartStyle; exports.ChartTooltip = _chunkYYZ2U4WUjs.ChartTooltip; exports.ChartTooltipContent = _chunkYYZ2U4WUjs.ChartTooltipContent; exports.Checkbox = _chunkYYZ2U4WUjs.Checkbox; exports.Collapsible = _chunkYYZ2U4WUjs.Collapsible; exports.CollapsibleContent = _chunkYYZ2U4WUjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkYYZ2U4WUjs.CollapsibleTrigger; exports.Column = _chunkYYZ2U4WUjs.KanbanColumn; exports.ColumnHandle = _chunkYYZ2U4WUjs.KanbanColumnHandle; exports.Command = _chunkYYZ2U4WUjs.Command; exports.CommandDialog = _chunkYYZ2U4WUjs.CommandDialog; exports.CommandEmpty = _chunkYYZ2U4WUjs.CommandEmpty; exports.CommandGroup = _chunkYYZ2U4WUjs.CommandGroup; exports.CommandInput = _chunkYYZ2U4WUjs.CommandInput; exports.CommandItem = _chunkYYZ2U4WUjs.CommandItem; exports.CommandList = _chunkYYZ2U4WUjs.CommandList; exports.CommandSeparator = _chunkYYZ2U4WUjs.CommandSeparator; exports.CommandShortcut = _chunkYYZ2U4WUjs.CommandShortcut; exports.CommonAssociationCommandDialog = _chunkYYZ2U4WUjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkYYZ2U4WUjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkYYZ2U4WUjs.CommonDeleter; exports.CommonEditorButtons = _chunkYYZ2U4WUjs.CommonEditorButtons; exports.CommonEditorHeader = _chunkYYZ2U4WUjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkYYZ2U4WUjs.CommonEditorTrigger; exports.CompaniesList = _chunkYYZ2U4WUjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkYYZ2U4WUjs.CompanyConfigurationEditor; exports.CompanyConfigurationSecurityForm = _chunkYYZ2U4WUjs.CompanyConfigurationSecurityForm; exports.CompanyContainer = _chunkYYZ2U4WUjs.CompanyContainer; exports.CompanyDeleter = _chunkYYZ2U4WUjs.CompanyDeleter; exports.CompanyDetails = _chunkYYZ2U4WUjs.CompanyDetails; exports.CompanyEditor = _chunkYYZ2U4WUjs.CompanyEditor; exports.CompanyUsersList = _chunkYYZ2U4WUjs.CompanyUsersList; exports.ContentListTable = _chunkYYZ2U4WUjs.ContentListTable; exports.ContentTableSearch = _chunkYYZ2U4WUjs.ContentTableSearch; exports.ContentTitle = _chunkYYZ2U4WUjs.ContentTitle; exports.ContentsList = _chunkYYZ2U4WUjs.ContentsList; exports.ContentsListById = _chunkYYZ2U4WUjs.ContentsListById; exports.ContextMenu = _chunkYYZ2U4WUjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkYYZ2U4WUjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkYYZ2U4WUjs.ContextMenuContent; exports.ContextMenuGroup = _chunkYYZ2U4WUjs.ContextMenuGroup; exports.ContextMenuItem = _chunkYYZ2U4WUjs.ContextMenuItem; exports.ContextMenuLabel = _chunkYYZ2U4WUjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkYYZ2U4WUjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkYYZ2U4WUjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkYYZ2U4WUjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkYYZ2U4WUjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkYYZ2U4WUjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkYYZ2U4WUjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkYYZ2U4WUjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkYYZ2U4WUjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkYYZ2U4WUjs.ContextMenuTrigger; exports.ContributorsList = _chunkYYZ2U4WUjs.ContributorsList; exports.Cookies = _chunkYYZ2U4WUjs.Cookies; exports.DatePickerPopover = _chunkYYZ2U4WUjs.DatePickerPopover; exports.DateRangeSelector = _chunkYYZ2U4WUjs.DateRangeSelector; exports.Dialog = _chunkYYZ2U4WUjs.Dialog; exports.DialogClose = _chunkYYZ2U4WUjs.DialogClose; exports.DialogContent = _chunkYYZ2U4WUjs.DialogContent; exports.DialogDescription = _chunkYYZ2U4WUjs.DialogDescription; exports.DialogFooter = _chunkYYZ2U4WUjs.DialogFooter; exports.DialogHeader = _chunkYYZ2U4WUjs.DialogHeader; exports.DialogOverlay = _chunkYYZ2U4WUjs.DialogOverlay; exports.DialogPortal = _chunkYYZ2U4WUjs.DialogPortal; exports.DialogTitle = _chunkYYZ2U4WUjs.DialogTitle; exports.DialogTrigger = _chunkYYZ2U4WUjs.DialogTrigger; exports.Drawer = _chunkYYZ2U4WUjs.Drawer; exports.DrawerClose = _chunkYYZ2U4WUjs.DrawerClose; exports.DrawerContent = _chunkYYZ2U4WUjs.DrawerContent; exports.DrawerDescription = _chunkYYZ2U4WUjs.DrawerDescription; exports.DrawerFooter = _chunkYYZ2U4WUjs.DrawerFooter; exports.DrawerHeader = _chunkYYZ2U4WUjs.DrawerHeader; exports.DrawerOverlay = _chunkYYZ2U4WUjs.DrawerOverlay; exports.DrawerPortal = _chunkYYZ2U4WUjs.DrawerPortal; exports.DrawerTitle = _chunkYYZ2U4WUjs.DrawerTitle; exports.DrawerTrigger = _chunkYYZ2U4WUjs.DrawerTrigger; exports.DropdownMenu = _chunkYYZ2U4WUjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkYYZ2U4WUjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkYYZ2U4WUjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkYYZ2U4WUjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkYYZ2U4WUjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkYYZ2U4WUjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkYYZ2U4WUjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkYYZ2U4WUjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkYYZ2U4WUjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkYYZ2U4WUjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkYYZ2U4WUjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkYYZ2U4WUjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkYYZ2U4WUjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkYYZ2U4WUjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkYYZ2U4WUjs.DropdownMenuTrigger; exports.ErrorDetails = _chunkYYZ2U4WUjs.ErrorDetails; exports.Field = _chunkYYZ2U4WUjs.Field; exports.FieldContent = _chunkYYZ2U4WUjs.FieldContent; exports.FieldDescription = _chunkYYZ2U4WUjs.FieldDescription; exports.FieldError = _chunkYYZ2U4WUjs.FieldError; exports.FieldGroup = _chunkYYZ2U4WUjs.FieldGroup; exports.FieldLabel = _chunkYYZ2U4WUjs.FieldLabel; exports.FieldLegend = _chunkYYZ2U4WUjs.FieldLegend; exports.FieldSeparator = _chunkYYZ2U4WUjs.FieldSeparator; exports.FieldSet = _chunkYYZ2U4WUjs.FieldSet; exports.FieldTitle = _chunkYYZ2U4WUjs.FieldTitle; exports.FileInput = _chunkYYZ2U4WUjs.FileInput; exports.FileUploader = _chunkYYZ2U4WUjs.FileUploader; exports.FileUploaderContent = _chunkYYZ2U4WUjs.FileUploaderContent; exports.FileUploaderItem = _chunkYYZ2U4WUjs.FileUploaderItem; exports.ForgotPassword = _chunkYYZ2U4WUjs.ForgotPassword; exports.Form = _chunkYYZ2U4WUjs.Form; exports.FormCheckbox = _chunkYYZ2U4WUjs.FormCheckbox; exports.FormDate = _chunkYYZ2U4WUjs.FormDate; exports.FormDateTime = _chunkYYZ2U4WUjs.FormDateTime; exports.FormFeatures = _chunkYYZ2U4WUjs.FormFeatures; exports.FormFieldWrapper = _chunkYYZ2U4WUjs.FormFieldWrapper; exports.FormInput = _chunkYYZ2U4WUjs.FormInput; exports.FormPassword = _chunkYYZ2U4WUjs.FormPassword; exports.FormPlaceAutocomplete = _chunkYYZ2U4WUjs.FormPlaceAutocomplete; exports.FormRoles = _chunkYYZ2U4WUjs.FormRoles; exports.FormSelect = _chunkYYZ2U4WUjs.FormSelect; exports.FormSlider = _chunkYYZ2U4WUjs.FormSlider; exports.FormSwitch = _chunkYYZ2U4WUjs.FormSwitch; exports.FormTextarea = _chunkYYZ2U4WUjs.FormTextarea; exports.Header = _chunkYYZ2U4WUjs.Header; exports.HoverCard = _chunkYYZ2U4WUjs.HoverCard; exports.HoverCardContent = _chunkYYZ2U4WUjs.HoverCardContent; exports.HoverCardTrigger = _chunkYYZ2U4WUjs.HoverCardTrigger; exports.Input = _chunkYYZ2U4WUjs.Input; exports.InputGroup = _chunkYYZ2U4WUjs.InputGroup; exports.InputGroupAddon = _chunkYYZ2U4WUjs.InputGroupAddon; exports.InputGroupButton = _chunkYYZ2U4WUjs.InputGroupButton; exports.InputGroupInput = _chunkYYZ2U4WUjs.InputGroupInput; exports.InputGroupText = _chunkYYZ2U4WUjs.InputGroupText; exports.InputGroupTextarea = _chunkYYZ2U4WUjs.InputGroupTextarea; exports.InputOTP = _chunkYYZ2U4WUjs.InputOTP; exports.InputOTPGroup = _chunkYYZ2U4WUjs.InputOTPGroup; exports.InputOTPSeparator = _chunkYYZ2U4WUjs.InputOTPSeparator; exports.InputOTPSlot = _chunkYYZ2U4WUjs.InputOTPSlot; exports.Item = _chunkYYZ2U4WUjs.KanbanItem; exports.ItemHandle = _chunkYYZ2U4WUjs.KanbanItemHandle; exports.Kanban = _chunkYYZ2U4WUjs.KanbanRoot; exports.KanbanBoard = _chunkYYZ2U4WUjs.KanbanBoard; exports.KanbanColumn = _chunkYYZ2U4WUjs.KanbanColumn; exports.KanbanColumnHandle = _chunkYYZ2U4WUjs.KanbanColumnHandle; exports.KanbanItem = _chunkYYZ2U4WUjs.KanbanItem; exports.KanbanItemHandle = _chunkYYZ2U4WUjs.KanbanItemHandle; exports.KanbanOverlay = _chunkYYZ2U4WUjs.KanbanOverlay; exports.Label = _chunkYYZ2U4WUjs.Label; exports.LandingComponent = _chunkYYZ2U4WUjs.LandingComponent; exports.Link = _chunkYYZ2U4WUjs.Link; exports.Login = _chunkYYZ2U4WUjs.Login; exports.Logout = _chunkYYZ2U4WUjs.Logout; exports.ModeToggleSwitch = _chunkYYZ2U4WUjs.ModeToggleSwitch; exports.MultiSelect = _chunkYYZ2U4WUjs.MultiSelect; exports.NavigationMenu = _chunkYYZ2U4WUjs.NavigationMenu; exports.NavigationMenuContent = _chunkYYZ2U4WUjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkYYZ2U4WUjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkYYZ2U4WUjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkYYZ2U4WUjs.NavigationMenuLink; exports.NavigationMenuList = _chunkYYZ2U4WUjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkYYZ2U4WUjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkYYZ2U4WUjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkYYZ2U4WUjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkYYZ2U4WUjs.NotificationMenuItem; exports.NotificationModal = _chunkYYZ2U4WUjs.NotificationModal; exports.NotificationToast = _chunkYYZ2U4WUjs.NotificationToast; exports.NotificationsList = _chunkYYZ2U4WUjs.NotificationsList; exports.NotificationsListContainer = _chunkYYZ2U4WUjs.NotificationsListContainer; exports.OAuthClientCard = _chunkYYZ2U4WUjs.OAuthClientCard; exports.OAuthClientDetail = _chunkYYZ2U4WUjs.OAuthClientDetail; exports.OAuthClientForm = _chunkYYZ2U4WUjs.OAuthClientForm; exports.OAuthClientList = _chunkYYZ2U4WUjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkYYZ2U4WUjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkYYZ2U4WUjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkYYZ2U4WUjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkYYZ2U4WUjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkYYZ2U4WUjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkYYZ2U4WUjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkYYZ2U4WUjs.OAuthScopeSelector; exports.Overlay = _chunkYYZ2U4WUjs.KanbanOverlay; exports.PageContainer = _chunkYYZ2U4WUjs.PageContainer; exports.PageContainerContentDetails = _chunkYYZ2U4WUjs.PageContainerContentDetails; exports.PageContentContainer = _chunkYYZ2U4WUjs.PageContentContainer; exports.PageSection = _chunkYYZ2U4WUjs.PageSection; exports.PasswordInput = _chunkYYZ2U4WUjs.PasswordInput; exports.Popover = _chunkYYZ2U4WUjs.Popover; exports.PopoverContent = _chunkYYZ2U4WUjs.PopoverContent; exports.PopoverDescription = _chunkYYZ2U4WUjs.PopoverDescription; exports.PopoverHeader = _chunkYYZ2U4WUjs.PopoverHeader; exports.PopoverTitle = _chunkYYZ2U4WUjs.PopoverTitle; exports.PopoverTrigger = _chunkYYZ2U4WUjs.PopoverTrigger; exports.Progress = _chunkYYZ2U4WUjs.Progress; exports.ProgressIndicator = _chunkYYZ2U4WUjs.ProgressIndicator; exports.ProgressLabel = _chunkYYZ2U4WUjs.ProgressLabel; exports.ProgressTrack = _chunkYYZ2U4WUjs.ProgressTrack; exports.ProgressValue = _chunkYYZ2U4WUjs.ProgressValue; exports.PushNotificationProvider = _chunkYYZ2U4WUjs.PushNotificationProvider; exports.RadioGroup = _chunkYYZ2U4WUjs.RadioGroup; exports.RadioGroupItem = _chunkYYZ2U4WUjs.RadioGroupItem; exports.ReactMarkdownContainer = _chunkYYZ2U4WUjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkYYZ2U4WUjs.RecentPagesNavigator; exports.RefreshUser = _chunkYYZ2U4WUjs.RefreshUser; exports.RelevantContentsList = _chunkYYZ2U4WUjs.RelevantContentsList; exports.RelevantUsersList = _chunkYYZ2U4WUjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkYYZ2U4WUjs.RemoveUserFromRole; exports.ResetPassword = _chunkYYZ2U4WUjs.ResetPassword; exports.ResizableHandle = _chunkYYZ2U4WUjs.ResizableHandle; exports.ResizablePanel = _chunkYYZ2U4WUjs.ResizablePanel; exports.ResizablePanelGroup = _chunkYYZ2U4WUjs.ResizablePanelGroup; exports.RoleContainer = _chunkYYZ2U4WUjs.RoleContainer; exports.RoleDetails = _chunkYYZ2U4WUjs.RoleDetails; exports.RoleUsersList = _chunkYYZ2U4WUjs.RoleUsersList; exports.RolesList = _chunkYYZ2U4WUjs.RolesList; exports.Root = _chunkYYZ2U4WUjs.KanbanRoot; exports.ScrollArea = _chunkYYZ2U4WUjs.ScrollArea; exports.ScrollBar = _chunkYYZ2U4WUjs.ScrollBar; exports.Select = _chunkYYZ2U4WUjs.Select; exports.SelectContent = _chunkYYZ2U4WUjs.SelectContent; exports.SelectGroup = _chunkYYZ2U4WUjs.SelectGroup; exports.SelectItem = _chunkYYZ2U4WUjs.SelectItem; exports.SelectLabel = _chunkYYZ2U4WUjs.SelectLabel; exports.SelectScrollDownButton = _chunkYYZ2U4WUjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkYYZ2U4WUjs.SelectScrollUpButton; exports.SelectSeparator = _chunkYYZ2U4WUjs.SelectSeparator; exports.SelectTrigger = _chunkYYZ2U4WUjs.SelectTrigger; exports.SelectValue = _chunkYYZ2U4WUjs.SelectValue; exports.Separator = _chunkYYZ2U4WUjs.Separator; exports.Sheet = _chunkYYZ2U4WUjs.Sheet; exports.SheetClose = _chunkYYZ2U4WUjs.SheetClose; exports.SheetContent = _chunkYYZ2U4WUjs.SheetContent; exports.SheetDescription = _chunkYYZ2U4WUjs.SheetDescription; exports.SheetFooter = _chunkYYZ2U4WUjs.SheetFooter; exports.SheetHeader = _chunkYYZ2U4WUjs.SheetHeader; exports.SheetTitle = _chunkYYZ2U4WUjs.SheetTitle; exports.SheetTrigger = _chunkYYZ2U4WUjs.SheetTrigger; exports.Sidebar = _chunkYYZ2U4WUjs.Sidebar; exports.SidebarContent = _chunkYYZ2U4WUjs.SidebarContent; exports.SidebarFooter = _chunkYYZ2U4WUjs.SidebarFooter; exports.SidebarGroup = _chunkYYZ2U4WUjs.SidebarGroup; exports.SidebarGroupAction = _chunkYYZ2U4WUjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkYYZ2U4WUjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkYYZ2U4WUjs.SidebarGroupLabel; exports.SidebarHeader = _chunkYYZ2U4WUjs.SidebarHeader; exports.SidebarInput = _chunkYYZ2U4WUjs.SidebarInput; exports.SidebarInset = _chunkYYZ2U4WUjs.SidebarInset; exports.SidebarMenu = _chunkYYZ2U4WUjs.SidebarMenu; exports.SidebarMenuAction = _chunkYYZ2U4WUjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkYYZ2U4WUjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkYYZ2U4WUjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkYYZ2U4WUjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkYYZ2U4WUjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkYYZ2U4WUjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkYYZ2U4WUjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkYYZ2U4WUjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkYYZ2U4WUjs.SidebarProvider; exports.SidebarRail = _chunkYYZ2U4WUjs.SidebarRail; exports.SidebarSeparator = _chunkYYZ2U4WUjs.SidebarSeparator; exports.SidebarTrigger = _chunkYYZ2U4WUjs.SidebarTrigger; exports.Skeleton = _chunkYYZ2U4WUjs.Skeleton; exports.Slider = _chunkYYZ2U4WUjs.Slider; exports.Switch = _chunkYYZ2U4WUjs.Switch; exports.Table = _chunkYYZ2U4WUjs.Table; exports.TableBody = _chunkYYZ2U4WUjs.TableBody; exports.TableCaption = _chunkYYZ2U4WUjs.TableCaption; exports.TableCell = _chunkYYZ2U4WUjs.TableCell; exports.TableFooter = _chunkYYZ2U4WUjs.TableFooter; exports.TableHead = _chunkYYZ2U4WUjs.TableHead; exports.TableHeader = _chunkYYZ2U4WUjs.TableHeader; exports.TableRow = _chunkYYZ2U4WUjs.TableRow; exports.Tabs = _chunkYYZ2U4WUjs.Tabs; exports.TabsContainer = _chunkYYZ2U4WUjs.TabsContainer; exports.TabsContent = _chunkYYZ2U4WUjs.TabsContent; exports.TabsList = _chunkYYZ2U4WUjs.TabsList; exports.TabsTrigger = _chunkYYZ2U4WUjs.TabsTrigger; exports.Textarea = _chunkYYZ2U4WUjs.Textarea; exports.Toaster = _chunkYYZ2U4WUjs.Toaster; exports.Toggle = _chunkYYZ2U4WUjs.Toggle; exports.Tooltip = _chunkYYZ2U4WUjs.Tooltip; exports.TooltipContent = _chunkYYZ2U4WUjs.TooltipContent; exports.TooltipProvider = _chunkYYZ2U4WUjs.TooltipProvider; exports.TooltipTrigger = _chunkYYZ2U4WUjs.TooltipTrigger; exports.UserAvatar = _chunkYYZ2U4WUjs.UserAvatar; exports.UserAvatarEditor = _chunkYYZ2U4WUjs.UserAvatarEditor; exports.UserContainer = _chunkYYZ2U4WUjs.UserContainer; exports.UserDeleter = _chunkYYZ2U4WUjs.UserDeleter; exports.UserDetails = _chunkYYZ2U4WUjs.UserDetails; exports.UserEditor = _chunkYYZ2U4WUjs.UserEditor; exports.UserIndexContainer = _chunkYYZ2U4WUjs.UserIndexContainer; exports.UserIndexDetails = _chunkYYZ2U4WUjs.UserIndexDetails; exports.UserListInAdd = _chunkYYZ2U4WUjs.UserListInAdd; exports.UserMultiSelect = _chunkYYZ2U4WUjs.UserMultiSelect; exports.UserReactivator = _chunkYYZ2U4WUjs.UserReactivator; exports.UserResentInvitationEmail = _chunkYYZ2U4WUjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkYYZ2U4WUjs.UserRoleAdd; exports.UserRolesList = _chunkYYZ2U4WUjs.UserRolesList; exports.UserSelector = _chunkYYZ2U4WUjs.UserSelector; exports.UsersList = _chunkYYZ2U4WUjs.UsersList; exports.UsersListByContentIds = _chunkYYZ2U4WUjs.UsersListByContentIds; exports.UsersListContainer = _chunkYYZ2U4WUjs.UsersListContainer; exports.badgeVariants = _chunkYYZ2U4WUjs.badgeVariants; exports.buttonVariants = _chunkYYZ2U4WUjs.buttonVariants; exports.cellComponent = _chunkYYZ2U4WUjs.cellComponent; exports.cellDate = _chunkYYZ2U4WUjs.cellDate; exports.cellId = _chunkYYZ2U4WUjs.cellId; exports.cellLink = _chunkYYZ2U4WUjs.cellLink; exports.cellUrl = _chunkYYZ2U4WUjs.cellUrl; exports.errorToast = _chunkYYZ2U4WUjs.errorToast; exports.generateNotificationData = _chunkYYZ2U4WUjs.generateNotificationData; exports.navigationMenuTriggerStyle = _chunkYYZ2U4WUjs.navigationMenuTriggerStyle; exports.tabsListVariants = _chunkYYZ2U4WUjs.tabsListVariants; exports.toggleVariants = _chunkYYZ2U4WUjs.toggleVariants; exports.triggerAssociationToast = _chunkYYZ2U4WUjs.triggerAssociationToast; exports.useCarousel = _chunkYYZ2U4WUjs.useCarousel; exports.useFileUpload = _chunkYYZ2U4WUjs.useFileUpload; exports.useSidebar = _chunkYYZ2U4WUjs.useSidebar;
|
|
718
758
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"],"names":[],"mappings":"AAAA;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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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/components/index.js"],"names":[],"mappings":"AAAA;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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B,gCAA6B;AAC7B;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,iwqBAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"}
|