@wizleap-inc/wiz-ui-next 2.0.0 → 2.2.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/header/header.vue.d.ts +3 -15
- 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/inputs/search-input/search-input.vue.d.ts +16 -5
- 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/style.css +1 -1
- package/dist/wiz-ui.es.js +1080 -1042
- package/dist/wiz-ui.umd.js +15 -15
- package/package.json +2 -2
|
@@ -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;
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
-
isOpen: {
|
|
4
|
-
type: BooleanConstructor;
|
|
5
|
-
required: false;
|
|
6
|
-
default: boolean;
|
|
7
|
-
};
|
|
8
3
|
gapLeft: {
|
|
9
4
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
10
5
|
required: false;
|
|
@@ -18,8 +13,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
18
13
|
required: false;
|
|
19
14
|
};
|
|
20
15
|
}, {
|
|
21
|
-
|
|
22
|
-
emits: (e: "click", value: boolean) => void;
|
|
16
|
+
emits: (e: "onToggle") => void;
|
|
23
17
|
toggleMenuOpen: () => void;
|
|
24
18
|
currentZIndex: import("vue").ComputedRef<number>;
|
|
25
19
|
readonly headerStyle: string;
|
|
@@ -548,12 +542,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
548
542
|
variant: "transparent" | "link" | "sub" | "primary";
|
|
549
543
|
}>;
|
|
550
544
|
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<{}>>, {}>;
|
|
551
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "
|
|
552
|
-
isOpen: {
|
|
553
|
-
type: BooleanConstructor;
|
|
554
|
-
required: false;
|
|
555
|
-
default: boolean;
|
|
556
|
-
};
|
|
545
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "onToggle"[], "onToggle", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
557
546
|
gapLeft: {
|
|
558
547
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
559
548
|
required: false;
|
|
@@ -567,9 +556,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
567
556
|
required: false;
|
|
568
557
|
};
|
|
569
558
|
}>> & {
|
|
570
|
-
|
|
559
|
+
onOnToggle?: ((...args: any[]) => any) | undefined;
|
|
571
560
|
}, {
|
|
572
|
-
isOpen: boolean;
|
|
573
561
|
sticky: boolean;
|
|
574
562
|
}>;
|
|
575
563
|
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,4 +1,5 @@
|
|
|
1
1
|
import { PropType } from "vue";
|
|
2
|
+
import { TIcon } from '../../../../components/icons';
|
|
2
3
|
import { SearchInputOption } from "./types";
|
|
3
4
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
4
5
|
options: {
|
|
@@ -43,6 +44,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
43
44
|
required: false;
|
|
44
45
|
default: boolean;
|
|
45
46
|
};
|
|
47
|
+
icon: {
|
|
48
|
+
type: PropType<TIcon>;
|
|
49
|
+
required: false;
|
|
50
|
+
default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
51
|
+
};
|
|
46
52
|
}, {
|
|
47
53
|
props: any;
|
|
48
54
|
emit: {
|
|
@@ -594,10 +600,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
594
600
|
reverse: boolean;
|
|
595
601
|
wrap: boolean;
|
|
596
602
|
}>;
|
|
597
|
-
readonly WizISearch: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
598
603
|
readonly WizIcon: import("vue").DefineComponent<{
|
|
599
604
|
icon: {
|
|
600
|
-
type: PropType<
|
|
605
|
+
type: PropType<TIcon>;
|
|
601
606
|
required: true;
|
|
602
607
|
};
|
|
603
608
|
color: {
|
|
@@ -618,7 +623,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
618
623
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
619
624
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
620
625
|
icon: {
|
|
621
|
-
type: PropType<
|
|
626
|
+
type: PropType<TIcon>;
|
|
622
627
|
required: true;
|
|
623
628
|
};
|
|
624
629
|
color: {
|
|
@@ -1413,7 +1418,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1413
1418
|
}>;
|
|
1414
1419
|
readonly WizIcon: import("vue").DefineComponent<{
|
|
1415
1420
|
icon: {
|
|
1416
|
-
type: PropType<
|
|
1421
|
+
type: PropType<TIcon>;
|
|
1417
1422
|
required: true;
|
|
1418
1423
|
};
|
|
1419
1424
|
color: {
|
|
@@ -1434,7 +1439,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1434
1439
|
readonly fontSizeStyle: Record<"xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "xs3" | "xl5" | "xl6", string>;
|
|
1435
1440
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1436
1441
|
icon: {
|
|
1437
|
-
type: PropType<
|
|
1442
|
+
type: PropType<TIcon>;
|
|
1438
1443
|
required: true;
|
|
1439
1444
|
};
|
|
1440
1445
|
color: {
|
|
@@ -1593,11 +1598,17 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1593
1598
|
required: false;
|
|
1594
1599
|
default: boolean;
|
|
1595
1600
|
};
|
|
1601
|
+
icon: {
|
|
1602
|
+
type: PropType<TIcon>;
|
|
1603
|
+
required: false;
|
|
1604
|
+
default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1605
|
+
};
|
|
1596
1606
|
}>> & {
|
|
1597
1607
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
1598
1608
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1599
1609
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1600
1610
|
}, {
|
|
1611
|
+
icon: TIcon;
|
|
1601
1612
|
disabled: boolean;
|
|
1602
1613
|
expand: boolean;
|
|
1603
1614
|
isDirectionFixed: boolean;
|
|
@@ -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
|
}, {
|