@davincihealthcare/elty-design-system-vue 1.47.2 → 1.48.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.
Files changed (47) hide show
  1. package/dist/ElAccordion.vue.d.ts +4 -4
  2. package/dist/ElActionButton.vue.d.ts +3 -3
  3. package/dist/ElAvatar.vue.d.ts +4 -4
  4. package/dist/ElBadge.vue.d.ts +2 -2
  5. package/dist/ElButton.vue.d.ts +22 -22
  6. package/dist/ElCalendarCard.vue.d.ts +15 -15
  7. package/dist/ElCalendarCell.vue.d.ts +8 -8
  8. package/dist/ElClipToAnchor.vue.d.ts +4 -4
  9. package/dist/ElContainerTemplate.vue.d.ts +12 -48
  10. package/dist/ElDrawer.vue.d.ts +21 -16
  11. package/dist/ElDropdown.vue.d.ts +20 -262
  12. package/dist/ElFile.vue.d.ts +2 -2
  13. package/dist/ElIcon.vue.d.ts +4 -4
  14. package/dist/ElIconButton.vue.d.ts +1 -1
  15. package/dist/ElInlineBanner.vue.d.ts +10 -187
  16. package/dist/ElItem.vue.d.ts +15 -15
  17. package/dist/ElLogo.vue.d.ts +4 -4
  18. package/dist/ElModal.vue.d.ts +34 -182
  19. package/dist/ElSpinner.vue.d.ts +6 -6
  20. package/dist/ElSuggestionChip.vue.d.ts +2 -2
  21. package/dist/ElTab.vue.d.ts +6 -6
  22. package/dist/ElTabGroup.vue.d.ts +4 -2
  23. package/dist/ElTableHead.vue.d.ts +6 -6
  24. package/dist/ElTag.vue.d.ts +10 -10
  25. package/dist/ElTextCell.vue.d.ts +4 -4
  26. package/dist/ElTooltip.vue.d.ts +2 -2
  27. package/dist/ElVerticalTab.vue.d.ts +22 -114
  28. package/dist/_CustomTransition.vue.d.ts +8 -6
  29. package/dist/forms/ElInputCheckbox.vue.d.ts +6 -6
  30. package/dist/forms/ElInputContainer.vue.d.ts +15 -13
  31. package/dist/forms/ElInputDate.vue.d.ts +2 -2
  32. package/dist/forms/ElInputFile.vue.d.ts +2 -2
  33. package/dist/forms/ElInputRadioButton.vue.d.ts +6 -4
  34. package/dist/forms/ElInputSearch.vue.d.ts +24 -323
  35. package/dist/forms/ElInputSelect.vue.d.ts +3 -2
  36. package/dist/forms/ElInputSwitch.vue.d.ts +8 -8
  37. package/dist/forms/ElInputText.vue.d.ts +2 -2
  38. package/dist/forms/input.d.ts +1 -1
  39. package/dist/index.js +1366 -1353
  40. package/dist/index.js.map +1 -1
  41. package/dist/index.umd.cjs +12 -12
  42. package/dist/index.umd.cjs.map +1 -1
  43. package/dist/table/ElServerSideTable.vue.d.ts +11 -3
  44. package/dist/table/ElTable.vue.d.ts +2 -2
  45. package/dist/tailwind.plugin.d.ts +2 -2
  46. package/package.json +3 -4
  47. package/dist/table/ElTablePagination.vue.d.ts +0 -61
@@ -62,24 +62,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
62
62
  type: "button" | "submit" | "reset";
63
63
  onClick: (() => unknown) | (() => Promise<unknown>);
64
64
  label: string;
65
- size: "base" | "xs" | "sm" | "xl" | "l";
65
+ size: import('./ElButton.vue').ElButtonSize;
66
66
  dark: boolean;
67
67
  loading: boolean;
68
68
  icon: import('./ElIcon.vue').ElIconProps;
69
69
  error: boolean;
70
- variant: "primary" | "secondary" | "tertiary";
70
+ variant: import('./ElButton.vue').ElButtonVariant;
71
71
  loadOnClick: boolean;
