@tutti-os/ui-system 0.0.189 → 0.0.191
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/{chunk-45TFBBVS.js → chunk-OW6744SQ.js} +700 -444
- package/dist/chunk-OW6744SQ.js.map +1 -0
- package/dist/components/index.d.ts +43 -2
- package/dist/components/index.js +5 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -1
- package/dist/metadata/components.json +40 -0
- package/dist/metadata/index.js +40 -0
- package/dist/metadata/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-45TFBBVS.js.map +0 -1
|
@@ -3,7 +3,7 @@ import * as class_variance_authority_types from 'class-variance-authority/types'
|
|
|
3
3
|
import * as React$1 from 'react';
|
|
4
4
|
import { ReactNode, JSX, CSSProperties } from 'react';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
|
-
import { Checkbox as Checkbox$1, ContextMenu as ContextMenu$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Popover as Popover$1, Select as Select$1, Separator as Separator$1, Switch as Switch$1, Toast, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
6
|
+
import { Checkbox as Checkbox$1, ContextMenu as ContextMenu$1, Dialog as Dialog$1, DropdownMenu as DropdownMenu$1, Popover as Popover$1, Select as Select$1, Separator as Separator$1, Slider as Slider$1, Switch as Switch$1, Toast, Tooltip as Tooltip$1 } from 'radix-ui';
|
|
7
7
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
8
8
|
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
9
9
|
import { ToasterProps } from 'sonner';
|
|
@@ -52,6 +52,41 @@ declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div
|
|
|
52
52
|
|
|
53
53
|
declare function Checkbox({ className, ...props }: React$1.ComponentProps<typeof Checkbox$1.Root>): react_jsx_runtime.JSX.Element;
|
|
54
54
|
|
|
55
|
+
interface ComboboxOption {
|
|
56
|
+
description?: string;
|
|
57
|
+
disabled?: boolean;
|
|
58
|
+
/** Extra strings the search filter matches beyond value and label. */
|
|
59
|
+
keywords?: readonly string[];
|
|
60
|
+
label: string;
|
|
61
|
+
value: string;
|
|
62
|
+
}
|
|
63
|
+
interface ComboboxProps {
|
|
64
|
+
align?: "center" | "end" | "start";
|
|
65
|
+
/**
|
|
66
|
+
* Offer the typed query as a selectable value when it matches no option.
|
|
67
|
+
* The caller localizes the row through customValueLabel.
|
|
68
|
+
*/
|
|
69
|
+
allowCustomValue?: boolean;
|
|
70
|
+
"aria-label"?: string;
|
|
71
|
+
className?: string;
|
|
72
|
+
contentClassName?: string;
|
|
73
|
+
contentStyle?: React$1.CSSProperties;
|
|
74
|
+
customValueLabel?: (query: string) => React$1.ReactNode;
|
|
75
|
+
disabled?: boolean;
|
|
76
|
+
emptyMessage?: React$1.ReactNode;
|
|
77
|
+
onValueChange: (value: string) => void;
|
|
78
|
+
options: readonly ComboboxOption[];
|
|
79
|
+
placeholder?: string;
|
|
80
|
+
searchPlaceholder?: string;
|
|
81
|
+
value: string;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* Searchable single-value picker composed from Popover and Input. Unlike
|
|
85
|
+
* Select, the open surface is query-driven with a fixed-height option list,
|
|
86
|
+
* and it can accept a typed value that is not in the option catalog.
|
|
87
|
+
*/
|
|
88
|
+
declare function Combobox({ align, allowCustomValue, "aria-label": ariaLabel, className, contentClassName, contentStyle, customValueLabel, disabled, emptyMessage, onValueChange, options, placeholder, searchPlaceholder, value }: ComboboxProps): react_jsx_runtime.JSX.Element;
|
|
89
|
+
|
|
55
90
|
type ConfirmationDialogTone = "default" | "destructive";
|
|
56
91
|
declare function ConfirmationDialog({ cancelLabel, children, className, confirmBusy, confirmDisabled, confirmLabel, description, disableCloseWhileBusy, footer, hideConfirmButton, onCancel, onConfirm, onOpenChange, open, overlayClassName, portaled, tone, title }: {
|
|
57
92
|
cancelLabel: React$1.ReactNode;
|
|
@@ -312,6 +347,12 @@ declare function SectionTabs<TValue extends string>({ tabs, value, onValueChange
|
|
|
312
347
|
|
|
313
348
|
declare function ShortcutBadge({ className, ...props }: React$1.ComponentProps<"kbd">): react_jsx_runtime.JSX.Element;
|
|
314
349
|
|
|
350
|
+
type SliderProps = React$1.ComponentProps<typeof Slider$1.Root> & {
|
|
351
|
+
/** Caller-owned accessible names for each thumb in a multi-value slider. */
|
|
352
|
+
thumbAriaLabels?: readonly string[];
|
|
353
|
+
};
|
|
354
|
+
declare function Slider({ "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, className, defaultValue, value, min, max, thumbAriaLabels, ...props }: SliderProps): react_jsx_runtime.JSX.Element;
|
|
355
|
+
|
|
315
356
|
declare function Toaster({ toastOptions, style, ...props }: ToasterProps): react_jsx_runtime.JSX.Element;
|
|
316
357
|
|
|
317
358
|
interface SpinnerProps {
|
|
@@ -470,4 +511,4 @@ interface ViewportMenuSurfaceProps extends Omit<React$1.HTMLAttributes<HTMLDivEl
|
|
|
470
511
|
}
|
|
471
512
|
declare const ViewportMenuSurface: React$1.ForwardRefExoticComponent<ViewportMenuSurfaceProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
472
513
|
|
|
473
|
-
export { Badge, BareIconButton, type BareIconButtonProps, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, ConfirmationDialog, type ConfirmationDialogTone, ContextMenu, ContextMenuContent, ContextMenuItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DatePicker, type DatePickerLabels, type DatePickerProps, 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, Input, MentionPill, type MentionPillFileKind, type MentionPillKind, type MentionPillProps, type MenuPoint, type MenuPointAlignment, type MenuSize, MenuSurface, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, RadioIndicator, type RadioIndicatorProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, type SectionTabItem, SectionTabs, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectSplitColumn, SelectSplitColumnItems, SelectSplitColumnLabel, SelectSplitDivider, SelectSplitLayout, SelectTrigger, SelectValue, Separator, ShortcutBadge, Sortable, SortableContent, SortableItem, SortableItemHandle, SortableOverlay, type SortableProps, Spinner, type SpinnerProps, StatusDot, Switch, Textarea, ToastClose, ToastDescription, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, TruncatingPillLabel, type TruncatingPillLabelProps, type UnderlineTabItem, UnderlineTabs, type ViewportMenuPlacement, ViewportMenuSurface, type ViewportMenuSurfaceProps, badgeVariants, buttonVariants, menuItemClassName, menuItemIndicatorClassName, menuItemWithIndicatorClassName, menuSurfaceClassName, statusDotVariants, toastVariants, useTextOverflow };
|
|
514
|
+
export { Badge, BareIconButton, type BareIconButtonProps, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Combobox, type ComboboxOption, ConfirmationDialog, type ConfirmationDialogTone, ContextMenu, ContextMenuContent, ContextMenuItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DatePicker, type DatePickerLabels, type DatePickerProps, 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, Input, MentionPill, type MentionPillFileKind, type MentionPillKind, type MentionPillProps, type MenuPoint, type MenuPointAlignment, type MenuSize, MenuSurface, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, RadioIndicator, type RadioIndicatorProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, type SectionTabItem, SectionTabs, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectSplitColumn, SelectSplitColumnItems, SelectSplitColumnLabel, SelectSplitDivider, SelectSplitLayout, SelectTrigger, SelectValue, Separator, ShortcutBadge, Slider, type SliderProps, Sortable, SortableContent, SortableItem, SortableItemHandle, SortableOverlay, type SortableProps, Spinner, type SpinnerProps, StatusDot, Switch, Textarea, ToastClose, ToastDescription, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, TruncatingPillLabel, type TruncatingPillLabelProps, type UnderlineTabItem, UnderlineTabs, type ViewportMenuPlacement, ViewportMenuSurface, type ViewportMenuSurfaceProps, badgeVariants, buttonVariants, menuItemClassName, menuItemIndicatorClassName, menuItemWithIndicatorClassName, menuSurfaceClassName, statusDotVariants, toastVariants, useTextOverflow };
|
package/dist/components/index.js
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
CardHeader,
|
|
11
11
|
CardTitle,
|
|
12
12
|
Checkbox,
|
|
13
|
+
Combobox,
|
|
13
14
|
ConfirmationDialog,
|
|
14
15
|
ContextMenu,
|
|
15
16
|
ContextMenuContent,
|
|
@@ -88,6 +89,7 @@ import {
|
|
|
88
89
|
SelectValue,
|
|
89
90
|
Separator,
|
|
90
91
|
ShortcutBadge,
|
|
92
|
+
Slider,
|
|
91
93
|
Sortable,
|
|
92
94
|
SortableContent,
|
|
93
95
|
SortableItem,
|
|
@@ -122,7 +124,7 @@ import {
|
|
|
122
124
|
toast,
|
|
123
125
|
toastVariants,
|
|
124
126
|
useTextOverflow
|
|
125
|
-
} from "../chunk-
|
|
127
|
+
} from "../chunk-OW6744SQ.js";
|
|
126
128
|
import "../chunk-LD3MNTUQ.js";
|
|
127
129
|
import "../chunk-DGPY4WP3.js";
|
|
128
130
|
export {
|
|
@@ -137,6 +139,7 @@ export {
|
|
|
137
139
|
CardHeader,
|
|
138
140
|
CardTitle,
|
|
139
141
|
Checkbox,
|
|
142
|
+
Combobox,
|
|
140
143
|
ConfirmationDialog,
|
|
141
144
|
ContextMenu,
|
|
142
145
|
ContextMenuContent,
|
|
@@ -215,6 +218,7 @@ export {
|
|
|
215
218
|
SelectValue,
|
|
216
219
|
Separator,
|
|
217
220
|
ShortcutBadge,
|
|
221
|
+
Slider,
|
|
218
222
|
Sortable,
|
|
219
223
|
SortableContent,
|
|
220
224
|
SortableItem,
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Badge, BareIconButton, BareIconButtonProps, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, ConfirmationDialog, ConfirmationDialogTone, ContextMenu, ContextMenuContent, ContextMenuItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DatePicker, DatePickerLabels, DatePickerProps, 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, Input, MentionPill, MentionPillFileKind, MentionPillKind, MentionPillProps, MenuPoint, MenuPointAlignment, MenuSize, MenuSurface, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, RadioIndicator, RadioIndicatorProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SectionTabItem, SectionTabs, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectSplitColumn, SelectSplitColumnItems, SelectSplitColumnLabel, SelectSplitDivider, SelectSplitLayout, SelectTrigger, SelectValue, Separator, ShortcutBadge, Sortable, SortableContent, SortableItem, SortableItemHandle, SortableOverlay, SortableProps, Spinner, SpinnerProps, StatusDot, Switch, Textarea, ToastClose, ToastDescription, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, TruncatingPillLabel, TruncatingPillLabelProps, UnderlineTabItem, UnderlineTabs, ViewportMenuPlacement, ViewportMenuSurface, ViewportMenuSurfaceProps, badgeVariants, buttonVariants, menuItemClassName, menuItemIndicatorClassName, menuItemWithIndicatorClassName, menuSurfaceClassName, statusDotVariants, toastVariants, useTextOverflow } from './components/index.js';
|
|
1
|
+
export { Badge, BareIconButton, BareIconButtonProps, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Combobox, ComboboxOption, ConfirmationDialog, ConfirmationDialogTone, ContextMenu, ContextMenuContent, ContextMenuItem, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DatePicker, DatePickerLabels, DatePickerProps, 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, Input, MentionPill, MentionPillFileKind, MentionPillKind, MentionPillProps, MenuPoint, MenuPointAlignment, MenuSize, MenuSurface, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, RadioIndicator, RadioIndicatorProps, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SectionTabItem, SectionTabs, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectSplitColumn, SelectSplitColumnItems, SelectSplitColumnLabel, SelectSplitDivider, SelectSplitLayout, SelectTrigger, SelectValue, Separator, ShortcutBadge, Slider, SliderProps, Sortable, SortableContent, SortableItem, SortableItemHandle, SortableOverlay, SortableProps, Spinner, SpinnerProps, StatusDot, Switch, Textarea, ToastClose, ToastDescription, ToastProvider, ToastRoot, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, TruncatingPillLabel, TruncatingPillLabelProps, UnderlineTabItem, UnderlineTabs, ViewportMenuPlacement, ViewportMenuSurface, ViewportMenuSurfaceProps, badgeVariants, buttonVariants, menuItemClassName, menuItemIndicatorClassName, menuItemWithIndicatorClassName, menuSurfaceClassName, statusDotVariants, toastVariants, useTextOverflow } from './components/index.js';
|
|
2
2
|
export { AddIcon, AddLinedIcon, AgentSessionsIcon, AppWindowIcon, ArrowLeftIcon, ArrowRightIcon, AskLinedIcon, BillingIcon, CapabilityIcon, ChatIcon, CheckIcon, ChevronDownIcon, ChevronUpIcon, ChromeIcon, CloseEyesIcon, CloseIcon, CollapseLinedIcon, CopyIcon, CreateChatIcon, CreditsIcon, DarkModeIcon, DashboardIcon, DeleteIcon, DirectoryIcon, DiscordIcon, DownloadIcon, EditIcon, EyeIcon, FailedFilledIcon, FailedLinedIcon, FeedbackIcon, FileCodeIcon, FileCreateIcon, FileIcon, FileLinedIcon, FileTextIcon, FolderFailedFilledIcon, FolderFailedIcon, FolderFilledIcon, FolderIcon, FolderOpenLinedIcon, GitHubBrandIcon, GoogleBrandIcon, GridBottomLinedIcon, GridHorizontalLinedIcon, GridLeftLinedIcon, GridRightLinedIcon, GridTopLinedIcon, GridVerticalLinedIcon, GripVerticalIcon, GuideIcon, HealthIcon, IconProps, ImageFileIcon, ImageGenerateIcon, ImportLinedIcon, InspectIcon, IssueIcon, KeyboardFilledIcon, KeyboardIcon, LaunchIcon, LayoutMenuIcon, LayoutPresetIcon, LayoutPresetIconProps, LightModeIcon, LinkIcon, LoadingIcon, LoadingIconProps, LocateFolderIcon, LockGridHorizontalLinedIcon, LockGridVerticalLinedIcon, LockLayoutLinedIcon, MaximizeIcon, MessageSquareTextIcon, MinimizeIcon, MoreHorizontalIcon, NavAgentsIcon, NavApplicationsFilledIcon, NavApplicationsLinedIcon, NavLaunchIcon, NewWorkspaceIcon, NewWorkspaceLinedIcon, NoWorkspaceLinedIcon, OpenLinkLinedIcon, OpenSessionsIcon, OverviewLayoutIcon, PanelIcon, PauseIcon, PinFilledIcon, PinIcon, PlatformIcon, PlayIcon, ProductDocIcon, ProductIcon, RecentLinedIcon, RefreshIcon, RestoreIcon, RoomsHintIcon, SearchIcon, SettingsIcon, SignOutIcon, SuccessFilledIcon, SuccessLinedIcon, TaskIcon, TerminalLinedIcon, ThinkingIcon, ToolsIcon, TuttiMark, UnavailableChatIcon, UninstallIcon, UpgradeArrowIcon, UploadFolderIcon, UploadIcon, UserLinedIcon, VideoFileIcon, ViewGridLinedIcon, ViewListLinedIcon, WarningFilledIcon, WarningLinedIcon, WeChatIcon, WebIcon, WebScrapeIcon, WindowTrafficLightIcon, WindowTrafficLightIconName, WindowTrafficLightIconProps } from './icons/index.js';
|
|
3
3
|
export { TuttiDateLocale, formatTuttiDateTime, formatTuttiShortDateTime, getCurrentTuttiDateLocale } from './date-format.js';
|
|
4
4
|
export { cn } from './utils.js';
|
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ import {
|
|
|
10
10
|
CardHeader,
|
|
11
11
|
CardTitle,
|
|
12
12
|
Checkbox,
|
|
13
|
+
Combobox,
|
|
13
14
|
ConfirmationDialog,
|
|
14
15
|
ContextMenu,
|
|
15
16
|
ContextMenuContent,
|
|
@@ -88,6 +89,7 @@ import {
|
|
|
88
89
|
SelectValue,
|
|
89
90
|
Separator,
|
|
90
91
|
ShortcutBadge,
|
|
92
|
+
Slider,
|
|
91
93
|
Sortable,
|
|
92
94
|
SortableContent,
|
|
93
95
|
SortableItem,
|
|
@@ -122,7 +124,7 @@ import {
|
|
|
122
124
|
toast,
|
|
123
125
|
toastVariants,
|
|
124
126
|
useTextOverflow
|
|
125
|
-
} from "./chunk-
|
|
127
|
+
} from "./chunk-OW6744SQ.js";
|
|
126
128
|
import {
|
|
127
129
|
formatTuttiDateTime,
|
|
128
130
|
formatTuttiShortDateTime,
|
|
@@ -284,6 +286,7 @@ export {
|
|
|
284
286
|
CloseEyesIcon,
|
|
285
287
|
CloseIcon,
|
|
286
288
|
CollapseLinedIcon,
|
|
289
|
+
Combobox,
|
|
287
290
|
ConfirmationDialog,
|
|
288
291
|
ContextMenu,
|
|
289
292
|
ContextMenuContent,
|
|
@@ -443,6 +446,7 @@ export {
|
|
|
443
446
|
SettingsIcon,
|
|
444
447
|
ShortcutBadge,
|
|
445
448
|
SignOutIcon,
|
|
449
|
+
Slider,
|
|
446
450
|
Sortable,
|
|
447
451
|
SortableContent,
|
|
448
452
|
SortableItem,
|
|
@@ -1187,6 +1187,26 @@
|
|
|
1187
1187
|
"Prefer this exported toast API over direct sonner imports so consumers stay on the UI-system notification wrapper."
|
|
1188
1188
|
]
|
|
1189
1189
|
},
|
|
1190
|
+
{
|
|
1191
|
+
"id": "combobox",
|
|
1192
|
+
"layer": "base",
|
|
1193
|
+
"name": "Combobox",
|
|
1194
|
+
"export": "Combobox",
|
|
1195
|
+
"from": "@tutti-os/ui-system/components",
|
|
1196
|
+
"category": "composition",
|
|
1197
|
+
"status": "stable",
|
|
1198
|
+
"source": "src/components/combobox/index.tsx",
|
|
1199
|
+
"description": "Searchable single-value picker with a fixed-height option list and optional custom typed values.",
|
|
1200
|
+
"useCases": [
|
|
1201
|
+
"Large option catalogs",
|
|
1202
|
+
"Model or identifier selection",
|
|
1203
|
+
"Free-form value entry with suggestions"
|
|
1204
|
+
],
|
|
1205
|
+
"migrationHints": [
|
|
1206
|
+
"Replace local Popover+Input search dropdowns with the shared Combobox so filtering, keyboard navigation, and tokens stay aligned."
|
|
1207
|
+
],
|
|
1208
|
+
"storyboard": true
|
|
1209
|
+
},
|
|
1190
1210
|
{
|
|
1191
1211
|
"id": "checkbox",
|
|
1192
1212
|
"layer": "base",
|
|
@@ -1247,6 +1267,26 @@
|
|
|
1247
1267
|
],
|
|
1248
1268
|
"storyboard": true
|
|
1249
1269
|
},
|
|
1270
|
+
{
|
|
1271
|
+
"id": "slider",
|
|
1272
|
+
"layer": "base",
|
|
1273
|
+
"name": "Slider",
|
|
1274
|
+
"export": "Slider",
|
|
1275
|
+
"from": "@tutti-os/ui-system/components",
|
|
1276
|
+
"category": "primitive",
|
|
1277
|
+
"status": "stable",
|
|
1278
|
+
"source": "src/components/slider/index.tsx",
|
|
1279
|
+
"description": "Token-backed slider primitive for selecting one value or a bounded range.",
|
|
1280
|
+
"useCases": [
|
|
1281
|
+
"Intensity controls",
|
|
1282
|
+
"Numeric range filters",
|
|
1283
|
+
"Continuous settings"
|
|
1284
|
+
],
|
|
1285
|
+
"migrationHints": [
|
|
1286
|
+
"Replace native range inputs with Slider so focus, disabled, track, and thumb treatments stay aligned across renderer surfaces."
|
|
1287
|
+
],
|
|
1288
|
+
"storyboard": true
|
|
1289
|
+
},
|
|
1250
1290
|
{
|
|
1251
1291
|
"id": "tooltip",
|
|
1252
1292
|
"layer": "base",
|
package/dist/metadata/index.js
CHANGED
|
@@ -1188,6 +1188,26 @@ var components_default = {
|
|
|
1188
1188
|
"Prefer this exported toast API over direct sonner imports so consumers stay on the UI-system notification wrapper."
|
|
1189
1189
|
]
|
|
1190
1190
|
},
|
|
1191
|
+
{
|
|
1192
|
+
id: "combobox",
|
|
1193
|
+
layer: "base",
|
|
1194
|
+
name: "Combobox",
|
|
1195
|
+
export: "Combobox",
|
|
1196
|
+
from: "@tutti-os/ui-system/components",
|
|
1197
|
+
category: "composition",
|
|
1198
|
+
status: "stable",
|
|
1199
|
+
source: "src/components/combobox/index.tsx",
|
|
1200
|
+
description: "Searchable single-value picker with a fixed-height option list and optional custom typed values.",
|
|
1201
|
+
useCases: [
|
|
1202
|
+
"Large option catalogs",
|
|
1203
|
+
"Model or identifier selection",
|
|
1204
|
+
"Free-form value entry with suggestions"
|
|
1205
|
+
],
|
|
1206
|
+
migrationHints: [
|
|
1207
|
+
"Replace local Popover+Input search dropdowns with the shared Combobox so filtering, keyboard navigation, and tokens stay aligned."
|
|
1208
|
+
],
|
|
1209
|
+
storyboard: true
|
|
1210
|
+
},
|
|
1191
1211
|
{
|
|
1192
1212
|
id: "checkbox",
|
|
1193
1213
|
layer: "base",
|
|
@@ -1248,6 +1268,26 @@ var components_default = {
|
|
|
1248
1268
|
],
|
|
1249
1269
|
storyboard: true
|
|
1250
1270
|
},
|
|
1271
|
+
{
|
|
1272
|
+
id: "slider",
|
|
1273
|
+
layer: "base",
|
|
1274
|
+
name: "Slider",
|
|
1275
|
+
export: "Slider",
|
|
1276
|
+
from: "@tutti-os/ui-system/components",
|
|
1277
|
+
category: "primitive",
|
|
1278
|
+
status: "stable",
|
|
1279
|
+
source: "src/components/slider/index.tsx",
|
|
1280
|
+
description: "Token-backed slider primitive for selecting one value or a bounded range.",
|
|
1281
|
+
useCases: [
|
|
1282
|
+
"Intensity controls",
|
|
1283
|
+
"Numeric range filters",
|
|
1284
|
+
"Continuous settings"
|
|
1285
|
+
],
|
|
1286
|
+
migrationHints: [
|
|
1287
|
+
"Replace native range inputs with Slider so focus, disabled, track, and thumb treatments stay aligned across renderer surfaces."
|
|
1288
|
+
],
|
|
1289
|
+
storyboard: true
|
|
1290
|
+
},
|
|
1251
1291
|
{
|
|
1252
1292
|
id: "tooltip",
|
|
1253
1293
|
layer: "base",
|