@carlonicora/nextjs-jsonapi 2.2.3 → 2.4.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.
Files changed (92) hide show
  1. package/dist/{BlockNoteEditor-QTIDATPF.js → BlockNoteEditor-7WGCH2KB.js} +27 -26
  2. package/dist/BlockNoteEditor-7WGCH2KB.js.map +1 -0
  3. package/dist/{BlockNoteEditor-ADT6II2V.mjs → BlockNoteEditor-GWAV5ESO.mjs} +12 -11
  4. package/dist/BlockNoteEditor-GWAV5ESO.mjs.map +1 -0
  5. package/dist/billing/index.d.mts +40 -1
  6. package/dist/billing/index.d.ts +40 -1
  7. package/dist/billing/index.js +519 -462
  8. package/dist/billing/index.js.map +1 -1
  9. package/dist/billing/index.mjs +298 -241
  10. package/dist/billing/index.mjs.map +1 -1
  11. package/dist/{chunk-7DJOQTNN.mjs → chunk-3LVSA7IM.mjs} +2 -2
  12. package/dist/{chunk-F3BPNQDB.js → chunk-GYGMEDVS.js} +1135 -952
  13. package/dist/chunk-GYGMEDVS.js.map +1 -0
  14. package/dist/{chunk-DLTMYGLR.mjs → chunk-LCCRUWWY.mjs} +13 -1
  15. package/dist/chunk-LCCRUWWY.mjs.map +1 -0
  16. package/dist/{chunk-YEPE2HT6.mjs → chunk-M2EGUO2F.mjs} +2538 -2355
  17. package/dist/chunk-M2EGUO2F.mjs.map +1 -0
  18. package/dist/{chunk-LANOKEFZ.js → chunk-TOKHHZSP.js} +7 -7
  19. package/dist/{chunk-LANOKEFZ.js.map → chunk-TOKHHZSP.js.map} +1 -1
  20. package/dist/{chunk-KSU6CCW6.js → chunk-V66AZWPG.js} +14 -2
  21. package/dist/chunk-V66AZWPG.js.map +1 -0
  22. package/dist/client/index.d.mts +1 -1
  23. package/dist/client/index.d.ts +1 -1
  24. package/dist/client/index.js +4 -4
  25. package/dist/client/index.mjs +3 -3
  26. package/dist/components/index.d.mts +129 -4
  27. package/dist/components/index.d.ts +129 -4
  28. package/dist/components/index.js +16 -4
  29. package/dist/components/index.js.map +1 -1
  30. package/dist/components/index.mjs +15 -3
  31. package/dist/{content.fields-xH3TGvVk.d.mts → content.fields-1AlHDtDb.d.mts} +1 -0
  32. package/dist/{content.fields-xH3TGvVk.d.ts → content.fields-1AlHDtDb.d.ts} +1 -0
  33. package/dist/contexts/index.d.mts +22 -1
  34. package/dist/contexts/index.d.ts +22 -1
  35. package/dist/contexts/index.js +8 -4
  36. package/dist/contexts/index.js.map +1 -1
  37. package/dist/contexts/index.mjs +7 -3
  38. package/dist/core/index.d.mts +12 -2
  39. package/dist/core/index.d.ts +12 -2
  40. package/dist/core/index.js +4 -2
  41. package/dist/core/index.js.map +1 -1
  42. package/dist/core/index.mjs +3 -1
  43. package/dist/features/help/index.js +37 -37
  44. package/dist/features/help/index.mjs +3 -3
  45. package/dist/features/tokenusage/index.js +71 -71
  46. package/dist/features/tokenusage/index.mjs +3 -3
  47. package/dist/index.d.mts +2 -2
  48. package/dist/index.d.ts +2 -2
  49. package/dist/index.js +5 -3
  50. package/dist/index.js.map +1 -1
  51. package/dist/index.mjs +4 -2
  52. package/dist/server/index.js +3 -3
  53. package/dist/server/index.mjs +1 -1
  54. package/package.json +1 -1
  55. package/src/billing/index.ts +1 -0
  56. package/src/components/editors/BlockNoteEditor.tsx +12 -6
  57. package/src/components/index.ts +1 -0
  58. package/src/contexts/index.ts +1 -0
  59. package/src/features/administration/components/AdminIndexContainer.tsx +150 -0
  60. package/src/features/administration/components/__tests__/AdminIndexContainer.spec.tsx +96 -0
  61. package/src/features/administration/components/index.ts +1 -0
  62. package/src/features/administration/contexts/AdministrationContext.tsx +47 -0
  63. package/src/features/administration/contexts/index.ts +1 -0
  64. package/src/features/administration/data/admin-section.types.ts +30 -0
  65. package/src/features/administration/i18n-keys.ts +26 -0
  66. package/src/features/administration/index.ts +3 -0
  67. package/src/features/assistant/components/containers/AssistantPageContainer.tsx +8 -1
  68. package/src/features/billing/contexts/BillingContext.tsx +95 -0
  69. package/src/features/billing/contexts/index.ts +1 -0
  70. package/src/features/billing/index.ts +1 -0
  71. package/src/features/billing/stripe-product/components/containers/ProductsAdminContainer.tsx +39 -27
  72. package/src/features/billing/stripe-product/components/containers/ProductsAdminPageContainer.tsx +27 -0
  73. package/src/features/billing/stripe-product/components/containers/index.ts +1 -0
  74. package/src/features/company/components/containers/CompaniesListContainer.tsx +25 -0
  75. package/src/features/company/components/containers/index.ts +1 -0
  76. package/src/features/company/components/lists/CompaniesList.tsx +12 -1
  77. package/src/features/company/contexts/CompanyContext.tsx +13 -1
  78. package/src/features/company/data/entity-ai-status.ts +13 -0
  79. package/src/features/company/data/index.ts +1 -0
  80. package/src/features/user/components/containers/PlatformUsersContainer.tsx +23 -0
  81. package/src/features/user/components/containers/index.ts +1 -0
  82. package/src/features/user/components/lists/PlatformUsersList.tsx +45 -0
  83. package/src/features/user/components/lists/index.ts +1 -0
  84. package/src/features/user/data/user.fields.ts +1 -0
  85. package/src/features/user/hooks/useUserTableStructure.tsx +17 -0
  86. package/dist/BlockNoteEditor-ADT6II2V.mjs.map +0 -1
  87. package/dist/BlockNoteEditor-QTIDATPF.js.map +0 -1
  88. package/dist/chunk-DLTMYGLR.mjs.map +0 -1
  89. package/dist/chunk-F3BPNQDB.js.map +0 -1
  90. package/dist/chunk-KSU6CCW6.js.map +0 -1
  91. package/dist/chunk-YEPE2HT6.mjs.map +0 -1
  92. /package/dist/{chunk-7DJOQTNN.mjs.map → chunk-3LVSA7IM.mjs.map} +0 -0
@@ -483,14 +483,20 @@
483
483
 
484
484
 
485
485
 
486
- var _chunkF3BPNQDBjs = require('../chunk-F3BPNQDB.js');
487
- require('../chunk-LANOKEFZ.js');
488
486
 
489
487
 
490
488
 
491
489
 
492
490
 
493
- var _chunkKSU6CCW6js = require('../chunk-KSU6CCW6.js');
491
+
492
+ var _chunkGYGMEDVSjs = require('../chunk-GYGMEDVS.js');
493
+ require('../chunk-TOKHHZSP.js');
494
+
495
+
496
+
497
+
498
+
499
+ var _chunkV66AZWPGjs = require('../chunk-V66AZWPG.js');
494
500
  require('../chunk-LXKSUWAV.js');
495
501
  require('../chunk-IBS6NI7D.js');
496
502
  require('../chunk-FPO4DLZN.js');
@@ -991,5 +997,11 @@ require('../chunk-7QVYU63E.js');
991
997
 
992
998
 
993
999
 