72
72
  }> & Omit<{
73
73
  readonly disabled: boolean;
74
74
  readonly type: "button" | "submit" | "reset";
75
75
  readonly label: string;
76
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
76
+ readonly size: import('./ElButton.vue').ElButtonSize;
77
77
  readonly dark: boolean;
78
78
  readonly loading: boolean;
79
79
  readonly error: boolean;
80
- readonly variant: "primary" | "secondary" | "tertiary";
80
+ readonly variant: import('./ElButton.vue').ElButtonVariant;
81
81
  readonly loadOnClick: boolean;
82
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
82
+ readonly onClick?: ((() => unknown) | (() => Promise<unknown>)) | undefined;
83
83
  readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
84
84
  readonly iconRight?: boolean | undefined;
85
85
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
@@ -140,24 +140,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
140
140
  type: "button" | "submit" | "reset";
141
141
  onClick: (() => unknown) | (() => Promise<unknown>);
142
142
  label: string;
143
- size: "base" | "xs" | "sm" | "xl" | "l";
143
+ size: import('./ElButton.vue').ElButtonSize;
144
144
  dark: boolean;
145
145
  loading: boolean;
146
146
  icon: import('./ElIcon.vue').ElIconProps;
147
147
  error: boolean;
148
- variant: "primary" | "secondary" | "tertiary";
148
+ variant: import('./ElButton.vue').ElButtonVariant;
149
149
  loadOnClick: boolean;
150
150
  }> & Omit<{
151
151
  readonly disabled: boolean;
152
152
  readonly type: "button" | "submit" | "reset";
153
153
  readonly label: string;
154
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
154
+ readonly size: import('./ElButton.vue').ElButtonSize;
155
155
  readonly dark: boolean;
156
156
  readonly loading: boolean;
157
157
  readonly error: boolean;
158
- readonly variant: "primary" | "secondary" | "tertiary";
158
+ readonly variant: import('./ElButton.vue').ElButtonVariant;
159
159
  readonly loadOnClick: boolean;
160
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
160
+ readonly onClick?: ((() => unknown) | (() => Promise<unknown>)) | undefined;
161
161
  readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
162
162
  readonly iconRight?: boolean | undefined;
163
163
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
@@ -218,24 +218,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
218
218
  type: "button" | "submit" | "reset";
219
219
  onClick: (() => unknown) | (() => Promise<unknown>);
220
220
  label: string;
221
- size: "base" | "xs" | "sm" | "xl" | "l";
221
+ size: import('./ElButton.vue').ElButtonSize;
222
222
  dark: boolean;
223
223
  loading: boolean;
224
224
  icon: import('./ElIcon.vue').ElIconProps;
225
225
  error: boolean;
226
- variant: "primary" | "secondary" | "tertiary";
226
+ variant: import('./ElButton.vue').ElButtonVariant;
227
227
  loadOnClick: boolean;
228
228
  }> & Omit<{
229
229
  readonly disabled: boolean;
230
230
  readonly type: "button" | "submit" | "reset";
231
231
  readonly label: string;
232
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
232
+ readonly size: import('./ElButton.vue').ElButtonSize;
233
233
  readonly dark: boolean;
234
234
  readonly loading: boolean;
235
235
  readonly error: boolean;
236
- readonly variant: "primary" | "secondary" | "tertiary";
236
+ readonly variant: import('./ElButton.vue').ElButtonVariant;
237
237
  readonly loadOnClick: boolean;
238
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
238
+ readonly onClick?: ((() => unknown) | (() => Promise<unknown>)) | undefined;
239
239
  readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
240
240
  readonly iconRight?: boolean | undefined;
241
241
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
@@ -339,24 +339,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
339
339
  type: "button" | "submit" | "reset";
340
340
  onClick: (() => unknown) | (() => Promise<unknown>);
341
341
  label: string;
342
- size: "base" | "xs" | "sm" | "xl" | "l";
342
+ size: import('./ElButton.vue').ElButtonSize;
343
343
  dark: boolean;
344
344
  loading: boolean;
345
345
  icon: import('./ElIcon.vue').ElIconProps;
346
346
  error: boolean;
347
- variant: "primary" | "secondary" | "tertiary";
347
+ variant: import('./ElButton.vue').ElButtonVariant;
348
348
  loadOnClick: boolean;
349
349
  }> & Omit<{
350
350
  readonly disabled: boolean;
351
351
  readonly type: "button" | "submit" | "reset";
352
352
  readonly label: string;
353
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
353
+ readonly size: import('./ElButton.vue').ElButtonSize;
354
354
  readonly dark: boolean;
355
355
  readonly loading: boolean;
356
356
  readonly error: boolean;
357
- readonly variant: "primary" | "secondary" | "tertiary";
357
+ readonly variant: import('./ElButton.vue').ElButtonVariant;
358
358
  readonly loadOnClick: boolean;
359
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
359
+ readonly onClick?: ((() => unknown) | (() => Promise<unknown>)) | undefined;
360
360
  readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
361
361
  readonly iconRight?: boolean | undefined;
362
362
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
@@ -417,24 +417,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
417
417
  type: "button" | "submit" | "reset";
418
418
  onClick: (() => unknown) | (() => Promise<unknown>);
419
419
  label: string;
420
- size: "base" | "xs" | "sm" | "xl" | "l";
420
+ size: import('./ElButton.vue').ElButtonSize;
421
421
  dark: boolean;
422
422
  loading: boolean;
423
423
  icon: import('./ElIcon.vue').ElIconProps;
424
424
  error: boolean;
425
- variant: "primary" | "secondary" | "tertiary";
425
+ variant: import('./ElButton.vue').ElButtonVariant;
426
426
  loadOnClick: boolean;
427
427
  }> & Omit<{
428
428
  readonly disabled: boolean;
429
429
  readonly type: "button" | "submit" | "reset";
430
430
  readonly label: string;
431
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
431
+ readonly size: import('./ElButton.vue').ElButtonSize;
432
432
  readonly dark: boolean;
433
433
  readonly loading: boolean;
434
434
  readonly error: boolean;
435
- readonly variant: "primary" | "secondary" | "tertiary";
435
+ readonly variant: import('./ElButton.vue').ElButtonVariant;
436
436
  readonly loadOnClick: boolean;
437
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
437
+ readonly onClick?: ((() => unknown) | (() => Promise<unknown>)) | undefined;
438
438
  readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
439
439
  readonly iconRight?: boolean | undefined;
440
440
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
@@ -495,24 +495,24 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
495
495
  type: "button" | "submit" | "reset";
496
496
  onClick: (() => unknown) | (() => Promise<unknown>);
497
497
  label: string;
498
- size: "base" | "xs" | "sm" | "xl" | "l";
498
+ size: import('./ElButton.vue').ElButtonSize;
499
499
  dark: boolean;
500
500
  loading: boolean;
501
501
  icon: import('./ElIcon.vue').ElIconProps;
502
502
  error: boolean;
503
- variant: "primary" | "secondary" | "tertiary";
503
+ variant: import('./ElButton.vue').ElButtonVariant;
504
504
  loadOnClick: boolean;
505
505
  }> & Omit<{
506
506
  readonly disabled: boolean;
507
507
  readonly type: "button" | "submit" | "reset";
508
508
  readonly label: string;
509
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
509
+ readonly size: import('./ElButton.vue').ElButtonSize;
510
510
  readonly dark: boolean;
511
511
  readonly loading: boolean;
512
512
  readonly error: boolean;
513
- readonly variant: "primary" | "secondary" | "tertiary";
513
+ readonly variant: import('./ElButton.vue').ElButtonVariant;
514
514
  readonly loadOnClick: boolean;
515
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
515
+ readonly onClick?: ((() => unknown) | (() => Promise<unknown>)) | undefined;
516
516
  readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
517
517
  readonly iconRight?: boolean | undefined;
518
518
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
@@ -571,159 +571,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
571
571
  onClosed?: (() => any) | undefined;
572
572
  }, {
573
573
  title: string;
574
- color: "primary" | "secondary" | "error";
575
- size: "xs" | "xl" | "l" | "m";
574
+ color: ElModalColor;
575
+ size: ElModalSize;
576
576
  description: string;
577
- secondaryAction: Omit<Partial<{
578
- disabled: boolean;
579
- type: "button" | "submit" | "reset";
580
- onClick: (() => unknown) | (() => Promise<unknown>);
581
- label: string;
582
- size: "base" | "xs" | "sm" | "xl" | "l";
583
- dark: boolean;
584
- loading: boolean;
585
- icon: import('./ElIcon.vue').ElIconProps;
586
- error: boolean;
587
- variant: "primary" | "secondary" | "tertiary";
588
- loadOnClick: boolean;
589
- }> & Omit<{
590
- readonly disabled: boolean;
591
- readonly type: "button" | "submit" | "reset";
592
- readonly label: string;
593
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
594
- readonly dark: boolean;
595
- readonly loading: boolean;
596
- readonly error: boolean;
597
- readonly variant: "primary" | "secondary" | "tertiary";
598
- readonly loadOnClick: boolean;
599
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
600
- readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
601
- readonly iconRight?: boolean | undefined;
602
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
603
- disabled: {
604
- type: import('vue').PropType<boolean>;
605
- default: boolean;
606
- };
607
- type: {
608
- type: import('vue').PropType<"button" | "submit" | "reset">;
609
- default: string;
610
- };
611
- onClick: {
612
- type: import('vue').PropType<(() => unknown) | (() => Promise<unknown>)>;
613
- default: undefined;
614
- };
615
- label: {
616
- type: import('vue').PropType<string>;
617
- required: true;
618
- default: string;
619
- };
620
- size: {
621
- type: import('vue').PropType<"base" | "xs" | "sm" | "xl" | "l">;
622
- default: string;
623
- };
624
- dark: {
625
- type: import('vue').PropType<boolean>;
626
- default: boolean;
627
- };
628
- loading: {
629
- type: import('vue').PropType<boolean>;
630
- default: boolean;
631
- };
632
- icon: {
633
- type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
634
- default: undefined;
635
- };
636
- iconRight: {
637
- type: import('vue').PropType<boolean>;
638
- };
639
- error: {
640
- type: import('vue').PropType<boolean>;
641
- default: boolean;
642
- };
643
- variant: {
644
- type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
645
- default: string;
646
- };
647
- loadOnClick: {
648
- type: import('vue').PropType<boolean>;
649
- default: boolean;
650
- };
651
- }>>, "disabled" | "type" | "onClick" | "label" | "size" | "dark" | "loading" | "icon" | "error" | "variant" | "loadOnClick">, "size" | "error" | "variant">;
652
- tertiaryAction: Omit<Partial<{
653
- disabled: boolean;
654
- type: "button" | "submit" | "reset";
655
- onClick: (() => unknown) | (() => Promise<unknown>);
656
- label: string;
657
- size: "base" | "xs" | "sm" | "xl" | "l";
658
- dark: boolean;
659
- loading: boolean;
660
- icon: import('./ElIcon.vue').ElIconProps;
661
- error: boolean;
662
- variant: "primary" | "secondary" | "tertiary";
663
- loadOnClick: boolean;
664
- }> & Omit<{
665
- readonly disabled: boolean;
666
- readonly type: "button" | "submit" | "reset";
667
- readonly label: string;
668
- readonly size: "base" | "xs" | "sm" | "xl" | "l";
669
- readonly dark: boolean;
670
- readonly loading: boolean;
671
- readonly error: boolean;
672
- readonly variant: "primary" | "secondary" | "tertiary";
673
- readonly loadOnClick: boolean;
674
- readonly onClick?: (() => unknown) | (() => Promise<unknown>) | undefined;
675
- readonly icon?: import('./ElIcon.vue').ElIconProps | undefined;
676
- readonly iconRight?: boolean | undefined;
677
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
678
- disabled: {
679
- type: import('vue').PropType<boolean>;
680
- default: boolean;
681
- };
682
- type: {
683
- type: import('vue').PropType<"button" | "submit" | "reset">;
684
- default: string;
685
- };
686
- onClick: {
687
- type: import('vue').PropType<(() => unknown) | (() => Promise<unknown>)>;
688
- default: undefined;
689
- };
690
- label: {
691
- type: import('vue').PropType<string>;
692
- required: true;
693
- default: string;
694
- };
695
- size: {
696
- type: import('vue').PropType<"base" | "xs" | "sm" | "xl" | "l">;
697
- default: string;
698
- };
699
- dark: {
700
- type: import('vue').PropType<boolean>;
701
- default: boolean;
702
- };
703
- loading: {
704
- type: import('vue').PropType<boolean>;
705
- default: boolean;
706
- };
707
- icon: {
708
- type: import('vue').PropType<import('./ElIcon.vue').ElIconProps>;
709
- default: undefined;
710
- };
711
- iconRight: {
712
- type: import('vue').PropType<boolean>;
713
- };
714
- error: {
715
- type: import('vue').PropType<boolean>;
716
- default: boolean;
717
- };
718
- variant: {
719
- type: import('vue').PropType<"primary" | "secondary" | "tertiary">;
720
- default: string;
721
- };
722
- loadOnClick: {
723
- type: import('vue').PropType<boolean>;
724
- default: boolean;
725
- };
726
- }>>, "disabled" | "type" | "onClick" | "label" | "size" | "dark" | "loading" | "icon" | "error" | "variant" | "loadOnClick">, "size" | "error" | "variant">;
577
+ secondaryAction: Omit<InstanceType<typeof ElButton>["$props"], "error" | "size" | "variant">;
578
+ tertiaryAction: Omit<InstanceType<typeof ElButton>["$props"], "error" | "size" | "variant">;
727
579
  }, {}>, {
728
580
  default?(_: {}): any;
729
581
  }>;
