@uipath/apollo-wind 0.9.1 → 0.10.0-pr219.61d64eb
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/components/custom/canvas.cjs +44 -0
- package/dist/components/custom/canvas.d.ts +14 -0
- package/dist/components/custom/canvas.js +10 -0
- package/dist/components/custom/chat-composer.cjs +105 -0
- package/dist/components/custom/chat-composer.d.ts +15 -0
- package/dist/components/custom/chat-composer.js +71 -0
- package/dist/components/custom/chat-first-experience.cjs +87 -0
- package/dist/components/custom/chat-first-experience.d.ts +24 -0
- package/dist/components/custom/chat-first-experience.js +53 -0
- package/dist/components/custom/chat-prompt-suggestions.cjs +48 -0
- package/dist/components/custom/chat-prompt-suggestions.d.ts +18 -0
- package/dist/components/custom/chat-prompt-suggestions.js +14 -0
- package/dist/components/custom/chat-steps-view.cjs +307 -0
- package/dist/components/custom/chat-steps-view.d.ts +38 -0
- package/dist/components/custom/chat-steps-view.js +273 -0
- package/dist/components/custom/flow-node.cjs +76 -0
- package/dist/components/custom/flow-node.d.ts +20 -0
- package/dist/components/custom/flow-node.js +42 -0
- package/dist/components/custom/flow-properties-bar.cjs +101 -0
- package/dist/components/custom/flow-properties-bar.d.ts +21 -0
- package/dist/components/custom/flow-properties-bar.js +67 -0
- package/dist/components/custom/flow-properties-expanded.cjs +324 -0
- package/dist/components/custom/flow-properties-expanded.d.ts +19 -0
- package/dist/components/custom/flow-properties-expanded.js +290 -0
- package/dist/components/custom/flow-properties-simple.cjs +357 -0
- package/dist/components/custom/flow-properties-simple.d.ts +62 -0
- package/dist/components/custom/flow-properties-simple.js +323 -0
- package/dist/components/custom/flow-properties.cjs +56 -0
- package/dist/components/custom/flow-properties.d.ts +28 -0
- package/dist/components/custom/flow-properties.js +22 -0
- package/dist/components/custom/global-header.cjs +415 -0
- package/dist/components/custom/global-header.d.ts +38 -0
- package/dist/components/custom/global-header.js +381 -0
- package/dist/components/custom/grid-maestro.cjs +62 -0
- package/dist/components/custom/grid-maestro.d.ts +19 -0
- package/dist/components/custom/grid-maestro.js +22 -0
- package/dist/components/custom/panel-delegate.cjs +280 -0
- package/dist/components/custom/panel-delegate.d.ts +34 -0
- package/dist/components/custom/panel-delegate.js +246 -0
- package/dist/components/custom/panel-flow.cjs +260 -0
- package/dist/components/custom/panel-flow.d.ts +38 -0
- package/dist/components/custom/panel-flow.js +223 -0
- package/dist/components/custom/panel-maestro.cjs +73 -0
- package/dist/components/custom/panel-maestro.d.ts +30 -0
- package/dist/components/custom/panel-maestro.js +39 -0
- package/dist/components/custom/toolbar-canvas.cjs +121 -0
- package/dist/components/custom/toolbar-canvas.d.ts +15 -0
- package/dist/components/custom/toolbar-canvas.js +87 -0
- package/dist/components/custom/toolbar-view.cjs +119 -0
- package/dist/components/custom/toolbar-view.d.ts +14 -0
- package/dist/components/custom/toolbar-view.js +85 -0
- package/dist/components/custom/viewport-guard.cjs +92 -0
- package/dist/components/custom/viewport-guard.d.ts +23 -0
- package/dist/components/custom/viewport-guard.js +55 -0
- package/dist/components/ui/button.cjs +3 -3
- package/dist/components/ui/button.js +3 -3
- package/dist/components/ui/chart.cjs +218 -0
- package/dist/components/ui/chart.d.ts +40 -0
- package/dist/components/ui/chart.js +169 -0
- package/dist/components/ui/data-table.cjs +14 -2
- package/dist/components/ui/data-table.d.ts +4 -1
- package/dist/components/ui/data-table.js +15 -3
- package/dist/components/ui/empty-state.cjs +17 -6
- package/dist/components/ui/empty-state.d.ts +7 -0
- package/dist/components/ui/empty-state.js +17 -6
- package/dist/components/ui/file-upload.cjs +82 -42
- package/dist/components/ui/file-upload.d.ts +3 -1
- package/dist/components/ui/file-upload.js +82 -42
- package/dist/components/ui/index.cjs +289 -149
- package/dist/components/ui/index.d.ts +2 -3
- package/dist/components/ui/index.js +2 -3
- package/dist/components/ui/tree-view.cjs +1101 -0
- package/dist/components/ui/tree-view.d.ts +95 -0
- package/dist/components/ui/tree-view.js +1067 -0
- package/dist/foundation/Future/colors.cjs +92 -0
- package/dist/foundation/Future/colors.d.ts +132 -0
- package/dist/foundation/Future/colors.js +43 -0
- package/dist/foundation/Future/radius.cjs +46 -0
- package/dist/foundation/Future/radius.d.ts +33 -0
- package/dist/foundation/Future/radius.js +12 -0
- package/dist/foundation/Future/responsive.cjs +49 -0
- package/dist/foundation/Future/responsive.d.ts +40 -0
- package/dist/foundation/Future/responsive.js +12 -0
- package/dist/foundation/Future/shadows.cjs +48 -0
- package/dist/foundation/Future/shadows.d.ts +29 -0
- package/dist/foundation/Future/shadows.js +11 -0
- package/dist/foundation/Future/spacing.cjs +71 -0
- package/dist/foundation/Future/spacing.d.ts +80 -0
- package/dist/foundation/Future/spacing.js +31 -0
- package/dist/foundation/Future/strokes.cjs +59 -0
- package/dist/foundation/Future/strokes.d.ts +49 -0
- package/dist/foundation/Future/strokes.js +19 -0
- package/dist/foundation/Future/types.cjs +18 -0
- package/dist/foundation/Future/types.d.ts +18 -0
- package/dist/foundation/Future/types.js +0 -0
- package/dist/foundation/Future/typography.cjs +79 -0
- package/dist/foundation/Future/typography.d.ts +86 -0
- package/dist/foundation/Future/typography.js +33 -0
- package/dist/index.cjs +125 -219
- package/dist/index.d.ts +2 -3
- package/dist/index.js +2 -4
- package/dist/src/foundation/Future/themes.css +371 -0
- package/dist/styles.css +1704 -582
- package/dist/tailwind.css +4 -0
- package/dist/templates/Admin/settings-admin.d.ts +5 -0
- package/dist/templates/Admin/template-admin.d.ts +105 -0
- package/dist/templates/Delegate/template-delegate.d.ts +26 -0
- package/dist/templates/EmptyErrors/error-components.d.ts +3 -0
- package/dist/templates/Experiments/ideas-AnimatedGradientText.d.ts +23 -0
- package/dist/templates/Flow/template-flow.d.ts +52 -0
- package/dist/templates/Maestro/template-maestro.d.ts +52 -0
- package/dist/templates/{vscode-example.d.ts → VisualStudio/shell.d.ts} +1 -1
- package/package.json +10 -1
- package/dist/components/ui/menubar.cjs +0 -210
- package/dist/components/ui/menubar.d.ts +0 -28
- package/dist/components/ui/menubar.js +0 -131
- package/dist/components/ui/navigation-menu.cjs +0 -122
- package/dist/components/ui/navigation-menu.d.ts +0 -12
- package/dist/components/ui/navigation-menu.js +0 -64
- package/dist/examples/admin-layout-example.cjs +0 -490
- package/dist/examples/admin-layout-example.d.ts +0 -92
- package/dist/examples/admin-layout-example.js +0 -411
- package/dist/examples/app-shell-example.cjs +0 -452
- package/dist/examples/app-shell-example.d.ts +0 -52
- package/dist/examples/app-shell-example.js +0 -418
- package/dist/examples/dashboard-example.cjs +0 -590
- package/dist/examples/dashboard-example.d.ts +0 -11
- package/dist/examples/dashboard-example.js +0 -556
- package/dist/examples/data-management-example.cjs +0 -584
- package/dist/examples/data-management-example.d.ts +0 -1
- package/dist/examples/data-management-example.js +0 -550
- package/dist/examples/flow-editor-layout-example.cjs +0 -309
- package/dist/examples/flow-editor-layout-example.d.ts +0 -22
- package/dist/examples/flow-editor-layout-example.js +0 -269
- package/dist/examples/flow-start-example.cjs +0 -467
- package/dist/examples/flow-start-example.d.ts +0 -30
- package/dist/examples/flow-start-example.js +0 -433
- package/dist/examples/form-builder-example.cjs +0 -674
- package/dist/examples/form-builder-example.js +0 -640
- package/dist/examples/new-project-example.cjs +0 -550
- package/dist/examples/new-project-example.d.ts +0 -30
- package/dist/examples/new-project-example.js +0 -516
- package/dist/examples/settings-example.cjs +0 -864
- package/dist/examples/settings-example.d.ts +0 -1
- package/dist/examples/settings-example.js +0 -830
- package/dist/examples/vscode-example.cjs +0 -340
- package/dist/examples/vscode-example.d.ts +0 -80
- package/dist/examples/vscode-example.js +0 -270
- package/dist/templates/admin-layout-example.d.ts +0 -92
- package/dist/templates/app-shell-example.d.ts +0 -52
- package/dist/templates/dashboard-example.d.ts +0 -11
- package/dist/templates/data-management-example.d.ts +0 -1
- package/dist/templates/flow-editor-layout-example.d.ts +0 -22
- package/dist/templates/flow-start-example.d.ts +0 -30
- package/dist/templates/form-builder-example.d.ts +0 -1
- package/dist/templates/new-project-example.d.ts +0 -30
- package/dist/templates/settings-example.d.ts +0 -1
- /package/dist/{examples → templates/Forms}/form-builder-example.d.ts +0 -0
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __webpack_require__ = {};
|
|
3
|
+
(()=>{
|
|
4
|
+
__webpack_require__.n = (module)=>{
|
|
5
|
+
var getter = module && module.__esModule ? ()=>module['default'] : ()=>module;
|
|
6
|
+
__webpack_require__.d(getter, {
|
|
7
|
+
a: getter
|
|
8
|
+
});
|
|
9
|
+
return getter;
|
|
10
|
+
};
|
|
11
|
+
})();
|
|
3
12
|
(()=>{
|
|
4
13
|
__webpack_require__.d = (exports1, definition)=>{
|
|
5
14
|
for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
|
|
@@ -25,249 +34,215 @@ var __webpack_exports__ = {};
|
|
|
25
34
|
__webpack_require__.r(__webpack_exports__);
|
|
26
35
|
__webpack_require__.d(__webpack_exports__, {
|
|
27
36
|
PaginationLink: ()=>pagination_cjs_namespaceObject.PaginationLink,
|
|
28
|
-
|
|
37
|
+
ContextMenuCheckboxItem: ()=>context_menu_cjs_namespaceObject.ContextMenuCheckboxItem,
|
|
29
38
|
AlertDialogContent: ()=>alert_dialog_cjs_namespaceObject.AlertDialogContent,
|
|
30
|
-
|
|
39
|
+
DialogHeader: ()=>dialog_cjs_namespaceObject.DialogHeader,
|
|
40
|
+
isCustomField: ()=>form_schema_cjs_namespaceObject.isCustomField,
|
|
31
41
|
Row: ()=>row_cjs_namespaceObject.Row,
|
|
32
42
|
Combobox: ()=>combobox_cjs_namespaceObject.Combobox,
|
|
33
|
-
|
|
43
|
+
TableCaption: ()=>table_cjs_namespaceObject.TableCaption,
|
|
34
44
|
DropdownMenuSubContent: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuSubContent,
|
|
45
|
+
SheetClose: ()=>sheet_cjs_namespaceObject.SheetClose,
|
|
35
46
|
CommandEmpty: ()=>command_cjs_namespaceObject.CommandEmpty,
|
|
36
47
|
Skeleton: ()=>skeleton_cjs_namespaceObject.Skeleton,
|
|
37
|
-
|
|
38
|
-
|
|
48
|
+
AlertDialogOverlay: ()=>alert_dialog_cjs_namespaceObject.AlertDialogOverlay,
|
|
49
|
+
PaginationContent: ()=>pagination_cjs_namespaceObject.PaginationContent,
|
|
50
|
+
DropdownMenuSubTrigger: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuSubTrigger,
|
|
51
|
+
ButtonGroupText: ()=>button_group_cjs_namespaceObject.ButtonGroupText,
|
|
52
|
+
SelectGroup: ()=>select_cjs_namespaceObject.SelectGroup,
|
|
39
53
|
ContextMenuLabel: ()=>context_menu_cjs_namespaceObject.ContextMenuLabel,
|
|
54
|
+
TooltipTrigger: ()=>tooltip_cjs_namespaceObject.TooltipTrigger,
|
|
55
|
+
ContextMenuSeparator: ()=>context_menu_cjs_namespaceObject.ContextMenuSeparator,
|
|
56
|
+
DropdownMenuContent: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuContent,
|
|
40
57
|
ContextMenuSub: ()=>context_menu_cjs_namespaceObject.ContextMenuSub,
|
|
41
58
|
PopoverTrigger: ()=>popover_cjs_namespaceObject.PopoverTrigger,
|
|
42
|
-
|
|
59
|
+
Separator: ()=>separator_cjs_namespaceObject.Separator,
|
|
60
|
+
TreeView: ()=>tree_view_cjs_default(),
|
|
43
61
|
CardDescription: ()=>card_cjs_namespaceObject.CardDescription,
|
|
62
|
+
ContextMenuContent: ()=>context_menu_cjs_namespaceObject.ContextMenuContent,
|
|
63
|
+
Pagination: ()=>pagination_cjs_namespaceObject.Pagination,
|
|
44
64
|
SheetFooter: ()=>sheet_cjs_namespaceObject.SheetFooter,
|
|
65
|
+
auditPlugin: ()=>form_plugins_cjs_namespaceObject.auditPlugin,
|
|
66
|
+
toast: ()=>sonner_cjs_namespaceObject.toast,
|
|
45
67
|
CommandSeparator: ()=>command_cjs_namespaceObject.CommandSeparator,
|
|
68
|
+
FormFieldRenderer: ()=>field_renderer_cjs_namespaceObject.FormFieldRenderer,
|
|
69
|
+
EditableCell: ()=>editable_cell_cjs_namespaceObject.EditableCell,
|
|
46
70
|
Spinner: ()=>spinner_cjs_namespaceObject.Spinner,
|
|
47
71
|
buttonVariants: ()=>button_cjs_namespaceObject.buttonVariants,
|
|
48
|
-
DrawerContent: ()=>drawer_cjs_namespaceObject.DrawerContent,
|
|
49
|
-
DrawerDescription: ()=>drawer_cjs_namespaceObject.DrawerDescription,
|
|
50
72
|
SheetOverlay: ()=>sheet_cjs_namespaceObject.SheetOverlay,
|
|
51
73
|
AlertDialogPortal: ()=>alert_dialog_cjs_namespaceObject.AlertDialogPortal,
|
|
74
|
+
DropdownMenuGroup: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuGroup,
|
|
75
|
+
TabsContent: ()=>tabs_cjs_namespaceObject.TabsContent,
|
|
52
76
|
TabsList: ()=>tabs_cjs_namespaceObject.TabsList,
|
|
77
|
+
ContextMenuItem: ()=>context_menu_cjs_namespaceObject.ContextMenuItem,
|
|
78
|
+
TooltipContent: ()=>tooltip_cjs_namespaceObject.TooltipContent,
|
|
53
79
|
TableBody: ()=>table_cjs_namespaceObject.TableBody,
|
|
54
80
|
AvatarImage: ()=>avatar_cjs_namespaceObject.AvatarImage,
|
|
55
81
|
RuleBuilder: ()=>rules_engine_cjs_namespaceObject.RuleBuilder,
|
|
56
|
-
|
|
82
|
+
toggleVariants: ()=>toggle_cjs_namespaceObject.toggleVariants,
|
|
57
83
|
AlertDialogTitle: ()=>alert_dialog_cjs_namespaceObject.AlertDialogTitle,
|
|
58
84
|
DataSourceBuilder: ()=>data_fetcher_cjs_namespaceObject.DataSourceBuilder,
|
|
85
|
+
BreadcrumbEllipsis: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbEllipsis,
|
|
86
|
+
BreadcrumbLink: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbLink,
|
|
59
87
|
badgeVariants: ()=>badge_cjs_namespaceObject.badgeVariants,
|
|
60
88
|
createEditableColumn: ()=>editable_cell_cjs_namespaceObject.createEditableColumn,
|
|
61
|
-
|
|
62
|
-
|
|
89
|
+
AccordionItem: ()=>accordion_cjs_namespaceObject.AccordionItem,
|
|
90
|
+
DropdownMenuLabel: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuLabel,
|
|
63
91
|
Column: ()=>column_cjs_namespaceObject.Column,
|
|
64
92
|
AlertDialogTrigger: ()=>alert_dialog_cjs_namespaceObject.AlertDialogTrigger,
|
|
65
|
-
|
|
93
|
+
SheetHeader: ()=>sheet_cjs_namespaceObject.SheetHeader,
|
|
94
|
+
formattingPlugin: ()=>form_plugins_cjs_namespaceObject.formattingPlugin,
|
|
66
95
|
CardContent: ()=>card_cjs_namespaceObject.CardContent,
|
|
96
|
+
ContextMenuSubTrigger: ()=>context_menu_cjs_namespaceObject.ContextMenuSubTrigger,
|
|
97
|
+
MetadataForm: ()=>metadata_form_cjs_namespaceObject.MetadataForm,
|
|
67
98
|
SelectValue: ()=>select_cjs_namespaceObject.SelectValue,
|
|
68
|
-
|
|
99
|
+
DialogFooter: ()=>dialog_cjs_namespaceObject.DialogFooter,
|
|
100
|
+
Card: ()=>card_cjs_namespaceObject.Card,
|
|
69
101
|
ContextMenuSubContent: ()=>context_menu_cjs_namespaceObject.ContextMenuSubContent,
|
|
102
|
+
DropdownMenuCheckboxItem: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuCheckboxItem,
|
|
70
103
|
AvatarFallback: ()=>avatar_cjs_namespaceObject.AvatarFallback,
|
|
71
104
|
ContextMenu: ()=>context_menu_cjs_namespaceObject.ContextMenu,
|
|
72
105
|
BreadcrumbItem: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbItem,
|
|
106
|
+
Sheet: ()=>sheet_cjs_namespaceObject.Sheet,
|
|
107
|
+
Slider: ()=>slider_cjs_namespaceObject.Slider,
|
|
73
108
|
AlertDialogFooter: ()=>alert_dialog_cjs_namespaceObject.AlertDialogFooter,
|
|
74
109
|
SelectSeparator: ()=>select_cjs_namespaceObject.SelectSeparator,
|
|
75
110
|
Select: ()=>select_cjs_namespaceObject.Select,
|
|
76
111
|
Stepper: ()=>stepper_cjs_namespaceObject.Stepper,
|
|
77
112
|
HoverCard: ()=>hover_card_cjs_namespaceObject.HoverCard,
|
|
78
113
|
SelectScrollUpButton: ()=>select_cjs_namespaceObject.SelectScrollUpButton,
|
|
114
|
+
AlertDialog: ()=>alert_dialog_cjs_namespaceObject.AlertDialog,
|
|
79
115
|
CommandItem: ()=>command_cjs_namespaceObject.CommandItem,
|
|
80
116
|
ResizablePanel: ()=>resizable_cjs_namespaceObject.ResizablePanel,
|
|
81
|
-
TooltipProvider: ()=>tooltip_cjs_namespaceObject.TooltipProvider,
|
|
82
|
-
TableFooter: ()=>table_cjs_namespaceObject.TableFooter,
|
|
83
|
-
Command: ()=>command_cjs_namespaceObject.Command,
|
|
84
|
-
NavigationMenuLink: ()=>navigation_menu_cjs_namespaceObject.NavigationMenuLink,
|
|
85
|
-
Grid: ()=>grid_cjs_namespaceObject.Grid,
|
|
86
|
-
SheetTitle: ()=>sheet_cjs_namespaceObject.SheetTitle,
|
|
87
|
-
AccordionContent: ()=>accordion_cjs_namespaceObject.AccordionContent,
|
|
88
|
-
DialogPortal: ()=>dialog_cjs_namespaceObject.DialogPortal,
|
|
89
|
-
DropdownMenuSub: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuSub,
|
|
90
|
-
SelectLabel: ()=>select_cjs_namespaceObject.SelectLabel,
|
|
91
|
-
CardTitle: ()=>card_cjs_namespaceObject.CardTitle,
|
|
92
|
-
ExpressionBuilder: ()=>rules_engine_cjs_namespaceObject.ExpressionBuilder,
|
|
93
|
-
Input: ()=>input_cjs_namespaceObject.Input,
|
|
94
|
-
TableHeader: ()=>table_cjs_namespaceObject.TableHeader,
|
|
95
|
-
Toaster: ()=>sonner_cjs_namespaceObject.Toaster,
|
|
96
|
-
DialogTitle: ()=>dialog_cjs_namespaceObject.DialogTitle,
|
|
97
|
-
DrawerPortal: ()=>drawer_cjs_namespaceObject.DrawerPortal,
|
|
98
|
-
Popover: ()=>popover_cjs_namespaceObject.Popover,
|
|
99
|
-
TableCell: ()=>table_cjs_namespaceObject.TableCell,
|
|
100
|
-
MenubarGroup: ()=>menubar_cjs_namespaceObject.MenubarGroup,
|
|
101
|
-
Switch: ()=>switch_cjs_namespaceObject.Switch,
|
|
102
|
-
Toggle: ()=>toggle_cjs_namespaceObject.Toggle,
|
|
103
|
-
AlertDialogHeader: ()=>alert_dialog_cjs_namespaceObject.AlertDialogHeader,
|
|
104
|
-
NavigationMenu: ()=>navigation_menu_cjs_namespaceObject.NavigationMenu,
|
|
105
|
-
MenubarRadioGroup: ()=>menubar_cjs_namespaceObject.MenubarRadioGroup,
|
|
106
|
-
AlertDialogAction: ()=>alert_dialog_cjs_namespaceObject.AlertDialogAction,
|
|
107
|
-
TableHead: ()=>table_cjs_namespaceObject.TableHead,
|
|
108
|
-
Tabs: ()=>tabs_cjs_namespaceObject.Tabs,
|
|
109
|
-
CollapsibleContent: ()=>collapsible_cjs_namespaceObject.CollapsibleContent,
|
|
110
|
-
DropdownMenuTrigger: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuTrigger,
|
|
111
|
-
ContextMenuTrigger: ()=>context_menu_cjs_namespaceObject.ContextMenuTrigger,
|
|
112
|
-
CommandGroup: ()=>command_cjs_namespaceObject.CommandGroup,
|
|
113
|
-
RulesEngine: ()=>rules_engine_cjs_namespaceObject.RulesEngine,
|
|
114
|
-
SelectScrollDownButton: ()=>select_cjs_namespaceObject.SelectScrollDownButton,
|
|
115
|
-
BreadcrumbList: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbList,
|
|
116
|
-
hasMinMaxStep: ()=>form_schema_cjs_namespaceObject.hasMinMaxStep,
|
|
117
|
-
SearchWithSuggestions: ()=>search_cjs_namespaceObject.SearchWithSuggestions,
|
|
118
|
-
MenubarSeparator: ()=>menubar_cjs_namespaceObject.MenubarSeparator,
|
|
119
|
-
DrawerHeader: ()=>drawer_cjs_namespaceObject.DrawerHeader,
|
|
120
|
-
Button: ()=>button_cjs_namespaceObject.Button,
|
|
121
|
-
DropdownMenuShortcut: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuShortcut,
|
|
122
|
-
FetchAdapter: ()=>data_fetcher_cjs_namespaceObject.FetchAdapter,
|
|
123
|
-
DataTableSelectColumn: ()=>data_table_cjs_namespaceObject.DataTableSelectColumn,
|
|
124
|
-
FormStateViewer: ()=>form_state_viewer_cjs_namespaceObject.FormStateViewer,
|
|
125
|
-
CollapsibleTrigger: ()=>collapsible_cjs_namespaceObject.CollapsibleTrigger,
|
|
126
|
-
RadioGroup: ()=>radio_group_cjs_namespaceObject.RadioGroup,
|
|
127
|
-
navigationMenuTriggerStyle: ()=>navigation_menu_cjs_namespaceObject.navigationMenuTriggerStyle,
|
|
128
|
-
MultiSelect: ()=>multi_select_cjs_namespaceObject.MultiSelect,
|
|
129
|
-
AspectRatio: ()=>aspect_ratio_cjs_namespaceObject.AspectRatio,
|
|
130
|
-
DropdownMenuRadioItem: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuRadioItem,
|
|
131
|
-
Alert: ()=>alert_cjs_namespaceObject.Alert,
|
|
132
|
-
CommandDialog: ()=>command_cjs_namespaceObject.CommandDialog,
|
|
133
|
-
ResizableHandle: ()=>resizable_cjs_namespaceObject.ResizableHandle,
|
|
134
|
-
Accordion: ()=>accordion_cjs_namespaceObject.Accordion,
|
|
135
|
-
SheetContent: ()=>sheet_cjs_namespaceObject.SheetContent,
|
|
136
|
-
AlertDescription: ()=>alert_cjs_namespaceObject.AlertDescription,
|
|
137
|
-
ContextMenuRadioItem: ()=>context_menu_cjs_namespaceObject.ContextMenuRadioItem,
|
|
138
|
-
Dialog: ()=>dialog_cjs_namespaceObject.Dialog,
|
|
139
|
-
DatePicker: ()=>date_picker_cjs_namespaceObject.DatePicker,
|
|
140
|
-
RadioGroupItem: ()=>radio_group_cjs_namespaceObject.RadioGroupItem,
|
|
141
|
-
PopoverAnchor: ()=>popover_cjs_namespaceObject.PopoverAnchor,
|
|
142
|
-
DrawerClose: ()=>drawer_cjs_namespaceObject.DrawerClose,
|
|
143
|
-
ScrollBar: ()=>scroll_area_cjs_namespaceObject.ScrollBar,
|
|
144
|
-
ButtonGroupSeparator: ()=>button_group_cjs_namespaceObject.ButtonGroupSeparator,
|
|
145
|
-
DropdownMenuSeparator: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuSeparator,
|
|
146
|
-
ResizablePanelGroup: ()=>resizable_cjs_namespaceObject.ResizablePanelGroup,
|
|
147
|
-
autoSavePlugin: ()=>form_plugins_cjs_namespaceObject.autoSavePlugin,
|
|
148
|
-
ContextMenuCheckboxItem: ()=>context_menu_cjs_namespaceObject.ContextMenuCheckboxItem,
|
|
149
|
-
isCustomField: ()=>form_schema_cjs_namespaceObject.isCustomField,
|
|
150
|
-
TableCaption: ()=>table_cjs_namespaceObject.TableCaption,
|
|
151
|
-
TooltipTrigger: ()=>tooltip_cjs_namespaceObject.TooltipTrigger,
|
|
152
|
-
SheetClose: ()=>sheet_cjs_namespaceObject.SheetClose,
|
|
153
|
-
AlertDialogOverlay: ()=>alert_dialog_cjs_namespaceObject.AlertDialogOverlay,
|
|
154
|
-
PaginationContent: ()=>pagination_cjs_namespaceObject.PaginationContent,
|
|
155
|
-
DropdownMenuSubTrigger: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuSubTrigger,
|
|
156
|
-
ButtonGroupText: ()=>button_group_cjs_namespaceObject.ButtonGroupText,
|
|
157
|
-
SelectGroup: ()=>select_cjs_namespaceObject.SelectGroup,
|
|
158
|
-
ContextMenuSeparator: ()=>context_menu_cjs_namespaceObject.ContextMenuSeparator,
|
|
159
|
-
DropdownMenuContent: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuContent,
|
|
160
|
-
Separator: ()=>separator_cjs_namespaceObject.Separator,
|
|
161
|
-
MenubarSubTrigger: ()=>menubar_cjs_namespaceObject.MenubarSubTrigger,
|
|
162
|
-
Pagination: ()=>pagination_cjs_namespaceObject.Pagination,
|
|
163
|
-
ContextMenuContent: ()=>context_menu_cjs_namespaceObject.ContextMenuContent,
|
|
164
|
-
FormFieldRenderer: ()=>field_renderer_cjs_namespaceObject.FormFieldRenderer,
|
|
165
|
-
DrawerTitle: ()=>drawer_cjs_namespaceObject.DrawerTitle,
|
|
166
|
-
EditableCell: ()=>editable_cell_cjs_namespaceObject.EditableCell,
|
|
167
|
-
TabsContent: ()=>tabs_cjs_namespaceObject.TabsContent,
|
|
168
|
-
TooltipContent: ()=>tooltip_cjs_namespaceObject.TooltipContent,
|
|
169
|
-
DropdownMenuGroup: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuGroup,
|
|
170
|
-
ContextMenuItem: ()=>context_menu_cjs_namespaceObject.ContextMenuItem,
|
|
171
|
-
BreadcrumbEllipsis: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbEllipsis,
|
|
172
|
-
BreadcrumbLink: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbLink,
|
|
173
|
-
AccordionItem: ()=>accordion_cjs_namespaceObject.AccordionItem,
|
|
174
|
-
DropdownMenuLabel: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuLabel,
|
|
175
|
-
formattingPlugin: ()=>form_plugins_cjs_namespaceObject.formattingPlugin,
|
|
176
|
-
ContextMenuSubTrigger: ()=>context_menu_cjs_namespaceObject.ContextMenuSubTrigger,
|
|
177
|
-
MetadataForm: ()=>metadata_form_cjs_namespaceObject.MetadataForm,
|
|
178
|
-
NavigationMenuTrigger: ()=>navigation_menu_cjs_namespaceObject.NavigationMenuTrigger,
|
|
179
|
-
DialogFooter: ()=>dialog_cjs_namespaceObject.DialogFooter,
|
|
180
|
-
Card: ()=>card_cjs_namespaceObject.Card,
|
|
181
|
-
MenubarRadioItem: ()=>menubar_cjs_namespaceObject.MenubarRadioItem,
|
|
182
|
-
DropdownMenuCheckboxItem: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuCheckboxItem,
|
|
183
|
-
Sheet: ()=>sheet_cjs_namespaceObject.Sheet,
|
|
184
|
-
NavigationMenuViewport: ()=>navigation_menu_cjs_namespaceObject.NavigationMenuViewport,
|
|
185
|
-
cn: ()=>utils_cjs_namespaceObject.cn,
|
|
186
|
-
AlertDialog: ()=>alert_dialog_cjs_namespaceObject.AlertDialog,
|
|
187
117
|
EmptyState: ()=>empty_state_cjs_namespaceObject.EmptyState,
|
|
188
118
|
ScrollArea: ()=>scroll_area_cjs_namespaceObject.ScrollArea,
|
|
119
|
+
Command: ()=>command_cjs_namespaceObject.Command,
|
|
189
120
|
PaginationNext: ()=>pagination_cjs_namespaceObject.PaginationNext,
|
|
121
|
+
Grid: ()=>grid_cjs_namespaceObject.Grid,
|
|
190
122
|
Label: ()=>label_cjs_namespaceObject.Label,
|
|
191
|
-
|
|
123
|
+
SheetTitle: ()=>sheet_cjs_namespaceObject.SheetTitle,
|
|
124
|
+
AccordionContent: ()=>accordion_cjs_namespaceObject.AccordionContent,
|
|
192
125
|
Checkbox: ()=>checkbox_cjs_namespaceObject.Checkbox,
|
|
193
126
|
DropdownMenuItem: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuItem,
|
|
194
127
|
ContextMenuGroup: ()=>context_menu_cjs_namespaceObject.ContextMenuGroup,
|
|
195
|
-
|
|
128
|
+
TableFooter: ()=>table_cjs_namespaceObject.TableFooter,
|
|
129
|
+
TooltipProvider: ()=>tooltip_cjs_namespaceObject.TooltipProvider,
|
|
196
130
|
DataFetcher: ()=>data_fetcher_cjs_namespaceObject.DataFetcher,
|
|
131
|
+
DialogPortal: ()=>dialog_cjs_namespaceObject.DialogPortal,
|
|
132
|
+
analyticsPlugin: ()=>form_plugins_cjs_namespaceObject.analyticsPlugin,
|
|
133
|
+
cn: ()=>utils_cjs_namespaceObject.cn,
|
|
134
|
+
DropdownMenuSub: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuSub,
|
|
197
135
|
ButtonGroup: ()=>button_group_cjs_namespaceObject.ButtonGroup,
|
|
198
136
|
PopoverContent: ()=>popover_cjs_namespaceObject.PopoverContent,
|
|
199
137
|
DialogOverlay: ()=>dialog_cjs_namespaceObject.DialogOverlay,
|
|
138
|
+
SelectLabel: ()=>select_cjs_namespaceObject.SelectLabel,
|
|
139
|
+
CardTitle: ()=>card_cjs_namespaceObject.CardTitle,
|
|
200
140
|
CardFooter: ()=>card_cjs_namespaceObject.CardFooter,
|
|
201
|
-
StatsCard: ()=>stats_card_cjs_namespaceObject.StatsCard,
|
|
202
141
|
Avatar: ()=>avatar_cjs_namespaceObject.Avatar,
|
|
142
|
+
ExpressionBuilder: ()=>rules_engine_cjs_namespaceObject.ExpressionBuilder,
|
|
203
143
|
BreadcrumbSeparator: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbSeparator,
|
|
204
144
|
DataTable: ()=>data_table_cjs_namespaceObject.DataTable,
|
|
205
|
-
|
|
145
|
+
Input: ()=>input_cjs_namespaceObject.Input,
|
|
206
146
|
PaginationItem: ()=>pagination_cjs_namespaceObject.PaginationItem,
|
|
207
|
-
SheetTrigger: ()=>sheet_cjs_namespaceObject.SheetTrigger,
|
|
208
147
|
Calendar: ()=>calendar_cjs_namespaceObject.Calendar,
|
|
209
|
-
|
|
210
|
-
|
|
148
|
+
DialogTitle: ()=>dialog_cjs_namespaceObject.DialogTitle,
|
|
149
|
+
SheetTrigger: ()=>sheet_cjs_namespaceObject.SheetTrigger,
|
|
150
|
+
StatsCard: ()=>stats_card_cjs_namespaceObject.StatsCard,
|
|
151
|
+
TableHeader: ()=>table_cjs_namespaceObject.TableHeader,
|
|
152
|
+
Popover: ()=>popover_cjs_namespaceObject.Popover,
|
|
211
153
|
AlertTitle: ()=>alert_cjs_namespaceObject.AlertTitle,
|
|
154
|
+
TabsTrigger: ()=>tabs_cjs_namespaceObject.TabsTrigger,
|
|
212
155
|
Collapsible: ()=>collapsible_cjs_namespaceObject.Collapsible,
|
|
156
|
+
TableCell: ()=>table_cjs_namespaceObject.TableCell,
|
|
157
|
+
Toaster: ()=>sonner_cjs_namespaceObject.Toaster,
|
|
213
158
|
DateTimePicker: ()=>datetime_picker_cjs_namespaceObject.DateTimePicker,
|
|
159
|
+
Tooltip: ()=>tooltip_cjs_namespaceObject.Tooltip,
|
|
160
|
+
Toggle: ()=>toggle_cjs_namespaceObject.Toggle,
|
|
161
|
+
Switch: ()=>switch_cjs_namespaceObject.Switch,
|
|
214
162
|
PaginationEllipsis: ()=>pagination_cjs_namespaceObject.PaginationEllipsis,
|
|
215
163
|
DialogDescription: ()=>dialog_cjs_namespaceObject.DialogDescription,
|
|
216
|
-
|
|
217
|
-
MenubarContent: ()=>menubar_cjs_namespaceObject.MenubarContent,
|
|
164
|
+
AlertDialogHeader: ()=>alert_dialog_cjs_namespaceObject.AlertDialogHeader,
|
|
218
165
|
CommandShortcut: ()=>command_cjs_namespaceObject.CommandShortcut,
|
|
219
|
-
MenubarItem: ()=>menubar_cjs_namespaceObject.MenubarItem,
|
|
220
|
-
MenubarShortcut: ()=>menubar_cjs_namespaceObject.MenubarShortcut,
|
|
221
166
|
Textarea: ()=>textarea_cjs_namespaceObject.Textarea,
|
|
167
|
+
AlertDialogAction: ()=>alert_dialog_cjs_namespaceObject.AlertDialogAction,
|
|
222
168
|
SelectItem: ()=>select_cjs_namespaceObject.SelectItem,
|
|
169
|
+
TableHead: ()=>table_cjs_namespaceObject.TableHead,
|
|
170
|
+
Tabs: ()=>tabs_cjs_namespaceObject.Tabs,
|
|
223
171
|
DialogClose: ()=>dialog_cjs_namespaceObject.DialogClose,
|
|
224
172
|
Badge: ()=>badge_cjs_namespaceObject.Badge,
|
|
173
|
+
CollapsibleContent: ()=>collapsible_cjs_namespaceObject.CollapsibleContent,
|
|
174
|
+
DropdownMenuTrigger: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuTrigger,
|
|
225
175
|
SheetDescription: ()=>sheet_cjs_namespaceObject.SheetDescription,
|
|
226
|
-
validationPlugin: ()=>form_plugins_cjs_namespaceObject.validationPlugin,
|
|
227
176
|
hasOptions: ()=>form_schema_cjs_namespaceObject.hasOptions,
|
|
177
|
+
validationPlugin: ()=>form_plugins_cjs_namespaceObject.validationPlugin,
|
|
178
|
+
ContextMenuTrigger: ()=>context_menu_cjs_namespaceObject.ContextMenuTrigger,
|
|
228
179
|
Table: ()=>table_cjs_namespaceObject.Table,
|
|
180
|
+
CommandGroup: ()=>command_cjs_namespaceObject.CommandGroup,
|
|
229
181
|
BreadcrumbPage: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbPage,
|
|
182
|
+
RulesEngine: ()=>rules_engine_cjs_namespaceObject.RulesEngine,
|
|
230
183
|
ToggleGroupItem: ()=>toggle_group_cjs_namespaceObject.ToggleGroupItem,
|
|
231
184
|
ContextMenuPortal: ()=>context_menu_cjs_namespaceObject.ContextMenuPortal,
|
|
232
185
|
SelectContent: ()=>select_cjs_namespaceObject.SelectContent,
|
|
233
186
|
ContextMenuRadioGroup: ()=>context_menu_cjs_namespaceObject.ContextMenuRadioGroup,
|
|
234
|
-
NavigationMenuContent: ()=>navigation_menu_cjs_namespaceObject.NavigationMenuContent,
|
|
235
187
|
CommandList: ()=>command_cjs_namespaceObject.CommandList,
|
|
188
|
+
BreadcrumbList: ()=>breadcrumb_cjs_namespaceObject.BreadcrumbList,
|
|
236
189
|
AccordionTrigger: ()=>accordion_cjs_namespaceObject.AccordionTrigger,
|
|
237
|
-
workflowPlugin: ()=>form_plugins_cjs_namespaceObject.workflowPlugin,
|
|
238
190
|
PaginationPrevious: ()=>pagination_cjs_namespaceObject.PaginationPrevious,
|
|
191
|
+
SearchWithSuggestions: ()=>search_cjs_namespaceObject.SearchWithSuggestions,
|
|
192
|
+
SelectScrollDownButton: ()=>select_cjs_namespaceObject.SelectScrollDownButton,
|
|
239
193
|
SheetPortal: ()=>sheet_cjs_namespaceObject.SheetPortal,
|
|
194
|
+
hasMinMaxStep: ()=>form_schema_cjs_namespaceObject.hasMinMaxStep,
|
|
240
195
|
isFileField: ()=>form_schema_cjs_namespaceObject.isFileField,
|
|
196
|
+
workflowPlugin: ()=>form_plugins_cjs_namespaceObject.workflowPlugin,
|
|
241
197
|
AlertDialogDescription: ()=>alert_dialog_cjs_namespaceObject.AlertDialogDescription,
|
|
242
198
|
CommandInput: ()=>command_cjs_namespaceObject.CommandInput,
|
|
199
|
+
Button: ()=>button_cjs_namespaceObject.Button,
|
|
200
|
+
DropdownMenuShortcut: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuShortcut,
|
|
201
|
+
FetchAdapter: ()=>data_fetcher_cjs_namespaceObject.FetchAdapter,
|
|
202
|
+
DataTableSelectColumn: ()=>data_table_cjs_namespaceObject.DataTableSelectColumn,
|
|
203
|
+
FormStateViewer: ()=>form_state_viewer_cjs_namespaceObject.FormStateViewer,
|
|
204
|
+
CollapsibleTrigger: ()=>collapsible_cjs_namespaceObject.CollapsibleTrigger,
|
|
243
205
|
DropdownMenu: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenu,
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
206
|
+
RadioGroup: ()=>radio_group_cjs_namespaceObject.RadioGroup,
|
|
207
|
+
MultiSelect: ()=>multi_select_cjs_namespaceObject.MultiSelect,
|
|
208
|
+
AspectRatio: ()=>aspect_ratio_cjs_namespaceObject.AspectRatio,
|
|
247
209
|
DataTableColumnHeader: ()=>data_table_cjs_namespaceObject.DataTableColumnHeader,
|
|
248
210
|
DialogContent: ()=>dialog_cjs_namespaceObject.DialogContent,
|
|
211
|
+
Alert: ()=>alert_cjs_namespaceObject.Alert,
|
|
249
212
|
DialogTrigger: ()=>dialog_cjs_namespaceObject.DialogTrigger,
|
|
213
|
+
CommandDialog: ()=>command_cjs_namespaceObject.CommandDialog,
|
|
250
214
|
DropdownMenuRadioGroup: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuRadioGroup,
|
|
215
|
+
DropdownMenuRadioItem: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuRadioItem,
|
|
216
|
+
Accordion: ()=>accordion_cjs_namespaceObject.Accordion,
|
|
251
217
|
FormDesigner: ()=>form_designer_cjs_namespaceObject.FormDesigner,
|
|
252
218
|
Progress: ()=>progress_cjs_namespaceObject.Progress,
|
|
253
|
-
|
|
254
|
-
TableRow: ()=>table_cjs_namespaceObject.TableRow,
|
|
255
|
-
Search: ()=>search_cjs_namespaceObject.Search,
|
|
219
|
+
ResizableHandle: ()=>resizable_cjs_namespaceObject.ResizableHandle,
|
|
256
220
|
AlertDialogCancel: ()=>alert_dialog_cjs_namespaceObject.AlertDialogCancel,
|
|
257
|
-
|
|
221
|
+
Search: ()=>search_cjs_namespaceObject.Search,
|
|
222
|
+
SheetContent: ()=>sheet_cjs_namespaceObject.SheetContent,
|
|
223
|
+
TableRow: ()=>table_cjs_namespaceObject.TableRow,
|
|
224
|
+
AlertDescription: ()=>alert_cjs_namespaceObject.AlertDescription,
|
|
225
|
+
ToggleGroup: ()=>toggle_group_cjs_namespaceObject.ToggleGroup,
|
|
226
|
+
ContextMenuRadioItem: ()=>context_menu_cjs_namespaceObject.ContextMenuRadioItem,
|
|
227
|
+
Dialog: ()=>dialog_cjs_namespaceObject.Dialog,
|
|
228
|
+
DatePicker: ()=>date_picker_cjs_namespaceObject.DatePicker,
|
|
258
229
|
SelectTrigger: ()=>select_cjs_namespaceObject.SelectTrigger,
|
|
230
|
+
spinnerVariants: ()=>spinner_cjs_namespaceObject.spinnerVariants,
|
|
259
231
|
DataTransformers: ()=>data_fetcher_cjs_namespaceObject.DataTransformers,
|
|
260
|
-
|
|
261
|
-
|
|
232
|
+
RadioGroupItem: ()=>radio_group_cjs_namespaceObject.RadioGroupItem,
|
|
233
|
+
PopoverAnchor: ()=>popover_cjs_namespaceObject.PopoverAnchor,
|
|
262
234
|
DropdownMenuPortal: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuPortal,
|
|
263
|
-
|
|
235
|
+
ButtonGroupSeparator: ()=>button_group_cjs_namespaceObject.ButtonGroupSeparator,
|
|
236
|
+
DropdownMenuSeparator: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuSeparator,
|
|
264
237
|
Breadcrumb: ()=>breadcrumb_cjs_namespaceObject.Breadcrumb,
|
|
265
238
|
ContextMenuShortcut: ()=>context_menu_cjs_namespaceObject.ContextMenuShortcut,
|
|
266
|
-
|
|
239
|
+
HoverCardTrigger: ()=>hover_card_cjs_namespaceObject.HoverCardTrigger,
|
|
240
|
+
ResizablePanelGroup: ()=>resizable_cjs_namespaceObject.ResizablePanelGroup,
|
|
267
241
|
CardHeader: ()=>card_cjs_namespaceObject.CardHeader,
|
|
268
242
|
HoverCardContent: ()=>hover_card_cjs_namespaceObject.HoverCardContent,
|
|
269
|
-
|
|
270
|
-
FileUpload: ()=>file_upload_cjs_namespaceObject.FileUpload
|
|
243
|
+
ScrollBar: ()=>scroll_area_cjs_namespaceObject.ScrollBar,
|
|
244
|
+
FileUpload: ()=>file_upload_cjs_namespaceObject.FileUpload,
|
|
245
|
+
autoSavePlugin: ()=>form_plugins_cjs_namespaceObject.autoSavePlugin
|
|
271
246
|
});
|
|
272
247
|
const utils_cjs_namespaceObject = require("./lib/utils.cjs");
|
|
273
248
|
const row_cjs_namespaceObject = require("./components/ui/layout/row.cjs");
|
|
@@ -303,10 +278,11 @@ const progress_cjs_namespaceObject = require("./components/ui/progress.cjs");
|
|
|
303
278
|
const skeleton_cjs_namespaceObject = require("./components/ui/skeleton.cjs");
|
|
304
279
|
const spinner_cjs_namespaceObject = require("./components/ui/spinner.cjs");
|
|
305
280
|
const empty_state_cjs_namespaceObject = require("./components/ui/empty-state.cjs");
|
|
281
|
+
const tree_view_cjs_namespaceObject = require("./components/ui/tree-view.cjs");
|
|
282
|
+
var tree_view_cjs_default = /*#__PURE__*/ __webpack_require__.n(tree_view_cjs_namespaceObject);
|
|
306
283
|
const dialog_cjs_namespaceObject = require("./components/ui/dialog.cjs");
|
|
307
284
|
const alert_dialog_cjs_namespaceObject = require("./components/ui/alert-dialog.cjs");
|
|
308
285
|
const sheet_cjs_namespaceObject = require("./components/ui/sheet.cjs");
|
|
309
|
-
const drawer_cjs_namespaceObject = require("./components/ui/drawer.cjs");
|
|
310
286
|
const popover_cjs_namespaceObject = require("./components/ui/popover.cjs");
|
|
311
287
|
const tooltip_cjs_namespaceObject = require("./components/ui/tooltip.cjs");
|
|
312
288
|
const hover_card_cjs_namespaceObject = require("./components/ui/hover-card.cjs");
|
|
@@ -316,11 +292,9 @@ const tabs_cjs_namespaceObject = require("./components/ui/tabs.cjs");
|
|
|
316
292
|
const breadcrumb_cjs_namespaceObject = require("./components/ui/breadcrumb.cjs");
|
|
317
293
|
const pagination_cjs_namespaceObject = require("./components/ui/pagination.cjs");
|
|
318
294
|
const stepper_cjs_namespaceObject = require("./components/ui/stepper.cjs");
|
|
319
|
-
const navigation_menu_cjs_namespaceObject = require("./components/ui/navigation-menu.cjs");
|
|
320
295
|
const dropdown_menu_cjs_namespaceObject = require("./components/ui/dropdown-menu.cjs");
|
|
321
296
|
const context_menu_cjs_namespaceObject = require("./components/ui/context-menu.cjs");
|
|
322
297
|
const command_cjs_namespaceObject = require("./components/ui/command.cjs");
|
|
323
|
-
const menubar_cjs_namespaceObject = require("./components/ui/menubar.cjs");
|
|
324
298
|
const accordion_cjs_namespaceObject = require("./components/ui/accordion.cjs");
|
|
325
299
|
const collapsible_cjs_namespaceObject = require("./components/ui/collapsible.cjs");
|
|
326
300
|
const scroll_area_cjs_namespaceObject = require("./components/ui/scroll-area.cjs");
|
|
@@ -424,16 +398,6 @@ exports.DialogOverlay = __webpack_exports__.DialogOverlay;
|
|
|
424
398
|
exports.DialogPortal = __webpack_exports__.DialogPortal;
|
|
425
399
|
exports.DialogTitle = __webpack_exports__.DialogTitle;
|
|
426
400
|
exports.DialogTrigger = __webpack_exports__.DialogTrigger;
|
|
427
|
-
exports.Drawer = __webpack_exports__.Drawer;
|
|
428
|
-
exports.DrawerClose = __webpack_exports__.DrawerClose;
|
|
429
|
-
exports.DrawerContent = __webpack_exports__.DrawerContent;
|
|
430
|
-
exports.DrawerDescription = __webpack_exports__.DrawerDescription;
|
|
431
|
-
exports.DrawerFooter = __webpack_exports__.DrawerFooter;
|
|
432
|
-
exports.DrawerHeader = __webpack_exports__.DrawerHeader;
|
|
433
|
-
exports.DrawerOverlay = __webpack_exports__.DrawerOverlay;
|
|
434
|
-
exports.DrawerPortal = __webpack_exports__.DrawerPortal;
|
|
435
|
-
exports.DrawerTitle = __webpack_exports__.DrawerTitle;
|
|
436
|
-
exports.DrawerTrigger = __webpack_exports__.DrawerTrigger;
|
|
437
401
|
exports.DropdownMenu = __webpack_exports__.DropdownMenu;
|
|
438
402
|
exports.DropdownMenuCheckboxItem = __webpack_exports__.DropdownMenuCheckboxItem;
|
|
439
403
|
exports.DropdownMenuContent = __webpack_exports__.DropdownMenuContent;
|
|
@@ -463,32 +427,8 @@ exports.HoverCardContent = __webpack_exports__.HoverCardContent;
|
|
|
463
427
|
exports.HoverCardTrigger = __webpack_exports__.HoverCardTrigger;
|
|
464
428
|
exports.Input = __webpack_exports__.Input;
|
|
465
429
|
exports.Label = __webpack_exports__.Label;
|
|
466
|
-
exports.Menubar = __webpack_exports__.Menubar;
|
|
467
|
-
exports.MenubarCheckboxItem = __webpack_exports__.MenubarCheckboxItem;
|
|
468
|
-
exports.MenubarContent = __webpack_exports__.MenubarContent;
|
|
469
|
-
exports.MenubarGroup = __webpack_exports__.MenubarGroup;
|
|
470
|
-
exports.MenubarItem = __webpack_exports__.MenubarItem;
|
|
471
|
-
exports.MenubarLabel = __webpack_exports__.MenubarLabel;
|
|
472
|
-
exports.MenubarMenu = __webpack_exports__.MenubarMenu;
|
|
473
|
-
exports.MenubarPortal = __webpack_exports__.MenubarPortal;
|
|
474
|
-
exports.MenubarRadioGroup = __webpack_exports__.MenubarRadioGroup;
|
|
475
|
-
exports.MenubarRadioItem = __webpack_exports__.MenubarRadioItem;
|
|
476
|
-
exports.MenubarSeparator = __webpack_exports__.MenubarSeparator;
|
|
477
|
-
exports.MenubarShortcut = __webpack_exports__.MenubarShortcut;
|
|
478
|
-
exports.MenubarSub = __webpack_exports__.MenubarSub;
|
|
479
|
-
exports.MenubarSubContent = __webpack_exports__.MenubarSubContent;
|
|
480
|
-
exports.MenubarSubTrigger = __webpack_exports__.MenubarSubTrigger;
|
|
481
|
-
exports.MenubarTrigger = __webpack_exports__.MenubarTrigger;
|
|
482
430
|
exports.MetadataForm = __webpack_exports__.MetadataForm;
|
|
483
431
|
exports.MultiSelect = __webpack_exports__.MultiSelect;
|
|
484
|
-
exports.NavigationMenu = __webpack_exports__.NavigationMenu;
|
|
485
|
-
exports.NavigationMenuContent = __webpack_exports__.NavigationMenuContent;
|
|
486
|
-
exports.NavigationMenuIndicator = __webpack_exports__.NavigationMenuIndicator;
|
|
487
|
-
exports.NavigationMenuItem = __webpack_exports__.NavigationMenuItem;
|
|
488
|
-
exports.NavigationMenuLink = __webpack_exports__.NavigationMenuLink;
|
|
489
|
-
exports.NavigationMenuList = __webpack_exports__.NavigationMenuList;
|
|
490
|
-
exports.NavigationMenuTrigger = __webpack_exports__.NavigationMenuTrigger;
|
|
491
|
-
exports.NavigationMenuViewport = __webpack_exports__.NavigationMenuViewport;
|
|
492
432
|
exports.Pagination = __webpack_exports__.Pagination;
|
|
493
433
|
exports.PaginationContent = __webpack_exports__.PaginationContent;
|
|
494
434
|
exports.PaginationEllipsis = __webpack_exports__.PaginationEllipsis;
|
|
@@ -561,6 +501,7 @@ exports.Tooltip = __webpack_exports__.Tooltip;
|
|
|
561
501
|
exports.TooltipContent = __webpack_exports__.TooltipContent;
|
|
562
502
|
exports.TooltipProvider = __webpack_exports__.TooltipProvider;
|
|
563
503
|
exports.TooltipTrigger = __webpack_exports__.TooltipTrigger;
|
|
504
|
+
exports.TreeView = __webpack_exports__.TreeView;
|
|
564
505
|
exports.analyticsPlugin = __webpack_exports__.analyticsPlugin;
|
|
565
506
|
exports.auditPlugin = __webpack_exports__.auditPlugin;
|
|
566
507
|
exports.autoSavePlugin = __webpack_exports__.autoSavePlugin;
|
|
@@ -573,7 +514,6 @@ exports.hasMinMaxStep = __webpack_exports__.hasMinMaxStep;
|
|
|
573
514
|
exports.hasOptions = __webpack_exports__.hasOptions;
|
|
574
515
|
exports.isCustomField = __webpack_exports__.isCustomField;
|
|
575
516
|
exports.isFileField = __webpack_exports__.isFileField;
|
|
576
|
-
exports.navigationMenuTriggerStyle = __webpack_exports__.navigationMenuTriggerStyle;
|
|
577
517
|
exports.spinnerVariants = __webpack_exports__.spinnerVariants;
|
|
578
518
|
exports.toast = __webpack_exports__.toast;
|
|
579
519
|
exports.toggleVariants = __webpack_exports__.toggleVariants;
|
|
@@ -669,16 +609,6 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
|
669
609
|
"DialogPortal",
|
|
670
610
|
"DialogTitle",
|
|
671
611
|
"DialogTrigger",
|
|
672
|
-
"Drawer",
|
|
673
|
-
"DrawerClose",
|
|
674
|
-
"DrawerContent",
|
|
675
|
-
"DrawerDescription",
|
|
676
|
-
"DrawerFooter",
|
|
677
|
-
"DrawerHeader",
|
|
678
|
-
"DrawerOverlay",
|
|
679
|
-
"DrawerPortal",
|
|
680
|
-
"DrawerTitle",
|
|
681
|
-
"DrawerTrigger",
|
|
682
612
|
"DropdownMenu",
|
|
683
613
|
"DropdownMenuCheckboxItem",
|
|
684
614
|
"DropdownMenuContent",
|
|
@@ -708,32 +638,8 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
|
708
638
|
"HoverCardTrigger",
|
|
709
639
|
"Input",
|
|
710
640
|
"Label",
|
|
711
|
-
"Menubar",
|
|
712
|
-
"MenubarCheckboxItem",
|
|
713
|
-
"MenubarContent",
|
|
714
|
-
"MenubarGroup",
|
|
715
|
-
"MenubarItem",
|
|
716
|
-
"MenubarLabel",
|
|
717
|
-
"MenubarMenu",
|
|
718
|
-
"MenubarPortal",
|
|
719
|
-
"MenubarRadioGroup",
|
|
720
|
-
"MenubarRadioItem",
|
|
721
|
-
"MenubarSeparator",
|
|
722
|
-
"MenubarShortcut",
|
|
723
|
-
"MenubarSub",
|
|
724
|
-
"MenubarSubContent",
|
|
725
|
-
"MenubarSubTrigger",
|
|
726
|
-
"MenubarTrigger",
|
|
727
641
|
"MetadataForm",
|
|
728
642
|
"MultiSelect",
|
|
729
|
-
"NavigationMenu",
|
|
730
|
-
"NavigationMenuContent",
|
|
731
|
-
"NavigationMenuIndicator",
|
|
732
|
-
"NavigationMenuItem",
|
|
733
|
-
"NavigationMenuLink",
|
|
734
|
-
"NavigationMenuList",
|
|
735
|
-
"NavigationMenuTrigger",
|
|
736
|
-
"NavigationMenuViewport",
|
|
737
643
|
"Pagination",
|
|
738
644
|
"PaginationContent",
|
|
739
645
|
"PaginationEllipsis",
|
|
@@ -806,6 +712,7 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
|
806
712
|
"TooltipContent",
|
|
807
713
|
"TooltipProvider",
|
|
808
714
|
"TooltipTrigger",
|
|
715
|
+
"TreeView",
|
|
809
716
|
"analyticsPlugin",
|
|
810
717
|
"auditPlugin",
|
|
811
718
|
"autoSavePlugin",
|
|
@@ -818,7 +725,6 @@ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
|
|
|
818
725
|
"hasOptions",
|
|
819
726
|
"isCustomField",
|
|
820
727
|
"isFileField",
|
|
821
|
-
"navigationMenuTriggerStyle",
|
|
822
728
|
"spinnerVariants",
|
|
823
729
|
"toast",
|
|
824
730
|
"toggleVariants",
|
package/dist/index.d.ts
CHANGED
|
@@ -49,10 +49,11 @@ export { Spinner, spinnerVariants } from './components/ui/spinner';
|
|
|
49
49
|
export type { SpinnerProps } from './components/ui/spinner';
|
|
50
50
|
export { EmptyState } from './components/ui/empty-state';
|
|
51
51
|
export type { EmptyStateProps } from './components/ui/empty-state';
|
|
52
|
+
export { default as TreeView } from './components/ui/tree-view';
|
|
53
|
+
export type { TreeViewItem, TreeViewItemAction, TreeViewIconMap, TreeViewMenuItem, TreeViewProps, TreeViewSelectionMode, } from './components/ui/tree-view';
|
|
52
54
|
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, } from './components/ui/dialog';
|
|
53
55
|
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from './components/ui/alert-dialog';
|
|
54
56
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, } from './components/ui/sheet';
|
|
55
|
-
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, } from './components/ui/drawer';
|
|
56
57
|
export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger, } from './components/ui/popover';
|
|
57
58
|
export { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, } from './components/ui/tooltip';
|
|
58
59
|
export { HoverCard, HoverCardContent, HoverCardTrigger, } from './components/ui/hover-card';
|
|
@@ -63,11 +64,9 @@ export { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, Breadcr
|
|
|
63
64
|
export { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, } from './components/ui/pagination';
|
|
64
65
|
export { Stepper } from './components/ui/stepper';
|
|
65
66
|
export type { Step, StepperProps } from './components/ui/stepper';
|
|
66
|
-
export { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, navigationMenuTriggerStyle, } from './components/ui/navigation-menu';
|
|
67
67
|
export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, } from './components/ui/dropdown-menu';
|
|
68
68
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, } from './components/ui/context-menu';
|
|
69
69
|
export { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, } from './components/ui/command';
|
|
70
|
-
export { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, } from './components/ui/menubar';
|
|
71
70
|
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, } from './components/ui/accordion';
|
|
72
71
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger, } from './components/ui/collapsible';
|
|
73
72
|
export { ScrollArea, ScrollBar } from './components/ui/scroll-area';
|
package/dist/index.js
CHANGED
|
@@ -32,10 +32,10 @@ import { Progress } from "./components/ui/progress.js";
|
|
|
32
32
|
import { Skeleton } from "./components/ui/skeleton.js";
|
|
33
33
|
import { Spinner, spinnerVariants } from "./components/ui/spinner.js";
|
|
34
34
|
import { EmptyState } from "./components/ui/empty-state.js";
|
|
35
|
+
import tree_view from "./components/ui/tree-view.js";
|
|
35
36
|
import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from "./components/ui/dialog.js";
|
|
36
37
|
import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger } from "./components/ui/alert-dialog.js";
|
|
37
38
|
import { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from "./components/ui/sheet.js";
|
|
38
|
-
import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from "./components/ui/drawer.js";
|
|
39
39
|
import { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from "./components/ui/popover.js";
|
|
40
40
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "./components/ui/tooltip.js";
|
|
41
41
|
import { HoverCard, HoverCardContent, HoverCardTrigger } from "./components/ui/hover-card.js";
|
|
@@ -45,11 +45,9 @@ import { Tabs, TabsContent, TabsList, TabsTrigger } from "./components/ui/tabs.j
|
|
|
45
45
|
import { Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator } from "./components/ui/breadcrumb.js";
|
|
46
46
|
import { Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious } from "./components/ui/pagination.js";
|
|
47
47
|
import { Stepper } from "./components/ui/stepper.js";
|
|
48
|
-
import { NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, navigationMenuTriggerStyle } from "./components/ui/navigation-menu.js";
|
|
49
48
|
import { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from "./components/ui/dropdown-menu.js";
|
|
50
49
|
import { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from "./components/ui/context-menu.js";
|
|
51
50
|
import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from "./components/ui/command.js";
|
|
52
|
-
import { Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger } from "./components/ui/menubar.js";
|
|
53
51
|
import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "./components/ui/accordion.js";
|
|
54
52
|
import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./components/ui/collapsible.js";
|
|
55
53
|
import { ScrollArea, ScrollBar } from "./components/ui/scroll-area.js";
|
|
@@ -64,4 +62,4 @@ import { ExpressionBuilder, RuleBuilder, RulesEngine } from "./components/forms/
|
|
|
64
62
|
import { DataFetcher, DataSourceBuilder, DataTransformers, FetchAdapter } from "./components/forms/data-fetcher.js";
|
|
65
63
|
import { analyticsPlugin, auditPlugin, autoSavePlugin, formattingPlugin, validationPlugin, workflowPlugin } from "./components/forms/form-plugins.js";
|
|
66
64
|
import { hasMinMaxStep, hasOptions, isCustomField, isFileField } from "./components/forms/form-schema.js";
|
|
67
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Column, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataFetcher, DataSourceBuilder, DataTable, DataTableColumnHeader, DataTableSelectColumn, DataTransformers, DatePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger,
|
|
65
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Column, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataFetcher, DataSourceBuilder, DataTable, DataTableColumnHeader, DataTableSelectColumn, DataTransformers, DatePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableCell, EmptyState, ExpressionBuilder, FetchAdapter, FileUpload, FormDesigner, FormFieldRenderer, FormStateViewer, Grid, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label, MetadataForm, MultiSelect, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Row, RuleBuilder, RulesEngine, ScrollArea, ScrollBar, Search, SearchWithSuggestions, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Spinner, StatsCard, Stepper, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, tree_view as TreeView, analyticsPlugin, auditPlugin, autoSavePlugin, badgeVariants, buttonVariants, cn, createEditableColumn, formattingPlugin, hasMinMaxStep, hasOptions, isCustomField, isFileField, spinnerVariants, toast, toggleVariants, validationPlugin, workflowPlugin };
|