@wizleap-inc/wiz-ui-next 0.5.3 → 0.6.1

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 (35) hide show
  1. package/dist/components/base/buttons/icon/icon.vue.d.ts +5 -5
  2. package/dist/components/base/buttons/toggle/toggle.vue.d.ts +12 -4
  3. package/dist/components/base/dialog/dialog.vue.d.ts +5 -5
  4. package/dist/components/base/header/header.vue.d.ts +5 -5
  5. package/dist/components/base/inputs/base/base.vue.d.ts +19 -7
  6. package/dist/components/base/inputs/checkbox/types.d.ts +1 -0
  7. package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +32 -3
  8. package/dist/components/base/inputs/password/password.vue.d.ts +25 -14
  9. package/dist/components/base/inputs/radio/types.d.ts +1 -0
  10. package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +1 -1
  11. package/dist/components/base/inputs/text/text.vue.d.ts +42 -16
  12. package/dist/components/base/inputs/toggle-switch/toggle-switch.vue.d.ts +8 -0
  13. package/dist/components/base/inputs/upload/upload.vue.d.ts +21 -11
  14. package/dist/components/base/progress-bar/progress-bar.vue.d.ts +56 -11
  15. package/dist/components/base/text/text.vue.d.ts +32 -3
  16. package/dist/components/base/textarea/text-area.vue.d.ts +6 -6
  17. package/dist/components/base/tooltip/tooltip.vue.d.ts +25 -8
  18. package/dist/components/custom/chat/card/chat-card.vue.d.ts +1471 -48
  19. package/dist/components/custom/chat/form/chat-form.vue.d.ts +11 -11
  20. package/dist/components/custom/chat/item/chat-item.vue.d.ts +207 -3
  21. package/dist/components/custom/chat/types.d.ts +1 -1
  22. package/dist/components/custom/form/control.vue.d.ts +40 -3
  23. package/dist/components/custom/notification/list/list.vue.d.ts +32 -3
  24. package/dist/components/custom/notification/notification.vue.d.ts +32 -3
  25. package/dist/components/custom/notification/panel/panel.vue.d.ts +32 -3
  26. package/dist/components/icons/camera.vue.d.ts +2 -0
  27. package/dist/components/icons/content-copy.vue.d.ts +2 -0
  28. package/dist/components/icons/description.vue.d.ts +2 -0
  29. package/dist/components/icons/index.d.ts +6 -2
  30. package/dist/components/icons/search.vue.d.ts +2 -0
  31. package/dist/index.d.ts +1 -1
  32. package/dist/style.css +1 -1
  33. package/dist/wiz-ui.es.js +2592 -2376
  34. package/dist/wiz-ui.umd.js +6 -5
  35. package/package.json +3 -3
@@ -6,7 +6,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
6
6
  required: true;
7
7
  };
8
8
  variant: {
9
- type: PropType<"transparent" | "link" | "sub" | "primary">;
9
+ type: PropType<"link" | "transparent" | "sub" | "primary">;
10
10
  required: false;
11
11
  default: string;
12
12
  };
@@ -25,8 +25,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
25
25
  emits: (event: "click") => void;
26
26
  onClick: () => true | void;
27
27
  readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
28
- readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
29
- readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
28
+ readonly iconButtonSVGStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
29
+ readonly iconButtonStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
30
30
  readonly iconButtonDisabledStyle: string;
31
31
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
32
32
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -35,7 +35,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
35
35
  required: true;
36
36
  };
37
37
  variant: {
38
- type: PropType<"transparent" | "link" | "sub" | "primary">;
38
+ type: PropType<"link" | "transparent" | "sub" | "primary">;
39
39
  required: false;
40
40
  default: string;
41
41
  };
@@ -54,6 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
54
54
  }, {
55
55
  size: "sm" | "md" | "lg" | "xl";
56
56
  disabled: boolean;
57
- variant: "transparent" | "link" | "sub" | "primary";
57
+ variant: "link" | "transparent" | "sub" | "primary";
58
58
  }>;
59
59
  export default _sfc_main;
@@ -24,10 +24,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
24
24
  required: false;
25
25
  default: string;
26
26
  };