@@ -1,17 +1,17 @@
1
1
  export declare const elSpinnerSize: readonly ["normal", "larger"];
2
2
  export type ElSpinnerSize = (typeof elSpinnerSize)[number];
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
- label?: string | undefined;
5
- size?: "normal" | "larger" | undefined;
6
- extraLoadingMsgAfterSeconds?: number | undefined;
4
+ label?: string;
5
+ size?: ElSpinnerSize;
6
+ extraLoadingMsgAfterSeconds?: number;
7
7
  }>, {
8
8
  label: string;
9
9
  size: string;
10
10
  extraLoadingMsgAfterSeconds: number;
11
11
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- label?: string | undefined;
13
- size?: "normal" | "larger" | undefined;
14
- extraLoadingMsgAfterSeconds?: number | undefined;
12
+ label?: string;
13
+ size?: ElSpinnerSize;
14
+ extraLoadingMsgAfterSeconds?: number;
15
15
  }>, {
16
16
  label: string;
17
17
  size: string;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
2
2
  label: string;
3
- focused?: boolean | undefined;
3
+ focused?: boolean;
4
4
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
5
  label: string;
6
- focused?: boolean | undefined;
6
+ focused?: boolean;
7
7
  }>>>, {}, {}>;
8
8
  export default _default;
