@wizleap-inc/wiz-ui-next 0.7.1 → 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 +6 -0
- package/dist/components/base/index.d.ts +1 -0
- package/dist/components/base/inputs/datepicker/date-picker.vue.d.ts +6 -0
- package/dist/components/base/inputs/search/search.vue.d.ts +6 -0
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +6 -0
- package/dist/components/base/inputs/timepicker/time-picker.vue.d.ts +6 -0
- package/dist/components/base/popup/popup-container.vue.d.ts +1 -0
- package/dist/components/base/popup/popup.vue.d.ts +5 -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 +6 -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 +2360 -2219
- 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;
|
|
@@ -97,6 +101,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
97
101
|
inset: import("vue").ComputedRef<string>;
|
|
98
102
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
99
103
|
readonly popupStyle: string;
|
|
104
|
+
readonly popupHiddenStyle: string;
|
|
100
105
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
101
106
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
102
107
|
isOpen: {
|
|
@@ -158,6 +163,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
158
163
|
updateBodyPxInfo: () => void;
|
|
159
164
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
160
165
|
};
|
|
166
|
+
updateBodyPxInfo: () => void;
|
|
161
167
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
162
168
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
163
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;
|
|
@@ -867,6 +871,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
867
871
|
inset: import("vue").ComputedRef<string>;
|
|
868
872
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
869
873
|
readonly popupStyle: string;
|
|
874
|
+
readonly popupHiddenStyle: string;
|
|
870
875
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
871
876
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
872
877
|
isOpen: {
|
|
@@ -928,6 +933,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
928
933
|
updateBodyPxInfo: () => void;
|
|
929
934
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
930
935
|
};
|
|
936
|
+
updateBodyPxInfo: () => void;
|
|
931
937
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
932
938
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
933
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;
|
|
@@ -697,6 +702,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
697
702
|
inset: import("vue").ComputedRef<string>;
|
|
698
703
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
699
704
|
readonly popupStyle: string;
|
|
705
|
+
readonly popupHiddenStyle: string;
|
|
700
706
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
701
707
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
702
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;
|
|
@@ -169,6 +174,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
169
174
|
inset: import("vue").ComputedRef<string>;
|
|
170
175
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
171
176
|
readonly popupStyle: string;
|
|
177
|
+
readonly popupHiddenStyle: string;
|
|
172
178
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
173
179
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
174
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;
|
|
@@ -1145,6 +1149,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1145
1149
|
inset: import("vue").ComputedRef<string>;
|
|
1146
1150
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
1147
1151
|
readonly popupStyle: string;
|
|
1152
|
+
readonly popupHiddenStyle: string;
|
|
1148
1153
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
1149
1154
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1150
1155
|
isOpen: {
|
|
@@ -1206,6 +1211,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1206
1211
|
updateBodyPxInfo: () => void;
|
|
1207
1212
|
containerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
1208
1213
|
};
|
|
1214
|
+
updateBodyPxInfo: () => void;
|
|
1209
1215
|
readonly popupContainerStyle: Record<"default" | "expanded", string>;
|
|
1210
1216
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1211
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;
|
|
@@ -80,6 +84,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
80
84
|
inset: import("vue").ComputedRef<string>;
|
|
81
85
|
popupTranslate: import("vue").ComputedRef<string>;
|
|
82
86
|
readonly popupStyle: string;
|
|
87
|
+
readonly popupHiddenStyle: string;
|
|
83
88
|
readonly zIndexStyle: Record<"base" | "floating" | "dialog" | "popover", string>;
|
|
84
89
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onClose"[], "onClose", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
85
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;
|
|
@@ -0,0 +1,233 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
2
|
+
message: {
|
|
3
|
+
type: StringConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
bottom: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
required: false;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
left: {
|
|
12
|
+
type: StringConstructor;
|
|
13
|
+
required: false;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
isStatic: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
required: false;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
}, {
|
|
22
|
+
props: any;
|
|
23
|
+
emits: (event: "delete") => void;
|
|
24
|
+
snackbarRef: import("vue").Ref<HTMLElement | undefined>;
|
|
25
|
+
isHidden: import("vue").Ref<boolean>;
|
|
26
|
+
onDelete: () => void;
|
|
27
|
+
readonly snackbarStyle: string;
|
|
28
|
+
readonly snackbarFixedStyle: string;
|
|
29
|
+
readonly snackbarContainerStyle: string;
|
|
30
|
+
readonly snackbarHiddenStyle: string;
|
|
31
|
+
readonly snackbarMessageStyle: string;
|
|
32
|
+
readonly snackbarCloseButtonStyle: string;
|
|
33
|
+
readonly WizText: import("vue").DefineComponent<{
|
|
34
|
+
as: {
|
|
35
|
+
type: import("vue").PropType<"label" | "p" | "span">;
|
|
36
|
+
required: false;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
htmlFor: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
required: false;
|
|
42
|
+
};
|
|
43
|
+
color: {
|
|
44
|
+
type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
45
|
+
required: false;
|
|
46
|
+
default: string;
|
|
47
|
+
};
|
|
48
|
+
fontSize: {
|
|
49
|
+
type: import("vue").PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
50
|
+
required: false;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
lineHeight: {
|
|
54
|
+
type: import("vue").PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
55
|
+
required: false;
|
|
56
|
+
};
|
|
57
|
+
bold: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
required: false;
|
|
60
|
+
};
|
|
61
|
+
maxLines: {
|
|
62
|
+
type: NumberConstructor;
|
|
63
|
+
required: false;
|
|
64
|
+
};
|
|
65
|
+
whiteSpace: {
|
|
66
|
+
type: import("vue").PropType<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces">;
|
|
67
|
+
required: false;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
dummyValue: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
required: false;
|
|
73
|
+
};
|
|
74
|
+
breakAll: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
required: false;
|
|
77
|
+
};
|
|
78
|
+
textAlign: {
|
|
79
|
+
type: import("vue").PropType<"left" | "right" | "center" | "end" | "start">;
|
|
80
|
+
required: false;
|
|
81
|
+
default: string;
|
|
82
|
+
};
|
|
83
|
+
}, {
|
|
84
|
+
props: any;
|
|
85
|
+
overflowStyles: import("vue").ComputedRef<{
|
|
86
|
+
overflow?: undefined;
|
|
87
|
+
display?: undefined;
|
|
88
|
+
webkitBoxOrient?: undefined;
|
|
89
|
+
WebkitLineClamp?: undefined;
|
|
90
|
+
} | {
|
|
91
|
+
overflow: string;
|
|
92
|
+
display: string;
|
|
93
|
+
webkitBoxOrient: string;
|
|
94
|
+
WebkitLineClamp: number;
|
|
95
|
+
}>;
|
|
96
|
+
readonly textStyle: string;
|
|
97
|
+
readonly textDummyStyle: string;
|
|
98
|
+
readonly textDefaultLineHeightStyle: string;
|
|
99
|
+
readonly textFontWeightStyle: Record<"default" | "bold", string>;
|
|
100
|
+
readonly textWordBreakStyle: string;
|
|
101
|
+
readonly textAlignStyle: Record<"left" | "right" | "center" | "end" | "start", string>;
|
|
102
|
+
readonly lineHeightStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
103
|
+
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
104
|
+
readonly colorStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
|
|
105
|
+
readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
|
|
106
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
107
|
+
as: {
|
|
108
|
+
type: import("vue").PropType<"label" | "p" | "span">;
|
|
109
|
+
required: false;
|
|
110
|
+
default: string;
|
|
111
|
+
};
|
|
112
|
+
htmlFor: {
|
|
113
|
+
type: StringConstructor;
|
|
114
|
+
required: false;
|
|
115
|
+
};
|
|
116
|
+
color: {
|
|
117
|
+
type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
118
|
+
required: false;
|
|
119
|
+
default: string;
|
|
120
|
+
};
|
|
121
|
+
fontSize: {
|
|
122
|
+
type: import("vue").PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
123
|
+
required: false;
|
|
124
|
+
default: string;
|
|
125
|
+
};
|
|
126
|
+
lineHeight: {
|
|
127
|
+
type: import("vue").PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
128
|
+
required: false;
|
|
129
|
+
};
|
|
130
|
+
bold: {
|
|
131
|
+
type: BooleanConstructor;
|
|
132
|
+
required: false;
|
|
133
|
+
};
|
|
134
|
+
maxLines: {
|
|
135
|
+
type: NumberConstructor;
|
|
136
|
+
required: false;
|
|
137
|
+
};
|
|
138
|
+
whiteSpace: {
|
|
139
|
+
type: import("vue").PropType<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces">;
|
|
140
|
+
required: false;
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
143
|
+
dummyValue: {
|
|
144
|
+
type: StringConstructor;
|
|
145
|
+
required: false;
|
|
146
|
+
};
|
|
147
|
+
breakAll: {
|
|
148
|
+
type: BooleanConstructor;
|
|
149
|
+
required: false;
|
|
150
|
+
};
|
|
151
|
+
textAlign: {
|
|
152
|
+
type: import("vue").PropType<"left" | "right" | "center" | "end" | "start">;
|
|
153
|
+
required: false;
|
|
154
|
+
default: string;
|
|
155
|
+
};
|
|
156
|
+
}>>, {
|
|
157
|
+
bold: boolean;
|
|
158
|
+
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
159
|
+
fontSize: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
160
|
+
textAlign: "left" | "right" | "center" | "end" | "start";
|
|
161
|
+
whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
|
|
162
|
+
as: "label" | "p" | "span";
|
|
163
|
+
breakAll: boolean;
|
|
164
|
+
}>;
|
|
165
|
+
readonly WizIcon: import("vue").DefineComponent<{
|
|
166
|
+
icon: {
|
|
167
|
+
type: import("vue").PropType<import('../../../components').TIcon>;
|
|
168
|
+
required: true;
|
|
169
|
+
};
|
|
170
|
+
color: {
|
|
171
|
+
type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
172
|
+
required: false;
|
|
173
|
+
default: string;
|
|
174
|
+
};
|
|
175
|
+
size: {
|
|
176
|
+
type: import("vue").PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
177
|
+
required: false;
|
|
178
|
+
default: string;
|
|
179
|
+
};
|
|
180
|
+
}, {
|
|
181
|
+
readonly iconStyle: string;
|
|
182
|
+
readonly iconSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
183
|
+
readonly fillStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
|
|
184
|
+
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
185
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
186
|
+
icon: {
|
|
187
|
+
type: import("vue").PropType<import('../../../components').TIcon>;
|
|
188
|
+
required: true;
|
|
189
|
+
};
|
|
190
|
+
color: {
|
|
191
|
+
type: import("vue").PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys>;
|
|
192
|
+
required: false;
|
|
193
|
+
default: string;
|
|
194
|
+
};
|
|
195
|
+
size: {
|
|
196
|
+
type: import("vue").PropType<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6">;
|
|
197
|
+
required: false;
|
|
198
|
+
default: string;
|
|
199
|
+
};
|
|
200
|
+
}>>, {
|
|
201
|
+
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
202
|
+
size: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
203
|
+
}>;
|
|
204
|
+
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<{}>>, {}>;
|
|
205
|
+
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<{}>>, {}>;
|
|
206
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "delete"[], "delete", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
207
|
+
message: {
|
|
208
|
+
type: StringConstructor;
|
|
209
|
+
required: true;
|
|
210
|
+
};
|
|
211
|
+
bottom: {
|
|
212
|
+
type: StringConstructor;
|
|
213
|
+
required: false;
|
|
214
|
+
default: string;
|
|
215
|
+
};
|
|
216
|
+
left: {
|
|
217
|
+
type: StringConstructor;
|
|
218
|
+
required: false;
|
|
219
|
+
default: string;
|
|
220
|
+
};
|
|
221
|
+
isStatic: {
|
|
222
|
+
type: BooleanConstructor;
|
|
223
|
+
required: false;
|
|
224
|
+
default: boolean;
|
|
225
|
+
};
|
|
226
|
+
}>> & {
|
|
227
|
+
onDelete?: ((...args: any[]) => any) | undefined;
|
|
228
|
+
}, {
|
|
229
|
+
left: string;
|
|
230
|
+
bottom: string;
|
|
231
|
+
isStatic: boolean;
|
|
232
|
+
}>;
|
|
233
|
+
export default _sfc_main;
|