wyfe-ivue 1.8.2 → 1.10.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.
@@ -36,12 +36,43 @@ import { WatchOptions } from 'vue';
36
36
  import { WatchStopHandle } from 'vue';
37
37
 
38
38
  declare const __VLS_component: DefineComponent<ExtractPropTypes< {
39
+ configs: {
40
+ type: ArrayConstructor;
41
+ required: boolean;
42
+ };
43
+ tableMarginTop: {
44
+ type: StringConstructor;
45
+ default: string;
46
+ };
47
+ useBottomSlot: {
48
+ type: BooleanConstructor;
49
+ default: boolean;
50
+ };
51
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
52
+ configs: {
53
+ type: ArrayConstructor;
54
+ required: boolean;
55
+ };
56
+ tableMarginTop: {
57
+ type: StringConstructor;
58
+ default: string;
59
+ };
60
+ useBottomSlot: {
61
+ type: BooleanConstructor;
62
+ default: boolean;
63
+ };
64
+ }>> & Readonly<{}>, {
65
+ tableMarginTop: string;
66
+ useBottomSlot: boolean;
67
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
68
+
69
+ declare const __VLS_component_2: DefineComponent<ExtractPropTypes< {
39
70
  title: {
40
71
  type: StringConstructor;
41
72
  default: string;
42
73
  };
43
74
  size: {
44
- type: (StringConstructor | NumberConstructor)[];
75
+ type: (NumberConstructor | StringConstructor)[];
45
76
  default: number;
46
77
  };
47
78
  appendToBody: {
@@ -127,6 +158,7 @@ readonly showClose: EpPropMergeType<BooleanConstructor, unknown, unknown>;
127
158
  readonly size: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
128
159
  readonly appendTo: EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>;
129
160
  readonly center: boolean;
161
+ readonly modelValue: boolean;
130
162
  readonly appendToBody: boolean;
131
163
  readonly destroyOnClose: boolean;
132
164
  readonly closeOnClickModal: EpPropMergeType<BooleanConstructor, unknown, unknown>;
@@ -141,7 +173,6 @@ readonly modal: EpPropMergeType<BooleanConstructor, unknown, unknown>;
141
173
  readonly modalPenetrable: boolean;
142
174
  readonly openDelay: number;
143
175
  readonly closeDelay: number;
144
- readonly modelValue: boolean;
145
176
  readonly trapFocus: boolean;
146
177
  readonly fullscreen: boolean;
147
178
  readonly ariaLevel: string;
@@ -168,7 +199,7 @@ onCloseAutoFocus?: (() => any) | undefined | undefined;
168
199
  onResize?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
169
200
  "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
170
201
  "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
171
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "title" | "showClose" | "size" | "appendTo" | "center" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "modelValue" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel">;
202
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "title" | "showClose" | "size" | "appendTo" | "center" | "modelValue" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel">;
172
203
  $attrs: {
173
204
  [x: string]: unknown;
174
205
  };
@@ -181,7 +212,7 @@ $slots: Readonly<{
181
212
  $root: ComponentPublicInstance | null;
182
213
  $parent: ComponentPublicInstance | null;
183
214
  $host: Element | null;
184
- $emit: ((event: "close") => void) & ((event: "closed") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
215
+ $emit: ((event: "close") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "closed") => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
185
216
  $el: any;
186
217
  $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
187
218
  readonly direction: EpPropFinalized<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown, "rtl", boolean>;
@@ -420,7 +451,7 @@ onCloseAutoFocus?: (() => any) | undefined;
420
451
  onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
421
452
  "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined;
422
453
  "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined;
423
- }, "title" | "showClose" | "size" | "appendTo" | "center" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "modelValue" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel" | "handleClose" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef< {
454
+ }, "title" | "showClose" | "size" | "appendTo" | "center" | "modelValue" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel" | "handleClose" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef< {
424
455
  handleClose: () => void;
425
456
  afterEnter: () => void;
426
457
  afterLeave: () => void;
@@ -472,6 +503,7 @@ readonly showClose: EpPropMergeType<BooleanConstructor, unknown, unknown>;
472
503
  readonly size: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
473
504
  readonly appendTo: EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown>;
474
505
  readonly center: boolean;
506
+ readonly modelValue: boolean;
475
507
  readonly appendToBody: boolean;
476
508
  readonly destroyOnClose: boolean;
477
509
  readonly closeOnClickModal: EpPropMergeType<BooleanConstructor, unknown, unknown>;
@@ -486,7 +518,6 @@ readonly modal: EpPropMergeType<BooleanConstructor, unknown, unknown>;
486
518
  readonly modalPenetrable: boolean;
487
519
  readonly openDelay: number;
488
520
  readonly closeDelay: number;
489
- readonly modelValue: boolean;
490
521
  readonly trapFocus: boolean;
491
522
  readonly fullscreen: boolean;
492
523
  readonly ariaLevel: string;
@@ -513,7 +544,7 @@ onCloseAutoFocus?: (() => any) | undefined | undefined;
513
544
  onResize?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
514
545
  "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
515
546
  "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined | undefined;
516
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "title" | "showClose" | "size" | "appendTo" | "center" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "modelValue" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel">;
547
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "title" | "showClose" | "size" | "appendTo" | "center" | "modelValue" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel">;
517
548
  $attrs: {
518
549
  [x: string]: unknown;
519
550
  };
@@ -526,7 +557,7 @@ $slots: Readonly<{
526
557
  $root: ComponentPublicInstance | null;
527
558
  $parent: ComponentPublicInstance | null;
528
559
  $host: Element | null;
529
- $emit: ((event: "close") => void) & ((event: "closed") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
560
+ $emit: ((event: "close") => void) & ((event: "update:modelValue", value: boolean) => void) & ((event: "closed") => void) & ((event: "resize", evt: MouseEvent, size: number) => void) & ((event: "open") => void) & ((event: "opened") => void) & ((event: "openAutoFocus") => void) & ((event: "closeAutoFocus") => void) & ((event: "resize-start", evt: MouseEvent, size: number) => void) & ((event: "resize-end", evt: MouseEvent, size: number) => void);
530
561
  $el: any;
531
562
  $options: ComponentOptionsBase<Readonly<ExtractPropTypes< {
532
563
  readonly direction: EpPropFinalized<StringConstructor, "ltr" | "rtl" | "ttb" | "btt", unknown, "rtl", boolean>;
@@ -765,7 +796,7 @@ onCloseAutoFocus?: (() => any) | undefined;
765
796
  onResize?: ((evt: MouseEvent, size: number) => any) | undefined;
766
797
  "onResize-start"?: ((evt: MouseEvent, size: number) => any) | undefined;
767
798
  "onResize-end"?: ((evt: MouseEvent, size: number) => any) | undefined;
768
- }, "title" | "showClose" | "size" | "appendTo" | "center" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "modelValue" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel" | "handleClose" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef< {
799
+ }, "title" | "showClose" | "size" | "appendTo" | "center" | "modelValue" | "appendToBody" | "destroyOnClose" | "closeOnClickModal" | "direction" | "resizable" | "withHeader" | "modalFade" | "headerAriaLevel" | "closeOnPressEscape" | "lockScroll" | "modal" | "modalPenetrable" | "openDelay" | "closeDelay" | "trapFocus" | "transition" | "alignCenter" | "draggable" | "overflow" | "fullscreen" | "ariaLevel" | "handleClose" | "afterEnter" | "afterLeave"> & ShallowUnwrapRef< {
769
800
  handleClose: () => void;
770
801
  afterEnter: () => void;
771
802
  afterLeave: () => void;
@@ -788,7 +819,7 @@ type: StringConstructor;
788
819
  default: string;
789
820
  };
790
821
  size: {
791
- type: (StringConstructor | NumberConstructor)[];
822
+ type: (NumberConstructor | StringConstructor)[];
792
823
  default: number;
793
824
  };
794
825
  appendToBody: {
@@ -854,7 +885,7 @@ showFooter: boolean;
854
885
  edRef: unknown;
855
886
  }, any>;
856
887
 
857
- declare const __VLS_component_2: DefineComponent<ExtractPropTypes< {
888
+ declare const __VLS_component_3: DefineComponent<ExtractPropTypes< {
858
889
  formMode: {
859
890
  type: StringConstructor;
860
891
  default: string;
@@ -1518,7 +1549,7 @@ formRight?(_: {}): any;
1518
1549
  }) | null;
1519
1550
  }, HTMLDivElement>;
1520
1551
 
1521
- declare const __VLS_component_3: DefineComponent<ExtractPropTypes< {
1552
+ declare const __VLS_component_4: DefineComponent<ExtractPropTypes< {
1522
1553
  tableColumns: {
1523
1554
  type: PropType<ITableColumn[]>;
1524
1555
  required: boolean;
@@ -1673,6 +1704,16 @@ declare type __VLS_Props = {
1673
1704
  };
1674
1705
 
1675
1706
  declare function __VLS_template(): {
1707
+ attrs: Partial<{}>;
1708
+ slots: Partial<Record<number, (_: any) => any>> & {
1709
+ crudBetween?(_: {}): any;
1710
+ crudBottom?(_: {}): any;
1711
+ };
1712
+ refs: {};
1713
+ rootEl: HTMLDivElement;
1714
+ };
1715
+
1716
+ declare function __VLS_template_2(): {
1676
1717
  attrs: Partial<{}>;
1677
1718
  slots: {
1678
1719
  default?(_: {}): any;
@@ -1683,7 +1724,7 @@ declare function __VLS_template(): {
1683
1724
  rootEl: any;
1684
1725
  };
1685
1726
 
1686
- declare function __VLS_template_2(): {
1727
+ declare function __VLS_template_3(): {
1687
1728
  attrs: Partial<{}>;
1688
1729
  slots: Partial<Record<number, (_: any) => any>>;
1689
1730
  refs: {
@@ -2200,7 +2241,7 @@ declare function __VLS_template_2(): {
2200
2241
  rootEl: HTMLDivElement;
2201
2242
  };
2202
2243
 
2203
- declare function __VLS_template_3(): {
2244
+ declare function __VLS_template_4(): {
2204
2245
  attrs: Partial<{}>;
2205
2246
  slots: Readonly<{
2206
2247
  [key: string]: any;
@@ -2219,6 +2260,8 @@ declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
2219
2260
 
2220
2261
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
2221
2262
 
2263
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
2264
+
2222
2265
  declare type __VLS_WithTemplateSlots<T, S> = T & {
2223
2266
  new (): {
2224
2267
  $slots: S;
@@ -2237,6 +2280,12 @@ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
2237
2280
  };
2238
2281
  };
2239
2282
 
2283
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
2284
+ new (): {
2285
+ $slots: S;
2286
+ };
2287
+ };
2288
+
2240
2289
  declare type contentType = string | VNode | Component;
2241
2290
 
2242
2291
  declare interface IFormColumn {
@@ -2318,6 +2367,8 @@ declare interface ITableColumn {
2318
2367
  };
2319
2368
  }
2320
2369
 
2370
+ export declare const UseCrudTable: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
2371
+
2321
2372
  export declare const UseElButton: DefineComponent<ExtractPropTypes< {
2322
2373
  btnText: {
2323
2374
  type: StringConstructor;
@@ -2351,14 +2402,77 @@ default: () => {};
2351
2402
  }>> & Readonly<{
2352
2403
  onOnClick?: ((...args: any[]) => any) | undefined;
2353
2404
  }>, {
2405
+ extConfig: Record<string, any>;
2354
2406
  type: string;
2355
2407
  btnText: string;
2356
- extConfig: Record<string, any>;
2357
2408
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2358
2409
 
2359
- export declare const UseElDrawer: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
2410
+ export declare const UseElCheckbox: DefineComponent<ExtractPropTypes< {
2411
+ modelValue: {
2412
+ type: (ArrayConstructor | StringConstructor)[];
2413
+ default: () => never[];
2414
+ };
2415
+ data: any;
2416
+ defaultProps: {
2417
+ type: ObjectConstructor;
2418
+ default: () => {
2419
+ label: string;
2420
+ value: string;
2421
+ };
2422
+ };
2423
+ showCheckAll: {
2424
+ type: BooleanConstructor;
2425
+ default: boolean;
2426
+ };
2427
+ vertical: {
2428
+ type: BooleanConstructor;
2429
+ default: boolean;
2430
+ };
2431
+ isJoin: {
2432
+ type: BooleanConstructor;
2433
+ default: boolean;
2434
+ };
2435
+ }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2436
+ "update:modelValue": (...args: any[]) => void;
2437
+ }, string, PublicProps, Readonly<ExtractPropTypes< {
2438
+ modelValue: {
2439
+ type: (ArrayConstructor | StringConstructor)[];
2440
+ default: () => never[];
2441
+ };
2442
+ data: any;
2443
+ defaultProps: {
2444
+ type: ObjectConstructor;
2445
+ default: () => {
2446
+ label: string;
2447
+ value: string;
2448
+ };
2449
+ };
2450
+ showCheckAll: {
2451
+ type: BooleanConstructor;
2452
+ default: boolean;
2453
+ };
2454
+ vertical: {
2455
+ type: BooleanConstructor;
2456
+ default: boolean;
2457
+ };
2458
+ isJoin: {
2459
+ type: BooleanConstructor;
2460
+ default: boolean;
2461
+ };
2462
+ }>> & Readonly<{
2463
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
2464
+ }>, {
2465
+ data: any;
2466
+ modelValue: string | unknown[];
2467
+ defaultProps: Record<string, any>;
2468
+ showCheckAll: boolean;
2469
+ vertical: boolean;
2470
+ isJoin: boolean;
2471
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2472
+
2473
+ export declare const UseElDrawer: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
2360
2474
 
2361
- export declare const UseElForm: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
2475
+ export declare const UseElForm: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2362
2476
 
2363
2477
  export declare const UseElInput: DefineComponent<ExtractPropTypes< {
2364
2478
  modelValue: {
@@ -2378,23 +2492,23 @@ type: BooleanConstructor;
2378
2492
  default: boolean;
2379
2493
  };
2380
2494
  prefixContent: {
2381
- type: (StringConstructor | ObjectConstructor)[];
2495
+ type: (ObjectConstructor | StringConstructor)[];
2382
2496
  default: string;
2383
2497
  };
2384
2498
  suffixContent: {
2385
- type: (StringConstructor | ObjectConstructor)[];
2499
+ type: (ObjectConstructor | StringConstructor)[];
2386
2500
  default: string;
2387
2501
  };
2388
2502
  prependContent: {
2389
- type: (StringConstructor | ObjectConstructor)[];
2503
+ type: (ObjectConstructor | StringConstructor)[];
2390
2504
  default: string;
2391
2505
  };
2392
2506
  appendContent: {
2393
- type: (StringConstructor | ObjectConstructor)[];
2507
+ type: (ObjectConstructor | StringConstructor)[];
2394
2508
  default: string;
2395
2509
  };
2396
2510
  unit: {
2397
- type: (StringConstructor | ObjectConstructor)[];
2511
+ type: (ObjectConstructor | StringConstructor)[];
2398
2512
  default: string;
2399
2513
  };
2400
2514
  resize: {
@@ -2425,23 +2539,23 @@ type: BooleanConstructor;
2425
2539
  default: boolean;
2426
2540
  };
2427
2541
  prefixContent: {
2428
- type: (StringConstructor | ObjectConstructor)[];
2542
+ type: (ObjectConstructor | StringConstructor)[];
2429
2543
  default: string;
2430
2544
  };
2431
2545
  suffixContent: {
2432
- type: (StringConstructor | ObjectConstructor)[];
2546
+ type: (ObjectConstructor | StringConstructor)[];
2433
2547
  default: string;
2434
2548
  };
2435
2549
  prependContent: {
2436
- type: (StringConstructor | ObjectConstructor)[];
2550
+ type: (ObjectConstructor | StringConstructor)[];
2437
2551
  default: string;
2438
2552
  };
2439
2553
  appendContent: {
2440
- type: (StringConstructor | ObjectConstructor)[];
2554
+ type: (ObjectConstructor | StringConstructor)[];
2441
2555
  default: string;
2442
2556
  };
2443
2557
  unit: {
2444
- type: (StringConstructor | ObjectConstructor)[];
2558
+ type: (ObjectConstructor | StringConstructor)[];
2445
2559
  default: string;
2446
2560
  };
2447
2561
  resize: {
@@ -2470,7 +2584,7 @@ placeholder: string;
2470
2584
 
2471
2585
  export declare const UseElSelect: DefineComponent<ExtractPropTypes< {
2472
2586
  modelValue: {
2473
- type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
2587
+ type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
2474
2588
  default: string;
2475
2589
  };
2476
2590
  options: any;
@@ -2494,7 +2608,7 @@ value: string;
2494
2608
  "update:label": (...args: any[]) => void;
2495
2609
  }, string, PublicProps, Readonly<ExtractPropTypes< {
2496
2610
  modelValue: {
2497
- type: (StringConstructor | ArrayConstructor | NumberConstructor)[];
2611
+ type: (NumberConstructor | ArrayConstructor | StringConstructor)[];
2498
2612
  default: string;
2499
2613
  };
2500
2614
  options: any;
@@ -2518,13 +2632,13 @@ value: string;
2518
2632
  "onUpdate:label"?: ((...args: any[]) => any) | undefined;
2519
2633
  }>, {
2520
2634
  modelValue: string | number | unknown[];
2635
+ defaultProps: Record<string, any>;
2521
2636
  width: string;
2522
2637
  placeholder: string;
2523
2638
  options: any;
2524
- defaultProps: Record<string, any>;
2525
2639
  }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
2526
2640
 
2527
- export declare const UseElTable: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2641
+ export declare const UseElTable: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
2528
2642
 
2529
2643
  export declare const UseRender: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2530
2644
 
@@ -2534,12 +2648,12 @@ type: StringConstructor;
2534
2648
  required: boolean;
2535
2649
  };
2536
2650
  size: {
2537
- type: (StringConstructor | NumberConstructor)[];
2651
+ type: (NumberConstructor | StringConstructor)[];
2538
2652
  default: number;
2539
2653
  validator(val: any): any;
2540
2654
  };
2541
2655
  color: {
2542
- type: (StringConstructor | ArrayConstructor)[];
2656
+ type: (ArrayConstructor | StringConstructor)[];
2543
2657
  validator(val: any): any;
2544
2658
  };
2545
2659
  margin: {
@@ -2558,12 +2672,12 @@ type: StringConstructor;
2558
2672
  required: boolean;
2559
2673
  };
2560
2674
  size: {
2561
- type: (StringConstructor | NumberConstructor)[];
2675
+ type: (NumberConstructor | StringConstructor)[];
2562
2676
  default: number;
2563
2677
  validator(val: any): any;
2564
2678
  };
2565
2679
  color: {
2566
- type: (StringConstructor | ArrayConstructor)[];
2680
+ type: (ArrayConstructor | StringConstructor)[];
2567
2681
  validator(val: any): any;
2568
2682
  };
2569
2683
  margin: {
@@ -1,6 +1,6 @@
1
1
  import { defineComponent as Me, inject as _e, createVNode as te, Comment as ml, computed as D, createElementBlock as ee, openBlock as _, normalizeClass as L, unref as t, createCommentVNode as he, createBlock as ye, withModifiers as Ye, withCtx as re, createElementVNode as ne, Fragment as Le, getCurrentInstance as Ca, ref as X, renderList as qe, createTextVNode as ct, toDisplayString as Se, renderSlot as be, useSlots as Oa, provide as Vt, reactive as yt, watch as De, onBeforeUpdate as ar, onMounted as Kt, nextTick as Te, useAttrs as fn, withDirectives as je, isRef as nr, vShow as gt, normalizeStyle as Ot, createSlots as Jl, resolveDynamicComponent as Ct, withKeys as tt, vModelText as Ql, mergeProps as Rt, onBeforeUnmount as Da, Transition as lr, toRef as Dt, toRefs as pa, isVNode as Xl, onUpdated as es, TransitionGroup as sr, h as qt, onActivated as rr, toRaw as or, watchEffect as gl, resolveComponent as Ra, resolveDirective as ir, normalizeProps as ur, guardReactiveProps as cr } from "vue";
2
- import { a3 as ts, e as dr, l as Ee, a4 as ea, a5 as bl, u as Ne, _ as Ue, a6 as fr, z as Ie, a7 as as, Q as ns, a8 as da, k as at, a9 as Hn, aa as tn, ab as dt, t as Ma, ac as vr, ad as ut, f as Ae, g as fe, C as It, U as Mt, ae as Pn, af as pr, ag as yl, ah as st, ai as Kn, aj as hr, n as _t, E as Oe, ak as Ya, al as ls, w as ra, M as vn, T as Un, am as an, an as Nt, ao as Gn, V as Zn, N as $n, q as Jn, r as pn, y as Ut, ap as Qn, aq as ss, x as Pa, ar as hn, v as bt, as as Lt, at as nn, G as xt, A as Xn, au as _a, av as ha, aw as mr, ax as rs, R as gr, p as os, O as is, ay as br, W as yr, az as kr, aA as wr, aB as Sr, aC as Cr, aD as Or, D as Dr, h as Bt, J as ta, aE as Mr, aF as ln, aG as ia, aH as jt, aI as Vn, aJ as Ht, a2 as sn, L as us, aK as In, aL as el, aM as Tn, H as tl, aN as Pr, P as kl, aO as wn, aP as $r, aQ as Vr, aR as mn, aS as Ir, aT as cs, aU as Tr, aV as ds, aW as Gt, m as Er, aX as Nr, aY as Rr, aZ as Fr, a_ as Lr, j as fa, a$ as Yt, b0 as Ar, b1 as xr, b2 as Br, b3 as Yr, b4 as _r, b5 as zr } from "./index-DNhfyTHm.js";
3
- import { a as qr } from "./el-radio-O1z4iuzx.js";
2
+ import { a3 as ts, e as dr, l as Ee, a4 as ea, a5 as bl, u as Ne, _ as Ue, a6 as fr, z as Ie, a7 as as, Q as ns, a8 as da, k as at, a9 as Hn, aa as tn, ab as dt, t as Ma, ac as vr, ad as ut, f as Ae, g as fe, C as It, U as Mt, ae as Pn, af as pr, ag as yl, ah as st, ai as Kn, aj as hr, n as _t, E as Oe, ak as Ya, al as ls, w as ra, M as vn, T as Un, am as an, an as Nt, ao as Gn, V as Zn, N as $n, q as Jn, r as pn, y as Ut, ap as Qn, aq as ss, x as Pa, ar as hn, v as bt, as as Lt, at as nn, G as xt, A as Xn, au as _a, av as ha, aw as mr, ax as rs, R as gr, p as os, O as is, ay as br, W as yr, az as kr, aA as wr, aB as Sr, aC as Cr, aD as Or, D as Dr, h as Bt, J as ta, aE as Mr, aF as ln, aG as ia, aH as jt, aI as Vn, aJ as Ht, a2 as sn, L as us, aK as In, aL as el, aM as Tn, H as tl, aN as Pr, P as kl, aO as wn, aP as $r, aQ as Vr, aR as mn, aS as Ir, aT as cs, aU as Tr, aV as ds, aW as Gt, m as Er, aX as Nr, aY as Rr, aZ as Fr, a_ as Lr, j as fa, a$ as Yt, b0 as Ar, b1 as xr, b2 as Br, b3 as Yr, b4 as _r, b5 as zr } from "./index-Dkaq7Lln.js";
3
+ import { a as qr } from "./el-radio-NqjDP204.js";
4
4
  var Wr = 4;
5
5
  function wl(e) {
6
6
  return ts(e, Wr);