9
9
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -5,21 +5,21 @@ export type ElTabColors = (typeof elTabColors)[number];
5
5
  declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
6
6
  label: string;
7
7
  status: ElTabStatues;
8
- color?: "primary" | "secondary" | undefined;
8
+ color?: ElTabColors;
9
9
  badge?: {
10
10
  visible: boolean;
11
- value?: string | undefined;
12
- } | undefined;
11
+ value?: string;
12
+ };
13
13
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
14
14
  click: () => void;
15
15
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
16
16
  label: string;
17
17
  status: ElTabStatues;
18
- color?: "primary" | "secondary" | undefined;
18
+ color?: ElTabColors;
19
19
  badge?: {
20
20
  visible: boolean;
21
- value?: string | undefined;
22
- } | undefined;
21
+ value?: string;
22
+ };
23
23
  }>>> & {
24
24
  onClick?: (() => any) | undefined;
25
25
  }, {}, {}>;
@@ -1,3 +1,5 @@
1
+ import { ElTabColors } from './ElTab.vue';
2
+
1
3
  export type ElTab = {
2
4
  value?: string;
3
5
  label: string;
@@ -10,13 +12,13 @@ export type ElTab = {
10
12
  declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
11
13
  modelValue: string;
12
14
  tabs: ElTab[];
13
- color?: "primary" | "secondary" | undefined;
15
+ color?: ElTabColors;
14
16
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
15
17
  "update:modelValue": (modelValue: string) => void;
16
18
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
17
19
  modelValue: string;
18
20
  tabs: ElTab[];
19
- color?: "primary" | "secondary" | undefined;
21
+ color?: ElTabColors;
20
22
  }>>> & {
21
23
  "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
22
24
  }, {}, {}>;
@@ -2,12 +2,12 @@ import { ElSortingHeaderDirection } from './ElSortingHeader.vue';
2
2
 
3
3
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
4
  label: string;
5
- sortingDirection?: "down" | "up" | undefined;
6
- alignRight?: boolean | undefined;
5
+ sortingDirection?: ElSortingHeaderDirection;
6
+ alignRight?: boolean;
7
7
  checkbox?: {
8
8
  value: boolean;
9
9
  intermediate: boolean;
10
- } | undefined;
10
+ };
11
11
  }>, {
12
12
  label: string;
13
13
  sortingDirection: undefined;
@@ -15,12 +15,12 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
15
15
  checkbox: undefined;
16
16
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
17
17
  label: string;
18
- sortingDirection?: "down" | "up" | undefined;
19
- alignRight?: boolean | undefined;
18
+ sortingDirection?: ElSortingHeaderDirection;
19
+ alignRight?: boolean;
20
20
  checkbox?: {
21
21
  value: boolean;
22
22
  intermediate: boolean;
23
- } | undefined;
23
+ };
24
24
  }>, {
25
25
  label: string;
26
26
  sortingDirection: undefined;
@@ -6,11 +6,11 @@ export declare const elTagSizes: readonly ["xxs", "xs"];
6
6
  export type ElTagSize = (typeof elTagSizes)[number];
7
7
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
8
  text: string;
9
- color?: "pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "red" | "purple" | "indigo" | "primary" | "blue" | "gray" | "teal" | undefined;
10
- size?: "xxs" | "xs" | undefined;
11
- outlined?: boolean | undefined;
12
- leadingIcon?: ElIconProps | undefined;
13
- trailingIcon?: ElIconProps | undefined;
9
+ color?: ElTagColor;
10
+ size?: ElTagSize;
11
+ outlined?: boolean;
12
+ leadingIcon?: ElIconProps;
13
+ trailingIcon?: ElIconProps;
14
14
  }>, {
15
15
  color: string;
16
16
  size: string;
@@ -19,11 +19,11 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
19
19
  trailingIcon: undefined;
20
20
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
21
21
  text: string;
22
- color?: "pink" | "yellow" | "orange" | "cyan" | "rose" | "green" | "red" | "purple" | "indigo" | "primary" | "blue" | "gray" | "teal" | undefined;
23
- size?: "xxs" | "xs" | undefined;
24
- outlined?: boolean | undefined;
25
- leadingIcon?: ElIconProps | undefined;
26
- trailingIcon?: ElIconProps | undefined;
22
+ color?: ElTagColor;
23
+ size?: ElTagSize;
24
+ outlined?: boolean;
25
+ leadingIcon?: ElIconProps;
26
+ trailingIcon?: ElIconProps;
27
27
  }>, {
28
28
  color: string;
29
29
  size: string;
@@ -5,14 +5,14 @@ export type ElTextCellColor = (typeof elTextCellColors)[number];
5
5
  export declare const getTextColorClass: (color?: ElTextCellColor, style?: ElTextCellStyle) => "text-neutral-darker" | "text-brandBlue-500" | "text-orange-500" | "text-error-active";
6
6
  declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
7
7
  label: string;
8
- style?: "normal" | "medium" | "underline" | undefined;
9
- colorText?: "orange" | "error" | "neutral" | undefined;
8
+ style?: ElTextCellStyle;
9
+ colorText?: ElTextCellColor;
10
10
  }>, {
11
11
  style: string;
12
12
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
13
  label: string;
14
- style?: "normal" | "medium" | "underline" | undefined;
15
- colorText?: "orange" | "error" | "neutral" | undefined;
14
+ style?: ElTextCellStyle;
15
+ colorText?: ElTextCellColor;
16
16
  }>, {
17
17
  style: string;
18
18
  }>>>, {
@@ -2,10 +2,10 @@ export declare const elTooltipPositions: readonly ["bottom-left", "bottom", "bot
2
2
  export type ElTooltipPosition = (typeof elTooltipPositions)[number];
3
3
  declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<{
4
4
  text: string;
5
- position?: "bottom-left" | "bottom" | "bottom-right" | "top-left" | "top" | "top-right" | "left-start" | "left" | "left-end" | "right-start" | "right" | "right-end" | undefined;
5
+ position?: ElTooltipPosition;
6
6
  }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
7
7
  text: string;
8
- position?: "bottom-left" | "bottom" | "bottom-right" | "top-left" | "top" | "top-right" | "left-start" | "left" | "left-end" | "right-start" | "right" | "right-end" | undefined;
8
+ position?: ElTooltipPosition;
9
9
  }>>>, {}, {}>, {
10
10
  default?(_: {}): any;
11
11
  }>;