@wizleap-inc/wiz-ui-next 2.9.0 → 2.11.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.
- package/dist/components/base/buttons/icon/icon.vue.d.ts +9 -1
- package/dist/components/base/buttons/text/text.vue.d.ts +10 -2
- package/dist/components/base/buttons/tiny/tiny.vue.d.ts +8 -0
- package/dist/components/base/buttons/toggle/toggle.vue.d.ts +9 -1
- package/dist/components/base/dialog/dialog.vue.d.ts +9 -1
- package/dist/components/base/full-modal-view/full-modal-view.vue.d.ts +9 -1
- package/dist/components/base/header/header.vue.d.ts +9 -1
- package/dist/components/base/information-panel/information-panel.vue.d.ts +9 -1
- package/dist/components/base/inputs/checkbox/index.d.ts +1 -1
- package/dist/components/base/inputs/checkbox-new/checkbox-new.vue.d.ts +124 -0
- package/dist/components/base/inputs/checkbox-new/index.d.ts +1 -0
- package/dist/components/base/inputs/index.d.ts +2 -0
- package/dist/components/base/inputs/password/password.vue.d.ts +2 -2
- package/dist/components/base/inputs/radio/index.d.ts +1 -1
- package/dist/components/base/inputs/radio-new/index.d.ts +1 -0
- package/dist/components/base/inputs/radio-new/radio-new.vue.d.ts +83 -0
- package/dist/components/base/inputs/search-input/search-input.vue.d.ts +465 -29
- package/dist/components/base/inputs/search-input/search-popup.vue.d.ts +233 -13
- package/dist/components/base/inputs/search-input/types.d.ts +6 -2
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +77 -77
- package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +45 -45
- package/dist/components/base/snackbar/snackbar.vue.d.ts +45 -45
- package/dist/components/base/tag/tag.vue.d.ts +126 -5
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +1682 -1553
- package/dist/components/custom/chat/form/chat-form.vue.d.ts +10 -2
- package/dist/components/custom/form/control.vue.d.ts +126 -5
- package/dist/components/manager/provider.vue.d.ts +45 -45
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +3078 -2817
- package/dist/wiz-ui.umd.js +16 -16
- package/package.json +3 -3
|
@@ -24,14 +24,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
24
24
|
required: false;
|
|
25
25
|
default: string;
|
|
26
26
|
};
|
|
27
|
+
type: {
|
|
28
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
27
31
|
}, {
|
|
28
32
|
props: any;
|
|
29
33
|
emits: (event: "click") => void;
|
|
30
34
|
onClick: () => true | void;
|
|
31
35
|
readonly getRelativeFontSize: (key: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", diffIndex: number) => "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
36
|
+
readonly iconButtonDisabledStyle: string;
|
|
32
37
|
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
33
38
|
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
34
|
-
readonly iconButtonDisabledStyle: string;
|
|
35
39
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
36
40
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
37
41
|
icon: {
|
|
@@ -57,6 +61,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
57
61
|
required: false;
|
|
58
62
|
default: string;
|
|
59
63
|
};
|
|
64
|
+
type: {
|
|
65
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
66
|
+
required: false;
|
|
67
|
+
};
|
|
60
68
|
}>> & {
|
|
61
69
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
62
70
|
}, {
|
|
@@ -35,17 +35,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
35
35
|
required: false;
|
|
36
36
|
default: string;
|
|
37
37
|
};
|
|
38
|
+
type: {
|
|
39
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
40
|
+
required: false;
|
|
41
|
+
};
|
|
38
42
|
}, {
|
|
39
43
|
props: any;
|
|
40
44
|
emit: (e: "click") => void;
|
|
41
45
|
onClick: () => true | void;
|
|
42
46
|
variantColor: import("vue").ComputedRef<"white.800" | "green.800" | undefined>;
|
|
43
47
|
iconSize: import("vue").ComputedRef<"xl3" | "lg" | "xl" | "xl2" | undefined>;
|
|
44
|
-
readonly textButtonStyle: Record<"sub" | "primary", string>;
|
|
45
48
|
readonly textButtonDisabledStyle: string;
|
|
46
|
-
readonly textButtonRoundStyle: string;
|
|
47
49
|
readonly textButtonExpandStyle: string;
|
|
50
|
+
readonly textButtonRoundStyle: string;
|
|
48
51
|
readonly textButtonSizeStyle: Record<"xs" | "sm" | "md" | "lg", string>;
|
|
52
|
+
readonly textButtonStyle: Record<"sub" | "primary", string>;
|
|
49
53
|
readonly WizHStack: import("vue").DefineComponent<{
|
|
50
54
|
align: {
|
|
51
55
|
type: PropType<"stretch" | "center" | "end" | "start">;
|
|
@@ -588,6 +592,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
588
592
|
required: false;
|
|
589
593
|
default: string;
|
|
590
594
|
};
|
|
595
|
+
type: {
|
|
596
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
597
|
+
required: false;
|
|
598
|
+
};
|
|
591
599
|
}>> & {
|
|
592
600
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
593
601
|
}, {
|
|
@@ -37,6 +37,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
37
37
|
required: false;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
|
+
type: {
|
|
41
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
42
|
+
required: false;
|
|
43
|
+
};
|
|
40
44
|
}, {
|
|
41
45
|
isHover: import("vue").Ref<boolean>;
|
|
42
46
|
props: any;
|
|
@@ -594,6 +598,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
594
598
|
required: false;
|
|
595
599
|
default: string;
|
|
596
600
|
};
|
|
601
|
+
type: {
|
|
602
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
603
|
+
required: false;
|
|
604
|
+
};
|
|
597
605
|
}>> & {
|
|
598
606
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
599
607
|
}, {
|
|
@@ -28,17 +28,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
28
28
|
type: BooleanConstructor;
|
|
29
29
|
required: true;
|
|
30
30
|
};
|
|
31
|
+
type: {
|
|
32
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
31
35
|
}, {
|
|
32
36
|
props: any;
|
|
33
37
|
emits: (event: "update:modelValue", value: boolean) => void;
|
|
34
38
|
isActive: import("vue").WritableComputedRef<boolean>;
|
|
35
39
|
onClick: () => void;
|
|
36
40
|
iconSize: import("vue").ComputedRef<"xl3" | "xl" | "xl2" | undefined>;
|
|
37
|
-
readonly toggleButtonStyle: string;
|
|
38
41
|
readonly toggleButtonActiveStyle: string;
|
|
39
42
|
readonly toggleButtonDisabledStyle: string;
|
|
40
43
|
readonly toggleButtonRoundedStyle: string;
|
|
41
44
|
readonly toggleButtonSizeStyle: Record<"sm" | "md" | "lg", string>;
|
|
45
|
+
readonly toggleButtonStyle: string;
|
|
42
46
|
WizIcon: import("vue").DefineComponent<{
|
|
43
47
|
icon: {
|
|
44
48
|
type: PropType<TIcon>;
|
|
@@ -574,6 +578,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
574
578
|
type: BooleanConstructor;
|
|
575
579
|
required: true;
|
|
576
580
|
};
|
|
581
|
+
type: {
|
|
582
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
583
|
+
required: false;
|
|
584
|
+
};
|
|
577
585
|
}>> & {
|
|
578
586
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
579
587
|
}, {
|
|
@@ -95,14 +95,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
95
95
|
required: false;
|
|
96
96
|
default: string;
|
|
97
97
|
};
|
|
98
|
+
type: {
|
|
99
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
100
|
+
required: false;
|
|
101
|
+
};
|
|
98
102
|
}, {
|
|
99
103
|
props: any;
|
|
100
104
|
emits: (event: "click") => void;
|
|
101
105
|
onClick: () => true | void;
|
|
102
106
|
readonly getRelativeFontSize: (key: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", diffIndex: number) => "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
107
|
+
readonly iconButtonDisabledStyle: string;
|
|
103
108
|
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
104
109
|
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
105
|
-
readonly iconButtonDisabledStyle: string;
|
|
106
110
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
107
111
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
108
112
|
icon: {
|
|
@@ -128,6 +132,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
128
132
|
required: false;
|
|
129
133
|
default: string;
|
|
130
134
|
};
|
|
135
|
+
type: {
|
|
136
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
137
|
+
required: false;
|
|
138
|
+
};
|
|
131
139
|
}>> & {
|
|
132
140
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
133
141
|
}, {
|
|
@@ -592,14 +592,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
592
592
|
required: false;
|
|
593
593
|
default: string;
|
|
594
594
|
};
|
|
595
|
+
type: {
|
|
596
|
+
type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
597
|
+
required: false;
|
|
598
|
+
};
|
|
595
599
|
}, {
|
|
596
600
|
props: any;
|
|
597
601
|
emits: (event: "click") => void;
|
|
598
602
|
onClick: () => true | void;
|
|
599
603
|
readonly getRelativeFontSize: (key: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", diffIndex: number) => "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
604
|
+
readonly iconButtonDisabledStyle: string;
|
|
600
605
|
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
601
606
|
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
602
|
-
readonly iconButtonDisabledStyle: string;
|
|
603
607
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
604
608
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
605
609
|
icon: {
|
|
@@ -625,6 +629,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
625
629
|
required: false;
|
|
626
630
|
default: string;
|
|
627
631
|
};
|
|
632
|
+
type: {
|
|
633
|
+
type: import("vue").PropType<"button" | "reset" | "submit">;
|
|
634
|
+
required: false;
|
|
635
|
+
};
|
|
628
636
|
}>> & {
|
|
629
637
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
630
638
|
}, {
|
|
@@ -548,14 +548,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
548
548
|
required: false;
|
|
549
549
|
default: string;
|
|
550
550
|
};
|
|
551
|
+
type: {
|
|
552
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
553
|
+
required: false;
|
|
554
|
+
};
|
|
551
555
|
}, {
|
|
552
556
|
props: any;
|
|
553
557
|
emits: (event: "click") => void;
|
|
554
558
|
onClick: () => true | void;
|
|
555
559
|
readonly getRelativeFontSize: (key: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", diffIndex: number) => "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
560
|
+
readonly iconButtonDisabledStyle: string;
|
|
556
561
|
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
557
562
|
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
558
|
-
readonly iconButtonDisabledStyle: string;
|
|
559
563
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
560
564
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
561
565
|
icon: {
|
|
@@ -581,6 +585,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
581
585
|
required: false;
|
|
582
586
|
default: string;
|
|
583
587
|
};
|
|
588
|
+
type: {
|
|
589
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
590
|
+
required: false;
|
|
591
|
+
};
|
|
584
592
|
}>> & {
|
|
585
593
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
586
594
|
}, {
|
|
@@ -93,14 +93,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
93
93
|
required: false;
|
|
94
94
|
default: string;
|
|
95
95
|
};
|
|
96
|
+
type: {
|
|
97
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
98
|
+
required: false;
|
|
99
|
+
};
|
|
96
100
|
}, {
|
|
97
101
|
props: any;
|
|
98
102
|
emits: (event: "click") => void;
|
|
99
103
|
onClick: () => true | void;
|
|
100
104
|
readonly getRelativeFontSize: (key: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", diffIndex: number) => "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
105
|
+
readonly iconButtonDisabledStyle: string;
|
|
101
106
|
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
102
107
|
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
103
|
-
readonly iconButtonDisabledStyle: string;
|
|
104
108
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
105
109
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
106
110
|
icon: {
|
|
@@ -126,6 +130,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
126
130
|
required: false;
|
|
127
131
|
default: string;
|
|
128
132
|
};
|
|
133
|
+
type: {
|
|
134
|
+
type: PropType<"button" | "reset" | "submit">;
|
|
135
|
+
required: false;
|
|
136
|
+
};
|
|
129
137
|
}>> & {
|
|
130
138
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
131
139
|
}, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as WizCheckBox } from "./checkbox.vue";
|
|
1
|
+
export { /** @deprecated */ default as WizCheckBox } from "./checkbox.vue";
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import * as styles from "@wizleap-inc/wiz-ui-styles/bases/checkbox-new.css";
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
checked: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
value: {
|
|
8
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
id: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
required: false;
|
|
14
|
+
};
|
|
15
|
+
name: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
disabled: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
23
|
+
strikeThrough: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
bordered: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
31
|
+
error: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
props: any;
|
|
37
|
+
emit: (e: "update:checked", checked: boolean) => void;
|
|
38
|
+
actualChecked: import("vue").Ref<boolean>;
|
|
39
|
+
labelClass: import("vue").ComputedRef<(string | false | undefined)[]>;
|
|
40
|
+
handleChange: (e: Event) => void;
|
|
41
|
+
readonly styles: typeof styles;
|
|
42
|
+
readonly WizICheckBold: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
43
|
+
readonly WizIcon: import("vue").DefineComponent<{
|
|
44
|
+
icon: {
|
|
45
|
+
type: import("vue").PropType<import('../../../../components').TIcon>;
|
|
46
|
+
required: true;
|
|
47
|
+
};
|
|
48
|
+
color: {
|
|
49
|
+
type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys | "inherit">;
|
|
50
|
+
required: false;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
size: {
|
|
54
|
+
type: import("vue").PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
|
|
55
|
+
required: false;
|
|
56
|
+
default: string;
|
|
57
|
+
};
|
|
58
|
+
}, {
|
|
59
|
+
readonly iconStyle: string;
|
|
60
|
+
readonly iconSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
61
|
+
readonly iconDefaultStyle: string;
|
|
62
|
+
readonly fillStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
|
|
63
|
+
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
64
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
65
|
+
icon: {
|
|
66
|
+
type: import("vue").PropType<import('../../../../components').TIcon>;
|
|
67
|
+
required: true;
|
|
68
|
+
};
|
|
69
|
+
color: {
|
|
70
|
+
type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys | "inherit">;
|
|
71
|
+
required: false;
|
|
72
|
+
default: string;
|
|
73
|
+
};
|
|
74
|
+
size: {
|
|
75
|
+
type: import("vue").PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
|
|
76
|
+
required: false;
|
|
77
|
+
default: string;
|
|
78
|
+
};
|
|
79
|
+
}>>, {
|
|
80
|
+
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys | "inherit";
|
|
81
|
+
size: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
82
|
+
}>;
|
|
83
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:checked"[], "update:checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
+
checked: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
required: true;
|
|
87
|
+
};
|
|
88
|
+
value: {
|
|
89
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
90
|
+
required: false;
|
|
91
|
+
};
|
|
92
|
+
id: {
|
|
93
|
+
type: StringConstructor;
|
|
94
|
+
required: false;
|
|
95
|
+
};
|
|
96
|
+
name: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
required: false;
|
|
99
|
+
};
|
|
100
|
+
disabled: {
|
|
101
|
+
type: BooleanConstructor;
|
|
102
|
+
required: false;
|
|
103
|
+
};
|
|
104
|
+
strikeThrough: {
|
|
105
|
+
type: BooleanConstructor;
|
|
106
|
+
required: false;
|
|
107
|
+
};
|
|
108
|
+
bordered: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
required: false;
|
|
111
|
+
};
|
|
112
|
+
error: {
|
|
113
|
+
type: BooleanConstructor;
|
|
114
|
+
required: false;
|
|
115
|
+
};
|
|
116
|
+
}>> & {
|
|
117
|
+
"onUpdate:checked"?: ((...args: any[]) => any) | undefined;
|
|
118
|
+
}, {
|
|
119
|
+
disabled: boolean;
|
|
120
|
+
strikeThrough: boolean;
|
|
121
|
+
bordered: boolean;
|
|
122
|
+
error: boolean;
|
|
123
|
+
}>;
|
|
124
|
+
export default _sfc_main;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as WizCheckBoxNew } from "./checkbox-new.vue";
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from "./text";
|
|
2
2
|
export * from "./checkbox";
|
|
3
|
+
export * from "./checkbox-new";
|
|
3
4
|
export * from "./password";
|
|
4
5
|
export * from "./search-selector";
|
|
5
6
|
export * from "./selectbox";
|
|
6
7
|
export * from "./radio";
|
|
8
|
+
export * from "./radio-new";
|
|
7
9
|
export * from "./toggle-switch";
|
|
8
10
|
export * from "./panel-switch";
|
|
9
11
|
export * from "./timepicker";
|
|
@@ -79,10 +79,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
79
79
|
readonly CLOSE: "モーダルを閉じる";
|
|
80
80
|
};
|
|
81
81
|
};
|
|
82
|
-
readonly passwordStyle: string;
|
|
83
82
|
readonly passwordExpandStyle: Record<"default" | "expand", string>;
|
|
84
|
-
readonly
|
|
83
|
+
readonly passwordStyle: string;
|
|
85
84
|
readonly passwordVisibleIconActiveStyle: string;
|
|
85
|
+
readonly passwordVisibleIconStyle: string;
|
|
86
86
|
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<{}>>, {}>;
|
|
87
87
|
readonly PrivateBaseInput: import("vue").DefineComponent<{
|
|
88
88
|
id: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as WizRadio } from "./radio.vue";
|
|
1
|
+
export { /** @deprecated */ default as WizRadio } from "./radio.vue";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as WizRadioNew } from "./radio-new.vue";
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import * as styles from "@wizleap-inc/wiz-ui-styles/bases/radio-new.css";
|
|
2
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
checked: {
|
|
4
|
+
type: BooleanConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
value: {
|
|
8
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
11
|
+
id: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
required: false;
|
|
14
|
+
};
|
|
15
|
+
name: {
|
|
16
|
+
type: StringConstructor;
|
|
17
|
+
required: false;
|
|
18
|
+
};
|
|
19
|
+
disabled: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
23
|
+
strikeThrough: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
required: false;
|
|
26
|
+
};
|
|
27
|
+
bordered: {
|
|
28
|
+
type: BooleanConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
31
|
+
error: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: false;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
props: any;
|
|
37
|
+
emit: (e: "update:checked", checked: boolean) => void;
|
|
38
|
+
actualChecked: import("vue").Ref<boolean>;
|
|
39
|
+
labelClass: import("vue").ComputedRef<(string | false | undefined)[]>;
|
|
40
|
+
handleChange: (e: Event) => void;
|
|
41
|
+
readonly styles: typeof styles;
|
|
42
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:checked"[], "update:checked", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
43
|
+
checked: {
|
|
44
|
+
type: BooleanConstructor;
|
|
45
|
+
required: true;
|
|
46
|
+
};
|
|
47
|
+
value: {
|
|
48
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
49
|
+
required: false;
|
|
50
|
+
};
|
|
51
|
+
id: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
required: false;
|
|
54
|
+
};
|
|
55
|
+
name: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
required: false;
|
|
58
|
+
};
|
|
59
|
+
disabled: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
required: false;
|
|
62
|
+
};
|
|
63
|
+
strikeThrough: {
|
|
64
|
+
type: BooleanConstructor;
|
|
65
|
+
required: false;
|
|
66
|
+
};
|
|
67
|
+
bordered: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
required: false;
|
|
70
|
+
};
|
|
71
|
+
error: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
required: false;
|
|
74
|
+
};
|
|
75
|
+
}>> & {
|
|
76
|
+
"onUpdate:checked"?: ((...args: any[]) => any) | undefined;
|
|
77
|
+
}, {
|
|
78
|
+
disabled: boolean;
|
|
79
|
+
strikeThrough: boolean;
|
|
80
|
+
bordered: boolean;
|
|
81
|
+
error: boolean;
|
|
82
|
+
}>;
|
|
83
|
+
export default _sfc_main;
|