@wizleap-inc/wiz-ui-next 0.5.0 → 0.5.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/header/header.vue.d.ts +1 -2
- package/dist/components/base/pagination/pagination.vue.d.ts +1 -467
- package/dist/components/base/progress-bar/progress-bar.vue.d.ts +2 -1
- package/dist/components/base/tables/card/th.vue.d.ts +8 -0
- package/dist/components/base/tooltip/tooltip.vue.d.ts +2 -1
- package/dist/components/icons/change-history.vue.d.ts +2 -0
- package/dist/components/icons/download.vue.d.ts +2 -0
- package/dist/components/icons/index.d.ts +5 -2
- package/dist/components/icons/upload.vue.d.ts +2 -0
- package/dist/index.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +1278 -1228
- package/dist/wiz-ui.umd.js +1 -1
- package/package.json +1 -1
|
@@ -16,8 +16,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
16
|
isMenuOpen: Readonly<import("vue").Ref<boolean>>;
|
|
17
17
|
setIsMenuOpen: (value: boolean) => void;
|
|
18
18
|
toggleMenuOpen: () => void;
|
|
19
|
-
|
|
20
|
-
headerZIndex: number;
|
|
19
|
+
currentZIndex: import("vue").ComputedRef<number>;
|
|
21
20
|
readonly headerStyle: string;
|
|
22
21
|
readonly headerStickyStyle: string;
|
|
23
22
|
readonly WizHStack: import("vue").DefineComponent<{
|
|
@@ -15,478 +15,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
15
15
|
onUpdatePage: (index: number) => number | undefined;
|
|
16
16
|
displayIndex: import("vue").ComputedRef<number[]>;
|
|
17
17
|
readonly paginationStyle: string;
|
|
18
|
+
readonly paginationGapStyle: Record<"left" | "right", string>;
|
|
18
19
|
readonly paginationButtonStyle: string;
|
|
19
20
|
readonly paginationButtonVariantStyle: Record<"default" | "active", string>;
|
|
20
21
|
readonly paginationIconStyle: string;
|
|
21
22
|
readonly WizIChevronLeft: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
22
23
|
readonly WizIChevronRight: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
23
|
-
readonly WizHStack: import("vue").DefineComponent<{
|
|
24
|
-
align: {
|
|
25
|
-
type: PropType<"stretch" | "center" | "end" | "start">;
|
|
26
|
-
required: false;
|
|
27
|
-
};
|
|
28
|
-
justify: {
|
|
29
|
-
type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
|
|
30
|
-
required: false;
|
|
31
|
-
};
|
|
32
|
-
wrap: {
|
|
33
|
-
type: BooleanConstructor;
|
|
34
|
-
required: false;
|
|
35
|
-
};
|
|
36
|
-
gap: {
|
|
37
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
38
|
-
required: false;
|
|
39
|
-
};
|
|
40
|
-
gx: {
|
|
41
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
42
|
-
required: false;
|
|
43
|
-
};
|
|
44
|
-
gy: {
|
|
45
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
46
|
-
required: false;
|
|
47
|
-
};
|
|
48
|
-
p: {
|
|
49
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
50
|
-
required: false;
|
|
51
|
-
};
|
|
52
|
-
pt: {
|
|
53
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
54
|
-
required: false;
|
|
55
|
-
};
|
|
56
|
-
pr: {
|
|
57
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
58
|
-
required: false;
|
|
59
|
-
};
|
|
60
|
-
pb: {
|
|
61
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
62
|
-
required: false;
|
|
63
|
-
};
|
|
64
|
-
pl: {
|
|
65
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
66
|
-
required: false;
|
|
67
|
-
};
|
|
68
|
-
px: {
|
|
69
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
70
|
-
required: false;
|
|
71
|
-
};
|
|
72
|
-
py: {
|
|
73
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
74
|
-
required: false;
|
|
75
|
-
};
|
|
76
|
-
m: {
|
|
77
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
78
|
-
required: false;
|
|
79
|
-
};
|
|
80
|
-
mt: {
|
|
81
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
82
|
-
required: false;
|
|
83
|
-
};
|
|
84
|
-
mr: {
|
|
85
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
86
|
-
required: false;
|
|
87
|
-
};
|
|
88
|
-
mb: {
|
|
89
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
90
|
-
required: false;
|
|
91
|
-
};
|
|
92
|
-
ml: {
|
|
93
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
94
|
-
required: false;
|
|
95
|
-
};
|
|
96
|
-
mx: {
|
|
97
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
98
|
-
required: false;
|
|
99
|
-
};
|
|
100
|
-
my: {
|
|
101
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
102
|
-
required: false;
|
|
103
|
-
};
|
|
104
|
-
width: {
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
required: false;
|
|
107
|
-
};
|
|
108
|
-
height: {
|
|
109
|
-
type: StringConstructor;
|
|
110
|
-
required: false;
|
|
111
|
-
};
|
|
112
|
-
overflow: {
|
|
113
|
-
type: StringConstructor;
|
|
114
|
-
required: false;
|
|
115
|
-
};
|
|
116
|
-
reverse: {
|
|
117
|
-
type: BooleanConstructor;
|
|
118
|
-
required: false;
|
|
119
|
-
};
|
|
120
|
-
position: {
|
|
121
|
-
type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
|
|
122
|
-
required: false;
|
|
123
|
-
};
|
|
124
|
-
}, {
|
|
125
|
-
readonly WizStack: import("vue").DefineComponent<{
|
|
126
|
-
direction: {
|
|
127
|
-
type: PropType<"horizontal" | "vertical">;
|
|
128
|
-
required: false;
|
|
129
|
-
default: string;
|
|
130
|
-
};
|
|
131
|
-
align: {
|
|
132
|
-
type: PropType<"stretch" | "center" | "end" | "start">;
|
|
133
|
-
required: false;
|
|
134
|
-
default: string;
|
|
135
|
-
};
|
|
136
|
-
justify: {
|
|
137
|
-
type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
|
|
138
|
-
required: false;
|
|
139
|
-
default: string;
|
|
140
|
-
};
|
|
141
|
-
wrap: {
|
|
142
|
-
type: BooleanConstructor;
|
|
143
|
-
required: false;
|
|
144
|
-
default: boolean;
|
|
145
|
-
};
|
|
146
|
-
gap: {
|
|
147
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
148
|
-
required: false;
|
|
149
|
-
};
|
|
150
|
-
gx: {
|
|
151
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
152
|
-
required: false;
|
|
153
|
-
};
|
|
154
|
-
gy: {
|
|
155
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
156
|
-
required: false;
|
|
157
|
-
};
|
|
158
|
-
p: {
|
|
159
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
160
|
-
required: false;
|
|
161
|
-
};
|
|
162
|
-
pt: {
|
|
163
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
164
|
-
required: false;
|
|
165
|
-
};
|
|
166
|
-
pr: {
|
|
167
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
168
|
-
required: false;
|
|
169
|
-
};
|
|
170
|
-
pb: {
|
|
171
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
172
|
-
required: false;
|
|
173
|
-
};
|
|
174
|
-
pl: {
|
|
175
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
176
|
-
required: false;
|
|
177
|
-
};
|
|
178
|
-
px: {
|
|
179
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
180
|
-
required: false;
|
|
181
|
-
};
|
|
182
|
-
py: {
|
|
183
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
184
|
-
required: false;
|
|
185
|
-
};
|
|
186
|
-
m: {
|
|
187
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
188
|
-
required: false;
|
|
189
|
-
};
|
|
190
|
-
mt: {
|
|
191
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
192
|
-
required: false;
|
|
193
|
-
};
|
|
194
|
-
mr: {
|
|
195
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
196
|
-
required: false;
|
|
197
|
-
};
|
|
198
|
-
mb: {
|
|
199
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
200
|
-
required: false;
|
|
201
|
-
};
|
|
202
|
-
ml: {
|
|
203
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
204
|
-
required: false;
|
|
205
|
-
};
|
|
206
|
-
mx: {
|
|
207
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
208
|
-
required: false;
|
|
209
|
-
};
|
|
210
|
-
my: {
|
|
211
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
212
|
-
required: false;
|
|
213
|
-
};
|
|
214
|
-
width: {
|
|
215
|
-
type: StringConstructor;
|
|
216
|
-
required: false;
|
|
217
|
-
default: string;
|
|
218
|
-
};
|
|
219
|
-
height: {
|
|
220
|
-
type: StringConstructor;
|
|
221
|
-
required: false;
|
|
222
|
-
default: string;
|
|
223
|
-
};
|
|
224
|
-
overflow: {
|
|
225
|
-
type: StringConstructor;
|
|
226
|
-
required: false;
|
|
227
|
-
default: string;
|
|
228
|
-
};
|
|
229
|
-
reverse: {
|
|
230
|
-
type: BooleanConstructor;
|
|
231
|
-
required: false;
|
|
232
|
-
};
|
|
233
|
-
position: {
|
|
234
|
-
type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
|
|
235
|
-
required: false;
|
|
236
|
-
};
|
|
237
|
-
}, {
|
|
238
|
-
props: any;
|
|
239
|
-
computedDirection: import("vue").ComputedRef<"horizontal" | "vertical" | "horizontalReverse" | "verticalReverse">;
|
|
240
|
-
readonly stackStyle: string;
|
|
241
|
-
readonly stackDirectionStyle: Record<"horizontal" | "vertical" | "horizontalReverse" | "verticalReverse", string>;
|
|
242
|
-
readonly stackJustifyStyle: Record<"center" | "end" | "start" | "between" | "around" | "evenly", string>;
|
|
243
|
-
readonly stackAlignStyle: Record<"stretch" | "center" | "end" | "start", string>;
|
|
244
|
-
readonly stackWrapStyle: string;
|
|
245
|
-
readonly stackPositionStyle: Record<"absolute" | "relative" | "fixed" | "sticky" | "static", string>;
|
|
246
|
-
readonly gapStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
247
|
-
readonly gapXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
248
|
-
readonly gapYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
249
|
-
readonly marginStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
250
|
-
readonly marginXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
251
|
-
readonly marginYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
252
|
-
readonly marginTopStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
253
|
-
readonly marginRightStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
254
|
-
readonly marginBottomStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
255
|
-
readonly marginLeftStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
256
|
-
readonly paddingStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
257
|
-
readonly paddingXStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
258
|
-
readonly paddingYStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
259
|
-
readonly paddingTopStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
260
|
-
readonly paddingRightStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
261
|
-
readonly paddingBottomStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
262
|
-
readonly paddingLeftStyle: Record<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max", string>;
|
|
263
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
264
|
-
direction: {
|
|
265
|
-
type: PropType<"horizontal" | "vertical">;
|
|
266
|
-
required: false;
|
|
267
|
-
default: string;
|
|
268
|
-
};
|
|
269
|
-
align: {
|
|
270
|
-
type: PropType<"stretch" | "center" | "end" | "start">;
|
|
271
|
-
required: false;
|
|
272
|
-
default: string;
|
|
273
|
-
};
|
|
274
|
-
justify: {
|
|
275
|
-
type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
|
|
276
|
-
required: false;
|
|
277
|
-
default: string;
|
|
278
|
-
};
|
|
279
|
-
wrap: {
|
|
280
|
-
type: BooleanConstructor;
|
|
281
|
-
required: false;
|
|
282
|
-
default: boolean;
|
|
283
|
-
};
|
|
284
|
-
gap: {
|
|
285
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
286
|
-
required: false;
|
|
287
|
-
};
|
|
288
|
-
gx: {
|
|
289
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
290
|
-
required: false;
|
|
291
|
-
};
|
|
292
|
-
gy: {
|
|
293
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
294
|
-
required: false;
|
|
295
|
-
};
|
|
296
|
-
p: {
|
|
297
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
298
|
-
required: false;
|
|
299
|
-
};
|
|
300
|
-
pt: {
|
|
301
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
302
|
-
required: false;
|
|
303
|
-
};
|
|
304
|
-
pr: {
|
|
305
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
306
|
-
required: false;
|
|
307
|
-
};
|
|
308
|
-
pb: {
|
|
309
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
310
|
-
required: false;
|
|
311
|
-
};
|
|
312
|
-
pl: {
|
|
313
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
314
|
-
required: false;
|
|
315
|
-
};
|
|
316
|
-
px: {
|
|
317
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
318
|
-
required: false;
|
|
319
|
-
};
|
|
320
|
-
py: {
|
|
321
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
322
|
-
required: false;
|
|
323
|
-
};
|
|
324
|
-
m: {
|
|
325
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
326
|
-
required: false;
|
|
327
|
-
};
|
|
328
|
-
mt: {
|
|
329
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
330
|
-
required: false;
|
|
331
|
-
};
|
|
332
|
-
mr: {
|
|
333
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
334
|
-
required: false;
|
|
335
|
-
};
|
|
336
|
-
mb: {
|
|
337
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
338
|
-
required: false;
|
|
339
|
-
};
|
|
340
|
-
ml: {
|
|
341
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
342
|
-
required: false;
|
|
343
|
-
};
|
|
344
|
-
mx: {
|
|
345
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
346
|
-
required: false;
|
|
347
|
-
};
|
|
348
|
-
my: {
|
|
349
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
350
|
-
required: false;
|
|
351
|
-
};
|
|
352
|
-
width: {
|
|
353
|
-
type: StringConstructor;
|
|
354
|
-
required: false;
|
|
355
|
-
default: string;
|
|
356
|
-
};
|
|
357
|
-
height: {
|
|
358
|
-
type: StringConstructor;
|
|
359
|
-
required: false;
|
|
360
|
-
default: string;
|
|
361
|
-
};
|
|
362
|
-
overflow: {
|
|
363
|
-
type: StringConstructor;
|
|
364
|
-
required: false;
|
|
365
|
-
default: string;
|
|
366
|
-
};
|
|
367
|
-
reverse: {
|
|
368
|
-
type: BooleanConstructor;
|
|
369
|
-
required: false;
|
|
370
|
-
};
|
|
371
|
-
position: {
|
|
372
|
-
type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
|
|
373
|
-
required: false;
|
|
374
|
-
};
|
|
375
|
-
}>>, {
|
|
376
|
-
reverse: boolean;
|
|
377
|
-
width: string;
|
|
378
|
-
height: string;
|
|
379
|
-
overflow: string;
|
|
380
|
-
direction: "horizontal" | "vertical";
|
|
381
|
-
wrap: boolean;
|
|
382
|
-
justify: "center" | "end" | "start" | "between" | "around" | "evenly";
|
|
383
|
-
align: "stretch" | "center" | "end" | "start";
|
|
384
|
-
}>;
|
|
385
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
386
|
-
align: {
|
|
387
|
-
type: PropType<"stretch" | "center" | "end" | "start">;
|
|
388
|
-
required: false;
|
|
389
|
-
};
|
|
390
|
-
justify: {
|
|
391
|
-
type: PropType<"center" | "end" | "start" | "between" | "around" | "evenly">;
|
|
392
|
-
required: false;
|
|
393
|
-
};
|
|
394
|
-
wrap: {
|
|
395
|
-
type: BooleanConstructor;
|
|
396
|
-
required: false;
|
|
397
|
-
};
|
|
398
|
-
gap: {
|
|
399
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
400
|
-
required: false;
|
|
401
|
-
};
|
|
402
|
-
gx: {
|
|
403
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
404
|
-
required: false;
|
|
405
|
-
};
|
|
406
|
-
gy: {
|
|
407
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
408
|
-
required: false;
|
|
409
|
-
};
|
|
410
|
-
p: {
|
|
411
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
412
|
-
required: false;
|
|
413
|
-
};
|
|
414
|
-
pt: {
|
|
415
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
416
|
-
required: false;
|
|
417
|
-
};
|
|
418
|
-
pr: {
|
|
419
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
420
|
-
required: false;
|
|
421
|
-
};
|
|
422
|
-
pb: {
|
|
423
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
424
|
-
required: false;
|
|
425
|
-
};
|
|
426
|
-
pl: {
|
|
427
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
428
|
-
required: false;
|
|
429
|
-
};
|
|
430
|
-
px: {
|
|
431
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
432
|
-
required: false;
|
|
433
|
-
};
|
|
434
|
-
py: {
|
|
435
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
436
|
-
required: false;
|
|
437
|
-
};
|
|
438
|
-
m: {
|
|
439
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
440
|
-
required: false;
|
|
441
|
-
};
|
|
442
|
-
mt: {
|
|
443
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
444
|
-
required: false;
|
|
445
|
-
};
|
|
446
|
-
mr: {
|
|
447
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
448
|
-
required: false;
|
|
449
|
-
};
|
|
450
|
-
mb: {
|
|
451
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
452
|
-
required: false;
|
|
453
|
-
};
|
|
454
|
-
ml: {
|
|
455
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
456
|
-
required: false;
|
|
457
|
-
};
|
|
458
|
-
mx: {
|
|
459
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
460
|
-
required: false;
|
|
461
|
-
};
|
|
462
|
-
my: {
|
|
463
|
-
type: PropType<"at" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "no" | "max">;
|
|
464
|
-
required: false;
|
|
465
|
-
};
|
|
466
|
-
width: {
|
|
467
|
-
type: StringConstructor;
|
|
468
|
-
required: false;
|
|
469
|
-
};
|
|
470
|
-
height: {
|
|
471
|
-
type: StringConstructor;
|
|
472
|
-
required: false;
|
|
473
|
-
};
|
|
474
|
-
overflow: {
|
|
475
|
-
type: StringConstructor;
|
|
476
|
-
required: false;
|
|
477
|
-
};
|
|
478
|
-
reverse: {
|
|
479
|
-
type: BooleanConstructor;
|
|
480
|
-
required: false;
|
|
481
|
-
};
|
|
482
|
-
position: {
|
|
483
|
-
type: PropType<"absolute" | "relative" | "fixed" | "sticky" | "static">;
|
|
484
|
-
required: false;
|
|
485
|
-
};
|
|
486
|
-
}>>, {
|
|
487
|
-
reverse: boolean;
|
|
488
|
-
wrap: boolean;
|
|
489
|
-
}>;
|
|
490
24
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
491
25
|
modelValue: {
|
|
492
26
|
type: PropType<number>;
|
|
@@ -123,8 +123,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
123
123
|
[name: string]: import("vue").Slot | undefined;
|
|
124
124
|
}>;
|
|
125
125
|
readonly tooltipStyle: string;
|
|
126
|
-
readonly tooltipBlockStyle: string;
|
|
127
126
|
readonly tooltipContentStyle: string;
|
|
127
|
+
readonly tooltipIconStyle: string;
|
|
128
|
+
readonly WizIChangeHistory: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
128
129
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
129
130
|
content: {
|
|
130
131
|
type: StringConstructor;
|
|
@@ -4,6 +4,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
4
4
|
required: false;
|
|
5
5
|
default: string;
|
|
6
6
|
};
|
|
7
|
+
colSpan: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
};
|
|
7
11
|
}, {
|
|
8
12
|
readonly cardThStyle: string;
|
|
9
13
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -12,6 +16,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
12
16
|
required: false;
|
|
13
17
|
default: string;
|
|
14
18
|
};
|
|
19
|
+
colSpan: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
required: false;
|
|
22
|
+
};
|
|
15
23
|
}>>, {
|
|
16
24
|
width: string;
|
|
17
25
|
}>;
|
|
@@ -8,8 +8,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
8
8
|
[name: string]: import("vue").Slot | undefined;
|
|
9
9
|
}>;
|
|
10
10
|
readonly tooltipStyle: string;
|
|
11
|
-
readonly tooltipBlockStyle: string;
|
|
12
11
|
readonly tooltipContentStyle: string;
|
|
12
|
+
readonly tooltipIconStyle: string;
|
|
13
|
+
readonly WizIChangeHistory: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
13
14
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
14
15
|
content: {
|
|
15
16
|
type: StringConstructor;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
|
@@ -6,6 +6,7 @@ import { default as WizIAttachFile } from "./attach-file.vue";
|
|
|
6
6
|
import { default as WizIAutoRenew } from "./autorenew.vue";
|
|
7
7
|
import { default as WizIBusinessCenter } from "./business-center.vue";
|
|
8
8
|
import { default as WizICalendar } from "./calendar.vue";
|
|
9
|
+
import { default as WizIChangeHistory } from "./change-history.vue";
|
|
9
10
|
import { default as WizIChat } from "./chat.vue";
|
|
10
11
|
import { default as WizICheck } from "./check.vue";
|
|
11
12
|
import { default as WizIChevronLeft } from "./chevron-left.vue";
|
|
@@ -13,6 +14,7 @@ import { default as WizIChevronRight } from "./chevron-right.vue";
|
|
|
13
14
|
import { default as WizICircleCheck } from "./circle-check.vue";
|
|
14
15
|
import { default as WizIClose } from "./close.vue";
|
|
15
16
|
import { default as WizIDashboard } from "./dashboard.vue";
|
|
17
|
+
import { default as WizIDownload } from "./download.vue";
|
|
16
18
|
import { default as WizIEditNote } from "./edit-note.vue";
|
|
17
19
|
import { default as WizIExpandLess } from "./expand-less.vue";
|
|
18
20
|
import { default as WizIExpandMore } from "./expand-more.vue";
|
|
@@ -32,5 +34,6 @@ import { default as WizISchedule } from "./schedule.vue";
|
|
|
32
34
|
import { default as WizISend } from "./send.vue";
|
|
33
35
|
import { default as WizITab } from "./tab.vue";
|
|
34
36
|
import { default as WizITask } from "./task.vue";
|
|
35
|
-
|
|
36
|
-
export
|
|
37
|
+
import { default as WizIUpload } from "./upload.vue";
|
|
38
|
+
export declare type TIcon = typeof WizIAdd | typeof WizIArrowRight | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIBusinessCenter | typeof WizIChangeHistory | typeof WizIChat | typeof WizICheck | typeof WizIChevronRight | typeof WizIChevronLeft | typeof WizICircleCheck | typeof WizIClose | typeof WizIDashboard | typeof WizIEditNote | typeof WizIExpandLess | typeof WizIExpandMore | typeof WizIEye | typeof WizIGroups | typeof WizIHelp | typeof WizIInfo | typeof WizIManageAccounts | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINotification | typeof WizIOpenInNew | typeof WizIRemove | typeof WizISchedule | typeof WizISend | typeof WizITab | typeof WizICalendar | typeof WizINoteAdd | typeof WizITask | typeof WizIAutoRenew | typeof WizIUpload | typeof WizIDownload;
|
|
39
|
+
export { WizIAdd, WizIArrowRight, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIBusinessCenter, WizIChangeHistory, WizIChat, WizICheck, WizIChevronRight, WizIChevronLeft, WizICircleCheck, WizIClose, WizIDashboard, WizIEditNote, WizIExpandLess, WizIExpandMore, WizIEye, WizIGroups, WizIHelp, WizIInfo, WizIManageAccounts, WizIMenu, WizIMonitoring, WizIMoreVert, WizINotification, WizIOpenInNew, WizIRemove, WizISchedule, WizISend, WizITab, WizICalendar, WizINoteAdd, WizITask, WizIAutoRenew, WizIUpload, WizIDownload, };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _sfc_main;
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { App } from "vue";
|
|
|
2
2
|
export * from "./components";
|
|
3
3
|
export * from "@wizleap-inc/wiz-ui-constants";
|
|
4
4
|
export declare const install: (app: App) => void;
|
|
5
|
-
export declare const version = "0.5.
|
|
5
|
+
export declare const version = "0.5.2";
|
|
6
6
|
declare const _default: {
|
|
7
7
|
install: (app: App<any>) => void;
|
|
8
8
|
version: string;
|