@wizleap-inc/wiz-ui-next 2.1.0 → 2.3.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/calendar/calendar.vue.d.ts +23 -2
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +34 -2
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +13 -2
- package/dist/components/base/show-more-less/show-more-less.vue.d.ts +54 -65
- package/dist/components/custom/notification/list/list.vue.d.ts +12 -0
- package/dist/components/custom/notification/notification.vue.d.ts +12 -0
- package/dist/components/custom/notification/panel/panel.vue.d.ts +23 -10
- package/dist/components/icons/circle.vue.d.ts +2 -0
- package/dist/components/icons/contract.vue.d.ts +2 -0
- package/dist/components/icons/index.d.ts +7 -2
- package/dist/components/icons/location-city.vue.d.ts +2 -0
- package/dist/components/icons/settings.vue.d.ts +2 -0
- package/dist/components/icons/smartphone.vue.d.ts +2 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +2827 -2704
- package/dist/wiz-ui.umd.js +18 -18
- package/package.json +3 -3
|
@@ -16,17 +16,27 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
16
|
required: false;
|
|
17
17
|
default: boolean;
|
|
18
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* @description 日付が無効かどうかを判定する関数です。無効な日付はクリック不可です。
|
|
21
|
+
* @param date
|
|
22
|
+
* @returns {boolean} `true`: 無効な日付, `false`: 有効な日付
|
|
23
|
+
*/
|
|
24
|
+
disabledDate: {
|
|
25
|
+
type: PropType<(date: Date) => boolean>;
|
|
26
|
+
required: false;
|
|
27
|
+
default: () => boolean;
|
|
28
|
+
};
|
|
19
29
|
}, {
|
|
20
30
|
emits: (e: "click", value: Date) => void;
|
|
21
31
|
props: any;
|
|
22
32
|
calendars: import("vue").ComputedRef<string[][]>;
|
|
23
33
|
isCurrentMonth: (row: number, col: number) => boolean;
|
|
24
|
-
getDateState: import("vue").ComputedRef<(row: number, col: number) => import("./types").DateState | "outOfCurrentMonth" | "inCurrentMonth">;
|
|
34
|
+
getDateState: import("vue").ComputedRef<(row: number, col: number) => import("./types").DateState | "outOfCurrentMonth" | "disabledDate" | "inCurrentMonth">;
|
|
25
35
|
updateSelectedDate: (row: number, col: number, day: string) => void;
|
|
26
36
|
readonly WEEK_LIST_JP: string[];
|
|
27
37
|
readonly calendarCellStyle: string;
|
|
28
38
|
readonly calendarItemCommonStyle: string;
|
|
29
|
-
readonly calendarItemStyle: Record<"primary" | "secondary" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
|
|
39
|
+
readonly calendarItemStyle: Record<"primary" | "disabledDate" | "secondary" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
|
|
30
40
|
readonly calendarStyle: string;
|
|
31
41
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32
42
|
currentMonth: {
|
|
@@ -44,11 +54,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
44
54
|
required: false;
|
|
45
55
|
default: boolean;
|
|
46
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* @description 日付が無効かどうかを判定する関数です。無効な日付はクリック不可です。
|
|
59
|
+
* @param date
|
|
60
|
+
* @returns {boolean} `true`: 無効な日付, `false`: 有効な日付
|
|
61
|
+
*/
|
|
62
|
+
disabledDate: {
|
|
63
|
+
type: PropType<(date: Date) => boolean>;
|
|
64
|
+
required: false;
|
|
65
|
+
default: () => boolean;
|
|
66
|
+
};
|
|
47
67
|
}>> & {
|
|
48
68
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
49
69
|
}, {
|
|
50
70
|
currentMonth: Date;
|
|
51
71
|
activeDates: DateStatus[];
|
|
52
72
|
filledWeeks: boolean;
|
|
73
|
+
disabledDate: (date: Date) => boolean;
|
|
53
74
|
}>;
|
|
54
75
|
export default _sfc_main;
|
|
@@ -38,6 +38,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
38
38
|
required: false;
|
|
39
39
|
default: boolean;
|
|
40
40
|
};
|
|
41
|
+
/**
|
|
42
|
+
* @description 日付が無効かどうかを判定する関数です。無効な日付はクリック不可になります。
|
|
43
|
+
* @param date
|
|
44
|
+
* @returns {boolean} `true`: 無効な日付, `false`: 有効な日付
|
|
45
|
+
*/
|
|
46
|
+
disabledDate: {
|
|
47
|
+
type: PropType<(date: Date) => boolean>;
|
|
48
|
+
required: false;
|
|
49
|
+
default: () => boolean;
|
|
50
|
+
};
|
|
41
51
|
}, {
|
|
42
52
|
props: any;
|
|
43
53
|
emit: {
|
|
@@ -169,17 +179,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
169
179
|
required: false;
|
|
170
180
|
default: boolean;
|
|
171
181
|
};
|
|
182
|
+
disabledDate: {
|
|
183
|
+
type: PropType<(date: Date) => boolean>;
|
|
184
|
+
required: false;
|
|
185
|
+
default: () => boolean;
|
|
186
|
+
};
|
|
172
187
|
}, {
|
|
173
188
|
emits: (e: "click", value: Date) => void;
|
|
174
189
|
props: any;
|
|
175
190
|
calendars: import("vue").ComputedRef<string[][]>;
|
|
176
191
|
isCurrentMonth: (row: number, col: number) => boolean;
|
|
177
|
-
getDateState: import("vue").ComputedRef<(row: number, col: number) => import("../../calendar/types").DateState | "outOfCurrentMonth" | "inCurrentMonth">;
|
|
192
|
+
getDateState: import("vue").ComputedRef<(row: number, col: number) => import("../../calendar/types").DateState | "outOfCurrentMonth" | "disabledDate" | "inCurrentMonth">;
|
|
178
193
|
updateSelectedDate: (row: number, col: number, day: string) => void;
|
|
179
194
|
readonly WEEK_LIST_JP: string[];
|
|
180
195
|
readonly calendarCellStyle: string;
|
|
181
196
|
readonly calendarItemCommonStyle: string;
|
|
182
|
-
readonly calendarItemStyle: Record<"primary" | "secondary" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
|
|
197
|
+
readonly calendarItemStyle: Record<"primary" | "disabledDate" | "secondary" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
|
|
183
198
|
readonly calendarStyle: string;
|
|
184
199
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
185
200
|
currentMonth: {
|
|
@@ -197,12 +212,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
197
212
|
required: false;
|
|
198
213
|
default: boolean;
|
|
199
214
|
};
|
|
215
|
+
disabledDate: {
|
|
216
|
+
type: PropType<(date: Date) => boolean>;
|
|
217
|
+
required: false;
|
|
218
|
+
default: () => boolean;
|
|
219
|
+
};
|
|
200
220
|
}>> & {
|
|
201
221
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
202
222
|
}, {
|
|
203
223
|
currentMonth: Date;
|
|
204
224
|
activeDates: import("../../calendar/types").DateStatus[];
|
|
205
225
|
filledWeeks: boolean;
|
|
226
|
+
disabledDate: (date: Date) => boolean;
|
|
206
227
|
}>;
|
|
207
228
|
readonly WizHStack: import("vue").DefineComponent<{
|
|
208
229
|
align: {
|
|
@@ -1587,6 +1608,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1587
1608
|
required: false;
|
|
1588
1609
|
default: boolean;
|
|
1589
1610
|
};
|
|
1611
|
+
/**
|
|
1612
|
+
* @description 日付が無効かどうかを判定する関数です。無効な日付はクリック不可になります。
|
|
1613
|
+
* @param date
|
|
1614
|
+
* @returns {boolean} `true`: 無効な日付, `false`: 有効な日付
|
|
1615
|
+
*/
|
|
1616
|
+
disabledDate: {
|
|
1617
|
+
type: PropType<(date: Date) => boolean>;
|
|
1618
|
+
required: false;
|
|
1619
|
+
default: () => boolean;
|
|
1620
|
+
};
|
|
1590
1621
|
}>> & {
|
|
1591
1622
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1592
1623
|
"onUpdate:isOpen"?: ((...args: any[]) => any) | undefined;
|
|
@@ -1594,6 +1625,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1594
1625
|
}, {
|
|
1595
1626
|
width: string;
|
|
1596
1627
|
disabled: boolean;
|
|
1628
|
+
disabledDate: (date: Date) => boolean;
|
|
1597
1629
|
isDirectionFixed: boolean;
|
|
1598
1630
|
placeholder: string;
|
|
1599
1631
|
}>;
|
|
@@ -169,17 +169,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
169
169
|
required: false;
|
|
170
170
|
default: boolean;
|
|
171
171
|
};
|
|
172
|
+
disabledDate: {
|
|
173
|
+
type: PropType<(date: Date) => boolean>;
|
|
174
|
+
required: false;
|
|
175
|
+
default: () => boolean;
|
|
176
|
+
};
|
|
172
177
|
}, {
|
|
173
178
|
emits: (e: "click", value: Date) => void;
|
|
174
179
|
props: any;
|
|
175
180
|
calendars: import("vue").ComputedRef<string[][]>;
|
|
176
181
|
isCurrentMonth: (row: number, col: number) => boolean;
|
|
177
|
-
getDateState: import("vue").ComputedRef<(row: number, col: number) => DateState | "outOfCurrentMonth" | "inCurrentMonth">;
|
|
182
|
+
getDateState: import("vue").ComputedRef<(row: number, col: number) => DateState | "outOfCurrentMonth" | "disabledDate" | "inCurrentMonth">;
|
|
178
183
|
updateSelectedDate: (row: number, col: number, day: string) => void;
|
|
179
184
|
readonly WEEK_LIST_JP: string[];
|
|
180
185
|
readonly calendarCellStyle: string;
|
|
181
186
|
readonly calendarItemCommonStyle: string;
|
|
182
|
-
readonly calendarItemStyle: Record<"primary" | "secondary" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
|
|
187
|
+
readonly calendarItemStyle: Record<"primary" | "disabledDate" | "secondary" | "dayOfWeek" | "inCurrentMonth" | "outOfCurrentMonth", string>;
|
|
183
188
|
readonly calendarStyle: string;
|
|
184
189
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
185
190
|
currentMonth: {
|
|
@@ -197,12 +202,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
197
202
|
required: false;
|
|
198
203
|
default: boolean;
|
|
199
204
|
};
|
|
205
|
+
disabledDate: {
|
|
206
|
+
type: PropType<(date: Date) => boolean>;
|
|
207
|
+
required: false;
|
|
208
|
+
default: () => boolean;
|
|
209
|
+
};
|
|
200
210
|
}>> & {
|
|
201
211
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
202
212
|
}, {
|
|
203
213
|
currentMonth: Date;
|
|
204
214
|
activeDates: DateStatus[];
|
|
205
215
|
filledWeeks: boolean;
|
|
216
|
+
disabledDate: (date: Date) => boolean;
|
|
206
217
|
}>;
|
|
207
218
|
readonly WizCard: import("vue").DefineComponent<{
|
|
208
219
|
title: {
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
2
1
|
import { PropType } from "vue";
|
|
3
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
variant: {
|
|
4
|
+
type: PropType<"pc" | "mobile">;
|
|
5
|
+
required: false;
|
|
6
|
+
default: string;
|
|
7
|
+
};
|
|
4
8
|
isOpen: {
|
|
5
9
|
type: BooleanConstructor;
|
|
6
10
|
required: true;
|
|
@@ -20,29 +24,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
20
24
|
required: false;
|
|
21
25
|
default: string;
|
|
22
26
|
};
|
|
23
|
-
bgColor: {
|
|
24
|
-
type: PropType<ColorKeys | undefined>;
|
|
25
|
-
required: false;
|
|
26
|
-
};
|
|
27
|
-
fontColor: {
|
|
28
|
-
type: PropType<ColorKeys>;
|
|
29
|
-
required: false;
|
|
30
|
-
default: string;
|
|
31
|
-
};
|
|
32
27
|
}, {
|
|
33
28
|
emit: (e: "toggle") => void;
|
|
34
29
|
contentRef: import("vue").Ref<HTMLElement | undefined>;
|
|
35
30
|
isAnimating: import("vue").Ref<boolean>;
|
|
36
31
|
toggleHeight: import("vue").ComputedRef<string>;
|
|
37
32
|
onClick: (event: MouseEvent) => void;
|
|
38
|
-
readonly showMoreLessMessageStyle: string;
|
|
39
|
-
readonly showMoreLessDetailsStyle: string;
|
|
40
33
|
readonly showMoreLessContentStyle: string;
|
|
41
|
-
readonly
|
|
34
|
+
readonly showMoreLessDetailsStyle: string;
|
|
42
35
|
readonly showMoreLessExpandIconStyle: string;
|
|
36
|
+
readonly showMoreLessMessageStyle: string;
|
|
43
37
|
readonly showMoreLessRotateIconStyle: string;
|
|
44
|
-
readonly
|
|
45
|
-
readonly colorStyle: Record<ColorKeys, string>;
|
|
38
|
+
readonly showMoreLessSummaryStyle: Record<"pc" | "mobile", string>;
|
|
46
39
|
readonly WizHStack: import("vue").DefineComponent<{
|
|
47
40
|
align: {
|
|
48
41
|
type: PropType<"stretch" | "center" | "end" | "start">;
|
|
@@ -510,6 +503,46 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
510
503
|
reverse: boolean;
|
|
511
504
|
wrap: boolean;
|
|
512
505
|
}>;
|
|
506
|
+
readonly WizIcon: import("vue").DefineComponent<{
|
|
507
|
+
icon: {
|
|
508
|
+
type: PropType<import('../../../components').TIcon>;
|
|
509
|
+
required: true;
|
|
510
|
+
};
|
|
511
|
+
color: {
|
|
512
|
+
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys | "inherit">;
|
|
513
|
+
required: false;
|
|
514
|
+
default: string;
|
|
515
|
+
};
|
|
516
|
+
size: {
|
|
517
|
+
type: PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
|
|
518
|
+
required: false;
|
|
519
|
+
default: string;
|
|
520
|
+
};
|
|
521
|
+
}, {
|
|
522
|
+
readonly iconStyle: string;
|
|
523
|
+
readonly iconSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
524
|
+
readonly iconDefaultStyle: string;
|
|
525
|
+
readonly fillStyle: Record<import("@wizleap-inc/wiz-ui-constants").ColorKeys, string>;
|
|
526
|
+
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
527
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
528
|
+
icon: {
|
|
529
|
+
type: PropType<import('../../../components').TIcon>;
|
|
530
|
+
required: true;
|
|
531
|
+
};
|
|
532
|
+
color: {
|
|
533
|
+
type: PropType<import("@wizleap-inc/wiz-ui-constants").ColorKeys | "inherit">;
|
|
534
|
+
required: false;
|
|
535
|
+
default: string;
|
|
536
|
+
};
|
|
537
|
+
size: {
|
|
538
|
+
type: PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
|
|
539
|
+
required: false;
|
|
540
|
+
default: string;
|
|
541
|
+
};
|
|
542
|
+
}>>, {
|
|
543
|
+
color: import("@wizleap-inc/wiz-ui-constants").ColorKeys | "inherit";
|
|
544
|
+
size: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
545
|
+
}>;
|
|
513
546
|
readonly WizVStack: import("vue").DefineComponent<{
|
|
514
547
|
align: {
|
|
515
548
|
type: PropType<"stretch" | "center" | "end" | "start">;
|
|
@@ -977,48 +1010,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
977
1010
|
reverse: boolean;
|
|
978
1011
|
wrap: boolean;
|
|
979
1012
|
}>;
|
|
980
|
-
readonly WizIcon: import("vue").DefineComponent<{
|
|
981
|
-
icon: {
|
|
982
|
-
type: PropType<import('../../../components').TIcon>;
|
|
983
|
-
required: true;
|
|
984
|
-
};
|
|
985
|
-
color: {
|
|
986
|
-
type: PropType<ColorKeys | "inherit">;
|
|
987
|
-
required: false;
|
|
988
|
-
default: string;
|
|
989
|
-
};
|
|
990
|
-
size: {
|
|
991
|
-
type: PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
|
|
992
|
-
required: false;
|
|
993
|
-
default: string;
|
|
994
|
-
};
|
|
995
|
-
}, {
|
|
996
|
-
readonly iconStyle: string;
|
|
997
|
-
readonly iconSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
998
|
-
readonly iconDefaultStyle: string;
|
|
999
|
-
readonly fillStyle: Record<ColorKeys, string>;
|
|
1000
|
-
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
1001
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1002
|
-
icon: {
|
|
1003
|
-
type: PropType<import('../../../components').TIcon>;
|
|
1004
|
-
required: true;
|
|
1005
|
-
};
|
|
1006
|
-
color: {
|
|
1007
|
-
type: PropType<ColorKeys | "inherit">;
|
|
1008
|
-
required: false;
|
|
1009
|
-
default: string;
|
|
1010
|
-
};
|
|
1011
|
-
size: {
|
|
1012
|
-
type: PropType<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6">;
|
|
1013
|
-
required: false;
|
|
1014
|
-
default: string;
|
|
1015
|
-
};
|
|
1016
|
-
}>>, {
|
|
1017
|
-
color: ColorKeys | "inherit";
|
|
1018
|
-
size: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
1019
|
-
}>;
|
|
1020
1013
|
readonly WizIExpandMore: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1021
1014
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "toggle"[], "toggle", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1015
|
+
variant: {
|
|
1016
|
+
type: PropType<"pc" | "mobile">;
|
|
1017
|
+
required: false;
|
|
1018
|
+
default: string;
|
|
1019
|
+
};
|
|
1022
1020
|
isOpen: {
|
|
1023
1021
|
type: BooleanConstructor;
|
|
1024
1022
|
required: true;
|
|
@@ -1038,21 +1036,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1038
1036
|
required: false;
|
|
1039
1037
|
default: string;
|
|
1040
1038
|
};
|
|
1041
|
-
bgColor: {
|
|
1042
|
-
type: PropType<ColorKeys | undefined>;
|
|
1043
|
-
required: false;
|
|
1044
|
-
};
|
|
1045
|
-
fontColor: {
|
|
1046
|
-
type: PropType<ColorKeys>;
|
|
1047
|
-
required: false;
|
|
1048
|
-
default: string;
|
|
1049
|
-
};
|
|
1050
1039
|
}>> & {
|
|
1051
1040
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
1052
1041
|
}, {
|
|
1053
1042
|
openMessage: string;
|
|
1054
1043
|
closeMessage: string;
|
|
1055
1044
|
width: string;
|
|
1056
|
-
|
|
1045
|
+
variant: "pc" | "mobile";
|
|
1057
1046
|
}>;
|
|
1058
1047
|
export default _sfc_main;
|
|
@@ -941,12 +941,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
941
941
|
type: PropType<import("../types").TableInfoItem[]>;
|
|
942
942
|
required: false;
|
|
943
943
|
};
|
|
944
|
+
width: {
|
|
945
|
+
type: StringConstructor;
|
|
946
|
+
required: false;
|
|
947
|
+
};
|
|
944
948
|
}, {
|
|
945
949
|
props: any;
|
|
946
950
|
displayDatetime: import("vue").ComputedRef<string>;
|
|
947
951
|
displayHowPast: import("vue").ComputedRef<string>;
|
|
952
|
+
isPc: import("vue").ComputedRef<boolean>;
|
|
948
953
|
isHovered: import("vue").Ref<boolean>;
|
|
949
954
|
isPressed: import("vue").Ref<boolean>;
|
|
955
|
+
setIsHover: (value: boolean) => void;
|
|
956
|
+
setIsPressed: (value: boolean) => void;
|
|
957
|
+
panelBgColor: () => import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
950
958
|
emit: (event: "click") => void;
|
|
951
959
|
onClick: () => void;
|
|
952
960
|
readonly WizBox: import("vue").DefineComponent<{
|
|
@@ -2336,6 +2344,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
2336
2344
|
type: PropType<import("../types").TableInfoItem[]>;
|
|
2337
2345
|
required: false;
|
|
2338
2346
|
};
|
|
2347
|
+
width: {
|
|
2348
|
+
type: StringConstructor;
|
|
2349
|
+
required: false;
|
|
2350
|
+
};
|
|
2339
2351
|
}>> & {
|
|
2340
2352
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
2341
2353
|
}, {
|
|
@@ -1789,12 +1789,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1789
1789
|
type: PropType<import("./types").TableInfoItem[]>;
|
|
1790
1790
|
required: false;
|
|
1791
1791
|
};
|
|
1792
|
+
width: {
|
|
1793
|
+
type: StringConstructor;
|
|
1794
|
+
required: false;
|
|
1795
|
+
};
|
|
1792
1796
|
}, {
|
|
1793
1797
|
props: any;
|
|
1794
1798
|
displayDatetime: import("vue").ComputedRef<string>;
|
|
1795
1799
|
displayHowPast: import("vue").ComputedRef<string>;
|
|
1800
|
+
isPc: import("vue").ComputedRef<boolean>;
|
|
1796
1801
|
isHovered: import("vue").Ref<boolean>;
|
|
1797
1802
|
isPressed: import("vue").Ref<boolean>;
|
|
1803
|
+
setIsHover: (value: boolean) => void;
|
|
1804
|
+
setIsPressed: (value: boolean) => void;
|
|
1805
|
+
panelBgColor: () => import("@wizleap-inc/wiz-ui-constants").ColorKeys;
|
|
1798
1806
|
emit: (event: "click") => void;
|
|
1799
1807
|
onClick: () => void;
|
|
1800
1808
|
readonly WizBox: import("vue").DefineComponent<{
|
|
@@ -3184,6 +3192,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
3184
3192
|
type: PropType<import("./types").TableInfoItem[]>;
|
|
3185
3193
|
required: false;
|
|
3186
3194
|
};
|
|
3195
|
+
width: {
|
|
3196
|
+
type: StringConstructor;
|
|
3197
|
+
required: false;
|
|
3198
|
+
};
|
|
3187
3199
|
}>> & {
|
|
3188
3200
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
3189
3201
|
}, {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ColorKeys } from "@wizleap-inc/wiz-ui-constants";
|
|
1
2
|
import { PropType } from "vue";
|
|
2
3
|
import { PanelVariant } from "./types";
|
|
3
4
|
import type { TableInfoItem } from "../types";
|
|
@@ -23,12 +24,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
23
24
|
type: PropType<TableInfoItem[]>;
|
|
24
25
|
required: false;
|
|
25
26
|
};
|
|
27
|
+
width: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
};
|
|
26
31
|
}, {
|
|
27
32
|
props: any;
|
|
28
33
|
displayDatetime: import("vue").ComputedRef<string>;
|
|
29
34
|
displayHowPast: import("vue").ComputedRef<string>;
|
|
35
|
+
isPc: import("vue").ComputedRef<boolean>;
|
|
30
36
|
isHovered: import("vue").Ref<boolean>;
|
|
31
37
|
isPressed: import("vue").Ref<boolean>;
|
|
38
|
+
setIsHover: (value: boolean) => void;
|
|
39
|
+
setIsPressed: (value: boolean) => void;
|
|
40
|
+
panelBgColor: () => ColorKeys;
|
|
32
41
|
emit: (event: "click") => void;
|
|
33
42
|
onClick: () => void;
|
|
34
43
|
readonly WizBox: import("vue").DefineComponent<{
|
|
@@ -101,7 +110,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
101
110
|
required: false;
|
|
102
111
|
};
|
|
103
112
|
bgColor: {
|
|
104
|
-
type: PropType<
|
|
113
|
+
type: PropType<ColorKeys>;
|
|
105
114
|
required: false;
|
|
106
115
|
};
|
|
107
116
|
shadow: {
|
|
@@ -225,7 +234,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
225
234
|
required: false;
|
|
226
235
|
};
|
|
227
236
|
bgColor: {
|
|
228
|
-
type: PropType<
|
|
237
|
+
type: PropType<ColorKeys>;
|
|
229
238
|
required: false;
|
|
230
239
|
};
|
|
231
240
|
shadow: {
|
|
@@ -750,7 +759,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
750
759
|
required: true;
|
|
751
760
|
};
|
|
752
761
|
color: {
|
|
753
|
-
type: PropType<
|
|
762
|
+
type: PropType<ColorKeys | "inherit">;
|
|
754
763
|
required: false;
|
|
755
764
|
default: string;
|
|
756
765
|
};
|
|
@@ -763,7 +772,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
763
772
|
readonly iconStyle: string;
|
|
764
773
|
readonly iconSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
765
774
|
readonly iconDefaultStyle: string;
|
|
766
|
-
readonly fillStyle: Record<
|
|
775
|
+
readonly fillStyle: Record<ColorKeys, string>;
|
|
767
776
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
768
777
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
769
778
|
icon: {
|
|
@@ -771,7 +780,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
771
780
|
required: true;
|
|
772
781
|
};
|
|
773
782
|
color: {
|
|
774
|
-
type: PropType<
|
|
783
|
+
type: PropType<ColorKeys | "inherit">;
|
|
775
784
|
required: false;
|
|
776
785
|
default: string;
|
|
777
786
|
};
|
|
@@ -781,7 +790,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
781
790
|
default: string;
|
|
782
791
|
};
|
|
783
792
|
}>>, {
|
|
784
|
-
color:
|
|
793
|
+
color: ColorKeys | "inherit";
|
|
785
794
|
size: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
786
795
|
}>;
|
|
787
796
|
readonly WizVStack: import("vue").DefineComponent<{
|
|
@@ -1262,7 +1271,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1262
1271
|
required: false;
|
|
1263
1272
|
};
|
|
1264
1273
|
color: {
|
|
1265
|
-
type: PropType<
|
|
1274
|
+
type: PropType<ColorKeys>;
|
|
1266
1275
|
required: false;
|
|
1267
1276
|
default: string;
|
|
1268
1277
|
};
|
|
@@ -1328,7 +1337,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1328
1337
|
readonly textLineThroughStyle: string;
|
|
1329
1338
|
readonly lineHeightStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
1330
1339
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
1331
|
-
readonly colorStyle: Record<
|
|
1340
|
+
readonly colorStyle: Record<ColorKeys, string>;
|
|
1332
1341
|
readonly whiteSpaceStyle: Record<"normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces", string>;
|
|
1333
1342
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1334
1343
|
as: {
|
|
@@ -1341,7 +1350,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1341
1350
|
required: false;
|
|
1342
1351
|
};
|
|
1343
1352
|
color: {
|
|
1344
|
-
type: PropType<
|
|
1353
|
+
type: PropType<ColorKeys>;
|
|
1345
1354
|
required: false;
|
|
1346
1355
|
default: string;
|
|
1347
1356
|
};
|
|
@@ -1387,7 +1396,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1387
1396
|
};
|
|
1388
1397
|
}>>, {
|
|
1389
1398
|
bold: boolean;
|
|
1390
|
-
color:
|
|
1399
|
+
color: ColorKeys;
|
|
1391
1400
|
fontSize: "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6";
|
|
1392
1401
|
textAlign: "left" | "right" | "center" | "end" | "start";
|
|
1393
1402
|
whiteSpace: "normal" | "nowrap" | "pre" | "preLine" | "preWrap" | "breakSpaces";
|
|
@@ -1418,6 +1427,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1418
1427
|
type: PropType<TableInfoItem[]>;
|
|
1419
1428
|
required: false;
|
|
1420
1429
|
};
|
|
1430
|
+
width: {
|
|
1431
|
+
type: StringConstructor;
|
|
1432
|
+
required: false;
|
|
1433
|
+
};
|
|
1421
1434
|
}>> & {
|
|
1422
1435
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1423
1436
|
}, {
|
|
@@ -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;
|
|
@@ -17,8 +17,10 @@ import { default as WizICheck } from "./check.vue";
|
|
|
17
17
|
import { default as WizIChevronLeft } from "./chevron-left.vue";
|
|
18
18
|
import { default as WizIChevronRight } from "./chevron-right.vue";
|
|
19
19
|
import { default as WizICircleCheck } from "./circle-check.vue";
|
|
20
|
+
import { default as WizICircle } from "./circle.vue";
|
|
20
21
|
import { default as WizIClose } from "./close.vue";
|
|
21
22
|
import { default as WizIContentCopy } from "./content-copy.vue";
|
|
23
|
+
import { default as WizIContract } from "./contract.vue";
|
|
22
24
|
import { default as WizIDashboard } from "./dashboard.vue";
|
|
23
25
|
import { default as WizIDescription } from "./description.vue";
|
|
24
26
|
import { default as WizIDownload } from "./download.vue";
|
|
@@ -31,6 +33,7 @@ import { default as WizIHelp } from "./help.vue";
|
|
|
31
33
|
import { default as WizIHistory } from "./history.vue";
|
|
32
34
|
import { default as WizIHome } from "./home.vue";
|
|
33
35
|
import { default as WizIInfo } from "./info.vue";
|
|
36
|
+
import { default as WizILocationCity } from "./location-city.vue";
|
|
34
37
|
import { default as WizIManageAccounts } from "./manage-accounts.vue";
|
|
35
38
|
import { default as WizIMenu } from "./menu.vue";
|
|
36
39
|
import { default as WizIMonitoring } from "./monitoring.vue";
|
|
@@ -44,11 +47,13 @@ import { default as WizIRemove } from "./remove.vue";
|
|
|
44
47
|
import { default as WizISchedule } from "./schedule.vue";
|
|
45
48
|
import { default as WizISearch } from "./search.vue";
|
|
46
49
|
import { default as WizISend } from "./send.vue";
|
|
50
|
+
import { default as WizISettings } from "./settings.vue";
|
|
51
|
+
import { default as WizISmartphone } from "./smartphone.vue";
|
|
47
52
|
import { default as WizIStars } from "./stars.vue";
|
|
48
53
|
import { default as WizIStoreFront } from "./store-front.vue";
|
|
49
54
|
import { default as WizITab } from "./tab.vue";
|
|
50
55
|
import { default as WizITask } from "./task.vue";
|
|
51
56
|
import { default as WizIUpload } from "./upload.vue";
|
|
52
57
|
import { default as WizIWarning } from "./warning.vue";
|
|
53
|
-
export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBusinessCenter | typeof WizICalendar | typeof WizICamera | typeof WizICancel | typeof WizIChangeHistory | typeof WizIChat | typeof WizICheck | typeof WizIChevronLeft | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizIClose | typeof WizIContentCopy | typeof WizIDashboard | typeof WizIDescription | typeof WizIDownload | typeof WizIEditNote | typeof WizIExpandLess | typeof WizIExpandMore | typeof WizIEye | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIInfo | typeof WizIManageAccounts | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPinDrop | typeof WizIPublic | typeof WizIRemove | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizIUpload | typeof WizIWarning;
|
|
54
|
-
export { WizIAddCircle, WizIAdd, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBusinessCenter, WizICalendar, WizICamera, WizICancel, WizIChangeHistory, WizIChat, WizICheck, WizIChevronLeft, WizIChevronRight, WizICircleCheck, WizIClose, WizIContentCopy, WizIDashboard, WizIDescription, WizIDownload, WizIEditNote, WizIExpandLess, WizIExpandMore, WizIEye, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIInfo, WizIManageAccounts, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPinDrop, WizIPublic, WizIRemove, WizISchedule, WizISearch, WizISend, WizIStars, WizIStoreFront, WizITab, WizITask, WizIUpload, WizIWarning, };
|
|
58
|
+
export type TIcon = typeof WizIAddCircle | typeof WizIAdd | typeof WizIArrowDropDown | typeof WizIArrowDropUp | typeof WizIArrowRight | typeof WizIAssignmentAdd | typeof WizIAssignment | typeof WizIAttachFile | typeof WizIAutoRenew | typeof WizIBusinessCenter | typeof WizICalendar | typeof WizICamera | typeof WizICancel | typeof WizIChangeHistory | typeof WizIChat | typeof WizICheck | typeof WizIChevronLeft | typeof WizIChevronRight | typeof WizICircleCheck | typeof WizICircle | typeof WizIClose | typeof WizIContentCopy | typeof WizIContract | typeof WizIDashboard | typeof WizIDescription | typeof WizIDownload | typeof WizIEditNote | typeof WizIExpandLess | typeof WizIExpandMore | typeof WizIEye | typeof WizIGroups | typeof WizIHelp | typeof WizIHistory | typeof WizIHome | typeof WizIInfo | typeof WizILocationCity | typeof WizIManageAccounts | typeof WizIMenu | typeof WizIMonitoring | typeof WizIMoreVert | typeof WizINoteAdd | typeof WizINotification | typeof WizIOpenInNew | typeof WizIPinDrop | typeof WizIPublic | typeof WizIRemove | typeof WizISchedule | typeof WizISearch | typeof WizISend | typeof WizISettings | typeof WizISmartphone | typeof WizIStars | typeof WizIStoreFront | typeof WizITab | typeof WizITask | typeof WizIUpload | typeof WizIWarning;
|
|
59
|
+
export { WizIAddCircle, WizIAdd, WizIArrowDropDown, WizIArrowDropUp, WizIArrowRight, WizIAssignmentAdd, WizIAssignment, WizIAttachFile, WizIAutoRenew, WizIBusinessCenter, WizICalendar, WizICamera, WizICancel, WizIChangeHistory, WizIChat, WizICheck, WizIChevronLeft, WizIChevronRight, WizICircleCheck, WizICircle, WizIClose, WizIContentCopy, WizIContract, WizIDashboard, WizIDescription, WizIDownload, WizIEditNote, WizIExpandLess, WizIExpandMore, WizIEye, WizIGroups, WizIHelp, WizIHistory, WizIHome, WizIInfo, WizILocationCity, WizIManageAccounts, WizIMenu, WizIMonitoring, WizIMoreVert, WizINoteAdd, WizINotification, WizIOpenInNew, WizIPinDrop, WizIPublic, WizIRemove, WizISchedule, WizISearch, WizISend, WizISettings, WizISmartphone, WizIStars, WizIStoreFront, WizITab, WizITask, WizIUpload, WizIWarning, };
|
|
@@ -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;
|
|
@@ -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;
|