27
+ modelValue: {
28
+ type: BooleanConstructor;
29
+ required: true;
30
+ };
27
31
  }, {
28
32
  props: any;
29
- isActive: import("vue").Ref<boolean>;
30
- emits: (event: "click") => void;
33
+ emits: (event: "update:modelValue", value: boolean) => void;
34
+ isActive: import("vue").WritableComputedRef<boolean>;
31
35
  onClick: () => void;
32
36
  iconSize: import("vue").ComputedRef<"xl3" | "xl" | "xl2" | undefined>;
33
37
  readonly toggleButtonStyle: string;
@@ -541,7 +545,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
541
545
  reverse: boolean;
542
546
  wrap: boolean;
543
547
  }>;
544
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
548
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
545
549
  inActiveIcon: {
546
550
  type: PropType<TIcon>;
547
551
  required: true;
@@ -565,8 +569,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
565
569
  required: false;
566
570
  default: string;
567
571
  };
572
+ modelValue: {
573
+ type: BooleanConstructor;
574
+ required: true;
575
+ };
568
576
  }>> & {
569
- onClick?: ((...args: any[]) => any) | undefined;
577
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
570
578
  }, {
571
579
  size: "sm" | "md" | "lg";
572
580
  disabled: boolean;
@@ -32,7 +32,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
32
32
  required: true;
33
33
  };
34
34
  variant: {
35
- type: PropType<"transparent" | "link" | "sub" | "primary">;
35
+ type: PropType<"link" | "transparent" | "sub" | "primary">;
36
36
  required: false;
37
37
  default: string;
38
38
  };
@@ -51,8 +51,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
51
51
  emits: (event: "click") => void;
52
52
  onClick: () => true | void;
53
53
  readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
54
- readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
55
- readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
54
+ readonly iconButtonSVGStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
55
+ readonly iconButtonStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
56
56
  readonly iconButtonDisabledStyle: string;
57
57
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
58
58
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -61,7 +61,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
61
61
  required: true;
62
62
  };
63
63
  variant: {
64
- type: PropType<"transparent" | "link" | "sub" | "primary">;
64
+ type: PropType<"link" | "transparent" | "sub" | "primary">;
65
65
  required: false;
66
66
  default: string;
67
67
  };
@@ -80,7 +80,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
80
80
  }, {
81
81
  size: "sm" | "md" | "lg" | "xl";
82
82
  disabled: boolean;
83
- variant: "transparent" | "link" | "sub" | "primary";
83
+ variant: "link" | "transparent" | "sub" | "primary";
84
84
  }>;
85
85
  readonly WizCard: import("vue").DefineComponent<{
86
86
  title: {
@@ -492,7 +492,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
492
492
  required: true;
493
493
  };
494
494
  variant: {
495
- type: PropType<"transparent" | "link" | "sub" | "primary">;
495
+ type: PropType<"link" | "transparent" | "sub" | "primary">;
496
496
  required: false;
497
497
  default: string;
498
498
  };
@@ -511,8 +511,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
511
511
  emits: (event: "click") => void;
512
512
  onClick: () => true | void;
513
513
  readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
514
- readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
515
- readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
514
+ readonly iconButtonSVGStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
515
+ readonly iconButtonStyle: Record<"link" | "transparent" | "sub" | "primary", string>;
516
516
  readonly iconButtonDisabledStyle: string;
517
517
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
518
518
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -521,7 +521,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
521
521
  required: true;
522
522
  };
523
523
  variant: {
524
- type: PropType<"transparent" | "link" | "sub" | "primary">;
524
+ type: PropType<"link" | "transparent" | "sub" | "primary">;
525
525
  required: false;
526
526
  default: string;
527
527
  };
@@ -540,7 +540,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
540
540
  }, {
541
541
  size: "sm" | "md" | "lg" | "xl";
542
542
  disabled: boolean;
543
- variant: "transparent" | "link" | "sub" | "primary";
543
+ variant: "link" | "transparent" | "sub" | "primary";
544
544
  }>;
545
545
  readonly WizIMenu: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
546
546
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -1,10 +1,10 @@
1
1
  import { PropType } from "vue";