994
- exports.AcceptInvitation = _chunkF3BPNQDBjs.AcceptInvitation; exports.Accordion = _chunkF3BPNQDBjs.Accordion; exports.AccordionContent = _chunkF3BPNQDBjs.AccordionContent; exports.AccordionItem = _chunkF3BPNQDBjs.AccordionItem; exports.AccordionTrigger = _chunkF3BPNQDBjs.AccordionTrigger; exports.ActivateAccount = _chunkF3BPNQDBjs.ActivateAccount; exports.AddUserToRole = _chunkF3BPNQDBjs.AddUserToRole; exports.AdminCompanyContainer = _chunkF3BPNQDBjs.AdminCompanyContainer; exports.AdminUsersList = _chunkF3BPNQDBjs.AdminUsersList; exports.Alert = _chunkF3BPNQDBjs.Alert; exports.AlertAction = _chunkF3BPNQDBjs.AlertAction; exports.AlertDescription = _chunkF3BPNQDBjs.AlertDescription; exports.AlertDialog = _chunkF3BPNQDBjs.AlertDialog; exports.AlertDialogAction = _chunkF3BPNQDBjs.AlertDialogAction; exports.AlertDialogCancel = _chunkF3BPNQDBjs.AlertDialogCancel; exports.AlertDialogContent = _chunkF3BPNQDBjs.AlertDialogContent; exports.AlertDialogDescription = _chunkF3BPNQDBjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkF3BPNQDBjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkF3BPNQDBjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkF3BPNQDBjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkF3BPNQDBjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkF3BPNQDBjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkF3BPNQDBjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkF3BPNQDBjs.AlertDialogTrigger; exports.AlertTitle = _chunkF3BPNQDBjs.AlertTitle; exports.AllUsersListContainer = _chunkF3BPNQDBjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkF3BPNQDBjs.AllowedUsersDetails; exports.ApprovalActionCard = _chunkF3BPNQDBjs.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunkF3BPNQDBjs.AssistantBlockNoteComposer; exports.AssistantContainer = _chunkF3BPNQDBjs.AssistantContainer; exports.AssistantContainerWithApprovals = _chunkF3BPNQDBjs.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunkF3BPNQDBjs.AssistantPageContainer; exports.AttributeElement = _chunkF3BPNQDBjs.AttributeElement; exports.AuthContainer = _chunkF3BPNQDBjs.AuthContainer; exports.Avatar = _chunkF3BPNQDBjs.Avatar; exports.AvatarBadge = _chunkF3BPNQDBjs.AvatarBadge; exports.AvatarFallback = _chunkF3BPNQDBjs.AvatarFallback; exports.AvatarGroup = _chunkF3BPNQDBjs.AvatarGroup; exports.AvatarGroupCount = _chunkF3BPNQDBjs.AvatarGroupCount; exports.AvatarImage = _chunkF3BPNQDBjs.AvatarImage; exports.BackupCodesDialog = _chunkF3BPNQDBjs.BackupCodesDialog; exports.Badge = _chunkF3BPNQDBjs.Badge; exports.BlockNoteEditorContainer = _chunkF3BPNQDBjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkF3BPNQDBjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkF3BPNQDBjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkF3BPNQDBjs.BlockNoteViewerContainer; exports.Board = _chunkF3BPNQDBjs.KanbanBoard; exports.Breadcrumb = _chunkF3BPNQDBjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkF3BPNQDBjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkF3BPNQDBjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkF3BPNQDBjs.BreadcrumbLink; exports.BreadcrumbList = _chunkF3BPNQDBjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkF3BPNQDBjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkF3BPNQDBjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkF3BPNQDBjs.BreadcrumbSeparator; exports.Button = _chunkF3BPNQDBjs.Button; exports.Calendar = _chunkF3BPNQDBjs.Calendar; exports.CalendarDayButton = _chunkF3BPNQDBjs.CalendarDayButton; exports.Card = _chunkF3BPNQDBjs.Card; exports.CardAction = _chunkF3BPNQDBjs.CardAction; exports.CardContent = _chunkF3BPNQDBjs.CardContent; exports.CardDescription = _chunkF3BPNQDBjs.CardDescription; exports.CardFooter = _chunkF3BPNQDBjs.CardFooter; exports.CardHeader = _chunkF3BPNQDBjs.CardHeader; exports.CardTitle = _chunkF3BPNQDBjs.CardTitle; exports.Carousel = _chunkF3BPNQDBjs.Carousel; exports.CarouselContent = _chunkF3BPNQDBjs.CarouselContent; exports.CarouselItem = _chunkF3BPNQDBjs.CarouselItem; exports.CarouselNext = _chunkF3BPNQDBjs.CarouselNext; exports.CarouselPrevious = _chunkF3BPNQDBjs.CarouselPrevious; exports.ChartContainer = _chunkF3BPNQDBjs.ChartContainer; exports.ChartLegend = _chunkF3BPNQDBjs.ChartLegend; exports.ChartLegendContent = _chunkF3BPNQDBjs.ChartLegendContent; exports.ChartStyle = _chunkF3BPNQDBjs.ChartStyle; exports.ChartTooltip = _chunkF3BPNQDBjs.ChartTooltip; exports.ChartTooltipContent = _chunkF3BPNQDBjs.ChartTooltipContent; exports.Checkbox = _chunkF3BPNQDBjs.Checkbox; exports.Collapsible = _chunkF3BPNQDBjs.Collapsible; exports.CollapsibleContent = _chunkF3BPNQDBjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkF3BPNQDBjs.CollapsibleTrigger; exports.Column = _chunkF3BPNQDBjs.KanbanColumn; exports.ColumnHandle = _chunkF3BPNQDBjs.KanbanColumnHandle; exports.Combobox = _chunkF3BPNQDBjs.Combobox; exports.ComboboxChip = _chunkF3BPNQDBjs.ComboboxChip; exports.ComboboxChips = _chunkF3BPNQDBjs.ComboboxChips; exports.ComboboxChipsInput = _chunkF3BPNQDBjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkF3BPNQDBjs.ComboboxCollection; exports.ComboboxContent = _chunkF3BPNQDBjs.ComboboxContent; exports.ComboboxEmpty = _chunkF3BPNQDBjs.ComboboxEmpty; exports.ComboboxGroup = _chunkF3BPNQDBjs.ComboboxGroup; exports.ComboboxInput = _chunkF3BPNQDBjs.ComboboxInput; exports.ComboboxItem = _chunkF3BPNQDBjs.ComboboxItem; exports.ComboboxLabel = _chunkF3BPNQDBjs.ComboboxLabel; exports.ComboboxList = _chunkF3BPNQDBjs.ComboboxList; exports.ComboboxSeparator = _chunkF3BPNQDBjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkF3BPNQDBjs.ComboboxTrigger; exports.ComboboxValue = _chunkF3BPNQDBjs.ComboboxValue; exports.Command = _chunkF3BPNQDBjs.Command; exports.CommandDialog = _chunkF3BPNQDBjs.CommandDialog; exports.CommandEmpty = _chunkF3BPNQDBjs.CommandEmpty; exports.CommandGroup = _chunkF3BPNQDBjs.CommandGroup; exports.CommandInput = _chunkF3BPNQDBjs.CommandInput; exports.CommandItem = _chunkF3BPNQDBjs.CommandItem; exports.CommandList = _chunkF3BPNQDBjs.CommandList; exports.CommandSeparator = _chunkF3BPNQDBjs.CommandSeparator; exports.CommandShortcut = _chunkF3BPNQDBjs.CommandShortcut; exports.CommonAddTrigger = _chunkF3BPNQDBjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkF3BPNQDBjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkF3BPNQDBjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkF3BPNQDBjs.CommonDeleter; exports.CommonEditorButtons = _chunkF3BPNQDBjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkF3BPNQDBjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkF3BPNQDBjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkF3BPNQDBjs.CommonEditorTrigger; exports.CompaniesList = _chunkF3BPNQDBjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkF3BPNQDBjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkF3BPNQDBjs.CompanyContainer; exports.CompanyContent = _chunkF3BPNQDBjs.CompanyContent; exports.CompanyDeleter = _chunkF3BPNQDBjs.CompanyDeleter; exports.CompanyDetails = _chunkF3BPNQDBjs.CompanyDetails; exports.CompanyEditor = _chunkF3BPNQDBjs.CompanyEditor; exports.CompanyUsersList = _chunkF3BPNQDBjs.CompanyUsersList; exports.ConfirmDialog = _chunkF3BPNQDBjs.ConfirmDialog; exports.ContentListGrid = _chunkF3BPNQDBjs.ContentListGrid; exports.ContentListTable = _chunkF3BPNQDBjs.ContentListTable; exports.ContentTableSearch = _chunkF3BPNQDBjs.ContentTableSearch; exports.ContentTitle = _chunkF3BPNQDBjs.ContentTitle; exports.ContentsList = _chunkF3BPNQDBjs.ContentsList; exports.ContentsListById = _chunkF3BPNQDBjs.ContentsListById; exports.ContextMenu = _chunkF3BPNQDBjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkF3BPNQDBjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkF3BPNQDBjs.ContextMenuContent; exports.ContextMenuGroup = _chunkF3BPNQDBjs.ContextMenuGroup; exports.ContextMenuItem = _chunkF3BPNQDBjs.ContextMenuItem; exports.ContextMenuLabel = _chunkF3BPNQDBjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkF3BPNQDBjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkF3BPNQDBjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkF3BPNQDBjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkF3BPNQDBjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkF3BPNQDBjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkF3BPNQDBjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkF3BPNQDBjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkF3BPNQDBjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkF3BPNQDBjs.ContextMenuTrigger; exports.ContributorsList = _chunkF3BPNQDBjs.ContributorsList; exports.Cookies = _chunkF3BPNQDBjs.Cookies; exports.CurrencyInput = _chunkF3BPNQDBjs.CurrencyInput; exports.DatePickerPopover = _chunkF3BPNQDBjs.DatePickerPopover; exports.DateRangeSelector = _chunkF3BPNQDBjs.DateRangeSelector; exports.DetailField = _chunkF3BPNQDBjs.DetailField; exports.Dialog = _chunkF3BPNQDBjs.Dialog; exports.DialogClose = _chunkF3BPNQDBjs.DialogClose; exports.DialogContent = _chunkF3BPNQDBjs.DialogContent; exports.DialogDescription = _chunkF3BPNQDBjs.DialogDescription; exports.DialogFooter = _chunkF3BPNQDBjs.DialogFooter; exports.DialogHeader = _chunkF3BPNQDBjs.DialogHeader; exports.DialogOverlay = _chunkF3BPNQDBjs.DialogOverlay; exports.DialogPortal = _chunkF3BPNQDBjs.DialogPortal; exports.DialogTitle = _chunkF3BPNQDBjs.DialogTitle; exports.DialogTrigger = _chunkF3BPNQDBjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkF3BPNQDBjs.DisableTwoFactorDialog; exports.Drawer = _chunkF3BPNQDBjs.Drawer; exports.DrawerClose = _chunkF3BPNQDBjs.DrawerClose; exports.DrawerContent = _chunkF3BPNQDBjs.DrawerContent; exports.DrawerDescription = _chunkF3BPNQDBjs.DrawerDescription; exports.DrawerFooter = _chunkF3BPNQDBjs.DrawerFooter; exports.DrawerHeader = _chunkF3BPNQDBjs.DrawerHeader; exports.DrawerOverlay = _chunkF3BPNQDBjs.DrawerOverlay; exports.DrawerPortal = _chunkF3BPNQDBjs.DrawerPortal; exports.DrawerTitle = _chunkF3BPNQDBjs.DrawerTitle; exports.DrawerTrigger = _chunkF3BPNQDBjs.DrawerTrigger; exports.DropdownMenu = _chunkF3BPNQDBjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkF3BPNQDBjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkF3BPNQDBjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkF3BPNQDBjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkF3BPNQDBjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkF3BPNQDBjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkF3BPNQDBjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkF3BPNQDBjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkF3BPNQDBjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkF3BPNQDBjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkF3BPNQDBjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkF3BPNQDBjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkF3BPNQDBjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkF3BPNQDBjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkF3BPNQDBjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkF3BPNQDBjs.EditableAvatar; exports.EditorSheet = _chunkF3BPNQDBjs.EditorSheet; exports.EmptyState = _chunkF3BPNQDBjs.EmptyState; exports.EntityAvatar = _chunkF3BPNQDBjs.EntityAvatar; exports.EntityHero = _chunkF3BPNQDBjs.EntityHero; exports.EntityHeroAvatar = _chunkF3BPNQDBjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunkF3BPNQDBjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkF3BPNQDBjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkF3BPNQDBjs.EntityMultiSelector; exports.EntitySection = _chunkF3BPNQDBjs.EntitySection; exports.EntitySelector = _chunkF3BPNQDBjs.EntitySelector; exports.ErrorDetails = _chunkF3BPNQDBjs.ErrorDetails; exports.Field = _chunkF3BPNQDBjs.Field; exports.FieldContent = _chunkF3BPNQDBjs.FieldContent; exports.FieldDescription = _chunkF3BPNQDBjs.FieldDescription; exports.FieldError = _chunkF3BPNQDBjs.FieldError; exports.FieldGroup = _chunkF3BPNQDBjs.FieldGroup; exports.FieldLabel = _chunkF3BPNQDBjs.FieldLabel; exports.FieldLegend = _chunkF3BPNQDBjs.FieldLegend; exports.FieldSeparator = _chunkF3BPNQDBjs.FieldSeparator; exports.FieldSet = _chunkF3BPNQDBjs.FieldSet; exports.FieldTitle = _chunkF3BPNQDBjs.FieldTitle; exports.FileInput = _chunkF3BPNQDBjs.FileInput; exports.FileUploader = _chunkF3BPNQDBjs.FileUploader; exports.FileUploaderContent = _chunkF3BPNQDBjs.FileUploaderContent; exports.FileUploaderItem = _chunkF3BPNQDBjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkF3BPNQDBjs.FiscalDataDisplay; exports.ForgotPassword = _chunkF3BPNQDBjs.ForgotPassword; exports.Form = _chunkF3BPNQDBjs.Form; exports.FormBlockNote = _chunkF3BPNQDBjs.FormBlockNote; exports.FormBody = _chunkF3BPNQDBjs.FormBody; exports.FormCheckbox = _chunkF3BPNQDBjs.FormCheckbox; exports.FormCol = _chunkF3BPNQDBjs.FormCol; exports.FormDate = _chunkF3BPNQDBjs.FormDate; exports.FormDateTime = _chunkF3BPNQDBjs.FormDateTime; exports.FormFeatures = _chunkF3BPNQDBjs.FormFeatures; exports.FormFieldWrapper = _chunkF3BPNQDBjs.FormFieldWrapper; exports.FormInput = _chunkF3BPNQDBjs.FormInput; exports.FormPassword = _chunkF3BPNQDBjs.FormPassword; exports.FormPlaceAutocomplete = _chunkF3BPNQDBjs.FormPlaceAutocomplete; exports.FormRoles = _chunkF3BPNQDBjs.FormRoles; exports.FormRow = _chunkF3BPNQDBjs.FormRow; exports.FormSection = _chunkF3BPNQDBjs.FormSection; exports.FormSelect = _chunkF3BPNQDBjs.FormSelect; exports.FormSlider = _chunkF3BPNQDBjs.FormSlider; exports.FormSwitch = _chunkF3BPNQDBjs.FormSwitch; exports.FormTextarea = _chunkF3BPNQDBjs.FormTextarea; exports.GdprConsentCheckbox = _chunkF3BPNQDBjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkF3BPNQDBjs.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkF3BPNQDBjs.HEADER_ROW_MIN_H; exports.Header = _chunkF3BPNQDBjs.Header; exports.HoverCard = _chunkF3BPNQDBjs.HoverCard; exports.HoverCardContent = _chunkF3BPNQDBjs.HoverCardContent; exports.HoverCardTrigger = _chunkF3BPNQDBjs.HoverCardTrigger; exports.HowToCommand = _chunkF3BPNQDBjs.HowToCommand; exports.HowToCommandViewer = _chunkF3BPNQDBjs.HowToCommandViewer; exports.HowToContainer = _chunkF3BPNQDBjs.HowToContainer; exports.HowToContent = _chunkF3BPNQDBjs.HowToContent; exports.HowToDeleter = _chunkF3BPNQDBjs.HowToDeleter; exports.HowToDetails = _chunkF3BPNQDBjs.HowToDetails; exports.HowToEditor = _chunkF3BPNQDBjs.HowToEditor; exports.HowToList = _chunkF3BPNQDBjs.HowToList; exports.HowToListContainer = _chunkF3BPNQDBjs.HowToListContainer; exports.HowToMultiSelector = _chunkF3BPNQDBjs.HowToMultiSelector; exports.HowToSelector = _chunkF3BPNQDBjs.HowToSelector; exports.Input = _chunkF3BPNQDBjs.Input; exports.InputGroup = _chunkF3BPNQDBjs.InputGroup; exports.InputGroupAddon = _chunkF3BPNQDBjs.InputGroupAddon; exports.InputGroupButton = _chunkF3BPNQDBjs.InputGroupButton; exports.InputGroupInput = _chunkF3BPNQDBjs.InputGroupInput; exports.InputGroupText = _chunkF3BPNQDBjs.InputGroupText; exports.InputGroupTextarea = _chunkF3BPNQDBjs.InputGroupTextarea; exports.InputOTP = _chunkF3BPNQDBjs.InputOTP; exports.InputOTPGroup = _chunkF3BPNQDBjs.InputOTPGroup; exports.InputOTPSeparator = _chunkF3BPNQDBjs.InputOTPSeparator; exports.InputOTPSlot = _chunkF3BPNQDBjs.InputOTPSlot; exports.ItalianFiscalData = _chunkF3BPNQDBjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkF3BPNQDBjs.ItalianFiscalDataDisplay; exports.Item = _chunkF3BPNQDBjs.KanbanItem; exports.ItemHandle = _chunkF3BPNQDBjs.KanbanItemHandle; exports.Kanban = _chunkF3BPNQDBjs.KanbanRoot; exports.KanbanBoard = _chunkF3BPNQDBjs.KanbanBoard; exports.KanbanColumn = _chunkF3BPNQDBjs.KanbanColumn; exports.KanbanColumnHandle = _chunkF3BPNQDBjs.KanbanColumnHandle; exports.KanbanItem = _chunkF3BPNQDBjs.KanbanItem; exports.KanbanItemHandle = _chunkF3BPNQDBjs.KanbanItemHandle; exports.KanbanOverlay = _chunkF3BPNQDBjs.KanbanOverlay; exports.Label = _chunkF3BPNQDBjs.Label; exports.LandingComponent = _chunkF3BPNQDBjs.LandingComponent; exports.Link = _chunkF3BPNQDBjs.Link; exports.Login = _chunkF3BPNQDBjs.Login; exports.Logout = _chunkF3BPNQDBjs.Logout; exports.MessageItem = _chunkF3BPNQDBjs.MessageItem; exports.MessageList = _chunkF3BPNQDBjs.MessageList; exports.MessageSourcesPanel = _chunkF3BPNQDBjs.MessageSourcesPanel; exports.MicroLabel = _chunkF3BPNQDBjs.MicroLabel; exports.MobileNavigationBar = _chunkF3BPNQDBjs.MobileNavigationBar; exports.ModeToggleSwitch = _chunkF3BPNQDBjs.ModeToggleSwitch; exports.MultiSelect = _chunkF3BPNQDBjs.MultiSelect; exports.MultipleSelector = _chunkF3BPNQDBjs.MultipleSelector; exports.NavigationMenu = _chunkF3BPNQDBjs.NavigationMenu; exports.NavigationMenuContent = _chunkF3BPNQDBjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkF3BPNQDBjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkF3BPNQDBjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkF3BPNQDBjs.NavigationMenuLink; exports.NavigationMenuList = _chunkF3BPNQDBjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkF3BPNQDBjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkF3BPNQDBjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkF3BPNQDBjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkF3BPNQDBjs.NotificationMenuItem; exports.NotificationModal = _chunkF3BPNQDBjs.NotificationModal; exports.NotificationToast = _chunkF3BPNQDBjs.NotificationToast; exports.NotificationsList = _chunkF3BPNQDBjs.NotificationsList; exports.NotificationsListContainer = _chunkF3BPNQDBjs.NotificationsListContainer; exports.OAuthClientCard = _chunkF3BPNQDBjs.OAuthClientCard; exports.OAuthClientDetail = _chunkF3BPNQDBjs.OAuthClientDetail; exports.OAuthClientForm = _chunkF3BPNQDBjs.OAuthClientForm; exports.OAuthClientList = _chunkF3BPNQDBjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkF3BPNQDBjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkF3BPNQDBjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkF3BPNQDBjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkF3BPNQDBjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkF3BPNQDBjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkF3BPNQDBjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkF3BPNQDBjs.OAuthScopeSelector; exports.OnboardingCard = _chunkF3BPNQDBjs.OnboardingCard; exports.Overlay = _chunkF3BPNQDBjs.KanbanOverlay; exports.PageContainer = _chunkF3BPNQDBjs.PageContainer; exports.PageContainerContentDetails = _chunkF3BPNQDBjs.PageContainerContentDetails; exports.PageContentContainer = _chunkF3BPNQDBjs.PageContentContainer; exports.PageSection = _chunkF3BPNQDBjs.PageSection; exports.PasskeyButton = _chunkF3BPNQDBjs.PasskeyButton; exports.PasskeyList = _chunkF3BPNQDBjs.PasskeyList; exports.PasskeySetupDialog = _chunkF3BPNQDBjs.PasskeySetupDialog; exports.PasswordInput = _chunkF3BPNQDBjs.PasswordInput; exports.Popover = _chunkF3BPNQDBjs.Popover; exports.PopoverContent = _chunkF3BPNQDBjs.PopoverContent; exports.PopoverDescription = _chunkF3BPNQDBjs.PopoverDescription; exports.PopoverHeader = _chunkF3BPNQDBjs.PopoverHeader; exports.PopoverTitle = _chunkF3BPNQDBjs.PopoverTitle; exports.PopoverTrigger = _chunkF3BPNQDBjs.PopoverTrigger; exports.Progress = _chunkF3BPNQDBjs.Progress; exports.ProgressIndicator = _chunkF3BPNQDBjs.ProgressIndicator; exports.ProgressLabel = _chunkF3BPNQDBjs.ProgressLabel; exports.ProgressTrack = _chunkF3BPNQDBjs.ProgressTrack; exports.ProgressValue = _chunkF3BPNQDBjs.ProgressValue; exports.PushNotificationProvider = _chunkF3BPNQDBjs.PushNotificationProvider; exports.RadioGroup = _chunkF3BPNQDBjs.RadioGroup; exports.RadioGroupItem = _chunkF3BPNQDBjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkF3BPNQDBjs.RbacByRoleContainer; exports.RbacContainer = _chunkF3BPNQDBjs.RbacContainer; exports.RbacPermissionCell = _chunkF3BPNQDBjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkF3BPNQDBjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkF3BPNQDBjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkF3BPNQDBjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkF3BPNQDBjs.ReferralCodeCapture; exports.ReferralDialog = _chunkF3BPNQDBjs.ReferralDialog; exports.ReferralWidget = _chunkF3BPNQDBjs.ReferralWidget; exports.RefreshUser = _chunkF3BPNQDBjs.RefreshUser; exports.RelevantContentsList = _chunkF3BPNQDBjs.RelevantContentsList; exports.RelevantUsersList = _chunkF3BPNQDBjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkF3BPNQDBjs.RemoveUserFromRole; exports.ResetPassword = _chunkF3BPNQDBjs.ResetPassword; exports.ResizableHandle = _chunkF3BPNQDBjs.ResizableHandle; exports.ResizablePanel = _chunkF3BPNQDBjs.ResizablePanel; exports.ResizablePanelGroup = _chunkF3BPNQDBjs.ResizablePanelGroup; exports.RoleContainer = _chunkF3BPNQDBjs.RoleContainer; exports.RoleDetails = _chunkF3BPNQDBjs.RoleDetails; exports.RoleUsersList = _chunkF3BPNQDBjs.RoleUsersList; exports.RolesList = _chunkF3BPNQDBjs.RolesList; exports.Root = _chunkF3BPNQDBjs.KanbanRoot; exports.RoundPageContainer = _chunkF3BPNQDBjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkF3BPNQDBjs.RoundPageContainerTitle; exports.ScrollArea = _chunkF3BPNQDBjs.ScrollArea; exports.ScrollBar = _chunkF3BPNQDBjs.ScrollBar; exports.SectionHeader = _chunkF3BPNQDBjs.SectionHeader; exports.SecurityContainer = _chunkF3BPNQDBjs.SecurityContainer; exports.Select = _chunkF3BPNQDBjs.Select; exports.SelectContent = _chunkF3BPNQDBjs.SelectContent; exports.SelectGroup = _chunkF3BPNQDBjs.SelectGroup; exports.SelectItem = _chunkF3BPNQDBjs.SelectItem; exports.SelectLabel = _chunkF3BPNQDBjs.SelectLabel; exports.SelectScrollDownButton = _chunkF3BPNQDBjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkF3BPNQDBjs.SelectScrollUpButton; exports.SelectSeparator = _chunkF3BPNQDBjs.SelectSeparator; exports.SelectTrigger = _chunkF3BPNQDBjs.SelectTrigger; exports.SelectValue = _chunkF3BPNQDBjs.SelectValue; exports.Separator = _chunkF3BPNQDBjs.Separator; exports.Sheet = _chunkF3BPNQDBjs.Sheet; exports.SheetClose = _chunkF3BPNQDBjs.SheetClose; exports.SheetContent = _chunkF3BPNQDBjs.SheetContent; exports.SheetDescription = _chunkF3BPNQDBjs.SheetDescription; exports.SheetFooter = _chunkF3BPNQDBjs.SheetFooter; exports.SheetHeader = _chunkF3BPNQDBjs.SheetHeader; exports.SheetTitle = _chunkF3BPNQDBjs.SheetTitle; exports.SheetTrigger = _chunkF3BPNQDBjs.SheetTrigger; exports.Sidebar = _chunkF3BPNQDBjs.Sidebar; exports.SidebarContent = _chunkF3BPNQDBjs.SidebarContent; exports.SidebarFooter = _chunkF3BPNQDBjs.SidebarFooter; exports.SidebarGroup = _chunkF3BPNQDBjs.SidebarGroup; exports.SidebarGroupAction = _chunkF3BPNQDBjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkF3BPNQDBjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkF3BPNQDBjs.SidebarGroupLabel; exports.SidebarHeader = _chunkF3BPNQDBjs.SidebarHeader; exports.SidebarInput = _chunkF3BPNQDBjs.SidebarInput; exports.SidebarInset = _chunkF3BPNQDBjs.SidebarInset; exports.SidebarMenu = _chunkF3BPNQDBjs.SidebarMenu; exports.SidebarMenuAction = _chunkF3BPNQDBjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkF3BPNQDBjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkF3BPNQDBjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkF3BPNQDBjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkF3BPNQDBjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkF3BPNQDBjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkF3BPNQDBjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkF3BPNQDBjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkF3BPNQDBjs.SidebarProvider; exports.SidebarRail = _chunkF3BPNQDBjs.SidebarRail; exports.SidebarSeparator = _chunkF3BPNQDBjs.SidebarSeparator; exports.SidebarTrigger = _chunkF3BPNQDBjs.SidebarTrigger; exports.Skeleton = _chunkF3BPNQDBjs.Skeleton; exports.Slider = _chunkF3BPNQDBjs.Slider; exports.Spinner = _chunkF3BPNQDBjs.Spinner; exports.Switch = _chunkF3BPNQDBjs.Switch; exports.Table = _chunkF3BPNQDBjs.Table; exports.TableBody = _chunkF3BPNQDBjs.TableBody; exports.TableCaption = _chunkF3BPNQDBjs.TableCaption; exports.TableCell = _chunkF3BPNQDBjs.TableCell; exports.TableCellAvatar = _chunkF3BPNQDBjs.TableCellAvatar; exports.TableFooter = _chunkF3BPNQDBjs.TableFooter; exports.TableHead = _chunkF3BPNQDBjs.TableHead; exports.TableHeader = _chunkF3BPNQDBjs.TableHeader; exports.TableRow = _chunkF3BPNQDBjs.TableRow; exports.Tabs = _chunkF3BPNQDBjs.Tabs; exports.TabsContainer = _chunkF3BPNQDBjs.TabsContainer; exports.TabsContent = _chunkF3BPNQDBjs.TabsContent; exports.TabsList = _chunkF3BPNQDBjs.TabsList; exports.TabsTrigger = _chunkF3BPNQDBjs.TabsTrigger; exports.Textarea = _chunkF3BPNQDBjs.Textarea; exports.Toaster = _chunkF3BPNQDBjs.Toaster; exports.Toggle = _chunkF3BPNQDBjs.Toggle; exports.TokenStatusIndicator = _chunkF3BPNQDBjs.TokenStatusIndicator; exports.Tooltip = _chunkF3BPNQDBjs.Tooltip; exports.TooltipContent = _chunkF3BPNQDBjs.TooltipContent; exports.TooltipProvider = _chunkF3BPNQDBjs.TooltipProvider; exports.TooltipTrigger = _chunkF3BPNQDBjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkF3BPNQDBjs.TotpAuthenticatorList; exports.TotpInput = _chunkF3BPNQDBjs.TotpInput; exports.TotpSetupDialog = _chunkF3BPNQDBjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkF3BPNQDBjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkF3BPNQDBjs.TwoFactorSettings; exports.UserAvatar = _chunkF3BPNQDBjs.UserAvatar; exports.UserAvatarEditor = _chunkF3BPNQDBjs.UserAvatarEditor; exports.UserAvatarList = _chunkF3BPNQDBjs.UserAvatarList; exports.UserContainer = _chunkF3BPNQDBjs.UserContainer; exports.UserContent = _chunkF3BPNQDBjs.UserContent; exports.UserDeleter = _chunkF3BPNQDBjs.UserDeleter; exports.UserEditor = _chunkF3BPNQDBjs.UserEditor; exports.UserIndexContainer = _chunkF3BPNQDBjs.UserIndexContainer; exports.UserIndexDetails = _chunkF3BPNQDBjs.UserIndexDetails; exports.UserListInAdd = _chunkF3BPNQDBjs.UserListInAdd; exports.UserMultiSelect = _chunkF3BPNQDBjs.UserMultiSelect; exports.UserReactivator = _chunkF3BPNQDBjs.UserReactivator; exports.UserResentInvitationEmail = _chunkF3BPNQDBjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkF3BPNQDBjs.UserRoleAdd; exports.UserRolesList = _chunkF3BPNQDBjs.UserRolesList; exports.UserSearchPopover = _chunkF3BPNQDBjs.UserSearchPopover; exports.UserSelector = _chunkF3BPNQDBjs.UserSelector; exports.UserStanadaloneDetails = _chunkF3BPNQDBjs.UserStanadaloneDetails; exports.UsersList = _chunkF3BPNQDBjs.UsersList; exports.UsersListByContentIds = _chunkF3BPNQDBjs.UsersListByContentIds; exports.UsersListContainer = _chunkF3BPNQDBjs.UsersListContainer; exports.WaitlistConfirmation = _chunkF3BPNQDBjs.WaitlistConfirmation; exports.WaitlistForm = _chunkF3BPNQDBjs.WaitlistForm; exports.WaitlistHeroSection = _chunkF3BPNQDBjs.WaitlistHeroSection; exports.WaitlistList = _chunkF3BPNQDBjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkF3BPNQDBjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkF3BPNQDBjs.WaitlistSuccessState; exports.badgeVariants = _chunkF3BPNQDBjs.badgeVariants; exports.buttonVariants = _chunkF3BPNQDBjs.buttonVariants; exports.cellComponent = _chunkF3BPNQDBjs.cellComponent; exports.cellDate = _chunkF3BPNQDBjs.cellDate; exports.cellDateTime = _chunkF3BPNQDBjs.cellDateTime; exports.cellId = _chunkF3BPNQDBjs.cellId; exports.cellLink = _chunkF3BPNQDBjs.cellLink; exports.cellUrl = _chunkF3BPNQDBjs.cellUrl; exports.createMentionInlineContentSpec = _chunkF3BPNQDBjs.createMentionInlineContentSpec; exports.errorToast = _chunkF3BPNQDBjs.errorToast; exports.generateNotificationData = _chunkF3BPNQDBjs.generateNotificationData; exports.getIcon = _chunkKSU6CCW6js.getIcon; exports.getIconByModule = _chunkKSU6CCW6js.getIconByModule; exports.getIconByModuleName = _chunkKSU6CCW6js.getIconByModuleName; exports.getInitials = _chunkKSU6CCW6js.getInitials; exports.mentionDataAttrs = _chunkF3BPNQDBjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkF3BPNQDBjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkF3BPNQDBjs.parseFiscalData; exports.parseMentionElement = _chunkF3BPNQDBjs.parseMentionElement; exports.partitionTabs = _chunkF3BPNQDBjs.partitionTabs; exports.spinnerVariants = _chunkF3BPNQDBjs.spinnerVariants; exports.tabsListVariants = _chunkF3BPNQDBjs.tabsListVariants; exports.toggleVariants = _chunkF3BPNQDBjs.toggleVariants; exports.triggerAssociationToast = _chunkF3BPNQDBjs.triggerAssociationToast; exports.useCarousel = _chunkF3BPNQDBjs.useCarousel; exports.useComboboxAnchor = _chunkF3BPNQDBjs.useComboboxAnchor; exports.useDebounce = _chunkF3BPNQDBjs.useDebounce2; exports.useEditorDialog = _chunkF3BPNQDBjs.useEditorDialog; exports.useFileUpload = _chunkF3BPNQDBjs.useFileUpload; exports.useMentionInsert = _chunkF3BPNQDBjs.useMentionInsert; exports.useSidebar = _chunkF3BPNQDBjs.useSidebar;
1000
+
1001
+
1002
+
1003
+
1004
+
1005
+
1006
+ exports.ADMINISTRATION_I18N_KEYS = _chunkGYGMEDVSjs.ADMINISTRATION_I18N_KEYS; exports.AcceptInvitation = _chunkGYGMEDVSjs.AcceptInvitation; exports.Accordion = _chunkGYGMEDVSjs.Accordion; exports.AccordionContent = _chunkGYGMEDVSjs.AccordionContent; exports.AccordionItem = _chunkGYGMEDVSjs.AccordionItem; exports.AccordionTrigger = _chunkGYGMEDVSjs.AccordionTrigger; exports.ActivateAccount = _chunkGYGMEDVSjs.ActivateAccount; exports.AddUserToRole = _chunkGYGMEDVSjs.AddUserToRole; exports.AdminCompanyContainer = _chunkGYGMEDVSjs.AdminCompanyContainer; exports.AdminIndexContainer = _chunkGYGMEDVSjs.AdminIndexContainer; exports.AdminIndexGrid = _chunkGYGMEDVSjs.AdminIndexGrid; exports.AdminUsersList = _chunkGYGMEDVSjs.AdminUsersList; exports.Alert = _chunkGYGMEDVSjs.Alert; exports.AlertAction = _chunkGYGMEDVSjs.AlertAction; exports.AlertDescription = _chunkGYGMEDVSjs.AlertDescription; exports.AlertDialog = _chunkGYGMEDVSjs.AlertDialog; exports.AlertDialogAction = _chunkGYGMEDVSjs.AlertDialogAction; exports.AlertDialogCancel = _chunkGYGMEDVSjs.AlertDialogCancel; exports.AlertDialogContent = _chunkGYGMEDVSjs.AlertDialogContent; exports.AlertDialogDescription = _chunkGYGMEDVSjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkGYGMEDVSjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkGYGMEDVSjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkGYGMEDVSjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkGYGMEDVSjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkGYGMEDVSjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkGYGMEDVSjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkGYGMEDVSjs.AlertDialogTrigger; exports.AlertTitle = _chunkGYGMEDVSjs.AlertTitle; exports.AllUsersListContainer = _chunkGYGMEDVSjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkGYGMEDVSjs.AllowedUsersDetails; exports.ApprovalActionCard = _chunkGYGMEDVSjs.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunkGYGMEDVSjs.AssistantBlockNoteComposer; exports.AssistantContainer = _chunkGYGMEDVSjs.AssistantContainer; exports.AssistantContainerWithApprovals = _chunkGYGMEDVSjs.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunkGYGMEDVSjs.AssistantPageContainer; exports.AttributeElement = _chunkGYGMEDVSjs.AttributeElement; exports.AuthContainer = _chunkGYGMEDVSjs.AuthContainer; exports.Avatar = _chunkGYGMEDVSjs.Avatar; exports.AvatarBadge = _chunkGYGMEDVSjs.AvatarBadge; exports.AvatarFallback = _chunkGYGMEDVSjs.AvatarFallback; exports.AvatarGroup = _chunkGYGMEDVSjs.AvatarGroup; exports.AvatarGroupCount = _chunkGYGMEDVSjs.AvatarGroupCount; exports.AvatarImage = _chunkGYGMEDVSjs.AvatarImage; exports.BackupCodesDialog = _chunkGYGMEDVSjs.BackupCodesDialog; exports.Badge = _chunkGYGMEDVSjs.Badge; exports.BlockNoteEditorContainer = _chunkGYGMEDVSjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkGYGMEDVSjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkGYGMEDVSjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkGYGMEDVSjs.BlockNoteViewerContainer; exports.Board = _chunkGYGMEDVSjs.KanbanBoard; exports.Breadcrumb = _chunkGYGMEDVSjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkGYGMEDVSjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkGYGMEDVSjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkGYGMEDVSjs.BreadcrumbLink; exports.BreadcrumbList = _chunkGYGMEDVSjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkGYGMEDVSjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkGYGMEDVSjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkGYGMEDVSjs.BreadcrumbSeparator; exports.Button = _chunkGYGMEDVSjs.Button; exports.Calendar = _chunkGYGMEDVSjs.Calendar; exports.CalendarDayButton = _chunkGYGMEDVSjs.CalendarDayButton; exports.Card = _chunkGYGMEDVSjs.Card; exports.CardAction = _chunkGYGMEDVSjs.CardAction; exports.CardContent = _chunkGYGMEDVSjs.CardContent; exports.CardDescription = _chunkGYGMEDVSjs.CardDescription; exports.CardFooter = _chunkGYGMEDVSjs.CardFooter; exports.CardHeader = _chunkGYGMEDVSjs.CardHeader; exports.CardTitle = _chunkGYGMEDVSjs.CardTitle; exports.Carousel = _chunkGYGMEDVSjs.Carousel; exports.CarouselContent = _chunkGYGMEDVSjs.CarouselContent; exports.CarouselItem = _chunkGYGMEDVSjs.CarouselItem; exports.CarouselNext = _chunkGYGMEDVSjs.CarouselNext; exports.CarouselPrevious = _chunkGYGMEDVSjs.CarouselPrevious; exports.ChartContainer = _chunkGYGMEDVSjs.ChartContainer; exports.ChartLegend = _chunkGYGMEDVSjs.ChartLegend; exports.ChartLegendContent = _chunkGYGMEDVSjs.ChartLegendContent; exports.ChartStyle = _chunkGYGMEDVSjs.ChartStyle; exports.ChartTooltip = _chunkGYGMEDVSjs.ChartTooltip; exports.ChartTooltipContent = _chunkGYGMEDVSjs.ChartTooltipContent; exports.Checkbox = _chunkGYGMEDVSjs.Checkbox; exports.Collapsible = _chunkGYGMEDVSjs.Collapsible; exports.CollapsibleContent = _chunkGYGMEDVSjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkGYGMEDVSjs.CollapsibleTrigger; exports.Column = _chunkGYGMEDVSjs.KanbanColumn; exports.ColumnHandle = _chunkGYGMEDVSjs.KanbanColumnHandle; exports.Combobox = _chunkGYGMEDVSjs.Combobox; exports.ComboboxChip = _chunkGYGMEDVSjs.ComboboxChip; exports.ComboboxChips = _chunkGYGMEDVSjs.ComboboxChips; exports.ComboboxChipsInput = _chunkGYGMEDVSjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkGYGMEDVSjs.ComboboxCollection; exports.ComboboxContent = _chunkGYGMEDVSjs.ComboboxContent; exports.ComboboxEmpty = _chunkGYGMEDVSjs.ComboboxEmpty; exports.ComboboxGroup = _chunkGYGMEDVSjs.ComboboxGroup; exports.ComboboxInput = _chunkGYGMEDVSjs.ComboboxInput; exports.ComboboxItem = _chunkGYGMEDVSjs.ComboboxItem; exports.ComboboxLabel = _chunkGYGMEDVSjs.ComboboxLabel; exports.ComboboxList = _chunkGYGMEDVSjs.ComboboxList; exports.ComboboxSeparator = _chunkGYGMEDVSjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkGYGMEDVSjs.ComboboxTrigger; exports.ComboboxValue = _chunkGYGMEDVSjs.ComboboxValue; exports.Command = _chunkGYGMEDVSjs.Command; exports.CommandDialog = _chunkGYGMEDVSjs.CommandDialog; exports.CommandEmpty = _chunkGYGMEDVSjs.CommandEmpty; exports.CommandGroup = _chunkGYGMEDVSjs.CommandGroup; exports.CommandInput = _chunkGYGMEDVSjs.CommandInput; exports.CommandItem = _chunkGYGMEDVSjs.CommandItem; exports.CommandList = _chunkGYGMEDVSjs.CommandList; exports.CommandSeparator = _chunkGYGMEDVSjs.CommandSeparator; exports.CommandShortcut = _chunkGYGMEDVSjs.CommandShortcut; exports.CommonAddTrigger = _chunkGYGMEDVSjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkGYGMEDVSjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkGYGMEDVSjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkGYGMEDVSjs.CommonDeleter; exports.CommonEditorButtons = _chunkGYGMEDVSjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkGYGMEDVSjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkGYGMEDVSjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkGYGMEDVSjs.CommonEditorTrigger; exports.CompaniesList = _chunkGYGMEDVSjs.CompaniesList; exports.CompaniesListContainer = _chunkGYGMEDVSjs.CompaniesListContainer; exports.CompanyConfigurationEditor = _chunkGYGMEDVSjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkGYGMEDVSjs.CompanyContainer; exports.CompanyContent = _chunkGYGMEDVSjs.CompanyContent; exports.CompanyDeleter = _chunkGYGMEDVSjs.CompanyDeleter; exports.CompanyDetails = _chunkGYGMEDVSjs.CompanyDetails; exports.CompanyEditor = _chunkGYGMEDVSjs.CompanyEditor; exports.CompanyUsersList = _chunkGYGMEDVSjs.CompanyUsersList; exports.ConfirmDialog = _chunkGYGMEDVSjs.ConfirmDialog; exports.ContentListGrid = _chunkGYGMEDVSjs.ContentListGrid; exports.ContentListTable = _chunkGYGMEDVSjs.ContentListTable; exports.ContentTableSearch = _chunkGYGMEDVSjs.ContentTableSearch; exports.ContentTitle = _chunkGYGMEDVSjs.ContentTitle; exports.ContentsList = _chunkGYGMEDVSjs.ContentsList; exports.ContentsListById = _chunkGYGMEDVSjs.ContentsListById; exports.ContextMenu = _chunkGYGMEDVSjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkGYGMEDVSjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkGYGMEDVSjs.ContextMenuContent; exports.ContextMenuGroup = _chunkGYGMEDVSjs.ContextMenuGroup; exports.ContextMenuItem = _chunkGYGMEDVSjs.ContextMenuItem; exports.ContextMenuLabel = _chunkGYGMEDVSjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkGYGMEDVSjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkGYGMEDVSjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkGYGMEDVSjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkGYGMEDVSjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkGYGMEDVSjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkGYGMEDVSjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkGYGMEDVSjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkGYGMEDVSjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkGYGMEDVSjs.ContextMenuTrigger; exports.ContributorsList = _chunkGYGMEDVSjs.ContributorsList; exports.Cookies = _chunkGYGMEDVSjs.Cookies; exports.CurrencyInput = _chunkGYGMEDVSjs.CurrencyInput; exports.DatePickerPopover = _chunkGYGMEDVSjs.DatePickerPopover; exports.DateRangeSelector = _chunkGYGMEDVSjs.DateRangeSelector; exports.DetailField = _chunkGYGMEDVSjs.DetailField; exports.Dialog = _chunkGYGMEDVSjs.Dialog; exports.DialogClose = _chunkGYGMEDVSjs.DialogClose; exports.DialogContent = _chunkGYGMEDVSjs.DialogContent; exports.DialogDescription = _chunkGYGMEDVSjs.DialogDescription; exports.DialogFooter = _chunkGYGMEDVSjs.DialogFooter; exports.DialogHeader = _chunkGYGMEDVSjs.DialogHeader; exports.DialogOverlay = _chunkGYGMEDVSjs.DialogOverlay; exports.DialogPortal = _chunkGYGMEDVSjs.DialogPortal; exports.DialogTitle = _chunkGYGMEDVSjs.DialogTitle; exports.DialogTrigger = _chunkGYGMEDVSjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkGYGMEDVSjs.DisableTwoFactorDialog; exports.Drawer = _chunkGYGMEDVSjs.Drawer; exports.DrawerClose = _chunkGYGMEDVSjs.DrawerClose; exports.DrawerContent = _chunkGYGMEDVSjs.DrawerContent; exports.DrawerDescription = _chunkGYGMEDVSjs.DrawerDescription; exports.DrawerFooter = _chunkGYGMEDVSjs.DrawerFooter; exports.DrawerHeader = _chunkGYGMEDVSjs.DrawerHeader; exports.DrawerOverlay = _chunkGYGMEDVSjs.DrawerOverlay; exports.DrawerPortal = _chunkGYGMEDVSjs.DrawerPortal; exports.DrawerTitle = _chunkGYGMEDVSjs.DrawerTitle; exports.DrawerTrigger = _chunkGYGMEDVSjs.DrawerTrigger; exports.DropdownMenu = _chunkGYGMEDVSjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkGYGMEDVSjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkGYGMEDVSjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkGYGMEDVSjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkGYGMEDVSjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkGYGMEDVSjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkGYGMEDVSjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkGYGMEDVSjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkGYGMEDVSjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkGYGMEDVSjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkGYGMEDVSjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkGYGMEDVSjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkGYGMEDVSjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkGYGMEDVSjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkGYGMEDVSjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkGYGMEDVSjs.EditableAvatar; exports.EditorSheet = _chunkGYGMEDVSjs.EditorSheet; exports.EmptyState = _chunkGYGMEDVSjs.EmptyState; exports.EntityAvatar = _chunkGYGMEDVSjs.EntityAvatar; exports.EntityHero = _chunkGYGMEDVSjs.EntityHero; exports.EntityHeroAvatar = _chunkGYGMEDVSjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunkGYGMEDVSjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkGYGMEDVSjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkGYGMEDVSjs.EntityMultiSelector; exports.EntitySection = _chunkGYGMEDVSjs.EntitySection; exports.EntitySelector = _chunkGYGMEDVSjs.EntitySelector; exports.ErrorDetails = _chunkGYGMEDVSjs.ErrorDetails; exports.Field = _chunkGYGMEDVSjs.Field; exports.FieldContent = _chunkGYGMEDVSjs.FieldContent; exports.FieldDescription = _chunkGYGMEDVSjs.FieldDescription; exports.FieldError = _chunkGYGMEDVSjs.FieldError; exports.FieldGroup = _chunkGYGMEDVSjs.FieldGroup; exports.FieldLabel = _chunkGYGMEDVSjs.FieldLabel; exports.FieldLegend = _chunkGYGMEDVSjs.FieldLegend; exports.FieldSeparator = _chunkGYGMEDVSjs.FieldSeparator; exports.FieldSet = _chunkGYGMEDVSjs.FieldSet; exports.FieldTitle = _chunkGYGMEDVSjs.FieldTitle; exports.FileInput = _chunkGYGMEDVSjs.FileInput; exports.FileUploader = _chunkGYGMEDVSjs.FileUploader; exports.FileUploaderContent = _chunkGYGMEDVSjs.FileUploaderContent; exports.FileUploaderItem = _chunkGYGMEDVSjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkGYGMEDVSjs.FiscalDataDisplay; exports.ForgotPassword = _chunkGYGMEDVSjs.ForgotPassword; exports.Form = _chunkGYGMEDVSjs.Form; exports.FormBlockNote = _chunkGYGMEDVSjs.FormBlockNote; exports.FormBody = _chunkGYGMEDVSjs.FormBody; exports.FormCheckbox = _chunkGYGMEDVSjs.FormCheckbox; exports.FormCol = _chunkGYGMEDVSjs.FormCol; exports.FormDate = _chunkGYGMEDVSjs.FormDate; exports.FormDateTime = _chunkGYGMEDVSjs.FormDateTime; exports.FormFeatures = _chunkGYGMEDVSjs.FormFeatures; exports.FormFieldWrapper = _chunkGYGMEDVSjs.FormFieldWrapper; exports.FormInput = _chunkGYGMEDVSjs.FormInput; exports.FormPassword = _chunkGYGMEDVSjs.FormPassword; exports.FormPlaceAutocomplete = _chunkGYGMEDVSjs.FormPlaceAutocomplete; exports.FormRoles = _chunkGYGMEDVSjs.FormRoles; exports.FormRow = _chunkGYGMEDVSjs.FormRow; exports.FormSection = _chunkGYGMEDVSjs.FormSection; exports.FormSelect = _chunkGYGMEDVSjs.FormSelect; exports.FormSlider = _chunkGYGMEDVSjs.FormSlider; exports.FormSwitch = _chunkGYGMEDVSjs.FormSwitch; exports.FormTextarea = _chunkGYGMEDVSjs.FormTextarea; exports.GdprConsentCheckbox = _chunkGYGMEDVSjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkGYGMEDVSjs.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkGYGMEDVSjs.HEADER_ROW_MIN_H; exports.Header = _chunkGYGMEDVSjs.Header; exports.HoverCard = _chunkGYGMEDVSjs.HoverCard; exports.HoverCardContent = _chunkGYGMEDVSjs.HoverCardContent; exports.HoverCardTrigger = _chunkGYGMEDVSjs.HoverCardTrigger; exports.HowToCommand = _chunkGYGMEDVSjs.HowToCommand; exports.HowToCommandViewer = _chunkGYGMEDVSjs.HowToCommandViewer; exports.HowToContainer = _chunkGYGMEDVSjs.HowToContainer; exports.HowToContent = _chunkGYGMEDVSjs.HowToContent; exports.HowToDeleter = _chunkGYGMEDVSjs.HowToDeleter; exports.HowToDetails = _chunkGYGMEDVSjs.HowToDetails; exports.HowToEditor = _chunkGYGMEDVSjs.HowToEditor; exports.HowToList = _chunkGYGMEDVSjs.HowToList; exports.HowToListContainer = _chunkGYGMEDVSjs.HowToListContainer; exports.HowToMultiSelector = _chunkGYGMEDVSjs.HowToMultiSelector; exports.HowToSelector = _chunkGYGMEDVSjs.HowToSelector; exports.Input = _chunkGYGMEDVSjs.Input; exports.InputGroup = _chunkGYGMEDVSjs.InputGroup; exports.InputGroupAddon = _chunkGYGMEDVSjs.InputGroupAddon; exports.InputGroupButton = _chunkGYGMEDVSjs.InputGroupButton; exports.InputGroupInput = _chunkGYGMEDVSjs.InputGroupInput; exports.InputGroupText = _chunkGYGMEDVSjs.InputGroupText; exports.InputGroupTextarea = _chunkGYGMEDVSjs.InputGroupTextarea; exports.InputOTP = _chunkGYGMEDVSjs.InputOTP; exports.InputOTPGroup = _chunkGYGMEDVSjs.InputOTPGroup; exports.InputOTPSeparator = _chunkGYGMEDVSjs.InputOTPSeparator; exports.InputOTPSlot = _chunkGYGMEDVSjs.InputOTPSlot; exports.ItalianFiscalData = _chunkGYGMEDVSjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkGYGMEDVSjs.ItalianFiscalDataDisplay; exports.Item = _chunkGYGMEDVSjs.KanbanItem; exports.ItemHandle = _chunkGYGMEDVSjs.KanbanItemHandle; exports.Kanban = _chunkGYGMEDVSjs.KanbanRoot; exports.KanbanBoard = _chunkGYGMEDVSjs.KanbanBoard; exports.KanbanColumn = _chunkGYGMEDVSjs.KanbanColumn; exports.KanbanColumnHandle = _chunkGYGMEDVSjs.KanbanColumnHandle; exports.KanbanItem = _chunkGYGMEDVSjs.KanbanItem; exports.KanbanItemHandle = _chunkGYGMEDVSjs.KanbanItemHandle; exports.KanbanOverlay = _chunkGYGMEDVSjs.KanbanOverlay; exports.Label = _chunkGYGMEDVSjs.Label; exports.LandingComponent = _chunkGYGMEDVSjs.LandingComponent; exports.Link = _chunkGYGMEDVSjs.Link; exports.Login = _chunkGYGMEDVSjs.Login; exports.Logout = _chunkGYGMEDVSjs.Logout; exports.MessageItem = _chunkGYGMEDVSjs.MessageItem; exports.MessageList = _chunkGYGMEDVSjs.MessageList; exports.MessageSourcesPanel = _chunkGYGMEDVSjs.MessageSourcesPanel; exports.MicroLabel = _chunkGYGMEDVSjs.MicroLabel; exports.MobileNavigationBar = _chunkGYGMEDVSjs.MobileNavigationBar; exports.ModeToggleSwitch = _chunkGYGMEDVSjs.ModeToggleSwitch; exports.MultiSelect = _chunkGYGMEDVSjs.MultiSelect; exports.MultipleSelector = _chunkGYGMEDVSjs.MultipleSelector; exports.NavigationMenu = _chunkGYGMEDVSjs.NavigationMenu; exports.NavigationMenuContent = _chunkGYGMEDVSjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkGYGMEDVSjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkGYGMEDVSjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkGYGMEDVSjs.NavigationMenuLink; exports.NavigationMenuList = _chunkGYGMEDVSjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkGYGMEDVSjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkGYGMEDVSjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkGYGMEDVSjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkGYGMEDVSjs.NotificationMenuItem; exports.NotificationModal = _chunkGYGMEDVSjs.NotificationModal; exports.NotificationToast = _chunkGYGMEDVSjs.NotificationToast; exports.NotificationsList = _chunkGYGMEDVSjs.NotificationsList; exports.NotificationsListContainer = _chunkGYGMEDVSjs.NotificationsListContainer; exports.OAuthClientCard = _chunkGYGMEDVSjs.OAuthClientCard; exports.OAuthClientDetail = _chunkGYGMEDVSjs.OAuthClientDetail; exports.OAuthClientForm = _chunkGYGMEDVSjs.OAuthClientForm; exports.OAuthClientList = _chunkGYGMEDVSjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkGYGMEDVSjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkGYGMEDVSjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkGYGMEDVSjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkGYGMEDVSjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkGYGMEDVSjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkGYGMEDVSjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkGYGMEDVSjs.OAuthScopeSelector; exports.OnboardingCard = _chunkGYGMEDVSjs.OnboardingCard; exports.Overlay = _chunkGYGMEDVSjs.KanbanOverlay; exports.PageContainer = _chunkGYGMEDVSjs.PageContainer; exports.PageContainerContentDetails = _chunkGYGMEDVSjs.PageContainerContentDetails; exports.PageContentContainer = _chunkGYGMEDVSjs.PageContentContainer; exports.PageSection = _chunkGYGMEDVSjs.PageSection; exports.PasskeyButton = _chunkGYGMEDVSjs.PasskeyButton; exports.PasskeyList = _chunkGYGMEDVSjs.PasskeyList; exports.PasskeySetupDialog = _chunkGYGMEDVSjs.PasskeySetupDialog; exports.PasswordInput = _chunkGYGMEDVSjs.PasswordInput; exports.PlatformUsersContainer = _chunkGYGMEDVSjs.PlatformUsersContainer; exports.PlatformUsersList = _chunkGYGMEDVSjs.PlatformUsersList; exports.Popover = _chunkGYGMEDVSjs.Popover; exports.PopoverContent = _chunkGYGMEDVSjs.PopoverContent; exports.PopoverDescription = _chunkGYGMEDVSjs.PopoverDescription; exports.PopoverHeader = _chunkGYGMEDVSjs.PopoverHeader; exports.PopoverTitle = _chunkGYGMEDVSjs.PopoverTitle; exports.PopoverTrigger = _chunkGYGMEDVSjs.PopoverTrigger; exports.Progress = _chunkGYGMEDVSjs.Progress; exports.ProgressIndicator = _chunkGYGMEDVSjs.ProgressIndicator; exports.ProgressLabel = _chunkGYGMEDVSjs.ProgressLabel; exports.ProgressTrack = _chunkGYGMEDVSjs.ProgressTrack; exports.ProgressValue = _chunkGYGMEDVSjs.ProgressValue; exports.PushNotificationProvider = _chunkGYGMEDVSjs.PushNotificationProvider; exports.RadioGroup = _chunkGYGMEDVSjs.RadioGroup; exports.RadioGroupItem = _chunkGYGMEDVSjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkGYGMEDVSjs.RbacByRoleContainer; exports.RbacContainer = _chunkGYGMEDVSjs.RbacContainer; exports.RbacPermissionCell = _chunkGYGMEDVSjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkGYGMEDVSjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkGYGMEDVSjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkGYGMEDVSjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkGYGMEDVSjs.ReferralCodeCapture; exports.ReferralDialog = _chunkGYGMEDVSjs.ReferralDialog; exports.ReferralWidget = _chunkGYGMEDVSjs.ReferralWidget; exports.RefreshUser = _chunkGYGMEDVSjs.RefreshUser; exports.RelevantContentsList = _chunkGYGMEDVSjs.RelevantContentsList; exports.RelevantUsersList = _chunkGYGMEDVSjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkGYGMEDVSjs.RemoveUserFromRole; exports.ResetPassword = _chunkGYGMEDVSjs.ResetPassword; exports.ResizableHandle = _chunkGYGMEDVSjs.ResizableHandle; exports.ResizablePanel = _chunkGYGMEDVSjs.ResizablePanel; exports.ResizablePanelGroup = _chunkGYGMEDVSjs.ResizablePanelGroup; exports.RoleContainer = _chunkGYGMEDVSjs.RoleContainer; exports.RoleDetails = _chunkGYGMEDVSjs.RoleDetails; exports.RoleUsersList = _chunkGYGMEDVSjs.RoleUsersList; exports.RolesList = _chunkGYGMEDVSjs.RolesList; exports.Root = _chunkGYGMEDVSjs.KanbanRoot; exports.RoundPageContainer = _chunkGYGMEDVSjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkGYGMEDVSjs.RoundPageContainerTitle; exports.ScrollArea = _chunkGYGMEDVSjs.ScrollArea; exports.ScrollBar = _chunkGYGMEDVSjs.ScrollBar; exports.SectionHeader = _chunkGYGMEDVSjs.SectionHeader; exports.SecurityContainer = _chunkGYGMEDVSjs.SecurityContainer; exports.Select = _chunkGYGMEDVSjs.Select; exports.SelectContent = _chunkGYGMEDVSjs.SelectContent; exports.SelectGroup = _chunkGYGMEDVSjs.SelectGroup; exports.SelectItem = _chunkGYGMEDVSjs.SelectItem; exports.SelectLabel = _chunkGYGMEDVSjs.SelectLabel; exports.SelectScrollDownButton = _chunkGYGMEDVSjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkGYGMEDVSjs.SelectScrollUpButton; exports.SelectSeparator = _chunkGYGMEDVSjs.SelectSeparator; exports.SelectTrigger = _chunkGYGMEDVSjs.SelectTrigger; exports.SelectValue = _chunkGYGMEDVSjs.SelectValue; exports.Separator = _chunkGYGMEDVSjs.Separator; exports.Sheet = _chunkGYGMEDVSjs.Sheet; exports.SheetClose = _chunkGYGMEDVSjs.SheetClose; exports.SheetContent = _chunkGYGMEDVSjs.SheetContent; exports.SheetDescription = _chunkGYGMEDVSjs.SheetDescription; exports.SheetFooter = _chunkGYGMEDVSjs.SheetFooter; exports.SheetHeader = _chunkGYGMEDVSjs.SheetHeader; exports.SheetTitle = _chunkGYGMEDVSjs.SheetTitle; exports.SheetTrigger = _chunkGYGMEDVSjs.SheetTrigger; exports.Sidebar = _chunkGYGMEDVSjs.Sidebar; exports.SidebarContent = _chunkGYGMEDVSjs.SidebarContent; exports.SidebarFooter = _chunkGYGMEDVSjs.SidebarFooter; exports.SidebarGroup = _chunkGYGMEDVSjs.SidebarGroup; exports.SidebarGroupAction = _chunkGYGMEDVSjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkGYGMEDVSjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkGYGMEDVSjs.SidebarGroupLabel; exports.SidebarHeader = _chunkGYGMEDVSjs.SidebarHeader; exports.SidebarInput = _chunkGYGMEDVSjs.SidebarInput; exports.SidebarInset = _chunkGYGMEDVSjs.SidebarInset; exports.SidebarMenu = _chunkGYGMEDVSjs.SidebarMenu; exports.SidebarMenuAction = _chunkGYGMEDVSjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkGYGMEDVSjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkGYGMEDVSjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkGYGMEDVSjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkGYGMEDVSjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkGYGMEDVSjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkGYGMEDVSjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkGYGMEDVSjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkGYGMEDVSjs.SidebarProvider; exports.SidebarRail = _chunkGYGMEDVSjs.SidebarRail; exports.SidebarSeparator = _chunkGYGMEDVSjs.SidebarSeparator; exports.SidebarTrigger = _chunkGYGMEDVSjs.SidebarTrigger; exports.Skeleton = _chunkGYGMEDVSjs.Skeleton; exports.Slider = _chunkGYGMEDVSjs.Slider; exports.Spinner = _chunkGYGMEDVSjs.Spinner; exports.Switch = _chunkGYGMEDVSjs.Switch; exports.Table = _chunkGYGMEDVSjs.Table; exports.TableBody = _chunkGYGMEDVSjs.TableBody; exports.TableCaption = _chunkGYGMEDVSjs.TableCaption; exports.TableCell = _chunkGYGMEDVSjs.TableCell; exports.TableCellAvatar = _chunkGYGMEDVSjs.TableCellAvatar; exports.TableFooter = _chunkGYGMEDVSjs.TableFooter; exports.TableHead = _chunkGYGMEDVSjs.TableHead; exports.TableHeader = _chunkGYGMEDVSjs.TableHeader; exports.TableRow = _chunkGYGMEDVSjs.TableRow; exports.Tabs = _chunkGYGMEDVSjs.Tabs; exports.TabsContainer = _chunkGYGMEDVSjs.TabsContainer; exports.TabsContent = _chunkGYGMEDVSjs.TabsContent; exports.TabsList = _chunkGYGMEDVSjs.TabsList; exports.TabsTrigger = _chunkGYGMEDVSjs.TabsTrigger; exports.Textarea = _chunkGYGMEDVSjs.Textarea; exports.Toaster = _chunkGYGMEDVSjs.Toaster; exports.Toggle = _chunkGYGMEDVSjs.Toggle; exports.TokenStatusIndicator = _chunkGYGMEDVSjs.TokenStatusIndicator; exports.Tooltip = _chunkGYGMEDVSjs.Tooltip; exports.TooltipContent = _chunkGYGMEDVSjs.TooltipContent; exports.TooltipProvider = _chunkGYGMEDVSjs.TooltipProvider; exports.TooltipTrigger = _chunkGYGMEDVSjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkGYGMEDVSjs.TotpAuthenticatorList; exports.TotpInput = _chunkGYGMEDVSjs.TotpInput; exports.TotpSetupDialog = _chunkGYGMEDVSjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkGYGMEDVSjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkGYGMEDVSjs.TwoFactorSettings; exports.UserAvatar = _chunkGYGMEDVSjs.UserAvatar; exports.UserAvatarEditor = _chunkGYGMEDVSjs.UserAvatarEditor; exports.UserAvatarList = _chunkGYGMEDVSjs.UserAvatarList; exports.UserContainer = _chunkGYGMEDVSjs.UserContainer; exports.UserContent = _chunkGYGMEDVSjs.UserContent; exports.UserDeleter = _chunkGYGMEDVSjs.UserDeleter; exports.UserEditor = _chunkGYGMEDVSjs.UserEditor; exports.UserIndexContainer = _chunkGYGMEDVSjs.UserIndexContainer; exports.UserIndexDetails = _chunkGYGMEDVSjs.UserIndexDetails; exports.UserListInAdd = _chunkGYGMEDVSjs.UserListInAdd; exports.UserMultiSelect = _chunkGYGMEDVSjs.UserMultiSelect; exports.UserReactivator = _chunkGYGMEDVSjs.UserReactivator; exports.UserResentInvitationEmail = _chunkGYGMEDVSjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkGYGMEDVSjs.UserRoleAdd; exports.UserRolesList = _chunkGYGMEDVSjs.UserRolesList; exports.UserSearchPopover = _chunkGYGMEDVSjs.UserSearchPopover; exports.UserSelector = _chunkGYGMEDVSjs.UserSelector; exports.UserStanadaloneDetails = _chunkGYGMEDVSjs.UserStanadaloneDetails; exports.UsersList = _chunkGYGMEDVSjs.UsersList; exports.UsersListByContentIds = _chunkGYGMEDVSjs.UsersListByContentIds; exports.UsersListContainer = _chunkGYGMEDVSjs.UsersListContainer; exports.WaitlistConfirmation = _chunkGYGMEDVSjs.WaitlistConfirmation; exports.WaitlistForm = _chunkGYGMEDVSjs.WaitlistForm; exports.WaitlistHeroSection = _chunkGYGMEDVSjs.WaitlistHeroSection; exports.WaitlistList = _chunkGYGMEDVSjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkGYGMEDVSjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkGYGMEDVSjs.WaitlistSuccessState; exports.badgeVariants = _chunkGYGMEDVSjs.badgeVariants; exports.buttonVariants = _chunkGYGMEDVSjs.buttonVariants; exports.cellComponent = _chunkGYGMEDVSjs.cellComponent; exports.cellDate = _chunkGYGMEDVSjs.cellDate; exports.cellDateTime = _chunkGYGMEDVSjs.cellDateTime; exports.cellId = _chunkGYGMEDVSjs.cellId; exports.cellLink = _chunkGYGMEDVSjs.cellLink; exports.cellUrl = _chunkGYGMEDVSjs.cellUrl; exports.createMentionInlineContentSpec = _chunkGYGMEDVSjs.createMentionInlineContentSpec; exports.errorToast = _chunkGYGMEDVSjs.errorToast; exports.generateNotificationData = _chunkGYGMEDVSjs.generateNotificationData; exports.getIcon = _chunkV66AZWPGjs.getIcon; exports.getIconByModule = _chunkV66AZWPGjs.getIconByModule; exports.getIconByModuleName = _chunkV66AZWPGjs.getIconByModuleName; exports.getInitials = _chunkV66AZWPGjs.getInitials; exports.mentionDataAttrs = _chunkGYGMEDVSjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkGYGMEDVSjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkGYGMEDVSjs.parseFiscalData; exports.parseMentionElement = _chunkGYGMEDVSjs.parseMentionElement; exports.partitionTabs = _chunkGYGMEDVSjs.partitionTabs; exports.spinnerVariants = _chunkGYGMEDVSjs.spinnerVariants; exports.tabsListVariants = _chunkGYGMEDVSjs.tabsListVariants; exports.toggleVariants = _chunkGYGMEDVSjs.toggleVariants; exports.triggerAssociationToast = _chunkGYGMEDVSjs.triggerAssociationToast; exports.useCarousel = _chunkGYGMEDVSjs.useCarousel; exports.useComboboxAnchor = _chunkGYGMEDVSjs.useComboboxAnchor; exports.useDebounce = _chunkGYGMEDVSjs.useDebounce2; exports.useEditorDialog = _chunkGYGMEDVSjs.useEditorDialog; exports.useFileUpload = _chunkGYGMEDVSjs.useFileUpload; exports.useMentionInsert = _chunkGYGMEDVSjs.useMentionInsert; exports.useSidebar = _chunkGYGMEDVSjs.useSidebar;
995
1007
  //# 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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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;AACE;AACA;AACA;AACA;AACF,uDAA6B;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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,s14BAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"}
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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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;AACE;AACA;AACA;AACA;AACF,uDAA6B;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;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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,sv5BAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"}
@@ -1,5 +1,6 @@
1
1
  "use client";
