@rocketui/vue 0.3.0-alpha.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,6 @@ import { AllowedComponentProps } from 'vue';
2
2
  import { ComponentCustomProps } from 'vue';
3
3
  import { ComponentOptionsMixin } from 'vue';
4
4
  import { DefineComponent } from 'vue';
5
- import type { Directive } from 'vue';
6
5
  import { ExtractPropTypes } from 'vue';
7
6
  import { HTMLAttributes } from 'vue';
8
7
  import { InputHTMLAttributes } from 'vue';
@@ -129,6 +128,10 @@ declare type __VLS_Prettify_24<T> = {
129
128
  [K in keyof T]: T[K];
130
129
  } & {};
131
130
 
131
+ declare type __VLS_Prettify_25<T> = {
132
+ [K in keyof T]: T[K];
133
+ } & {};
134
+
132
135
  declare type __VLS_Prettify_3<T> = {
133
136
  [K in keyof T]: T[K];
134
137
  } & {};
@@ -484,6 +487,12 @@ declare type __VLS_WithDefaults_24<P, D> = {
484
487
  }> : P[K];
485
488
  };
486
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
+
487
496
  declare type __VLS_WithDefaults_3<P, D> = {
488
497
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify_3<P[K] & {
489
498
  default: D[K];
@@ -660,6 +669,14 @@ declare interface AccordionProps {
660
669
  * @type boolean
661
670
  */
662
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;
663
680
  }
664
681
 
665
682
  declare interface BadgeProps {
@@ -739,6 +756,13 @@ declare interface BadgeProps {
739
756
  * <Badge wrapperClass="text-red-500" />
740
757
  */
741
758
  wrapperClass?: string | string[];
759
+ /**
760
+ * Id of the Badge
761
+ * @type { string }
762
+ * @example
763
+ * <Badge id="custom-badge" />
764
+ */
765
+ id?: string;
742
766
  }
743
767
 
744
768
  declare interface BreadcrumbItem {
@@ -760,7 +784,7 @@ declare function handleSelect(): void;
760
784
 
761
785
  declare function handleToggle(): void;
762
786
 
763
- declare function handleUpdate(extraData?: any): void;
787
+ declare function handleUpdate(): void;
764
788
 
765
789
  declare function hideTooltip(e?: Event | null): void;
766
790
 
@@ -813,6 +837,14 @@ declare interface IProps {
813
837
  * <Avatar type="text" text="John Doe" />
814
838
  */
815
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;
816
848
  }
817
849
 
818
850
  declare interface IProps_2 {
@@ -900,6 +932,14 @@ declare interface IProps_3 {
900
932
  * <Snackbar top />
901
933
  */
902
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;
903
943
  }
904
944
 
905
945
  declare interface IProps_4 {
@@ -1026,6 +1066,14 @@ declare interface IProps_5 {
1026
1066
  * <Tabs scrollable />
1027
1067
  */
1028
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;
1029
1077
  }
1030
1078
 
1031
1079
  declare interface IProps_6 {
@@ -1101,6 +1149,14 @@ declare interface IProps_6 {
1101
1149
  }
1102
1150
 
1103
1151
  declare interface IProps_7 {
1152
+ /**
1153
+ * ID of the tooltip
1154
+ * @type string
1155
+ * @default 'r-tooltip'
1156
+ * @example
1157
+ * <Tooltip id="r-tooltip" />
1158
+ */
1159
+ id?: string;
1104
1160
  /**
1105
1161
  * Placement of the tooltip
1106
1162
  * @type Placements
@@ -1248,6 +1304,13 @@ declare interface IProps_7 {
1248
1304
  * <Tooltip persistent />
1249
1305
  */
1250
1306
  persistent?: boolean;
1307
+ /**
1308
+ * Type of the tooltip
1309
+ * @type Theme | string
1310
+ * @default Theme.Tooltip
1311
+ * @example
1312
+ * <Tooltip type="dropdown" />
1313
+ */
1251
1314
  type?: Theme | string;
1252
1315
  }
1253
1316
 
@@ -1316,6 +1379,14 @@ declare interface ItemGroupProps {
1316
1379
  * <RItemGroup :multiple="true" />
1317
1380
  */
1318
1381
  multiple?: boolean;
1382
+ /**
1383
+ * Id of the ItemGroup
1384
+ * @type string
1385
+ * @default 'r-item-group'
1386
+ * @example
1387
+ * <RItemGroup id="custom-item-group" />
1388
+ */
1389
+ id?: string;
1319
1390
  }
1320
1391
 
1321
1392
  declare interface ItemProps {
@@ -1335,6 +1406,14 @@ declare interface ItemProps {
1335
1406
  * <RItem selectedClass="bg-blue-500 text-white" />
1336
1407
  */
1337
1408
  selectedClass?: string | string[];
1409
+ /**
1410
+ * Id of the Item
1411
+ * @type string
1412
+ * @default 'r-item'
1413
+ * @example
1414
+ * <RItem id="custom-item" />
1415
+ */
1416
+ id?: string;
1338
1417
  }
1339
1418
 
1340
1419
  declare interface LabelProps {
@@ -1471,6 +1550,14 @@ declare interface ModalProps {
1471
1550
  * <Modal :modelValue="true" :allowBodyScroll="true" />
1472
1551
  */
1473
1552
  allowBodyScroll?: boolean;
1553
+ /**
1554
+ * Id of the Modal
1555
+ * @type string
1556
+ * @default 'r-modal'
1557
+ * @example
1558
+ * <Modal id="custom-modal" />
1559
+ */
1560
+ id?: string;
1474
1561
  }
1475
1562
 
1476
1563
  declare function onClick(e: MouseEvent): void;
@@ -1535,6 +1622,14 @@ declare interface PaginationProps {
1535
1622
  * @type string
1536
1623
  */
1537
1624
  infoText?: string;
1625
+ /**
1626
+ * Id of the Pagination
1627
+ * @type string
1628
+ * @default 'r-pagination'
1629
+ * @example
1630
+ * <Pagination id="custom-pagination" />
1631
+ */
1632
+ id?: string;
1538
1633
  }
1539
1634
 
1540
1635
  declare enum Placement {
@@ -1557,6 +1652,14 @@ declare type Placements = 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 't
1557
1652
  declare interface ProgressBarProps {
1558
1653
  value: number;
1559
1654
  height?: number;
1655
+ /**
1656
+ * Id of the ProgressBar
1657
+ * @type string
1658
+ * @default 'r-progressbar'
1659
+ * @example
1660
+ * <ProgressBar id="custom-progressbar" />
1661
+ */
1662
+ id?: string;
1560
1663
  }
1561
1664
 
1562
1665
  declare interface Props {
@@ -1608,6 +1711,14 @@ declare interface Props {
1608
1711
  * <Alert block />
1609
1712
  */
1610
1713
  block?: boolean;
1714
+ /**
1715
+ * Id of the Alert
1716
+ * @type string
1717
+ * @default ''
1718
+ * @example
1719
+ * <Alert id="custom-alert" />
1720
+ */
1721
+ id?: string;
1611
1722
  }
1612
1723
 
1613
1724
  declare interface Props_2 {
@@ -1691,6 +1802,14 @@ declare interface Props_2 {
1691
1802
  * <Button block />
1692
1803
  */
1693
1804
  block?: boolean;
1805
+ /**
1806
+ * Id of the Button
1807
+ * @type string
1808
+ * @default 'r-button'
1809
+ * @example
1810
+ * <Button id="custom-button" />
1811
+ */
1812
+ id?: string;
1694
1813
  }
1695
1814
 
1696
1815
  declare interface Props_3 {
@@ -1830,6 +1949,14 @@ declare interface Props_4 {
1830
1949
  * <Chip noWrap />
1831
1950
  */
1832
1951
  noWrap?: boolean;
1952
+ /**
1953
+ * Id of the Chip
1954
+ * @type string
1955
+ * @default 'r-chip'
1956
+ * @example
1957
+ * <Chip id="custom-chip" />
1958
+ */
1959
+ id?: string;
1833
1960
  }
1834
1961
 
1835
1962
  declare interface Props_5 {
@@ -2080,7 +2207,13 @@ declare interface Props_7 {
2080
2207
  value?: string;
2081
2208
  }
2082
2209
 
2083
- export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_TypePropsToRuntimeProps<AccordionProps>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionProps>>>, {}, {}>, {
2210
+ export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionProps>, {
2211
+ id: string;
2212
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<AccordionProps>, {
2213
+ id: string;
2214
+ }>>>, {
2215
+ id: string;
2216
+ }, {}>, {
2084
2217
  title?(_: {
2085
2218
  accordion: Accordion & {
2086
2219
  title: string;
@@ -2090,6 +2223,7 @@ export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_T
2090
2223
  };
2091
2224
  }): any;
2092
2225
  icon?(_: {
2226
+ id: string;
2093
2227
  item: Accordion & {
2094
2228
  title: string;
2095
2229
  content: string;
@@ -2099,6 +2233,7 @@ export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_T
2099
2233
  open: boolean;
2100
2234
  }): any;
2101
2235
  content?(_: {
2236
+ id: string;
2102
2237
  accordion: Accordion & {
2103
2238
  title: string;
2104
2239
  content: string;
@@ -2108,28 +2243,31 @@ export declare const RAccordion: __VLS_WithTemplateSlots<DefineComponent<__VLS_T
2108
2243
  }): any;
2109
2244
  }>;
2110
2245
 
2111
- export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps_2<Props>, {
2246
+ export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<Props>, {
2112
2247
  type: string;
2113
2248
  title: string;
2114
2249
  variant: string;
2115
2250
  description: string;
2251
+ id: string;
2116
2252
  closable: boolean;
2117
2253
  block: boolean;
2118
2254
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2119
2255
  close: (...args: any[]) => void;
2120
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps_2<Props>, {
2256
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_2<Props>, {
2121
2257
  type: string;
2122
2258
  title: string;
2123
2259
  variant: string;
2124
2260
  description: string;
2261
+ id: string;
2125
2262
  closable: boolean;
2126
2263
  block: boolean;
2127
2264
  }>>> & {
2128
2265
  onClose?: ((...args: any[]) => any) | undefined;
2129
2266
  }, {
2267
+ id: string;
2130
2268
  type: "success" | "error" | "warning" | "info";
2131
2269
  title: string;
2132
- variant: "ghost" | "solid" | "outline";
2270
+ variant: "ghost" | "outline" | "solid";
2133
2271
  block: boolean;
2134
2272
  description: string;
2135
2273
  closable: boolean;
@@ -2142,30 +2280,33 @@ export declare const RAlert: __VLS_WithTemplateSlots_2<DefineComponent<__VLS_Wit
2142
2280
  }): any;
2143
2281
  }>;
2144
2282
 
2145
- export declare const RAvatar: DefineComponent<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_3<IProps>, {
2283
+ export declare const RAvatar: DefineComponent<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<IProps>, {
2146
2284
  type: string;
2147
2285
  size: string;
2148
2286
  src: string;
2149
2287
  alt: string;
2150
2288
  online: boolean;
2151
2289
  text: string;
2152
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_2<__VLS_TypePropsToRuntimeProps_3<IProps>, {
2290
+ id: string;
2291
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_3<IProps>, {
2153
2292
  type: string;
2154
2293
  size: string;
2155
2294
  src: string;
2156
2295
  alt: string;
2157
2296
  online: boolean;
2158
2297
  text: string;
2298
+ id: string;
2159
2299
  }>>>, {
2160
2300
  size: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl";
2301
+ id: string;
2161
2302
  type: "image" | "text";
2162
2303
  text: string;
2163
- alt: string;
2164
- src: string;
2165
2304
  online: boolean;
2305
+ src: string;
2306
+ alt: string;
2166
2307
  }, {}>;
2167
2308
 
2168
- export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
2309
+ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
2169
2310
  variant: string;
2170
2311
  placement: string;
2171
2312
  overlap: boolean;
@@ -2176,9 +2317,10 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Wit
2176
2317
  class: string;
2177
2318
  contentClass: string;
2178
2319
  wrapperClass: string;
2320
+ id: string;
2179
2321
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2180
2322
  click: (...args: any[]) => void;
2181
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_3<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
2323
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_4<BadgeProps>, {
2182
2324
  variant: string;
2183
2325
  placement: string;
2184
2326
  overlap: boolean;
@@ -2189,9 +2331,11 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Wit
2189
2331
  class: string;
2190
2332
  contentClass: string;
2191
2333
  wrapperClass: string;
2334
+ id: string;
2192
2335
  }>>> & {
2193
2336
  onClick?: ((...args: any[]) => any) | undefined;
2194
2337
  }, {
2338
+ id: string;
2195
2339
  class: string | string[];
2196
2340
  variant: "primary" | "success" | "error" | "warning" | "neutral";
2197
2341
  hover: boolean;
@@ -2203,30 +2347,39 @@ export declare const RBadge: __VLS_WithTemplateSlots_3<DefineComponent<__VLS_Wit
2203
2347
  contentClass: string | string[];
2204
2348
  wrapperClass: string | string[];
2205
2349
  }, {}>, {
2206
- default?(_: {}): any;
2350
+ default?(_: {
2351
+ id: string;
2352
+ }): any;
2207
2353
  }>;
2208
2354
 
2209
- export declare const RBreadcrumb: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_20<{
2355
+ export declare const RBreadcrumb: __VLS_WithTemplateSlots_15<DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_20<{
2210
2356
  items: BreadcrumbItem[];
2211
2357
  seperator?: string | undefined;
2358
+ id?: string | undefined;
2212
2359
  }>, {
2213
2360
  items: () => BreadcrumbItem[];
2214
2361
  seperator: string;
2215
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_20<{
2362
+ id: string;
2363
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_20<{
2216
2364
  items: BreadcrumbItem[];
2217
2365
  seperator?: string | undefined;
2366
+ id?: string | undefined;
2218
2367
  }>, {
2219
2368
  items: () => BreadcrumbItem[];
2220
2369
  seperator: string;
2370
+ id: string;
2221
2371
  }>>>, {
2372
+ id: string;
2222
2373
  items: BreadcrumbItem[];
2223
2374
  seperator: string;
2224
2375
  }, {}>, {
2225
2376
  "item-icon"?(_: {}): any;
2226
- "custom-seperator"?(_: {}): any;
2377
+ "custom-seperator"?(_: {
2378
+ id: string;
2379
+ }): any;
2227
2380
  }>;
2228
2381
 
2229
- export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_5<Props_2>, {
2382
+ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_5<Props_2>, {
2230
2383
  variant: string;
2231
2384
  loading: boolean;
2232
2385
  disabled: boolean;
@@ -2236,9 +2389,10 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
2236
2389
  size: string;
2237
2390
  height: string;
2238
2391
  block: boolean;
2392
+ id: string;
2239
2393
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2240
2394
  click: (...args: any[]) => void;
2241
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_4<__VLS_TypePropsToRuntimeProps_5<Props_2>, {
2395
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_5<Props_2>, {
2242
2396
  variant: string;
2243
2397
  loading: boolean;
2244
2398
  disabled: boolean;
@@ -2248,11 +2402,13 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
2248
2402
  size: string;
2249
2403
  height: string;
2250
2404
  block: boolean;
2405
+ id: string;
2251
2406
  }>>> & {
2252
2407
  onClick?: ((...args: any[]) => any) | undefined;
2253
2408
  }, {
2254
2409
  height: string;
2255
2410
  size: ButtonSize;
2411
+ id: string;
2256
2412
  variant: ButtonType;
2257
2413
  disabled: boolean;
2258
2414
  prependIcon: string;
@@ -2265,6 +2421,7 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
2265
2421
  onlyIcon: boolean;
2266
2422
  }): any;
2267
2423
  default?(_: {
2424
+ id: string;
2268
2425
  disabled: boolean;
2269
2426
  }): any;
2270
2427
  append?(_: {
@@ -2272,7 +2429,7 @@ export declare const RButton: __VLS_WithTemplateSlots_4<DefineComponent<__VLS_Wi
2272
2429
  }): any;
2273
2430
  }>;
2274
2431
 
2275
- export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_6<Props_3>, {
2432
+ export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<Props_3>, {
2276
2433
  id: string;
2277
2434
  label: string;
2278
2435
  indeterminate: boolean;
@@ -2282,7 +2439,7 @@ export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_5<__VLS_TypeP
2282
2439
  modelValue: boolean;
2283
2440
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2284
2441
  "update:modelValue": (...args: any[]) => void;
2285
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_5<__VLS_TypePropsToRuntimeProps_6<Props_3>, {
2442
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_6<Props_3>, {
2286
2443
  id: string;
2287
2444
  label: string;
2288
2445
  indeterminate: boolean;
@@ -2293,16 +2450,16 @@ export declare const RCheckbox: DefineComponent<__VLS_WithDefaults_5<__VLS_TypeP
2293
2450
  }>>> & {
2294
2451
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2295
2452
  }, {
2453
+ id: string | undefined;
2296
2454
  label: string;
2297
2455
  disabled: boolean | "true" | "false";
2298
- id: string | undefined;
2299
2456
  modelValue: any[] | Set<any> | (boolean | "true" | "false");
2300
2457
  errorMsg: string;
2301
2458
  hint: string;
2302
2459
  indeterminate: boolean;
2303
2460
  }, {}>;
2304
2461
 
2305
- export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_7<Props_4>, {
2462
+ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_7<Props_4>, {
2306
2463
  variant: string;
2307
2464
  label: string;
2308
2465
  disabled: boolean;
@@ -2311,10 +2468,11 @@ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_With
2311
2468
  ghost: boolean;
2312
2469
  clearable: boolean;
2313
2470
  noWrap: boolean;
2471
+ id: string;
2314
2472
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2315
2473
  "click:chip": (...args: any[]) => void;
2316
2474
  "click:close": (...args: any[]) => void;
2317
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_6<__VLS_TypePropsToRuntimeProps_7<Props_4>, {
2475
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_7<Props_4>, {
2318
2476
  variant: string;
2319
2477
  label: string;
2320
2478
  disabled: boolean;
@@ -2323,10 +2481,12 @@ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_With
2323
2481
  ghost: boolean;
2324
2482
  clearable: boolean;
2325
2483
  noWrap: boolean;
2484
+ id: string;
2326
2485
  }>>> & {
2327
2486
  "onClick:chip"?: ((...args: any[]) => any) | undefined;
2328
2487
  "onClick:close"?: ((...args: any[]) => any) | undefined;
2329
2488
  }, {
2489
+ id: string;
2330
2490
  label: string | number;
2331
2491
  variant: "primary" | "secondary" | "success" | "error" | "warning" | "info";
2332
2492
  disabled: boolean;
@@ -2344,7 +2504,7 @@ export declare const RChip: __VLS_WithTemplateSlots_5<DefineComponent<__VLS_With
2344
2504
  }): any;
2345
2505
  }>;
2346
2506
 
2347
- export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
2507
+ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
2348
2508
  options: () => never[];
2349
2509
  modelValue: any;
2350
2510
  placeholder: string;
@@ -2372,11 +2532,14 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2372
2532
  selectAllText: string;
2373
2533
  disableDeselect: boolean;
2374
2534
  maxVisibleChips: number;
2535
+ innerSearch: boolean;
2536
+ searchLoading: boolean;
2375
2537
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2538
+ search: (...args: any[]) => void;
2376
2539
  "update:modelValue": (...args: any[]) => void;
2377
2540
  clear: (...args: any[]) => void;
2378
2541
  removeOption: (...args: any[]) => void;
2379
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_7<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
2542
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_8<SelectProps>, {
2380
2543
  options: () => never[];
2381
2544
  modelValue: any;
2382
2545
  placeholder: string;
@@ -2404,18 +2567,21 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2404
2567
  selectAllText: string;
2405
2568
  disableDeselect: boolean;
2406
2569
  maxVisibleChips: number;
2570
+ innerSearch: boolean;
2571
+ searchLoading: boolean;
2407
2572
  }>>> & {
2573
+ onSearch?: ((...args: any[]) => any) | undefined;
2408
2574
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2409
2575
  onClear?: ((...args: any[]) => any) | undefined;
2410
2576
  onRemoveOption?: ((...args: any[]) => any) | undefined;
2411
2577
  }, {
2578
+ id: string;
2412
2579
  disabled: boolean;
2413
2580
  prependIcon: string;
2414
2581
  appendIcon: string;
2415
2582
  clearable: boolean;
2416
2583
  options: any;
2417
2584
  tooltipClass: string;
2418
- id: string;
2419
2585
  modelValue: any;
2420
2586
  placeholder: string;
2421
2587
  chips: boolean;
@@ -2435,14 +2601,18 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2435
2601
  selectAllText: string;
2436
2602
  disableDeselect: boolean;
2437
2603
  maxVisibleChips: number;
2604
+ innerSearch: boolean;
2605
+ searchLoading: boolean;
2438
2606
  }, {}>, {
2439
2607
  prepend?(_: {
2608
+ id: string;
2440
2609
  active: boolean;
2441
2610
  disabled: boolean;
2442
2611
  error: number;
2443
2612
  loading: boolean;
2444
2613
  }): any;
2445
2614
  selection?(_: {
2615
+ id: string;
2446
2616
  removeOption: typeof removeOption;
2447
2617
  selected: {
2448
2618
  [x: string]: any;
@@ -2453,16 +2623,19 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2453
2623
  }[];
2454
2624
  }): any;
2455
2625
  "remaining-count"?(_: {
2626
+ id: string;
2456
2627
  count: number;
2457
2628
  }): any;
2458
2629
  clearable?(_: {}): any;
2459
2630
  append?(_: {
2631
+ id: string;
2460
2632
  active: boolean;
2461
2633
  disabled: boolean;
2462
2634
  error: number;
2463
2635
  loading: boolean;
2464
2636
  }): any;
2465
2637
  option?(_: {
2638
+ id: string;
2466
2639
  disabled: boolean | undefined;
2467
2640
  isSelected: boolean | {
2468
2641
  [x: string]: any;
@@ -2474,6 +2647,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2474
2647
  item: Option_2;
2475
2648
  }): any;
2476
2649
  "option-prepend"?(_: {
2650
+ id: string;
2477
2651
  disabled: boolean | undefined;
2478
2652
  isSelected: boolean | {
2479
2653
  [x: string]: any;
@@ -2484,6 +2658,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2484
2658
  } | undefined;
2485
2659
  }): any;
2486
2660
  "option-append"?(_: {
2661
+ id: string;
2487
2662
  disabled: boolean | undefined;
2488
2663
  isSelected: boolean | {
2489
2664
  [x: string]: any;
@@ -2493,6 +2668,7 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2493
2668
  disabled?: boolean | undefined;
2494
2669
  } | undefined;
2495
2670
  }): any;
2671
+ pagination?(_: {}): any;
2496
2672
  "not-options"?(_: {}): any;
2497
2673
  }>;
2498
2674
 
@@ -2502,33 +2678,39 @@ export declare const RDropdown: __VLS_WithTemplateSlots_6<DefineComponent<__VLS_
2502
2678
  */
2503
2679
  declare function removeOption(e: MouseEvent | KeyboardEvent, option: Option_2, updatePosition: any): void;
2504
2680
 
2505
- export declare const RIcon: DefineComponent<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_9<IProps_2>, {
2681
+ export declare const RIcon: DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_9<IProps_2>, {
2506
2682
  name: string;
2507
2683
  size: number;
2508
2684
  viewBox: string;
2509
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_8<__VLS_TypePropsToRuntimeProps_9<IProps_2>, {
2685
+ id: string;
2686
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_9<IProps_2>, {
2510
2687
  name: string;
2511
2688
  size: number;
2512
2689
  viewBox: string;
2690
+ id: string;
2513
2691
  }>>>, {
2514
2692
  name: string | undefined;
2515
2693
  viewBox: string;
2516
2694
  size: string | number;
2517
2695
  }, {}>;
2518
2696
 
2519
- export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_24<ItemProps>, {
2697
+ export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_24<ItemProps>, {
2520
2698
  disabled: boolean;
2521
2699
  selectedClass: string;
2522
2700
  value: null;
2523
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_24<ItemProps>, {
2701
+ id: string;
2702
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_24<ItemProps>, {
2524
2703
  disabled: boolean;
2525
2704
  selectedClass: string;
2526
2705
  value: null;
2706
+ id: string;
2527
2707
  }>>>, {
2708
+ id: string;
2528
2709
  value: any;
2529
2710
  selectedClass: string | string[];
2530
2711
  }, {}>, {
2531
2712
  default?(_: {
2713
+ id: string;
2532
2714
  disabled: boolean;
2533
2715
  isSelected: boolean;
2534
2716
  select: typeof handleSelect;
@@ -2537,56 +2719,62 @@ export declare const RItem: __VLS_WithTemplateSlots_18<DefineComponent<__VLS_Wit
2537
2719
  }): any;
2538
2720
  }>;
2539
2721
 
2540
- export declare const RItemGroup: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_23<ItemGroupProps>, {
2722
+ export declare const RItemGroup: __VLS_WithTemplateSlots_17<DefineComponent<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_23<ItemGroupProps>, {
2541
2723
  disabled: boolean;
2542
2724
  mandatory: boolean;
2543
2725
  max: number;
2544
2726
  as: string;
2545
2727
  selectedClass: string;
2546
2728
  modelValue: () => number[];
2729
+ id: string;
2547
2730
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2548
2731
  "update:modelValue": (...args: any[]) => void;
2549
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_23<ItemGroupProps>, {
2732
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_23<__VLS_TypePropsToRuntimeProps_23<ItemGroupProps>, {
2550
2733
  disabled: boolean;
2551
2734
  mandatory: boolean;
2552
2735
  max: number;
2553
2736
  as: string;
2554
2737
  selectedClass: string;
2555
2738
  modelValue: () => number[];
2739
+ id: string;
2556
2740
  }>>> & {
2557
2741
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2558
2742
  }, {
2743
+ id: string;
2559
2744
  disabled: boolean;
2560
2745
  modelValue: string[] | number[];
2561
- max: number;
2562
2746
  as: string;
2563
2747
  selectedClass: string | string[];
2564
2748
  mandatory: boolean;
2749
+ max: number;
2565
2750
  }, {}>, {
2566
2751
  default?(_: {
2752
+ id: string;
2567
2753
  isSelected: typeof isSelected;
2568
2754
  select: typeof select;
2569
2755
  selected: string[] | number[];
2570
2756
  }): any;
2571
2757
  }>;
2572
2758
 
2573
- export declare const RLabel: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_10<LabelProps>, {
2759
+ export declare const RLabel: __VLS_WithTemplateSlots_7<DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<LabelProps>, {
2574
2760
  id: string;
2575
2761
  for: string;
2576
2762
  text: string;
2577
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_9<__VLS_TypePropsToRuntimeProps_10<LabelProps>, {
2763
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_10<LabelProps>, {
2578
2764
  id: string;
2579
2765
  for: string;
2580
2766
  text: string;
2581
2767
  }>>>, {
2582
- text: string | number;
2583
2768
  id: string | undefined;
2769
+ text: string | number;
2584
2770
  for: string | undefined;
2585
2771
  }, {}>, {
2586
- default?(_: {}): any;
2772
+ default?(_: {
2773
+ id: string;
2774
+ }): any;
2587
2775
  }>;
2588
2776
 
2589
- export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_11<ModalProps>, {
2777
+ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_11<ModalProps>, {
2590
2778
  modelValue: boolean;
2591
2779
  block: boolean;
2592
2780
  title: string;
@@ -2600,9 +2788,10 @@ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Wit
2600
2788
  overlayClass: string;
2601
2789
  style: string;
2602
2790
  allowBodyScroll: boolean;
2791
+ id: string;
2603
2792
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2604
2793
  "update:modelValue": (...args: any[]) => void;
2605
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_10<__VLS_TypePropsToRuntimeProps_11<ModalProps>, {
2794
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_11<ModalProps>, {
2606
2795
  modelValue: boolean;
2607
2796
  block: boolean;
2608
2797
  title: string;
@@ -2616,30 +2805,40 @@ export declare const RModal: __VLS_WithTemplateSlots_8<DefineComponent<__VLS_Wit
2616
2805
  overlayClass: string;
2617
2806
  style: string;
2618
2807
  allowBodyScroll: boolean;
2808
+ id: string;
2619
2809
  }>>> & {
2620
2810
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2621
2811
  }, {
2622
2812
  width: string;
2623
2813
  height: string;
2814
+ id: string;
2624
2815
  style: string;
2625
2816
  title: string;
2626
2817
  class: string | string[];
2627
2818
  outsideClick: boolean;
2628
2819
  block: boolean;
2629
2820
  modelValue: boolean;
2630
- description: string;
2631
2821
  icon: string;
2822
+ description: string;
2632
2823
  clearContent: boolean;
2633
2824
  overlayClass: string | string[];
2634
2825
  allowBodyScroll: boolean;
2635
2826
  }, {}>, {
2636
- wrapper?(_: {}): any;
2637
- header?(_: {}): any;
2638
- default?(_: {}): any;
2639
- actions?(_: {}): any;
2827
+ wrapper?(_: {
2828
+ id: string;
2829
+ }): any;
2830
+ header?(_: {
2831
+ id: string;
2832
+ }): any;
2833
+ default?(_: {
2834
+ id: string;
2835
+ }): any;
2836
+ actions?(_: {
2837
+ id: string;
2838
+ }): any;
2640
2839
  }>;
2641
2840
 
2642
- export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
2841
+ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
2643
2842
  page: number;
2644
2843
  perPage: number;
2645
2844
  totalItems: number;
@@ -2647,11 +2846,12 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
2647
2846
  itemsPerPageText: string;
2648
2847
  position: string;
2649
2848
  infoText: string;
2849
+ id: string;
2650
2850
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2651
2851
  "update:page": (...args: any[]) => void;
2652
2852
  "update:perPage": (...args: any[]) => void;
2653
2853
  "update:info": (...args: any[]) => void;
2654
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
2854
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
2655
2855
  page: number;
2656
2856
  perPage: number;
2657
2857
  totalItems: number;
@@ -2659,11 +2859,13 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
2659
2859
  itemsPerPageText: string;
2660
2860
  position: string;
2661
2861
  infoText: string;
2862
+ id: string;
2662
2863
  }>>> & {
2663
2864
  "onUpdate:page"?: ((...args: any[]) => any) | undefined;
2664
2865
  "onUpdate:perPage"?: ((...args: any[]) => any) | undefined;
2665
2866
  "onUpdate:info"?: ((...args: any[]) => any) | undefined;
2666
2867
  }, {
2868
+ id: string;
2667
2869
  page: number;
2668
2870
  perPage: number;
2669
2871
  totalItems: number;
@@ -2672,24 +2874,35 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
2672
2874
  position: string;
2673
2875
  infoText: string;
2674
2876
  }, {}>, {
2675
- first?(_: {}): any;
2676
- prev?(_: {}): any;
2677
- next?(_: {}): any;
2678
- last?(_: {}): any;
2877
+ first?(_: {
2878
+ id: string;
2879
+ }): any;
2880
+ prev?(_: {
2881
+ id: string;
2882
+ }): any;
2883
+ next?(_: {
2884
+ id: string;
2885
+ }): any;
2886
+ last?(_: {
2887
+ id: string;
2888
+ }): any;
2679
2889
  }>;
2680
2890
 
2681
- export declare const RProgressbar: DefineComponent<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_22<ProgressBarProps>, {
2891
+ export declare const RProgressbar: DefineComponent<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_22<ProgressBarProps>, {
2682
2892
  value: number;
2683
2893
  height: number;
2684
- }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_21<__VLS_TypePropsToRuntimeProps_22<ProgressBarProps>, {
2894
+ id: string;
2895
+ }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_22<__VLS_TypePropsToRuntimeProps_22<ProgressBarProps>, {
2685
2896
  value: number;
2686
2897
  height: number;
2898
+ id: string;
2687
2899
  }>>>, {
2688
2900
  height: number;
2901
+ id: string;
2689
2902
  value: number;
2690
2903
  }, {}>;
2691
2904
 
2692
- export declare const RRadio: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_25<Props_7>, {
2905
+ export declare const RRadio: DefineComponent<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_25<Props_7>, {
2693
2906
  id: string;
2694
2907
  modelValue: boolean;
2695
2908
  name: string;
@@ -2701,7 +2914,7 @@ export declare const RRadio: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePro
2701
2914
  value: string;
2702
2915
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2703
2916
  "update:modelValue": (...args: any[]) => void;
2704
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_24<__VLS_TypePropsToRuntimeProps_25<Props_7>, {
2917
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_25<__VLS_TypePropsToRuntimeProps_25<Props_7>, {
2705
2918
  id: string;
2706
2919
  modelValue: boolean;
2707
2920
  name: string;
@@ -2715,27 +2928,30 @@ export declare const RRadio: DefineComponent<__VLS_WithDefaults_24<__VLS_TypePro
2715
2928
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2716
2929
  }, {
2717
2930
  name: string;
2931
+ id: string;
2718
2932
  label: string;
2719
2933
  title: string;
2720
2934
  disabled: boolean;
2721
2935
  value: string;
2722
- id: string;
2723
2936
  modelValue: boolean;
2724
2937
  errorMsg: string;
2725
2938
  hint: string;
2726
2939
  }, {}>;
2727
2940
 
2728
- export declare const RSidebar: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_12<RSidebarProps>, {
2941
+ export declare const RSidebar: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_12<RSidebarProps>, {
2729
2942
  modelValue: boolean;
2730
2943
  showTrigger: boolean;
2944
+ id: string;
2731
2945
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2732
2946
  "update:modelValue": (...args: any[]) => void;
2733
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_11<__VLS_TypePropsToRuntimeProps_12<RSidebarProps>, {
2947
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_12<RSidebarProps>, {
2734
2948
  modelValue: boolean;
2735
2949
  showTrigger: boolean;
2950
+ id: string;
2736
2951
  }>>> & {
2737
2952
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2738
2953
  }, {
2954
+ id: string;
2739
2955
  modelValue: boolean;
2740
2956
  showTrigger: boolean;
2741
2957
  }, {}>, {
@@ -2743,6 +2959,7 @@ export declare const RSidebar: __VLS_WithTemplateSlots_9<DefineComponent<__VLS_W
2743
2959
  open: boolean;
2744
2960
  }): any;
2745
2961
  trigger?(_: {
2962
+ id: string;
2746
2963
  open: boolean;
2747
2964
  }): any;
2748
2965
  }>;
@@ -2753,39 +2970,56 @@ declare interface RSidebarProps {
2753
2970
  class?: string | string[];
2754
2971
  triggerClass?: string | string[];
2755
2972
  wrapperClass?: string | string[];
2973
+ /**
2974
+ * Id of the Sidebar
2975
+ * @type string
2976
+ * @default 'r-sidebar'
2977
+ * @example
2978
+ * <Sidebar id="custom-sidebar" />
2979
+ */
2980
+ id?: string;
2756
2981
  }
2757
2982
 
2758
- export declare const RSnackbar: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_13<IProps_3>, {
2983
+ export declare const RSnackbar: __VLS_WithTemplateSlots_10<DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_13<IProps_3>, {
2759
2984
  text: string;
2760
2985
  closable: boolean;
2761
2986
  left: boolean;
2762
2987
  modelValue: boolean;
2763
2988
  timeout: number;
2989
+ id: string;
2764
2990
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2765
2991
  "update:modelValue": (...args: any[]) => void;
2766
2992
  action: (...args: any[]) => void;
2767
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_12<__VLS_TypePropsToRuntimeProps_13<IProps_3>, {
2993
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_13<IProps_3>, {
2768
2994
  text: string;
2769
2995
  closable: boolean;
2770
2996
  left: boolean;
2771
2997
  modelValue: boolean;
2772
2998
  timeout: number;
2999
+ id: string;
2773
3000
  }>>> & {
2774
3001
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2775
3002
  onAction?: ((...args: any[]) => any) | undefined;
2776
3003
  }, {
3004
+ id: string;
2777
3005
  text: string;
2778
3006
  left: boolean;
2779
3007
  modelValue: boolean;
2780
3008
  closable: boolean;
2781
3009
  timeout: number;
2782
3010
  }, {}>, {
2783
- icon?(_: {}): any;
2784
- default?(_: {}): any;
2785
- close?(_: {}): any;
3011
+ icon?(_: {
3012
+ id: string;
3013
+ }): any;
3014
+ default?(_: {
3015
+ id: string;
3016
+ }): any;
3017
+ close?(_: {
3018
+ id: string;
3019
+ }): any;
2786
3020
  }>;
2787
3021
 
2788
- export declare const RSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_14<Props_5>, {
3022
+ export declare const RSwitch: DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_14<Props_5>, {
2789
3023
  id: string;
2790
3024
  modelValue: boolean;
2791
3025
  size: string;
@@ -2795,7 +3029,7 @@ export declare const RSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePr
2795
3029
  errorMsg: string;
2796
3030
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2797
3031
  "update:modelValue": (...args: any[]) => void;
2798
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_13<__VLS_TypePropsToRuntimeProps_14<Props_5>, {
3032
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_14<Props_5>, {
2799
3033
  id: string;
2800
3034
  modelValue: boolean;
2801
3035
  size: string;
@@ -2807,15 +3041,15 @@ export declare const RSwitch: DefineComponent<__VLS_WithDefaults_13<__VLS_TypePr
2807
3041
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2808
3042
  }, {
2809
3043
  size: "small" | "medium" | "large";
3044
+ id: string | undefined;
2810
3045
  label: string;
2811
3046
  disabled: boolean | "true" | "false";
2812
- id: string | undefined;
2813
3047
  modelValue: any[] | Set<any> | (boolean | "true" | "false");
2814
3048
  errorMsg: string;
2815
3049
  hint: string;
2816
3050
  }, {}>;
2817
3051
 
2818
- export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_15<IProps_4>, {
3052
+ export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_15<IProps_4>, {
2819
3053
  label: string;
2820
3054
  variant: TabItemVariants;
2821
3055
  prependIcon: string;
@@ -2827,7 +3061,7 @@ export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_
2827
3061
  color: string;
2828
3062
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2829
3063
  "update:modelValue": (...args: any[]) => void;
2830
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_14<__VLS_TypePropsToRuntimeProps_15<IProps_4>, {
3064
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_15<IProps_4>, {
2831
3065
  label: string;
2832
3066
  variant: TabItemVariants;
2833
3067
  prependIcon: string;
@@ -2863,23 +3097,26 @@ export declare const RTabItem: __VLS_WithTemplateSlots_11<DefineComponent<__VLS_
2863
3097
  }): any;
2864
3098
  }>;
2865
3099
 
2866
- export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
3100
+ export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
2867
3101
  tabs: () => never[];
2868
3102
  block: boolean;
2869
3103
  modelValue: string;
2870
3104
  tile: boolean;
2871
3105
  scrollable: boolean;
3106
+ id: string;
2872
3107
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2873
3108
  "update:modelValue": (...args: any[]) => void;
2874
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_15<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
3109
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_16<IProps_5>, {
2875
3110
  tabs: () => never[];
2876
3111
  block: boolean;
2877
3112
  modelValue: string;
2878
3113
  tile: boolean;
2879
3114
  scrollable: boolean;
3115
+ id: string;
2880
3116
  }>>> & {
2881
3117
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2882
3118
  }, {
3119
+ id: string;
2883
3120
  block: boolean;
2884
3121
  modelValue: string | number;
2885
3122
  tile: boolean;
@@ -2887,11 +3124,12 @@ export declare const RTabs: __VLS_WithTemplateSlots_12<DefineComponent<__VLS_Wit
2887
3124
  scrollable: boolean;
2888
3125
  }, {}>, {
2889
3126
  default?(_: {
3127
+ id: string;
2890
3128
  activeTab: string | number;
2891
3129
  }): any;
2892
3130
  }>;
2893
3131
 
2894
- export declare const RTextArea: DefineComponent<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_17<IProps_6>, {
3132
+ export declare const RTextArea: DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_17<IProps_6>, {
2895
3133
  id: string;
2896
3134
  errorMsg: string;
2897
3135
  disabled: boolean;
@@ -2901,7 +3139,7 @@ export declare const RTextArea: DefineComponent<__VLS_WithDefaults_16<__VLS_Type
2901
3139
  hint: string;
2902
3140
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2903
3141
  "update:modelValue": (...args: any[]) => void;
2904
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_16<__VLS_TypePropsToRuntimeProps_17<IProps_6>, {
3142
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_17<IProps_6>, {
2905
3143
  id: string;
2906
3144
  errorMsg: string;
2907
3145
  disabled: boolean;
@@ -2912,16 +3150,16 @@ export declare const RTextArea: DefineComponent<__VLS_WithDefaults_16<__VLS_Type
2912
3150
  }>>> & {
2913
3151
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2914
3152
  }, {
3153
+ id: string | undefined;
2915
3154
  label: string;
2916
3155
  disabled: boolean | "true" | "false";
2917
- id: string | undefined;
2918
3156
  modelValue: any;
2919
3157
  placeholder: string;
2920
3158
  errorMsg: string;
2921
3159
  hint: string;
2922
3160
  }, {}>;
2923
3161
 
2924
- export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_18<Props_6>, {
3162
+ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_18<Props_6>, {
2925
3163
  id: string;
2926
3164
  type: string;
2927
3165
  modelValue: string;
@@ -2945,7 +3183,7 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
2945
3183
  "update:modelValue": (...args: any[]) => void;
2946
3184
  "click:icon": (...args: any[]) => void;
2947
3185
  "click:clear": (...args: any[]) => void;
2948
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_17<__VLS_TypePropsToRuntimeProps_18<Props_6>, {
3186
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_18<Props_6>, {
2949
3187
  id: string;
2950
3188
  type: string;
2951
3189
  modelValue: string;
@@ -2970,13 +3208,13 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
2970
3208
  "onClick:icon"?: ((...args: any[]) => any) | undefined;
2971
3209
  "onClick:clear"?: ((...args: any[]) => any) | undefined;
2972
3210
  }, {
3211
+ id: string | undefined;
2973
3212
  type: "number" | "text" | "email" | "password" | "tel" | "url";
2974
3213
  label: string;
2975
3214
  disabled: boolean;
2976
3215
  prependIcon: string;
2977
3216
  appendIcon: string;
2978
3217
  clearable: boolean;
2979
- id: string | undefined;
2980
3218
  role: string;
2981
3219
  modelValue: any;
2982
3220
  placeholder: string;
@@ -2987,18 +3225,20 @@ export declare const RTextfield: __VLS_WithTemplateSlots_13<DefineComponent<__VL
2987
3225
  readonly: boolean;
2988
3226
  }, {}>, {
2989
3227
  prepend?(_: {
3228
+ id: string;
2990
3229
  disabled: boolean;
2991
3230
  error: number;
2992
3231
  loading: boolean;
2993
3232
  }): any;
2994
3233
  append?(_: {
3234
+ id: string;
2995
3235
  disabled: boolean;
2996
3236
  error: number;
2997
3237
  loading: boolean;
2998
3238
  }): any;
2999
3239
  }>;
3000
3240
 
3001
- export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_19<IProps_7>, {
3241
+ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_19<IProps_7>, {
3002
3242
  placement: Placement;
3003
3243
  text: string;
3004
3244
  dark: boolean;
@@ -3018,10 +3258,11 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
3018
3258
  triggerClass: string;
3019
3259
  tooltipClass: string;
3020
3260
  type: Theme;
3261
+ id: string;
3021
3262
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3022
3263
  show: (...args: any[]) => void;
3023
3264
  hide: (...args: any[]) => void;
3024
- }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_18<__VLS_TypePropsToRuntimeProps_19<IProps_7>, {
3265
+ }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_19<__VLS_TypePropsToRuntimeProps_19<IProps_7>, {
3025
3266
  placement: Placement;
3026
3267
  text: string;
3027
3268
  dark: boolean;
@@ -3041,10 +3282,12 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
3041
3282
  triggerClass: string;
3042
3283
  tooltipClass: string;
3043
3284
  type: Theme;
3285
+ id: string;
3044
3286
  }>>> & {
3045
3287
  onShow?: ((...args: any[]) => any) | undefined;
3046
3288
  onHide?: ((...args: any[]) => any) | undefined;
3047
3289
  }, {
3290
+ id: string;
3048
3291
  type: string;
3049
3292
  text: string;
3050
3293
  disabled: boolean;
@@ -3066,6 +3309,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
3066
3309
  persistent: boolean;
3067
3310
  }, {}>, {
3068
3311
  default?(_: {
3312
+ id: string;
3069
3313
  activators: {
3070
3314
  click: typeof onClick;
3071
3315
  mouseenter: typeof onMouseEnter;
@@ -3076,6 +3320,7 @@ export declare const RTooltip: __VLS_WithTemplateSlots_14<DefineComponent<__VLS_
3076
3320
  updatePosition: typeof handleUpdate;
3077
3321
  }): any;
3078
3322
  content?(_: {
3323
+ id: string;
3079
3324
  hide: typeof hideTooltip;
3080
3325
  updatePosition: typeof handleUpdate;
3081
3326
  }): any;
@@ -3312,6 +3557,23 @@ declare interface SelectProps {
3312
3557
  * <Dropdown :maxVisibleChips="3" />
3313
3558
  */
3314
3559
  maxVisibleChips?: number;
3560
+ /**
3561
+ * Allow to search for options inside the dropdown
3562
+ * @type {boolean}
3563
+ * @default true
3564
+ * @example
3565
+ * <Dropdown innerSearch />
3566
+ * <Dropdown :innerSearch="false" />
3567
+ */
3568
+ innerSearch?: boolean;
3569
+ /**
3570
+ * Loading state of the search
3571
+ * @type {boolean}
3572
+ * @default false
3573
+ * @example
3574
+ * <Dropdown searchLoading />
3575
+ */
3576
+ searchLoading?: boolean;
3315
3577
  }
3316
3578
 
3317
3579
  declare interface Tab {
@@ -3338,50 +3600,6 @@ declare enum Theme {
3338
3600
  Dropdown = "dropdown"
3339
3601
  }
3340
3602
 
3341
- export declare interface TooltipDirectiveOptions {
3342
- /**
3343
- * Tooltip content text
3344
- */
3345
- text: string;
3346
- /**
3347
- * Placement of the tooltip
3348
- * @default 'top'
3349
- */
3350
- placement?: 'top' | 'bottom' | 'left' | 'right';
3351
- /**
3352
- * Trigger type for showing tooltip
3353
- * @default 'hover'
3354
- */
3355
- trigger?: 'hover' | 'click';
3356
- /**
3357
- * Show delay in milliseconds
3358
- * @default 0
3359
- */
3360
- delay?: number;
3361
- /**
3362
- * Offset distance from trigger element
3363
- * @default 8
3364
- */
3365
- offset?: number;
3366
- /**
3367
- * Dark theme
3368
- * @default true
3369
- */
3370
- dark?: boolean;
3371
- /**
3372
- * Disable tooltip
3373
- * @default false
3374
- */
3375
- disabled?: boolean;
3376
- /**
3377
- * Close tooltip when clicking outside (for click trigger)
3378
- * @default false
3379
- */
3380
- outsideClick?: boolean;
3381
- }
3382
-
3383
- export declare type TooltipDirectiveValue = string | TooltipDirectiveOptions;
3384
-
3385
3603
  declare enum Trigger {
3386
3604
  Click = "click",
3387
3605
  Hover = "hover",
@@ -3390,25 +3608,4 @@ declare enum Trigger {
3390
3608
 
3391
3609
  declare type Triggers = 'click' | 'hover' | 'manual';
3392
3610
 
3393
- /**
3394
- * Vue 3 tooltip directive
3395
- *
3396
- * @example
3397
- * ```vue
3398
- * <template>
3399
- * <!-- Simple tooltip -->
3400
- * <button v-tooltip="'Simple tooltip text'">Hover me</button>
3401
- *
3402
- * <!-- Advanced tooltip -->
3403
- * <button v-tooltip="{
3404
- * text: 'Advanced tooltip',
3405
- * placement: 'bottom',
3406
- * trigger: 'click',
3407
- * dark: false
3408
- * }">Click me</button>
3409
- * </template>
3410
- * ```
3411
- */
3412
- export declare const vTooltip: Directive<HTMLElement, TooltipDirectiveValue>;
3413
-
3414
3611
  export { }