@sabrenski/spire-ui 0.0.5 → 0.0.7
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/index.d.ts +170 -4
- package/dist/spire-ui.css +1 -1
- package/dist/spire-ui.es.js +7040 -6773
- package/dist/spire-ui.umd.js +10 -10
- package/package.json +83 -70
- package/src/components/Accordion/AccordionContent.vue +5 -2
- package/src/components/Accordion/AccordionItem.vue +4 -0
- package/src/components/Accordion/AccordionRoot.vue +4 -2
- package/src/components/Accordion/AccordionTrigger.vue +4 -1
- package/src/components/Avatar/Avatar.vue +4 -0
- package/src/components/Badge/Badge.vue +4 -0
- package/src/components/BadgeContainer/BadgeContainer.vue +4 -1
- package/src/components/Breadcrumb/BreadcrumbLink.vue +4 -1
- package/src/components/Breadcrumb/BreadcrumbRoot.vue +4 -1
- package/src/components/Button/Button.vue +5 -1
- package/src/components/Callout/Callout.vue +4 -0
- package/src/components/Card/Card.vue +5 -1
- package/src/components/Card/CardContent.vue +5 -1
- package/src/components/Card/CardFooter.vue +5 -1
- package/src/components/Card/CardHeader.vue +5 -1
- package/src/components/Card/CardImage.vue +4 -2
- package/src/components/Chart/BarChart.vue +4 -0
- package/src/components/Chart/BaseChart.vue +52 -47
- package/src/components/Chart/DonutChart.vue +4 -2
- package/src/components/Chart/LineChart.vue +4 -0
- package/src/components/Checkbox/Checkbox.test.ts +94 -0
- package/src/components/Checkbox/Checkbox.vue +170 -1
- package/src/components/ChoiceChip/ChoiceChip.vue +11 -5
- package/src/components/ChoiceChipGroup/ChoiceChipGroup.vue +4 -2
- package/src/components/ColorPicker/ColorArea.vue +4 -2
- package/src/components/ColorPicker/ColorPicker.vue +4 -2
- package/src/components/ColorPicker/ColorSlider.vue +5 -1
- package/src/components/Combobox/Combobox.vue +97 -91
- package/src/components/DataTable/DataTable.vue +5 -1
- package/src/components/DatePicker/DatePicker.vue +5 -1
- package/src/components/Drawer/Drawer.vue +13 -3
- package/src/components/Dropdown/Dropdown.vue +4 -2
- package/src/components/Dropdown/DropdownItem.vue +4 -0
- package/src/components/Dropdown/DropdownSubTrigger.vue +4 -2
- package/src/components/EmptyState/EmptyState.vue +5 -1
- package/src/components/FileUpload/FileUpload.vue +12 -6
- package/src/components/Heading/Heading.vue +4 -0
- package/src/components/Icon/Icon.vue +5 -2
- package/src/components/Input/Input.vue +5 -1
- package/src/components/Layout/Container.vue +4 -0
- package/src/components/Layout/Grid.vue +4 -1
- package/src/components/Layout/GridItem.vue +4 -1
- package/src/components/Layout/Stack.vue +4 -0
- package/src/components/Modal/Modal.test.ts +68 -13
- package/src/components/Modal/Modal.vue +94 -91
- package/src/components/Pagination/Pagination.vue +5 -1
- package/src/components/Popover/Popover.vue +4 -1
- package/src/components/Progress/Progress.vue +5 -0
- package/src/components/Radio/Radio.test.ts +88 -0
- package/src/components/Radio/Radio.vue +169 -1
- package/src/components/Rating/Rating.vue +5 -1
- package/src/components/SegmentedControl/SegmentedControl.vue +5 -1
- package/src/components/Select/Select.vue +61 -55
- package/src/components/Sidebar/SidebarGroup.vue +4 -0
- package/src/components/Sidebar/SidebarItem.vue +4 -0
- package/src/components/Sidebar/SidebarLayout.vue +5 -2
- package/src/components/Sidebar/SidebarRoot.vue +4 -2
- package/src/components/Skeleton/Skeleton.vue +5 -1
- package/src/components/Slider/Slider.vue +5 -1
- package/src/components/Spinner/Spinner.vue +4 -1
- package/src/components/SpireProvider/SpireProvider.vue +4 -1
- package/src/components/Stepper/StepperItem.vue +4 -0
- package/src/components/Stepper/StepperRoot.vue +4 -2
- package/src/components/Stepper/StepperTrigger.vue +6 -2
- package/src/components/Switch/Switch.vue +5 -1
- package/src/components/Tabs/Tabs.vue +4 -1
- package/src/components/Text/Text.vue +4 -0
- package/src/components/Textarea/Textarea.vue +13 -7
- package/src/components/TimePicker/TimePicker.vue +5 -1
- package/src/components/Timeline/Timeline.vue +4 -0
- package/src/components/Timeline/TimelineItem.vue +4 -0
- package/src/components/Toast/ToastItem.vue +5 -1
- package/src/components/Toast/ToastProvider.vue +5 -3
- package/src/components/ToggleButton/ToggleButton.vue +5 -1
- package/src/components/ToggleGroup/ToggleGroup.vue +5 -1
- package/src/components/Tooltip/Tooltip.vue +9 -1
- package/src/components/TreeView/TreeView.vue +4 -1
- package/src/components/TreeView/TreeViewItem.vue +4 -0
- package/src/index.ts +3 -0
- package/src/styles/main.css +21 -21
- package/src/types/common.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ import { DebuggerEvent } from 'vue';
|
|
|
18
18
|
import { DefineComponent } from 'vue';
|
|
19
19
|
import { GlobalComponents } from 'vue';
|
|
20
20
|
import { GlobalDirectives } from 'vue';
|
|
21
|
+
import { HTMLAttributes } from 'vue';
|
|
21
22
|
import { InjectionKey } from 'vue';
|
|
22
23
|
import { InputHTMLAttributes } from 'vue';
|
|
23
24
|
import { nextTick } from 'vue';
|
|
@@ -265,6 +266,7 @@ popoverRef: ({
|
|
|
265
266
|
$: ComponentInternalInstance;
|
|
266
267
|
$data: {};
|
|
267
268
|
$props: {
|
|
269
|
+
readonly class?: ClassValue;
|
|
268
270
|
readonly placement?: PopoverPlacement | undefined;
|
|
269
271
|
readonly offset?: number | undefined;
|
|
270
272
|
readonly arrow?: boolean | undefined;
|
|
@@ -385,6 +387,7 @@ modelValue: boolean;
|
|
|
385
387
|
variant: DrawerVariant;
|
|
386
388
|
size: DrawerSize;
|
|
387
389
|
placement: DrawerPlacement;
|
|
390
|
+
flush: boolean;
|
|
388
391
|
closeOnEscape: boolean;
|
|
389
392
|
maskClosable: boolean;
|
|
390
393
|
showClose: boolean;
|
|
@@ -472,7 +475,7 @@ size: ModalSize;
|
|
|
472
475
|
persistent: boolean;
|
|
473
476
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
474
477
|
dialogRef: HTMLDialogElement;
|
|
475
|
-
},
|
|
478
|
+
}, any>;
|
|
476
479
|
|
|
477
480
|
declare const __VLS_component_35: DefineComponent<PopoverProps, {
|
|
478
481
|
open: typeof open_2;
|
|
@@ -953,6 +956,7 @@ declare function __VLS_template_25(): {
|
|
|
953
956
|
$: ComponentInternalInstance;
|
|
954
957
|
$data: {};
|
|
955
958
|
$props: {
|
|
959
|
+
readonly class?: ClassValue;
|
|
956
960
|
readonly placement?: PopoverPlacement | undefined;
|
|
957
961
|
readonly offset?: number | undefined;
|
|
958
962
|
readonly arrow?: boolean | undefined;
|
|
@@ -1167,7 +1171,7 @@ declare function __VLS_template_34(): {
|
|
|
1167
1171
|
refs: {
|
|
1168
1172
|
dialogRef: HTMLDialogElement;
|
|
1169
1173
|
};
|
|
1170
|
-
rootEl:
|
|
1174
|
+
rootEl: any;
|
|
1171
1175
|
};
|
|
1172
1176
|
|
|
1173
1177
|
declare function __VLS_template_35(): {
|
|
@@ -1935,6 +1939,8 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
1935
1939
|
export declare const AccordionContent: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
1936
1940
|
|
|
1937
1941
|
declare interface AccordionContentProps {
|
|
1942
|
+
/** Additional CSS classes */
|
|
1943
|
+
class?: ClassValue;
|
|
1938
1944
|
/** Lazy render - use v-if instead of v-show. Better performance but breaks Ctrl+F search. */
|
|
1939
1945
|
lazy?: boolean;
|
|
1940
1946
|
}
|
|
@@ -1942,6 +1948,8 @@ declare interface AccordionContentProps {
|
|
|
1942
1948
|
export declare const AccordionItem: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
1943
1949
|
|
|
1944
1950
|
export declare interface AccordionItemProps {
|
|
1951
|
+
/** Additional CSS classes */
|
|
1952
|
+
class?: ClassValue;
|
|
1945
1953
|
/** Unique identifier for this item */
|
|
1946
1954
|
value: string;
|
|
1947
1955
|
/** Disable this item */
|
|
@@ -1951,6 +1959,8 @@ export declare interface AccordionItemProps {
|
|
|
1951
1959
|
export declare const AccordionRoot: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1952
1960
|
|
|
1953
1961
|
export declare interface AccordionRootProps {
|
|
1962
|
+
/** Additional CSS classes */
|
|
1963
|
+
class?: ClassValue;
|
|
1954
1964
|
/** Currently open item(s) - single value or array for multiple mode */
|
|
1955
1965
|
modelValue?: string | string[];
|
|
1956
1966
|
/** Allow all items to be collapsed */
|
|
@@ -1964,6 +1974,8 @@ export declare interface AccordionRootProps {
|
|
|
1964
1974
|
export declare const AccordionTrigger: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1965
1975
|
|
|
1966
1976
|
export declare interface AccordionTriggerProps {
|
|
1977
|
+
/** Additional CSS classes */
|
|
1978
|
+
class?: ClassValue;
|
|
1967
1979
|
/** Hide the default chevron indicator */
|
|
1968
1980
|
hideIndicator?: boolean;
|
|
1969
1981
|
}
|
|
@@ -1980,6 +1992,8 @@ bordered: boolean;
|
|
|
1980
1992
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1981
1993
|
|
|
1982
1994
|
export declare interface AvatarProps {
|
|
1995
|
+
/** Additional CSS classes */
|
|
1996
|
+
class?: ClassValue;
|
|
1983
1997
|
/** Image source URL */
|
|
1984
1998
|
src?: string;
|
|
1985
1999
|
/** User name - used for alt text AND initials fallback */
|
|
@@ -2007,6 +2021,8 @@ export declare const Badge: __VLS_WithTemplateSlots_5<typeof __VLS_component_5,
|
|
|
2007
2021
|
export declare const BadgeContainer: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
2008
2022
|
|
|
2009
2023
|
export declare interface BadgeContainerProps {
|
|
2024
|
+
/** Additional CSS classes */
|
|
2025
|
+
class?: ClassValue;
|
|
2010
2026
|
/** Badge position relative to content */
|
|
2011
2027
|
position?: BadgePosition;
|
|
2012
2028
|
/** Horizontal offset adjustment (CSS value) */
|
|
@@ -2020,6 +2036,8 @@ export declare interface BadgeContainerProps {
|
|
|
2020
2036
|
declare type BadgePosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
2021
2037
|
|
|
2022
2038
|
export declare interface BadgeProps {
|
|
2039
|
+
/** Additional CSS classes */
|
|
2040
|
+
class?: ClassValue;
|
|
2023
2041
|
/** Color variant */
|
|
2024
2042
|
variant?: BadgeVariant;
|
|
2025
2043
|
/** Render as dot indicator instead of pill */
|
|
@@ -2039,6 +2057,8 @@ declare type BadgeVariant = 'default' | 'success' | 'warning' | 'danger' | 'info
|
|
|
2039
2057
|
export declare const BarChart: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
2040
2058
|
|
|
2041
2059
|
export declare interface BarChartProps {
|
|
2060
|
+
/** Additional CSS classes */
|
|
2061
|
+
class?: ClassValue;
|
|
2042
2062
|
/** X-axis labels */
|
|
2043
2063
|
labels: string[];
|
|
2044
2064
|
/** Data series */
|
|
@@ -2071,6 +2091,8 @@ export declare interface BarChartSeries {
|
|
|
2071
2091
|
export declare const BaseChart: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
2072
2092
|
|
|
2073
2093
|
export declare interface BaseChartProps {
|
|
2094
|
+
/** Additional CSS classes */
|
|
2095
|
+
class?: ClassValue;
|
|
2074
2096
|
/** Chart type (line, bar, doughnut, pie, etc.) */
|
|
2075
2097
|
type: ChartType;
|
|
2076
2098
|
/** Chart.js data configuration */
|
|
@@ -2108,6 +2130,8 @@ export declare const BreadcrumbItem: __VLS_WithTemplateSlots_9<typeof __VLS_comp
|
|
|
2108
2130
|
export declare const BreadcrumbLink: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
2109
2131
|
|
|
2110
2132
|
export declare interface BreadcrumbLinkProps {
|
|
2133
|
+
/** Additional CSS classes */
|
|
2134
|
+
class?: ClassValue;
|
|
2111
2135
|
/** URL for standard anchor */
|
|
2112
2136
|
href?: string;
|
|
2113
2137
|
/** Route location for vue-router (string or route object) */
|
|
@@ -2123,6 +2147,8 @@ export declare const BreadcrumbPage: __VLS_WithTemplateSlots_11<typeof __VLS_com
|
|
|
2123
2147
|
export declare const BreadcrumbRoot: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
2124
2148
|
|
|
2125
2149
|
export declare interface BreadcrumbRootProps {
|
|
2150
|
+
/** Additional CSS classes */
|
|
2151
|
+
class?: ClassValue;
|
|
2126
2152
|
/** Custom separator component or string */
|
|
2127
2153
|
separator?: Component | string | (() => VNode);
|
|
2128
2154
|
}
|
|
@@ -2132,6 +2158,8 @@ export declare const BreadcrumbSeparator: __VLS_WithTemplateSlots_12<typeof __VL
|
|
|
2132
2158
|
export declare const Button: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2133
2159
|
|
|
2134
2160
|
export declare interface ButtonProps {
|
|
2161
|
+
/** Additional CSS classes */
|
|
2162
|
+
class?: ClassValue;
|
|
2135
2163
|
/** Visual style variant */
|
|
2136
2164
|
variant?: 'primary' | 'secondary' | 'destructive' | 'ghost' | 'outline';
|
|
2137
2165
|
/** Button size */
|
|
@@ -2167,6 +2195,8 @@ export declare interface CalendarDay {
|
|
|
2167
2195
|
export declare const Callout: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
2168
2196
|
|
|
2169
2197
|
export declare interface CalloutProps {
|
|
2198
|
+
/** Additional CSS classes */
|
|
2199
|
+
class?: ClassValue;
|
|
2170
2200
|
/** Visual variant determining color and icon */
|
|
2171
2201
|
variant?: CalloutVariant;
|
|
2172
2202
|
/** Title text (alternative to #title slot) */
|
|
@@ -2186,6 +2216,8 @@ export declare const Card: __VLS_WithTemplateSlots_16<typeof __VLS_component_16,
|
|
|
2186
2216
|
export declare const CardContent: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
2187
2217
|
|
|
2188
2218
|
export declare interface CardContentProps {
|
|
2219
|
+
/** Additional CSS classes */
|
|
2220
|
+
class?: ClassValue;
|
|
2189
2221
|
/** Remove default padding */
|
|
2190
2222
|
flush?: boolean;
|
|
2191
2223
|
}
|
|
@@ -2193,6 +2225,8 @@ export declare interface CardContentProps {
|
|
|
2193
2225
|
export declare const CardFooter: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
2194
2226
|
|
|
2195
2227
|
export declare interface CardFooterProps {
|
|
2228
|
+
/** Additional CSS classes */
|
|
2229
|
+
class?: ClassValue;
|
|
2196
2230
|
/** Content alignment */
|
|
2197
2231
|
align?: 'start' | 'center' | 'end' | 'between';
|
|
2198
2232
|
/** Remove separator border */
|
|
@@ -2202,6 +2236,8 @@ export declare interface CardFooterProps {
|
|
|
2202
2236
|
export declare const CardHeader: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
2203
2237
|
|
|
2204
2238
|
export declare interface CardHeaderProps {
|
|
2239
|
+
/** Additional CSS classes */
|
|
2240
|
+
class?: ClassValue;
|
|
2205
2241
|
/** Title text (alternative to slot) */
|
|
2206
2242
|
title?: string;
|
|
2207
2243
|
/** Subtitle text (alternative to slot) */
|
|
@@ -2224,6 +2260,8 @@ export declare type CardImageFit = 'cover' | 'contain' | 'fill';
|
|
|
2224
2260
|
export declare type CardImagePosition = 'top' | 'bottom' | 'left' | 'right' | 'background';
|
|
2225
2261
|
|
|
2226
2262
|
export declare interface CardImageProps {
|
|
2263
|
+
/** Additional CSS classes */
|
|
2264
|
+
class?: ClassValue;
|
|
2227
2265
|
/** Image source URL */
|
|
2228
2266
|
src: string;
|
|
2229
2267
|
/** Alt text for accessibility */
|
|
@@ -2241,6 +2279,8 @@ export declare interface CardImageProps {
|
|
|
2241
2279
|
export declare type CardPadding = 'none' | 'sm' | 'md' | 'lg';
|
|
2242
2280
|
|
|
2243
2281
|
export declare interface CardProps {
|
|
2282
|
+
/** Additional CSS classes */
|
|
2283
|
+
class?: ClassValue;
|
|
2244
2284
|
/** Visual style variant */
|
|
2245
2285
|
variant?: CardVariant;
|
|
2246
2286
|
/** Render as different element (article, section, aside, etc.) */
|
|
@@ -2298,18 +2338,23 @@ change: (value: boolean) => any;
|
|
|
2298
2338
|
onChange?: ((value: boolean) => any) | undefined;
|
|
2299
2339
|
}>, {
|
|
2300
2340
|
modelValue: boolean;
|
|
2341
|
+
variant: "default" | "pill";
|
|
2301
2342
|
size: "sm" | "md" | "lg";
|
|
2302
2343
|
disabled: boolean;
|
|
2303
2344
|
indeterminate: boolean;
|
|
2304
2345
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
2305
2346
|
inputRef: HTMLInputElement;
|
|
2306
|
-
},
|
|
2347
|
+
}, any>;
|
|
2307
2348
|
|
|
2308
2349
|
export declare interface CheckboxProps {
|
|
2350
|
+
/** Additional CSS classes */
|
|
2351
|
+
class?: ClassValue;
|
|
2309
2352
|
/** Checked state (v-model) */
|
|
2310
2353
|
modelValue?: boolean;
|
|
2311
2354
|
/** Indeterminate state (partial selection) */
|
|
2312
2355
|
indeterminate?: boolean;
|
|
2356
|
+
/** Visual variant */
|
|
2357
|
+
variant?: 'default' | 'pill';
|
|
2313
2358
|
/** Checkbox size */
|
|
2314
2359
|
size?: 'sm' | 'md' | 'lg';
|
|
2315
2360
|
/** Disabled state */
|
|
@@ -2339,6 +2384,8 @@ disabled: boolean;
|
|
|
2339
2384
|
export declare const ChoiceChipGroup: __VLS_WithTemplateSlots_33<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
|
|
2340
2385
|
|
|
2341
2386
|
export declare interface ChoiceChipGroupProps {
|
|
2387
|
+
/** Additional CSS classes */
|
|
2388
|
+
class?: ClassValue;
|
|
2342
2389
|
/** Selected value(s) - single value for 'single' type, array for 'multiple' */
|
|
2343
2390
|
modelValue?: string | number | (string | number)[];
|
|
2344
2391
|
/** Selection type */
|
|
@@ -2350,6 +2397,8 @@ export declare interface ChoiceChipGroupProps {
|
|
|
2350
2397
|
}
|
|
2351
2398
|
|
|
2352
2399
|
export declare interface ChoiceChipProps {
|
|
2400
|
+
/** Additional CSS classes */
|
|
2401
|
+
class?: ClassValue;
|
|
2353
2402
|
/** Selected state for standalone usage (v-model) */
|
|
2354
2403
|
modelValue?: boolean;
|
|
2355
2404
|
/** Value for group usage */
|
|
@@ -2362,6 +2411,9 @@ export declare interface ChoiceChipProps {
|
|
|
2362
2411
|
disabled?: boolean;
|
|
2363
2412
|
}
|
|
2364
2413
|
|
|
2414
|
+
/** CSS class value - string, array, or object */
|
|
2415
|
+
export declare type ClassValue = HTMLAttributes['class'];
|
|
2416
|
+
|
|
2365
2417
|
/**
|
|
2366
2418
|
* Clear all files
|
|
2367
2419
|
*/
|
|
@@ -2384,6 +2436,8 @@ areaRef: HTMLDivElement;
|
|
|
2384
2436
|
}, HTMLDivElement>;
|
|
2385
2437
|
|
|
2386
2438
|
export declare interface ColorAreaProps {
|
|
2439
|
+
/** Additional CSS classes */
|
|
2440
|
+
class?: ClassValue;
|
|
2387
2441
|
/** Hue value (0-360) */
|
|
2388
2442
|
hue: number;
|
|
2389
2443
|
/** Saturation value (0-1) */
|
|
@@ -2406,6 +2460,8 @@ swatchOnly: boolean;
|
|
|
2406
2460
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2407
2461
|
|
|
2408
2462
|
export declare interface ColorPickerProps {
|
|
2463
|
+
/** Additional CSS classes */
|
|
2464
|
+
class?: ClassValue;
|
|
2409
2465
|
/** Current color value */
|
|
2410
2466
|
modelValue: string;
|
|
2411
2467
|
/** Output format */
|
|
@@ -2429,6 +2485,8 @@ trackRef: HTMLDivElement;
|
|
|
2429
2485
|
}, HTMLDivElement>;
|
|
2430
2486
|
|
|
2431
2487
|
export declare interface ColorSliderProps {
|
|
2488
|
+
/** Additional CSS classes */
|
|
2489
|
+
class?: ClassValue;
|
|
2432
2490
|
/** Current value (0-1 for alpha, 0-360 for hue) */
|
|
2433
2491
|
modelValue: number;
|
|
2434
2492
|
/** Slider type */
|
|
@@ -2473,6 +2531,8 @@ export declare interface ComboboxOption {
|
|
|
2473
2531
|
}
|
|
2474
2532
|
|
|
2475
2533
|
export declare interface ComboboxProps {
|
|
2534
|
+
/** Additional CSS classes */
|
|
2535
|
+
class?: ClassValue;
|
|
2476
2536
|
/** Selected value(s) - single value or array for multiple */
|
|
2477
2537
|
modelValue?: string | number | (string | number)[] | null;
|
|
2478
2538
|
/** Available options */
|
|
@@ -2526,6 +2586,8 @@ export declare function configureIcons(userIcons: Partial<IconMap>): void;
|
|
|
2526
2586
|
export declare const Container: __VLS_WithTemplateSlots_57<typeof __VLS_component_54, __VLS_TemplateResult_54["slots"]>;
|
|
2527
2587
|
|
|
2528
2588
|
export declare interface ContainerProps {
|
|
2589
|
+
/** Additional CSS classes */
|
|
2590
|
+
class?: ClassValue;
|
|
2529
2591
|
/** If true, width is 100%. If false, max-width snaps to breakpoints. */
|
|
2530
2592
|
fluid?: boolean;
|
|
2531
2593
|
/** Auto margins (mx-auto). Default: true */
|
|
@@ -2558,6 +2620,8 @@ export declare interface DataTableColumn {
|
|
|
2558
2620
|
}
|
|
2559
2621
|
|
|
2560
2622
|
export declare interface DataTableProps {
|
|
2623
|
+
/** Additional CSS classes */
|
|
2624
|
+
class?: ClassValue;
|
|
2561
2625
|
/** Data array */
|
|
2562
2626
|
data: Record<string, unknown>[];
|
|
2563
2627
|
/** Column definitions */
|
|
@@ -2615,6 +2679,8 @@ export declare interface DataTableProps {
|
|
|
2615
2679
|
export declare const DatePicker: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
|
|
2616
2680
|
|
|
2617
2681
|
export declare interface DatePickerProps {
|
|
2682
|
+
/** Additional CSS classes */
|
|
2683
|
+
class?: ClassValue;
|
|
2618
2684
|
/** Selected date in ISO format (single mode) or [start, end] tuple (range mode) */
|
|
2619
2685
|
modelValue?: string | [string, string];
|
|
2620
2686
|
/** Selection mode */
|
|
@@ -2658,6 +2724,8 @@ export declare type Depth = 'flat' | 'subtle' | 'elevated' | 'dimensional';
|
|
|
2658
2724
|
export declare const DonutChart: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
|
|
2659
2725
|
|
|
2660
2726
|
export declare interface DonutChartProps {
|
|
2727
|
+
/** Additional CSS classes */
|
|
2728
|
+
class?: ClassValue;
|
|
2661
2729
|
/** Chart segments */
|
|
2662
2730
|
segments: DonutChartSegment[];
|
|
2663
2731
|
/** Chart height */
|
|
@@ -2687,6 +2755,8 @@ export declare const Drawer: __VLS_WithTemplateSlots_26<typeof __VLS_component_2
|
|
|
2687
2755
|
export declare type DrawerPlacement = 'right' | 'left' | 'bottom';
|
|
2688
2756
|
|
|
2689
2757
|
export declare interface DrawerProps {
|
|
2758
|
+
/** Additional CSS classes */
|
|
2759
|
+
class?: ClassValue;
|
|
2690
2760
|
/** Controls visibility (v-model) */
|
|
2691
2761
|
modelValue?: boolean;
|
|
2692
2762
|
/** Drawer title */
|
|
@@ -2705,6 +2775,8 @@ export declare interface DrawerProps {
|
|
|
2705
2775
|
showClose?: boolean;
|
|
2706
2776
|
/** Force specified placement on mobile (disable bottom sheet behavior) */
|
|
2707
2777
|
forcePlacement?: boolean;
|
|
2778
|
+
/** Remove body padding for flush content */
|
|
2779
|
+
flush?: boolean;
|
|
2708
2780
|
}
|
|
2709
2781
|
|
|
2710
2782
|
export declare type DrawerSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
|
|
@@ -2755,6 +2827,8 @@ export declare interface DropdownContext {
|
|
|
2755
2827
|
export declare const DropdownItem: __VLS_WithTemplateSlots_28<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
|
|
2756
2828
|
|
|
2757
2829
|
export declare interface DropdownItemProps {
|
|
2830
|
+
/** Additional CSS classes */
|
|
2831
|
+
class?: ClassValue;
|
|
2758
2832
|
/** Renders as RouterLink when provided */
|
|
2759
2833
|
to?: string | Record<string, unknown>;
|
|
2760
2834
|
/** Renders as anchor when provided */
|
|
@@ -2776,6 +2850,8 @@ export declare interface DropdownItemProps {
|
|
|
2776
2850
|
export declare type DropdownPlacement = 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'left-start' | 'left-end';
|
|
2777
2851
|
|
|
2778
2852
|
export declare interface DropdownProps {
|
|
2853
|
+
/** Additional CSS classes */
|
|
2854
|
+
class?: ClassValue;
|
|
2779
2855
|
/** Menu placement relative to trigger */
|
|
2780
2856
|
placement?: DropdownPlacement;
|
|
2781
2857
|
/** Offset from trigger (px) */
|
|
@@ -2820,6 +2896,8 @@ export declare interface DropdownSubContext {
|
|
|
2820
2896
|
export declare const DropdownSubTrigger: __VLS_WithTemplateSlots_30<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
|
|
2821
2897
|
|
|
2822
2898
|
export declare interface DropdownSubTriggerProps {
|
|
2899
|
+
/** Additional CSS classes */
|
|
2900
|
+
class?: ClassValue;
|
|
2823
2901
|
/** Disabled state */
|
|
2824
2902
|
disabled?: boolean;
|
|
2825
2903
|
/** Leading icon */
|
|
@@ -2829,6 +2907,8 @@ export declare interface DropdownSubTriggerProps {
|
|
|
2829
2907
|
export declare const EmptyState: __VLS_WithTemplateSlots_32<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
|
|
2830
2908
|
|
|
2831
2909
|
export declare interface EmptyStateProps {
|
|
2910
|
+
/** Additional CSS classes */
|
|
2911
|
+
class?: ClassValue;
|
|
2832
2912
|
/** Title text */
|
|
2833
2913
|
title?: string;
|
|
2834
2914
|
/** Description text */
|
|
@@ -2879,6 +2959,8 @@ inputRef: HTMLInputElement;
|
|
|
2879
2959
|
}, HTMLDivElement>;
|
|
2880
2960
|
|
|
2881
2961
|
export declare interface FileUploadProps {
|
|
2962
|
+
/** Additional CSS classes */
|
|
2963
|
+
class?: ClassValue;
|
|
2882
2964
|
/** Currently selected files (v-model) */
|
|
2883
2965
|
modelValue?: UploadFile[];
|
|
2884
2966
|
/** Accepted file types (MIME types or extensions) */
|
|
@@ -3115,6 +3197,8 @@ export declare const Grid: __VLS_WithTemplateSlots_59<typeof __VLS_component_56,
|
|
|
3115
3197
|
export declare const GridItem: __VLS_WithTemplateSlots_60<typeof __VLS_component_57, __VLS_TemplateResult_57["slots"]>;
|
|
3116
3198
|
|
|
3117
3199
|
export declare interface GridItemProps {
|
|
3200
|
+
/** Additional CSS classes */
|
|
3201
|
+
class?: ClassValue;
|
|
3118
3202
|
/** Number of columns to span (or responsive object) */
|
|
3119
3203
|
span?: SpanCount | ResponsiveSpan;
|
|
3120
3204
|
/** Grid column start */
|
|
@@ -3128,6 +3212,8 @@ export declare interface GridItemProps {
|
|
|
3128
3212
|
}
|
|
3129
3213
|
|
|
3130
3214
|
export declare interface GridProps {
|
|
3215
|
+
/** Additional CSS classes */
|
|
3216
|
+
class?: ClassValue;
|
|
3131
3217
|
/** Number of columns (or responsive object) */
|
|
3132
3218
|
columns?: ColumnCount | ResponsiveColumns;
|
|
3133
3219
|
/** Grid gap using spacing tokens */
|
|
@@ -3143,6 +3229,8 @@ export declare interface GridProps {
|
|
|
3143
3229
|
export declare const Heading: __VLS_WithTemplateSlots_34<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
|
|
3144
3230
|
|
|
3145
3231
|
export declare interface HeadingProps {
|
|
3232
|
+
/** Additional CSS classes */
|
|
3233
|
+
class?: ClassValue;
|
|
3146
3234
|
/** Semantic HTML tag */
|
|
3147
3235
|
as?: HeadingTag;
|
|
3148
3236
|
/** Visual hierarchy size */
|
|
@@ -3217,6 +3305,8 @@ export declare interface IconMap {
|
|
|
3217
3305
|
}
|
|
3218
3306
|
|
|
3219
3307
|
export declare interface IconProps {
|
|
3308
|
+
/** Additional CSS classes */
|
|
3309
|
+
class?: ClassValue;
|
|
3220
3310
|
/** The icon - Vue component OR HugeIcons data array */
|
|
3221
3311
|
icon: IconInput;
|
|
3222
3312
|
/** Predefined size or custom value */
|
|
@@ -3230,6 +3320,8 @@ export declare interface IconProps {
|
|
|
3230
3320
|
export declare const Input: __VLS_WithTemplateSlots_35<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
|
|
3231
3321
|
|
|
3232
3322
|
export declare interface InputProps {
|
|
3323
|
+
/** Additional CSS classes */
|
|
3324
|
+
class?: ClassValue;
|
|
3233
3325
|
/** Input value (v-model) */
|
|
3234
3326
|
modelValue?: string | number;
|
|
3235
3327
|
/** Input type */
|
|
@@ -3343,6 +3435,8 @@ export declare interface LegendItem {
|
|
|
3343
3435
|
export declare const LineChart: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
3344
3436
|
|
|
3345
3437
|
export declare interface LineChartProps {
|
|
3438
|
+
/** Additional CSS classes */
|
|
3439
|
+
class?: ClassValue;
|
|
3346
3440
|
/** X-axis labels */
|
|
3347
3441
|
labels: string[];
|
|
3348
3442
|
/** Data series */
|
|
@@ -3389,6 +3483,8 @@ declare type MaybeRef<T> = T | Ref<T>;
|
|
|
3389
3483
|
export declare const Modal: __VLS_WithTemplateSlots_36<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
|
|
3390
3484
|
|
|
3391
3485
|
export declare interface ModalProps {
|
|
3486
|
+
/** Additional CSS classes */
|
|
3487
|
+
class?: ClassValue;
|
|
3392
3488
|
/** Controls visibility (v-model) */
|
|
3393
3489
|
modelValue?: boolean;
|
|
3394
3490
|
/** Optional header title */
|
|
@@ -3457,6 +3553,8 @@ export declare interface PaginationConfig {
|
|
|
3457
3553
|
}
|
|
3458
3554
|
|
|
3459
3555
|
export declare interface PaginationProps {
|
|
3556
|
+
/** Additional CSS classes */
|
|
3557
|
+
class?: ClassValue;
|
|
3460
3558
|
/** Current active page (v-model) */
|
|
3461
3559
|
modelValue: number;
|
|
3462
3560
|
/** Total count of items */
|
|
@@ -3520,6 +3618,8 @@ export declare const Popover: __VLS_WithTemplateSlots_37<typeof __VLS_component_
|
|
|
3520
3618
|
export declare type PopoverPlacement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
|
|
3521
3619
|
|
|
3522
3620
|
export declare interface PopoverProps {
|
|
3621
|
+
/** Additional CSS classes */
|
|
3622
|
+
class?: ClassValue;
|
|
3523
3623
|
/** Popover placement relative to trigger */
|
|
3524
3624
|
placement?: PopoverPlacement;
|
|
3525
3625
|
/** Offset from trigger (px) */
|
|
@@ -3560,6 +3660,8 @@ showValue: boolean;
|
|
|
3560
3660
|
export declare type ProgressColor = 'primary' | 'success' | 'warning' | 'error';
|
|
3561
3661
|
|
|
3562
3662
|
export declare interface ProgressProps {
|
|
3663
|
+
/** Additional CSS classes */
|
|
3664
|
+
class?: ClassValue;
|
|
3563
3665
|
/** Current progress value (0-100) */
|
|
3564
3666
|
value?: number;
|
|
3565
3667
|
/** Display variant */
|
|
@@ -3593,15 +3695,20 @@ change: (value: string | number | boolean) => any;
|
|
|
3593
3695
|
"onUpdate:modelValue"?: ((value: string | number | boolean) => any) | undefined;
|
|
3594
3696
|
onChange?: ((value: string | number | boolean) => any) | undefined;
|
|
3595
3697
|
}>, {
|
|
3698
|
+
variant: "default" | "pill";
|
|
3596
3699
|
size: "sm" | "md" | "lg";
|
|
3597
3700
|
disabled: boolean;
|
|
3598
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
3701
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3599
3702
|
|
|
3600
3703
|
export declare interface RadioProps {
|
|
3704
|
+
/** Additional CSS classes */
|
|
3705
|
+
class?: ClassValue;
|
|
3601
3706
|
/** Selected value (v-model) - shared across radio group */
|
|
3602
3707
|
modelValue?: string | number | boolean;
|
|
3603
3708
|
/** Value of this radio option */
|
|
3604
3709
|
value: string | number | boolean;
|
|
3710
|
+
/** Visual variant */
|
|
3711
|
+
variant?: 'default' | 'pill';
|
|
3605
3712
|
/** Radio size */
|
|
3606
3713
|
size?: 'sm' | 'md' | 'lg';
|
|
3607
3714
|
/** Disabled state */
|
|
@@ -3641,6 +3748,8 @@ allowHalf: boolean;
|
|
|
3641
3748
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3642
3749
|
|
|
3643
3750
|
export declare interface RatingProps {
|
|
3751
|
+
/** Additional CSS classes */
|
|
3752
|
+
class?: ClassValue;
|
|
3644
3753
|
/** Current rating value (0 to max) */
|
|
3645
3754
|
modelValue: number;
|
|
3646
3755
|
/** Maximum rating value */
|
|
@@ -3723,6 +3832,8 @@ containerRef: HTMLDivElement;
|
|
|
3723
3832
|
}, HTMLDivElement>;
|
|
3724
3833
|
|
|
3725
3834
|
export declare interface SegmentedControlProps {
|
|
3835
|
+
/** Additional CSS classes */
|
|
3836
|
+
class?: ClassValue;
|
|
3726
3837
|
/** Array of options to display */
|
|
3727
3838
|
options: SegmentedOption[];
|
|
3728
3839
|
/** Selected value (v-model) */
|
|
@@ -3773,6 +3884,8 @@ export declare interface SelectOption {
|
|
|
3773
3884
|
}
|
|
3774
3885
|
|
|
3775
3886
|
export declare interface SelectProps {
|
|
3887
|
+
/** Additional CSS classes */
|
|
3888
|
+
class?: ClassValue;
|
|
3776
3889
|
/** Selected value (v-model) */
|
|
3777
3890
|
modelValue?: string | number | null;
|
|
3778
3891
|
/** Available options */
|
|
@@ -3814,6 +3927,8 @@ export declare interface SidebarGroupContext {
|
|
|
3814
3927
|
export declare const SidebarGroupKey: InjectionKey<SidebarGroupContext>;
|
|
3815
3928
|
|
|
3816
3929
|
export declare interface SidebarGroupProps {
|
|
3930
|
+
/** Additional CSS classes */
|
|
3931
|
+
class?: ClassValue;
|
|
3817
3932
|
/** Group label displayed when expanded */
|
|
3818
3933
|
label?: string;
|
|
3819
3934
|
/** Show separator line when collapsed */
|
|
@@ -3823,6 +3938,8 @@ export declare interface SidebarGroupProps {
|
|
|
3823
3938
|
export declare const SidebarItem: __VLS_WithTemplateSlots_40<typeof __VLS_component_38, __VLS_TemplateResult_38["slots"]>;
|
|
3824
3939
|
|
|
3825
3940
|
export declare interface SidebarItemProps {
|
|
3941
|
+
/** Additional CSS classes */
|
|
3942
|
+
class?: ClassValue;
|
|
3826
3943
|
/** Text label for the item */
|
|
3827
3944
|
label: string;
|
|
3828
3945
|
/** Icon component or HugeIcons data */
|
|
@@ -3846,6 +3963,8 @@ export declare const SidebarKey: InjectionKey<SidebarContext>;
|
|
|
3846
3963
|
export declare const SidebarLayout: __VLS_WithTemplateSlots_38<typeof __VLS_component_36, __VLS_TemplateResult_36["slots"]>;
|
|
3847
3964
|
|
|
3848
3965
|
export declare interface SidebarLayoutProps {
|
|
3966
|
+
/** Additional CSS classes */
|
|
3967
|
+
class?: ClassValue;
|
|
3849
3968
|
/** Position of the sidebar */
|
|
3850
3969
|
sidebarPosition?: 'left' | 'right';
|
|
3851
3970
|
}
|
|
@@ -3853,6 +3972,8 @@ export declare interface SidebarLayoutProps {
|
|
|
3853
3972
|
export declare const SidebarRoot: __VLS_WithTemplateSlots_39<typeof __VLS_component_37, __VLS_TemplateResult_37["slots"]>;
|
|
3854
3973
|
|
|
3855
3974
|
export declare interface SidebarRootProps {
|
|
3975
|
+
/** Additional CSS classes */
|
|
3976
|
+
class?: ClassValue;
|
|
3856
3977
|
/** Whether the sidebar is collapsed */
|
|
3857
3978
|
modelValue?: boolean;
|
|
3858
3979
|
/** Width when expanded */
|
|
@@ -3867,6 +3988,8 @@ animation: "shimmer" | "pulse" | "none";
|
|
|
3867
3988
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
3868
3989
|
|
|
3869
3990
|
export declare interface SkeletonProps {
|
|
3991
|
+
/** Additional CSS classes */
|
|
3992
|
+
class?: ClassValue;
|
|
3870
3993
|
/** Shape variant */
|
|
3871
3994
|
variant?: SkeletonVariant;
|
|
3872
3995
|
/** Width (px, %, or CSS value) */
|
|
@@ -3898,6 +4021,8 @@ trackRef: HTMLDivElement;
|
|
|
3898
4021
|
}, HTMLDivElement>;
|
|
3899
4022
|
|
|
3900
4023
|
export declare interface SliderProps {
|
|
4024
|
+
/** Additional CSS classes */
|
|
4025
|
+
class?: ClassValue;
|
|
3901
4026
|
/** Current value (number for single, [min, max] tuple for range) */
|
|
3902
4027
|
modelValue: number | [number, number];
|
|
3903
4028
|
/** Minimum value */
|
|
@@ -3934,6 +4059,8 @@ speed: number;
|
|
|
3934
4059
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
3935
4060
|
|
|
3936
4061
|
export declare interface SpinnerProps {
|
|
4062
|
+
/** Additional CSS classes */
|
|
4063
|
+
class?: ClassValue;
|
|
3937
4064
|
/** Predefined size or custom value */
|
|
3938
4065
|
size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | string;
|
|
3939
4066
|
/** Animation speed in seconds */
|
|
@@ -3959,6 +4086,8 @@ tag: string;
|
|
|
3959
4086
|
}>;
|
|
3960
4087
|
|
|
3961
4088
|
export declare interface SpireProviderProps {
|
|
4089
|
+
/** Additional CSS classes */
|
|
4090
|
+
class?: ClassValue;
|
|
3962
4091
|
theme?: Theme;
|
|
3963
4092
|
mood?: Mood;
|
|
3964
4093
|
depth?: Depth;
|
|
@@ -3970,6 +4099,8 @@ export declare interface SpireProviderProps {
|
|
|
3970
4099
|
export declare const Stack: __VLS_WithTemplateSlots_58<typeof __VLS_component_55, __VLS_TemplateResult_55["slots"]>;
|
|
3971
4100
|
|
|
3972
4101
|
export declare interface StackProps {
|
|
4102
|
+
/** Additional CSS classes */
|
|
4103
|
+
class?: ClassValue;
|
|
3973
4104
|
/** Flex direction */
|
|
3974
4105
|
direction?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
3975
4106
|
/** Gap using spacing tokens (maps to var(--space-X)) */
|
|
@@ -4013,6 +4144,8 @@ export declare interface StepperItemContext {
|
|
|
4013
4144
|
export declare const StepperItemKey: InjectionKey<StepperItemContext>;
|
|
4014
4145
|
|
|
4015
4146
|
export declare interface StepperItemProps {
|
|
4147
|
+
/** Additional CSS classes */
|
|
4148
|
+
class?: ClassValue;
|
|
4016
4149
|
/** Step index (0-based) */
|
|
4017
4150
|
index: number;
|
|
4018
4151
|
/** Disable this step */
|
|
@@ -4026,6 +4159,8 @@ export declare type StepperOrientation = 'horizontal' | 'vertical';
|
|
|
4026
4159
|
export declare const StepperRoot: __VLS_WithTemplateSlots_43<typeof __VLS_component_40, __VLS_TemplateResult_40["slots"]>;
|
|
4027
4160
|
|
|
4028
4161
|
export declare interface StepperRootProps {
|
|
4162
|
+
/** Additional CSS classes */
|
|
4163
|
+
class?: ClassValue;
|
|
4029
4164
|
/** Current step index (0-based, v-model) */
|
|
4030
4165
|
modelValue?: number;
|
|
4031
4166
|
/** Layout direction */
|
|
@@ -4041,6 +4176,8 @@ export declare const StepperSeparator: DefineComponent< {}, {}, {}, {}, {}, C
|
|
|
4041
4176
|
export declare const StepperTrigger: __VLS_WithTemplateSlots_45<typeof __VLS_component_42, __VLS_TemplateResult_42["slots"]>;
|
|
4042
4177
|
|
|
4043
4178
|
export declare interface StepperTriggerProps {
|
|
4179
|
+
/** Additional CSS classes */
|
|
4180
|
+
class?: ClassValue;
|
|
4044
4181
|
/** Custom icon to display instead of step number */
|
|
4045
4182
|
icon?: Component;
|
|
4046
4183
|
}
|
|
@@ -4068,6 +4205,8 @@ loading: boolean;
|
|
|
4068
4205
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
4069
4206
|
|
|
4070
4207
|
export declare interface SwitchProps {
|
|
4208
|
+
/** Additional CSS classes */
|
|
4209
|
+
class?: ClassValue;
|
|
4071
4210
|
/** Checked state (v-model) */
|
|
4072
4211
|
modelValue?: boolean;
|
|
4073
4212
|
/** Switch size */
|
|
@@ -4098,6 +4237,8 @@ export declare interface TabItem {
|
|
|
4098
4237
|
export declare const Tabs: __VLS_WithTemplateSlots_47<typeof __VLS_component_44, __VLS_TemplateResult_44["slots"]>;
|
|
4099
4238
|
|
|
4100
4239
|
export declare interface TabsProps {
|
|
4240
|
+
/** Additional CSS classes */
|
|
4241
|
+
class?: ClassValue;
|
|
4101
4242
|
/** Currently active tab value (v-model) */
|
|
4102
4243
|
modelValue: string | number;
|
|
4103
4244
|
/** Tab items configuration */
|
|
@@ -4114,6 +4255,8 @@ export { Text_2 as Text }
|
|
|
4114
4255
|
export declare const Textarea: __VLS_WithTemplateSlots_48<typeof __VLS_component_45, __VLS_TemplateResult_45["slots"]>;
|
|
4115
4256
|
|
|
4116
4257
|
export declare interface TextareaProps {
|
|
4258
|
+
/** Additional CSS classes */
|
|
4259
|
+
class?: ClassValue;
|
|
4117
4260
|
/** Textarea value (v-model) */
|
|
4118
4261
|
modelValue?: string;
|
|
4119
4262
|
/** Label text above the textarea */
|
|
@@ -4151,6 +4294,8 @@ export declare interface TextareaProps {
|
|
|
4151
4294
|
}
|
|
4152
4295
|
|
|
4153
4296
|
export declare interface TextProps {
|
|
4297
|
+
/** Additional CSS classes */
|
|
4298
|
+
class?: ClassValue;
|
|
4154
4299
|
/** Semantic HTML tag */
|
|
4155
4300
|
as?: TextTag;
|
|
4156
4301
|
/** Font size */
|
|
@@ -4195,6 +4340,8 @@ export declare type TimelineDotColor = 'primary' | 'success' | 'warning' | 'dang
|
|
|
4195
4340
|
export declare const TimelineItem: __VLS_WithTemplateSlots_51<typeof __VLS_component_48, __VLS_TemplateResult_48["slots"]>;
|
|
4196
4341
|
|
|
4197
4342
|
export declare interface TimelineItemProps {
|
|
4343
|
+
/** Additional CSS classes */
|
|
4344
|
+
class?: ClassValue;
|
|
4198
4345
|
/** Dot color variant */
|
|
4199
4346
|
dotColor?: TimelineDotColor;
|
|
4200
4347
|
/** Custom icon in dot */
|
|
@@ -4206,6 +4353,8 @@ export declare const TimelineKey: InjectionKey<TimelineContext>;
|
|
|
4206
4353
|
export declare type TimelineLineStyle = 'solid' | 'dashed' | 'dotted';
|
|
4207
4354
|
|
|
4208
4355
|
export declare interface TimelineProps {
|
|
4356
|
+
/** Additional CSS classes */
|
|
4357
|
+
class?: ClassValue;
|
|
4209
4358
|
/** Content alignment relative to the spine */
|
|
4210
4359
|
align?: TimelineAlign;
|
|
4211
4360
|
/** Connector line style */
|
|
@@ -4237,6 +4386,7 @@ popoverRef: ({
|
|
|
4237
4386
|
$: ComponentInternalInstance;
|
|
4238
4387
|
$data: {};
|
|
4239
4388
|
$props: {
|
|
4389
|
+
readonly class?: ClassValue;
|
|
4240
4390
|
readonly placement?: PopoverPlacement | undefined;
|
|
4241
4391
|
readonly offset?: number | undefined;
|
|
4242
4392
|
readonly arrow?: boolean | undefined;
|
|
@@ -4343,6 +4493,8 @@ periodColumnRef: HTMLDivElement;
|
|
|
4343
4493
|
}, HTMLDivElement>;
|
|
4344
4494
|
|
|
4345
4495
|
export declare interface TimePickerProps {
|
|
4496
|
+
/** Additional CSS classes */
|
|
4497
|
+
class?: ClassValue;
|
|
4346
4498
|
/** Selected time in HH:mm format (24h) */
|
|
4347
4499
|
modelValue?: string;
|
|
4348
4500
|
/** Time display format */
|
|
@@ -4424,6 +4576,8 @@ onDismiss?: ((id: string) => any) | undefined;
|
|
|
4424
4576
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
4425
4577
|
|
|
4426
4578
|
export declare interface ToastItemProps {
|
|
4579
|
+
/** Additional CSS classes */
|
|
4580
|
+
class?: ClassValue;
|
|
4427
4581
|
/** Toast data */
|
|
4428
4582
|
toast: Toast;
|
|
4429
4583
|
}
|
|
@@ -4453,6 +4607,8 @@ position: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "top-cente
|
|
|
4453
4607
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4454
4608
|
|
|
4455
4609
|
export declare interface ToastProviderProps {
|
|
4610
|
+
/** Additional CSS classes */
|
|
4611
|
+
class?: ClassValue;
|
|
4456
4612
|
/** Position of the toast container */
|
|
4457
4613
|
position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' | 'top-center' | 'bottom-center';
|
|
4458
4614
|
}
|
|
@@ -4466,6 +4622,8 @@ declare function toggle_2(): void;
|
|
|
4466
4622
|
export declare const ToggleButton: __VLS_WithTemplateSlots_52<typeof __VLS_component_49, __VLS_TemplateResult_49["slots"]>;
|
|
4467
4623
|
|
|
4468
4624
|
export declare interface ToggleButtonProps {
|
|
4625
|
+
/** Additional CSS classes */
|
|
4626
|
+
class?: ClassValue;
|
|
4469
4627
|
/** Pressed state for standalone usage (v-model) */
|
|
4470
4628
|
modelValue?: boolean;
|
|
4471
4629
|
/** Value for group usage */
|
|
@@ -4485,6 +4643,8 @@ declare function toggleDataset(index: number): void;
|
|
|
4485
4643
|
export declare const ToggleGroup: __VLS_WithTemplateSlots_53<typeof __VLS_component_50, __VLS_TemplateResult_50["slots"]>;
|
|
4486
4644
|
|
|
4487
4645
|
export declare interface ToggleGroupProps {
|
|
4646
|
+
/** Additional CSS classes */
|
|
4647
|
+
class?: ClassValue;
|
|
4488
4648
|
/** Selected value(s) - single value for 'single' type, array for 'multiple' */
|
|
4489
4649
|
modelValue?: string | number | (string | number)[];
|
|
4490
4650
|
/** Selection type */
|
|
@@ -4513,6 +4673,8 @@ export declare interface TooltipData {
|
|
|
4513
4673
|
}
|
|
4514
4674
|
|
|
4515
4675
|
export declare interface TooltipProps {
|
|
4676
|
+
/** Additional CSS classes */
|
|
4677
|
+
class?: ClassValue;
|
|
4516
4678
|
/** Tooltip text content */
|
|
4517
4679
|
text: string;
|
|
4518
4680
|
/** Preferred placement (may flip on collision) */
|
|
@@ -4563,6 +4725,8 @@ export declare interface TreeViewItemContext {
|
|
|
4563
4725
|
export declare const TreeViewItemKey: InjectionKey<TreeViewItemContext>;
|
|
4564
4726
|
|
|
4565
4727
|
export declare interface TreeViewItemProps {
|
|
4728
|
+
/** Additional CSS classes */
|
|
4729
|
+
class?: ClassValue;
|
|
4566
4730
|
/** Node data */
|
|
4567
4731
|
node: TreeNode;
|
|
4568
4732
|
}
|
|
@@ -4570,6 +4734,8 @@ export declare interface TreeViewItemProps {
|
|
|
4570
4734
|
export declare const TreeViewKey: InjectionKey<TreeViewContext>;
|
|
4571
4735
|
|
|
4572
4736
|
export declare interface TreeViewProps {
|
|
4737
|
+
/** Additional CSS classes */
|
|
4738
|
+
class?: ClassValue;
|
|
4573
4739
|
/** Hierarchical data */
|
|
4574
4740
|
data: TreeNode[];
|
|
4575
4741
|
/** Selected node ID(s) - v-model */
|