@carlonicora/nextjs-jsonapi 2.0.2 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/AssistantInterface-DMh-zApr.d.mts +34 -0
- package/dist/AssistantInterface-DwdBzS9f.d.ts +34 -0
- package/dist/{BlockNoteEditor-4224DOTR.js → BlockNoteEditor-C5CYCS3I.js} +22 -20
- package/dist/BlockNoteEditor-C5CYCS3I.js.map +1 -0
- package/dist/{BlockNoteEditor-7NVXRTVR.mjs → BlockNoteEditor-NXDUGMP7.mjs} +7 -5
- package/dist/BlockNoteEditor-NXDUGMP7.mjs.map +1 -0
- package/dist/{BlockNoteViewer-UW5VZ5UF.js → BlockNoteViewer-6N2GQWTI.js} +4 -2
- package/dist/BlockNoteViewer-6N2GQWTI.js.map +1 -0
- package/dist/{BlockNoteViewer-OPSCTHKJ.mjs → BlockNoteViewer-IBQRJ3WM.mjs} +4 -2
- package/dist/BlockNoteViewer-IBQRJ3WM.mjs.map +1 -0
- package/dist/billing/index.js +357 -357
- package/dist/billing/index.mjs +3 -3
- package/dist/{chunk-DS4IBFWA.js → chunk-6YIZX26T.js} +185 -33
- package/dist/chunk-6YIZX26T.js.map +1 -0
- package/dist/{chunk-TESVH5PV.mjs → chunk-A7AGXKZX.mjs} +1100 -738
- package/dist/chunk-A7AGXKZX.mjs.map +1 -0
- package/dist/{chunk-QS5Y6ZBF.js → chunk-I3GHIU4Y.js} +1258 -896
- package/dist/chunk-I3GHIU4Y.js.map +1 -0
- package/dist/{chunk-UXJAS6C5.js → chunk-JG7MCYCW.js} +7 -7
- package/dist/{chunk-UXJAS6C5.js.map → chunk-JG7MCYCW.js.map} +1 -1
- package/dist/{chunk-HN5ED7OF.mjs → chunk-MAWTFEY3.mjs} +2 -2
- package/dist/{chunk-BIL2WQEV.mjs → chunk-P5TMD7GK.mjs} +158 -6
- package/dist/chunk-P5TMD7GK.mjs.map +1 -0
- package/dist/client/index.js +4 -4
- package/dist/client/index.mjs +3 -3
- package/dist/components/index.d.mts +102 -11
- package/dist/components/index.d.ts +102 -11
- package/dist/components/index.js +12 -4
- package/dist/components/index.js.map +1 -1
- package/dist/components/index.mjs +11 -3
- package/dist/contexts/index.d.mts +29 -3
- package/dist/contexts/index.d.ts +29 -3
- package/dist/contexts/index.js +4 -4
- package/dist/contexts/index.mjs +3 -3
- package/dist/core/index.d.mts +99 -2
- package/dist/core/index.d.ts +99 -2
- package/dist/core/index.js +8 -2
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +7 -1
- package/dist/features/help/index.js +37 -37
- package/dist/features/help/index.mjs +3 -3
- package/dist/features/tokenusage/index.js +71 -71
- package/dist/features/tokenusage/index.mjs +3 -3
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +9 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -2
- package/dist/server/index.js +3 -3
- package/dist/server/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/editors/BlockNoteEditor.tsx +5 -1
- package/src/components/editors/BlockNoteEditorSuggestionMenuController.tsx +14 -2
- package/src/components/index.ts +1 -0
- package/src/components/viewers/BlockNoteViewer.tsx +5 -1
- package/src/core/index.ts +2 -0
- package/src/core/registry/ModuleRegistry.ts +1 -0
- package/src/features/assistant/components/containers/AssistantPageContainer.tsx +123 -0
- package/src/features/assistant/components/index.ts +2 -0
- package/src/features/assistant/components/parts/AssistantBlockNoteComposer.tsx +135 -0
- package/src/features/assistant/components/parts/AssistantThread.tsx +4 -1
- package/src/features/assistant/contexts/AssistantContext.tsx +60 -13
- package/src/features/assistant/contexts/__tests__/AssistantContext.spec.tsx +81 -0
- package/src/features/assistant/data/Assistant.ts +29 -1
- package/src/features/assistant/data/AssistantInterface.ts +15 -0
- package/src/features/assistant/data/AssistantService.ts +19 -2
- package/src/features/assistant/data/__tests__/Assistant.scope.spec.ts +64 -0
- package/src/features/assistant-action/AssistantActionModule.ts +13 -0
- package/src/features/assistant-action/components/ApprovalActionCard.tsx +127 -0
- package/src/features/assistant-action/components/AssistantContainerWithApprovals.tsx +34 -0
- package/src/features/assistant-action/components/index.ts +2 -0
- package/src/features/assistant-action/data/AssistantAction.ts +58 -0
- package/src/features/assistant-action/data/AssistantActionInterface.ts +24 -0
- package/src/features/assistant-action/data/AssistantActionService.ts +51 -0
- package/src/features/assistant-action/data/__tests__/AssistantAction.spec.ts +171 -0
- package/src/features/assistant-action/data/index.ts +3 -0
- package/src/features/assistant-action/index.ts +2 -0
- package/src/features/assistant-message/components/MessageItem.tsx +57 -6
- package/src/features/assistant-message/components/MessageList.tsx +11 -2
- package/src/features/assistant-message/components/__tests__/MessageItem.mentions.spec.tsx +34 -0
- package/src/features/assistant-message/components/parts/MessageSourcesContainer.tsx +30 -13
- package/src/features/assistant-message/components/parts/tabs/CitationsTab.tsx +23 -5
- package/src/features/assistant-message/components/parts/tabs/ContentsTab.tsx +3 -1
- package/src/features/assistant-message/components/parts/tabs/ReferencesTab.tsx +4 -1
- package/src/features/assistant-message/components/parts/tabs/useEntityLabel.ts +35 -0
- package/src/features/assistant-message/data/AssistantMessage.ts +11 -2
- package/src/features/company/components/details/TokenStatusIndicator.tsx +19 -14
- package/src/features/index.ts +1 -0
- package/dist/AssistantInterface-B56qznuH.d.mts +0 -16
- package/dist/AssistantInterface-CHiJIYDY.d.ts +0 -16
- package/dist/BlockNoteEditor-4224DOTR.js.map +0 -1
- package/dist/BlockNoteEditor-7NVXRTVR.mjs.map +0 -1
- package/dist/BlockNoteViewer-OPSCTHKJ.mjs.map +0 -1
- package/dist/BlockNoteViewer-UW5VZ5UF.js.map +0 -1
- package/dist/chunk-BIL2WQEV.mjs.map +0 -1
- package/dist/chunk-DS4IBFWA.js.map +0 -1
- package/dist/chunk-QS5Y6ZBF.js.map +0 -1
- package/dist/chunk-TESVH5PV.mjs.map +0 -1
- /package/dist/{chunk-HN5ED7OF.mjs.map → chunk-MAWTFEY3.mjs.map} +0 -0
package/dist/components/index.js
CHANGED
|
@@ -479,14 +479,18 @@
|
|
|
479
479
|
|
|
480
480
|
|
|
481
481
|
|
|
482
|
-
var _chunkQS5Y6ZBFjs = require('../chunk-QS5Y6ZBF.js');
|
|
483
|
-
require('../chunk-UXJAS6C5.js');
|
|
484
482
|
|
|
485
483
|
|
|
486
484
|
|
|
487
485
|
|
|
486
|
+
var _chunkI3GHIU4Yjs = require('../chunk-I3GHIU4Y.js');
|
|
487
|
+
require('../chunk-JG7MCYCW.js');
|
|
488
488
|
|
|
489
|
-
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
var _chunk6YIZX26Tjs = require('../chunk-6YIZX26T.js');
|
|
490
494
|
require('../chunk-LXKSUWAV.js');
|
|
491
495
|
require('../chunk-IBS6NI7D.js');
|
|
492
496
|
require('../chunk-QWCAOLBD.js');
|
|
@@ -983,5 +987,9 @@ require('../chunk-7QVYU63E.js');
|
|
|
983
987
|
|
|
984
988
|
|
|
985
989
|
|
|
986
|
-
exports.AcceptInvitation = _chunkQS5Y6ZBFjs.AcceptInvitation; exports.Accordion = _chunkQS5Y6ZBFjs.Accordion; exports.AccordionContent = _chunkQS5Y6ZBFjs.AccordionContent; exports.AccordionItem = _chunkQS5Y6ZBFjs.AccordionItem; exports.AccordionTrigger = _chunkQS5Y6ZBFjs.AccordionTrigger; exports.ActivateAccount = _chunkQS5Y6ZBFjs.ActivateAccount; exports.AddUserToRole = _chunkQS5Y6ZBFjs.AddUserToRole; exports.AdminCompanyContainer = _chunkQS5Y6ZBFjs.AdminCompanyContainer; exports.AdminUsersList = _chunkQS5Y6ZBFjs.AdminUsersList; exports.Alert = _chunkQS5Y6ZBFjs.Alert; exports.AlertAction = _chunkQS5Y6ZBFjs.AlertAction; exports.AlertDescription = _chunkQS5Y6ZBFjs.AlertDescription; exports.AlertDialog = _chunkQS5Y6ZBFjs.AlertDialog; exports.AlertDialogAction = _chunkQS5Y6ZBFjs.AlertDialogAction; exports.AlertDialogCancel = _chunkQS5Y6ZBFjs.AlertDialogCancel; exports.AlertDialogContent = _chunkQS5Y6ZBFjs.AlertDialogContent; exports.AlertDialogDescription = _chunkQS5Y6ZBFjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkQS5Y6ZBFjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkQS5Y6ZBFjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkQS5Y6ZBFjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkQS5Y6ZBFjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkQS5Y6ZBFjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkQS5Y6ZBFjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkQS5Y6ZBFjs.AlertDialogTrigger; exports.AlertTitle = _chunkQS5Y6ZBFjs.AlertTitle; exports.AllUsersListContainer = _chunkQS5Y6ZBFjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkQS5Y6ZBFjs.AllowedUsersDetails; exports.AssistantContainer = _chunkQS5Y6ZBFjs.AssistantContainer; exports.AttributeElement = _chunkQS5Y6ZBFjs.AttributeElement; exports.AuthContainer = _chunkQS5Y6ZBFjs.AuthContainer; exports.Avatar = _chunkQS5Y6ZBFjs.Avatar; exports.AvatarBadge = _chunkQS5Y6ZBFjs.AvatarBadge; exports.AvatarFallback = _chunkQS5Y6ZBFjs.AvatarFallback; exports.AvatarGroup = _chunkQS5Y6ZBFjs.AvatarGroup; exports.AvatarGroupCount = _chunkQS5Y6ZBFjs.AvatarGroupCount; exports.AvatarImage = _chunkQS5Y6ZBFjs.AvatarImage; exports.BackupCodesDialog = _chunkQS5Y6ZBFjs.BackupCodesDialog; exports.Badge = _chunkQS5Y6ZBFjs.Badge; exports.BlockNoteEditorContainer = _chunkQS5Y6ZBFjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkQS5Y6ZBFjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkQS5Y6ZBFjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkQS5Y6ZBFjs.BlockNoteViewerContainer; exports.Board = _chunkQS5Y6ZBFjs.KanbanBoard; exports.Breadcrumb = _chunkQS5Y6ZBFjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkQS5Y6ZBFjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkQS5Y6ZBFjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkQS5Y6ZBFjs.BreadcrumbLink; exports.BreadcrumbList = _chunkQS5Y6ZBFjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkQS5Y6ZBFjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkQS5Y6ZBFjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkQS5Y6ZBFjs.BreadcrumbSeparator; exports.Button = _chunkQS5Y6ZBFjs.Button; exports.Calendar = _chunkQS5Y6ZBFjs.Calendar; exports.CalendarDayButton = _chunkQS5Y6ZBFjs.CalendarDayButton; exports.Card = _chunkQS5Y6ZBFjs.Card; exports.CardAction = _chunkQS5Y6ZBFjs.CardAction; exports.CardContent = _chunkQS5Y6ZBFjs.CardContent; exports.CardDescription = _chunkQS5Y6ZBFjs.CardDescription; exports.CardFooter = _chunkQS5Y6ZBFjs.CardFooter; exports.CardHeader = _chunkQS5Y6ZBFjs.CardHeader; exports.CardTitle = _chunkQS5Y6ZBFjs.CardTitle; exports.Carousel = _chunkQS5Y6ZBFjs.Carousel; exports.CarouselContent = _chunkQS5Y6ZBFjs.CarouselContent; exports.CarouselItem = _chunkQS5Y6ZBFjs.CarouselItem; exports.CarouselNext = _chunkQS5Y6ZBFjs.CarouselNext; exports.CarouselPrevious = _chunkQS5Y6ZBFjs.CarouselPrevious; exports.ChartContainer = _chunkQS5Y6ZBFjs.ChartContainer; exports.ChartLegend = _chunkQS5Y6ZBFjs.ChartLegend; exports.ChartLegendContent = _chunkQS5Y6ZBFjs.ChartLegendContent; exports.ChartStyle = _chunkQS5Y6ZBFjs.ChartStyle; exports.ChartTooltip = _chunkQS5Y6ZBFjs.ChartTooltip; exports.ChartTooltipContent = _chunkQS5Y6ZBFjs.ChartTooltipContent; exports.Checkbox = _chunkQS5Y6ZBFjs.Checkbox; exports.Collapsible = _chunkQS5Y6ZBFjs.Collapsible; exports.CollapsibleContent = _chunkQS5Y6ZBFjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkQS5Y6ZBFjs.CollapsibleTrigger; exports.Column = _chunkQS5Y6ZBFjs.KanbanColumn; exports.ColumnHandle = _chunkQS5Y6ZBFjs.KanbanColumnHandle; exports.Combobox = _chunkQS5Y6ZBFjs.Combobox; exports.ComboboxChip = _chunkQS5Y6ZBFjs.ComboboxChip; exports.ComboboxChips = _chunkQS5Y6ZBFjs.ComboboxChips; exports.ComboboxChipsInput = _chunkQS5Y6ZBFjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkQS5Y6ZBFjs.ComboboxCollection; exports.ComboboxContent = _chunkQS5Y6ZBFjs.ComboboxContent; exports.ComboboxEmpty = _chunkQS5Y6ZBFjs.ComboboxEmpty; exports.ComboboxGroup = _chunkQS5Y6ZBFjs.ComboboxGroup; exports.ComboboxInput = _chunkQS5Y6ZBFjs.ComboboxInput; exports.ComboboxItem = _chunkQS5Y6ZBFjs.ComboboxItem; exports.ComboboxLabel = _chunkQS5Y6ZBFjs.ComboboxLabel; exports.ComboboxList = _chunkQS5Y6ZBFjs.ComboboxList; exports.ComboboxSeparator = _chunkQS5Y6ZBFjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkQS5Y6ZBFjs.ComboboxTrigger; exports.ComboboxValue = _chunkQS5Y6ZBFjs.ComboboxValue; exports.Command = _chunkQS5Y6ZBFjs.Command; exports.CommandDialog = _chunkQS5Y6ZBFjs.CommandDialog; exports.CommandEmpty = _chunkQS5Y6ZBFjs.CommandEmpty; exports.CommandGroup = _chunkQS5Y6ZBFjs.CommandGroup; exports.CommandInput = _chunkQS5Y6ZBFjs.CommandInput; exports.CommandItem = _chunkQS5Y6ZBFjs.CommandItem; exports.CommandList = _chunkQS5Y6ZBFjs.CommandList; exports.CommandSeparator = _chunkQS5Y6ZBFjs.CommandSeparator; exports.CommandShortcut = _chunkQS5Y6ZBFjs.CommandShortcut; exports.CommonAddTrigger = _chunkQS5Y6ZBFjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkQS5Y6ZBFjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkQS5Y6ZBFjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkQS5Y6ZBFjs.CommonDeleter; exports.CommonEditorButtons = _chunkQS5Y6ZBFjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkQS5Y6ZBFjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkQS5Y6ZBFjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkQS5Y6ZBFjs.CommonEditorTrigger; exports.CompaniesList = _chunkQS5Y6ZBFjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkQS5Y6ZBFjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkQS5Y6ZBFjs.CompanyContainer; exports.CompanyContent = _chunkQS5Y6ZBFjs.CompanyContent; exports.CompanyDeleter = _chunkQS5Y6ZBFjs.CompanyDeleter; exports.CompanyDetails = _chunkQS5Y6ZBFjs.CompanyDetails; exports.CompanyEditor = _chunkQS5Y6ZBFjs.CompanyEditor; exports.CompanyUsersList = _chunkQS5Y6ZBFjs.CompanyUsersList; exports.ConfirmDialog = _chunkQS5Y6ZBFjs.ConfirmDialog; exports.ContentListGrid = _chunkQS5Y6ZBFjs.ContentListGrid; exports.ContentListTable = _chunkQS5Y6ZBFjs.ContentListTable; exports.ContentTableSearch = _chunkQS5Y6ZBFjs.ContentTableSearch; exports.ContentTitle = _chunkQS5Y6ZBFjs.ContentTitle; exports.ContentsList = _chunkQS5Y6ZBFjs.ContentsList; exports.ContentsListById = _chunkQS5Y6ZBFjs.ContentsListById; exports.ContextMenu = _chunkQS5Y6ZBFjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkQS5Y6ZBFjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkQS5Y6ZBFjs.ContextMenuContent; exports.ContextMenuGroup = _chunkQS5Y6ZBFjs.ContextMenuGroup; exports.ContextMenuItem = _chunkQS5Y6ZBFjs.ContextMenuItem; exports.ContextMenuLabel = _chunkQS5Y6ZBFjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkQS5Y6ZBFjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkQS5Y6ZBFjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkQS5Y6ZBFjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkQS5Y6ZBFjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkQS5Y6ZBFjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkQS5Y6ZBFjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkQS5Y6ZBFjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkQS5Y6ZBFjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkQS5Y6ZBFjs.ContextMenuTrigger; exports.ContributorsList = _chunkQS5Y6ZBFjs.ContributorsList; exports.Cookies = _chunkQS5Y6ZBFjs.Cookies; exports.CurrencyInput = _chunkQS5Y6ZBFjs.CurrencyInput; exports.DatePickerPopover = _chunkQS5Y6ZBFjs.DatePickerPopover; exports.DateRangeSelector = _chunkQS5Y6ZBFjs.DateRangeSelector; exports.DetailField = _chunkQS5Y6ZBFjs.DetailField; exports.Dialog = _chunkQS5Y6ZBFjs.Dialog; exports.DialogClose = _chunkQS5Y6ZBFjs.DialogClose; exports.DialogContent = _chunkQS5Y6ZBFjs.DialogContent; exports.DialogDescription = _chunkQS5Y6ZBFjs.DialogDescription; exports.DialogFooter = _chunkQS5Y6ZBFjs.DialogFooter; exports.DialogHeader = _chunkQS5Y6ZBFjs.DialogHeader; exports.DialogOverlay = _chunkQS5Y6ZBFjs.DialogOverlay; exports.DialogPortal = _chunkQS5Y6ZBFjs.DialogPortal; exports.DialogTitle = _chunkQS5Y6ZBFjs.DialogTitle; exports.DialogTrigger = _chunkQS5Y6ZBFjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkQS5Y6ZBFjs.DisableTwoFactorDialog; exports.Drawer = _chunkQS5Y6ZBFjs.Drawer; exports.DrawerClose = _chunkQS5Y6ZBFjs.DrawerClose; exports.DrawerContent = _chunkQS5Y6ZBFjs.DrawerContent; exports.DrawerDescription = _chunkQS5Y6ZBFjs.DrawerDescription; exports.DrawerFooter = _chunkQS5Y6ZBFjs.DrawerFooter; exports.DrawerHeader = _chunkQS5Y6ZBFjs.DrawerHeader; exports.DrawerOverlay = _chunkQS5Y6ZBFjs.DrawerOverlay; exports.DrawerPortal = _chunkQS5Y6ZBFjs.DrawerPortal; exports.DrawerTitle = _chunkQS5Y6ZBFjs.DrawerTitle; exports.DrawerTrigger = _chunkQS5Y6ZBFjs.DrawerTrigger; exports.DropdownMenu = _chunkQS5Y6ZBFjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkQS5Y6ZBFjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkQS5Y6ZBFjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkQS5Y6ZBFjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkQS5Y6ZBFjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkQS5Y6ZBFjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkQS5Y6ZBFjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkQS5Y6ZBFjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkQS5Y6ZBFjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkQS5Y6ZBFjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkQS5Y6ZBFjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkQS5Y6ZBFjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkQS5Y6ZBFjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkQS5Y6ZBFjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkQS5Y6ZBFjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkQS5Y6ZBFjs.EditableAvatar; exports.EditorSheet = _chunkQS5Y6ZBFjs.EditorSheet; exports.EmptyState = _chunkQS5Y6ZBFjs.EmptyState; exports.EntityAvatar = _chunkQS5Y6ZBFjs.EntityAvatar; exports.EntityHero = _chunkQS5Y6ZBFjs.EntityHero; exports.EntityHeroAvatar = _chunkQS5Y6ZBFjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunkQS5Y6ZBFjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkQS5Y6ZBFjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkQS5Y6ZBFjs.EntityMultiSelector; exports.EntitySection = _chunkQS5Y6ZBFjs.EntitySection; exports.EntitySelector = _chunkQS5Y6ZBFjs.EntitySelector; exports.ErrorDetails = _chunkQS5Y6ZBFjs.ErrorDetails; exports.Field = _chunkQS5Y6ZBFjs.Field; exports.FieldContent = _chunkQS5Y6ZBFjs.FieldContent; exports.FieldDescription = _chunkQS5Y6ZBFjs.FieldDescription; exports.FieldError = _chunkQS5Y6ZBFjs.FieldError; exports.FieldGroup = _chunkQS5Y6ZBFjs.FieldGroup; exports.FieldLabel = _chunkQS5Y6ZBFjs.FieldLabel; exports.FieldLegend = _chunkQS5Y6ZBFjs.FieldLegend; exports.FieldSeparator = _chunkQS5Y6ZBFjs.FieldSeparator; exports.FieldSet = _chunkQS5Y6ZBFjs.FieldSet; exports.FieldTitle = _chunkQS5Y6ZBFjs.FieldTitle; exports.FileInput = _chunkQS5Y6ZBFjs.FileInput; exports.FileUploader = _chunkQS5Y6ZBFjs.FileUploader; exports.FileUploaderContent = _chunkQS5Y6ZBFjs.FileUploaderContent; exports.FileUploaderItem = _chunkQS5Y6ZBFjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkQS5Y6ZBFjs.FiscalDataDisplay; exports.ForgotPassword = _chunkQS5Y6ZBFjs.ForgotPassword; exports.Form = _chunkQS5Y6ZBFjs.Form; exports.FormBlockNote = _chunkQS5Y6ZBFjs.FormBlockNote; exports.FormBody = _chunkQS5Y6ZBFjs.FormBody; exports.FormCheckbox = _chunkQS5Y6ZBFjs.FormCheckbox; exports.FormCol = _chunkQS5Y6ZBFjs.FormCol; exports.FormDate = _chunkQS5Y6ZBFjs.FormDate; exports.FormDateTime = _chunkQS5Y6ZBFjs.FormDateTime; exports.FormFeatures = _chunkQS5Y6ZBFjs.FormFeatures; exports.FormFieldWrapper = _chunkQS5Y6ZBFjs.FormFieldWrapper; exports.FormInput = _chunkQS5Y6ZBFjs.FormInput; exports.FormPassword = _chunkQS5Y6ZBFjs.FormPassword; exports.FormPlaceAutocomplete = _chunkQS5Y6ZBFjs.FormPlaceAutocomplete; exports.FormRoles = _chunkQS5Y6ZBFjs.FormRoles; exports.FormRow = _chunkQS5Y6ZBFjs.FormRow; exports.FormSection = _chunkQS5Y6ZBFjs.FormSection; exports.FormSelect = _chunkQS5Y6ZBFjs.FormSelect; exports.FormSlider = _chunkQS5Y6ZBFjs.FormSlider; exports.FormSwitch = _chunkQS5Y6ZBFjs.FormSwitch; exports.FormTextarea = _chunkQS5Y6ZBFjs.FormTextarea; exports.GdprConsentCheckbox = _chunkQS5Y6ZBFjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkQS5Y6ZBFjs.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkQS5Y6ZBFjs.HEADER_ROW_MIN_H; exports.Header = _chunkQS5Y6ZBFjs.Header; exports.HoverCard = _chunkQS5Y6ZBFjs.HoverCard; exports.HoverCardContent = _chunkQS5Y6ZBFjs.HoverCardContent; exports.HoverCardTrigger = _chunkQS5Y6ZBFjs.HoverCardTrigger; exports.HowToCommand = _chunkQS5Y6ZBFjs.HowToCommand; exports.HowToCommandViewer = _chunkQS5Y6ZBFjs.HowToCommandViewer; exports.HowToContainer = _chunkQS5Y6ZBFjs.HowToContainer; exports.HowToContent = _chunkQS5Y6ZBFjs.HowToContent; exports.HowToDeleter = _chunkQS5Y6ZBFjs.HowToDeleter; exports.HowToDetails = _chunkQS5Y6ZBFjs.HowToDetails; exports.HowToEditor = _chunkQS5Y6ZBFjs.HowToEditor; exports.HowToList = _chunkQS5Y6ZBFjs.HowToList; exports.HowToListContainer = _chunkQS5Y6ZBFjs.HowToListContainer; exports.HowToMultiSelector = _chunkQS5Y6ZBFjs.HowToMultiSelector; exports.HowToSelector = _chunkQS5Y6ZBFjs.HowToSelector; exports.Input = _chunkQS5Y6ZBFjs.Input; exports.InputGroup = _chunkQS5Y6ZBFjs.InputGroup; exports.InputGroupAddon = _chunkQS5Y6ZBFjs.InputGroupAddon; exports.InputGroupButton = _chunkQS5Y6ZBFjs.InputGroupButton; exports.InputGroupInput = _chunkQS5Y6ZBFjs.InputGroupInput; exports.InputGroupText = _chunkQS5Y6ZBFjs.InputGroupText; exports.InputGroupTextarea = _chunkQS5Y6ZBFjs.InputGroupTextarea; exports.InputOTP = _chunkQS5Y6ZBFjs.InputOTP; exports.InputOTPGroup = _chunkQS5Y6ZBFjs.InputOTPGroup; exports.InputOTPSeparator = _chunkQS5Y6ZBFjs.InputOTPSeparator; exports.InputOTPSlot = _chunkQS5Y6ZBFjs.InputOTPSlot; exports.ItalianFiscalData = _chunkQS5Y6ZBFjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkQS5Y6ZBFjs.ItalianFiscalDataDisplay; exports.Item = _chunkQS5Y6ZBFjs.KanbanItem; exports.ItemHandle = _chunkQS5Y6ZBFjs.KanbanItemHandle; exports.Kanban = _chunkQS5Y6ZBFjs.KanbanRoot; exports.KanbanBoard = _chunkQS5Y6ZBFjs.KanbanBoard; exports.KanbanColumn = _chunkQS5Y6ZBFjs.KanbanColumn; exports.KanbanColumnHandle = _chunkQS5Y6ZBFjs.KanbanColumnHandle; exports.KanbanItem = _chunkQS5Y6ZBFjs.KanbanItem; exports.KanbanItemHandle = _chunkQS5Y6ZBFjs.KanbanItemHandle; exports.KanbanOverlay = _chunkQS5Y6ZBFjs.KanbanOverlay; exports.Label = _chunkQS5Y6ZBFjs.Label; exports.LandingComponent = _chunkQS5Y6ZBFjs.LandingComponent; exports.Link = _chunkQS5Y6ZBFjs.Link; exports.Login = _chunkQS5Y6ZBFjs.Login; exports.Logout = _chunkQS5Y6ZBFjs.Logout; exports.MessageItem = _chunkQS5Y6ZBFjs.MessageItem; exports.MessageList = _chunkQS5Y6ZBFjs.MessageList; exports.MessageSourcesPanel = _chunkQS5Y6ZBFjs.MessageSourcesPanel; exports.MicroLabel = _chunkQS5Y6ZBFjs.MicroLabel; exports.MobileNavigationBar = _chunkQS5Y6ZBFjs.MobileNavigationBar; exports.ModeToggleSwitch = _chunkQS5Y6ZBFjs.ModeToggleSwitch; exports.MultiSelect = _chunkQS5Y6ZBFjs.MultiSelect; exports.MultipleSelector = _chunkQS5Y6ZBFjs.MultipleSelector; exports.NavigationMenu = _chunkQS5Y6ZBFjs.NavigationMenu; exports.NavigationMenuContent = _chunkQS5Y6ZBFjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkQS5Y6ZBFjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkQS5Y6ZBFjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkQS5Y6ZBFjs.NavigationMenuLink; exports.NavigationMenuList = _chunkQS5Y6ZBFjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkQS5Y6ZBFjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkQS5Y6ZBFjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkQS5Y6ZBFjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkQS5Y6ZBFjs.NotificationMenuItem; exports.NotificationModal = _chunkQS5Y6ZBFjs.NotificationModal; exports.NotificationToast = _chunkQS5Y6ZBFjs.NotificationToast; exports.NotificationsList = _chunkQS5Y6ZBFjs.NotificationsList; exports.NotificationsListContainer = _chunkQS5Y6ZBFjs.NotificationsListContainer; exports.OAuthClientCard = _chunkQS5Y6ZBFjs.OAuthClientCard; exports.OAuthClientDetail = _chunkQS5Y6ZBFjs.OAuthClientDetail; exports.OAuthClientForm = _chunkQS5Y6ZBFjs.OAuthClientForm; exports.OAuthClientList = _chunkQS5Y6ZBFjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkQS5Y6ZBFjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkQS5Y6ZBFjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkQS5Y6ZBFjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkQS5Y6ZBFjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkQS5Y6ZBFjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkQS5Y6ZBFjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkQS5Y6ZBFjs.OAuthScopeSelector; exports.OnboardingCard = _chunkQS5Y6ZBFjs.OnboardingCard; exports.Overlay = _chunkQS5Y6ZBFjs.KanbanOverlay; exports.PageContainer = _chunkQS5Y6ZBFjs.PageContainer; exports.PageContainerContentDetails = _chunkQS5Y6ZBFjs.PageContainerContentDetails; exports.PageContentContainer = _chunkQS5Y6ZBFjs.PageContentContainer; exports.PageSection = _chunkQS5Y6ZBFjs.PageSection; exports.PasskeyButton = _chunkQS5Y6ZBFjs.PasskeyButton; exports.PasskeyList = _chunkQS5Y6ZBFjs.PasskeyList; exports.PasskeySetupDialog = _chunkQS5Y6ZBFjs.PasskeySetupDialog; exports.PasswordInput = _chunkQS5Y6ZBFjs.PasswordInput; exports.Popover = _chunkQS5Y6ZBFjs.Popover; exports.PopoverContent = _chunkQS5Y6ZBFjs.PopoverContent; exports.PopoverDescription = _chunkQS5Y6ZBFjs.PopoverDescription; exports.PopoverHeader = _chunkQS5Y6ZBFjs.PopoverHeader; exports.PopoverTitle = _chunkQS5Y6ZBFjs.PopoverTitle; exports.PopoverTrigger = _chunkQS5Y6ZBFjs.PopoverTrigger; exports.Progress = _chunkQS5Y6ZBFjs.Progress; exports.ProgressIndicator = _chunkQS5Y6ZBFjs.ProgressIndicator; exports.ProgressLabel = _chunkQS5Y6ZBFjs.ProgressLabel; exports.ProgressTrack = _chunkQS5Y6ZBFjs.ProgressTrack; exports.ProgressValue = _chunkQS5Y6ZBFjs.ProgressValue; exports.PushNotificationProvider = _chunkQS5Y6ZBFjs.PushNotificationProvider; exports.RadioGroup = _chunkQS5Y6ZBFjs.RadioGroup; exports.RadioGroupItem = _chunkQS5Y6ZBFjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkQS5Y6ZBFjs.RbacByRoleContainer; exports.RbacContainer = _chunkQS5Y6ZBFjs.RbacContainer; exports.RbacPermissionCell = _chunkQS5Y6ZBFjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkQS5Y6ZBFjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkQS5Y6ZBFjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkQS5Y6ZBFjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkQS5Y6ZBFjs.ReferralCodeCapture; exports.ReferralDialog = _chunkQS5Y6ZBFjs.ReferralDialog; exports.ReferralWidget = _chunkQS5Y6ZBFjs.ReferralWidget; exports.RefreshUser = _chunkQS5Y6ZBFjs.RefreshUser; exports.RelevantContentsList = _chunkQS5Y6ZBFjs.RelevantContentsList; exports.RelevantUsersList = _chunkQS5Y6ZBFjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkQS5Y6ZBFjs.RemoveUserFromRole; exports.ResetPassword = _chunkQS5Y6ZBFjs.ResetPassword; exports.ResizableHandle = _chunkQS5Y6ZBFjs.ResizableHandle; exports.ResizablePanel = _chunkQS5Y6ZBFjs.ResizablePanel; exports.ResizablePanelGroup = _chunkQS5Y6ZBFjs.ResizablePanelGroup; exports.RoleContainer = _chunkQS5Y6ZBFjs.RoleContainer; exports.RoleDetails = _chunkQS5Y6ZBFjs.RoleDetails; exports.RoleUsersList = _chunkQS5Y6ZBFjs.RoleUsersList; exports.RolesList = _chunkQS5Y6ZBFjs.RolesList; exports.Root = _chunkQS5Y6ZBFjs.KanbanRoot; exports.RoundPageContainer = _chunkQS5Y6ZBFjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkQS5Y6ZBFjs.RoundPageContainerTitle; exports.ScrollArea = _chunkQS5Y6ZBFjs.ScrollArea; exports.ScrollBar = _chunkQS5Y6ZBFjs.ScrollBar; exports.SectionHeader = _chunkQS5Y6ZBFjs.SectionHeader; exports.SecurityContainer = _chunkQS5Y6ZBFjs.SecurityContainer; exports.Select = _chunkQS5Y6ZBFjs.Select; exports.SelectContent = _chunkQS5Y6ZBFjs.SelectContent; exports.SelectGroup = _chunkQS5Y6ZBFjs.SelectGroup; exports.SelectItem = _chunkQS5Y6ZBFjs.SelectItem; exports.SelectLabel = _chunkQS5Y6ZBFjs.SelectLabel; exports.SelectScrollDownButton = _chunkQS5Y6ZBFjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkQS5Y6ZBFjs.SelectScrollUpButton; exports.SelectSeparator = _chunkQS5Y6ZBFjs.SelectSeparator; exports.SelectTrigger = _chunkQS5Y6ZBFjs.SelectTrigger; exports.SelectValue = _chunkQS5Y6ZBFjs.SelectValue; exports.Separator = _chunkQS5Y6ZBFjs.Separator; exports.Sheet = _chunkQS5Y6ZBFjs.Sheet; exports.SheetClose = _chunkQS5Y6ZBFjs.SheetClose; exports.SheetContent = _chunkQS5Y6ZBFjs.SheetContent; exports.SheetDescription = _chunkQS5Y6ZBFjs.SheetDescription; exports.SheetFooter = _chunkQS5Y6ZBFjs.SheetFooter; exports.SheetHeader = _chunkQS5Y6ZBFjs.SheetHeader; exports.SheetTitle = _chunkQS5Y6ZBFjs.SheetTitle; exports.SheetTrigger = _chunkQS5Y6ZBFjs.SheetTrigger; exports.Sidebar = _chunkQS5Y6ZBFjs.Sidebar; exports.SidebarContent = _chunkQS5Y6ZBFjs.SidebarContent; exports.SidebarFooter = _chunkQS5Y6ZBFjs.SidebarFooter; exports.SidebarGroup = _chunkQS5Y6ZBFjs.SidebarGroup; exports.SidebarGroupAction = _chunkQS5Y6ZBFjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkQS5Y6ZBFjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkQS5Y6ZBFjs.SidebarGroupLabel; exports.SidebarHeader = _chunkQS5Y6ZBFjs.SidebarHeader; exports.SidebarInput = _chunkQS5Y6ZBFjs.SidebarInput; exports.SidebarInset = _chunkQS5Y6ZBFjs.SidebarInset; exports.SidebarMenu = _chunkQS5Y6ZBFjs.SidebarMenu; exports.SidebarMenuAction = _chunkQS5Y6ZBFjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkQS5Y6ZBFjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkQS5Y6ZBFjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkQS5Y6ZBFjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkQS5Y6ZBFjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkQS5Y6ZBFjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkQS5Y6ZBFjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkQS5Y6ZBFjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkQS5Y6ZBFjs.SidebarProvider; exports.SidebarRail = _chunkQS5Y6ZBFjs.SidebarRail; exports.SidebarSeparator = _chunkQS5Y6ZBFjs.SidebarSeparator; exports.SidebarTrigger = _chunkQS5Y6ZBFjs.SidebarTrigger; exports.Skeleton = _chunkQS5Y6ZBFjs.Skeleton; exports.Slider = _chunkQS5Y6ZBFjs.Slider; exports.Spinner = _chunkQS5Y6ZBFjs.Spinner; exports.Switch = _chunkQS5Y6ZBFjs.Switch; exports.Table = _chunkQS5Y6ZBFjs.Table; exports.TableBody = _chunkQS5Y6ZBFjs.TableBody; exports.TableCaption = _chunkQS5Y6ZBFjs.TableCaption; exports.TableCell = _chunkQS5Y6ZBFjs.TableCell; exports.TableCellAvatar = _chunkQS5Y6ZBFjs.TableCellAvatar; exports.TableFooter = _chunkQS5Y6ZBFjs.TableFooter; exports.TableHead = _chunkQS5Y6ZBFjs.TableHead; exports.TableHeader = _chunkQS5Y6ZBFjs.TableHeader; exports.TableRow = _chunkQS5Y6ZBFjs.TableRow; exports.Tabs = _chunkQS5Y6ZBFjs.Tabs; exports.TabsContainer = _chunkQS5Y6ZBFjs.TabsContainer; exports.TabsContent = _chunkQS5Y6ZBFjs.TabsContent; exports.TabsList = _chunkQS5Y6ZBFjs.TabsList; exports.TabsTrigger = _chunkQS5Y6ZBFjs.TabsTrigger; exports.Textarea = _chunkQS5Y6ZBFjs.Textarea; exports.Toaster = _chunkQS5Y6ZBFjs.Toaster; exports.Toggle = _chunkQS5Y6ZBFjs.Toggle; exports.TokenStatusIndicator = _chunkQS5Y6ZBFjs.TokenStatusIndicator; exports.Tooltip = _chunkQS5Y6ZBFjs.Tooltip; exports.TooltipContent = _chunkQS5Y6ZBFjs.TooltipContent; exports.TooltipProvider = _chunkQS5Y6ZBFjs.TooltipProvider; exports.TooltipTrigger = _chunkQS5Y6ZBFjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkQS5Y6ZBFjs.TotpAuthenticatorList; exports.TotpInput = _chunkQS5Y6ZBFjs.TotpInput; exports.TotpSetupDialog = _chunkQS5Y6ZBFjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkQS5Y6ZBFjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkQS5Y6ZBFjs.TwoFactorSettings; exports.UserAvatar = _chunkQS5Y6ZBFjs.UserAvatar; exports.UserAvatarEditor = _chunkQS5Y6ZBFjs.UserAvatarEditor; exports.UserAvatarList = _chunkQS5Y6ZBFjs.UserAvatarList; exports.UserContainer = _chunkQS5Y6ZBFjs.UserContainer; exports.UserContent = _chunkQS5Y6ZBFjs.UserContent; exports.UserDeleter = _chunkQS5Y6ZBFjs.UserDeleter; exports.UserEditor = _chunkQS5Y6ZBFjs.UserEditor; exports.UserIndexContainer = _chunkQS5Y6ZBFjs.UserIndexContainer; exports.UserIndexDetails = _chunkQS5Y6ZBFjs.UserIndexDetails; exports.UserListInAdd = _chunkQS5Y6ZBFjs.UserListInAdd; exports.UserMultiSelect = _chunkQS5Y6ZBFjs.UserMultiSelect; exports.UserReactivator = _chunkQS5Y6ZBFjs.UserReactivator; exports.UserResentInvitationEmail = _chunkQS5Y6ZBFjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkQS5Y6ZBFjs.UserRoleAdd; exports.UserRolesList = _chunkQS5Y6ZBFjs.UserRolesList; exports.UserSearchPopover = _chunkQS5Y6ZBFjs.UserSearchPopover; exports.UserSelector = _chunkQS5Y6ZBFjs.UserSelector; exports.UserStanadaloneDetails = _chunkQS5Y6ZBFjs.UserStanadaloneDetails; exports.UsersList = _chunkQS5Y6ZBFjs.UsersList; exports.UsersListByContentIds = _chunkQS5Y6ZBFjs.UsersListByContentIds; exports.UsersListContainer = _chunkQS5Y6ZBFjs.UsersListContainer; exports.WaitlistConfirmation = _chunkQS5Y6ZBFjs.WaitlistConfirmation; exports.WaitlistForm = _chunkQS5Y6ZBFjs.WaitlistForm; exports.WaitlistHeroSection = _chunkQS5Y6ZBFjs.WaitlistHeroSection; exports.WaitlistList = _chunkQS5Y6ZBFjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkQS5Y6ZBFjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkQS5Y6ZBFjs.WaitlistSuccessState; exports.badgeVariants = _chunkQS5Y6ZBFjs.badgeVariants; exports.buttonVariants = _chunkQS5Y6ZBFjs.buttonVariants; exports.cellComponent = _chunkQS5Y6ZBFjs.cellComponent; exports.cellDate = _chunkQS5Y6ZBFjs.cellDate; exports.cellDateTime = _chunkQS5Y6ZBFjs.cellDateTime; exports.cellId = _chunkQS5Y6ZBFjs.cellId; exports.cellLink = _chunkQS5Y6ZBFjs.cellLink; exports.cellUrl = _chunkQS5Y6ZBFjs.cellUrl; exports.createMentionInlineContentSpec = _chunkQS5Y6ZBFjs.createMentionInlineContentSpec; exports.errorToast = _chunkQS5Y6ZBFjs.errorToast; exports.generateNotificationData = _chunkQS5Y6ZBFjs.generateNotificationData; exports.getIcon = _chunkDS4IBFWAjs.getIcon; exports.getIconByModule = _chunkDS4IBFWAjs.getIconByModule; exports.getIconByModuleName = _chunkDS4IBFWAjs.getIconByModuleName; exports.getInitials = _chunkDS4IBFWAjs.getInitials; exports.mentionDataAttrs = _chunkQS5Y6ZBFjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkQS5Y6ZBFjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkQS5Y6ZBFjs.parseFiscalData; exports.parseMentionElement = _chunkQS5Y6ZBFjs.parseMentionElement; exports.partitionTabs = _chunkQS5Y6ZBFjs.partitionTabs; exports.spinnerVariants = _chunkQS5Y6ZBFjs.spinnerVariants; exports.tabsListVariants = _chunkQS5Y6ZBFjs.tabsListVariants; exports.toggleVariants = _chunkQS5Y6ZBFjs.toggleVariants; exports.triggerAssociationToast = _chunkQS5Y6ZBFjs.triggerAssociationToast; exports.useCarousel = _chunkQS5Y6ZBFjs.useCarousel; exports.useComboboxAnchor = _chunkQS5Y6ZBFjs.useComboboxAnchor; exports.useDebounce = _chunkQS5Y6ZBFjs.useDebounce2; exports.useEditorDialog = _chunkQS5Y6ZBFjs.useEditorDialog; exports.useFileUpload = _chunkQS5Y6ZBFjs.useFileUpload; exports.useMentionInsert = _chunkQS5Y6ZBFjs.useMentionInsert; exports.useSidebar = _chunkQS5Y6ZBFjs.useSidebar;
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
exports.AcceptInvitation = _chunkI3GHIU4Yjs.AcceptInvitation; exports.Accordion = _chunkI3GHIU4Yjs.Accordion; exports.AccordionContent = _chunkI3GHIU4Yjs.AccordionContent; exports.AccordionItem = _chunkI3GHIU4Yjs.AccordionItem; exports.AccordionTrigger = _chunkI3GHIU4Yjs.AccordionTrigger; exports.ActivateAccount = _chunkI3GHIU4Yjs.ActivateAccount; exports.AddUserToRole = _chunkI3GHIU4Yjs.AddUserToRole; exports.AdminCompanyContainer = _chunkI3GHIU4Yjs.AdminCompanyContainer; exports.AdminUsersList = _chunkI3GHIU4Yjs.AdminUsersList; exports.Alert = _chunkI3GHIU4Yjs.Alert; exports.AlertAction = _chunkI3GHIU4Yjs.AlertAction; exports.AlertDescription = _chunkI3GHIU4Yjs.AlertDescription; exports.AlertDialog = _chunkI3GHIU4Yjs.AlertDialog; exports.AlertDialogAction = _chunkI3GHIU4Yjs.AlertDialogAction; exports.AlertDialogCancel = _chunkI3GHIU4Yjs.AlertDialogCancel; exports.AlertDialogContent = _chunkI3GHIU4Yjs.AlertDialogContent; exports.AlertDialogDescription = _chunkI3GHIU4Yjs.AlertDialogDescription; exports.AlertDialogFooter = _chunkI3GHIU4Yjs.AlertDialogFooter; exports.AlertDialogHeader = _chunkI3GHIU4Yjs.AlertDialogHeader; exports.AlertDialogMedia = _chunkI3GHIU4Yjs.AlertDialogMedia; exports.AlertDialogOverlay = _chunkI3GHIU4Yjs.AlertDialogOverlay; exports.AlertDialogPortal = _chunkI3GHIU4Yjs.AlertDialogPortal; exports.AlertDialogTitle = _chunkI3GHIU4Yjs.AlertDialogTitle; exports.AlertDialogTrigger = _chunkI3GHIU4Yjs.AlertDialogTrigger; exports.AlertTitle = _chunkI3GHIU4Yjs.AlertTitle; exports.AllUsersListContainer = _chunkI3GHIU4Yjs.AllUsersListContainer; exports.AllowedUsersDetails = _chunkI3GHIU4Yjs.AllowedUsersDetails; exports.ApprovalActionCard = _chunkI3GHIU4Yjs.ApprovalActionCard; exports.AssistantBlockNoteComposer = _chunkI3GHIU4Yjs.AssistantBlockNoteComposer; exports.AssistantContainer = _chunkI3GHIU4Yjs.AssistantContainer; exports.AssistantContainerWithApprovals = _chunkI3GHIU4Yjs.AssistantContainerWithApprovals; exports.AssistantPageContainer = _chunkI3GHIU4Yjs.AssistantPageContainer; exports.AttributeElement = _chunkI3GHIU4Yjs.AttributeElement; exports.AuthContainer = _chunkI3GHIU4Yjs.AuthContainer; exports.Avatar = _chunkI3GHIU4Yjs.Avatar; exports.AvatarBadge = _chunkI3GHIU4Yjs.AvatarBadge; exports.AvatarFallback = _chunkI3GHIU4Yjs.AvatarFallback; exports.AvatarGroup = _chunkI3GHIU4Yjs.AvatarGroup; exports.AvatarGroupCount = _chunkI3GHIU4Yjs.AvatarGroupCount; exports.AvatarImage = _chunkI3GHIU4Yjs.AvatarImage; exports.BackupCodesDialog = _chunkI3GHIU4Yjs.BackupCodesDialog; exports.Badge = _chunkI3GHIU4Yjs.Badge; exports.BlockNoteEditorContainer = _chunkI3GHIU4Yjs.BlockNoteEditorContainer; exports.BlockNoteEditorMentionHoverCard = _chunkI3GHIU4Yjs.BlockNoteEditorMentionHoverCard; exports.BlockNoteEditorMentionSuggestionMenu = _chunkI3GHIU4Yjs.BlockNoteEditorMentionSuggestionMenu; exports.BlockNoteViewerContainer = _chunkI3GHIU4Yjs.BlockNoteViewerContainer; exports.Board = _chunkI3GHIU4Yjs.KanbanBoard; exports.Breadcrumb = _chunkI3GHIU4Yjs.Breadcrumb; exports.BreadcrumbEllipsis = _chunkI3GHIU4Yjs.BreadcrumbEllipsis; exports.BreadcrumbItem = _chunkI3GHIU4Yjs.BreadcrumbItem; exports.BreadcrumbLink = _chunkI3GHIU4Yjs.BreadcrumbLink; exports.BreadcrumbList = _chunkI3GHIU4Yjs.BreadcrumbList; exports.BreadcrumbNavigation = _chunkI3GHIU4Yjs.BreadcrumbNavigation; exports.BreadcrumbPage = _chunkI3GHIU4Yjs.BreadcrumbPage; exports.BreadcrumbSeparator = _chunkI3GHIU4Yjs.BreadcrumbSeparator; exports.Button = _chunkI3GHIU4Yjs.Button; exports.Calendar = _chunkI3GHIU4Yjs.Calendar; exports.CalendarDayButton = _chunkI3GHIU4Yjs.CalendarDayButton; exports.Card = _chunkI3GHIU4Yjs.Card; exports.CardAction = _chunkI3GHIU4Yjs.CardAction; exports.CardContent = _chunkI3GHIU4Yjs.CardContent; exports.CardDescription = _chunkI3GHIU4Yjs.CardDescription; exports.CardFooter = _chunkI3GHIU4Yjs.CardFooter; exports.CardHeader = _chunkI3GHIU4Yjs.CardHeader; exports.CardTitle = _chunkI3GHIU4Yjs.CardTitle; exports.Carousel = _chunkI3GHIU4Yjs.Carousel; exports.CarouselContent = _chunkI3GHIU4Yjs.CarouselContent; exports.CarouselItem = _chunkI3GHIU4Yjs.CarouselItem; exports.CarouselNext = _chunkI3GHIU4Yjs.CarouselNext; exports.CarouselPrevious = _chunkI3GHIU4Yjs.CarouselPrevious; exports.ChartContainer = _chunkI3GHIU4Yjs.ChartContainer; exports.ChartLegend = _chunkI3GHIU4Yjs.ChartLegend; exports.ChartLegendContent = _chunkI3GHIU4Yjs.ChartLegendContent; exports.ChartStyle = _chunkI3GHIU4Yjs.ChartStyle; exports.ChartTooltip = _chunkI3GHIU4Yjs.ChartTooltip; exports.ChartTooltipContent = _chunkI3GHIU4Yjs.ChartTooltipContent; exports.Checkbox = _chunkI3GHIU4Yjs.Checkbox; exports.Collapsible = _chunkI3GHIU4Yjs.Collapsible; exports.CollapsibleContent = _chunkI3GHIU4Yjs.CollapsibleContent; exports.CollapsibleTrigger = _chunkI3GHIU4Yjs.CollapsibleTrigger; exports.Column = _chunkI3GHIU4Yjs.KanbanColumn; exports.ColumnHandle = _chunkI3GHIU4Yjs.KanbanColumnHandle; exports.Combobox = _chunkI3GHIU4Yjs.Combobox; exports.ComboboxChip = _chunkI3GHIU4Yjs.ComboboxChip; exports.ComboboxChips = _chunkI3GHIU4Yjs.ComboboxChips; exports.ComboboxChipsInput = _chunkI3GHIU4Yjs.ComboboxChipsInput; exports.ComboboxCollection = _chunkI3GHIU4Yjs.ComboboxCollection; exports.ComboboxContent = _chunkI3GHIU4Yjs.ComboboxContent; exports.ComboboxEmpty = _chunkI3GHIU4Yjs.ComboboxEmpty; exports.ComboboxGroup = _chunkI3GHIU4Yjs.ComboboxGroup; exports.ComboboxInput = _chunkI3GHIU4Yjs.ComboboxInput; exports.ComboboxItem = _chunkI3GHIU4Yjs.ComboboxItem; exports.ComboboxLabel = _chunkI3GHIU4Yjs.ComboboxLabel; exports.ComboboxList = _chunkI3GHIU4Yjs.ComboboxList; exports.ComboboxSeparator = _chunkI3GHIU4Yjs.ComboboxSeparator; exports.ComboboxTrigger = _chunkI3GHIU4Yjs.ComboboxTrigger; exports.ComboboxValue = _chunkI3GHIU4Yjs.ComboboxValue; exports.Command = _chunkI3GHIU4Yjs.Command; exports.CommandDialog = _chunkI3GHIU4Yjs.CommandDialog; exports.CommandEmpty = _chunkI3GHIU4Yjs.CommandEmpty; exports.CommandGroup = _chunkI3GHIU4Yjs.CommandGroup; exports.CommandInput = _chunkI3GHIU4Yjs.CommandInput; exports.CommandItem = _chunkI3GHIU4Yjs.CommandItem; exports.CommandList = _chunkI3GHIU4Yjs.CommandList; exports.CommandSeparator = _chunkI3GHIU4Yjs.CommandSeparator; exports.CommandShortcut = _chunkI3GHIU4Yjs.CommandShortcut; exports.CommonAddTrigger = _chunkI3GHIU4Yjs.CommonAddTrigger; exports.CommonAssociationCommandDialog = _chunkI3GHIU4Yjs.CommonAssociationCommandDialog; exports.CommonAssociationTrigger = _chunkI3GHIU4Yjs.CommonAssociationTrigger; exports.CommonDeleter = _chunkI3GHIU4Yjs.CommonDeleter; exports.CommonEditorButtons = _chunkI3GHIU4Yjs.CommonEditorButtons; exports.CommonEditorDiscardDialog = _chunkI3GHIU4Yjs.CommonEditorDiscardDialog; exports.CommonEditorHeader = _chunkI3GHIU4Yjs.CommonEditorHeader; exports.CommonEditorTrigger = _chunkI3GHIU4Yjs.CommonEditorTrigger; exports.CompaniesList = _chunkI3GHIU4Yjs.CompaniesList; exports.CompanyConfigurationEditor = _chunkI3GHIU4Yjs.CompanyConfigurationEditor; exports.CompanyContainer = _chunkI3GHIU4Yjs.CompanyContainer; exports.CompanyContent = _chunkI3GHIU4Yjs.CompanyContent; exports.CompanyDeleter = _chunkI3GHIU4Yjs.CompanyDeleter; exports.CompanyDetails = _chunkI3GHIU4Yjs.CompanyDetails; exports.CompanyEditor = _chunkI3GHIU4Yjs.CompanyEditor; exports.CompanyUsersList = _chunkI3GHIU4Yjs.CompanyUsersList; exports.ConfirmDialog = _chunkI3GHIU4Yjs.ConfirmDialog; exports.ContentListGrid = _chunkI3GHIU4Yjs.ContentListGrid; exports.ContentListTable = _chunkI3GHIU4Yjs.ContentListTable; exports.ContentTableSearch = _chunkI3GHIU4Yjs.ContentTableSearch; exports.ContentTitle = _chunkI3GHIU4Yjs.ContentTitle; exports.ContentsList = _chunkI3GHIU4Yjs.ContentsList; exports.ContentsListById = _chunkI3GHIU4Yjs.ContentsListById; exports.ContextMenu = _chunkI3GHIU4Yjs.ContextMenu; exports.ContextMenuCheckboxItem = _chunkI3GHIU4Yjs.ContextMenuCheckboxItem; exports.ContextMenuContent = _chunkI3GHIU4Yjs.ContextMenuContent; exports.ContextMenuGroup = _chunkI3GHIU4Yjs.ContextMenuGroup; exports.ContextMenuItem = _chunkI3GHIU4Yjs.ContextMenuItem; exports.ContextMenuLabel = _chunkI3GHIU4Yjs.ContextMenuLabel; exports.ContextMenuPortal = _chunkI3GHIU4Yjs.ContextMenuPortal; exports.ContextMenuRadioGroup = _chunkI3GHIU4Yjs.ContextMenuRadioGroup; exports.ContextMenuRadioItem = _chunkI3GHIU4Yjs.ContextMenuRadioItem; exports.ContextMenuSeparator = _chunkI3GHIU4Yjs.ContextMenuSeparator; exports.ContextMenuShortcut = _chunkI3GHIU4Yjs.ContextMenuShortcut; exports.ContextMenuSub = _chunkI3GHIU4Yjs.ContextMenuSub; exports.ContextMenuSubContent = _chunkI3GHIU4Yjs.ContextMenuSubContent; exports.ContextMenuSubTrigger = _chunkI3GHIU4Yjs.ContextMenuSubTrigger; exports.ContextMenuTrigger = _chunkI3GHIU4Yjs.ContextMenuTrigger; exports.ContributorsList = _chunkI3GHIU4Yjs.ContributorsList; exports.Cookies = _chunkI3GHIU4Yjs.Cookies; exports.CurrencyInput = _chunkI3GHIU4Yjs.CurrencyInput; exports.DatePickerPopover = _chunkI3GHIU4Yjs.DatePickerPopover; exports.DateRangeSelector = _chunkI3GHIU4Yjs.DateRangeSelector; exports.DetailField = _chunkI3GHIU4Yjs.DetailField; exports.Dialog = _chunkI3GHIU4Yjs.Dialog; exports.DialogClose = _chunkI3GHIU4Yjs.DialogClose; exports.DialogContent = _chunkI3GHIU4Yjs.DialogContent; exports.DialogDescription = _chunkI3GHIU4Yjs.DialogDescription; exports.DialogFooter = _chunkI3GHIU4Yjs.DialogFooter; exports.DialogHeader = _chunkI3GHIU4Yjs.DialogHeader; exports.DialogOverlay = _chunkI3GHIU4Yjs.DialogOverlay; exports.DialogPortal = _chunkI3GHIU4Yjs.DialogPortal; exports.DialogTitle = _chunkI3GHIU4Yjs.DialogTitle; exports.DialogTrigger = _chunkI3GHIU4Yjs.DialogTrigger; exports.DisableTwoFactorDialog = _chunkI3GHIU4Yjs.DisableTwoFactorDialog; exports.Drawer = _chunkI3GHIU4Yjs.Drawer; exports.DrawerClose = _chunkI3GHIU4Yjs.DrawerClose; exports.DrawerContent = _chunkI3GHIU4Yjs.DrawerContent; exports.DrawerDescription = _chunkI3GHIU4Yjs.DrawerDescription; exports.DrawerFooter = _chunkI3GHIU4Yjs.DrawerFooter; exports.DrawerHeader = _chunkI3GHIU4Yjs.DrawerHeader; exports.DrawerOverlay = _chunkI3GHIU4Yjs.DrawerOverlay; exports.DrawerPortal = _chunkI3GHIU4Yjs.DrawerPortal; exports.DrawerTitle = _chunkI3GHIU4Yjs.DrawerTitle; exports.DrawerTrigger = _chunkI3GHIU4Yjs.DrawerTrigger; exports.DropdownMenu = _chunkI3GHIU4Yjs.DropdownMenu; exports.DropdownMenuCheckboxItem = _chunkI3GHIU4Yjs.DropdownMenuCheckboxItem; exports.DropdownMenuContent = _chunkI3GHIU4Yjs.DropdownMenuContent; exports.DropdownMenuGroup = _chunkI3GHIU4Yjs.DropdownMenuGroup; exports.DropdownMenuItem = _chunkI3GHIU4Yjs.DropdownMenuItem; exports.DropdownMenuLabel = _chunkI3GHIU4Yjs.DropdownMenuLabel; exports.DropdownMenuPortal = _chunkI3GHIU4Yjs.DropdownMenuPortal; exports.DropdownMenuRadioGroup = _chunkI3GHIU4Yjs.DropdownMenuRadioGroup; exports.DropdownMenuRadioItem = _chunkI3GHIU4Yjs.DropdownMenuRadioItem; exports.DropdownMenuSeparator = _chunkI3GHIU4Yjs.DropdownMenuSeparator; exports.DropdownMenuShortcut = _chunkI3GHIU4Yjs.DropdownMenuShortcut; exports.DropdownMenuSub = _chunkI3GHIU4Yjs.DropdownMenuSub; exports.DropdownMenuSubContent = _chunkI3GHIU4Yjs.DropdownMenuSubContent; exports.DropdownMenuSubTrigger = _chunkI3GHIU4Yjs.DropdownMenuSubTrigger; exports.DropdownMenuTrigger = _chunkI3GHIU4Yjs.DropdownMenuTrigger; exports.EditableAvatar = _chunkI3GHIU4Yjs.EditableAvatar; exports.EditorSheet = _chunkI3GHIU4Yjs.EditorSheet; exports.EmptyState = _chunkI3GHIU4Yjs.EmptyState; exports.EntityAvatar = _chunkI3GHIU4Yjs.EntityAvatar; exports.EntityHero = _chunkI3GHIU4Yjs.EntityHero; exports.EntityHeroAvatar = _chunkI3GHIU4Yjs.EntityHeroAvatar; exports.EntityHeroLayout = _chunkI3GHIU4Yjs.EntityHeroLayout; exports.EntityHeroMetaRow = _chunkI3GHIU4Yjs.EntityHeroMetaRow; exports.EntityMultiSelector = _chunkI3GHIU4Yjs.EntityMultiSelector; exports.EntitySection = _chunkI3GHIU4Yjs.EntitySection; exports.EntitySelector = _chunkI3GHIU4Yjs.EntitySelector; exports.ErrorDetails = _chunkI3GHIU4Yjs.ErrorDetails; exports.Field = _chunkI3GHIU4Yjs.Field; exports.FieldContent = _chunkI3GHIU4Yjs.FieldContent; exports.FieldDescription = _chunkI3GHIU4Yjs.FieldDescription; exports.FieldError = _chunkI3GHIU4Yjs.FieldError; exports.FieldGroup = _chunkI3GHIU4Yjs.FieldGroup; exports.FieldLabel = _chunkI3GHIU4Yjs.FieldLabel; exports.FieldLegend = _chunkI3GHIU4Yjs.FieldLegend; exports.FieldSeparator = _chunkI3GHIU4Yjs.FieldSeparator; exports.FieldSet = _chunkI3GHIU4Yjs.FieldSet; exports.FieldTitle = _chunkI3GHIU4Yjs.FieldTitle; exports.FileInput = _chunkI3GHIU4Yjs.FileInput; exports.FileUploader = _chunkI3GHIU4Yjs.FileUploader; exports.FileUploaderContent = _chunkI3GHIU4Yjs.FileUploaderContent; exports.FileUploaderItem = _chunkI3GHIU4Yjs.FileUploaderItem; exports.FiscalDataDisplay = _chunkI3GHIU4Yjs.FiscalDataDisplay; exports.ForgotPassword = _chunkI3GHIU4Yjs.ForgotPassword; exports.Form = _chunkI3GHIU4Yjs.Form; exports.FormBlockNote = _chunkI3GHIU4Yjs.FormBlockNote; exports.FormBody = _chunkI3GHIU4Yjs.FormBody; exports.FormCheckbox = _chunkI3GHIU4Yjs.FormCheckbox; exports.FormCol = _chunkI3GHIU4Yjs.FormCol; exports.FormDate = _chunkI3GHIU4Yjs.FormDate; exports.FormDateTime = _chunkI3GHIU4Yjs.FormDateTime; exports.FormFeatures = _chunkI3GHIU4Yjs.FormFeatures; exports.FormFieldWrapper = _chunkI3GHIU4Yjs.FormFieldWrapper; exports.FormInput = _chunkI3GHIU4Yjs.FormInput; exports.FormPassword = _chunkI3GHIU4Yjs.FormPassword; exports.FormPlaceAutocomplete = _chunkI3GHIU4Yjs.FormPlaceAutocomplete; exports.FormRoles = _chunkI3GHIU4Yjs.FormRoles; exports.FormRow = _chunkI3GHIU4Yjs.FormRow; exports.FormSection = _chunkI3GHIU4Yjs.FormSection; exports.FormSelect = _chunkI3GHIU4Yjs.FormSelect; exports.FormSlider = _chunkI3GHIU4Yjs.FormSlider; exports.FormSwitch = _chunkI3GHIU4Yjs.FormSwitch; exports.FormTextarea = _chunkI3GHIU4Yjs.FormTextarea; exports.GdprConsentCheckbox = _chunkI3GHIU4Yjs.GdprConsentCheckbox; exports.GdprConsentSection = _chunkI3GHIU4Yjs.GdprConsentSection; exports.HEADER_ROW_MIN_H = _chunkI3GHIU4Yjs.HEADER_ROW_MIN_H; exports.Header = _chunkI3GHIU4Yjs.Header; exports.HoverCard = _chunkI3GHIU4Yjs.HoverCard; exports.HoverCardContent = _chunkI3GHIU4Yjs.HoverCardContent; exports.HoverCardTrigger = _chunkI3GHIU4Yjs.HoverCardTrigger; exports.HowToCommand = _chunkI3GHIU4Yjs.HowToCommand; exports.HowToCommandViewer = _chunkI3GHIU4Yjs.HowToCommandViewer; exports.HowToContainer = _chunkI3GHIU4Yjs.HowToContainer; exports.HowToContent = _chunkI3GHIU4Yjs.HowToContent; exports.HowToDeleter = _chunkI3GHIU4Yjs.HowToDeleter; exports.HowToDetails = _chunkI3GHIU4Yjs.HowToDetails; exports.HowToEditor = _chunkI3GHIU4Yjs.HowToEditor; exports.HowToList = _chunkI3GHIU4Yjs.HowToList; exports.HowToListContainer = _chunkI3GHIU4Yjs.HowToListContainer; exports.HowToMultiSelector = _chunkI3GHIU4Yjs.HowToMultiSelector; exports.HowToSelector = _chunkI3GHIU4Yjs.HowToSelector; exports.Input = _chunkI3GHIU4Yjs.Input; exports.InputGroup = _chunkI3GHIU4Yjs.InputGroup; exports.InputGroupAddon = _chunkI3GHIU4Yjs.InputGroupAddon; exports.InputGroupButton = _chunkI3GHIU4Yjs.InputGroupButton; exports.InputGroupInput = _chunkI3GHIU4Yjs.InputGroupInput; exports.InputGroupText = _chunkI3GHIU4Yjs.InputGroupText; exports.InputGroupTextarea = _chunkI3GHIU4Yjs.InputGroupTextarea; exports.InputOTP = _chunkI3GHIU4Yjs.InputOTP; exports.InputOTPGroup = _chunkI3GHIU4Yjs.InputOTPGroup; exports.InputOTPSeparator = _chunkI3GHIU4Yjs.InputOTPSeparator; exports.InputOTPSlot = _chunkI3GHIU4Yjs.InputOTPSlot; exports.ItalianFiscalData = _chunkI3GHIU4Yjs.ItalianFiscalData_default; exports.ItalianFiscalDataDisplay = _chunkI3GHIU4Yjs.ItalianFiscalDataDisplay; exports.Item = _chunkI3GHIU4Yjs.KanbanItem; exports.ItemHandle = _chunkI3GHIU4Yjs.KanbanItemHandle; exports.Kanban = _chunkI3GHIU4Yjs.KanbanRoot; exports.KanbanBoard = _chunkI3GHIU4Yjs.KanbanBoard; exports.KanbanColumn = _chunkI3GHIU4Yjs.KanbanColumn; exports.KanbanColumnHandle = _chunkI3GHIU4Yjs.KanbanColumnHandle; exports.KanbanItem = _chunkI3GHIU4Yjs.KanbanItem; exports.KanbanItemHandle = _chunkI3GHIU4Yjs.KanbanItemHandle; exports.KanbanOverlay = _chunkI3GHIU4Yjs.KanbanOverlay; exports.Label = _chunkI3GHIU4Yjs.Label; exports.LandingComponent = _chunkI3GHIU4Yjs.LandingComponent; exports.Link = _chunkI3GHIU4Yjs.Link; exports.Login = _chunkI3GHIU4Yjs.Login; exports.Logout = _chunkI3GHIU4Yjs.Logout; exports.MessageItem = _chunkI3GHIU4Yjs.MessageItem; exports.MessageList = _chunkI3GHIU4Yjs.MessageList; exports.MessageSourcesPanel = _chunkI3GHIU4Yjs.MessageSourcesPanel; exports.MicroLabel = _chunkI3GHIU4Yjs.MicroLabel; exports.MobileNavigationBar = _chunkI3GHIU4Yjs.MobileNavigationBar; exports.ModeToggleSwitch = _chunkI3GHIU4Yjs.ModeToggleSwitch; exports.MultiSelect = _chunkI3GHIU4Yjs.MultiSelect; exports.MultipleSelector = _chunkI3GHIU4Yjs.MultipleSelector; exports.NavigationMenu = _chunkI3GHIU4Yjs.NavigationMenu; exports.NavigationMenuContent = _chunkI3GHIU4Yjs.NavigationMenuContent; exports.NavigationMenuIndicator = _chunkI3GHIU4Yjs.NavigationMenuIndicator; exports.NavigationMenuItem = _chunkI3GHIU4Yjs.NavigationMenuItem; exports.NavigationMenuLink = _chunkI3GHIU4Yjs.NavigationMenuLink; exports.NavigationMenuList = _chunkI3GHIU4Yjs.NavigationMenuList; exports.NavigationMenuPositioner = _chunkI3GHIU4Yjs.NavigationMenuPositioner; exports.NavigationMenuTrigger = _chunkI3GHIU4Yjs.NavigationMenuTrigger; exports.NotificationErrorBoundary = _chunkI3GHIU4Yjs.NotificationErrorBoundary; exports.NotificationMenuItem = _chunkI3GHIU4Yjs.NotificationMenuItem; exports.NotificationModal = _chunkI3GHIU4Yjs.NotificationModal; exports.NotificationToast = _chunkI3GHIU4Yjs.NotificationToast; exports.NotificationsList = _chunkI3GHIU4Yjs.NotificationsList; exports.NotificationsListContainer = _chunkI3GHIU4Yjs.NotificationsListContainer; exports.OAuthClientCard = _chunkI3GHIU4Yjs.OAuthClientCard; exports.OAuthClientDetail = _chunkI3GHIU4Yjs.OAuthClientDetail; exports.OAuthClientForm = _chunkI3GHIU4Yjs.OAuthClientForm; exports.OAuthClientList = _chunkI3GHIU4Yjs.OAuthClientList; exports.OAuthClientSecretDisplay = _chunkI3GHIU4Yjs.OAuthClientSecretDisplay; exports.OAuthConsentActions = _chunkI3GHIU4Yjs.OAuthConsentActions; exports.OAuthConsentHeader = _chunkI3GHIU4Yjs.OAuthConsentHeader; exports.OAuthConsentScreen = _chunkI3GHIU4Yjs.OAuthConsentScreen; exports.OAuthRedirectUriInput = _chunkI3GHIU4Yjs.OAuthRedirectUriInput; exports.OAuthScopeList = _chunkI3GHIU4Yjs.OAuthScopeList; exports.OAuthScopeSelector = _chunkI3GHIU4Yjs.OAuthScopeSelector; exports.OnboardingCard = _chunkI3GHIU4Yjs.OnboardingCard; exports.Overlay = _chunkI3GHIU4Yjs.KanbanOverlay; exports.PageContainer = _chunkI3GHIU4Yjs.PageContainer; exports.PageContainerContentDetails = _chunkI3GHIU4Yjs.PageContainerContentDetails; exports.PageContentContainer = _chunkI3GHIU4Yjs.PageContentContainer; exports.PageSection = _chunkI3GHIU4Yjs.PageSection; exports.PasskeyButton = _chunkI3GHIU4Yjs.PasskeyButton; exports.PasskeyList = _chunkI3GHIU4Yjs.PasskeyList; exports.PasskeySetupDialog = _chunkI3GHIU4Yjs.PasskeySetupDialog; exports.PasswordInput = _chunkI3GHIU4Yjs.PasswordInput; exports.Popover = _chunkI3GHIU4Yjs.Popover; exports.PopoverContent = _chunkI3GHIU4Yjs.PopoverContent; exports.PopoverDescription = _chunkI3GHIU4Yjs.PopoverDescription; exports.PopoverHeader = _chunkI3GHIU4Yjs.PopoverHeader; exports.PopoverTitle = _chunkI3GHIU4Yjs.PopoverTitle; exports.PopoverTrigger = _chunkI3GHIU4Yjs.PopoverTrigger; exports.Progress = _chunkI3GHIU4Yjs.Progress; exports.ProgressIndicator = _chunkI3GHIU4Yjs.ProgressIndicator; exports.ProgressLabel = _chunkI3GHIU4Yjs.ProgressLabel; exports.ProgressTrack = _chunkI3GHIU4Yjs.ProgressTrack; exports.ProgressValue = _chunkI3GHIU4Yjs.ProgressValue; exports.PushNotificationProvider = _chunkI3GHIU4Yjs.PushNotificationProvider; exports.RadioGroup = _chunkI3GHIU4Yjs.RadioGroup; exports.RadioGroupItem = _chunkI3GHIU4Yjs.RadioGroupItem; exports.RbacByRoleContainer = _chunkI3GHIU4Yjs.RbacByRoleContainer; exports.RbacContainer = _chunkI3GHIU4Yjs.RbacContainer; exports.RbacPermissionCell = _chunkI3GHIU4Yjs.RbacPermissionCell; exports.RbacPermissionPicker = _chunkI3GHIU4Yjs.RbacPermissionPicker; exports.ReactMarkdownContainer = _chunkI3GHIU4Yjs.ReactMarkdownContainer; exports.RecentPagesNavigator = _chunkI3GHIU4Yjs.RecentPagesNavigator; exports.ReferralCodeCapture = _chunkI3GHIU4Yjs.ReferralCodeCapture; exports.ReferralDialog = _chunkI3GHIU4Yjs.ReferralDialog; exports.ReferralWidget = _chunkI3GHIU4Yjs.ReferralWidget; exports.RefreshUser = _chunkI3GHIU4Yjs.RefreshUser; exports.RelevantContentsList = _chunkI3GHIU4Yjs.RelevantContentsList; exports.RelevantUsersList = _chunkI3GHIU4Yjs.RelevantUsersList; exports.RemoveUserFromRole = _chunkI3GHIU4Yjs.RemoveUserFromRole; exports.ResetPassword = _chunkI3GHIU4Yjs.ResetPassword; exports.ResizableHandle = _chunkI3GHIU4Yjs.ResizableHandle; exports.ResizablePanel = _chunkI3GHIU4Yjs.ResizablePanel; exports.ResizablePanelGroup = _chunkI3GHIU4Yjs.ResizablePanelGroup; exports.RoleContainer = _chunkI3GHIU4Yjs.RoleContainer; exports.RoleDetails = _chunkI3GHIU4Yjs.RoleDetails; exports.RoleUsersList = _chunkI3GHIU4Yjs.RoleUsersList; exports.RolesList = _chunkI3GHIU4Yjs.RolesList; exports.Root = _chunkI3GHIU4Yjs.KanbanRoot; exports.RoundPageContainer = _chunkI3GHIU4Yjs.RoundPageContainer; exports.RoundPageContainerTitle = _chunkI3GHIU4Yjs.RoundPageContainerTitle; exports.ScrollArea = _chunkI3GHIU4Yjs.ScrollArea; exports.ScrollBar = _chunkI3GHIU4Yjs.ScrollBar; exports.SectionHeader = _chunkI3GHIU4Yjs.SectionHeader; exports.SecurityContainer = _chunkI3GHIU4Yjs.SecurityContainer; exports.Select = _chunkI3GHIU4Yjs.Select; exports.SelectContent = _chunkI3GHIU4Yjs.SelectContent; exports.SelectGroup = _chunkI3GHIU4Yjs.SelectGroup; exports.SelectItem = _chunkI3GHIU4Yjs.SelectItem; exports.SelectLabel = _chunkI3GHIU4Yjs.SelectLabel; exports.SelectScrollDownButton = _chunkI3GHIU4Yjs.SelectScrollDownButton; exports.SelectScrollUpButton = _chunkI3GHIU4Yjs.SelectScrollUpButton; exports.SelectSeparator = _chunkI3GHIU4Yjs.SelectSeparator; exports.SelectTrigger = _chunkI3GHIU4Yjs.SelectTrigger; exports.SelectValue = _chunkI3GHIU4Yjs.SelectValue; exports.Separator = _chunkI3GHIU4Yjs.Separator; exports.Sheet = _chunkI3GHIU4Yjs.Sheet; exports.SheetClose = _chunkI3GHIU4Yjs.SheetClose; exports.SheetContent = _chunkI3GHIU4Yjs.SheetContent; exports.SheetDescription = _chunkI3GHIU4Yjs.SheetDescription; exports.SheetFooter = _chunkI3GHIU4Yjs.SheetFooter; exports.SheetHeader = _chunkI3GHIU4Yjs.SheetHeader; exports.SheetTitle = _chunkI3GHIU4Yjs.SheetTitle; exports.SheetTrigger = _chunkI3GHIU4Yjs.SheetTrigger; exports.Sidebar = _chunkI3GHIU4Yjs.Sidebar; exports.SidebarContent = _chunkI3GHIU4Yjs.SidebarContent; exports.SidebarFooter = _chunkI3GHIU4Yjs.SidebarFooter; exports.SidebarGroup = _chunkI3GHIU4Yjs.SidebarGroup; exports.SidebarGroupAction = _chunkI3GHIU4Yjs.SidebarGroupAction; exports.SidebarGroupContent = _chunkI3GHIU4Yjs.SidebarGroupContent; exports.SidebarGroupLabel = _chunkI3GHIU4Yjs.SidebarGroupLabel; exports.SidebarHeader = _chunkI3GHIU4Yjs.SidebarHeader; exports.SidebarInput = _chunkI3GHIU4Yjs.SidebarInput; exports.SidebarInset = _chunkI3GHIU4Yjs.SidebarInset; exports.SidebarMenu = _chunkI3GHIU4Yjs.SidebarMenu; exports.SidebarMenuAction = _chunkI3GHIU4Yjs.SidebarMenuAction; exports.SidebarMenuBadge = _chunkI3GHIU4Yjs.SidebarMenuBadge; exports.SidebarMenuButton = _chunkI3GHIU4Yjs.SidebarMenuButton; exports.SidebarMenuItem = _chunkI3GHIU4Yjs.SidebarMenuItem; exports.SidebarMenuSkeleton = _chunkI3GHIU4Yjs.SidebarMenuSkeleton; exports.SidebarMenuSub = _chunkI3GHIU4Yjs.SidebarMenuSub; exports.SidebarMenuSubButton = _chunkI3GHIU4Yjs.SidebarMenuSubButton; exports.SidebarMenuSubItem = _chunkI3GHIU4Yjs.SidebarMenuSubItem; exports.SidebarProvider = _chunkI3GHIU4Yjs.SidebarProvider; exports.SidebarRail = _chunkI3GHIU4Yjs.SidebarRail; exports.SidebarSeparator = _chunkI3GHIU4Yjs.SidebarSeparator; exports.SidebarTrigger = _chunkI3GHIU4Yjs.SidebarTrigger; exports.Skeleton = _chunkI3GHIU4Yjs.Skeleton; exports.Slider = _chunkI3GHIU4Yjs.Slider; exports.Spinner = _chunkI3GHIU4Yjs.Spinner; exports.Switch = _chunkI3GHIU4Yjs.Switch; exports.Table = _chunkI3GHIU4Yjs.Table; exports.TableBody = _chunkI3GHIU4Yjs.TableBody; exports.TableCaption = _chunkI3GHIU4Yjs.TableCaption; exports.TableCell = _chunkI3GHIU4Yjs.TableCell; exports.TableCellAvatar = _chunkI3GHIU4Yjs.TableCellAvatar; exports.TableFooter = _chunkI3GHIU4Yjs.TableFooter; exports.TableHead = _chunkI3GHIU4Yjs.TableHead; exports.TableHeader = _chunkI3GHIU4Yjs.TableHeader; exports.TableRow = _chunkI3GHIU4Yjs.TableRow; exports.Tabs = _chunkI3GHIU4Yjs.Tabs; exports.TabsContainer = _chunkI3GHIU4Yjs.TabsContainer; exports.TabsContent = _chunkI3GHIU4Yjs.TabsContent; exports.TabsList = _chunkI3GHIU4Yjs.TabsList; exports.TabsTrigger = _chunkI3GHIU4Yjs.TabsTrigger; exports.Textarea = _chunkI3GHIU4Yjs.Textarea; exports.Toaster = _chunkI3GHIU4Yjs.Toaster; exports.Toggle = _chunkI3GHIU4Yjs.Toggle; exports.TokenStatusIndicator = _chunkI3GHIU4Yjs.TokenStatusIndicator; exports.Tooltip = _chunkI3GHIU4Yjs.Tooltip; exports.TooltipContent = _chunkI3GHIU4Yjs.TooltipContent; exports.TooltipProvider = _chunkI3GHIU4Yjs.TooltipProvider; exports.TooltipTrigger = _chunkI3GHIU4Yjs.TooltipTrigger; exports.TotpAuthenticatorList = _chunkI3GHIU4Yjs.TotpAuthenticatorList; exports.TotpInput = _chunkI3GHIU4Yjs.TotpInput; exports.TotpSetupDialog = _chunkI3GHIU4Yjs.TotpSetupDialog; exports.TwoFactorChallenge = _chunkI3GHIU4Yjs.TwoFactorChallenge; exports.TwoFactorSettings = _chunkI3GHIU4Yjs.TwoFactorSettings; exports.UserAvatar = _chunkI3GHIU4Yjs.UserAvatar; exports.UserAvatarEditor = _chunkI3GHIU4Yjs.UserAvatarEditor; exports.UserAvatarList = _chunkI3GHIU4Yjs.UserAvatarList; exports.UserContainer = _chunkI3GHIU4Yjs.UserContainer; exports.UserContent = _chunkI3GHIU4Yjs.UserContent; exports.UserDeleter = _chunkI3GHIU4Yjs.UserDeleter; exports.UserEditor = _chunkI3GHIU4Yjs.UserEditor; exports.UserIndexContainer = _chunkI3GHIU4Yjs.UserIndexContainer; exports.UserIndexDetails = _chunkI3GHIU4Yjs.UserIndexDetails; exports.UserListInAdd = _chunkI3GHIU4Yjs.UserListInAdd; exports.UserMultiSelect = _chunkI3GHIU4Yjs.UserMultiSelect; exports.UserReactivator = _chunkI3GHIU4Yjs.UserReactivator; exports.UserResentInvitationEmail = _chunkI3GHIU4Yjs.UserResentInvitationEmail; exports.UserRoleAdd = _chunkI3GHIU4Yjs.UserRoleAdd; exports.UserRolesList = _chunkI3GHIU4Yjs.UserRolesList; exports.UserSearchPopover = _chunkI3GHIU4Yjs.UserSearchPopover; exports.UserSelector = _chunkI3GHIU4Yjs.UserSelector; exports.UserStanadaloneDetails = _chunkI3GHIU4Yjs.UserStanadaloneDetails; exports.UsersList = _chunkI3GHIU4Yjs.UsersList; exports.UsersListByContentIds = _chunkI3GHIU4Yjs.UsersListByContentIds; exports.UsersListContainer = _chunkI3GHIU4Yjs.UsersListContainer; exports.WaitlistConfirmation = _chunkI3GHIU4Yjs.WaitlistConfirmation; exports.WaitlistForm = _chunkI3GHIU4Yjs.WaitlistForm; exports.WaitlistHeroSection = _chunkI3GHIU4Yjs.WaitlistHeroSection; exports.WaitlistList = _chunkI3GHIU4Yjs.WaitlistList; exports.WaitlistQuestionnaireRenderer = _chunkI3GHIU4Yjs.WaitlistQuestionnaireRenderer; exports.WaitlistSuccessState = _chunkI3GHIU4Yjs.WaitlistSuccessState; exports.badgeVariants = _chunkI3GHIU4Yjs.badgeVariants; exports.buttonVariants = _chunkI3GHIU4Yjs.buttonVariants; exports.cellComponent = _chunkI3GHIU4Yjs.cellComponent; exports.cellDate = _chunkI3GHIU4Yjs.cellDate; exports.cellDateTime = _chunkI3GHIU4Yjs.cellDateTime; exports.cellId = _chunkI3GHIU4Yjs.cellId; exports.cellLink = _chunkI3GHIU4Yjs.cellLink; exports.cellUrl = _chunkI3GHIU4Yjs.cellUrl; exports.createMentionInlineContentSpec = _chunkI3GHIU4Yjs.createMentionInlineContentSpec; exports.errorToast = _chunkI3GHIU4Yjs.errorToast; exports.generateNotificationData = _chunkI3GHIU4Yjs.generateNotificationData; exports.getIcon = _chunk6YIZX26Tjs.getIcon; exports.getIconByModule = _chunk6YIZX26Tjs.getIconByModule; exports.getIconByModuleName = _chunk6YIZX26Tjs.getIconByModuleName; exports.getInitials = _chunk6YIZX26Tjs.getInitials; exports.mentionDataAttrs = _chunkI3GHIU4Yjs.mentionDataAttrs; exports.navigationMenuTriggerStyle = _chunkI3GHIU4Yjs.navigationMenuTriggerStyle; exports.parseFiscalData = _chunkI3GHIU4Yjs.parseFiscalData; exports.parseMentionElement = _chunkI3GHIU4Yjs.parseMentionElement; exports.partitionTabs = _chunkI3GHIU4Yjs.partitionTabs; exports.spinnerVariants = _chunkI3GHIU4Yjs.spinnerVariants; exports.tabsListVariants = _chunkI3GHIU4Yjs.tabsListVariants; exports.toggleVariants = _chunkI3GHIU4Yjs.toggleVariants; exports.triggerAssociationToast = _chunkI3GHIU4Yjs.triggerAssociationToast; exports.useCarousel = _chunkI3GHIU4Yjs.useCarousel; exports.useComboboxAnchor = _chunkI3GHIU4Yjs.useComboboxAnchor; exports.useDebounce = _chunkI3GHIU4Yjs.useDebounce2; exports.useEditorDialog = _chunkI3GHIU4Yjs.useEditorDialog; exports.useFileUpload = _chunkI3GHIU4Yjs.useFileUpload; exports.useMentionInsert = _chunkI3GHIU4Yjs.useMentionInsert; exports.useSidebar = _chunkI3GHIU4Yjs.useSidebar;
|
|
987
995
|
//# 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;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;AACF,
|
|
1
|
+
{"version":3,"sources":["/home/runner/work/nextjs-jsonapi/nextjs-jsonapi/dist/components/index.js"],"names":[],"mappings":"AAAA;AACE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;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"}
|
|
@@ -27,7 +27,11 @@ import {
|
|
|
27
27
|
AlertTitle,
|
|
28
28
|
AllUsersListContainer,
|
|
29
29
|
AllowedUsersDetails,
|
|
30
|
+
ApprovalActionCard,
|
|
31
|
+
AssistantBlockNoteComposer,
|
|
30
32
|
AssistantContainer,
|
|
33
|
+
AssistantContainerWithApprovals,
|
|
34
|
+
AssistantPageContainer,
|
|
31
35
|
AttributeElement,
|
|
32
36
|
AuthContainer,
|
|
33
37
|
Avatar,
|
|
@@ -479,14 +483,14 @@ import {
|
|
|
479
483
|
useFileUpload,
|
|
480
484
|
useMentionInsert,
|
|
481
485
|
useSidebar
|
|
482
|
-
} from "../chunk-
|
|
483
|
-
import "../chunk-
|
|
486
|
+
} from "../chunk-A7AGXKZX.mjs";
|
|
487
|
+
import "../chunk-MAWTFEY3.mjs";
|
|
484
488
|
import {
|
|
485
489
|
getIcon,
|
|
486
490
|
getIconByModule,
|
|
487
491
|
getIconByModuleName,
|
|
488
492
|
getInitials
|
|
489
|
-
} from "../chunk-
|
|
493
|
+
} from "../chunk-P5TMD7GK.mjs";
|
|
490
494
|
import "../chunk-AUXK7QSA.mjs";
|
|
491
495
|
import "../chunk-C7C7VY4F.mjs";
|
|
492
496
|
import "../chunk-Z2CB63VG.mjs";
|
|
@@ -520,7 +524,11 @@ export {
|
|
|
520
524
|
AlertTitle,
|
|
521
525
|
AllUsersListContainer,
|
|
522
526
|
AllowedUsersDetails,
|
|
527
|
+
ApprovalActionCard,
|
|
528
|
+
AssistantBlockNoteComposer,
|
|
523
529
|
AssistantContainer,
|
|
530
|
+
AssistantContainerWithApprovals,
|
|
531
|
+
AssistantPageContainer,
|
|
524
532
|
AttributeElement,
|
|
525
533
|
AuthContainer,
|
|
526
534
|
Avatar,
|
|
@@ -5,9 +5,9 @@ import { c as CompanyInterface, N as NotificationInterface, e as RoleInterface,
|
|
|
5
5
|
import { O as OnboardingProviderProps, a as OnboardingContextValue } from '../onboarding.interface-Djyl9qYu.mjs';
|
|
6
6
|
export { D as DEFAULT_ONBOARDING_LABELS, g as OnboardingCardRenderProps, f as OnboardingLabels, c as OnboardingStepConfig, b as OnboardingStepSide, d as OnboardingTourConfig, e as OnboardingTourPaths } from '../onboarding.interface-Djyl9qYu.mjs';
|
|
7
7
|
import { M as ModuleWithPermissions, A as Action } from '../types-Bq_UA8Lg.mjs';
|
|
8
|
-
import { a as HowToInterface,
|
|
8
|
+
import { a as HowToInterface, B as BreadcrumbItemData, d as AssistantMessageInterface } from '../AssistantMessageInterface-Ce8FcllX.mjs';
|
|
9
9
|
import { R as RbacMatrix, A as ActionType, P as PermissionValue } from '../RbacTypes-BTbr27Ew.mjs';
|
|
10
|
-
import { a as AssistantInterface } from '../AssistantInterface-
|
|
10
|
+
import { a as AssistantInterface } from '../AssistantInterface-DMh-zApr.mjs';
|
|
11
11
|
import { LucideIcon } from 'lucide-react';
|
|
12
12
|
import { u as useSocket } from '../useSocket-M3YY0aTS.mjs';
|
|
13
13
|
import * as jotai from 'jotai';
|
|
@@ -168,6 +168,7 @@ interface AssistantContextValue {
|
|
|
168
168
|
sendMessage(content: string, opts?: {
|
|
169
169
|
howToMode?: boolean;
|
|
170
170
|
limitToHowToId?: string;
|
|
171
|
+
contentBlocks?: unknown[];
|
|
171
172
|
}): Promise<void>;
|
|
172
173
|
retrySend(tempId: string): Promise<void>;
|
|
173
174
|
selectThread(id: string): Promise<void>;
|
|
@@ -191,8 +192,33 @@ interface Props {
|
|
|
191
192
|
* current route is preserved.
|
|
192
193
|
*/
|
|
193
194
|
manageUrl?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
* Confines the provider to one bound resource (e.g. a campaign): the thread
|
|
197
|
+
* list is filtered to that resource and newly created threads are bound to
|
|
198
|
+
* it, so a scoped surface never shows or creates cross-scope threads.
|
|
199
|
+
*/
|
|
200
|
+
scope?: {
|
|
201
|
+
type: string;
|
|
202
|
+
id: string;
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* Builds the browser URL for a thread. Defaults to `/assistants/{id}` (or
|
|
206
|
+
* `/assistants` when no thread is active), which is only correct for the
|
|
207
|
+
* standalone assistant route; a scoped host passes its own builder.
|
|
208
|
+
*/
|
|
209
|
+
threadUrl?: (id?: string) => string;
|
|
210
|
+
/**
|
|
211
|
+
* Page heading. Defaults to the "Assistants" entity label; a scoped host
|
|
212
|
+
* passes something meaningful for its own surface.
|
|
213
|
+
*/
|
|
214
|
+
titleOverride?: string;
|
|
215
|
+
/**
|
|
216
|
+
* Breadcrumb trail. Defaults to a single crumb pointing at the global
|
|
217
|
+
* assistant list, which is wrong for a scoped surface.
|
|
218
|
+
*/
|
|
219
|
+
breadcrumbsOverride?: BreadcrumbItemData[];
|
|
194
220
|
}
|
|
195
|
-
declare function AssistantProvider({ children, dehydratedAssistant, dehydratedMessages, manageUrl }: Props): React__default.JSX.Element;
|
|
221
|
+
declare function AssistantProvider({ children, dehydratedAssistant, dehydratedMessages, manageUrl, titleOverride, breadcrumbsOverride, scope, threadUrl, }: Props): React__default.JSX.Element;
|
|
196
222
|
declare function useAssistantContext(): AssistantContextValue;
|
|
197
223
|
|
|
198
224
|
interface CommonContextType {
|
package/dist/contexts/index.d.ts
CHANGED
|
@@ -5,9 +5,9 @@ import { c as CompanyInterface, N as NotificationInterface, e as RoleInterface,
|
|
|
5
5
|
import { O as OnboardingProviderProps, a as OnboardingContextValue } from '../onboarding.interface-Djyl9qYu.js';
|
|
6
6
|
export { D as DEFAULT_ONBOARDING_LABELS, g as OnboardingCardRenderProps, f as OnboardingLabels, c as OnboardingStepConfig, b as OnboardingStepSide, d as OnboardingTourConfig, e as OnboardingTourPaths } from '../onboarding.interface-Djyl9qYu.js';
|
|
7
7
|
import { M as ModuleWithPermissions, A as Action } from '../types-bsm8Fp55.js';
|
|
8
|
-
import { a as HowToInterface,
|
|
8
|
+
import { a as HowToInterface, B as BreadcrumbItemData, d as AssistantMessageInterface } from '../AssistantMessageInterface-Dh0BpbP2.js';
|
|
9
9
|
import { R as RbacMatrix, A as ActionType, P as PermissionValue } from '../RbacTypes-BTbr27Ew.js';
|
|
10
|
-
import { a as AssistantInterface } from '../AssistantInterface-
|
|
10
|
+
import { a as AssistantInterface } from '../AssistantInterface-DwdBzS9f.js';
|
|
11
11
|
import { LucideIcon } from 'lucide-react';
|
|
12
12
|
import { u as useSocket } from '../useSocket-DgGAQW6h.js';
|
|
13
13
|
import * as jotai from 'jotai';
|
|
@@ -168,6 +168,7 @@ interface AssistantContextValue {
|
|
|
168
168
|
sendMessage(content: string, opts?: {
|
|
169
169
|
howToMode?: boolean;
|
|
170
170
|
limitToHowToId?: string;
|
|
171
|
+
contentBlocks?: unknown[];
|
|
171
172
|
}): Promise<void>;
|
|
172
173
|
retrySend(tempId: string): Promise<void>;
|
|
173
174
|
selectThread(id: string): Promise<void>;
|
|
@@ -191,8 +192,33 @@ interface Props {
|
|
|
191
192
|
* current route is preserved.
|
|
192
193
|
*/
|
|
193
194
|
manageUrl?: boolean;
|
|
195
|
+
/**
|
|
196
|
+
* Confines the provider to one bound resource (e.g. a campaign): the thread
|
|
197
|
+
* list is filtered to that resource and newly created threads are bound to
|
|
198
|
+
* it, so a scoped surface never shows or creates cross-scope threads.
|
|
199
|
+
*/
|
|
200
|
+
scope?: {
|
|
201
|
+
type: string;
|
|
202
|
+
id: string;
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* Builds the browser URL for a thread. Defaults to `/assistants/{id}` (or
|
|
206
|
+
* `/assistants` when no thread is active), which is only correct for the
|
|
207
|
+
* standalone assistant route; a scoped host passes its own builder.
|
|
208
|
+
*/
|
|
209
|
+
threadUrl?: (id?: string) => string;
|
|
210
|
+
/**
|
|
211
|
+
* Page heading. Defaults to the "Assistants" entity label; a scoped host
|
|
212
|
+
* passes something meaningful for its own surface.
|
|
213
|
+
*/
|
|
214
|
+
titleOverride?: string;
|
|
215
|
+
/**
|
|
216
|
+
* Breadcrumb trail. Defaults to a single crumb pointing at the global
|
|
217
|
+
* assistant list, which is wrong for a scoped surface.
|
|
218
|
+
*/
|
|
219
|
+
breadcrumbsOverride?: BreadcrumbItemData[];
|
|
194
220
|
}
|
|
195
|
-
declare function AssistantProvider({ children, dehydratedAssistant, dehydratedMessages, manageUrl }: Props): React__default.JSX.Element;
|
|
221
|
+
declare function AssistantProvider({ children, dehydratedAssistant, dehydratedMessages, manageUrl, titleOverride, breadcrumbsOverride, scope, threadUrl, }: Props): React__default.JSX.Element;
|
|
196
222
|
declare function useAssistantContext(): AssistantContextValue;
|
|
197
223
|
|
|
198
224
|
interface CommonContextType {
|
package/dist/contexts/index.js
CHANGED
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
var
|
|
42
|
-
require('../chunk-
|
|
43
|
-
require('../chunk-
|
|
41
|
+
var _chunkI3GHIU4Yjs = require('../chunk-I3GHIU4Y.js');
|
|
42
|
+
require('../chunk-JG7MCYCW.js');
|
|
43
|
+
require('../chunk-6YIZX26T.js');
|
|
44
44
|
require('../chunk-LXKSUWAV.js');
|
|
45
45
|
require('../chunk-IBS6NI7D.js');
|
|
46
46
|
require('../chunk-QWCAOLBD.js');
|
|
@@ -85,5 +85,5 @@ require('../chunk-7QVYU63E.js');
|
|
|
85
85
|
|
|
86
86
|
|
|
87
87
|
|
|
88
|
-
exports.AssistantProvider =
|
|
88
|
+
exports.AssistantProvider = _chunkI3GHIU4Yjs.AssistantProvider; exports.CommonProvider = _chunkI3GHIU4Yjs.CommonProvider; exports.CompanyProvider = _chunkI3GHIU4Yjs.CompanyProvider; exports.CurrentUserProvider = _chunkI3GHIU4Yjs.CurrentUserProvider; exports.DEFAULT_ONBOARDING_LABELS = _chunkI3GHIU4Yjs.DEFAULT_ONBOARDING_LABELS; exports.HeaderChildrenProvider = _chunkI3GHIU4Yjs.HeaderChildrenProvider; exports.HeaderLeftContentProvider = _chunkI3GHIU4Yjs.HeaderLeftContentProvider; exports.HeaderLogoProvider = _chunkI3GHIU4Yjs.HeaderLogoProvider; exports.HowToProvider = _chunkI3GHIU4Yjs.HowToProvider; exports.MobileNavigationProvider = _chunkI3GHIU4Yjs.MobileNavigationProvider; exports.NotificationContextProvider = _chunkI3GHIU4Yjs.NotificationContextProvider; exports.OnboardingProvider = _chunkI3GHIU4Yjs.OnboardingProvider; exports.RbacProvider = _chunkI3GHIU4Yjs.RbacProvider; exports.RoleProvider = _chunkI3GHIU4Yjs.RoleProvider; exports.SharedProvider = _chunkI3GHIU4Yjs.SharedProvider; exports.SocketContext = _chunkI3GHIU4Yjs.SocketContext; exports.SocketProvider = _chunkI3GHIU4Yjs.SocketProvider; exports.UserProvider = _chunkI3GHIU4Yjs.UserProvider; exports.ViewportProvider = _chunkI3GHIU4Yjs.ViewportProvider; exports.recentPagesAtom = _chunkI3GHIU4Yjs.recentPagesAtom; exports.useAssistantContext = _chunkI3GHIU4Yjs.useAssistantContext; exports.useCommonContext = _chunkI3GHIU4Yjs.useCommonContext; exports.useCompanyContext = _chunkI3GHIU4Yjs.useCompanyContext; exports.useCurrentUserContext = _chunkI3GHIU4Yjs.useCurrentUserContext; exports.useHeaderChildren = _chunkI3GHIU4Yjs.useHeaderChildren; exports.useHeaderLeftContent = _chunkI3GHIU4Yjs.useHeaderLeftContent; exports.useHeaderLogo = _chunkI3GHIU4Yjs.useHeaderLogo; exports.useHeaderMobileChildren = _chunkI3GHIU4Yjs.useHeaderMobileChildren; exports.useHeaderRootLabel = _chunkI3GHIU4Yjs.useHeaderRootLabel; exports.useHowToContext = _chunkI3GHIU4Yjs.useHowToContext; exports.useMobileNavigationItems = _chunkI3GHIU4Yjs.useMobileNavigationItems; exports.useNotificationContext = _chunkI3GHIU4Yjs.useNotificationContext; exports.useOnboarding = _chunkI3GHIU4Yjs.useOnboarding; exports.useRbacContext = _chunkI3GHIU4Yjs.useRbacContext; exports.useRoleContext = _chunkI3GHIU4Yjs.useRoleContext; exports.useSharedContext = _chunkI3GHIU4Yjs.useSharedContext; exports.useSocketContext = _chunkI3GHIU4Yjs.useSocketContext; exports.useUserContext = _chunkI3GHIU4Yjs.useUserContext;
|
|
89
89
|
//# sourceMappingURL=index.js.map
|
package/dist/contexts/index.mjs
CHANGED
|
@@ -38,9 +38,9 @@ import {
|
|
|
38
38
|
useSharedContext,
|
|
39
39
|
useSocketContext,
|
|
40
40
|
useUserContext
|
|
41
|
-
} from "../chunk-
|
|
42
|
-
import "../chunk-
|
|
43
|
-
import "../chunk-
|
|
41
|
+
} from "../chunk-A7AGXKZX.mjs";
|
|
42
|
+
import "../chunk-MAWTFEY3.mjs";
|
|
43
|
+
import "../chunk-P5TMD7GK.mjs";
|
|
44
44
|
import "../chunk-AUXK7QSA.mjs";
|
|
45
45
|
import "../chunk-C7C7VY4F.mjs";
|
|
46
46
|
import "../chunk-Z2CB63VG.mjs";
|
package/dist/core/index.d.mts
CHANGED
|
@@ -30,7 +30,7 @@ import { PublicKeyCredentialCreationOptionsJSON, RegistrationResponseJSON, Publi
|
|
|
30
30
|
import { M as MeterInterface, o as MeterSummaryInterface, P as PaymentMethodInterface, S as StripeCustomerInterface, a as StripeInvoiceInterface, j as StripeSubscriptionInterface, I as InvoiceStatus, g as StripeProductInterface, d as StripePriceInterface, h as StripeProductInput, e as PriceRecurring, f as StripePriceInput, i as SubscriptionStatus, k as StripeSubscriptionInput, m as StripeSubscriptionCreateResponse, b as ProrationPreviewInterface, n as StripeUsageInterface, R as ReportUsageInput, U as UsageSummaryInterface, q as PromotionCodeValidationResult } from '../stripe-promotion-code.interface-ClZ7DxS9.mjs';
|
|
31
31
|
export { c as ProrationLineItem, l as StripeSubscriptionCreateMeta, p as UsageRecordInterface } from '../stripe-promotion-code.interface-ClZ7DxS9.mjs';
|
|
32
32
|
import { M as ModuleInterface, F as FeatureInterface } from '../feature.interface-CXb1-vNq.mjs';
|
|
33
|
-
import { a as AssistantInterface, A as AssistantInput } from '../AssistantInterface-
|
|
33
|
+
import { a as AssistantInterface, A as AssistantInput } from '../AssistantInterface-DMh-zApr.mjs';
|
|
34
34
|
import { O as OAuthClientInterface, a as OAuthClientInput, b as OAuthClientCreateRequest, c as OAuthClientCreateResponse, d as OAuthConsentRequest, f as OAuthConsentInfo } from '../oauth.interface-DRE3NAKc.mjs';
|
|
35
35
|
export { A as AVAILABLE_OAUTH_SCOPES, D as DEFAULT_GRANT_TYPES, g as OAUTH_SCOPE_DISPLAY, e as OAuthScopeInfo } from '../oauth.interface-DRE3NAKc.mjs';
|
|
36
36
|
import 'lucide-react';
|
|
@@ -203,6 +203,7 @@ interface FoundationModuleDefinitions {
|
|
|
203
203
|
HowTo: ModuleWithPermissions;
|
|
204
204
|
Assistant: ModuleWithPermissions;
|
|
205
205
|
AssistantMessage: ModuleWithPermissions;
|
|
206
|
+
AssistantAction: ModuleWithPermissions;
|
|
206
207
|
Chunk: ModuleWithPermissions;
|
|
207
208
|
Billing: ModuleWithPermissions;
|
|
208
209
|
StripeCustomer: ModuleWithPermissions;
|
|
@@ -1828,12 +1829,24 @@ declare class Assistant extends AbstractApiData implements AssistantInterface {
|
|
|
1828
1829
|
private _title?;
|
|
1829
1830
|
private _messageCount?;
|
|
1830
1831
|
private _engine?;
|
|
1832
|
+
private _boundContentType?;
|
|
1833
|
+
private _boundContentId?;
|
|
1831
1834
|
get title(): string;
|
|
1832
1835
|
get messageCount(): number;
|
|
1833
1836
|
get engine(): string | undefined;
|
|
1837
|
+
get boundContentType(): string | undefined;
|
|
1838
|
+
get boundContentId(): string | undefined;
|
|
1834
1839
|
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
1835
1840
|
createJsonApi(data: AssistantInput): {
|
|
1836
1841
|
data: {
|
|
1842
|
+
relationships?: {
|
|
1843
|
+
content: {
|
|
1844
|
+
data: {
|
|
1845
|
+
type: string;
|
|
1846
|
+
id: string;
|
|
1847
|
+
};
|
|
1848
|
+
};
|
|
1849
|
+
} | undefined;
|
|
1837
1850
|
type: string;
|
|
1838
1851
|
attributes: {
|
|
1839
1852
|
limitToHowToId?: string | undefined;
|
|
@@ -1850,8 +1863,15 @@ declare class AssistantService extends AbstractService {
|
|
|
1850
1863
|
static findOne(params: {
|
|
1851
1864
|
id: string;
|
|
1852
1865
|
}): Promise<AssistantInterface>;
|
|
1866
|
+
/**
|
|
1867
|
+
* Lists threads. `boundType`/`boundId` narrow the list to the threads bound
|
|
1868
|
+
* to one resource (e.g. a campaign), so a scoped surface never shows the
|
|
1869
|
+
* user's unrelated threads.
|
|
1870
|
+
*/
|
|
1853
1871
|
static findMany(params?: {
|
|
1854
1872
|
fetchAll?: boolean;
|
|
1873
|
+
boundType?: string;
|
|
1874
|
+
boundId?: string;
|
|
1855
1875
|
}): Promise<AssistantInterface[]>;
|
|
1856
1876
|
static create(params: AssistantInput): Promise<AssistantInterface>;
|
|
1857
1877
|
/**
|
|
@@ -1873,6 +1893,8 @@ declare class AssistantService extends AbstractService {
|
|
|
1873
1893
|
content: string;
|
|
1874
1894
|
howToMode?: boolean;
|
|
1875
1895
|
limitToHowToId?: string;
|
|
1896
|
+
/** BlockNote document. Serialised by the model into `content`; never its own attribute. */
|
|
1897
|
+
contentBlocks?: unknown[];
|
|
1876
1898
|
}): Promise<AssistantMessageInterface[]>;
|
|
1877
1899
|
/**
|
|
1878
1900
|
* Operator-engine variant of `appendMessage()`. Targets
|
|
@@ -1883,6 +1905,8 @@ declare class AssistantService extends AbstractService {
|
|
|
1883
1905
|
static appendMessageOperator(params: {
|
|
1884
1906
|
assistantId: string;
|
|
1885
1907
|
content: string;
|
|
1908
|
+
/** BlockNote document. Serialised by the model into `content`; never its own attribute. */
|
|
1909
|
+
contentBlocks?: unknown[];
|
|
1886
1910
|
}): Promise<AssistantMessageInterface[]>;
|
|
1887
1911
|
static rename(params: {
|
|
1888
1912
|
id: string;
|
|
@@ -1949,6 +1973,7 @@ declare class AssistantMessage extends AbstractApiData implements AssistantMessa
|
|
|
1949
1973
|
content: string;
|
|
1950
1974
|
howToMode?: boolean;
|
|
1951
1975
|
limitToHowToId?: string;
|
|
1976
|
+
contentBlocks?: unknown[];
|
|
1952
1977
|
}): {
|
|
1953
1978
|
data: {
|
|
1954
1979
|
type: string;
|
|
@@ -1979,6 +2004,78 @@ declare class AssistantMessageService extends AbstractService {
|
|
|
1979
2004
|
}): Promise<void>;
|
|
1980
2005
|
}
|
|
1981
2006
|
|
|
2007
|
+
declare const AssistantActionModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2008
|
+
|
|
2009
|
+
/**
|
|
2010
|
+
* Lifecycle of a destructive tool call the operator engine paused on.
|
|
2011
|
+
* Only `pending` is actionable from the UI.
|
|
2012
|
+
*/
|
|
2013
|
+
type AssistantActionStatus = "pending" | "approved" | "denied" | "expired" | "executed" | "failed";
|
|
2014
|
+
/**
|
|
2015
|
+
* The frontend never creates assistant actions — the operator engine does.
|
|
2016
|
+
* The input therefore carries the id alone, so `createJsonApi()` can emit a
|
|
2017
|
+
* well-formed (if minimal) JSON:API resource object.
|
|
2018
|
+
*/
|
|
2019
|
+
type AssistantActionInput = {
|
|
2020
|
+
id: string;
|
|
2021
|
+
};
|
|
2022
|
+
interface AssistantActionInterface extends ApiDataInterface {
|
|
2023
|
+
get status(): AssistantActionStatus;
|
|
2024
|
+
get toolName(): string;
|
|
2025
|
+
get summary(): string;
|
|
2026
|
+
get resolvedAt(): Date | undefined;
|
|
2027
|
+
get expiresAt(): Date | undefined;
|
|
2028
|
+
}
|
|
2029
|
+
|
|
2030
|
+
declare class AssistantAction extends AbstractApiData implements AssistantActionInterface {
|
|
2031
|
+
private _status?;
|
|
2032
|
+
private _toolName?;
|
|
2033
|
+
private _summary?;
|
|
2034
|
+
private _resolvedAt?;
|
|
2035
|
+
private _expiresAt?;
|
|
2036
|
+
get status(): AssistantActionStatus;
|
|
2037
|
+
get toolName(): string;
|
|
2038
|
+
get summary(): string;
|
|
2039
|
+
get resolvedAt(): Date | undefined;
|
|
2040
|
+
get expiresAt(): Date | undefined;
|
|
2041
|
+
rehydrate(data: JsonApiHydratedDataInterface): this;
|
|
2042
|
+
/**
|
|
2043
|
+
* Minimal payload (id only): the frontend never POSTs assistant actions —
|
|
2044
|
+
* approve/deny are body-less POSTs handled by AssistantActionService.
|
|
2045
|
+
*/
|
|
2046
|
+
createJsonApi(data: AssistantActionInput): {
|
|
2047
|
+
data: {
|
|
2048
|
+
type: string;
|
|
2049
|
+
id: string;
|
|
2050
|
+
attributes: {};
|
|
2051
|
+
};
|
|
2052
|
+
included: never[];
|
|
2053
|
+
};
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
declare class AssistantActionService extends AbstractService {
|
|
2057
|
+
/**
|
|
2058
|
+
* GET single assistant action by ID
|
|
2059
|
+
*/
|
|
2060
|
+
static findOne(params: {
|
|
2061
|
+
id: string;
|
|
2062
|
+
}): Promise<AssistantActionInterface>;
|
|
2063
|
+
/**
|
|
2064
|
+
* POST (body-less) approve action — resumes the paused run and
|
|
2065
|
+
* returns the resumed assistant message.
|
|
2066
|
+
*/
|
|
2067
|
+
static approve(params: {
|
|
2068
|
+
id: string;
|
|
2069
|
+
}): Promise<AssistantMessageInterface>;
|
|
2070
|
+
/**
|
|
2071
|
+
* POST (body-less) deny action — resumes the paused run with a denial and
|
|
2072
|
+
* returns the resumed assistant message.
|
|
2073
|
+
*/
|
|
2074
|
+
static deny(params: {
|
|
2075
|
+
id: string;
|
|
2076
|
+
}): Promise<AssistantMessageInterface>;
|
|
2077
|
+
}
|
|
2078
|
+
|
|
1982
2079
|
declare const ChunkModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
1983
2080
|
|
|
1984
2081
|
declare class Chunk extends AbstractApiData implements ChunkInterface {
|
|
@@ -2374,4 +2471,4 @@ declare class AuditLogService extends AbstractService {
|
|
|
2374
2471
|
|
|
2375
2472
|
declare const AuditLogModule: (factory: ModuleFactory) => ModuleWithPermissions;
|
|
2376
2473
|
|
|
2377
|
-
export { AbstractApiData, AbstractService, Action, ApiData, ApiDataInterface, ApiRequestDataTypeInterface, ApiResponseInterface, type AppModuleDefinitions, Assistant, 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, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|
|
2474
|
+
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, rehydrate, rehydrateList, resetBootstrapStore, setBootstrapper, setClientGlobalErrorHandler, showCustomToast, showError, showToast, translateData, translateResponse, tryBootstrap, useComposedRefs, useIsMobile, userObjectSchema, validateCodiceFiscale, validateItalianTaxCode, validatePartitaIva };
|