@uipath/apollo-wind 2.52.3 → 2.53.1
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 +42 -3
- package/dist/components/forms/field-renderer.js +42 -3
- package/dist/components/forms/string-list-field.cjs +3 -0
- package/dist/components/forms/string-list-field.js +3 -0
- package/dist/components/ui/button.cjs +1 -1
- package/dist/components/ui/button.js +1 -1
- package/dist/components/ui/checkbox.cjs +1 -1
- package/dist/components/ui/checkbox.js +1 -1
- package/dist/components/ui/combobox.cjs +70 -51
- package/dist/components/ui/combobox.d.ts +12 -0
- package/dist/components/ui/combobox.js +72 -53
- package/dist/components/ui/date-picker.cjs +102 -62
- package/dist/components/ui/date-picker.d.ts +28 -0
- package/dist/components/ui/date-picker.js +103 -63
- package/dist/components/ui/datetime-picker.cjs +90 -72
- package/dist/components/ui/datetime-picker.d.ts +12 -2
- package/dist/components/ui/datetime-picker.js +92 -74
- package/dist/components/ui/file-upload.cjs +21 -8
- package/dist/components/ui/file-upload.d.ts +7 -0
- package/dist/components/ui/file-upload.js +22 -9
- package/dist/components/ui/form-field.cjs +3 -3
- package/dist/components/ui/form-field.d.ts +11 -0
- package/dist/components/ui/form-field.js +3 -3
- package/dist/components/ui/index.cjs +16 -16
- package/dist/components/ui/input-group.cjs +0 -2
- package/dist/components/ui/input-group.d.ts +1 -1
- package/dist/components/ui/input-group.js +0 -2
- package/dist/components/ui/input.cjs +0 -2
- package/dist/components/ui/input.js +0 -2
- package/dist/components/ui/lockable-value-field/lockable-value-field.cjs +1 -1
- package/dist/components/ui/lockable-value-field/lockable-value-field.js +1 -1
- package/dist/components/ui/multi-select.cjs +125 -112
- package/dist/components/ui/multi-select.d.ts +7 -0
- package/dist/components/ui/multi-select.js +126 -113
- package/dist/components/ui/prompt-editor/prompt-editor.cjs +0 -2
- package/dist/components/ui/prompt-editor/prompt-editor.js +0 -2
- package/dist/components/ui/radio-group.cjs +2 -2
- package/dist/components/ui/radio-group.js +2 -2
- package/dist/components/ui/search.cjs +3 -1
- package/dist/components/ui/search.d.ts +4 -0
- package/dist/components/ui/search.js +3 -1
- package/dist/components/ui/select.cjs +33 -12
- package/dist/components/ui/select.d.ts +10 -1
- package/dist/components/ui/select.js +35 -14
- package/dist/components/ui/slider.cjs +7 -2
- package/dist/components/ui/slider.js +7 -2
- package/dist/components/ui/switch.cjs +1 -1
- package/dist/components/ui/switch.js +1 -1
- package/dist/components/ui/textarea.cjs +30 -11
- package/dist/components/ui/textarea.d.ts +7 -0
- package/dist/components/ui/textarea.js +32 -13
- package/dist/components/ui/tooltip.cjs +1 -1
- package/dist/components/ui/tooltip.js +1 -1
- package/dist/index.cjs +4 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +2 -2
- package/dist/styles.css +112 -24
- package/package.json +1 -1
|
@@ -29,6 +29,7 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
29
29
|
const jsx_runtime_namespaceObject = require("react/jsx-runtime");
|
|
30
30
|
const external_react_namespaceObject = require("react");
|
|
31
31
|
const index_cjs_namespaceObject = require("../../lib/index.cjs");
|
|
32
|
+
const external_form_field_cjs_namespaceObject = require("./form-field.cjs");
|
|
32
33
|
function normalizeRows(value) {
|
|
33
34
|
if (void 0 === value || !Number.isFinite(value)) return;
|
|
34
35
|
return Math.max(1, Math.floor(value));
|
|
@@ -49,7 +50,13 @@ function cssLength(value) {
|
|
|
49
50
|
if (null == value) return '';
|
|
50
51
|
return 'number' == typeof value ? `${value}px` : String(value);
|
|
51
52
|
}
|
|
52
|
-
const Textarea = /*#__PURE__*/ external_react_namespaceObject.forwardRef(({ className, minRows, maxRows, onChange, style, ...props }, ref)=>{
|
|
53
|
+
const Textarea = /*#__PURE__*/ external_react_namespaceObject.forwardRef(({ 'aria-describedby': ariaDescribedBy, 'aria-errormessage': ariaErrorMessage, 'aria-invalid': ariaInvalid, className, error, errorId, id, minRows, maxRows, onChange, style, ...props }, ref)=>{
|
|
54
|
+
const generatedId = external_react_namespaceObject.useId();
|
|
55
|
+
const validationId = errorId ?? `${id ?? `textarea-${generatedId.replace(/:/g, '')}`}-error`;
|
|
56
|
+
const describedBy = [
|
|
57
|
+
ariaDescribedBy,
|
|
58
|
+
error ? validationId : void 0
|
|
59
|
+
].filter(Boolean).join(' ');
|
|
53
60
|
const { effMinRows, effMaxRows } = external_react_namespaceObject.useMemo(()=>{
|
|
54
61
|
const nMin = normalizeRows(minRows);
|
|
55
62
|
const nMax = normalizeRows(maxRows);
|
|
@@ -147,16 +154,28 @@ const Textarea = /*#__PURE__*/ external_react_namespaceObject.forwardRef(({ clas
|
|
|
147
154
|
effMaxRows,
|
|
148
155
|
resize
|
|
149
156
|
]);
|
|
150
|
-
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
157
|
+
return /*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsxs)(jsx_runtime_namespaceObject.Fragment, {
|
|
158
|
+
children: [
|
|
159
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)("textarea", {
|
|
160
|
+
"data-slot": "textarea",
|
|
161
|
+
id: id,
|
|
162
|
+
"aria-describedby": describedBy || void 0,
|
|
163
|
+
"aria-errormessage": error ? validationId : ariaErrorMessage,
|
|
164
|
+
"aria-invalid": error ? true : ariaInvalid,
|
|
165
|
+
className: (0, index_cjs_namespaceObject.cn)('flex w-full rounded-md border border-input bg-transparent px-3 py-2 text-base transition-colors placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-error future:aria-invalid:ring-1 future:aria-invalid:ring-error/40 aria-invalid:focus-visible:ring-error md:text-sm', 'future:rounded-xl future:border-0 future:bg-surface-overlay future:text-sm future:placeholder:text-foreground-muted future:placeholder:font-normal future:focus-visible:ring-offset-2 future:focus-visible:ring-offset-background', !managed && 'min-h-[80px]', managed && 'resize-y', className),
|
|
166
|
+
ref: setRef,
|
|
167
|
+
style: style,
|
|
168
|
+
onChange: (event)=>{
|
|
169
|
+
onChange?.(event);
|
|
170
|
+
resize();
|
|
171
|
+
},
|
|
172
|
+
...props
|
|
173
|
+
}),
|
|
174
|
+
/*#__PURE__*/ (0, jsx_runtime_namespaceObject.jsx)(external_form_field_cjs_namespaceObject.FormFieldError, {
|
|
175
|
+
id: validationId,
|
|
176
|
+
children: error
|
|
177
|
+
})
|
|
178
|
+
]
|
|
160
179
|
});
|
|
161
180
|
});
|
|
162
181
|
Textarea.displayName = 'Textarea';
|
|
@@ -9,6 +9,13 @@ export type TextareaProps = React.ComponentProps<'textarea'> & {
|
|
|
9
9
|
* up to `maxRows`, then scrolls.
|
|
10
10
|
*/
|
|
11
11
|
maxRows?: number;
|
|
12
|
+
/**
|
|
13
|
+
* Field-specific feedback rendered immediately below the textarea.
|
|
14
|
+
* Keep the message focused on what went wrong and how to resolve it.
|
|
15
|
+
*/
|
|
16
|
+
error?: React.ReactNode;
|
|
17
|
+
/** Optional id for the inline validation message. */
|
|
18
|
+
errorId?: string;
|
|
12
19
|
};
|
|
13
20
|
declare const Textarea: React.ForwardRefExoticComponent<Omit<TextareaProps, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
|
|
14
21
|
export { Textarea };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef, useCallback, useLayoutEffect, useMemo, useRef } from "react";
|
|
1
|
+
import { Fragment, jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { forwardRef, useCallback, useId, useLayoutEffect, useMemo, useRef } from "react";
|
|
3
3
|
import { cn } from "../../lib/index.js";
|
|
4
|
+
import { FormFieldError } from "./form-field.js";
|
|
4
5
|
function normalizeRows(value) {
|
|
5
6
|
if (void 0 === value || !Number.isFinite(value)) return;
|
|
6
7
|
return Math.max(1, Math.floor(value));
|
|
@@ -21,7 +22,13 @@ function cssLength(value) {
|
|
|
21
22
|
if (null == value) return '';
|
|
22
23
|
return 'number' == typeof value ? `${value}px` : String(value);
|
|
23
24
|
}
|
|
24
|
-
const Textarea = /*#__PURE__*/ forwardRef(({ className, minRows, maxRows, onChange, style, ...props }, ref)=>{
|
|
25
|
+
const Textarea = /*#__PURE__*/ forwardRef(({ 'aria-describedby': ariaDescribedBy, 'aria-errormessage': ariaErrorMessage, 'aria-invalid': ariaInvalid, className, error, errorId, id, minRows, maxRows, onChange, style, ...props }, ref)=>{
|
|
26
|
+
const generatedId = useId();
|
|
27
|
+
const validationId = errorId ?? `${id ?? `textarea-${generatedId.replace(/:/g, '')}`}-error`;
|
|
28
|
+
const describedBy = [
|
|
29
|
+
ariaDescribedBy,
|
|
30
|
+
error ? validationId : void 0
|
|
31
|
+
].filter(Boolean).join(' ');
|
|
25
32
|
const { effMinRows, effMaxRows } = useMemo(()=>{
|
|
26
33
|
const nMin = normalizeRows(minRows);
|
|
27
34
|
const nMax = normalizeRows(maxRows);
|
|
@@ -119,16 +126,28 @@ const Textarea = /*#__PURE__*/ forwardRef(({ className, minRows, maxRows, onChan
|
|
|
119
126
|
effMaxRows,
|
|
120
127
|
resize
|
|
121
128
|
]);
|
|
122
|
-
return /*#__PURE__*/
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
129
|
+
return /*#__PURE__*/ jsxs(Fragment, {
|
|
130
|
+
children: [
|
|
131
|
+
/*#__PURE__*/ jsx("textarea", {
|
|
132
|
+
"data-slot": "textarea",
|
|
133
|
+
id: id,
|
|
134
|
+
"aria-describedby": describedBy || void 0,
|
|
135
|
+
"aria-errormessage": error ? validationId : ariaErrorMessage,
|
|
136
|
+
"aria-invalid": error ? true : ariaInvalid,
|
|
137
|
+
className: cn('flex w-full rounded-md border border-input bg-transparent px-3 py-2 text-base transition-colors placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-error future:aria-invalid:ring-1 future:aria-invalid:ring-error/40 aria-invalid:focus-visible:ring-error md:text-sm', 'future:rounded-xl future:border-0 future:bg-surface-overlay future:text-sm future:placeholder:text-foreground-muted future:placeholder:font-normal future:focus-visible:ring-offset-2 future:focus-visible:ring-offset-background', !managed && 'min-h-[80px]', managed && 'resize-y', className),
|
|
138
|
+
ref: setRef,
|
|
139
|
+
style: style,
|
|
140
|
+
onChange: (event)=>{
|
|
141
|
+
onChange?.(event);
|
|
142
|
+
resize();
|
|
143
|
+
},
|
|
144
|
+
...props
|
|
145
|
+
}),
|
|
146
|
+
/*#__PURE__*/ jsx(FormFieldError, {
|
|
147
|
+
id: validationId,
|
|
148
|
+
children: error
|
|
149
|
+
})
|
|
150
|
+
]
|
|
132
151
|
});
|
|
133
152
|
});
|
|
134
153
|
Textarea.displayName = 'Textarea';
|
|
@@ -59,7 +59,7 @@ const TooltipContent = /*#__PURE__*/ external_react_namespaceObject.forwardRef((
|
|
|
59
59
|
ref: ref,
|
|
60
60
|
"data-slot": "tooltip-content",
|
|
61
61
|
sideOffset: sideOffset,
|
|
62
|
-
className: (0, index_cjs_namespaceObject.cn)('z-50 overflow-hidden rounded-md border border-border
|
|
62
|
+
className: (0, index_cjs_namespaceObject.cn)('z-50 overflow-hidden rounded-md border border-border bg-accent px-3 py-1.5 text-xs text-accent-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]', className),
|
|
63
63
|
...props
|
|
64
64
|
}));
|
|
65
65
|
TooltipContent.displayName = react_tooltip_namespaceObject.Content.displayName;
|
|
@@ -27,7 +27,7 @@ const TooltipContent = /*#__PURE__*/ forwardRef(({ className, sideOffset = 4, ..
|
|
|
27
27
|
ref: ref,
|
|
28
28
|
"data-slot": "tooltip-content",
|
|
29
29
|
sideOffset: sideOffset,
|
|
30
|
-
className: cn('z-50 overflow-hidden rounded-md border border-border
|
|
30
|
+
className: cn('z-50 overflow-hidden rounded-md border border-border bg-accent px-3 py-1.5 text-xs text-accent-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-tooltip-content-transform-origin]', className),
|
|
31
31
|
...props
|
|
32
32
|
}));
|
|
33
33
|
TooltipContent.displayName = Content.displayName;
|
package/dist/index.cjs
CHANGED
|
@@ -201,8 +201,9 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
201
201
|
DropdownMenuContent: ()=>dropdown_menu_cjs_namespaceObject.DropdownMenuContent,
|
|
202
202
|
LockableValueField: ()=>index_cjs_namespaceObject.LockableValueField,
|
|
203
203
|
Separator: ()=>separator_cjs_namespaceObject.Separator,
|
|
204
|
-
|
|
204
|
+
DateRangePicker: ()=>date_picker_cjs_namespaceObject.DateRangePicker,
|
|
205
205
|
ContextMenuContent: ()=>context_menu_cjs_namespaceObject.ContextMenuContent,
|
|
206
|
+
Pagination: ()=>pagination_cjs_namespaceObject.Pagination,
|
|
206
207
|
useWatch: ()=>metadata_form_cjs_namespaceObject.useWatch,
|
|
207
208
|
ChartTooltip: ()=>chart_cjs_namespaceObject.ChartTooltip,
|
|
208
209
|
FormFieldRenderer: ()=>field_renderer_cjs_namespaceObject.FormFieldRenderer,
|
|
@@ -481,6 +482,7 @@ exports.DataTableColumnHeader = __webpack_exports__.DataTableColumnHeader;
|
|
|
481
482
|
exports.DataTableSelectColumn = __webpack_exports__.DataTableSelectColumn;
|
|
482
483
|
exports.DataTransformers = __webpack_exports__.DataTransformers;
|
|
483
484
|
exports.DatePicker = __webpack_exports__.DatePicker;
|
|
485
|
+
exports.DateRangePicker = __webpack_exports__.DateRangePicker;
|
|
484
486
|
exports.DateTimePicker = __webpack_exports__.DateTimePicker;
|
|
485
487
|
exports.Dialog = __webpack_exports__.Dialog;
|
|
486
488
|
exports.DialogClose = __webpack_exports__.DialogClose;
|
|
@@ -768,6 +770,7 @@ for(var __rspack_i in __webpack_exports__)if (-1 === [
|
|
|
768
770
|
"DataTableSelectColumn",
|
|
769
771
|
"DataTransformers",
|
|
770
772
|
"DatePicker",
|
|
773
|
+
"DateRangePicker",
|
|
771
774
|
"DateTimePicker",
|
|
772
775
|
"Dialog",
|
|
773
776
|
"DialogClose",
|
package/dist/index.d.ts
CHANGED
|
@@ -29,12 +29,14 @@ export { ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartToolt
|
|
|
29
29
|
export type { CheckboxProps } from './components/ui/checkbox';
|
|
30
30
|
export { Checkbox } from './components/ui/checkbox';
|
|
31
31
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger, } from './components/ui/collapsible';
|
|
32
|
+
export type { ComboboxItem, ComboboxProps } from './components/ui/combobox';
|
|
32
33
|
export { Combobox } from './components/ui/combobox';
|
|
33
34
|
export { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, } from './components/ui/command';
|
|
34
35
|
export { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, } from './components/ui/context-menu';
|
|
35
36
|
export type { DataTableProps } from './components/ui/data-table';
|
|
36
37
|
export { DataTable, DataTableColumnHeader, DataTableSelectColumn, } from './components/ui/data-table';
|
|
37
|
-
export {
|
|
38
|
+
export type { DatePickerProps, DateRangePickerProps } from './components/ui/date-picker';
|
|
39
|
+
export { DatePicker, DateRangePicker } from './components/ui/date-picker';
|
|
38
40
|
export type { DateTimePickerProps } from './components/ui/datetime-picker';
|
|
39
41
|
export { DateTimePicker } from './components/ui/datetime-picker';
|
|
40
42
|
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger, } from './components/ui/dialog';
|
|
@@ -44,6 +46,7 @@ export type { EditableCellMeta, EditableCellType, } from './components/ui/editab
|
|
|
44
46
|
export { createEditableColumn, EditableCell, } from './components/ui/editable-cell';
|
|
45
47
|
export type { EmptyStateProps } from './components/ui/empty-state';
|
|
46
48
|
export { EmptyState } from './components/ui/empty-state';
|
|
49
|
+
export type { FileUploadProps } from './components/ui/file-upload';
|
|
47
50
|
export { FileUpload } from './components/ui/file-upload';
|
|
48
51
|
export type { FormFieldDescriptionProps, FormFieldErrorProps, FormFieldLabelProps, FormFieldProps, } from './components/ui/form-field';
|
|
49
52
|
export { FormField, FormFieldDescription, FormFieldError, FormFieldLabel, } from './components/ui/form-field';
|
|
@@ -78,6 +81,7 @@ export { ResizableHandle, ResizablePanel, ResizablePanelGroup, } from './compone
|
|
|
78
81
|
export { ScrollArea, ScrollBar } from './components/ui/scroll-area';
|
|
79
82
|
export type { SearchProps, SearchWithSuggestionsProps, } from './components/ui/search';
|
|
80
83
|
export { Search, SearchWithSuggestions } from './components/ui/search';
|
|
84
|
+
export type { SelectTriggerProps } from './components/ui/select';
|
|
81
85
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, } from './components/ui/select';
|
|
82
86
|
export { Separator } from './components/ui/separator';
|
|
83
87
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, } from './components/ui/sheet';
|
package/dist/index.js
CHANGED
|
@@ -25,7 +25,7 @@ import { Combobox } from "./components/ui/combobox.js";
|
|
|
25
25
|
import { Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut } from "./components/ui/command.js";
|
|
26
26
|
import { ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger } from "./components/ui/context-menu.js";
|
|
27
27
|
import { DataTable, DataTableColumnHeader, DataTableSelectColumn } from "./components/ui/data-table.js";
|
|
28
|
-
import { DatePicker } from "./components/ui/date-picker.js";
|
|
28
|
+
import { DatePicker, DateRangePicker } from "./components/ui/date-picker.js";
|
|
29
29
|
import { DateTimePicker } from "./components/ui/datetime-picker.js";
|
|
30
30
|
import { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger } from "./components/ui/dialog.js";
|
|
31
31
|
import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger } from "./components/ui/drawer.js";
|
|
@@ -72,4 +72,4 @@ import { Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger
|
|
|
72
72
|
import tree_view from "./components/ui/tree-view.js";
|
|
73
73
|
import { VariablePicker, VariablePickerContent } from "./components/ui/variable-picker/index.js";
|
|
74
74
|
import { cn } from "./lib/utils.js";
|
|
75
|
-
export { $insertTokenAtCursor, 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, DEFAULT_PROMPT_EDITOR_STRINGS, 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, InfoTooltip, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputTokenNode, Label, LockableValueField, MetadataForm, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger, MultiSelect, OutputTokenNode, PROMPT_EDITOR_RICH_TRANSFORMERS, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalContainerProvider, Progress, PromptEditor, RadioGroup, RadioGroupItem, RequiredIndicator, ResizableHandle, ResizablePanel, ResizablePanelGroup, ResourceTokenNode, 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, StateTokenNode, StatsCard, Stepper, StringListField, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, TokenPill, TokenPillWithTooltip, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, tree_view as TreeView, VARIABLE_DRAG_MIME, VARIABLE_PATH_REGEX, VariablePicker, VariablePickerContent, WORD_JOINER, analyticsPlugin, auditPlugin, autoSavePlugin, badgeVariants, buttonVariants, cn, createEditableColumn, createInputTokenNode, createOutputTokenNode, createResourceTokenNode, createStateTokenNode, createTokenNodeForOption, formatTemplate, formattingPlugin, getAllPromptTokenNodes, getEditorTokens, getPromptEditorTokenColors, getPromptEditorTokenTypeLabel, hasMinMaxStep, hasOptions, inferTokenTypeFromPath, isCustomField, isFileField, isPromptTokenNode, normalizeRichTextTokens, normalizeVariablePath, setEditorTokens, spinnerVariants, toast, toggleVariants, useWatch, validationPlugin, workflowPlugin };
|
|
75
|
+
export { $insertTokenAtCursor, 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, DEFAULT_PROMPT_EDITOR_STRINGS, DataFetcher, DataSourceBuilder, DataTable, DataTableColumnHeader, DataTableSelectColumn, DataTransformers, DatePicker, DateRangePicker, 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, InfoTooltip, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputTokenNode, Label, LockableValueField, MetadataForm, Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger, MultiSelect, OutputTokenNode, PROMPT_EDITOR_RICH_TRANSFORMERS, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalContainerProvider, Progress, PromptEditor, RadioGroup, RadioGroupItem, RequiredIndicator, ResizableHandle, ResizablePanel, ResizablePanelGroup, ResourceTokenNode, 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, StateTokenNode, StatsCard, Stepper, StringListField, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, TokenPill, TokenPillWithTooltip, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, tree_view as TreeView, VARIABLE_DRAG_MIME, VARIABLE_PATH_REGEX, VariablePicker, VariablePickerContent, WORD_JOINER, analyticsPlugin, auditPlugin, autoSavePlugin, badgeVariants, buttonVariants, cn, createEditableColumn, createInputTokenNode, createOutputTokenNode, createResourceTokenNode, createStateTokenNode, createTokenNodeForOption, formatTemplate, formattingPlugin, getAllPromptTokenNodes, getEditorTokens, getPromptEditorTokenColors, getPromptEditorTokenTypeLabel, hasMinMaxStep, hasOptions, inferTokenTypeFromPath, isCustomField, isFileField, isPromptTokenNode, normalizeRichTextTokens, normalizeVariablePath, setEditorTokens, spinnerVariants, toast, toggleVariants, useWatch, validationPlugin, workflowPlugin };
|
package/dist/styles.css
CHANGED
|
@@ -805,6 +805,9 @@
|
|
|
805
805
|
.mt-1 {
|
|
806
806
|
margin-top: calc(var(--spacing) * 1);
|
|
807
807
|
}
|
|
808
|
+
.mt-1\.5 {
|
|
809
|
+
margin-top: calc(var(--spacing) * 1.5);
|
|
810
|
+
}
|
|
808
811
|
.mt-2 {
|
|
809
812
|
margin-top: calc(var(--spacing) * 2);
|
|
810
813
|
}
|
|
@@ -1704,6 +1707,9 @@
|
|
|
1704
1707
|
.transform {
|
|
1705
1708
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
1706
1709
|
}
|
|
1710
|
+
.\!animate-none {
|
|
1711
|
+
animation: none !important;
|
|
1712
|
+
}
|
|
1707
1713
|
.animate-none {
|
|
1708
1714
|
animation: none;
|
|
1709
1715
|
}
|
|
@@ -1990,6 +1996,9 @@
|
|
|
1990
1996
|
margin-block-end: calc(calc(var(--spacing) * 16) * calc(1 - var(--tw-space-y-reverse)));
|
|
1991
1997
|
}
|
|
1992
1998
|
}
|
|
1999
|
+
.gap-x-4 {
|
|
2000
|
+
column-gap: calc(var(--spacing) * 4);
|
|
2001
|
+
}
|
|
1993
2002
|
.gap-x-6 {
|
|
1994
2003
|
column-gap: calc(var(--spacing) * 6);
|
|
1995
2004
|
}
|
|
@@ -2026,6 +2035,9 @@
|
|
|
2026
2035
|
.gap-y-3 {
|
|
2027
2036
|
row-gap: calc(var(--spacing) * 3);
|
|
2028
2037
|
}
|
|
2038
|
+
.gap-y-14 {
|
|
2039
|
+
row-gap: calc(var(--spacing) * 14);
|
|
2040
|
+
}
|
|
2029
2041
|
.self-end {
|
|
2030
2042
|
align-self: flex-end;
|
|
2031
2043
|
}
|
|
@@ -2233,6 +2245,12 @@
|
|
|
2233
2245
|
.border-\(--color-border\) {
|
|
2234
2246
|
border-color: var(--color-border);
|
|
2235
2247
|
}
|
|
2248
|
+
.border-accent-foreground\/20 {
|
|
2249
|
+
border-color: var(--accent-foreground);
|
|
2250
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2251
|
+
border-color: color-mix(in oklab, var(--accent-foreground) 20%, transparent);
|
|
2252
|
+
}
|
|
2253
|
+
}
|
|
2236
2254
|
.border-border {
|
|
2237
2255
|
border-color: var(--ap-wind-border);
|
|
2238
2256
|
}
|
|
@@ -2311,12 +2329,6 @@
|
|
|
2311
2329
|
border-color: color-mix(in oklab, var(--error) 50%, transparent);
|
|
2312
2330
|
}
|
|
2313
2331
|
}
|
|
2314
|
-
.border-foreground-inverse\/20 {
|
|
2315
|
-
border-color: var(--foreground-inverse);
|
|
2316
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2317
|
-
border-color: color-mix(in oklab, var(--foreground-inverse) 20%, transparent);
|
|
2318
|
-
}
|
|
2319
|
-
}
|
|
2320
2332
|
.border-gray-300 {
|
|
2321
2333
|
border-color: var(--color-gray-300);
|
|
2322
2334
|
}
|
|
@@ -2491,6 +2503,18 @@
|
|
|
2491
2503
|
.bg-accent {
|
|
2492
2504
|
background-color: var(--accent);
|
|
2493
2505
|
}
|
|
2506
|
+
.bg-accent-foreground\/10 {
|
|
2507
|
+
background-color: var(--accent-foreground);
|
|
2508
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2509
|
+
background-color: color-mix(in oklab, var(--accent-foreground) 10%, transparent);
|
|
2510
|
+
}
|
|
2511
|
+
}
|
|
2512
|
+
.bg-accent-foreground\/15 {
|
|
2513
|
+
background-color: var(--accent-foreground);
|
|
2514
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2515
|
+
background-color: color-mix(in oklab, var(--accent-foreground) 15%, transparent);
|
|
2516
|
+
}
|
|
2517
|
+
}
|
|
2494
2518
|
.bg-accent\/50 {
|
|
2495
2519
|
background-color: var(--accent);
|
|
2496
2520
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2740,18 +2764,6 @@
|
|
|
2740
2764
|
.bg-foreground-accent {
|
|
2741
2765
|
background-color: var(--foreground-accent);
|
|
2742
2766
|
}
|
|
2743
|
-
.bg-foreground-inverse\/10 {
|
|
2744
|
-
background-color: var(--foreground-inverse);
|
|
2745
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2746
|
-
background-color: color-mix(in oklab, var(--foreground-inverse) 10%, transparent);
|
|
2747
|
-
}
|
|
2748
|
-
}
|
|
2749
|
-
.bg-foreground-inverse\/15 {
|
|
2750
|
-
background-color: var(--foreground-inverse);
|
|
2751
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
2752
|
-
background-color: color-mix(in oklab, var(--foreground-inverse) 15%, transparent);
|
|
2753
|
-
}
|
|
2754
|
-
}
|
|
2755
2767
|
.bg-fuchsia-50 {
|
|
2756
2768
|
background-color: var(--color-fuchsia-50);
|
|
2757
2769
|
}
|
|
@@ -3997,6 +4009,12 @@
|
|
|
3997
4009
|
.text-accent-foreground {
|
|
3998
4010
|
color: var(--accent-foreground);
|
|
3999
4011
|
}
|
|
4012
|
+
.text-accent-foreground\/70 {
|
|
4013
|
+
color: var(--accent-foreground);
|
|
4014
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
4015
|
+
color: color-mix(in oklab, var(--accent-foreground) 70%, transparent);
|
|
4016
|
+
}
|
|
4017
|
+
}
|
|
4000
4018
|
.text-amber-500 {
|
|
4001
4019
|
color: var(--color-amber-500);
|
|
4002
4020
|
}
|
|
@@ -4060,12 +4078,6 @@
|
|
|
4060
4078
|
.text-foreground-inverse {
|
|
4061
4079
|
color: var(--foreground-inverse);
|
|
4062
4080
|
}
|
|
4063
|
-
.text-foreground-inverse\/70 {
|
|
4064
|
-
color: var(--foreground-inverse);
|
|
4065
|
-
@supports (color: color-mix(in lab, red, red)) {
|
|
4066
|
-
color: color-mix(in oklab, var(--foreground-inverse) 70%, transparent);
|
|
4067
|
-
}
|
|
4068
|
-
}
|
|
4069
4081
|
.text-foreground-link {
|
|
4070
4082
|
color: var(--foreground-link);
|
|
4071
4083
|
}
|
|
@@ -4572,6 +4584,11 @@
|
|
|
4572
4584
|
opacity: 50%;
|
|
4573
4585
|
}
|
|
4574
4586
|
}
|
|
4587
|
+
.group-aria-invalid\/radio-group\:border-error {
|
|
4588
|
+
&:is(:where(.group\/radio-group)[aria-invalid="true"] *) {
|
|
4589
|
+
border-color: var(--error);
|
|
4590
|
+
}
|
|
4591
|
+
}
|
|
4575
4592
|
.group-data-\[focused\=true\]\/day\:relative {
|
|
4576
4593
|
&:is(:where(.group\/day)[data-focused="true"] *) {
|
|
4577
4594
|
position: relative;
|
|
@@ -5499,6 +5516,13 @@
|
|
|
5499
5516
|
--tw-ring-inset: inset;
|
|
5500
5517
|
}
|
|
5501
5518
|
}
|
|
5519
|
+
.group-aria-invalid\/radio-group\:focus-visible\:ring-error {
|
|
5520
|
+
&:is(:where(.group\/radio-group)[aria-invalid="true"] *) {
|
|
5521
|
+
&:focus-visible {
|
|
5522
|
+
--tw-ring-color: var(--error);
|
|
5523
|
+
}
|
|
5524
|
+
}
|
|
5525
|
+
}
|
|
5502
5526
|
.active\:scale-95 {
|
|
5503
5527
|
&:active {
|
|
5504
5528
|
--tw-scale-x: 95%;
|
|
@@ -6138,6 +6162,11 @@
|
|
|
6138
6162
|
border-left-width: 1px;
|
|
6139
6163
|
}
|
|
6140
6164
|
}
|
|
6165
|
+
.sm\:p-6 {
|
|
6166
|
+
@media (width >= 40rem) {
|
|
6167
|
+
padding: calc(var(--spacing) * 6);
|
|
6168
|
+
}
|
|
6169
|
+
}
|
|
6141
6170
|
.sm\:px-8 {
|
|
6142
6171
|
@media (width >= 40rem) {
|
|
6143
6172
|
padding-inline: calc(var(--spacing) * 8);
|
|
@@ -6440,6 +6469,13 @@
|
|
|
6440
6469
|
}
|
|
6441
6470
|
}
|
|
6442
6471
|
}
|
|
6472
|
+
.future\:group-aria-invalid\/radio-group\:border-error {
|
|
6473
|
+
:is(.future-dark, .future-light) & {
|
|
6474
|
+
&:is(:where(.group\/radio-group)[aria-invalid="true"] *) {
|
|
6475
|
+
border-color: var(--error);
|
|
6476
|
+
}
|
|
6477
|
+
}
|
|
6478
|
+
}
|
|
6443
6479
|
.future\:placeholder\:font-normal {
|
|
6444
6480
|
:is(.future-dark, .future-light) & {
|
|
6445
6481
|
&::placeholder {
|
|
@@ -6515,6 +6551,17 @@
|
|
|
6515
6551
|
}
|
|
6516
6552
|
}
|
|
6517
6553
|
}
|
|
6554
|
+
.future\:group-aria-invalid\/radio-group\:hover\:border-error {
|
|
6555
|
+
:is(.future-dark, .future-light) & {
|
|
6556
|
+
&:is(:where(.group\/radio-group)[aria-invalid="true"] *) {
|
|
6557
|
+
&:hover {
|
|
6558
|
+
@media (hover: hover) {
|
|
6559
|
+
border-color: var(--error);
|
|
6560
|
+
}
|
|
6561
|
+
}
|
|
6562
|
+
}
|
|
6563
|
+
}
|
|
6564
|
+
}
|
|
6518
6565
|
.future\:focus-visible\:ring-0 {
|
|
6519
6566
|
:is(.future-dark, .future-light) & {
|
|
6520
6567
|
&:focus-visible {
|
|
@@ -6579,6 +6626,13 @@
|
|
|
6579
6626
|
}
|
|
6580
6627
|
}
|
|
6581
6628
|
}
|
|
6629
|
+
.future\:aria-invalid\:border-error {
|
|
6630
|
+
:is(.future-dark, .future-light) & {
|
|
6631
|
+
&[aria-invalid="true"] {
|
|
6632
|
+
border-color: var(--error);
|
|
6633
|
+
}
|
|
6634
|
+
}
|
|
6635
|
+
}
|
|
6582
6636
|
.future\:aria-invalid\:ring-1 {
|
|
6583
6637
|
:is(.future-dark, .future-light) & {
|
|
6584
6638
|
&[aria-invalid="true"] {
|
|
@@ -6597,6 +6651,17 @@
|
|
|
6597
6651
|
}
|
|
6598
6652
|
}
|
|
6599
6653
|
}
|
|
6654
|
+
.future\:aria-invalid\:hover\:border-error {
|
|
6655
|
+
:is(.future-dark, .future-light) & {
|
|
6656
|
+
&[aria-invalid="true"] {
|
|
6657
|
+
&:hover {
|
|
6658
|
+
@media (hover: hover) {
|
|
6659
|
+
border-color: var(--error);
|
|
6660
|
+
}
|
|
6661
|
+
}
|
|
6662
|
+
}
|
|
6663
|
+
}
|
|
6664
|
+
}
|
|
6600
6665
|
.future\:data-\[state\=checked\]\:border-foreground-accent {
|
|
6601
6666
|
:is(.future-dark, .future-light) & {
|
|
6602
6667
|
&[data-state="checked"] {
|
|
@@ -6625,6 +6690,24 @@
|
|
|
6625
6690
|
}
|
|
6626
6691
|
}
|
|
6627
6692
|
}
|
|
6693
|
+
.future\:group-aria-invalid\/radio-group\:data-\[state\=checked\]\:border-error {
|
|
6694
|
+
:is(.future-dark, .future-light) & {
|
|
6695
|
+
&:is(:where(.group\/radio-group)[aria-invalid="true"] *) {
|
|
6696
|
+
&[data-state="checked"] {
|
|
6697
|
+
border-color: var(--error);
|
|
6698
|
+
}
|
|
6699
|
+
}
|
|
6700
|
+
}
|
|
6701
|
+
}
|
|
6702
|
+
.future\:aria-invalid\:data-\[state\=checked\]\:border-error {
|
|
6703
|
+
:is(.future-dark, .future-light) & {
|
|
6704
|
+
&[aria-invalid="true"] {
|
|
6705
|
+
&[data-state="checked"] {
|
|
6706
|
+
border-color: var(--error);
|
|
6707
|
+
}
|
|
6708
|
+
}
|
|
6709
|
+
}
|
|
6710
|
+
}
|
|
6628
6711
|
.future\:data-\[state\=on\]\:text-foreground {
|
|
6629
6712
|
:is(.future-dark, .future-light) & {
|
|
6630
6713
|
&[data-state="on"] {
|
|
@@ -6903,6 +6986,11 @@
|
|
|
6903
6986
|
justify-content: center;
|
|
6904
6987
|
}
|
|
6905
6988
|
}
|
|
6989
|
+
.\[\&\>\[data-slot\=form-field-error\]\]\:mt-0 {
|
|
6990
|
+
&>[data-slot=form-field-error] {
|
|
6991
|
+
margin-top: calc(var(--spacing) * 0);
|
|
6992
|
+
}
|
|
6993
|
+
}
|
|
6906
6994
|
.\[\&\>button\]\:rounded-none {
|
|
6907
6995
|
&>button {
|
|
6908
6996
|
border-radius: 0;
|