2
2
  import {
3
+ ADMINISTRATION_I18N_KEYS,
3
4
  AcceptInvitation,
4
5
  Accordion,
5
6
  AccordionContent,
@@ -8,6 +9,8 @@ import {
8
9
  ActivateAccount,
9
10
  AddUserToRole,
10
11
  AdminCompanyContainer,
12
+ AdminIndexContainer,
13
+ AdminIndexGrid,
11
14
  AdminUsersList,
12
15
  Alert,
13
16
  AlertAction,
@@ -112,6 +115,7 @@ import {
112
115
  CommonEditorHeader,
113
116
  CommonEditorTrigger,
114
117
  CompaniesList,
118
+ CompaniesListContainer,
115
119
  CompanyConfigurationEditor,
116
120
  CompanyContainer,
117
121
  CompanyContent,
@@ -315,6 +319,8 @@ import {
315
319
  PasskeyList,
316
320
  PasskeySetupDialog,
317
321
  PasswordInput,
322
+ PlatformUsersContainer,
323
+ PlatformUsersList,
318
324
  Popover,
319
325
  PopoverContent,
320
326
  PopoverDescription,
@@ -483,20 +489,21 @@ import {
483
489
  useFileUpload,
484
490
  useMentionInsert,
485
491
  useSidebar
486
- } from "../chunk-YEPE2HT6.mjs";
487
- import "../chunk-7DJOQTNN.mjs";
492
+ } from "../chunk-M2EGUO2F.mjs";
493
+ import "../chunk-3LVSA7IM.mjs";
488
494
  import {
489
495
  getIcon,
490
496
  getIconByModule,
491
497
  getIconByModuleName,
492
498
  getInitials
493
- } from "../chunk-DLTMYGLR.mjs";
499
+ } from "../chunk-LCCRUWWY.mjs";
494
500
  import "../chunk-AUXK7QSA.mjs";
495
501
  import "../chunk-C7C7VY4F.mjs";
496
502
  import "../chunk-E5YA5Z5X.mjs";
497
503
  import "../chunk-VOXD3ZLY.mjs";
498
504
  import "../chunk-PAWJFY3S.mjs";
499
505
  export {
506
+ ADMINISTRATION_I18N_KEYS,
500
507
  AcceptInvitation,
501
508
  Accordion,
502
509
  AccordionContent,
@@ -505,6 +512,8 @@ export {
505
512
  ActivateAccount,
506
513
  AddUserToRole,
507
514
  AdminCompanyContainer,
515
+ AdminIndexContainer,
516
+ AdminIndexGrid,
508
517
  AdminUsersList,
509
518
  Alert,
510
519
  AlertAction,
@@ -612,6 +621,7 @@ export {
612
621
  CommonEditorHeader,
613
622
  CommonEditorTrigger,
614
623
  CompaniesList,
624
+ CompaniesListContainer,
615
625
  CompanyConfigurationEditor,
616
626
  CompanyContainer,
617
627
  CompanyContent,
@@ -818,6 +828,8 @@ export {
818
828
  PasskeyList,
819
829
  PasskeySetupDialog,
820
830
  PasswordInput,
831
+ PlatformUsersContainer,
832
+ PlatformUsersList,
821
833
  Popover,
822
834
  PopoverContent,
823
835
  PopoverDescription,
@@ -34,6 +34,7 @@ declare enum UserFields {
34
34
  userId = "userId",
35
35
  name = "name",
36
36
  email = "email",
37
+ company = "company",
37
38
  relevance = "relevance",
38
39
  createdAt = "createdAt",
39
40
  updatedAt = "updatedAt"
@@ -34,6 +34,7 @@ declare enum UserFields {
34
34
  userId = "userId",
35
35
  name = "name",
36
36
  email = "email",
37
+ company = "company",
37
38
  relevance = "relevance",
38
39
  createdAt = "createdAt",
39
40
  updatedAt = "updatedAt"
@@ -15,6 +15,27 @@ import * as jotai_utils from 'jotai/utils';
15
15
  import '../feature.interface-CXb1-vNq.mjs';
16
16
  import '../ApiRequestDataTypeInterface-CYEcRUrh.mjs';
17
17
 
18
+ interface AdministrationContextType {
19
+ }
20
+ type AdministrationProviderProps = {
21
+ children: ReactNode;
22
+ };
23
+ /**
24
+ * Supplies the page chrome for every administration surface.
25
+ *
26
+ * `RoundPageContainerTitle` and the header breadcrumb both read
27
+ * `useSharedContext()`, and that context is provided far up the tree by the
28
+ * layout — so an administration page that provides nothing of its own silently
29
+ * inherits whatever the *previously rendered* page put there (a company name, a
30
+ * "Notifications" title). Wrapping in this provider replaces that value, which
31
+ * is why every administration container mounts inside it.
32
+ *
33
+ * Mirrors CommonProvider (contexts/CommonContext.tsx), which does the same job
34
+ * for the ordinary application shell.
35
+ */
36
+ declare const AdministrationProvider: ({ children }: AdministrationProviderProps) => React.JSX.Element;
37
+ declare const useAdministrationContext: () => AdministrationContextType;
38
+
18
39
  interface CompanyContextType {
19
40
  company: CompanyInterface | undefined;
20
41
  setCompany: (value: CompanyInterface | undefined) => void;
@@ -396,4 +417,4 @@ interface RecentPage {
396
417
  }
397
418
  declare const recentPagesAtom: jotai.WritableAtom<RecentPage[], [typeof jotai_utils.RESET | RecentPage[] | ((prev: RecentPage[]) => typeof jotai_utils.RESET | RecentPage[])], void>;
398
419
 
399
- export { AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HeaderLogoProvider, HowToProvider, type MobileNavigationItem, MobileNavigationProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, ViewportProvider, recentPagesAtom, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHeaderLogo, useHeaderMobileChildren, useHeaderRootLabel, useHowToContext, useMobileNavigationItems, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
420
+ export { AdministrationProvider, AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HeaderLogoProvider, HowToProvider, type MobileNavigationItem, MobileNavigationProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, ViewportProvider, recentPagesAtom, useAdministrationContext, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHeaderLogo, useHeaderMobileChildren, useHeaderRootLabel, useHowToContext, useMobileNavigationItems, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
@@ -15,6 +15,27 @@ import * as jotai_utils from 'jotai/utils';
15
15
  import '../feature.interface-BO25VLlx.js';
16
16
  import '../ApiRequestDataTypeInterface-CYEcRUrh.js';
17
17
 
18
+ interface AdministrationContextType {
19
+ }
20
+ type AdministrationProviderProps = {
21
+ children: ReactNode;
22
+ };
23
+ /**
24
+ * Supplies the page chrome for every administration surface.
25
+ *
26
+ * `RoundPageContainerTitle` and the header breadcrumb both read
27
+ * `useSharedContext()`, and that context is provided far up the tree by the
28
+ * layout — so an administration page that provides nothing of its own silently
29
+ * inherits whatever the *previously rendered* page put there (a company name, a
30
+ * "Notifications" title). Wrapping in this provider replaces that value, which
31
+ * is why every administration container mounts inside it.
32
+ *
33
+ * Mirrors CommonProvider (contexts/CommonContext.tsx), which does the same job
34
+ * for the ordinary application shell.
35
+ */
36
+ declare const AdministrationProvider: ({ children }: AdministrationProviderProps) => React.JSX.Element;
37
+ declare const useAdministrationContext: () => AdministrationContextType;
38
+
18
39
  interface CompanyContextType {
19
40
  company: CompanyInterface | undefined;
20
41
  setCompany: (value: CompanyInterface | undefined) => void;
@@ -396,4 +417,4 @@ interface RecentPage {
396
417
  }
397
418
  declare const recentPagesAtom: jotai.WritableAtom<RecentPage[], [typeof jotai_utils.RESET | RecentPage[] | ((prev: RecentPage[]) => typeof jotai_utils.RESET | RecentPage[])], void>;
398
419
 
399
- export { AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HeaderLogoProvider, HowToProvider, type MobileNavigationItem, MobileNavigationProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, ViewportProvider, recentPagesAtom, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHeaderLogo, useHeaderMobileChildren, useHeaderRootLabel, useHowToContext, useMobileNavigationItems, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
420
+ export { AdministrationProvider, AssistantProvider, CommonProvider, CompanyProvider, type CurrentUserContextType, CurrentUserProvider, HeaderChildrenProvider, HeaderLeftContentProvider, HeaderLogoProvider, HowToProvider, type MobileNavigationItem, MobileNavigationProvider, NotificationContextProvider, OnboardingContextValue, OnboardingProvider, OnboardingProviderProps, RbacProvider, type RecentPage, RoleProvider, SharedProvider, SocketContext, SocketProvider, UserProvider, ViewportProvider, recentPagesAtom, useAdministrationContext, useAssistantContext, useCommonContext, useCompanyContext, useCurrentUserContext, useHeaderChildren, useHeaderLeftContent, useHeaderLogo, useHeaderMobileChildren, useHeaderRootLabel, useHowToContext, useMobileNavigationItems, useNotificationContext, useOnboarding, useRbacContext, useRoleContext, useSharedContext, useSocketContext, useUserContext };
@@ -38,9 +38,11 @@
38
38
 
39
39
 
40
40
 
41
- var _chunkF3BPNQDBjs = require('../chunk-F3BPNQDB.js');
42
- require('../chunk-LANOKEFZ.js');
43
- require('../chunk-KSU6CCW6.js');
41
+
42
+
43
+ var _chunkGYGMEDVSjs = require('../chunk-GYGMEDVS.js');
44
+ require('../chunk-TOKHHZSP.js');
45
+ require('../chunk-V66AZWPG.js');
44
46
  require('../chunk-LXKSUWAV.js');
45
47
  require('../chunk-IBS6NI7D.js');
46
48
  require('../chunk-FPO4DLZN.js');
@@ -85,5 +87,7 @@ require('../chunk-7QVYU63E.js');
85
87
 
86
88
 
87
89
 
88
- exports.AssistantProvider = _chunkF3BPNQDBjs.AssistantProvider; exports.CommonProvider = _chunkF3BPNQDBjs.CommonProvider; exports.CompanyProvider = _chunkF3BPNQDBjs.CompanyProvider; exports.CurrentUserProvider = _chunkF3BPNQDBjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkF3BPNQDBjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkF3BPNQDBjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkF3BPNQDBjs.HeaderLeftContentProvider; exports.HeaderLogoProvider = _chunkF3BPNQDBjs.HeaderLogoProvider; exports.HowToProvider = _chunkF3BPNQDBjs.HowToProvider; exports.MobileNavigationProvider = _chunkF3BPNQDBjs.MobileNavigationProvider; exports.NotificationContextProvider = _chunkF3BPNQDBjs.NotificationContextProvider; exports.OnboardingProvider = _chunkF3BPNQDBjs.OnboardingProvider; exports.RbacProvider = _chunkF3BPNQDBjs.RbacProvider; exports.RoleProvider = _chunkF3BPNQDBjs.RoleProvider; exports.SharedProvider = _chunkF3BPNQDBjs.SharedProvider; exports.SocketContext = _chunkF3BPNQDBjs.SocketContext; exports.SocketProvider = _chunkF3BPNQDBjs.SocketProvider; exports.UserProvider = _chunkF3BPNQDBjs.UserProvider; exports.ViewportProvider = _chunkF3BPNQDBjs.ViewportProvider; exports.recentPagesAtom = _chunkF3BPNQDBjs.recentPagesAtom; exports.useAssistantContext = _chunkF3BPNQDBjs.useAssistantContext; exports.useCommonContext = _chunkF3BPNQDBjs.useCommonContext; exports.useCompanyContext = _chunkF3BPNQDBjs.useCompanyContext; exports.useCurrentUserContext = _chunkF3BPNQDBjs.useCurrentUserContext; exports.useHeaderChildren = _chunkF3BPNQDBjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkF3BPNQDBjs.useHeaderLeftContent; exports.useHeaderLogo = _chunkF3BPNQDBjs.useHeaderLogo; exports.useHeaderMobileChildren = _chunkF3BPNQDBjs.useHeaderMobileChildren; exports.useHeaderRootLabel = _chunkF3BPNQDBjs.useHeaderRootLabel; exports.useHowToContext = _chunkF3BPNQDBjs.useHowToContext; exports.useMobileNavigationItems = _chunkF3BPNQDBjs.useMobileNavigationItems; exports.useNotificationContext = _chunkF3BPNQDBjs.useNotificationContext; exports.useOnboarding = _chunkF3BPNQDBjs.useOnboarding; exports.useRbacContext = _chunkF3BPNQDBjs.useRbacContext; exports.useRoleContext = _chunkF3BPNQDBjs.useRoleContext; exports.useSharedContext = _chunkF3BPNQDBjs.useSharedContext; exports.useSocketContext = _chunkF3BPNQDBjs.useSocketContext; exports.useUserContext = _chunkF3BPNQDBjs.useUserContext;
90
+
91
+
92
+ exports.AdministrationProvider = _chunkGYGMEDVSjs.AdministrationProvider; exports.AssistantProvider = _chunkGYGMEDVSjs.AssistantProvider; exports.CommonProvider = _chunkGYGMEDVSjs.CommonProvider; exports.CompanyProvider = _chunkGYGMEDVSjs.CompanyProvider; exports.CurrentUserProvider = _chunkGYGMEDVSjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkGYGMEDVSjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkGYGMEDVSjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkGYGMEDVSjs.HeaderLeftContentProvider; exports.HeaderLogoProvider = _chunkGYGMEDVSjs.HeaderLogoProvider; exports.HowToProvider = _chunkGYGMEDVSjs.HowToProvider; exports.MobileNavigationProvider = _chunkGYGMEDVSjs.MobileNavigationProvider; exports.NotificationContextProvider = _chunkGYGMEDVSjs.NotificationContextProvider; exports.OnboardingProvider = _chunkGYGMEDVSjs.OnboardingProvider; exports.RbacProvider = _chunkGYGMEDVSjs.RbacProvider; exports.RoleProvider = _chunkGYGMEDVSjs.RoleProvider; exports.SharedProvider = _chunkGYGMEDVSjs.SharedProvider; exports.SocketContext = _chunkGYGMEDVSjs.SocketContext; exports.SocketProvider = _chunkGYGMEDVSjs.SocketProvider; exports.UserProvider = _chunkGYGMEDVSjs.UserProvider; exports.ViewportProvider = _chunkGYGMEDVSjs.ViewportProvider; exports.recentPagesAtom = _chunkGYGMEDVSjs.recentPagesAtom; exports.useAdministrationContext = _chunkGYGMEDVSjs.useAdministrationContext; exports.useAssistantContext = _chunkGYGMEDVSjs.useAssistantContext; exports.useCommonContext = _chunkGYGMEDVSjs.useCommonContext; exports.useCompanyContext = _chunkGYGMEDVSjs.useCompanyContext; exports.useCurrentUserContext = _chunkGYGMEDVSjs.useCurrentUserContext; exports.useHeaderChildren = _chunkGYGMEDVSjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkGYGMEDVSjs.useHeaderLeftContent; exports.useHeaderLogo = _chunkGYGMEDVSjs.useHeaderLogo; exports.useHeaderMobileChildren = _chunkGYGMEDVSjs.useHeaderMobileChildren; exports.useHeaderRootLabel = _chunkGYGMEDVSjs.useHeaderRootLabel; exports.useHowToContext = _chunkGYGMEDVSjs.useHowToContext; exports.useMobileNavigationItems = _chunkGYGMEDVSjs.useMobileNavigationItems; exports.useNotificationContext = _chunkGYGMEDVSjs.useNotificationContext; exports.useOnboarding = _chunkGYGMEDVSjs.useOnboarding; exports.useRbacContext = _chunkGYGMEDVSjs.useRbacContext; exports.useRoleContext = _chunkGYGMEDVSjs.useRoleContext; exports.useSharedContext = _chunkGYGMEDVSjs.useSharedContext; exports.useSocketContext = _chunkGYGMEDVSjs.useSocketContext; exports.useUserContext = _chunkGYGMEDVSjs.useUserContext;
89
93
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/contexts/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;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;AACF,q5EAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/contexts/index.js"}
1
+ {"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/contexts/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;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;AACF,6iFAAC","file":"/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/contexts/index.js"}
@@ -1,5 +1,6 @@
1
1
  "use client";
2
2
  import {
3
+ AdministrationProvider,
3
4
  AssistantProvider,
4
5
  CommonProvider,
5
6
  CompanyProvider,
@@ -20,6 +21,7 @@ import {
20
21
  UserProvider,
21
22
  ViewportProvider,
22
23
  recentPagesAtom,
24
+ useAdministrationContext,
23
25
  useAssistantContext,
24
26
  useCommonContext,
25
27
  useCompanyContext,
@@ -38,15 +40,16 @@ import {
38
40
  useSharedContext,
39
41
  useSocketContext,
40
42
  useUserContext
41
- } from "../chunk-YEPE2HT6.mjs";
42
- import "../chunk-7DJOQTNN.mjs";
43
- import "../chunk-DLTMYGLR.mjs";
43
+ } from "../chunk-M2EGUO2F.mjs";
44
+ import "../chunk-3LVSA7IM.mjs";
45
+ import "../chunk-LCCRUWWY.mjs";
44
46
  import "../chunk-AUXK7QSA.mjs";
45
47
  import "../chunk-C7C7VY4F.mjs";
46
48
  import "../chunk-E5YA5Z5X.mjs";
47
49
  import "../chunk-VOXD3ZLY.mjs";
48
50
  import "../chunk-PAWJFY3S.mjs";
49
51
  export {
52
+ AdministrationProvider,
50
53
  AssistantProvider,
51
54
  CommonProvider,
52
55
  CompanyProvider,
@@ -67,6 +70,7 @@ export {
67
70
  UserProvider,
68
71
  ViewportProvider,
69
72
  recentPagesAtom,
73
+ useAdministrationContext,
70
74
  useAssistantContext,
71
75
  useCommonContext,
72
76
  useCompanyContext,
@@ -11,7 +11,7 @@ import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as Perm
11
11
  export { d as ModuleDefinition, c as ModulePermissionDefinition, P as PageUrl, b as PermissionCheck, e as PermissionConfig } from '../types-Bq_UA8Lg.mjs';
12
12
  import { a as HowToInterface, H as HowToInput, d as AssistantMessageInterface, A as AssistantMessageRole, e as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageType, c as AssistantMessageInput } from '../AssistantMessageInterface-Ce8FcllX.mjs';
13
13
  export { B as BreadcrumbItemData } from '../AssistantMessageInterface-Ce8FcllX.mjs';
14
- export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.mjs';
14
+ export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-1AlHDtDb.mjs';
15
15
  import { ClassValue } from 'clsx';
16
16
  export { ClassValue } from 'clsx';
17
17
  import * as React from 'react';
@@ -1735,6 +1735,16 @@ declare enum CompanyFields {
1735
1735
  updatedAt = "updatedAt"
1736
1736
  }
1737
1737
 
1738
+ declare const EntityAiStatus: {
1739
+ readonly Pending: "Pending";
1740
+ readonly Summarising: "Summarising";
1741
+ readonly Completed: "Completed";
1742
+ readonly Failed: "Failed";
1743
+ readonly PendingCredits: "PendingCredits";
1744
+ readonly Discarded: "Discarded";
1745
+ };
1746
+ type EntityAiStatus = (typeof EntityAiStatus)[keyof typeof EntityAiStatus];
1747
+
1738
1748
  declare const ContentModule: (factory: ModuleFactory) => ModuleWithPermissions;
1739
1749
 
1740
1750
  declare class Content extends AbstractApiData implements ContentInterface, SearchResultInterface {
@@ -2485,4 +2495,4 @@ declare class AuditLogService extends AbstractService {
2485
2495
 
2486
2496
  declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
2487
2497
 
2488
- export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
2498
+ export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, EntityAiStatus, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
@@ -11,7 +11,7 @@ import { M as ModuleWithPermissions, g as PermissionUser, A as Action, f as Perm
11
11
  export { d as ModuleDefinition, c as ModulePermissionDefinition, P as PageUrl, b as PermissionCheck, e as PermissionConfig } from '../types-bsm8Fp55.js';
12
12
  import { a as HowToInterface, H as HowToInput, d as AssistantMessageInterface, A as AssistantMessageRole, e as ChunkInterface, C as ChunkRelationshipMeta, b as AssistantMessageType, c as AssistantMessageInput } from '../AssistantMessageInterface-Dh0BpbP2.js';
13
13
  export { B as BreadcrumbItemData } from '../AssistantMessageInterface-Dh0BpbP2.js';
14
- export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-xH3TGvVk.js';
14
+ export { C as ContentFields, D as D3Link, a as D3Node, R as RoleFields, U as UserFields } from '../content.fields-1AlHDtDb.js';
15
15
  import { ClassValue } from 'clsx';
16
16
  export { ClassValue } from 'clsx';
17
17
  import * as React from 'react';
@@ -1735,6 +1735,16 @@ declare enum CompanyFields {
1735
1735
  updatedAt = "updatedAt"
1736
1736
  }
1737
1737
 
1738
+ declare const EntityAiStatus: {
1739
+ readonly Pending: "Pending";
1740
+ readonly Summarising: "Summarising";
1741
+ readonly Completed: "Completed";
1742
+ readonly Failed: "Failed";
1743
+ readonly PendingCredits: "PendingCredits";
1744
+ readonly Discarded: "Discarded";
1745
+ };
1746
+ type EntityAiStatus = (typeof EntityAiStatus)[keyof typeof EntityAiStatus];
1747
+
1738
1748
  declare const ContentModule: (factory: ModuleFactory) => ModuleWithPermissions;
1739
1749
 
1740
1750
  declare class Content extends AbstractApiData implements ContentInterface, SearchResultInterface {
@@ -2485,4 +2495,4 @@ declare class AuditLogService extends AbstractService {
2485
2495
 
2486
2496
  declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
2487
2497
 
2488
- export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
2498
+ export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, AssistantAction, type AssistantActionInput, type AssistantActionInterface, AssistantActionModule, AssistantActionService, type AssistantActionStatus, AssistantInput, AssistantInterface, AssistantMessage, AssistantMessageInput, AssistantMessageInterface, AssistantMessageModule, AssistantMessageRole, AssistantMessageService, AssistantMessageType, AssistantModule, AssistantService, AuditLog, type AuditLogInterface, AuditLogModule, AuditLogService, Auth, AuthInput, AuthInterface, AuthModule, AuthorModule, BackupCodeVerify, type BackupCodeVerifyInput, BackupCodeVerifyModule, Billing, BillingModule, BillingService, type BlockDiffOptions, BlockNoteDiffUtil, BlockNoteWordDiffRendererUtil, Chunk, type ChunkInput, ChunkInterface, ChunkModule, ChunkRelationshipMeta, ClientAbstractService, ClientHttpMethod, type ClientNextRef, type ClientPreviousRef, type ClientSelfRef, type ClientTotalRef, type CodiceFiscaleValidationOptions, Company, CompanyFields, CompanyInput, CompanyInterface, CompanyModule, Content, ContentInput, ContentInterface, ContentModule, DataClassRegistry as DataClass, DataClassRegistry, type DiffBlock, type DiffResult, EndpointCreator, type EndpointQuery, EntityAiStatus, type EntityObject, Feature, FeatureInterface, FeatureModule, FieldSelector, type FormatOption, type FoundationModuleDefinitions, HowTo, HowToFields, HowToInput, HowToInterface, HowToModule, HowToService, type InviteValidation, InvoiceStatus, JsonApiDataFactory, JsonApiHydratedDataInterface, MOBILE_BREAKPOINT, MeterInterface, MeterSummaryInterface, Module, type ModuleDefinitions, ModuleFactory, ModuleInterface, ModuleModule, ModulePathsModule, ModuleRegistrar, ModuleRegistry, ModuleWithPermissions, Modules, NextRef, Notification, NotificationFields, NotificationInput, NotificationInterface, NotificationModule, OAuthClient, OAuthClientCreateRequest, OAuthClientCreateResponse, OAuthClientInput, OAuthClientInterface, OAuthConsentInfo, OAuthConsentRequest, OAuthModule, OAuthService, Passkey, PasskeyAuthenticationOptions, type PasskeyAuthenticationOptionsInput, type PasskeyAuthenticationOptionsInterface, PasskeyAuthenticationOptionsModule, PasskeyInterface, PasskeyModule, PasskeyRegistrationOptions, type PasskeyRegistrationOptionsInput, type PasskeyRegistrationOptionsInterface, PasskeyRegistrationOptionsModule, PasskeyRegistrationVerify, type PasskeyRegistrationVerifyInput, PasskeyRegistrationVerifyModule, PasskeyRename, type PasskeyRenameInput, PasskeyRenameModule, PasskeyVerifyLogin, type PasskeyVerifyLoginInput, PasskeyVerifyLoginModule, PaymentMethod, PaymentMethodInterface, PermissionMappingModule, PermissionModule, PermissionUser, PreviousRef, PriceRecurring, PromotionCodeValidationResult, ProrationPreviewInterface, Push, type PushInput, type PushInterface, PushModule, RbacMatrixModule, ReferralModule, ReferralService, ReferralStats, ReferralStatsModule, RehydrationFactory, ReportUsageInput, Role, RoleInput, RoleInterface, RoleModule, S3, S3Input, S3Interface, S3Module, type SearchResultInterface, StripeCustomer, StripeCustomerInterface, StripeCustomerModule, StripeCustomerService, StripeInvoice, StripeInvoiceInterface, StripeInvoiceModule, StripeInvoiceService, StripePaymentMethodModule, StripePrice, StripePriceInput, StripePriceInterface, StripePriceModule, StripePriceService, StripeProduct, StripeProductInput, StripeProductInterface, StripeProductModule, StripeProductService, StripePromotionCode, StripePromotionCodeModule, StripePromotionCodeService, StripeSubscription, StripeSubscriptionCreateResponse, StripeSubscriptionInput, StripeSubscriptionInterface, StripeSubscriptionModule, StripeSubscriptionService, StripeUsage, StripeUsageInterface, StripeUsageModule, StripeUsageService, SubscriptionStatus, TableOptions, type ToastOptions, TotpAuthenticator, TotpAuthenticatorInterface, TotpAuthenticatorModule, TotpSetup, type TotpSetupInput, type TotpSetupInterface, TotpSetupModule, TotpVerify, type TotpVerifyInput, TotpVerifyLogin, type TotpVerifyLoginInput, TotpVerifyLoginModule, TotpVerifyModule, TwoFactorChallenge, type TwoFactorChallengeInput, TwoFactorChallengeInterface, TwoFactorChallengeModule, TwoFactorEnable, type TwoFactorEnableInput, TwoFactorEnableModule, TwoFactorService, TwoFactorStatus, type TwoFactorStatusInterface, TwoFactorStatusModule, UsageSummaryInterface, User, UserInput, UserInterface, UserModule, type UserObject, VIEWPORT_COOKIE_NAME, Waitlist, type WaitlistInput, type WaitlistInterface, WaitlistModule, WaitlistService, WaitlistStats, type WaitlistStatsInterface, WaitlistStatsModule, type WaitlistStatus, type WordDiff, checkPermissions, checkPermissionsFromServer, cn, composeRefs, dismissToast, entityObjectSchema, exists, formatCodiceFiscale, formatDate, formatLocalDate, formatPartitaIva, getBootstrapper, getClientGlobalErrorHandler, getTableComponents, getTableOptions, getValueFromPath, hasBootstrapper, isRemoteImageSrc, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };