@wizleap-inc/wiz-ui-next 2.12.0 → 2.13.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/full-modal-view/full-modal-view.vue.d.ts +2 -2
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +2 -2
- package/dist/components/base/inputs/search-selector/search-selector.vue.d.ts +19 -0
- package/dist/components/base/inputs/selectbox/selectbox.vue.d.ts +9 -0
- package/dist/components/base/progress-bar/progress-bar.vue.d.ts +2 -2
- package/dist/components/base/snackbar/snackbar-controller.vue.d.ts +2 -2
- package/dist/components/base/snackbar/snackbar.vue.d.ts +2 -2
- package/dist/components/base/text/text.vue.d.ts +2 -2
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +13 -4
- package/dist/components/custom/chat/item/chat-item.vue.d.ts +2 -2
- package/dist/components/custom/form/control.vue.d.ts +2 -2
- package/dist/components/custom/notification/list/list.vue.d.ts +4 -4
- package/dist/components/custom/notification/notification.vue.d.ts +4 -4
- package/dist/components/custom/notification/panel/panel.vue.d.ts +2 -2
- package/dist/components/manager/provider.vue.d.ts +2 -2
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2093 -2077
- package/dist/wiz-ui.umd.js +15 -15
- package/package.json +2 -2
|
@@ -701,12 +701,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
701
701
|
overflowStyles: import("vue").ComputedRef<{
|
|
702
702
|
overflow?: undefined;
|
|
703
703
|
display?: undefined;
|
|
704
|
-
|
|
704
|
+
WebkitBoxOrient?: undefined;
|
|
705
705
|
WebkitLineClamp?: undefined;
|
|
706
706
|
} | {
|
|
707
707
|
overflow: string;
|
|
708
708
|
display: string;
|
|
709
|
-
|
|
709
|
+
WebkitBoxOrient: string;
|
|
710
710
|
WebkitLineClamp: number;
|
|
711
711
|
}>;
|
|
712
712
|
readonly textStyle: string;
|
|
@@ -1041,12 +1041,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1041
1041
|
overflowStyles: import("vue").ComputedRef<{
|
|
1042
1042
|
overflow?: undefined;
|
|
1043
1043
|
display?: undefined;
|
|
1044
|
-
|
|
1044
|
+
WebkitBoxOrient?: undefined;
|
|
1045
1045
|
WebkitLineClamp?: undefined;
|
|
1046
1046
|
} | {
|
|
1047
1047
|
overflow: string;
|
|
1048
1048
|
display: string;
|
|
1049
|
-
|
|
1049
|
+
WebkitBoxOrient: string;
|
|
1050
1050
|
WebkitLineClamp: number;
|
|
1051
1051
|
}>;
|
|
1052
1052
|
readonly textStyle: string;
|
|
@@ -52,6 +52,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
52
52
|
required: false;
|
|
53
53
|
default: boolean;
|
|
54
54
|
};
|
|
55
|
+
showExLabel: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
required: false;
|
|
58
|
+
default: boolean;
|
|
59
|
+
};
|
|
60
|
+
dropdownMaxHeight: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
required: false;
|
|
63
|
+
};
|
|
55
64
|
}, {
|
|
56
65
|
props: any;
|
|
57
66
|
emit: {
|
|
@@ -2231,6 +2240,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2231
2240
|
required: false;
|
|
2232
2241
|
default: boolean;
|
|
2233
2242
|
};
|
|
2243
|
+
showExLabel: {
|
|
2244
|
+
type: BooleanConstructor;
|
|
2245
|
+
required: false;
|
|
2246
|
+
default: boolean;
|
|
2247
|
+
};
|
|
2248
|
+
dropdownMaxHeight: {
|
|
2249
|
+
type: StringConstructor;
|
|
2250
|
+
required: false;
|
|
2251
|
+
};
|
|
2234
2252
|
}>> & {
|
|
2235
2253
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
2236
2254
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
@@ -2245,5 +2263,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2245
2263
|
placeholder: string;
|
|
2246
2264
|
multiSelectable: boolean;
|
|
2247
2265
|
addable: boolean;
|
|
2266
|
+
showExLabel: boolean;
|
|
2248
2267
|
}>;
|
|
2249
2268
|
export default _sfc_main;
|
|
@@ -43,6 +43,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
43
43
|
required: false;
|
|
44
44
|
default: boolean;
|
|
45
45
|
};
|
|
46
|
+
dropdownMaxHeight: {
|
|
47
|
+
type: StringConstructor;
|
|
48
|
+
required: false;
|
|
49
|
+
};
|
|
46
50
|
}, {
|
|
47
51
|
props: any;
|
|
48
52
|
openSelectBox: import("vue").Ref<boolean>;
|
|
@@ -58,6 +62,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
58
62
|
computedWidth: import("vue").ComputedRef<string>;
|
|
59
63
|
state: import("vue").ComputedRef<"default" | "active" | "error">;
|
|
60
64
|
isValueMatched: import("vue").ComputedRef<boolean>;
|
|
65
|
+
selectedOption: import("vue").ComputedRef<SelectBoxOption | undefined>;
|
|
61
66
|
readonly selectBoxCursorStyle: Record<"default" | "disabled", string>;
|
|
62
67
|
readonly selectBoxDisabledStyle: string;
|
|
63
68
|
readonly selectBoxInnerBoxLessStyle: string;
|
|
@@ -1252,6 +1257,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1252
1257
|
required: false;
|
|
1253
1258
|
default: boolean;
|
|
1254
1259
|
};
|
|
1260
|
+
dropdownMaxHeight: {
|
|
1261
|
+
type: StringConstructor;
|
|
1262
|
+
required: false;
|
|
1263
|
+
};
|
|
1255
1264
|
}>> & {
|
|
1256
1265
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1257
1266
|
}, {
|
|
@@ -75,12 +75,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
75
75
|
overflowStyles: import("vue").ComputedRef<{
|
|
76
76
|
overflow?: undefined;
|
|
77
77
|
display?: undefined;
|
|
78
|
-
|
|
78
|
+
WebkitBoxOrient?: undefined;
|
|
79
79
|
WebkitLineClamp?: undefined;
|
|
80
80
|
} | {
|
|
81
81
|
overflow: string;
|
|
82
82
|
display: string;
|
|
83
|
-
|
|
83
|
+
WebkitBoxOrient: string;
|
|
84
84
|
WebkitLineClamp: number;
|
|
85
85
|
}>;
|
|
86
86
|
readonly textStyle: string;
|
|
@@ -197,12 +197,12 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
197
197
|
overflowStyles: import("vue").ComputedRef<{
|
|
198
198
|
overflow?: undefined;
|
|
199
199
|
display?: undefined;
|
|
200
|
-
|
|
200
|
+
WebkitBoxOrient?: undefined;
|
|
201
201
|
WebkitLineClamp?: undefined;
|
|
202
202
|
} | {
|
|
203
203
|
overflow: string;
|
|
204
204
|
display: string;
|
|
205
|
-
|
|
205
|
+
WebkitBoxOrient: string;
|
|
206
206
|
WebkitLineClamp: number;
|
|
207
207
|
}>;
|
|
208
208
|
readonly textStyle: string;
|
|
@@ -182,12 +182,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
182
182
|
overflowStyles: import("vue").ComputedRef<{
|
|
183
183
|
overflow?: undefined;
|
|
184
184
|
display?: undefined;
|
|
185
|
-
|
|
185
|
+
WebkitBoxOrient?: undefined;
|
|
186
186
|
WebkitLineClamp?: undefined;
|
|
187
187
|
} | {
|
|
188
188
|
overflow: string;
|
|
189
189
|
display: string;
|
|
190
|
-
|
|
190
|
+
WebkitBoxOrient: string;
|
|
191
191
|
WebkitLineClamp: number;
|
|
192
192
|
}>;
|
|
193
193
|
readonly textStyle: string;
|
|
@@ -64,12 +64,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
64
64
|
overflowStyles: import("vue").ComputedRef<{
|
|
65
65
|
overflow?: undefined;
|
|
66
66
|
display?: undefined;
|
|
67
|
-
|
|
67
|
+
WebkitBoxOrient?: undefined;
|
|
68
68
|
WebkitLineClamp?: undefined;
|
|
69
69
|
} | {
|
|
70
70
|
overflow: string;
|
|
71
71
|
display: string;
|
|
72
|
-
|
|
72
|
+
WebkitBoxOrient: string;
|
|
73
73
|
WebkitLineClamp: number;
|
|
74
74
|
}>;
|
|
75
75
|
readonly textStyle: string;
|
|
@@ -3562,12 +3562,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
3562
3562
|
overflowStyles: import("vue").ComputedRef<{
|
|
3563
3563
|
overflow?: undefined;
|
|
3564
3564
|
display?: undefined;
|
|
3565
|
-
|
|
3565
|
+
WebkitBoxOrient?: undefined;
|
|
3566
3566
|
WebkitLineClamp?: undefined;
|
|
3567
3567
|
} | {
|
|
3568
3568
|
overflow: string;
|
|
3569
3569
|
display: string;
|
|
3570
|
-
|
|
3570
|
+
WebkitBoxOrient: string;
|
|
3571
3571
|
WebkitLineClamp: number;
|
|
3572
3572
|
}>;
|
|
3573
3573
|
readonly textStyle: string;
|
|
@@ -5698,6 +5698,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
5698
5698
|
required: false;
|
|
5699
5699
|
default: boolean;
|
|
5700
5700
|
};
|
|
5701
|
+
dropdownMaxHeight: {
|
|
5702
|
+
type: StringConstructor;
|
|
5703
|
+
required: false;
|
|
5704
|
+
};
|
|
5701
5705
|
}, {
|
|
5702
5706
|
props: any;
|
|
5703
5707
|
openSelectBox: import("vue").Ref<boolean>;
|
|
@@ -5713,6 +5717,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
5713
5717
|
computedWidth: import("vue").ComputedRef<string>;
|
|
5714
5718
|
state: import("vue").ComputedRef<"default" | "active" | "error">;
|
|
5715
5719
|
isValueMatched: import("vue").ComputedRef<boolean>;
|
|
5720
|
+
selectedOption: import("vue").ComputedRef<SelectBoxOption | undefined>;
|
|
5716
5721
|
readonly selectBoxCursorStyle: Record<"default" | "disabled", string>;
|
|
5717
5722
|
readonly selectBoxDisabledStyle: string;
|
|
5718
5723
|
readonly selectBoxInnerBoxLessStyle: string;
|
|
@@ -6907,6 +6912,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6907
6912
|
required: false;
|
|
6908
6913
|
default: boolean;
|
|
6909
6914
|
};
|
|
6915
|
+
dropdownMaxHeight: {
|
|
6916
|
+
type: StringConstructor;
|
|
6917
|
+
required: false;
|
|
6918
|
+
};
|
|
6910
6919
|
}>> & {
|
|
6911
6920
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6912
6921
|
}, {
|
|
@@ -7210,12 +7219,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7210
7219
|
overflowStyles: import("vue").ComputedRef<{
|
|
7211
7220
|
overflow?: undefined;
|
|
7212
7221
|
display?: undefined;
|
|
7213
|
-
|
|
7222
|
+
WebkitBoxOrient?: undefined;
|
|
7214
7223
|
WebkitLineClamp?: undefined;
|
|
7215
7224
|
} | {
|
|
7216
7225
|
overflow: string;
|
|
7217
7226
|
display: string;
|
|
7218
|
-
|
|
7227
|
+
WebkitBoxOrient: string;
|
|
7219
7228
|
WebkitLineClamp: number;
|
|
7220
7229
|
}>;
|
|
7221
7230
|
readonly textStyle: string;
|
|
@@ -548,12 +548,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
548
548
|
overflowStyles: import("vue").ComputedRef<{
|
|
549
549
|
overflow?: undefined;
|
|
550
550
|
display?: undefined;
|
|
551
|
-
|
|
551
|
+
WebkitBoxOrient?: undefined;
|
|
552
552
|
WebkitLineClamp?: undefined;
|
|
553
553
|
} | {
|
|
554
554
|
overflow: string;
|
|
555
555
|
display: string;
|
|
556
|
-
|
|
556
|
+
WebkitBoxOrient: string;
|
|
557
557
|
WebkitLineClamp: number;
|
|
558
558
|
}>;
|
|
559
559
|
readonly textStyle: string;
|
|
@@ -435,12 +435,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
435
435
|
overflowStyles: import("vue").ComputedRef<{
|
|
436
436
|
overflow?: undefined;
|
|
437
437
|
display?: undefined;
|
|
438
|
-
|
|
438
|
+
WebkitBoxOrient?: undefined;
|
|
439
439
|
WebkitLineClamp?: undefined;
|
|
440
440
|
} | {
|
|
441
441
|
overflow: string;
|
|
442
442
|
display: string;
|
|
443
|
-
|
|
443
|
+
WebkitBoxOrient: string;
|
|
444
444
|
WebkitLineClamp: number;
|
|
445
445
|
}>;
|
|
446
446
|
readonly textStyle: string;
|
|
@@ -839,12 +839,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
839
839
|
overflowStyles: import("vue").ComputedRef<{
|
|
840
840
|
overflow?: undefined;
|
|
841
841
|
display?: undefined;
|
|
842
|
-
|
|
842
|
+
WebkitBoxOrient?: undefined;
|
|
843
843
|
WebkitLineClamp?: undefined;
|
|
844
844
|
} | {
|
|
845
845
|
overflow: string;
|
|
846
846
|
display: string;
|
|
847
|
-
|
|
847
|
+
WebkitBoxOrient: string;
|
|
848
848
|
WebkitLineClamp: number;
|
|
849
849
|
}>;
|
|
850
850
|
readonly textStyle: string;
|
|
@@ -2250,12 +2250,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2250
2250
|
overflowStyles: import("vue").ComputedRef<{
|
|
2251
2251
|
overflow?: undefined;
|
|
2252
2252
|
display?: undefined;
|
|
2253
|
-
|
|
2253
|
+
WebkitBoxOrient?: undefined;
|
|
2254
2254
|
WebkitLineClamp?: undefined;
|
|
2255
2255
|
} | {
|
|
2256
2256
|
overflow: string;
|
|
2257
2257
|
display: string;
|
|
2258
|
-
|
|
2258
|
+
WebkitBoxOrient: string;
|
|
2259
2259
|
WebkitLineClamp: number;
|
|
2260
2260
|
}>;
|
|
2261
2261
|
readonly textStyle: string;
|
|
@@ -1698,12 +1698,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1698
1698
|
overflowStyles: import("vue").ComputedRef<{
|
|
1699
1699
|
overflow?: undefined;
|
|
1700
1700
|
display?: undefined;
|
|
1701
|
-
|
|
1701
|
+
WebkitBoxOrient?: undefined;
|
|
1702
1702
|
WebkitLineClamp?: undefined;
|
|
1703
1703
|
} | {
|
|
1704
1704
|
overflow: string;
|
|
1705
1705
|
display: string;
|
|
1706
|
-
|
|
1706
|
+
WebkitBoxOrient: string;
|
|
1707
1707
|
WebkitLineClamp: number;
|
|
1708
1708
|
}>;
|
|
1709
1709
|
readonly textStyle: string;
|
|
@@ -3109,12 +3109,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
3109
3109
|
overflowStyles: import("vue").ComputedRef<{
|
|
3110
3110
|
overflow?: undefined;
|
|
3111
3111
|
display?: undefined;
|
|
3112
|
-
|
|
3112
|
+
WebkitBoxOrient?: undefined;
|
|
3113
3113
|
WebkitLineClamp?: undefined;
|
|
3114
3114
|
} | {
|
|
3115
3115
|
overflow: string;
|
|
3116
3116
|
display: string;
|
|
3117
|
-
|
|
3117
|
+
WebkitBoxOrient: string;
|
|
3118
3118
|
WebkitLineClamp: number;
|
|
3119
3119
|
}>;
|
|
3120
3120
|
readonly textStyle: string;
|
|
@@ -1324,12 +1324,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1324
1324
|
overflowStyles: import("vue").ComputedRef<{
|
|
1325
1325
|
overflow?: undefined;
|
|
1326
1326
|
display?: undefined;
|
|
1327
|
-
|
|
1327
|
+
WebkitBoxOrient?: undefined;
|
|
1328
1328
|
WebkitLineClamp?: undefined;
|
|
1329
1329
|
} | {
|
|
1330
1330
|
overflow: string;
|
|
1331
1331
|
display: string;
|
|
1332
|
-
|
|
1332
|
+
WebkitBoxOrient: string;
|
|
1333
1333
|
WebkitLineClamp: number;
|
|
1334
1334
|
}>;
|
|
1335
1335
|
readonly textStyle: string;
|
|
@@ -197,12 +197,12 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
197
197
|
overflowStyles: import("vue").ComputedRef<{
|
|
198
198
|
overflow?: undefined;
|
|
199
199
|
display?: undefined;
|
|
200
|
-
|
|
200
|
+
WebkitBoxOrient?: undefined;
|
|
201
201
|
WebkitLineClamp?: undefined;
|
|
202
202
|
} | {
|
|
203
203
|
overflow: string;
|
|
204
204
|
display: string;
|
|
205
|
-
|
|
205
|
+
WebkitBoxOrient: string;
|
|
206
206
|
WebkitLineClamp: number;
|
|
207
207
|
}>;
|
|
208
208
|
readonly textStyle: string;
|