@wizleap-inc/wiz-ui-next 1.1.0 → 1.2.1
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/box/box.vue.d.ts +8 -8
- package/dist/components/base/buttons/icon/icon.vue.d.ts +5 -5
- package/dist/components/base/dialog/dialog.vue.d.ts +5 -5
- package/dist/components/base/header/header.vue.d.ts +5 -5
- package/dist/components/custom/chat/card/chat-card.vue.d.ts +27 -27
- package/dist/components/custom/chat/form/chat-form.vue.d.ts +5 -5
- package/dist/components/custom/chat/item/chat-item.vue.d.ts +1 -1
- package/dist/components/custom/form/control.vue.d.ts +8 -8
- package/dist/components/custom/notification/list/list.vue.d.ts +16 -16
- package/dist/components/custom/notification/notification.vue.d.ts +24 -24
- package/dist/components/custom/notification/panel/panel.vue.d.ts +8 -8
- package/dist/components/icons/history.vue.d.ts +2 -0
- package/dist/components/icons/index.d.ts +4 -2
- package/dist/components/icons/warning.vue.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +1880 -1844
- package/dist/wiz-ui.umd.js +10 -10
- package/package.json +5 -5
|
@@ -82,15 +82,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
82
82
|
required: false;
|
|
83
83
|
};
|
|
84
84
|
overflow: {
|
|
85
|
-
type: PropType<"
|
|
85
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
86
86
|
required: false;
|
|
87
87
|
};
|
|
88
88
|
overflowX: {
|
|
89
|
-
type: PropType<"
|
|
89
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
90
90
|
required: false;
|
|
91
91
|
};
|
|
92
92
|
overflowY: {
|
|
93
|
-
type: PropType<"
|
|
93
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
94
94
|
required: false;
|
|
95
95
|
};
|
|
96
96
|
cursor: {
|
|
@@ -98,7 +98,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
98
98
|
required: false;
|
|
99
99
|
};
|
|
100
100
|
pointerEvents: {
|
|
101
|
-
type: PropType<"
|
|
101
|
+
type: PropType<"none" | "auto">;
|
|
102
102
|
required: false;
|
|
103
103
|
};
|
|
104
104
|
transform: {
|
|
@@ -206,15 +206,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
206
206
|
required: false;
|
|
207
207
|
};
|
|
208
208
|
overflow: {
|
|
209
|
-
type: PropType<"
|
|
209
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
210
210
|
required: false;
|
|
211
211
|
};
|
|
212
212
|
overflowX: {
|
|
213
|
-
type: PropType<"
|
|
213
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
214
214
|
required: false;
|
|
215
215
|
};
|
|
216
216
|
overflowY: {
|
|
217
|
-
type: PropType<"
|
|
217
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
218
218
|
required: false;
|
|
219
219
|
};
|
|
220
220
|
cursor: {
|
|
@@ -222,7 +222,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
222
222
|
required: false;
|
|
223
223
|
};
|
|
224
224
|
pointerEvents: {
|
|
225
|
-
type: PropType<"
|
|
225
|
+
type: PropType<"none" | "auto">;
|
|
226
226
|
required: false;
|
|
227
227
|
};
|
|
228
228
|
transform: {
|
|
@@ -6,7 +6,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
8
|
variant: {
|
|
9
|
-
type: PropType<"
|
|
9
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
10
10
|
required: false;
|
|
11
11
|
default: string;
|
|
12
12
|
};
|
|
@@ -25,8 +25,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
25
25
|
emits: (event: "click") => void;
|
|
26
26
|
onClick: () => true | void;
|
|
27
27
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
28
|
-
readonly iconButtonSVGStyle: Record<"
|
|
29
|
-
readonly iconButtonStyle: Record<"
|
|
28
|
+
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
29
|
+
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
30
30
|
readonly iconButtonDisabledStyle: string;
|
|
31
31
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
32
32
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -35,7 +35,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
35
35
|
required: true;
|
|
36
36
|
};
|
|
37
37
|
variant: {
|
|
38
|
-
type: PropType<"
|
|
38
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
39
39
|
required: false;
|
|
40
40
|
default: string;
|
|
41
41
|
};
|
|
@@ -54,6 +54,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
54
54
|
}, {
|
|
55
55
|
size: "sm" | "md" | "lg" | "xl";
|
|
56
56
|
disabled: boolean;
|
|
57
|
-
variant: "
|
|
57
|
+
variant: "transparent" | "link" | "sub" | "primary";
|
|
58
58
|
}>;
|
|
59
59
|
export default _sfc_main;
|
|
@@ -33,7 +33,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
33
33
|
required: true;
|
|
34
34
|
};
|
|
35
35
|
variant: {
|
|
36
|
-
type: PropType<"
|
|
36
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
37
37
|
required: false;
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
@@ -52,8 +52,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
52
52
|
emits: (event: "click") => void;
|
|
53
53
|
onClick: () => true | void;
|
|
54
54
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
55
|
-
readonly iconButtonSVGStyle: Record<"
|
|
56
|
-
readonly iconButtonStyle: Record<"
|
|
55
|
+
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
56
|
+
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
57
57
|
readonly iconButtonDisabledStyle: string;
|
|
58
58
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
59
59
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -62,7 +62,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
62
62
|
required: true;
|
|
63
63
|
};
|
|
64
64
|
variant: {
|
|
65
|
-
type: PropType<"
|
|
65
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
66
66
|
required: false;
|
|
67
67
|
default: string;
|
|
68
68
|
};
|
|
@@ -81,7 +81,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
81
81
|
}, {
|
|
82
82
|
size: "sm" | "md" | "lg" | "xl";
|
|
83
83
|
disabled: boolean;
|
|
84
|
-
variant: "
|
|
84
|
+
variant: "transparent" | "link" | "sub" | "primary";
|
|
85
85
|
}>;
|
|
86
86
|
readonly WizCard: import("vue").DefineComponent<{
|
|
87
87
|
title: {
|
|
@@ -492,7 +492,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
492
492
|
required: true;
|
|
493
493
|
};
|
|
494
494
|
variant: {
|
|
495
|
-
type: PropType<"
|
|
495
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
496
496
|
required: false;
|
|
497
497
|
default: string;
|
|
498
498
|
};
|
|
@@ -511,8 +511,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
511
511
|
emits: (event: "click") => void;
|
|
512
512
|
onClick: () => true | void;
|
|
513
513
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
514
|
-
readonly iconButtonSVGStyle: Record<"
|
|
515
|
-
readonly iconButtonStyle: Record<"
|
|
514
|
+
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
515
|
+
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
516
516
|
readonly iconButtonDisabledStyle: string;
|
|
517
517
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
518
518
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -521,7 +521,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
521
521
|
required: true;
|
|
522
522
|
};
|
|
523
523
|
variant: {
|
|
524
|
-
type: PropType<"
|
|
524
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
525
525
|
required: false;
|
|
526
526
|
default: string;
|
|
527
527
|
};
|
|
@@ -540,7 +540,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
540
540
|
}, {
|
|
541
541
|
size: "sm" | "md" | "lg" | "xl";
|
|
542
542
|
disabled: boolean;
|
|
543
|
-
variant: "
|
|
543
|
+
variant: "transparent" | "link" | "sub" | "primary";
|
|
544
544
|
}>;
|
|
545
545
|
readonly WizIMenu: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
546
546
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -142,15 +142,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
142
142
|
required: false;
|
|
143
143
|
};
|
|
144
144
|
overflow: {
|
|
145
|
-
type: PropType<"
|
|
145
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
146
146
|
required: false;
|
|
147
147
|
};
|
|
148
148
|
overflowX: {
|
|
149
|
-
type: PropType<"
|
|
149
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
150
150
|
required: false;
|
|
151
151
|
};
|
|
152
152
|
overflowY: {
|
|
153
|
-
type: PropType<"
|
|
153
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
154
154
|
required: false;
|
|
155
155
|
};
|
|
156
156
|
cursor: {
|
|
@@ -158,7 +158,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
158
158
|
required: false;
|
|
159
159
|
};
|
|
160
160
|
pointerEvents: {
|
|
161
|
-
type: PropType<"
|
|
161
|
+
type: PropType<"none" | "auto">;
|
|
162
162
|
required: false;
|
|
163
163
|
};
|
|
164
164
|
transform: {
|
|
@@ -277,15 +277,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
277
277
|
required: false;
|
|
278
278
|
};
|
|
279
279
|
overflow: {
|
|
280
|
-
type: PropType<"
|
|
280
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
281
281
|
required: false;
|
|
282
282
|
};
|
|
283
283
|
overflowX: {
|
|
284
|
-
type: PropType<"
|
|
284
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
285
285
|
required: false;
|
|
286
286
|
};
|
|
287
287
|
overflowY: {
|
|
288
|
-
type: PropType<"
|
|
288
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
289
289
|
required: false;
|
|
290
290
|
};
|
|
291
291
|
cursor: {
|
|
@@ -293,7 +293,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
293
293
|
required: false;
|
|
294
294
|
};
|
|
295
295
|
pointerEvents: {
|
|
296
|
-
type: PropType<"
|
|
296
|
+
type: PropType<"none" | "auto">;
|
|
297
297
|
required: false;
|
|
298
298
|
};
|
|
299
299
|
transform: {
|
|
@@ -421,15 +421,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
421
421
|
required: false;
|
|
422
422
|
};
|
|
423
423
|
overflow: {
|
|
424
|
-
type: PropType<"
|
|
424
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
425
425
|
required: false;
|
|
426
426
|
};
|
|
427
427
|
overflowX: {
|
|
428
|
-
type: PropType<"
|
|
428
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
429
429
|
required: false;
|
|
430
430
|
};
|
|
431
431
|
overflowY: {
|
|
432
|
-
type: PropType<"
|
|
432
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
433
433
|
required: false;
|
|
434
434
|
};
|
|
435
435
|
cursor: {
|
|
@@ -437,7 +437,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
437
437
|
required: false;
|
|
438
438
|
};
|
|
439
439
|
pointerEvents: {
|
|
440
|
-
type: PropType<"
|
|
440
|
+
type: PropType<"none" | "auto">;
|
|
441
441
|
required: false;
|
|
442
442
|
};
|
|
443
443
|
transform: {
|
|
@@ -1449,7 +1449,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1449
1449
|
};
|
|
1450
1450
|
};
|
|
1451
1451
|
readonly chatCardOpenButtonStyle: string;
|
|
1452
|
-
readonly formatDateToMonthDayWeek: (date: Date, fillZero?: boolean) => string;
|
|
1452
|
+
readonly formatDateToMonthDayWeek: (date: Date, fillZero?: boolean | undefined) => string;
|
|
1453
1453
|
readonly WizBox: import("vue").DefineComponent<{
|
|
1454
1454
|
position: {
|
|
1455
1455
|
type: PropType<"fixed" | "absolute" | "relative" | "sticky" | "static">;
|
|
@@ -1532,15 +1532,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1532
1532
|
required: false;
|
|
1533
1533
|
};
|
|
1534
1534
|
overflow: {
|
|
1535
|
-
type: PropType<"
|
|
1535
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1536
1536
|
required: false;
|
|
1537
1537
|
};
|
|
1538
1538
|
overflowX: {
|
|
1539
|
-
type: PropType<"
|
|
1539
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1540
1540
|
required: false;
|
|
1541
1541
|
};
|
|
1542
1542
|
overflowY: {
|
|
1543
|
-
type: PropType<"
|
|
1543
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1544
1544
|
required: false;
|
|
1545
1545
|
};
|
|
1546
1546
|
cursor: {
|
|
@@ -1548,7 +1548,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1548
1548
|
required: false;
|
|
1549
1549
|
};
|
|
1550
1550
|
pointerEvents: {
|
|
1551
|
-
type: PropType<"
|
|
1551
|
+
type: PropType<"none" | "auto">;
|
|
1552
1552
|
required: false;
|
|
1553
1553
|
};
|
|
1554
1554
|
transform: {
|
|
@@ -1656,15 +1656,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1656
1656
|
required: false;
|
|
1657
1657
|
};
|
|
1658
1658
|
overflow: {
|
|
1659
|
-
type: PropType<"
|
|
1659
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1660
1660
|
required: false;
|
|
1661
1661
|
};
|
|
1662
1662
|
overflowX: {
|
|
1663
|
-
type: PropType<"
|
|
1663
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1664
1664
|
required: false;
|
|
1665
1665
|
};
|
|
1666
1666
|
overflowY: {
|
|
1667
|
-
type: PropType<"
|
|
1667
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1668
1668
|
required: false;
|
|
1669
1669
|
};
|
|
1670
1670
|
cursor: {
|
|
@@ -1672,7 +1672,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1672
1672
|
required: false;
|
|
1673
1673
|
};
|
|
1674
1674
|
pointerEvents: {
|
|
1675
|
-
type: PropType<"
|
|
1675
|
+
type: PropType<"none" | "auto">;
|
|
1676
1676
|
required: false;
|
|
1677
1677
|
};
|
|
1678
1678
|
transform: {
|
|
@@ -4053,7 +4053,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
4053
4053
|
required: true;
|
|
4054
4054
|
};
|
|
4055
4055
|
variant: {
|
|
4056
|
-
type: PropType<"
|
|
4056
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
4057
4057
|
required: false;
|
|
4058
4058
|
default: string;
|
|
4059
4059
|
};
|
|
@@ -4072,8 +4072,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
4072
4072
|
emits: (event: "click") => void;
|
|
4073
4073
|
onClick: () => true | void;
|
|
4074
4074
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
4075
|
-
readonly iconButtonSVGStyle: Record<"
|
|
4076
|
-
readonly iconButtonStyle: Record<"
|
|
4075
|
+
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
4076
|
+
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
4077
4077
|
readonly iconButtonDisabledStyle: string;
|
|
4078
4078
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
4079
4079
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -4082,7 +4082,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
4082
4082
|
required: true;
|
|
4083
4083
|
};
|
|
4084
4084
|
variant: {
|
|
4085
|
-
type: PropType<"
|
|
4085
|
+
type: PropType<"transparent" | "link" | "sub" | "primary">;
|
|
4086
4086
|
required: false;
|
|
4087
4087
|
default: string;
|
|
4088
4088
|
};
|
|
@@ -4101,7 +4101,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
4101
4101
|
}, {
|
|
4102
4102
|
size: "sm" | "md" | "lg" | "xl";
|
|
4103
4103
|
disabled: boolean;
|
|
4104
|
-
variant: "
|
|
4104
|
+
variant: "transparent" | "link" | "sub" | "primary";
|
|
4105
4105
|
}>;
|
|
4106
4106
|
readonly WizTextArea: import("vue").DefineComponent<{
|
|
4107
4107
|
id: {
|
|
@@ -4215,7 +4215,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
4215
4215
|
displayReadStatus: import("vue").ComputedRef<string>;
|
|
4216
4216
|
readonly formatDateToTime: (date: Date) => string;
|
|
4217
4217
|
readonly linkify: (text: string) => {
|
|
4218
|
-
type: "
|
|
4218
|
+
type: "link" | "text";
|
|
4219
4219
|
content: string;
|
|
4220
4220
|
}[];
|
|
4221
4221
|
readonly WizHStack: import("vue").DefineComponent<{
|
|
@@ -496,7 +496,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
496
496
|
required: true;
|
|
497
497
|
};
|
|
498
498
|
variant: {
|
|
499
|
-
type: import("vue").PropType<"
|
|
499
|
+
type: import("vue").PropType<"transparent" | "link" | "sub" | "primary">;
|
|
500
500
|
required: false;
|
|
501
501
|
default: string;
|
|
502
502
|
};
|
|
@@ -515,8 +515,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
515
515
|
emits: (event: "click") => void;
|
|
516
516
|
onClick: () => true | void;
|
|
517
517
|
readonly getRelativeFontSize: (key: "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", diffIndex: number) => "xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6";
|
|
518
|
-
readonly iconButtonSVGStyle: Record<"
|
|
519
|
-
readonly iconButtonStyle: Record<"
|
|
518
|
+
readonly iconButtonSVGStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
519
|
+
readonly iconButtonStyle: Record<"transparent" | "link" | "sub" | "primary", string>;
|
|
520
520
|
readonly iconButtonDisabledStyle: string;
|
|
521
521
|
readonly fontSizeStyle: Record<"xs3" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xl5" | "xl6", string>;
|
|
522
522
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -525,7 +525,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
525
525
|
required: true;
|
|
526
526
|
};
|
|
527
527
|
variant: {
|
|
528
|
-
type: import("vue").PropType<"
|
|
528
|
+
type: import("vue").PropType<"transparent" | "link" | "sub" | "primary">;
|
|
529
529
|
required: false;
|
|
530
530
|
default: string;
|
|
531
531
|
};
|
|
@@ -544,7 +544,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
544
544
|
}, {
|
|
545
545
|
size: "sm" | "md" | "lg" | "xl";
|
|
546
546
|
disabled: boolean;
|
|
547
|
-
variant: "
|
|
547
|
+
variant: "transparent" | "link" | "sub" | "primary";
|
|
548
548
|
}>;
|
|
549
549
|
readonly WizTextArea: import("vue").DefineComponent<{
|
|
550
550
|
id: {
|
|
@@ -14,7 +14,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
14
14
|
displayReadStatus: import("vue").ComputedRef<string>;
|
|
15
15
|
readonly formatDateToTime: (date: Date) => string;
|
|
16
16
|
readonly linkify: (text: string) => {
|
|
17
|
-
type: "
|
|
17
|
+
type: "link" | "text";
|
|
18
18
|
content: string;
|
|
19
19
|
}[];
|
|
20
20
|
readonly WizHStack: import("vue").DefineComponent<{
|
|
@@ -1403,15 +1403,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1403
1403
|
required: false;
|
|
1404
1404
|
};
|
|
1405
1405
|
overflow: {
|
|
1406
|
-
type: import("vue").PropType<"
|
|
1406
|
+
type: import("vue").PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1407
1407
|
required: false;
|
|
1408
1408
|
};
|
|
1409
1409
|
overflowX: {
|
|
1410
|
-
type: import("vue").PropType<"
|
|
1410
|
+
type: import("vue").PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1411
1411
|
required: false;
|
|
1412
1412
|
};
|
|
1413
1413
|
overflowY: {
|
|
1414
|
-
type: import("vue").PropType<"
|
|
1414
|
+
type: import("vue").PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1415
1415
|
required: false;
|
|
1416
1416
|
};
|
|
1417
1417
|
cursor: {
|
|
@@ -1419,7 +1419,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1419
1419
|
required: false;
|
|
1420
1420
|
};
|
|
1421
1421
|
pointerEvents: {
|
|
1422
|
-
type: import("vue").PropType<"
|
|
1422
|
+
type: import("vue").PropType<"none" | "auto">;
|
|
1423
1423
|
required: false;
|
|
1424
1424
|
};
|
|
1425
1425
|
transform: {
|
|
@@ -1527,15 +1527,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1527
1527
|
required: false;
|
|
1528
1528
|
};
|
|
1529
1529
|
overflow: {
|
|
1530
|
-
type: import("vue").PropType<"
|
|
1530
|
+
type: import("vue").PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1531
1531
|
required: false;
|
|
1532
1532
|
};
|
|
1533
1533
|
overflowX: {
|
|
1534
|
-
type: import("vue").PropType<"
|
|
1534
|
+
type: import("vue").PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1535
1535
|
required: false;
|
|
1536
1536
|
};
|
|
1537
1537
|
overflowY: {
|
|
1538
|
-
type: import("vue").PropType<"
|
|
1538
|
+
type: import("vue").PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1539
1539
|
required: false;
|
|
1540
1540
|
};
|
|
1541
1541
|
cursor: {
|
|
@@ -1543,7 +1543,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1543
1543
|
required: false;
|
|
1544
1544
|
};
|
|
1545
1545
|
pointerEvents: {
|
|
1546
|
-
type: import("vue").PropType<"
|
|
1546
|
+
type: import("vue").PropType<"none" | "auto">;
|
|
1547
1547
|
required: false;
|
|
1548
1548
|
};
|
|
1549
1549
|
transform: {
|
|
@@ -144,15 +144,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
144
144
|
required: false;
|
|
145
145
|
};
|
|
146
146
|
overflow: {
|
|
147
|
-
type: PropType<"
|
|
147
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
148
148
|
required: false;
|
|
149
149
|
};
|
|
150
150
|
overflowX: {
|
|
151
|
-
type: PropType<"
|
|
151
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
152
152
|
required: false;
|
|
153
153
|
};
|
|
154
154
|
overflowY: {
|
|
155
|
-
type: PropType<"
|
|
155
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
156
156
|
required: false;
|
|
157
157
|
};
|
|
158
158
|
cursor: {
|
|
@@ -160,7 +160,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
160
160
|
required: false;
|
|
161
161
|
};
|
|
162
162
|
pointerEvents: {
|
|
163
|
-
type: PropType<"
|
|
163
|
+
type: PropType<"none" | "auto">;
|
|
164
164
|
required: false;
|
|
165
165
|
};
|
|
166
166
|
transform: {
|
|
@@ -268,15 +268,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
268
268
|
required: false;
|
|
269
269
|
};
|
|
270
270
|
overflow: {
|
|
271
|
-
type: PropType<"
|
|
271
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
272
272
|
required: false;
|
|
273
273
|
};
|
|
274
274
|
overflowX: {
|
|
275
|
-
type: PropType<"
|
|
275
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
276
276
|
required: false;
|
|
277
277
|
};
|
|
278
278
|
overflowY: {
|
|
279
|
-
type: PropType<"
|
|
279
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
280
280
|
required: false;
|
|
281
281
|
};
|
|
282
282
|
cursor: {
|
|
@@ -284,7 +284,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
284
284
|
required: false;
|
|
285
285
|
};
|
|
286
286
|
pointerEvents: {
|
|
287
|
-
type: PropType<"
|
|
287
|
+
type: PropType<"none" | "auto">;
|
|
288
288
|
required: false;
|
|
289
289
|
};
|
|
290
290
|
transform: {
|
|
@@ -1031,15 +1031,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1031
1031
|
required: false;
|
|
1032
1032
|
};
|
|
1033
1033
|
overflow: {
|
|
1034
|
-
type: PropType<"
|
|
1034
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1035
1035
|
required: false;
|
|
1036
1036
|
};
|
|
1037
1037
|
overflowX: {
|
|
1038
|
-
type: PropType<"
|
|
1038
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1039
1039
|
required: false;
|
|
1040
1040
|
};
|
|
1041
1041
|
overflowY: {
|
|
1042
|
-
type: PropType<"
|
|
1042
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1043
1043
|
required: false;
|
|
1044
1044
|
};
|
|
1045
1045
|
cursor: {
|
|
@@ -1047,7 +1047,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1047
1047
|
required: false;
|
|
1048
1048
|
};
|
|
1049
1049
|
pointerEvents: {
|
|
1050
|
-
type: PropType<"
|
|
1050
|
+
type: PropType<"none" | "auto">;
|
|
1051
1051
|
required: false;
|
|
1052
1052
|
};
|
|
1053
1053
|
transform: {
|
|
@@ -1155,15 +1155,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1155
1155
|
required: false;
|
|
1156
1156
|
};
|
|
1157
1157
|
overflow: {
|
|
1158
|
-
type: PropType<"
|
|
1158
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1159
1159
|
required: false;
|
|
1160
1160
|
};
|
|
1161
1161
|
overflowX: {
|
|
1162
|
-
type: PropType<"
|
|
1162
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1163
1163
|
required: false;
|
|
1164
1164
|
};
|
|
1165
1165
|
overflowY: {
|
|
1166
|
-
type: PropType<"
|
|
1166
|
+
type: PropType<"hidden" | "visible" | "scroll" | "auto">;
|
|
1167
1167
|
required: false;
|
|
1168
1168
|
};
|
|
1169
1169
|
cursor: {
|
|
@@ -1171,7 +1171,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1171
1171
|
required: false;
|
|
1172
1172
|
};
|
|
1173
1173
|
pointerEvents: {
|
|
1174
|
-
type: PropType<"
|
|
1174
|
+
type: PropType<"none" | "auto">;
|
|
1175
1175
|
required: false;
|
|
1176
1176
|
};
|
|
1177
1177
|
transform: {
|