@wizleap-inc/wiz-ui-next 1.7.0 → 1.8.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 +1 -1
- package/dist/components/base/dialog/dialog.vue.d.ts +11 -0
- package/dist/components/base/inputs/checkbox/checkbox.vue.d.ts +7 -2
- package/dist/components/base/inputs/date-picker/date-picker.vue.d.ts +32 -8
- package/dist/components/base/inputs/date-range-picker/date-range-picker.vue.d.ts +36 -77
- package/dist/components/base/inputs/date-range-picker/types.d.ts +10 -4
- package/dist/components/base/inputs/password/password.vue.d.ts +3 -0
- package/dist/style.css +1 -1
- package/dist/wiz-ui.es.js +3091 -3052
- package/dist/wiz-ui.umd.js +17 -17
- package/package.json +3 -3
|
@@ -21,7 +21,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
21
|
props: any;
|
|
22
22
|
calendars: import("vue").ComputedRef<string[][]>;
|
|
23
23
|
isCurrentMonth: (row: number, col: number) => boolean;
|
|
24
|
-
getDateState: import("vue").ComputedRef<(row: number, col: number) =>
|
|
24
|
+
getDateState: import("vue").ComputedRef<(row: number, col: number) => import("./types").DateState | "outOfCurrentMonth" | "inCurrentMonth">;
|
|
25
25
|
updateSelectedDate: (row: number, col: number, day: string) => void;
|
|
26
26
|
readonly WEEK_LIST_JP: string[];
|
|
27
27
|
readonly calendarStyle: string;
|
|
@@ -17,6 +17,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
17
17
|
type: PropType<"center" | "end" | "start">;
|
|
18
18
|
required: false;
|
|
19
19
|
};
|
|
20
|
+
hideClose: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
required: false;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
20
25
|
}, {
|
|
21
26
|
props: any;
|
|
22
27
|
emit: (e: "update:modelValue", value: boolean) => void;
|
|
@@ -695,9 +700,15 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
695
700
|
type: PropType<"center" | "end" | "start">;
|
|
696
701
|
required: false;
|
|
697
702
|
};
|
|
703
|
+
hideClose: {
|
|
704
|
+
type: BooleanConstructor;
|
|
705
|
+
required: false;
|
|
706
|
+
default: boolean;
|
|
707
|
+
};
|
|
698
708
|
}>> & {
|
|
699
709
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
700
710
|
}, {
|
|
701
711
|
maxWidth: string;
|
|
712
|
+
hideClose: boolean;
|
|
702
713
|
}>;
|
|
703
714
|
export default _sfc_main;
|
|
@@ -33,16 +33,21 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
33
33
|
emit: (e: "update:modelValue", value: number[]) => void;
|
|
34
34
|
checkboxValue: import("vue").WritableComputedRef<number[]>;
|
|
35
35
|
labelPointer: (optionDisabled?: boolean) => "default" | "disabled";
|
|
36
|
+
focusOption: import("vue").Ref<number | null>;
|
|
37
|
+
value2Option: import("vue").ComputedRef<Record<number, CheckBoxOption>>;
|
|
38
|
+
checkboxLabelFocusStyle: import("vue").ComputedRef<(n: number) => string | undefined>;
|
|
36
39
|
readonly checkboxStyle: string;
|
|
37
40
|
readonly checkboxInputStyle: string;
|
|
38
41
|
readonly checkboxLabelStyle: string;
|
|
39
42
|
readonly checkboxLabelCheckedStyle: string;
|
|
40
43
|
readonly checkboxLabelDisabledStyle: string;
|
|
41
44
|
readonly checkboxLabelCursorStyle: Record<"default" | "disabled", string>;
|
|
42
|
-
readonly
|
|
45
|
+
readonly checkboxIconBaseStyle: string;
|
|
43
46
|
readonly checkboxBlockCheckedStyle: string;
|
|
44
47
|
readonly checkboxLabelStrikeThrough: string;
|
|
45
|
-
|
|
48
|
+
readonly checkboxIconVariantStyle: Record<"default" | "checked", string>;
|
|
49
|
+
readonly checkboxIconContainerStyle: string;
|
|
50
|
+
readonly WizStack: import("vue").DefineComponent<{
|
|
46
51
|
direction: {
|
|
47
52
|
type: PropType<"horizontal" | "vertical">;
|
|
48
53
|
required: false;
|
|
@@ -19,10 +19,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
19
19
|
required: false;
|
|
20
20
|
default: boolean;
|
|
21
21
|
};
|
|
22
|
+
/**
|
|
23
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
24
|
+
*/
|
|
25
|
+
isOpen: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
22
29
|
}, {
|
|
23
30
|
props: any;
|
|
24
|
-
emit:
|
|
25
|
-
|
|
31
|
+
emit: {
|
|
32
|
+
(e: "update:modelValue", value: Date): void;
|
|
33
|
+
(e: "update:isOpen", value: boolean): void;
|
|
34
|
+
};
|
|
35
|
+
defaultCurrentMonth: Date;
|
|
26
36
|
currentMonth: import("vue").Ref<{
|
|
27
37
|
toString: () => string;
|
|
28
38
|
toDateString: () => string;
|
|
@@ -86,8 +96,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
86
96
|
(hint: string): string | number;
|
|
87
97
|
};
|
|
88
98
|
}>;
|
|
89
|
-
|
|
90
|
-
toggleDatepicker: () => void;
|
|
99
|
+
setIsOpen: (value: boolean) => void;
|
|
91
100
|
clickToNextMonth: () => void;
|
|
92
101
|
clickToPreviousMonth: () => void;
|
|
93
102
|
clickToNextYear: () => void;
|
|
@@ -111,6 +120,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
111
120
|
readonly DATE_PICKER_INPUT: "日付を選択";
|
|
112
121
|
readonly RANGE_DATE_PICKER_INPUT: "日付の範囲を選択";
|
|
113
122
|
readonly RANGE_DATE_PICKER_SELECT_BOX_INPUT: "日付の種類を選択";
|
|
123
|
+
readonly PAGINATION: "ページネーション";
|
|
124
|
+
readonly PAGINATION_PREV: "前のページへ";
|
|
125
|
+
readonly PAGINATION_NEXT: "次のページへ";
|
|
114
126
|
};
|
|
115
127
|
readonly datePickerStyle: string;
|
|
116
128
|
readonly datePickerVariantStyle: Record<"default" | "disabled" | "selected", string>;
|
|
@@ -1117,7 +1129,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1117
1129
|
props: any;
|
|
1118
1130
|
calendars: import("vue").ComputedRef<string[][]>;
|
|
1119
1131
|
isCurrentMonth: (row: number, col: number) => boolean;
|
|
1120
|
-
getDateState: import("vue").ComputedRef<(row: number, col: number) =>
|
|
1132
|
+
getDateState: import("vue").ComputedRef<(row: number, col: number) => import("../../calendar/types").DateState | "outOfCurrentMonth" | "inCurrentMonth">;
|
|
1121
1133
|
updateSelectedDate: (row: number, col: number, day: string) => void;
|
|
1122
1134
|
readonly WEEK_LIST_JP: string[];
|
|
1123
1135
|
readonly calendarStyle: string;
|
|
@@ -1308,7 +1320,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1308
1320
|
};
|
|
1309
1321
|
gap: {
|
|
1310
1322
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
1311
|
-
required: false;
|
|
1323
|
+
required: false; /**
|
|
1324
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
1325
|
+
*/
|
|
1312
1326
|
default: string;
|
|
1313
1327
|
};
|
|
1314
1328
|
direction: {
|
|
@@ -1423,7 +1437,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1423
1437
|
};
|
|
1424
1438
|
gap: {
|
|
1425
1439
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
1426
|
-
required: false;
|
|
1440
|
+
required: false; /**
|
|
1441
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
1442
|
+
*/
|
|
1427
1443
|
default: string;
|
|
1428
1444
|
};
|
|
1429
1445
|
direction: {
|
|
@@ -1500,7 +1516,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1500
1516
|
readonly WizIChevronRight: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1501
1517
|
readonly WizIArrowDropUp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1502
1518
|
readonly WizIArrowDropDown: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1503
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1519
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isOpen")[], "update:modelValue" | "update:isOpen", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1504
1520
|
modelValue: {
|
|
1505
1521
|
type: PropType<Date | null>;
|
|
1506
1522
|
required: true;
|
|
@@ -1520,8 +1536,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1520
1536
|
required: false;
|
|
1521
1537
|
default: boolean;
|
|
1522
1538
|
};
|
|
1539
|
+
/**
|
|
1540
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
1541
|
+
*/
|
|
1542
|
+
isOpen: {
|
|
1543
|
+
type: BooleanConstructor;
|
|
1544
|
+
required: true;
|
|
1545
|
+
};
|
|
1523
1546
|
}>> & {
|
|
1524
1547
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1548
|
+
"onUpdate:isOpen"?: ((...args: any[]) => any) | undefined;
|
|
1525
1549
|
}, {
|
|
1526
1550
|
width: string;
|
|
1527
1551
|
disabled: boolean;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as styles from "@wizleap-inc/wiz-ui-styles/bases/date-range-picker.css";
|
|
2
2
|
import { PropType } from "vue";
|
|
3
|
-
import { DateStatus } from "../../calendar/types";
|
|
3
|
+
import { DateState, DateStatus } from "../../calendar/types";
|
|
4
4
|
import { DateRangePickerSelectBoxOption, DateRange } from "./types";
|
|
5
|
-
type SelectState = "selecting" | "selected" | "none";
|
|
6
5
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
7
6
|
modelValue: {
|
|
8
7
|
type: PropType<DateRange>;
|
|
@@ -26,13 +25,20 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
26
25
|
type: StringConstructor;
|
|
27
26
|
required: false;
|
|
28
27
|
};
|
|
28
|
+
/**
|
|
29
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
30
|
+
*/
|
|
31
|
+
isOpen: {
|
|
32
|
+
type: BooleanConstructor;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
29
35
|
}, {
|
|
30
36
|
props: any;
|
|
31
37
|
emit: {
|
|
32
38
|
(e: "update:modelValue", value: DateRange): void;
|
|
33
39
|
(e: "update:selectBoxValue", value: string): void;
|
|
40
|
+
(e: "update:isOpen", value: boolean): void;
|
|
34
41
|
};
|
|
35
|
-
isPopupOpen: import("vue").Ref<boolean>;
|
|
36
42
|
isSelectBoxOpen: import("vue").Ref<boolean>;
|
|
37
43
|
selectBoxContainerRef: import("vue").Ref<HTMLElement | undefined>;
|
|
38
44
|
rightCalendarDate: import("vue").Ref<{
|
|
@@ -99,76 +105,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
99
105
|
};
|
|
100
106
|
}>;
|
|
101
107
|
leftCalendarDate: import("vue").ComputedRef<Date>;
|
|
102
|
-
|
|
103
|
-
togglePopupOpen: () => void;
|
|
108
|
+
setIsOpen: (value: boolean) => void;
|
|
104
109
|
moveToNextMonth: () => void;
|
|
105
110
|
moveToPrevMonth: () => void;
|
|
106
|
-
selectedDates: import("vue").
|
|
107
|
-
state: import("../../calendar/types").DateState;
|
|
108
|
-
date: {
|
|
109
|
-
toString: () => string;
|
|
110
|
-
toDateString: () => string;
|
|
111
|
-
toTimeString: () => string;
|
|
112
|
-
toLocaleString: {
|
|
113
|
-
(): string;
|
|
114
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
115
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
116
|
-
};
|
|
117
|
-
toLocaleDateString: {
|
|
118
|
-
(): string;
|
|
119
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
120
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
121
|
-
};
|
|
122
|
-
toLocaleTimeString: {
|
|
123
|
-
(): string;
|
|
124
|
-
(locales?: string | string[] | undefined, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
125
|
-
(locales?: Intl.LocalesArgument, options?: Intl.DateTimeFormatOptions | undefined): string;
|
|
126
|
-
};
|
|
127
|
-
valueOf: () => number;
|
|
128
|
-
getTime: () => number;
|
|
129
|
-
getFullYear: () => number;
|
|
130
|
-
getUTCFullYear: () => number;
|
|
131
|
-
getMonth: () => number;
|
|
132
|
-
getUTCMonth: () => number;
|
|
133
|
-
getDate: () => number;
|
|
134
|
-
getUTCDate: () => number;
|
|
135
|
-
getDay: () => number;
|
|
136
|
-
getUTCDay: () => number;
|
|
137
|
-
getHours: () => number;
|
|
138
|
-
getUTCHours: () => number;
|
|
139
|
-
getMinutes: () => number;
|
|
140
|
-
getUTCMinutes: () => number;
|
|
141
|
-
getSeconds: () => number;
|
|
142
|
-
getUTCSeconds: () => number;
|
|
143
|
-
getMilliseconds: () => number;
|
|
144
|
-
getUTCMilliseconds: () => number;
|
|
145
|
-
getTimezoneOffset: () => number;
|
|
146
|
-
setTime: (time: number) => number;
|
|
147
|
-
setMilliseconds: (ms: number) => number;
|
|
148
|
-
setUTCMilliseconds: (ms: number) => number;
|
|
149
|
-
setSeconds: (sec: number, ms?: number | undefined) => number;
|
|
150
|
-
setUTCSeconds: (sec: number, ms?: number | undefined) => number;
|
|
151
|
-
setMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
|
152
|
-
setUTCMinutes: (min: number, sec?: number | undefined, ms?: number | undefined) => number;
|
|
153
|
-
setHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
|
154
|
-
setUTCHours: (hours: number, min?: number | undefined, sec?: number | undefined, ms?: number | undefined) => number;
|
|
155
|
-
setDate: (date: number) => number;
|
|
156
|
-
setUTCDate: (date: number) => number;
|
|
157
|
-
setMonth: (month: number, date?: number | undefined) => number;
|
|
158
|
-
setUTCMonth: (month: number, date?: number | undefined) => number;
|
|
159
|
-
setFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
160
|
-
setUTCFullYear: (year: number, month?: number | undefined, date?: number | undefined) => number;
|
|
161
|
-
toUTCString: () => string;
|
|
162
|
-
toISOString: () => string;
|
|
163
|
-
toJSON: (key?: any) => string;
|
|
164
|
-
[Symbol.toPrimitive]: {
|
|
165
|
-
(hint: "default"): string;
|
|
166
|
-
(hint: "string"): string;
|
|
167
|
-
(hint: "number"): number;
|
|
168
|
-
(hint: string): string | number;
|
|
169
|
-
};
|
|
170
|
-
};
|
|
171
|
-
}[]>;
|
|
111
|
+
selectedDates: import("vue").ComputedRef<DateStatus[]>;
|
|
172
112
|
handleDayClick: (date: Date) => void;
|
|
173
113
|
toggleSelectBoxOpen: () => void;
|
|
174
114
|
selectedOption: import("vue").ComputedRef<DateRangePickerSelectBoxOption | undefined>;
|
|
@@ -188,6 +128,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
188
128
|
readonly DATE_PICKER_INPUT: "日付を選択";
|
|
189
129
|
readonly RANGE_DATE_PICKER_INPUT: "日付の範囲を選択";
|
|
190
130
|
readonly RANGE_DATE_PICKER_SELECT_BOX_INPUT: "日付の種類を選択";
|
|
131
|
+
readonly PAGINATION: "ページネーション";
|
|
132
|
+
readonly PAGINATION_PREV: "前のページへ";
|
|
133
|
+
readonly PAGINATION_NEXT: "次のページへ";
|
|
191
134
|
};
|
|
192
135
|
readonly styles: typeof styles;
|
|
193
136
|
readonly inputBorderStyle: Record<"default" | "active" | "error", string>;
|
|
@@ -213,7 +156,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
213
156
|
props: any;
|
|
214
157
|
calendars: import("vue").ComputedRef<string[][]>;
|
|
215
158
|
isCurrentMonth: (row: number, col: number) => boolean;
|
|
216
|
-
getDateState: import("vue").ComputedRef<(row: number, col: number) =>
|
|
159
|
+
getDateState: import("vue").ComputedRef<(row: number, col: number) => DateState | "outOfCurrentMonth" | "inCurrentMonth">;
|
|
217
160
|
updateSelectedDate: (row: number, col: number, day: string) => void;
|
|
218
161
|
readonly WEEK_LIST_JP: string[];
|
|
219
162
|
readonly calendarStyle: string;
|
|
@@ -294,7 +237,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
294
237
|
gap: {
|
|
295
238
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
296
239
|
required: false;
|
|
297
|
-
default: string;
|
|
240
|
+
default: string; /**
|
|
241
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
242
|
+
*/
|
|
298
243
|
};
|
|
299
244
|
}, {
|
|
300
245
|
readonly cardStyle: string;
|
|
@@ -441,7 +386,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
441
386
|
gy: {
|
|
442
387
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
443
388
|
required: false;
|
|
444
|
-
};
|
|
389
|
+
}; /**
|
|
390
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
391
|
+
*/
|
|
445
392
|
p: {
|
|
446
393
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
447
394
|
required: false;
|
|
@@ -579,7 +526,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
579
526
|
gy: {
|
|
580
527
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
581
528
|
required: false;
|
|
582
|
-
};
|
|
529
|
+
}; /**
|
|
530
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
531
|
+
*/
|
|
583
532
|
p: {
|
|
584
533
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
585
534
|
required: false;
|
|
@@ -825,7 +774,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
825
774
|
gap: {
|
|
826
775
|
type: PropType<"at" | "no" | "xs2" | "xs" | "sm" | "md" | "lg" | "xl" | "xl2" | "xl3" | "xl4" | "max">;
|
|
827
776
|
required: false;
|
|
828
|
-
default: string;
|
|
777
|
+
default: string; /**
|
|
778
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
779
|
+
*/
|
|
829
780
|
};
|
|
830
781
|
}>>, {
|
|
831
782
|
shadow: boolean;
|
|
@@ -1085,7 +1036,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1085
1036
|
}>>, {
|
|
1086
1037
|
expand: boolean;
|
|
1087
1038
|
}>;
|
|
1088
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:selectBoxValue")[], "update:modelValue" | "update:selectBoxValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1039
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "update:isOpen" | "update:selectBoxValue")[], "update:modelValue" | "update:isOpen" | "update:selectBoxValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1089
1040
|
modelValue: {
|
|
1090
1041
|
type: PropType<DateRange>;
|
|
1091
1042
|
required: true;
|
|
@@ -1108,8 +1059,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1108
1059
|
type: StringConstructor;
|
|
1109
1060
|
required: false;
|
|
1110
1061
|
};
|
|
1062
|
+
/**
|
|
1063
|
+
* カレンダー(Popup)の開閉状態を指定します。
|
|
1064
|
+
*/
|
|
1065
|
+
isOpen: {
|
|
1066
|
+
type: BooleanConstructor;
|
|
1067
|
+
required: true;
|
|
1068
|
+
};
|
|
1111
1069
|
}>> & {
|
|
1112
1070
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1071
|
+
"onUpdate:isOpen"?: ((...args: any[]) => any) | undefined;
|
|
1113
1072
|
"onUpdate:selectBoxValue"?: ((...args: any[]) => any) | undefined;
|
|
1114
1073
|
}, {
|
|
1115
1074
|
disabled: boolean;
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
-
export
|
|
2
|
-
start: Date
|
|
3
|
-
end: Date
|
|
4
|
-
}
|
|
1
|
+
export type DateRange = {
|
|
2
|
+
start: Date;
|
|
3
|
+
end: Date;
|
|
4
|
+
} | {
|
|
5
|
+
start: Date;
|
|
6
|
+
end: null;
|
|
7
|
+
} | {
|
|
8
|
+
start: null;
|
|
9
|
+
end: null;
|
|
10
|
+
};
|
|
5
11
|
export interface DateRangePickerSelectBoxOption {
|
|
6
12
|
label: string;
|
|
7
13
|
value: string;
|
|
@@ -49,6 +49,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
49
49
|
readonly DATE_PICKER_INPUT: "日付を選択";
|
|
50
50
|
readonly RANGE_DATE_PICKER_INPUT: "日付の範囲を選択";
|
|
51
51
|
readonly RANGE_DATE_PICKER_SELECT_BOX_INPUT: "日付の種類を選択";
|
|
52
|
+
readonly PAGINATION: "ページネーション";
|
|
53
|
+
readonly PAGINATION_PREV: "前のページへ";
|
|
54
|
+
readonly PAGINATION_NEXT: "次のページへ";
|
|
52
55
|
};
|
|
53
56
|
readonly passwordStyle: string;
|
|
54
57
|
readonly passwordExpandStyle: Record<"default" | "expand", string>;
|