@rocketui/vue 0.2.81 → 0.2.83
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/rocket-ui-vue.d.ts +302 -71
- package/dist/rocket-ui-vue.js +1731 -1464
- package/dist/rocket-ui-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/rocket-ui-vue.d.ts
CHANGED
|
@@ -128,6 +128,10 @@ declare type __VLS_Prettify_24<T> = {
|
|
|
128
128
|
[K in keyof T]: T[K];
|
|
129
129
|
} & {};
|
|
130
130
|
|
|
131
|
+
declare type __VLS_Prettify_25<T> = {
|
|
132
|
+
[K in keyof T]: T[K];
|
|
133
|
+
} & {};
|
|
134
|
+
|
|
131
135
|
declare type __VLS_Prettify_3<T> = {
|
|
132
136
|
[K in keyof T]: T[K];
|
|
133
137
|
} & {};
|
|
@@ -483,6 +487,12 @@ declare type __VLS_WithDefaults_24<P, D> = {
|
|
|
483
487
|
}> : P[K];
|
|
484
488
|
};
|
|
485
489
|
|
|
490
|
+
declare type __VLS_WithDefaults_25<P, D> = {
|
|
491
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_25<P[K] & {
|
|
492
|
+
default: D[K];
|
|
493
|
+
}> : P[K];
|
|
494
|
+
};
|
|
495
|
+
|
|
486
496
|
declare type __VLS_WithDefaults_3<P, D> = {
|
|
487
497
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_3<P[K] & {
|
|
488
498
|
default: D[K];
|
|
@@ -659,6 +669,14 @@ declare interface AccordionProps {
|
|
|
659
669
|
* @type boolean
|
|
660
670
|
*/
|
|
661
671
|
multiple?: boolean;
|
|
672
|
+
/**
|
|
673
|
+
* Id of the Accordion
|
|
674
|
+
* @type string
|
|
675
|
+
* @default 'r-accordion'
|
|
676
|
+
* @example
|
|
677
|
+
* <Accordion id="custom-accordion" />
|
|
678
|
+
*/
|
|
679
|
+
id?: string;
|
|
662
680
|
}
|
|
663
681
|
|
|
664
682
|
declare interface BadgeProps {
|
|
@@ -738,6 +756,13 @@ declare interface BadgeProps {
|
|
|
738
756
|
* <Badge wrapperClass="text-red-500" />
|
|
739
757
|
*/
|
|
740
758
|
wrapperClass?: string | string[];
|
|
759
|
+
/**
|
|
760
|
+
* Id of the Badge
|
|
761
|
+
* @type { string }
|
|
762
|
+
* @example
|
|
763
|
+
* <Badge id="custom-badge" />
|
|
764
|
+
*/
|
|
765
|
+
id?: string;
|
|
741
766
|
}
|
|
742
767
|
|
|
743
768
|
declare interface BreadcrumbItem {
|
|
@@ -759,7 +784,7 @@ declare function handleSelect(): void;
|
|
|
759
784
|
|
|
760
785
|
declare function handleToggle(): void;
|
|
761
786
|
|
|
762
|
-
declare function handleUpdate(
|
|
787
|
+
declare function handleUpdate(): void;
|
|
763
788
|
|
|
764
789
|
declare function hideTooltip(e?: Event | null): void;
|
|
765
790
|
|
|
@@ -812,6 +837,14 @@ declare interface IProps {
|
|
|
812
837
|
* <Avatar type="text" text="John Doe" />
|
|
813
838
|
*/
|
|
814
839
|
text?: string;
|
|
840
|
+
/**
|
|
841
|
+
* Id of the Avatar
|
|
842
|
+
* @type string
|
|
843
|
+
* @default 'r-avatar'
|
|
844
|
+
* @example
|
|
845
|
+
* <Avatar id="custom-avatar" />
|
|
846
|
+
*/
|
|
847
|
+
id?: string;
|
|
815
848
|
}
|
|
816
849
|
|
|
817
850
|
declare interface IProps_2 {
|
|
@@ -899,6 +932,14 @@ declare interface IProps_3 {
|
|
|
899
932
|
* <Snackbar top />
|
|
900
933
|
*/
|
|
901
934
|
top?: boolean;
|
|
935
|
+
/**
|
|
936
|
+
* Id of the Snackbar
|
|
937
|
+
* @type string
|
|
938
|
+
* @default 'r-snackbar'
|
|
939
|
+
* @example
|
|
940
|
+
* <Snackbar id="custom-snackbar" />
|
|
941
|
+
*/
|
|
942
|
+
id?: string;
|
|
902
943
|
}
|
|
903
944
|
|
|
904
945
|
declare interface IProps_4 {
|
|
@@ -1025,6 +1066,14 @@ declare interface IProps_5 {
|
|
|
1025
1066
|
* <Tabs scrollable />
|
|
1026
1067
|
*/
|
|
1027
1068
|
scrollable?: boolean;
|
|
1069
|
+
/**
|
|
1070
|
+
* Id of the Tabs
|
|
1071
|
+
* @type string
|
|
1072
|
+
* @default 'r-tabs'
|
|
1073
|
+
* @example
|
|
1074
|
+
* <Tabs id="custom-tabs" />
|
|
1075
|
+
*/
|
|
1076
|
+
id?: string;
|
|
1028
1077
|
}
|
|
1029
1078
|
|
|
1030
1079
|
declare interface IProps_6 {
|
|
@@ -1247,6 +1296,13 @@ declare interface IProps_7 {
|
|
|
1247
1296
|
* <Tooltip persistent />
|
|
1248
1297
|
*/
|
|
1249
1298
|
persistent?: boolean;
|
|
1299
|
+
/**
|
|
1300
|
+
* Type of the tooltip
|
|
1301
|
+
* @type Theme | string
|
|
1302
|
+
* @default Theme.Tooltip
|
|
1303
|
+
* @example
|
|
1304
|
+
* <Tooltip type="dropdown" />
|
|
1305
|
+
*/
|
|
1250
1306
|
type?: Theme | string;
|
|
1251
1307
|
}
|
|
1252
1308
|
|
|
@@ -1315,6 +1371,14 @@ declare interface ItemGroupProps {
|
|
|
1315
1371
|
* <RItemGroup :multiple="true" />
|
|
1316
1372
|
*/
|
|
1317
1373
|
multiple?: boolean;
|
|
1374
|
+
/**
|
|
1375
|
+
* Id of the ItemGroup
|
|
1376
|
+
* @type string
|
|
1377
|
+
* @default 'r-item-group'
|
|
1378
|
+
* @example
|
|
1379
|
+
* <RItemGroup id="custom-item-group" />
|
|
1380
|
+
*/
|
|
1381
|
+
id?: string;
|
|
1318
1382
|
}
|
|
1319
1383
|
|
|
1320
1384
|
declare interface ItemProps {
|
|
@@ -1334,6 +1398,14 @@ declare interface ItemProps {
|
|
|
1334
1398
|
* <RItem selectedClass="bg-blue-500 text-white" />
|
|
1335
1399
|
*/
|
|
1336
1400
|
selectedClass?: string | string[];
|
|
1401
|
+
/**
|
|
1402
|
+
* Id of the Item
|
|
1403
|
+
* @type string
|
|
1404
|
+
* @default 'r-item'
|
|
1405
|
+
* @example
|
|
1406
|
+
* <RItem id="custom-item" />
|
|
1407
|
+
*/
|
|
1408
|
+
id?: string;
|
|
1337
1409
|
}
|
|
1338
1410
|
|
|
1339
1411
|
declare interface LabelProps {
|
|
@@ -1470,6 +1542,14 @@ declare interface ModalProps {
|
|
|
1470
1542
|
* <Modal :modelValue="true" :allowBodyScroll="true" />
|
|
1471
1543
|
*/
|
|
1472
1544
|
allowBodyScroll?: boolean;
|
|
1545
|
+
/**
|
|
1546
|
+
* Id of the Modal
|
|
1547
|
+
* @type string
|
|
1548
|
+
* @default 'r-modal'
|
|
1549
|
+
* @example
|
|
1550
|
+
* <Modal id="custom-modal" />
|
|
1551
|
+
*/
|
|
1552
|
+
id?: string;
|
|
1473
1553
|
}
|
|
1474
1554
|
|
|
1475
1555
|
declare function onClick(e: MouseEvent): void;
|
|
@@ -1534,6 +1614,14 @@ declare interface PaginationProps {
|
|
|
1534
1614
|
* @type string
|
|
1535
1615
|
*/
|
|
1536
1616
|
infoText?: string;
|
|
1617
|
+
/**
|
|
1618
|
+
* Id of the Pagination
|
|
1619
|
+
* @type string
|
|
1620
|
+
* @default 'r-pagination'
|
|
1621
|
+
* @example
|
|
1622
|
+
* <Pagination id="custom-pagination" />
|
|
1623
|
+
*/
|
|
1624
|
+
id?: string;
|
|
1537
1625
|
}
|
|
1538
1626
|
|
|
1539
1627
|
declare enum Placement {
|
|
@@ -1556,6 +1644,14 @@ declare type Placements = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 't
|
|
|
1556
1644
|
declare interface ProgressBarProps {
|
|
1557
1645
|
value: number;
|
|
1558
1646
|
height?: number;
|
|
1647
|
+
/**
|
|
1648
|
+
* Id of the ProgressBar
|
|
1649
|
+
* @type string
|
|
1650
|
+
* @default 'r-progressbar'
|
|
1651
|
+
* @example
|
|
1652
|
+
* <ProgressBar id="custom-progressbar" />
|
|
1653
|
+
*/
|
|
1654
|
+
id?: string;
|
|
1559
1655
|
}
|
|
1560
1656
|
|
|
1561
1657
|
declare interface Props {
|
|
@@ -1607,6 +1703,14 @@ declare interface Props {
|
|
|
1607
1703
|
* <Alert block />
|
|
1608
1704
|
*/
|
|
1609
1705
|
block?: boolean;
|
|
1706
|
+
/**
|
|
1707
|
+
* Id of the Alert
|
|
1708
|
+
* @type string
|
|
1709
|
+
* @default ''
|
|
1710
|
+
* @example
|
|
1711
|
+
* <Alert id="custom-alert" />
|
|
1712
|
+
*/
|
|
1713
|
+
id?: string;
|
|
1610
1714
|
}
|
|
1611
1715
|
|
|
1612
1716
|
declare interface Props_2 {
|
|
@@ -1690,6 +1794,14 @@ declare interface Props_2 {
|
|
|
1690
1794
|
* <Button block />
|
|
1691
1795
|
*/
|
|
1692
1796
|
block?: boolean;
|
|
1797
|
+
/**
|
|
1798
|
+
* Id of the Button
|
|
1799
|
+
* @type string
|
|
1800
|
+
* @default 'r-button'
|
|
1801
|
+
* @example
|
|
1802
|
+
* <Button id="custom-button" />
|
|
1803
|
+
*/
|
|
1804
|
+
id?: string;
|
|
1693
1805
|
}
|
|
1694
1806
|
|
|
1695
1807
|
declare interface Props_3 {
|
|
@@ -1829,6 +1941,14 @@ declare interface Props_4 {
|
|
|
1829
1941
|
* <Chip noWrap />
|
|
1830
1942
|
*/
|
|
1831
1943
|
noWrap?: boolean;
|
|
1944
|
+
/**
|
|
1945
|
+
* Id of the Chip
|
|
1946
|
+
* @type string
|
|
1947
|
+
* @default 'r-chip'
|
|
1948
|
+
* @example
|
|
1949
|
+
* <Chip id="custom-chip" />
|
|
1950
|
+
*/
|
|
1951
|
+
id?: string;
|
|
1832
1952
|
}
|
|
1833
1953
|
|
|
1834
1954
|
declare interface Props_5 {
|
|
@@ -2079,7 +2199,13 @@ declare interface Props_7 {
|
|
|
2079
2199
|
value?: string;
|
|
2080
2200
|
}
|
|
2081
2201
|
|
|
2082
|
-
export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<
|
|
2202
|
+
export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionProps>, {
|
|
2203
|
+
id: string;
|
|
2204
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionProps>, {
|
|
2205
|
+
id: string;
|
|
2206
|
+
}>>>, {
|
|
2207
|
+
id: string;
|
|
2208
|
+
}, {}>, {
|
|
2083
2209
|
title?(_: {
|
|
2084
2210
|
accordion: Accordion & {
|
|
2085
2211
|
title: string;
|
|
@@ -2089,6 +2215,7 @@ export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_T
|
|
|
2089
2215
|
};
|
|
2090
2216
|
}): any;
|
|
2091
2217
|
icon?(_: {
|
|
2218
|
+
id: string;
|
|
2092
2219
|
item: Accordion & {
|
|
2093
2220
|
title: string;
|
|
2094
2221
|
content: string;
|
|
@@ -2098,6 +2225,7 @@ export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_T
|
|
|
2098
2225
|
open: boolean;
|
|
2099
2226
|
}): any;
|
|
2100
2227
|
content?(_: {
|
|
2228
|
+
id: string;
|
|
2101
2229
|
accordion: Accordion & {
|
|
2102
2230
|
title: string;
|
|
2103
2231
|
content: string;
|
|
@@ -2107,25 +2235,28 @@ export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_T
|
|
|
2107
2235
|
}): any;
|
|
2108
2236
|
}>;
|
|
2109
2237
|
|
|
2110
|
-
export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<
|
|
2238
|
+
export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<Props>, {
|
|
2111
2239
|
type: string;
|
|
2112
2240
|
title: string;
|
|
2113
2241
|
variant: string;
|
|
2114
2242
|
description: string;
|
|
2243
|
+
id: string;
|
|
2115
2244
|
closable: boolean;
|
|
2116
2245
|
block: boolean;
|
|
2117
2246
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2118
2247
|
close: (...args: any[]) => void;
|
|
2119
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2248
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<Props>, {
|
|
2120
2249
|
type: string;
|
|
2121
2250
|
title: string;
|
|
2122
2251
|
variant: string;
|
|
2123
2252
|
description: string;
|
|
2253
|
+
id: string;
|
|
2124
2254
|
closable: boolean;
|
|
2125
2255
|
block: boolean;
|
|
2126
2256
|
}>>> & {
|
|
2127
2257
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
2128
2258
|
}, {
|
|
2259
|
+
id: string;
|
|
2129
2260
|
type: "success" | "error" | "warning" | "info";
|
|
2130
2261
|
title: string;
|
|
2131
2262
|
variant: "ghost" | "solid" | "outline";
|
|
@@ -2141,22 +2272,25 @@ export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_Wit
|
|
|
2141
2272
|
}): any;
|
|
2142
2273
|
}>;
|
|
2143
2274
|
|
|
2144
|
-
export declare const RAvatar: DefineComponent<
|
|
2275
|
+
export declare const RAvatar: DefineComponent<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<IProps>, {
|
|
2145
2276
|
type: string;
|
|
2146
2277
|
size: string;
|
|
2147
2278
|
src: string;
|
|
2148
2279
|
alt: string;
|
|
2149
2280
|
online: boolean;
|
|
2150
2281
|
text: string;
|
|
2151
|
-
|
|
2282
|
+
id: string;
|
|
2283
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<IProps>, {
|
|
2152
2284
|
type: string;
|
|
2153
2285
|
size: string;
|
|
2154
2286
|
src: string;
|
|
2155
2287
|
alt: string;
|
|
2156
2288
|
online: boolean;
|
|
2157
2289
|
text: string;
|
|
2290
|
+
id: string;
|
|
2158
2291
|
}>>>, {
|
|
2159
2292
|
size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
|
|
2293
|
+
id: string;
|
|
2160
2294
|
type: "image" | "text";
|
|
2161
2295
|
text: string;
|
|
2162
2296
|
src: string;
|
|
@@ -2164,7 +2298,7 @@ export declare const RAvatar: DefineComponent<__VLS_WithDefaults_2<__VLS_TypePro
|
|
|
2164
2298
|
online: boolean;
|
|
2165
2299
|
}, {}>;
|
|
2166
2300
|
|
|
2167
|
-
export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<
|
|
2301
|
+
export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
|
|
2168
2302
|
variant: string;
|
|
2169
2303
|
placement: string;
|
|
2170
2304
|
overlap: boolean;
|
|
@@ -2175,9 +2309,10 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Wit
|
|
|
2175
2309
|
class: string;
|
|
2176
2310
|
contentClass: string;
|
|
2177
2311
|
wrapperClass: string;
|
|
2312
|
+
id: string;
|
|
2178
2313
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2179
2314
|
click: (...args: any[]) => void;
|
|
2180
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2315
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
|
|
2181
2316
|
variant: string;
|
|
2182
2317
|
placement: string;
|
|
2183
2318
|
overlap: boolean;
|
|
@@ -2188,9 +2323,11 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Wit
|
|
|
2188
2323
|
class: string;
|
|
2189
2324
|
contentClass: string;
|
|
2190
2325
|
wrapperClass: string;
|
|
2326
|
+
id: string;
|
|
2191
2327
|
}>>> & {
|
|
2192
2328
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
2193
2329
|
}, {
|
|
2330
|
+
id: string;
|
|
2194
2331
|
class: string | string[];
|
|
2195
2332
|
variant: "primary" | "success" | "error" | "warning" | "neutral";
|
|
2196
2333
|
hover: boolean;
|
|
@@ -2202,30 +2339,39 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Wit
|
|
|
2202
2339
|
contentClass: string | string[];
|
|
2203
2340
|
wrapperClass: string | string[];
|
|
2204
2341
|
}, {}>, {
|
|
2205
|
-
default?(_: {
|
|
2342
|
+
default?(_: {
|
|
2343
|
+
id: string;
|
|
2344
|
+
}): any;
|
|
2206
2345
|
}>;
|
|
2207
2346
|
|
|
2208
|
-
export declare const RBreadcrumb: __VLS_WithTemplateSlots_15<DefineComponent<
|
|
2347
|
+
export declare const RBreadcrumb: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_20<{
|
|
2209
2348
|
items: BreadcrumbItem[];
|
|
2210
2349
|
seperator?: string | undefined;
|
|
2350
|
+
id?: string | undefined;
|
|
2211
2351
|
}>, {
|
|
2212
2352
|
items: () => BreadcrumbItem[];
|
|
2213
2353
|
seperator: string;
|
|
2214
|
-
|
|
2354
|
+
id: string;
|
|
2355
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_20<{
|
|
2215
2356
|
items: BreadcrumbItem[];
|
|
2216
2357
|
seperator?: string | undefined;
|
|
2358
|
+
id?: string | undefined;
|
|
2217
2359
|
}>, {
|
|
2218
2360
|
items: () => BreadcrumbItem[];
|
|
2219
2361
|
seperator: string;
|
|
2362
|
+
id: string;
|
|
2220
2363
|
}>>>, {
|
|
2364
|
+
id: string;
|
|
2221
2365
|
items: BreadcrumbItem[];
|
|
2222
2366
|
seperator: string;
|
|
2223
2367
|
}, {}>, {
|
|
2224
2368
|
"item-icon"?(_: {}): any;
|
|
2225
|
-
"custom-seperator"?(_: {
|
|
2369
|
+
"custom-seperator"?(_: {
|
|
2370
|
+
id: string;
|
|
2371
|
+
}): any;
|
|
2226
2372
|
}>;
|
|
2227
2373
|
|
|
2228
|
-
export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<
|
|
2374
|
+
export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_5<Props_2>, {
|
|
2229
2375
|
variant: string;
|
|
2230
2376
|
loading: boolean;
|
|
2231
2377
|
disabled: boolean;
|
|
@@ -2235,9 +2381,10 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
|
|
|
2235
2381
|
size: string;
|
|
2236
2382
|
height: string;
|
|
2237
2383
|
block: boolean;
|
|
2384
|
+
id: string;
|
|
2238
2385
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2239
2386
|
click: (...args: any[]) => void;
|
|
2240
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2387
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_5<Props_2>, {
|
|
2241
2388
|
variant: string;
|
|
2242
2389
|
loading: boolean;
|
|
2243
2390
|
disabled: boolean;
|
|
@@ -2247,11 +2394,13 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
|
|
|
2247
2394
|
size: string;
|
|
2248
2395
|
height: string;
|
|
2249
2396
|
block: boolean;
|
|
2397
|
+
id: string;
|
|
2250
2398
|
}>>> & {
|
|
2251
2399
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
2252
2400
|
}, {
|
|
2253
2401
|
height: string;
|
|
2254
2402
|
size: ButtonSize;
|
|
2403
|
+
id: string;
|
|
2255
2404
|
variant: ButtonType;
|
|
2256
2405
|
disabled: boolean;
|
|
2257
2406
|
prependIcon: string;
|
|
@@ -2264,6 +2413,7 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
|
|
|
2264
2413
|
onlyIcon: boolean;
|
|
2265
2414
|
}): any;
|
|
2266
2415
|
default?(_: {
|
|
2416
|
+
id: string;
|
|
2267
2417
|
disabled: boolean;
|
|
2268
2418
|
}): any;
|
|
2269
2419
|
append?(_: {
|
|
@@ -2271,7 +2421,7 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
|
|
|
2271
2421
|
}): any;
|
|
2272
2422
|
}>;
|
|
2273
2423
|
|
|
2274
|
-
export declare const RCheckbox: DefineComponent<
|
|
2424
|
+
export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<Props_3>, {
|
|
2275
2425
|
id: string;
|
|
2276
2426
|
label: string;
|
|
2277
2427
|
indeterminate: boolean;
|
|
@@ -2281,7 +2431,7 @@ export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_5<__VLS_TypeP
|
|
|
2281
2431
|
modelValue: boolean;
|
|
2282
2432
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2283
2433
|
"update:modelValue": (...args: any[]) => void;
|
|
2284
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2434
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<Props_3>, {
|
|
2285
2435
|
id: string;
|
|
2286
2436
|
label: string;
|
|
2287
2437
|
indeterminate: boolean;
|
|
@@ -2292,16 +2442,16 @@ export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_5<__VLS_TypeP
|
|
|
2292
2442
|
}>>> & {
|
|
2293
2443
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2294
2444
|
}, {
|
|
2445
|
+
id: string | undefined;
|
|
2295
2446
|
label: string;
|
|
2296
2447
|
disabled: boolean | "true" | "false";
|
|
2297
|
-
id: string | undefined;
|
|
2298
2448
|
modelValue: any[] | Set<any> | (boolean | "true" | "false");
|
|
2299
2449
|
errorMsg: string;
|
|
2300
2450
|
hint: string;
|
|
2301
2451
|
indeterminate: boolean;
|
|
2302
2452
|
}, {}>;
|
|
2303
2453
|
|
|
2304
|
-
export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<
|
|
2454
|
+
export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_7<Props_4>, {
|
|
2305
2455
|
variant: string;
|
|
2306
2456
|
label: string;
|
|
2307
2457
|
disabled: boolean;
|
|
@@ -2310,10 +2460,11 @@ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_With
|
|
|
2310
2460
|
ghost: boolean;
|
|
2311
2461
|
clearable: boolean;
|
|
2312
2462
|
noWrap: boolean;
|
|
2463
|
+
id: string;
|
|
2313
2464
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2314
2465
|
"click:chip": (...args: any[]) => void;
|
|
2315
2466
|
"click:close": (...args: any[]) => void;
|
|
2316
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2467
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_7<Props_4>, {
|
|
2317
2468
|
variant: string;
|
|
2318
2469
|
label: string;
|
|
2319
2470
|
disabled: boolean;
|
|
@@ -2322,10 +2473,12 @@ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_With
|
|
|
2322
2473
|
ghost: boolean;
|
|
2323
2474
|
clearable: boolean;
|
|
2324
2475
|
noWrap: boolean;
|
|
2476
|
+
id: string;
|
|
2325
2477
|
}>>> & {
|
|
2326
2478
|
"onClick:chip"?: ((...args: any[]) => any) | undefined;
|
|
2327
2479
|
"onClick:close"?: ((...args: any[]) => any) | undefined;
|
|
2328
2480
|
}, {
|
|
2481
|
+
id: string;
|
|
2329
2482
|
label: string | number;
|
|
2330
2483
|
variant: "primary" | "secondary" | "success" | "error" | "warning" | "info";
|
|
2331
2484
|
disabled: boolean;
|
|
@@ -2343,7 +2496,7 @@ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_With
|
|
|
2343
2496
|
}): any;
|
|
2344
2497
|
}>;
|
|
2345
2498
|
|
|
2346
|
-
export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<
|
|
2499
|
+
export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
|
|
2347
2500
|
options: () => never[];
|
|
2348
2501
|
modelValue: any;
|
|
2349
2502
|
placeholder: string;
|
|
@@ -2375,7 +2528,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2375
2528
|
"update:modelValue": (...args: any[]) => void;
|
|
2376
2529
|
clear: (...args: any[]) => void;
|
|
2377
2530
|
removeOption: (...args: any[]) => void;
|
|
2378
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2531
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
|
|
2379
2532
|
options: () => never[];
|
|
2380
2533
|
modelValue: any;
|
|
2381
2534
|
placeholder: string;
|
|
@@ -2408,13 +2561,13 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2408
2561
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
2409
2562
|
onRemoveOption?: ((...args: any[]) => any) | undefined;
|
|
2410
2563
|
}, {
|
|
2564
|
+
id: string;
|
|
2411
2565
|
disabled: boolean;
|
|
2412
2566
|
prependIcon: string;
|
|
2413
2567
|
appendIcon: string;
|
|
2414
2568
|
clearable: boolean;
|
|
2415
2569
|
options: any;
|
|
2416
2570
|
tooltipClass: string;
|
|
2417
|
-
id: string;
|
|
2418
2571
|
modelValue: any;
|
|
2419
2572
|
placeholder: string;
|
|
2420
2573
|
chips: boolean;
|
|
@@ -2436,12 +2589,14 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2436
2589
|
maxVisibleChips: number;
|
|
2437
2590
|
}, {}>, {
|
|
2438
2591
|
prepend?(_: {
|
|
2592
|
+
id: string;
|
|
2439
2593
|
active: boolean;
|
|
2440
2594
|
disabled: boolean;
|
|
2441
2595
|
error: number;
|
|
2442
2596
|
loading: boolean;
|
|
2443
2597
|
}): any;
|
|
2444
2598
|
selection?(_: {
|
|
2599
|
+
id: string;
|
|
2445
2600
|
removeOption: typeof removeOption;
|
|
2446
2601
|
selected: {
|
|
2447
2602
|
[x: string]: any;
|
|
@@ -2452,16 +2607,19 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2452
2607
|
}[];
|
|
2453
2608
|
}): any;
|
|
2454
2609
|
"remaining-count"?(_: {
|
|
2610
|
+
id: string;
|
|
2455
2611
|
count: number;
|
|
2456
2612
|
}): any;
|
|
2457
2613
|
clearable?(_: {}): any;
|
|
2458
2614
|
append?(_: {
|
|
2615
|
+
id: string;
|
|
2459
2616
|
active: boolean;
|
|
2460
2617
|
disabled: boolean;
|
|
2461
2618
|
error: number;
|
|
2462
2619
|
loading: boolean;
|
|
2463
2620
|
}): any;
|
|
2464
2621
|
option?(_: {
|
|
2622
|
+
id: string;
|
|
2465
2623
|
disabled: boolean | undefined;
|
|
2466
2624
|
isSelected: boolean | {
|
|
2467
2625
|
[x: string]: any;
|
|
@@ -2473,6 +2631,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2473
2631
|
item: Option_2;
|
|
2474
2632
|
}): any;
|
|
2475
2633
|
"option-prepend"?(_: {
|
|
2634
|
+
id: string;
|
|
2476
2635
|
disabled: boolean | undefined;
|
|
2477
2636
|
isSelected: boolean | {
|
|
2478
2637
|
[x: string]: any;
|
|
@@ -2483,6 +2642,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2483
2642
|
} | undefined;
|
|
2484
2643
|
}): any;
|
|
2485
2644
|
"option-append"?(_: {
|
|
2645
|
+
id: string;
|
|
2486
2646
|
disabled: boolean | undefined;
|
|
2487
2647
|
isSelected: boolean | {
|
|
2488
2648
|
[x: string]: any;
|
|
@@ -2501,33 +2661,39 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
|
|
|
2501
2661
|
*/
|
|
2502
2662
|
declare function removeOption(e: MouseEvent | KeyboardEvent, option: Option_2, updatePosition: any): void;
|
|
2503
2663
|
|
|
2504
|
-
export declare const RIcon: DefineComponent<
|
|
2664
|
+
export declare const RIcon: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_9<IProps_2>, {
|
|
2505
2665
|
name: string;
|
|
2506
2666
|
size: number;
|
|
2507
2667
|
viewBox: string;
|
|
2508
|
-
|
|
2668
|
+
id: string;
|
|
2669
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_9<IProps_2>, {
|
|
2509
2670
|
name: string;
|
|
2510
2671
|
size: number;
|
|
2511
2672
|
viewBox: string;
|
|
2673
|
+
id: string;
|
|
2512
2674
|
}>>>, {
|
|
2513
2675
|
name: string | undefined;
|
|
2514
2676
|
viewBox: string;
|
|
2515
2677
|
size: string | number;
|
|
2516
2678
|
}, {}>;
|
|
2517
2679
|
|
|
2518
|
-
export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<
|
|
2680
|
+
export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_24<ItemProps>, {
|
|
2519
2681
|
disabled: boolean;
|
|
2520
2682
|
selectedClass: string;
|
|
2521
2683
|
value: null;
|
|
2522
|
-
|
|
2684
|
+
id: string;
|
|
2685
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_24<ItemProps>, {
|
|
2523
2686
|
disabled: boolean;
|
|
2524
2687
|
selectedClass: string;
|
|
2525
2688
|
value: null;
|
|
2689
|
+
id: string;
|
|
2526
2690
|
}>>>, {
|
|
2691
|
+
id: string;
|
|
2527
2692
|
value: any;
|
|
2528
2693
|
selectedClass: string | string[];
|
|
2529
2694
|
}, {}>, {
|
|
2530
2695
|
default?(_: {
|
|
2696
|
+
id: string;
|
|
2531
2697
|
disabled: boolean;
|
|
2532
2698
|
isSelected: boolean;
|
|
2533
2699
|
select: typeof handleSelect;
|
|
@@ -2536,25 +2702,28 @@ export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Wit
|
|
|
2536
2702
|
}): any;
|
|
2537
2703
|
}>;
|
|
2538
2704
|
|
|
2539
|
-
export declare const RItemGroup: __VLS_WithTemplateSlots_17<DefineComponent<
|
|
2705
|
+
export declare const RItemGroup: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_23<ItemGroupProps>, {
|
|
2540
2706
|
disabled: boolean;
|
|
2541
2707
|
mandatory: boolean;
|
|
2542
2708
|
max: number;
|
|
2543
2709
|
as: string;
|
|
2544
2710
|
selectedClass: string;
|
|
2545
2711
|
modelValue: () => number[];
|
|
2712
|
+
id: string;
|
|
2546
2713
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2547
2714
|
"update:modelValue": (...args: any[]) => void;
|
|
2548
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2715
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_23<ItemGroupProps>, {
|
|
2549
2716
|
disabled: boolean;
|
|
2550
2717
|
mandatory: boolean;
|
|
2551
2718
|
max: number;
|
|
2552
2719
|
as: string;
|
|
2553
2720
|
selectedClass: string;
|
|
2554
2721
|
modelValue: () => number[];
|
|
2722
|
+
id: string;
|
|
2555
2723
|
}>>> & {
|
|
2556
2724
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2557
2725
|
}, {
|
|
2726
|
+
id: string;
|
|
2558
2727
|
disabled: boolean;
|
|
2559
2728
|
modelValue: string[] | number[];
|
|
2560
2729
|
as: string;
|
|
@@ -2563,29 +2732,32 @@ export declare const RItemGroup: __VLS_WithTemplateSlots_17<DefineComponent<__VL
|
|
|
2563
2732
|
max: number;
|
|
2564
2733
|
}, {}>, {
|
|
2565
2734
|
default?(_: {
|
|
2735
|
+
id: string;
|
|
2566
2736
|
isSelected: typeof isSelected;
|
|
2567
2737
|
select: typeof select;
|
|
2568
2738
|
selected: string[] | number[];
|
|
2569
2739
|
}): any;
|
|
2570
2740
|
}>;
|
|
2571
2741
|
|
|
2572
|
-
export declare const RLabel: __VLS_WithTemplateSlots_7<DefineComponent<
|
|
2742
|
+
export declare const RLabel: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<LabelProps>, {
|
|
2573
2743
|
id: string;
|
|
2574
2744
|
for: string;
|
|
2575
2745
|
text: string;
|
|
2576
|
-
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2746
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<LabelProps>, {
|
|
2577
2747
|
id: string;
|
|
2578
2748
|
for: string;
|
|
2579
2749
|
text: string;
|
|
2580
2750
|
}>>>, {
|
|
2581
|
-
text: string | number;
|
|
2582
2751
|
id: string | undefined;
|
|
2752
|
+
text: string | number;
|
|
2583
2753
|
for: string | undefined;
|
|
2584
2754
|
}, {}>, {
|
|
2585
|
-
default?(_: {
|
|
2755
|
+
default?(_: {
|
|
2756
|
+
id: string;
|
|
2757
|
+
}): any;
|
|
2586
2758
|
}>;
|
|
2587
2759
|
|
|
2588
|
-
export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<
|
|
2760
|
+
export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_11<ModalProps>, {
|
|
2589
2761
|
modelValue: boolean;
|
|
2590
2762
|
block: boolean;
|
|
2591
2763
|
title: string;
|
|
@@ -2599,9 +2771,10 @@ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Wit
|
|
|
2599
2771
|
overlayClass: string;
|
|
2600
2772
|
style: string;
|
|
2601
2773
|
allowBodyScroll: boolean;
|
|
2774
|
+
id: string;
|
|
2602
2775
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2603
2776
|
"update:modelValue": (...args: any[]) => void;
|
|
2604
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2777
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_11<ModalProps>, {
|
|
2605
2778
|
modelValue: boolean;
|
|
2606
2779
|
block: boolean;
|
|
2607
2780
|
title: string;
|
|
@@ -2615,11 +2788,13 @@ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Wit
|
|
|
2615
2788
|
overlayClass: string;
|
|
2616
2789
|
style: string;
|
|
2617
2790
|
allowBodyScroll: boolean;
|
|
2791
|
+
id: string;
|
|
2618
2792
|
}>>> & {
|
|
2619
2793
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2620
2794
|
}, {
|
|
2621
2795
|
width: string;
|
|
2622
2796
|
height: string;
|
|
2797
|
+
id: string;
|
|
2623
2798
|
style: string;
|
|
2624
2799
|
title: string;
|
|
2625
2800
|
class: string | string[];
|
|
@@ -2632,13 +2807,21 @@ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Wit
|
|
|
2632
2807
|
overlayClass: string | string[];
|
|
2633
2808
|
allowBodyScroll: boolean;
|
|
2634
2809
|
}, {}>, {
|
|
2635
|
-
wrapper?(_: {
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2810
|
+
wrapper?(_: {
|
|
2811
|
+
id: string;
|
|
2812
|
+
}): any;
|
|
2813
|
+
header?(_: {
|
|
2814
|
+
id: string;
|
|
2815
|
+
}): any;
|
|
2816
|
+
default?(_: {
|
|
2817
|
+
id: string;
|
|
2818
|
+
}): any;
|
|
2819
|
+
actions?(_: {
|
|
2820
|
+
id: string;
|
|
2821
|
+
}): any;
|
|
2639
2822
|
}>;
|
|
2640
2823
|
|
|
2641
|
-
export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<
|
|
2824
|
+
export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
|
|
2642
2825
|
page: number;
|
|
2643
2826
|
perPage: number;
|
|
2644
2827
|
totalItems: number;
|
|
@@ -2646,11 +2829,12 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2646
2829
|
itemsPerPageText: string;
|
|
2647
2830
|
position: string;
|
|
2648
2831
|
infoText: string;
|
|
2832
|
+
id: string;
|
|
2649
2833
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2650
2834
|
"update:page": (...args: any[]) => void;
|
|
2651
2835
|
"update:perPage": (...args: any[]) => void;
|
|
2652
2836
|
"update:info": (...args: any[]) => void;
|
|
2653
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2837
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
|
|
2654
2838
|
page: number;
|
|
2655
2839
|
perPage: number;
|
|
2656
2840
|
totalItems: number;
|
|
@@ -2658,11 +2842,13 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2658
2842
|
itemsPerPageText: string;
|
|
2659
2843
|
position: string;
|
|
2660
2844
|
infoText: string;
|
|
2845
|
+
id: string;
|
|
2661
2846
|
}>>> & {
|
|
2662
2847
|
"onUpdate:page"?: ((...args: any[]) => any) | undefined;
|
|
2663
2848
|
"onUpdate:perPage"?: ((...args: any[]) => any) | undefined;
|
|
2664
2849
|
"onUpdate:info"?: ((...args: any[]) => any) | undefined;
|
|
2665
2850
|
}, {
|
|
2851
|
+
id: string;
|
|
2666
2852
|
page: number;
|
|
2667
2853
|
perPage: number;
|
|
2668
2854
|
totalItems: number;
|
|
@@ -2671,24 +2857,35 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
|
|
|
2671
2857
|
position: string;
|
|
2672
2858
|
infoText: string;
|
|
2673
2859
|
}, {}>, {
|
|
2674
|
-
first?(_: {
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2860
|
+
first?(_: {
|
|
2861
|
+
id: string;
|
|
2862
|
+
}): any;
|
|
2863
|
+
prev?(_: {
|
|
2864
|
+
id: string;
|
|
2865
|
+
}): any;
|
|
2866
|
+
next?(_: {
|
|
2867
|
+
id: string;
|
|
2868
|
+
}): any;
|
|
2869
|
+
last?(_: {
|
|
2870
|
+
id: string;
|
|
2871
|
+
}): any;
|
|
2678
2872
|
}>;
|
|
2679
2873
|
|
|
2680
|
-
export declare const RProgressbar: DefineComponent<
|
|
2874
|
+
export declare const RProgressbar: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_22<ProgressBarProps>, {
|
|
2681
2875
|
value: number;
|
|
2682
2876
|
height: number;
|
|
2683
|
-
|
|
2877
|
+
id: string;
|
|
2878
|
+
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_22<ProgressBarProps>, {
|
|
2684
2879
|
value: number;
|
|
2685
2880
|
height: number;
|
|
2881
|
+
id: string;
|
|
2686
2882
|
}>>>, {
|
|
2687
2883
|
height: number;
|
|
2884
|
+
id: string;
|
|
2688
2885
|
value: number;
|
|
2689
2886
|
}, {}>;
|
|
2690
2887
|
|
|
2691
|
-
export declare const RRadio: DefineComponent<
|
|
2888
|
+
export declare const RRadio: DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_25<Props_7>, {
|
|
2692
2889
|
id: string;
|
|
2693
2890
|
modelValue: boolean;
|
|
2694
2891
|
name: string;
|
|
@@ -2700,7 +2897,7 @@ export declare const RRadio: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePro
|
|
|
2700
2897
|
value: string;
|
|
2701
2898
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2702
2899
|
"update:modelValue": (...args: any[]) => void;
|
|
2703
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2900
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_25<Props_7>, {
|
|
2704
2901
|
id: string;
|
|
2705
2902
|
modelValue: boolean;
|
|
2706
2903
|
name: string;
|
|
@@ -2714,27 +2911,30 @@ export declare const RRadio: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePro
|
|
|
2714
2911
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2715
2912
|
}, {
|
|
2716
2913
|
name: string;
|
|
2914
|
+
id: string;
|
|
2717
2915
|
label: string;
|
|
2718
2916
|
title: string;
|
|
2719
2917
|
disabled: boolean;
|
|
2720
2918
|
value: string;
|
|
2721
|
-
id: string;
|
|
2722
2919
|
modelValue: boolean;
|
|
2723
2920
|
errorMsg: string;
|
|
2724
2921
|
hint: string;
|
|
2725
2922
|
}, {}>;
|
|
2726
2923
|
|
|
2727
|
-
export declare const RSidebar: __VLS_WithTemplateSlots_9<DefineComponent<
|
|
2924
|
+
export declare const RSidebar: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_12<RSidebarProps>, {
|
|
2728
2925
|
modelValue: boolean;
|
|
2729
2926
|
showTrigger: boolean;
|
|
2927
|
+
id: string;
|
|
2730
2928
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2731
2929
|
"update:modelValue": (...args: any[]) => void;
|
|
2732
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2930
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_12<RSidebarProps>, {
|
|
2733
2931
|
modelValue: boolean;
|
|
2734
2932
|
showTrigger: boolean;
|
|
2933
|
+
id: string;
|
|
2735
2934
|
}>>> & {
|
|
2736
2935
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2737
2936
|
}, {
|
|
2937
|
+
id: string;
|
|
2738
2938
|
modelValue: boolean;
|
|
2739
2939
|
showTrigger: boolean;
|
|
2740
2940
|
}, {}>, {
|
|
@@ -2742,6 +2942,7 @@ export declare const RSidebar: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_W
|
|
|
2742
2942
|
open: boolean;
|
|
2743
2943
|
}): any;
|
|
2744
2944
|
trigger?(_: {
|
|
2945
|
+
id: string;
|
|
2745
2946
|
open: boolean;
|
|
2746
2947
|
}): any;
|
|
2747
2948
|
}>;
|
|
@@ -2752,39 +2953,56 @@ declare interface RSidebarProps {
|
|
|
2752
2953
|
class?: string | string[];
|
|
2753
2954
|
triggerClass?: string | string[];
|
|
2754
2955
|
wrapperClass?: string | string[];
|
|
2956
|
+
/**
|
|
2957
|
+
* Id of the Sidebar
|
|
2958
|
+
* @type string
|
|
2959
|
+
* @default 'r-sidebar'
|
|
2960
|
+
* @example
|
|
2961
|
+
* <Sidebar id="custom-sidebar" />
|
|
2962
|
+
*/
|
|
2963
|
+
id?: string;
|
|
2755
2964
|
}
|
|
2756
2965
|
|
|
2757
|
-
export declare const RSnackbar: __VLS_WithTemplateSlots_10<DefineComponent<
|
|
2966
|
+
export declare const RSnackbar: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_13<IProps_3>, {
|
|
2758
2967
|
text: string;
|
|
2759
2968
|
closable: boolean;
|
|
2760
2969
|
left: boolean;
|
|
2761
2970
|
modelValue: boolean;
|
|
2762
2971
|
timeout: number;
|
|
2972
|
+
id: string;
|
|
2763
2973
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2764
2974
|
"update:modelValue": (...args: any[]) => void;
|
|
2765
2975
|
action: (...args: any[]) => void;
|
|
2766
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
2976
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_13<IProps_3>, {
|
|
2767
2977
|
text: string;
|
|
2768
2978
|
closable: boolean;
|
|
2769
2979
|
left: boolean;
|
|
2770
2980
|
modelValue: boolean;
|
|
2771
2981
|
timeout: number;
|
|
2982
|
+
id: string;
|
|
2772
2983
|
}>>> & {
|
|
2773
2984
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2774
2985
|
onAction?: ((...args: any[]) => any) | undefined;
|
|
2775
2986
|
}, {
|
|
2987
|
+
id: string;
|
|
2776
2988
|
text: string;
|
|
2777
2989
|
left: boolean;
|
|
2778
2990
|
modelValue: boolean;
|
|
2779
2991
|
closable: boolean;
|
|
2780
2992
|
timeout: number;
|
|
2781
2993
|
}, {}>, {
|
|
2782
|
-
icon?(_: {
|
|
2783
|
-
|
|
2784
|
-
|
|
2994
|
+
icon?(_: {
|
|
2995
|
+
id: string;
|
|
2996
|
+
}): any;
|
|
2997
|
+
default?(_: {
|
|
2998
|
+
id: string;
|
|
2999
|
+
}): any;
|
|
3000
|
+
close?(_: {
|
|
3001
|
+
id: string;
|
|
3002
|
+
}): any;
|
|
2785
3003
|
}>;
|
|
2786
3004
|
|
|
2787
|
-
export declare const RSwitch: DefineComponent<
|
|
3005
|
+
export declare const RSwitch: DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_14<Props_5>, {
|
|
2788
3006
|
id: string;
|
|
2789
3007
|
modelValue: boolean;
|
|
2790
3008
|
size: string;
|
|
@@ -2794,7 +3012,7 @@ export declare const RSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePr
|
|
|
2794
3012
|
errorMsg: string;
|
|
2795
3013
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2796
3014
|
"update:modelValue": (...args: any[]) => void;
|
|
2797
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3015
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_14<Props_5>, {
|
|
2798
3016
|
id: string;
|
|
2799
3017
|
modelValue: boolean;
|
|
2800
3018
|
size: string;
|
|
@@ -2806,15 +3024,15 @@ export declare const RSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePr
|
|
|
2806
3024
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2807
3025
|
}, {
|
|
2808
3026
|
size: "small" | "medium" | "large";
|
|
3027
|
+
id: string | undefined;
|
|
2809
3028
|
label: string;
|
|
2810
3029
|
disabled: boolean | "true" | "false";
|
|
2811
|
-
id: string | undefined;
|
|
2812
3030
|
modelValue: any[] | Set<any> | (boolean | "true" | "false");
|
|
2813
3031
|
errorMsg: string;
|
|
2814
3032
|
hint: string;
|
|
2815
3033
|
}, {}>;
|
|
2816
3034
|
|
|
2817
|
-
export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<
|
|
3035
|
+
export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_15<IProps_4>, {
|
|
2818
3036
|
label: string;
|
|
2819
3037
|
variant: TabItemVariants;
|
|
2820
3038
|
prependIcon: string;
|
|
@@ -2826,7 +3044,7 @@ export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_
|
|
|
2826
3044
|
color: string;
|
|
2827
3045
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2828
3046
|
"update:modelValue": (...args: any[]) => void;
|
|
2829
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3047
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_15<IProps_4>, {
|
|
2830
3048
|
label: string;
|
|
2831
3049
|
variant: TabItemVariants;
|
|
2832
3050
|
prependIcon: string;
|
|
@@ -2850,35 +3068,41 @@ export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_
|
|
|
2850
3068
|
tile: boolean;
|
|
2851
3069
|
}, {}>, {
|
|
2852
3070
|
prepend?(_: {
|
|
3071
|
+
id: string;
|
|
2853
3072
|
active: boolean;
|
|
2854
3073
|
disabled: boolean;
|
|
2855
3074
|
}): any;
|
|
2856
3075
|
default?(_: {
|
|
3076
|
+
id: string;
|
|
2857
3077
|
label: string;
|
|
2858
3078
|
}): any;
|
|
2859
3079
|
append?(_: {
|
|
3080
|
+
id: string;
|
|
2860
3081
|
active: boolean;
|
|
2861
3082
|
disabled: boolean;
|
|
2862
3083
|
}): any;
|
|
2863
3084
|
}>;
|
|
2864
3085
|
|
|
2865
|
-
export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<
|
|
3086
|
+
export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
|
|
2866
3087
|
tabs: () => never[];
|
|
2867
3088
|
block: boolean;
|
|
2868
3089
|
modelValue: string;
|
|
2869
3090
|
tile: boolean;
|
|
2870
3091
|
scrollable: boolean;
|
|
3092
|
+
id: string;
|
|
2871
3093
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2872
3094
|
"update:modelValue": (...args: any[]) => void;
|
|
2873
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3095
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
|
|
2874
3096
|
tabs: () => never[];
|
|
2875
3097
|
block: boolean;
|
|
2876
3098
|
modelValue: string;
|
|
2877
3099
|
tile: boolean;
|
|
2878
3100
|
scrollable: boolean;
|
|
3101
|
+
id: string;
|
|
2879
3102
|
}>>> & {
|
|
2880
3103
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2881
3104
|
}, {
|
|
3105
|
+
id: string;
|
|
2882
3106
|
block: boolean;
|
|
2883
3107
|
modelValue: string | number;
|
|
2884
3108
|
tile: boolean;
|
|
@@ -2886,11 +3110,12 @@ export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Wit
|
|
|
2886
3110
|
scrollable: boolean;
|
|
2887
3111
|
}, {}>, {
|
|
2888
3112
|
default?(_: {
|
|
3113
|
+
id: string;
|
|
2889
3114
|
activeTab: string | number;
|
|
2890
3115
|
}): any;
|
|
2891
3116
|
}>;
|
|
2892
3117
|
|
|
2893
|
-
export declare const RTextArea: DefineComponent<
|
|
3118
|
+
export declare const RTextArea: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_17<IProps_6>, {
|
|
2894
3119
|
id: string;
|
|
2895
3120
|
errorMsg: string;
|
|
2896
3121
|
disabled: boolean;
|
|
@@ -2900,7 +3125,7 @@ export declare const RTextArea: DefineComponent<__VLS_WithDefaults_16<__VLS_Type
|
|
|
2900
3125
|
hint: string;
|
|
2901
3126
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2902
3127
|
"update:modelValue": (...args: any[]) => void;
|
|
2903
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3128
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_17<IProps_6>, {
|
|
2904
3129
|
id: string;
|
|
2905
3130
|
errorMsg: string;
|
|
2906
3131
|
disabled: boolean;
|
|
@@ -2911,16 +3136,16 @@ export declare const RTextArea: DefineComponent<__VLS_WithDefaults_16<__VLS_Type
|
|
|
2911
3136
|
}>>> & {
|
|
2912
3137
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2913
3138
|
}, {
|
|
3139
|
+
id: string | undefined;
|
|
2914
3140
|
label: string;
|
|
2915
3141
|
disabled: boolean | "true" | "false";
|
|
2916
|
-
id: string | undefined;
|
|
2917
3142
|
modelValue: any;
|
|
2918
3143
|
placeholder: string;
|
|
2919
3144
|
errorMsg: string;
|
|
2920
3145
|
hint: string;
|
|
2921
3146
|
}, {}>;
|
|
2922
3147
|
|
|
2923
|
-
export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<
|
|
3148
|
+
export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_18<Props_6>, {
|
|
2924
3149
|
id: string;
|
|
2925
3150
|
type: string;
|
|
2926
3151
|
modelValue: string;
|
|
@@ -2944,7 +3169,7 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2944
3169
|
"update:modelValue": (...args: any[]) => void;
|
|
2945
3170
|
"click:icon": (...args: any[]) => void;
|
|
2946
3171
|
"click:clear": (...args: any[]) => void;
|
|
2947
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3172
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_18<Props_6>, {
|
|
2948
3173
|
id: string;
|
|
2949
3174
|
type: string;
|
|
2950
3175
|
modelValue: string;
|
|
@@ -2969,13 +3194,13 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2969
3194
|
"onClick:icon"?: ((...args: any[]) => any) | undefined;
|
|
2970
3195
|
"onClick:clear"?: ((...args: any[]) => any) | undefined;
|
|
2971
3196
|
}, {
|
|
3197
|
+
id: string | undefined;
|
|
2972
3198
|
type: "number" | "text" | "email" | "password" | "tel" | "url";
|
|
2973
3199
|
label: string;
|
|
2974
3200
|
disabled: boolean;
|
|
2975
3201
|
prependIcon: string;
|
|
2976
3202
|
appendIcon: string;
|
|
2977
3203
|
clearable: boolean;
|
|
2978
|
-
id: string | undefined;
|
|
2979
3204
|
role: string;
|
|
2980
3205
|
modelValue: any;
|
|
2981
3206
|
placeholder: string;
|
|
@@ -2986,18 +3211,20 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
|
|
|
2986
3211
|
readonly: boolean;
|
|
2987
3212
|
}, {}>, {
|
|
2988
3213
|
prepend?(_: {
|
|
3214
|
+
id: string;
|
|
2989
3215
|
disabled: boolean;
|
|
2990
3216
|
error: number;
|
|
2991
3217
|
loading: boolean;
|
|
2992
3218
|
}): any;
|
|
2993
3219
|
append?(_: {
|
|
3220
|
+
id: string;
|
|
2994
3221
|
disabled: boolean;
|
|
2995
3222
|
error: number;
|
|
2996
3223
|
loading: boolean;
|
|
2997
3224
|
}): any;
|
|
2998
3225
|
}>;
|
|
2999
3226
|
|
|
3000
|
-
export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<
|
|
3227
|
+
export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_19<IProps_7>, {
|
|
3001
3228
|
placement: Placement;
|
|
3002
3229
|
text: string;
|
|
3003
3230
|
dark: boolean;
|
|
@@ -3017,10 +3244,11 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
|
|
|
3017
3244
|
triggerClass: string;
|
|
3018
3245
|
tooltipClass: string;
|
|
3019
3246
|
type: Theme;
|
|
3247
|
+
id: string;
|
|
3020
3248
|
}>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3021
3249
|
show: (...args: any[]) => void;
|
|
3022
3250
|
hide: (...args: any[]) => void;
|
|
3023
|
-
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<
|
|
3251
|
+
}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_19<IProps_7>, {
|
|
3024
3252
|
placement: Placement;
|
|
3025
3253
|
text: string;
|
|
3026
3254
|
dark: boolean;
|
|
@@ -3040,6 +3268,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
|
|
|
3040
3268
|
triggerClass: string;
|
|
3041
3269
|
tooltipClass: string;
|
|
3042
3270
|
type: Theme;
|
|
3271
|
+
id: string;
|
|
3043
3272
|
}>>> & {
|
|
3044
3273
|
onShow?: ((...args: any[]) => any) | undefined;
|
|
3045
3274
|
onHide?: ((...args: any[]) => any) | undefined;
|
|
@@ -3065,6 +3294,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
|
|
|
3065
3294
|
persistent: boolean;
|
|
3066
3295
|
}, {}>, {
|
|
3067
3296
|
default?(_: {
|
|
3297
|
+
id: string;
|
|
3068
3298
|
activators: {
|
|
3069
3299
|
click: typeof onClick;
|
|
3070
3300
|
mouseenter: typeof onMouseEnter;
|
|
@@ -3075,6 +3305,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
|
|
|
3075
3305
|
updatePosition: typeof handleUpdate;
|
|
3076
3306
|
}): any;
|
|
3077
3307
|
content?(_: {
|
|
3308
|
+
id: string;
|
|
3078
3309
|
hide: typeof hideTooltip;
|
|
3079
3310
|
updatePosition: typeof handleUpdate;
|
|
3080
3311
|
}): any;
|