@wizleap-inc/wiz-ui-next 0.7.0 → 0.7.2
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/dropdown/dropdown.vue.d.ts +7 -0
- package/dist/components/base/index.d.ts +1 -0
- package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +7 -0
- package/dist/components/base/inputs/search/search.vue.d.ts +7 -0
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +7 -0
- package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +7 -0
- package/dist/components/base/popup/popup-container.vue.d.ts +1 -0
- package/dist/components/base/popup/popup.vue.d.ts +6 -0
- package/dist/components/base/snackbar/index.d.ts +1 -0
- package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +253 -0
- package/dist/components/base/snackbar/snackbar.vue.d.ts +233 -0
- package/dist/components/base/snackbar/types.d.ts +5 -0
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +7 -0
- package/dist/hooks/use-scroll.d.ts +1 -0
- package/dist/hooks/use-snackbar.d.ts +1 -0
- package/dist/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2339 -2198
- package/dist/wiz-ui.umd.js +10 -10
- package/package.json +1 -1
|
@@ -47,6 +47,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
47
47
|
props: any;
|
|
48
48
|
emit: (event: "onClose", isOpen: boolean) => void;
|
|
49
49
|
popupRef: import("vue").Ref<HTMLElement | undefined>;
|
|
50
|
+
popupSize: {
|
|
51
|
+
width: number;
|
|
52
|
+
height: number;
|
|
53
|
+
};
|
|
50
54
|
injected: {
|
|
51
55
|
initialPxInfo: {
|
|
52
56
|
top: number;
|
|
@@ -77,6 +81,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
77
81
|
};
|
|
78
82
|
updateBodyPxInfo: () => void;
|
|
79
83
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
84
|
+
observer: ResizeObserver;
|
|
80
85
|
popupRect: import("vue").ComputedRef<{
|
|
81
86
|
width: number;
|
|
82
87
|
height: number;
|
|
@@ -96,6 +101,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
96
101
|
inset: import("vue").ComputedRef<string>;
|
|
97
102
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
98
103
|
readonly popupStyle: string;
|
|
104
|
+
readonly popupHiddenStyle: string;
|
|
99
105
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
100
106
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
101
107
|
isOpen: {
|
|
@@ -157,6 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
157
163
|
updateBodyPxInfo: () => void;
|
|
158
164
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
159
165
|
};
|
|
166
|
+
updateBodyPxInfo: () => void;
|
|
160
167
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
161
168
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
162
169
|
expand: {
|
|
@@ -817,6 +817,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
817
817
|
props: any;
|
|
818
818
|
emit: (event: "onClose", isOpen: boolean) => void;
|
|
819
819
|
popupRef: import("vue").Ref<HTMLElement | undefined>;
|
|
820
|
+
popupSize: {
|
|
821
|
+
width: number;
|
|
822
|
+
height: number;
|
|
823
|
+
};
|
|
820
824
|
injected: {
|
|
821
825
|
initialPxInfo: {
|
|
822
826
|
top: number;
|
|
@@ -847,6 +851,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
847
851
|
};
|
|
848
852
|
updateBodyPxInfo: () => void;
|
|
849
853
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
854
|
+
observer: ResizeObserver;
|
|
850
855
|
popupRect: import("vue").ComputedRef<{
|
|
851
856
|
width: number;
|
|
852
857
|
height: number;
|
|
@@ -866,6 +871,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
866
871
|
inset: import("vue").ComputedRef<string>;
|
|
867
872
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
868
873
|
readonly popupStyle: string;
|
|
874
|
+
readonly popupHiddenStyle: string;
|
|
869
875
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
870
876
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
871
877
|
isOpen: {
|
|
@@ -927,6 +933,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
927
933
|
updateBodyPxInfo: () => void;
|
|
928
934
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
929
935
|
};
|
|
936
|
+
updateBodyPxInfo: () => void;
|
|
930
937
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
931
938
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
932
939
|
expand: {
|
|
@@ -609,6 +609,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
609
609
|
updateBodyPxInfo: () => void;
|
|
610
610
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
611
611
|
};
|
|
612
|
+
updateBodyPxInfo: () => void;
|
|
612
613
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
613
614
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
614
615
|
expand: {
|
|
@@ -647,6 +648,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
647
648
|
props: any;
|
|
648
649
|
emit: (event: "onClose", isOpen: boolean) => void;
|
|
649
650
|
popupRef: import("vue").Ref<HTMLElement | undefined>;
|
|
651
|
+
popupSize: {
|
|
652
|
+
width: number;
|
|
653
|
+
height: number;
|
|
654
|
+
};
|
|
650
655
|
injected: {
|
|
651
656
|
initialPxInfo: {
|
|
652
657
|
top: number;
|
|
@@ -677,6 +682,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
677
682
|
};
|
|
678
683
|
updateBodyPxInfo: () => void;
|
|
679
684
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
685
|
+
observer: ResizeObserver;
|
|
680
686
|
popupRect: import("vue").ComputedRef<{
|
|
681
687
|
width: number;
|
|
682
688
|
height: number;
|
|
@@ -696,6 +702,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
696
702
|
inset: import("vue").ComputedRef<string>;
|
|
697
703
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
698
704
|
readonly popupStyle: string;
|
|
705
|
+
readonly popupHiddenStyle: string;
|
|
699
706
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
700
707
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
701
708
|
isOpen: {
|
|
@@ -81,6 +81,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
81
|
updateBodyPxInfo: () => void;
|
|
82
82
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
83
83
|
};
|
|
84
|
+
updateBodyPxInfo: () => void;
|
|
84
85
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
85
86
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
86
87
|
expand: {
|
|
@@ -119,6 +120,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
120
|
props: any;
|
|
120
121
|
emit: (event: "onClose", isOpen: boolean) => void;
|
|
121
122
|
popupRef: import("vue").Ref<HTMLElement | undefined>;
|
|
123
|
+
popupSize: {
|
|
124
|
+
width: number;
|
|
125
|
+
height: number;
|
|
126
|
+
};
|
|
122
127
|
injected: {
|
|
123
128
|
initialPxInfo: {
|
|
124
129
|
top: number;
|
|
@@ -149,6 +154,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
149
154
|
};
|
|
150
155
|
updateBodyPxInfo: () => void;
|
|
151
156
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
157
|
+
observer: ResizeObserver;
|
|
152
158
|
popupRect: import("vue").ComputedRef<{
|
|
153
159
|
width: number;
|
|
154
160
|
height: number;
|
|
@@ -168,6 +174,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
168
174
|
inset: import("vue").ComputedRef<string>;
|
|
169
175
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
170
176
|
readonly popupStyle: string;
|
|
177
|
+
readonly popupHiddenStyle: string;
|
|
171
178
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
172
179
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
173
180
|
isOpen: {
|
|
@@ -1095,6 +1095,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1095
1095
|
props: any;
|
|
1096
1096
|
emit: (event: "onClose", isOpen: boolean) => void;
|
|
1097
1097
|
popupRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1098
|
+
popupSize: {
|
|
1099
|
+
width: number;
|
|
1100
|
+
height: number;
|
|
1101
|
+
};
|
|
1098
1102
|
injected: {
|
|
1099
1103
|
initialPxInfo: {
|
|
1100
1104
|
top: number;
|
|
@@ -1125,6 +1129,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1125
1129
|
};
|
|
1126
1130
|
updateBodyPxInfo: () => void;
|
|
1127
1131
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1132
|
+
observer: ResizeObserver;
|
|
1128
1133
|
popupRect: import("vue").ComputedRef<{
|
|
1129
1134
|
width: number;
|
|
1130
1135
|
height: number;
|
|
@@ -1144,6 +1149,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1144
1149
|
inset: import("vue").ComputedRef<string>;
|
|
1145
1150
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1146
1151
|
readonly popupStyle: string;
|
|
1152
|
+
readonly popupHiddenStyle: string;
|
|
1147
1153
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
1148
1154
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1149
1155
|
isOpen: {
|
|
@@ -1205,6 +1211,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1205
1211
|
updateBodyPxInfo: () => void;
|
|
1206
1212
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1207
1213
|
};
|
|
1214
|
+
updateBodyPxInfo: () => void;
|
|
1208
1215
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
1209
1216
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1210
1217
|
expand: {
|
|
@@ -25,6 +25,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
25
25
|
updateBodyPxInfo: () => void;
|
|
26
26
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
27
27
|
};
|
|
28
|
+
updateBodyPxInfo: () => void;
|
|
28
29
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
29
30
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
31
|
expand: {
|
|
@@ -30,6 +30,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
30
30
|
props: any;
|
|
31
31
|
emit: (event: "onClose", isOpen: boolean) => void;
|
|
32
32
|
popupRef: import("vue").Ref<HTMLElement | undefined>;
|
|
33
|
+
popupSize: {
|
|
34
|
+
width: number;
|
|
35
|
+
height: number;
|
|
36
|
+
};
|
|
33
37
|
injected: {
|
|
34
38
|
initialPxInfo: {
|
|
35
39
|
top: number;
|
|
@@ -60,6 +64,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
60
64
|
};
|
|
61
65
|
updateBodyPxInfo: () => void;
|
|
62
66
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
67
|
+
observer: ResizeObserver;
|
|
63
68
|
popupRect: import("vue").ComputedRef<{
|
|
64
69
|
width: number;
|
|
65
70
|
height: number;
|
|
@@ -79,6 +84,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
79
84
|
inset: import("vue").ComputedRef<string>;
|
|
80
85
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
81
86
|
readonly popupStyle: string;
|
|
87
|
+
readonly popupHiddenStyle: string;
|
|
82
88
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
83
89
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
84
90
|
isOpen: {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as WizSnackbar } from "./snackbar.vue";
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
import { SpacingKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
|
+
import { PropType, Ref } from "vue";
|
|
3
|
+
import { SnackbarOption } from "./types";
|
|
4
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
5
|
+
options: {
|
|
6
|
+
type: PropType<Ref<SnackbarOption[]>>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
}, {
|
|
10
|
+
containerRef: Ref<HTMLElement | undefined>;
|
|
11
|
+
space2px: (key: SpacingKeys) => number;
|
|
12
|
+
md: number;
|
|
13
|
+
calcBottom: (i: number) => number;
|
|
14
|
+
readonly snackbarControllerStyle: string;
|
|
15
|
+
readonly WizSnackbar: import("vue").DefineComponent<{
|
|
16
|
+
message: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
bottom: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
left: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
required: false;
|
|
28
|
+
default: string;
|
|
29
|
+
};
|
|
30
|
+
isStatic: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
required: false;
|
|
33
|
+
default: boolean;
|
|
34
|
+
};
|
|
35
|
+
}, {
|
|
36
|
+
props: any;
|
|
37
|
+
emits: (event: "delete") => void;
|
|
38
|
+
snackbarRef: Ref<HTMLElement | undefined>;
|
|
39
|
+
isHidden: Ref<boolean>;
|
|
40
|
+
onDelete: () => void;
|
|
41
|
+
readonly snackbarStyle: string;
|
|
42
|
+
readonly snackbarFixedStyle: string;
|
|
43
|
+
readonly snackbarContainerStyle: string;
|
|
44
|
+
readonly snackbarHiddenStyle: string;
|
|
45
|
+
readonly snackbarMessageStyle: string;
|
|
46
|
+
readonly snackbarCloseButtonStyle: string;
|
|
47
|
+
readonly WizText: import("vue").DefineComponent<{
|
|
48
|
+
as: {
|
|
49
|
+
type: PropType<"label" | "p" | "span">;
|
|
50
|
+
required: false;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
htmlFor: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
required: false;
|
|
56
|
+
};
|
|
57
|
+
color: {
|
|
58
|
+
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
59
|
+
required: false;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
fontSize: {
|
|
63
|
+
type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
64
|
+
required: false;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
lineHeight: {
|
|
68
|
+
type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
69
|
+
required: false;
|
|
70
|
+
};
|
|
71
|
+
bold: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
required: false;
|
|
74
|
+
};
|
|
75
|
+
maxLines: {
|
|
76
|
+
type: NumberConstructor;
|
|
77
|
+
required: false;
|
|
78
|
+
};
|
|
79
|
+
whiteSpace: {
|
|
80
|
+
type: PropType<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces">;
|
|
81
|
+
required: false;
|
|
82
|
+
default: string;
|
|
83
|
+
};
|
|
84
|
+
dummyValue: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
required: false;
|
|
87
|
+
};
|
|
88
|
+
breakAll: {
|
|
89
|
+
type: BooleanConstructor;
|
|
90
|
+
required: false;
|
|
91
|
+
};
|
|
92
|
+
textAlign: {
|
|
93
|
+
type: PropType<"left" | "right" | "center" | "end" | "start">;
|
|
94
|
+
required: false;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
}, {
|
|
98
|
+
props: any;
|
|
99
|
+
overflowStyles: import("vue").ComputedRef<{
|
|
100
|
+
overflow?: undefined;
|
|
101
|
+
display?: undefined;
|
|
102
|
+
webkitBoxOrient?: undefined;
|
|
103
|
+
WebkitLineClamp?: undefined;
|
|
104
|
+
} | {
|
|
105
|
+
overflow: string;
|
|
106
|
+
display: string;
|
|
107
|
+
webkitBoxOrient: string;
|
|
108
|
+
WebkitLineClamp: number;
|
|
109
|
+
}>;
|
|
110
|
+
readonly textStyle: string;
|
|
111
|
+
readonly textDummyStyle: string;
|
|
112
|
+
readonly textDefaultLineHeightStyle: string;
|
|
113
|
+
readonly textFontWeightStyle: Record<"default" | "bold", string>;
|
|
114
|
+
readonly textWordBreakStyle: string;
|
|
115
|
+
readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
|
|
116
|
+
readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
117
|
+
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
118
|
+
readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
|
|
119
|
+
readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
|
|
120
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
121
|
+
as: {
|
|
122
|
+
type: PropType<"label" | "p" | "span">;
|
|
123
|
+
required: false;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
htmlFor: {
|
|
127
|
+
type: StringConstructor;
|
|
128
|
+
required: false;
|
|
129
|
+
};
|
|
130
|
+
color: {
|
|
131
|
+
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
132
|
+
required: false;
|
|
133
|
+
default: string;
|
|
134
|
+
};
|
|
135
|
+
fontSize: {
|
|
136
|
+
type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
137
|
+
required: false;
|
|
138
|
+
default: string;
|
|
139
|
+
};
|
|
140
|
+
lineHeight: {
|
|
141
|
+
type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
142
|
+
required: false;
|
|
143
|
+
};
|
|
144
|
+
bold: {
|
|
145
|
+
type: BooleanConstructor;
|
|
146
|
+
required: false;
|
|
147
|
+
};
|
|
148
|
+
maxLines: {
|
|
149
|
+
type: NumberConstructor;
|
|
150
|
+
required: false;
|
|
151
|
+
};
|
|
152
|
+
whiteSpace: {
|
|
153
|
+
type: PropType<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces">;
|
|
154
|
+
required: false;
|
|
155
|
+
default: string;
|
|
156
|
+
};
|
|
157
|
+
dummyValue: {
|
|
158
|
+
type: StringConstructor;
|
|
159
|
+
required: false;
|
|
160
|
+
};
|
|
161
|
+
breakAll: {
|
|
162
|
+
type: BooleanConstructor;
|
|
163
|
+
required: false;
|
|
164
|
+
};
|
|
165
|
+
textAlign: {
|
|
166
|
+
type: PropType<"left" | "right" | "center" | "end" | "start">;
|
|
167
|
+
required: false;
|
|
168
|
+
default: string;
|
|
169
|
+
};
|
|
170
|
+
}>>, {
|
|
171
|
+
bold: boolean;
|
|
172
|
+
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
173
|
+
fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
174
|
+
textAlign: "left" | "right" | "center" | "end" | "start";
|
|
175
|
+
whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
|
|
176
|
+
as: "label" | "p" | "span";
|
|
177
|
+
breakAll: boolean;
|
|
178
|
+
}>;
|
|
179
|
+
readonly WizIcon: import("vue").DefineComponent<{
|
|
180
|
+
icon: {
|
|
181
|
+
type: PropType<import('../../../components').TIcon>;
|
|
182
|
+
required: true;
|
|
183
|
+
};
|
|
184
|
+
color: {
|
|
185
|
+
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
186
|
+
required: false;
|
|
187
|
+
default: string;
|
|
188
|
+
};
|
|
189
|
+
size: {
|
|
190
|
+
type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
191
|
+
required: false;
|
|
192
|
+
default: string;
|
|
193
|
+
};
|
|
194
|
+
}, {
|
|
195
|
+
readonly iconStyle: string;
|
|
196
|
+
readonly iconSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
197
|
+
readonly fillStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
|
|
198
|
+
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
199
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
200
|
+
icon: {
|
|
201
|
+
type: PropType<import('../../../components').TIcon>;
|
|
202
|
+
required: true;
|
|
203
|
+
};
|
|
204
|
+
color: {
|
|
205
|
+
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
206
|
+
required: false;
|
|
207
|
+
default: string;
|
|
208
|
+
};
|
|
209
|
+
size: {
|
|
210
|
+
type: PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
211
|
+
required: false;
|
|
212
|
+
default: string;
|
|
213
|
+
};
|
|
214
|
+
}>>, {
|
|
215
|
+
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
216
|
+
size: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
217
|
+
}>;
|
|
218
|
+
readonly WizICircleCheck: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
219
|
+
readonly WizIClose: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
220
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "delete"[], "delete", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
221
|
+
message: {
|
|
222
|
+
type: StringConstructor;
|
|
223
|
+
required: true;
|
|
224
|
+
};
|
|
225
|
+
bottom: {
|
|
226
|
+
type: StringConstructor;
|
|
227
|
+
required: false;
|
|
228
|
+
default: string;
|
|
229
|
+
};
|
|
230
|
+
left: {
|
|
231
|
+
type: StringConstructor;
|
|
232
|
+
required: false;
|
|
233
|
+
default: string;
|
|
234
|
+
};
|
|
235
|
+
isStatic: {
|
|
236
|
+
type: BooleanConstructor;
|
|
237
|
+
required: false;
|
|
238
|
+
default: boolean;
|
|
239
|
+
};
|
|
240
|
+
}>> & {
|
|
241
|
+
onDelete?: ((...args: any[]) => any) | undefined;
|
|
242
|
+
}, {
|
|
243
|
+
left: string;
|
|
244
|
+
bottom: string;
|
|
245
|
+
isStatic: boolean;
|
|
246
|
+
}>;
|
|
247
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
248
|
+
options: {
|
|
249
|
+
type: PropType<Ref<SnackbarOption[]>>;
|
|
250
|
+
required: true;
|
|
251
|
+
};
|
|
252
|
+
}>>, {}>;
|
|
253
|
+
export default _sfc_main;
|