2
2
  declare const _sfc_main: import("vue").DefineComponent<{
3
- modelValue: {
3
+ id: {
4
4
  type: StringConstructor;
5
- required: true;
5
+ required: false;
6
6
  };
7
- name: {
7
+ modelValue: {
8
8
  type: StringConstructor;
9
9
  required: true;
10
10
  };
@@ -33,22 +33,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
33
33
  type: BooleanConstructor;
34
34
  required: false;
35
35
  };
36
+ spaceType: {
37
+ type: PropType<"left" | "right" | "none" | "both">;
38
+ required: false;
39
+ default: string;
40
+ };
36
41
  }, {
37
42
  props: any;
38
43
  emit: (e: "update:modelValue", value: string) => void;
39
- value: import("vue").WritableComputedRef<string>;
44
+ textValue: import("vue").WritableComputedRef<string>;
40
45
  hasFocus: import("vue").Ref<boolean>;
41
46
  computedWidth: import("vue").ComputedRef<string>;
42
47
  state: import("vue").ComputedRef<"default" | "active" | "error">;
43
48
  readonly baseInputStyle: string;
44
49
  readonly baseInputDisabledStyle: string;
50
+ readonly baseInputPaddingStyle: Record<"left" | "right" | "none" | "both", string>;
45
51
  readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
46
52
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
47
- modelValue: {
53
+ id: {
48
54
  type: StringConstructor;
49
- required: true;
55
+ required: false;
50
56
  };
51
- name: {
57
+ modelValue: {
52
58
  type: StringConstructor;
53
59
  required: true;
54
60
  };
@@ -77,6 +83,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
77
83
  type: BooleanConstructor;
78
84
  required: false;
79
85
  };
86
+ spaceType: {
87
+ type: PropType<"left" | "right" | "none" | "both">;
88
+ required: false;
89
+ default: string;
90
+ };
80
91
  }>> & {
81
92
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
82
93
  }, {
@@ -84,5 +95,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
84
95
  disabled: boolean;
85
96
  expand: boolean;
86
97
  error: boolean;
98
+ spaceType: "left" | "right" | "none" | "both";
87
99
  }>;
88
100
  export default _sfc_main;
@@ -2,4 +2,5 @@ export interface CheckBoxOption {
2
2
  label: string;
3
3
  value: number;
4
4
  disabled?: boolean;
5
+ key: string;
5
6
  }
@@ -658,10 +658,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
658
658
  }>;
659
659
  readonly WizText: import("vue").DefineComponent<{
660
660
  as: {
661
- type: import("vue").PropType<"p" | "span">;
661
+ type: import("vue").PropType<"label" | "p" | "span">;
662
662
  required: false;
663
663
  default: string;
664
664
  };
665
+ htmlFor: {
666
+ type: StringConstructor;
667
+ required: false;
668
+ };
665
669
  color: {
666
670
  type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
667
671
  required: false;
@@ -693,6 +697,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
693
697
  type: StringConstructor;
694
698
  required: false;
695
699
  };
700
+ breakAll: {
701
+ type: BooleanConstructor;
702
+ required: false;
703
+ };
704
+ textAlign: {
705
+ type: import("vue").PropType<"left" | "right" | "center" | "end" | "start">;
706
+ required: false;
707
+ default: string;
708
+ };
696
709
  }, {
697
710
  props: any;
698
711
  overflowStyles: import("vue").ComputedRef<{
@@ -711,16 +724,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
711
724
  readonly textDefaultLineHeightStyle: string;
712
725
  readonly textFontWeightStyle: Record<"default" | "bold", string>;
713
726
  readonly textWordBreakStyle: string;
727
+ readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
714
728
  readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
715
729
  readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
716
730
  readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
717
731
  readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
718
732
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
719
733
  as: {
720
- type: import("vue").PropType<"p" | "span">;
734
+ type: import("vue").PropType<"label" | "p" | "span">;
721
735
  required: false;
722
736
  default: string;
723
737
  };
738
+ htmlFor: {
739
+ type: StringConstructor;
740
+ required: false;
741
+ };
724
742
  color: {
725
743
  type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
726
744
  required: false;
@@ -752,12 +770,23 @@ declare const _sfc_main: import("vue").DefineComponent<{
752
770
  type: StringConstructor;
753
771
  required: false;
754
772
  };
773
+ breakAll: {
774
+ type: BooleanConstructor;
775
+ required: false;
776
+ };
777
+ textAlign: {
778
+ type: import("vue").PropType<"left" | "right" | "center" | "end" | "start">;
779
+ required: false;
780
+ default: string;
781
+ };
755
782
  }>>, {
756
783
  bold: boolean;
757
784
  color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
758
785
  fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
786
+ textAlign: "left" | "right" | "center" | "end" | "start";
759
787
  whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
760
- as: "p" | "span";
788
+ as: "label" | "p" | "span";
789
+ breakAll: boolean;
761
790
  }>;
762
791
  readonly WizPopup: import("vue").DefineComponent<{
763
792
  layer: {
@@ -1,9 +1,9 @@
1
1
  declare const _sfc_main: import("vue").DefineComponent<{
2
- modelValue: {
2
+ id: {
3
3
  type: StringConstructor;
4
- required: true;
4
+ required: false;
5
5
  };
6
- name: {
6
+ modelValue: {
7
7
  type: StringConstructor;
8
8
  required: true;
9
9
  };
@@ -38,17 +38,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
38
38
  PASSWORD_VISIBLE_TOGGLE: string;
39
39
  };
40
40
  readonly passwordStyle: string;
41
- readonly passwordInputStyle: string;
42
41
  readonly passwordExpandStyle: Record<"default" | "expand", string>;
43
42
  readonly passwordVisibleIconStyle: string;
44
43
  readonly passwordVisibleIconActiveStyle: string;
45
44
  readonly WizIEye: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
46
45
  readonly PrivateBaseInput: import("vue").DefineComponent<{
47
- modelValue: {
46
+ id: {
48
47
  type: StringConstructor;
49
- required: true;
48
+ required: false;
50
49
  };
51
- name: {
50
+ modelValue: {
52
51
  type: StringConstructor;
53
52
  required: true;
54
53
  };
@@ -77,22 +76,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
77
76
  type: BooleanConstructor;
78
77
  required: false;
79
78
  };
79
+ spaceType: {
80
+ type: import("vue").PropType<"left" | "right" | "none" | "both">;
81
+ required: false;
82
+ default: string;
83
+ };
80
84
  }, {
81
85
  props: any;
82
86
  emit: (e: "update:modelValue", value: string) => void;
83
- value: import("vue").WritableComputedRef<string>;
87
+ textValue: import("vue").WritableComputedRef<string>;
84
88
  hasFocus: import("vue").Ref<boolean>;
85
89
  computedWidth: import("vue").ComputedRef<string>;
86
90
  state: import("vue").ComputedRef<"default" | "active" | "error">;
87
91
  readonly baseInputStyle: string;
88
92
  readonly baseInputDisabledStyle: string;
93
+ readonly baseInputPaddingStyle: Record<"left" | "right" | "none" | "both", string>;
89
94
  readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
90
95
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
91
- modelValue: {
96
+ id: {
92
97
  type: StringConstructor;
93
- required: true;
98
+ required: false;
94
99
  };
95
- name: {
100
+ modelValue: {
96
101
  type: StringConstructor;
97
102
  required: true;
98
103
  };
@@ -121,6 +126,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
121
126
  type: BooleanConstructor;
122
127
  required: false;
123
128
  };
129
+ spaceType: {
130
+ type: import("vue").PropType<"left" | "right" | "none" | "both">;
131
+ required: false;
132
+ default: string;
133
+ };
124
134
  }>> & {
125
135
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
126
136
  }, {
@@ -128,13 +138,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
128
138
  disabled: boolean;
129
139
  expand: boolean;
130
140
  error: boolean;
141
+ spaceType: "left" | "right" | "none" | "both";
131
142
  }>;
132
143
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
133
- modelValue: {
144
+ id: {
134
145
  type: StringConstructor;
135
- required: true;
146
+ required: false;
136
147
  };
137
- name: {
148
+ modelValue: {
138
149
  type: StringConstructor;
139
150
  required: true;
140
151
  };
@@ -1,5 +1,6 @@
1
1
  export interface RadioOption {
2
2
  label: string;
3
3
  value: number;
4
+ key: string;
4
5
  disabled?: boolean;
5
6
  }
@@ -50,9 +50,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
50
50
  readonly selectBoxInnerBoxSelectedValueStyle: string;
51
51
  readonly selectBoxInnerBoxLessStyle: string;
52
52
  readonly selectBoxInnerBoxMoreStyle: string;
53
- readonly selectBoxInnerBoxSelectedStyle: string;
54
53
  readonly selectBoxSelectorStyle: string;
55
54
  readonly selectBoxSelectorOptionStyle: string;
55
+ readonly selectBoxPlaceholderStyle: string;
56
56
  readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
57
57
  readonly WizPopupContainer: import("vue").DefineComponent<{
58
58
  modelValue: {
@@ -1,9 +1,11 @@
1
+ import { PropType } from "vue";
2
+ import { TIcon } from '../../../../components/icons';
1
3
  declare const _sfc_main: import("vue").DefineComponent<{
2
- modelValue: {
4
+ id: {
3
5
  type: StringConstructor;
4
- required: true;
6
+ required: false;
5
7
  };
6
- name: {
8
+ modelValue: {
7
9
  type: StringConstructor;
8
10
  required: true;
9
11
  };
@@ -24,21 +26,29 @@ declare const _sfc_main: import("vue").DefineComponent<{
24
26
  type: BooleanConstructor;
25
27
  required: false;
26
28
  };
29
+ icon: {
30
+ type: PropType<TIcon>;
31
+ required: false;
32
+ };
27
33
  }, {
28
34
  props: any;
29
35
  emit: (e: "update:modelValue", value: string) => void;
30
- value: import("vue").WritableComputedRef<string>;
36
+ textValue: import("vue").WritableComputedRef<string>;
31
37
  form: {
32
38
  isError: Readonly<import("vue").Ref<boolean>>;
33
39
  setIsError: (value: boolean) => void;
34
40
  } | undefined;
35
41
  isError: import("vue").ComputedRef<boolean>;
42
+ computedExpand: import("vue").ComputedRef<"default" | "expand">;
43
+ readonly textInputStyle: string;
44
+ readonly textInputExpandStyle: Record<"default" | "expand", string>;
45
+ readonly textInputIconStyle: string;
36
46
  readonly PrivateBaseInput: import("vue").DefineComponent<{
37
- modelValue: {
47
+ id: {
38
48
  type: StringConstructor;
39
- required: true;
49
+ required: false;
40
50
  };
41
- name: {
51
+ modelValue: {
42
52
  type: StringConstructor;
43
53
  required: true;
44
54
  };
@@ -55,7 +65,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
55
65
  required: false;
56
66
  };
57
67
  type: {
58
- type: import("vue").PropType<"text" | "password">;
68
+ type: PropType<"text" | "password">;
59
69
  required: false;
60
70
  };
61
71
  width: {
@@ -67,22 +77,28 @@ declare const _sfc_main: import("vue").DefineComponent<{
67
77
  type: BooleanConstructor;
68
78
  required: false;
69
79
  };
80
+ spaceType: {
81
+ type: PropType<"left" | "right" | "none" | "both">;
82
+ required: false;
83
+ default: string;
84
+ };
70
85
  }, {
71
86
  props: any;
72
87
  emit: (e: "update:modelValue", value: string) => void;
73
- value: import("vue").WritableComputedRef<string>;
88
+ textValue: import("vue").WritableComputedRef<string>;
74
89
  hasFocus: import("vue").Ref<boolean>;
75
90
  computedWidth: import("vue").ComputedRef<string>;
76
91
  state: import("vue").ComputedRef<"default" | "active" | "error">;
77
92
  readonly baseInputStyle: string;
78
93
  readonly baseInputDisabledStyle: string;
94
+ readonly baseInputPaddingStyle: Record<"left" | "right" | "none" | "both", string>;
79
95
  readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
80
96
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
81
- modelValue: {
97
+ id: {
82
98
  type: StringConstructor;
83
- required: true;
99
+ required: false;
84
100
  };
85
- name: {
101
+ modelValue: {
86
102
  type: StringConstructor;
87
103
  required: true;
88
104
  };
@@ -99,7 +115,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
99
115
  required: false;
100
116
  };
101
117
  type: {
102
- type: import("vue").PropType<"text" | "password">;
118
+ type: PropType<"text" | "password">;
103
119
  required: false;
104
120
  };
105
121
  width: {
@@ -111,6 +127,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
111
127
  type: BooleanConstructor;
112
128
  required: false;
113
129
  };
130
+ spaceType: {
131
+ type: PropType<"left" | "right" | "none" | "both">;
132
+ required: false;
133
+ default: string;
134
+ };
114
135
  }>> & {
115
136
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
116
137
  }, {
@@ -118,13 +139,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
118
139
  disabled: boolean;
119
140
  expand: boolean;
120
141
  error: boolean;
142
+ spaceType: "left" | "right" | "none" | "both";
121
143
  }>;
122
144
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
123
- modelValue: {
145
+ id: {
124
146
  type: StringConstructor;
125
- required: true;
147
+ required: false;
126
148
  };
127
- name: {
149
+ modelValue: {
128
150
  type: StringConstructor;
129
151
  required: true;
130
152
  };
@@ -145,6 +167,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
145
167
  type: BooleanConstructor;
146
168
  required: false;
147
169
  };
170
+ icon: {
171
+ type: PropType<TIcon>;
172
+ required: false;
173
+ };
148
174
  }>> & {
149
175
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
150
176
  }, {
@@ -3,6 +3,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
3
3
  type: BooleanConstructor;
4
4
  required: true;
5
5
  };
6
+ label: {
7
+ type: StringConstructor;
8
+ required: true;
9
+ };
6
10
  }, {
7
11
  props: any;
8
12
  emit: (e: "update:modelValue", value: boolean) => void;
@@ -16,6 +20,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
16
20
  type: BooleanConstructor;
17
21
  required: true;
18
22
  };
23
+ label: {
24
+ type: StringConstructor;
25
+ required: true;
26
+ };
19
27
  }>> & {
20
28
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
21
29
  }, {}>;
@@ -1,12 +1,16 @@
1
1
  import { PropType } from "vue";
2
2
  declare const _sfc_main: import("vue").DefineComponent<{
3
- uploadUrl: {
4
- type: StringConstructor;
3
+ /**
4
+ * @example xhrLauncher: () => new XMLHttpRequest()
5
+ * */
6
+ xhrLauncher: {
7
+ type: PropType<() => XMLHttpRequest>;
5
8
  required: true;
6
9
  };
7
- requestHeaders: {
8
- type: PropType<Record<string, string>>;
10
+ multiple: {
11
+ type: BooleanConstructor;
9
12
  required: false;
13
+ default: boolean;
10
14
  };
11
15
  }, {
12
16
  props: any;
@@ -30,8 +34,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
30
34
  progress: import("vue").ComputedRef<number>;
31
35
  dragEnter: () => void;
32
36
  dragLeave: () => void;
33
- uploadFile: (file: File, uploadUrl: string, onProgress: (progress: number) => void, onComplete: () => void) => Promise<void>;
34
- uploadFileList: (fileList: FileList, uploadUrl: string) => Promise<void>;
37
+ uploadFile: (file: File, onProgress: (progress: number) => void, onComplete: () => void) => void;
38
+ uploadFileList: (fileList: FileList) => Promise<void>;
35
39
  dropFile: (event: DragEvent) => void;
36
40
  selectFile: (event: Event) => void;
37
41
  readonly uploadStyle: string;
@@ -1516,13 +1520,19 @@ declare const _sfc_main: import("vue").DefineComponent<{
1516
1520
  };
1517
1521
  }>>, {}>;
1518
1522
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
1519
- uploadUrl: {
1520
- type: StringConstructor;
1523
+ /**
1524
+ * @example xhrLauncher: () => new XMLHttpRequest()
1525
+ * */
1526
+ xhrLauncher: {
1527
+ type: PropType<() => XMLHttpRequest>;
1521
1528
  required: true;
1522
1529
  };
1523
- requestHeaders: {
1524
- type: PropType<Record<string, string>>;
1530
+ multiple: {
1531
+ type: BooleanConstructor;
1525
1532
  required: false;
1533
+ default: boolean;
1526
1534
  };
1527
- }>>, {}>;
1535
+ }>>, {
1536
+ multiple: boolean;
1537
+ }>;
1528
1538
  export default _sfc_main;