@uipath/apollo-wind 2.40.0 → 2.41.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/components/forms/field-renderer.cjs +61 -94
- package/dist/components/forms/field-renderer.d.ts +1 -1
- package/dist/components/forms/field-renderer.js +50 -83
- package/dist/components/ui/form-field.cjs +90 -0
- package/dist/components/ui/form-field.d.ts +26 -0
- package/dist/components/ui/form-field.js +47 -0
- package/dist/components/ui/index.cjs +125 -115
- package/dist/components/ui/index.d.ts +1 -0
- package/dist/components/ui/index.js +1 -0
- package/dist/components/ui/input-group.cjs +3 -4
- package/dist/components/ui/input-group.js +3 -4
- package/dist/components/ui/input.cjs +3 -4
- package/dist/components/ui/input.js +3 -4
- package/dist/components/ui/label.cjs +18 -5
- package/dist/components/ui/label.d.ts +26 -4
- package/dist/components/ui/label.js +18 -5
- package/dist/components/ui/lockable-value-field/lockable-value-field.cjs +3 -4
- package/dist/components/ui/lockable-value-field/lockable-value-field.js +3 -4
- package/dist/index.cjs +16 -3
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
|
@@ -1,10 +1,31 @@
|
|
|
1
1
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
2
2
|
import { type VariantProps } from 'class-variance-authority';
|
|
3
3
|
import * as React from 'react';
|
|
4
|
-
declare const labelVariants: (props?:
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const labelVariants: (props?: ({
|
|
5
|
+
variant?: "default" | "muted" | null | undefined;
|
|
6
|
+
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
7
|
+
/** Variant props, for consumers that forward a variant through to `Label`. */
|
|
8
|
+
export type LabelVariants = VariantProps<typeof labelVariants>;
|
|
9
|
+
export type LabelProps = React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root> & LabelVariants;
|
|
10
|
+
/**
|
|
11
|
+
* Compose `RequiredIndicator` as the last child to mark a field required.
|
|
12
|
+
*
|
|
13
|
+
* Long labels wrap. Do not ellipsize one with `truncate`: the indicator shares
|
|
14
|
+
* the label's inline run, so the ellipsis swallows it, and a clipped field name
|
|
15
|
+
* is unreadable anyway.
|
|
16
|
+
*
|
|
17
|
+
* `data-variant` exposes the variant so a container can restyle every label of
|
|
18
|
+
* one kind at once rather than reaching for each slot by name. Target it as
|
|
19
|
+
* `label[data-variant=default]`: callers rename `data-slot`, and `data-variant`
|
|
20
|
+
* alone is a convention other components share.
|
|
21
|
+
*/
|
|
22
|
+
declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & LabelVariants & React.RefAttributes<HTMLLabelElement>>;
|
|
7
23
|
export interface RequiredIndicatorProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, 'children' | 'aria-hidden'> {
|
|
24
|
+
/**
|
|
25
|
+
* Visually hidden text announced in place of the asterisk. apollo-wind ships
|
|
26
|
+
* no i18n, so localized consumers pass their own translated string here.
|
|
27
|
+
*/
|
|
28
|
+
srLabel?: string;
|
|
8
29
|
}
|
|
9
30
|
/**
|
|
10
31
|
* Marks a field as required. Place it right after the label text.
|
|
@@ -15,7 +36,8 @@ export interface RequiredIndicatorProps extends Omit<React.HTMLAttributes<HTMLSp
|
|
|
15
36
|
* glyph is `aria-hidden` since it's a visual affordance, not the thing that
|
|
16
37
|
* makes the field required to assistive tech; a `sr-only` "(required)" is
|
|
17
38
|
* included alongside it so the label still announces the requirement even if
|
|
18
|
-
* the field's own control is missing `required`/`aria-required`.
|
|
39
|
+
* the field's own control is missing `required`/`aria-required`. That text is
|
|
40
|
+
* English by default; pass `srLabel` to localize it.
|
|
19
41
|
*/
|
|
20
42
|
declare const RequiredIndicator: React.ForwardRefExoticComponent<RequiredIndicatorProps & React.RefAttributes<HTMLSpanElement>>;
|
|
21
43
|
export { Label, RequiredIndicator };
|
|
@@ -3,15 +3,28 @@ import { Root } from "@radix-ui/react-label";
|
|
|
3
3
|
import { cva } from "class-variance-authority";
|
|
4
4
|
import { forwardRef } from "react";
|
|
5
5
|
import { cn } from "../../lib/index.js";
|
|
6
|
-
const labelVariants = cva('text-xs
|
|
7
|
-
|
|
6
|
+
const labelVariants = cva('text-xs peer-disabled:cursor-not-allowed peer-disabled:opacity-70', {
|
|
7
|
+
variants: {
|
|
8
|
+
variant: {
|
|
9
|
+
default: 'font-medium text-foreground',
|
|
10
|
+
muted: 'font-normal text-foreground-muted'
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
defaultVariants: {
|
|
14
|
+
variant: 'default'
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
const Label = /*#__PURE__*/ forwardRef(({ className, variant = 'default', ...props }, ref)=>/*#__PURE__*/ jsx(Root, {
|
|
8
18
|
ref: ref,
|
|
9
19
|
"data-slot": "label",
|
|
10
|
-
|
|
20
|
+
"data-variant": variant,
|
|
21
|
+
className: cn(labelVariants({
|
|
22
|
+
variant
|
|
23
|
+
}), className),
|
|
11
24
|
...props
|
|
12
25
|
}));
|
|
13
26
|
Label.displayName = Root.displayName;
|
|
14
|
-
const RequiredIndicator = /*#__PURE__*/ forwardRef(({ className, ...props }, ref)=>/*#__PURE__*/ jsxs("span", {
|
|
27
|
+
const RequiredIndicator = /*#__PURE__*/ forwardRef(({ className, srLabel = ' (required)', ...props }, ref)=>/*#__PURE__*/ jsxs("span", {
|
|
15
28
|
ref: ref,
|
|
16
29
|
...props,
|
|
17
30
|
className: cn('ml-0.5', className, 'text-foreground'),
|
|
@@ -22,7 +35,7 @@ const RequiredIndicator = /*#__PURE__*/ forwardRef(({ className, ...props }, ref
|
|
|
22
35
|
}),
|
|
23
36
|
/*#__PURE__*/ jsx("span", {
|
|
24
37
|
className: "sr-only",
|
|
25
|
-
children:
|
|
38
|
+
children: srLabel
|
|
26
39
|
})
|
|
27
40
|
]
|
|
28
41
|
}));
|
|
@@ -32,6 +32,7 @@ const external_react_namespaceObject = require("react");
|
|
|
32
32
|
const external_calendar_cjs_namespaceObject = require("../calendar.cjs");
|
|
33
33
|
const external_dropdown_menu_cjs_namespaceObject = require("../dropdown-menu.cjs");
|
|
34
34
|
const external_file_upload_cjs_namespaceObject = require("../file-upload.cjs");
|
|
35
|
+
const external_form_field_cjs_namespaceObject = require("../form-field.cjs");
|
|
35
36
|
const external_input_cjs_namespaceObject = require("../input.cjs");
|
|
36
37
|
const external_input_group_cjs_namespaceObject = require("../input-group.cjs");
|
|
37
38
|
const external_multi_select_cjs_namespaceObject = require("../multi-select.cjs");
|
|
@@ -278,12 +279,10 @@ function LockableValueField({ value = '', onValueChange, onValueBlur, locked = t
|
|
|
278
279
|
}) : null
|
|
279
280
|
]
|
|
280
281
|
}),
|
|
281
|
-
|
|
282
|
+
!typeMeta.supportsExpression && /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_form_field_cjs_namespaceObject.FormFieldError, {
|
|
282
283
|
id: validationId,
|
|
283
284
|
"data-slot": "lockable-value-field-error",
|
|
284
|
-
|
|
285
|
-
"aria-atomic": "true",
|
|
286
|
-
className: "mt-1 text-xs leading-4 text-error",
|
|
285
|
+
className: "mt-1",
|
|
287
286
|
children: error
|
|
288
287
|
}),
|
|
289
288
|
belowValue
|
|
@@ -4,6 +4,7 @@ import { useId, useState } from "react";
|
|
|
4
4
|
import { Calendar } from "../calendar.js";
|
|
5
5
|
import { DropdownMenu, DropdownMenuContent, DropdownMenuTrigger } from "../dropdown-menu.js";
|
|
6
6
|
import { FileUpload } from "../file-upload.js";
|
|
7
|
+
import { FormFieldError } from "../form-field.js";
|
|
7
8
|
import { Input } from "../input.js";
|
|
8
9
|
import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput } from "../input-group.js";
|
|
9
10
|
import { MultiSelect } from "../multi-select.js";
|
|
@@ -250,12 +251,10 @@ function LockableValueField({ value = '', onValueChange, onValueBlur, locked = t
|
|
|
250
251
|
}) : null
|
|
251
252
|
]
|
|
252
253
|
}),
|
|
253
|
-
|
|
254
|
+
!typeMeta.supportsExpression && /*#__PURE__*/ jsx(FormFieldError, {
|
|
254
255
|
id: validationId,
|
|
255
256
|
"data-slot": "lockable-value-field-error",
|
|
256
|
-
|
|
257
|
-
"aria-atomic": "true",
|
|
258
|
-
className: "mt-1 text-xs leading-4 text-error",
|
|
257
|
+
className: "mt-1",
|
|
259
258
|
children: error
|
|
260
259
|
}),
|
|
261
260
|
belowValue
|
package/dist/index.cjs
CHANGED
|
@@ -67,6 +67,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
67
67
|
badgeVariants: ()=>badge_cjs_namespaceObject.badgeVariants,
|
|
68
68
|
createEditableColumn: ()=>editable_cell_cjs_namespaceObject.createEditableColumn,
|
|
69
69
|
toggleVariants: ()=>toggle_cjs_namespaceObject.toggleVariants,
|
|
70
|
+
FormFieldDescription: ()=>form_field_cjs_namespaceObject.FormFieldDescription,
|
|
70
71
|
SheetHeader: ()=>sheet_cjs_namespaceObject.SheetHeader,
|
|
71
72
|
Column: ()=>column_cjs_namespaceObject.Column,
|
|
72
73
|
AlertDialogTrigger: ()=>alert_dialog_cjs_namespaceObject.AlertDialogTrigger,
|
|
@@ -132,11 +133,12 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
132
133
|
DropdownMenuShortcut: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuShortcut,
|
|
133
134
|
FetchAdapter: ()=>data_fetcher_cjs_namespaceObject.FetchAdapter,
|
|
134
135
|
DataTableSelectColumn: ()=>data_table_cjs_namespaceObject.DataTableSelectColumn,
|
|
135
|
-
|
|
136
|
+
FormField: ()=>form_field_cjs_namespaceObject.FormField,
|
|
136
137
|
CollapsibleTrigger: ()=>collapsible_cjs_namespaceObject.CollapsibleTrigger,
|
|
137
138
|
ChartLegend: ()=>chart_cjs_namespaceObject.ChartLegend,
|
|
138
|
-
|
|
139
|
+
FormStateViewer: ()=>form_state_viewer_cjs_namespaceObject.FormStateViewer,
|
|
139
140
|
MultiSelect: ()=>multi_select_cjs_namespaceObject.MultiSelect,
|
|
141
|
+
RadioGroup: ()=>radio_group_cjs_namespaceObject.RadioGroup,
|
|
140
142
|
AspectRatio: ()=>aspect_ratio_cjs_namespaceObject.AspectRatio,
|
|
141
143
|
Alert: ()=>alert_cjs_namespaceObject.Alert,
|
|
142
144
|
DropdownMenuRadioItem: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuRadioItem,
|
|
@@ -160,6 +162,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
160
162
|
InputGroupInput: ()=>input_group_cjs_namespaceObject.InputGroupInput,
|
|
161
163
|
ContextMenuCheckboxItem: ()=>context_menu_cjs_namespaceObject.ContextMenuCheckboxItem,
|
|
162
164
|
isCustomField: ()=>form_schema_cjs_namespaceObject.isCustomField,
|
|
165
|
+
FormFieldError: ()=>form_field_cjs_namespaceObject.FormFieldError,
|
|
163
166
|
TreeView: ()=>tree_view_cjs_default(),
|
|
164
167
|
TableCaption: ()=>table_cjs_namespaceObject.TableCaption,
|
|
165
168
|
TooltipTrigger: ()=>tooltip_cjs_namespaceObject.TooltipTrigger,
|
|
@@ -258,11 +261,12 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
258
261
|
DialogContent: ()=>dialog_cjs_namespaceObject.DialogContent,
|
|
259
262
|
DialogTrigger: ()=>dialog_cjs_namespaceObject.DialogTrigger,
|
|
260
263
|
DropdownMenuRadioGroup: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuRadioGroup,
|
|
261
|
-
FormDesigner: ()=>form_designer_cjs_namespaceObject.FormDesigner,
|
|
262
264
|
TableRow: ()=>table_cjs_namespaceObject.TableRow,
|
|
265
|
+
FormDesigner: ()=>form_designer_cjs_namespaceObject.FormDesigner,
|
|
263
266
|
ToggleGroup: ()=>toggle_group_cjs_namespaceObject.ToggleGroup,
|
|
264
267
|
Search: ()=>search_cjs_namespaceObject.Search,
|
|
265
268
|
AlertDialogCancel: ()=>alert_dialog_cjs_namespaceObject.AlertDialogCancel,
|
|
269
|
+
FormFieldLabel: ()=>form_field_cjs_namespaceObject.FormFieldLabel,
|
|
266
270
|
InputGroupTextarea: ()=>input_group_cjs_namespaceObject.InputGroupTextarea,
|
|
267
271
|
spinnerVariants: ()=>spinner_cjs_namespaceObject.spinnerVariants,
|
|
268
272
|
SelectTrigger: ()=>select_cjs_namespaceObject.SelectTrigger,
|
|
@@ -290,6 +294,7 @@ const input_group_cjs_namespaceObject = require("./components/ui/input-group.cjs
|
|
|
290
294
|
const index_cjs_namespaceObject = require("./components/ui/lockable-value-field/index.cjs");
|
|
291
295
|
const textarea_cjs_namespaceObject = require("./components/ui/textarea.cjs");
|
|
292
296
|
const label_cjs_namespaceObject = require("./components/ui/label.cjs");
|
|
297
|
+
const form_field_cjs_namespaceObject = require("./components/ui/form-field.cjs");
|
|
293
298
|
const checkbox_cjs_namespaceObject = require("./components/ui/checkbox.cjs");
|
|
294
299
|
const radio_group_cjs_namespaceObject = require("./components/ui/radio-group.cjs");
|
|
295
300
|
const switch_cjs_namespaceObject = require("./components/ui/switch.cjs");
|
|
@@ -477,6 +482,10 @@ exports.FIELD_TYPE_ORDER = __webpack_exports__.FIELD_TYPE_ORDER;
|
|
|
477
482
|
exports.FetchAdapter = __webpack_exports__.FetchAdapter;
|
|
478
483
|
exports.FileUpload = __webpack_exports__.FileUpload;
|
|
479
484
|
exports.FormDesigner = __webpack_exports__.FormDesigner;
|
|
485
|
+
exports.FormField = __webpack_exports__.FormField;
|
|
486
|
+
exports.FormFieldDescription = __webpack_exports__.FormFieldDescription;
|
|
487
|
+
exports.FormFieldError = __webpack_exports__.FormFieldError;
|
|
488
|
+
exports.FormFieldLabel = __webpack_exports__.FormFieldLabel;
|
|
480
489
|
exports.FormFieldRenderer = __webpack_exports__.FormFieldRenderer;
|
|
481
490
|
exports.FormStateViewer = __webpack_exports__.FormStateViewer;
|
|
482
491
|
exports.Grid = __webpack_exports__.Grid;
|
|
@@ -721,6 +730,10 @@ for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
|
721
730
|
"FetchAdapter",
|
|
722
731
|
"FileUpload",
|
|
723
732
|
"FormDesigner",
|
|
733
|
+
"FormField",
|
|
734
|
+
"FormFieldDescription",
|
|
735
|
+
"FormFieldError",
|
|
736
|
+
"FormFieldLabel",
|
|
724
737
|
"FormFieldRenderer",
|
|
725
738
|
"FormStateViewer",
|
|
726
739
|
"Grid",
|
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,9 @@ export type { LockableValueFieldProps, LockableValueFieldMode, LockableFieldType
|
|
|
19
19
|
export { Textarea } from './components/ui/textarea';
|
|
20
20
|
export type { TextareaProps } from './components/ui/textarea';
|
|
21
21
|
export { Label, RequiredIndicator } from './components/ui/label';
|
|
22
|
-
export type { LabelProps, RequiredIndicatorProps } from './components/ui/label';
|
|
22
|
+
export type { LabelProps, LabelVariants, RequiredIndicatorProps } from './components/ui/label';
|
|
23
|
+
export { FormField, FormFieldDescription, FormFieldError, FormFieldLabel, } from './components/ui/form-field';
|
|
24
|
+
export type { FormFieldDescriptionProps, FormFieldErrorProps, FormFieldLabelProps, FormFieldProps, } from './components/ui/form-field';
|
|
23
25
|
export { Checkbox } from './components/ui/checkbox';
|
|
24
26
|
export type { CheckboxProps } from './components/ui/checkbox';
|
|
25
27
|
export { RadioGroup, RadioGroupItem } from './components/ui/radio-group';
|
package/dist/index.js
CHANGED
|
@@ -11,6 +11,7 @@ import { InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGr
|
|
|
11
11
|
import { FIELD_TYPE_META, FIELD_TYPE_ORDER, LockableValueField } from "./components/ui/lockable-value-field/index.js";
|
|
12
12
|
import { Textarea } from "./components/ui/textarea.js";
|
|
13
13
|
import { Label, RequiredIndicator } from "./components/ui/label.js";
|
|
14
|
+
import { FormField, FormFieldDescription, FormFieldError, FormFieldLabel } from "./components/ui/form-field.js";
|
|
14
15
|
import { Checkbox } from "./components/ui/checkbox.js";
|
|
15
16
|
import { RadioGroup, RadioGroupItem } from "./components/ui/radio-group.js";
|
|
16
17
|
import { Switch } from "./components/ui/switch.js";
|
|
@@ -69,4 +70,4 @@ import { ExpressionBuilder, RuleBuilder, RulesEngine } from "./components/forms/
|
|
|
69
70
|
import { DataFetcher, DataSourceBuilder, DataTransformers, FetchAdapter } from "./components/forms/data-fetcher.js";
|
|
70
71
|
import { analyticsPlugin, auditPlugin, autoSavePlugin, formattingPlugin, validationPlugin, workflowPlugin } from "./components/forms/form-plugins.js";
|
|
71
72
|
import { hasMinMaxStep, hasOptions, isCustomField, isFileField } from "./components/forms/form-schema.js";
|
|
72
|
-
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, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, 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, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableCell, EmptyState, ExpressionBuilder, FIELD_TYPE_META, FIELD_TYPE_ORDER, FetchAdapter, FileUpload, FormDesigner, FormFieldRenderer, FormStateViewer, Grid, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Label, LockableValueField, MetadataForm, MultiSelect, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalContainerProvider, Progress, PromptEditor, RadioGroup, RadioGroupItem, RequiredIndicator, ResizableHandle, ResizablePanel, ResizablePanelGroup, Row, RuleBuilder, RulesEngine, ScrollArea, ScrollBar, ScrollableTabsList, 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, TooltipPortal, TooltipProvider, TooltipTrigger, tree_view as TreeView, VARIABLE_DRAG_MIME, VariablePicker, VariablePickerContent, analyticsPlugin, auditPlugin, autoSavePlugin, badgeVariants, buttonVariants, cn, createEditableColumn, formattingPlugin, hasMinMaxStep, hasOptions, isCustomField, isFileField, spinnerVariants, toast, toggleVariants, validationPlugin, workflowPlugin };
|
|
73
|
+
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, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, 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, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EditableCell, EmptyState, ExpressionBuilder, FIELD_TYPE_META, FIELD_TYPE_ORDER, FetchAdapter, FileUpload, FormDesigner, FormField, FormFieldDescription, FormFieldError, FormFieldLabel, FormFieldRenderer, FormStateViewer, Grid, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, Label, LockableValueField, MetadataForm, MultiSelect, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalContainerProvider, Progress, PromptEditor, RadioGroup, RadioGroupItem, RequiredIndicator, ResizableHandle, ResizablePanel, ResizablePanelGroup, Row, RuleBuilder, RulesEngine, ScrollArea, ScrollBar, ScrollableTabsList, 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, TooltipPortal, TooltipProvider, TooltipTrigger, tree_view as TreeView, VARIABLE_DRAG_MIME, VariablePicker, VariablePickerContent, analyticsPlugin, auditPlugin, autoSavePlugin, badgeVariants, buttonVariants, cn, createEditableColumn, formattingPlugin, hasMinMaxStep, hasOptions, isCustomField, isFileField, spinnerVariants, toast, toggleVariants, validationPlugin, workflowPlugin };
|