@ironsource/shared-ui 2.2.0-rc.34 → 2.2.0-rc.36
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/components/dateRange/common/consts.common.d.ts +5 -0
- package/components/dateRange/common/consts.common.js +9 -0
- package/components/dateRange/v3/DateRange.vue.d.ts +3 -3
- package/components/dateRange/v3/DateRangePicker.vue.d.ts +3 -3
- package/components/dateRange/v3/index.d.ts +7 -7
- package/components/dateRange/v4/DateRangePickerV4.vue.d.ts +3 -3
- package/components/dateRange/v4/DateRangeV4.vue.d.ts +3 -3
- package/components/dateRange/v4/index.d.ts +7 -7
- package/index.d.ts +14 -14
- package/index.js +1 -1
- package/package.json +1 -1
|
@@ -50,6 +50,15 @@ const a = {
|
|
|
50
50
|
{ name: "Last 14 days", id: "last14days", numid: 4 },
|
|
51
51
|
{ name: "Last 30 days", id: "last30days", numid: 5 }
|
|
52
52
|
],
|
|
53
|
+
dateWithLastMonth: [
|
|
54
|
+
{ name: "Today", id: "today", numid: 1 },
|
|
55
|
+
{ name: "Yesterday", id: "yesterday", numid: 2 },
|
|
56
|
+
{ name: "Last 7 days", id: "last7days", numid: 3 },
|
|
57
|
+
{ name: "Last 14 days", id: "last14days", numid: 4 },
|
|
58
|
+
{ name: "Last 30 days", id: "last30days", numid: 7 },
|
|
59
|
+
{ name: "This month", id: "thisMonth", numid: 5 },
|
|
60
|
+
{ name: "Last month", id: "lastMonth", numid: 6 }
|
|
61
|
+
],
|
|
53
62
|
week: [
|
|
54
63
|
{ name: "Last 4 weeks", id: "last4weeks", numid: 1 },
|
|
55
64
|
{ name: "Last 12 weeks", id: "last12weeks", numid: 2 },
|
|
@@ -7,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
7
7
|
includeToday?: boolean;
|
|
8
8
|
allowedDays?: number;
|
|
9
9
|
maxDaysInRange?: number;
|
|
10
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
10
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
11
11
|
regex?: RegExp;
|
|
12
12
|
dateFormat?: string;
|
|
13
13
|
uniqueId?: string | number;
|
|
@@ -50,7 +50,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
50
50
|
includeToday?: boolean;
|
|
51
51
|
allowedDays?: number;
|
|
52
52
|
maxDaysInRange?: number;
|
|
53
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
53
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
54
54
|
regex?: RegExp;
|
|
55
55
|
dateFormat?: string;
|
|
56
56
|
uniqueId?: string | number;
|
|
@@ -93,7 +93,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
93
93
|
dateFormat: string;
|
|
94
94
|
types: ("date" | "week" | "month")[];
|
|
95
95
|
maxDaysInRange: number;
|
|
96
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
96
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
97
97
|
regex: RegExp;
|
|
98
98
|
initialType: "date" | "week" | "month";
|
|
99
99
|
openOnTop: boolean;
|
|
@@ -8,7 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
8
8
|
includeToday?: boolean;
|
|
9
9
|
allowedDays?: number;
|
|
10
10
|
maxDaysInRange?: number;
|
|
11
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
11
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
12
12
|
regex?: RegExp;
|
|
13
13
|
dateFormat?: string;
|
|
14
14
|
uniqueId?: string | number;
|
|
@@ -44,7 +44,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
44
|
includeToday?: boolean;
|
|
45
45
|
allowedDays?: number;
|
|
46
46
|
maxDaysInRange?: number;
|
|
47
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
47
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
48
48
|
regex?: RegExp;
|
|
49
49
|
dateFormat?: string;
|
|
50
50
|
uniqueId?: string | number;
|
|
@@ -79,7 +79,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
79
79
|
dateFormat: string;
|
|
80
80
|
types: ("date" | "week" | "month")[];
|
|
81
81
|
maxDaysInRange: number;
|
|
82
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
82
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
83
83
|
regex: RegExp;
|
|
84
84
|
initialType: "date" | "week" | "month";
|
|
85
85
|
openOnTop: boolean;
|
|
@@ -11,7 +11,7 @@ declare const DateRangeTypes: () => ({
|
|
|
11
11
|
dateFormat: string;
|
|
12
12
|
types: ("date" | "week" | "month")[];
|
|
13
13
|
maxDaysInRange: number;
|
|
14
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
14
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
15
15
|
regex: RegExp;
|
|
16
16
|
initialType: "date" | "week" | "month";
|
|
17
17
|
openOnTop: boolean;
|
|
@@ -59,7 +59,7 @@ declare const DateRangeTypes: () => ({
|
|
|
59
59
|
default: any;
|
|
60
60
|
};
|
|
61
61
|
datePresetList: {
|
|
62
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
62
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
65
65
|
regex: {
|
|
@@ -151,7 +151,7 @@ declare const DateRangeTypes: () => ({
|
|
|
151
151
|
default: any;
|
|
152
152
|
};
|
|
153
153
|
datePresetList: {
|
|
154
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
154
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
155
155
|
default: string;
|
|
156
156
|
};
|
|
157
157
|
regex: {
|
|
@@ -204,7 +204,7 @@ declare const DateRangeTypes: () => ({
|
|
|
204
204
|
dateFormat: string;
|
|
205
205
|
types: ("date" | "week" | "month")[];
|
|
206
206
|
maxDaysInRange: number;
|
|
207
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
207
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
208
208
|
regex: RegExp;
|
|
209
209
|
initialType: "date" | "week" | "month";
|
|
210
210
|
openOnTop: boolean;
|
|
@@ -272,7 +272,7 @@ declare const DateRangeTypes: () => ({
|
|
|
272
272
|
default: any;
|
|
273
273
|
};
|
|
274
274
|
datePresetList: {
|
|
275
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
275
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
276
276
|
default: string;
|
|
277
277
|
};
|
|
278
278
|
regex: {
|
|
@@ -354,7 +354,7 @@ declare const DateRangeTypes: () => ({
|
|
|
354
354
|
default: any;
|
|
355
355
|
};
|
|
356
356
|
datePresetList: {
|
|
357
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
357
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
358
358
|
default: string;
|
|
359
359
|
};
|
|
360
360
|
regex: {
|
|
@@ -407,7 +407,7 @@ declare const DateRangeTypes: () => ({
|
|
|
407
407
|
dateFormat: string;
|
|
408
408
|
types: ("date" | "week" | "month")[];
|
|
409
409
|
maxDaysInRange: number;
|
|
410
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
410
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
411
411
|
regex: RegExp;
|
|
412
412
|
initialType: "date" | "week" | "month";
|
|
413
413
|
openOnTop: boolean;
|
|
@@ -8,7 +8,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
8
8
|
includeToday?: boolean;
|
|
9
9
|
allowedDays?: number;
|
|
10
10
|
maxDaysInRange?: number;
|
|
11
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
11
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
12
12
|
regex?: RegExp;
|
|
13
13
|
dateFormat?: string;
|
|
14
14
|
uniqueId?: string | number;
|
|
@@ -44,7 +44,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
44
|
includeToday?: boolean;
|
|
45
45
|
allowedDays?: number;
|
|
46
46
|
maxDaysInRange?: number;
|
|
47
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
47
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
48
48
|
regex?: RegExp;
|
|
49
49
|
dateFormat?: string;
|
|
50
50
|
uniqueId?: string | number;
|
|
@@ -79,7 +79,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
79
79
|
dateFormat: string;
|
|
80
80
|
types: ("date" | "week" | "month")[];
|
|
81
81
|
maxDaysInRange: number;
|
|
82
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
82
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
83
83
|
regex: RegExp;
|
|
84
84
|
initialType: "date" | "week" | "month";
|
|
85
85
|
openOnTop: boolean;
|
|
@@ -7,7 +7,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
7
7
|
includeToday?: boolean;
|
|
8
8
|
allowedDays?: number;
|
|
9
9
|
maxDaysInRange?: number;
|
|
10
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
10
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
11
11
|
regex?: RegExp;
|
|
12
12
|
dateFormat?: string;
|
|
13
13
|
uniqueId?: string | number;
|
|
@@ -50,7 +50,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
50
50
|
includeToday?: boolean;
|
|
51
51
|
allowedDays?: number;
|
|
52
52
|
maxDaysInRange?: number;
|
|
53
|
-
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
53
|
+
datePresetList?: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
54
54
|
regex?: RegExp;
|
|
55
55
|
dateFormat?: string;
|
|
56
56
|
uniqueId?: string | number;
|
|
@@ -93,7 +93,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
93
93
|
dateFormat: string;
|
|
94
94
|
types: ("date" | "week" | "month")[];
|
|
95
95
|
maxDaysInRange: number;
|
|
96
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
96
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
97
97
|
regex: RegExp;
|
|
98
98
|
initialType: "date" | "week" | "month";
|
|
99
99
|
openOnTop: boolean;
|
|
@@ -11,7 +11,7 @@ declare const DateRangeTypes: () => ({
|
|
|
11
11
|
dateFormat: string;
|
|
12
12
|
types: ("date" | "week" | "month")[];
|
|
13
13
|
maxDaysInRange: number;
|
|
14
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
14
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
15
15
|
regex: RegExp;
|
|
16
16
|
initialType: "date" | "week" | "month";
|
|
17
17
|
openOnTop: boolean;
|
|
@@ -59,7 +59,7 @@ declare const DateRangeTypes: () => ({
|
|
|
59
59
|
default: any;
|
|
60
60
|
};
|
|
61
61
|
datePresetList: {
|
|
62
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
62
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
63
63
|
default: string;
|
|
64
64
|
};
|
|
65
65
|
regex: {
|
|
@@ -151,7 +151,7 @@ declare const DateRangeTypes: () => ({
|
|
|
151
151
|
default: any;
|
|
152
152
|
};
|
|
153
153
|
datePresetList: {
|
|
154
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
154
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
155
155
|
default: string;
|
|
156
156
|
};
|
|
157
157
|
regex: {
|
|
@@ -204,7 +204,7 @@ declare const DateRangeTypes: () => ({
|
|
|
204
204
|
dateFormat: string;
|
|
205
205
|
types: ("date" | "week" | "month")[];
|
|
206
206
|
maxDaysInRange: number;
|
|
207
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
207
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
208
208
|
regex: RegExp;
|
|
209
209
|
initialType: "date" | "week" | "month";
|
|
210
210
|
openOnTop: boolean;
|
|
@@ -272,7 +272,7 @@ declare const DateRangeTypes: () => ({
|
|
|
272
272
|
default: any;
|
|
273
273
|
};
|
|
274
274
|
datePresetList: {
|
|
275
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
275
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
276
276
|
default: string;
|
|
277
277
|
};
|
|
278
278
|
regex: {
|
|
@@ -354,7 +354,7 @@ declare const DateRangeTypes: () => ({
|
|
|
354
354
|
default: any;
|
|
355
355
|
};
|
|
356
356
|
datePresetList: {
|
|
357
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
357
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
358
358
|
default: string;
|
|
359
359
|
};
|
|
360
360
|
regex: {
|
|
@@ -407,7 +407,7 @@ declare const DateRangeTypes: () => ({
|
|
|
407
407
|
dateFormat: string;
|
|
408
408
|
types: ("date" | "week" | "month")[];
|
|
409
409
|
maxDaysInRange: number;
|
|
410
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
410
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
411
411
|
regex: RegExp;
|
|
412
412
|
initialType: "date" | "week" | "month";
|
|
413
413
|
openOnTop: boolean;
|
package/index.d.ts
CHANGED
|
@@ -562,7 +562,7 @@ declare const _default: {
|
|
|
562
562
|
dateFormat: string;
|
|
563
563
|
types: ("date" | "week" | "month")[];
|
|
564
564
|
maxDaysInRange: number;
|
|
565
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
565
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
566
566
|
regex: RegExp;
|
|
567
567
|
initialType: "date" | "week" | "month";
|
|
568
568
|
openOnTop: boolean;
|
|
@@ -610,7 +610,7 @@ declare const _default: {
|
|
|
610
610
|
default: any;
|
|
611
611
|
};
|
|
612
612
|
datePresetList: {
|
|
613
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
613
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
614
614
|
default: string;
|
|
615
615
|
};
|
|
616
616
|
regex: {
|
|
@@ -702,7 +702,7 @@ declare const _default: {
|
|
|
702
702
|
default: any;
|
|
703
703
|
};
|
|
704
704
|
datePresetList: {
|
|
705
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
705
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
706
706
|
default: string;
|
|
707
707
|
};
|
|
708
708
|
regex: {
|
|
@@ -755,7 +755,7 @@ declare const _default: {
|
|
|
755
755
|
dateFormat: string;
|
|
756
756
|
types: ("date" | "week" | "month")[];
|
|
757
757
|
maxDaysInRange: number;
|
|
758
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
758
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
759
759
|
regex: RegExp;
|
|
760
760
|
initialType: "date" | "week" | "month";
|
|
761
761
|
openOnTop: boolean;
|
|
@@ -823,7 +823,7 @@ declare const _default: {
|
|
|
823
823
|
default: any;
|
|
824
824
|
};
|
|
825
825
|
datePresetList: {
|
|
826
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
826
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
827
827
|
default: string;
|
|
828
828
|
};
|
|
829
829
|
regex: {
|
|
@@ -905,7 +905,7 @@ declare const _default: {
|
|
|
905
905
|
default: any;
|
|
906
906
|
};
|
|
907
907
|
datePresetList: {
|
|
908
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
908
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
909
909
|
default: string;
|
|
910
910
|
};
|
|
911
911
|
regex: {
|
|
@@ -958,7 +958,7 @@ declare const _default: {
|
|
|
958
958
|
dateFormat: string;
|
|
959
959
|
types: ("date" | "week" | "month")[];
|
|
960
960
|
maxDaysInRange: number;
|
|
961
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
961
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
962
962
|
regex: RegExp;
|
|
963
963
|
initialType: "date" | "week" | "month";
|
|
964
964
|
openOnTop: boolean;
|
|
@@ -987,7 +987,7 @@ declare const _default: {
|
|
|
987
987
|
dateFormat: string;
|
|
988
988
|
types: ("date" | "week" | "month")[];
|
|
989
989
|
maxDaysInRange: number;
|
|
990
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
990
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
991
991
|
regex: RegExp;
|
|
992
992
|
initialType: "date" | "week" | "month";
|
|
993
993
|
openOnTop: boolean;
|
|
@@ -1035,7 +1035,7 @@ declare const _default: {
|
|
|
1035
1035
|
default: any;
|
|
1036
1036
|
};
|
|
1037
1037
|
datePresetList: {
|
|
1038
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1038
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
1039
1039
|
default: string;
|
|
1040
1040
|
};
|
|
1041
1041
|
regex: {
|
|
@@ -1127,7 +1127,7 @@ declare const _default: {
|
|
|
1127
1127
|
default: any;
|
|
1128
1128
|
};
|
|
1129
1129
|
datePresetList: {
|
|
1130
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1130
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
1131
1131
|
default: string;
|
|
1132
1132
|
};
|
|
1133
1133
|
regex: {
|
|
@@ -1180,7 +1180,7 @@ declare const _default: {
|
|
|
1180
1180
|
dateFormat: string;
|
|
1181
1181
|
types: ("date" | "week" | "month")[];
|
|
1182
1182
|
maxDaysInRange: number;
|
|
1183
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
1183
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
1184
1184
|
regex: RegExp;
|
|
1185
1185
|
initialType: "date" | "week" | "month";
|
|
1186
1186
|
openOnTop: boolean;
|
|
@@ -1248,7 +1248,7 @@ declare const _default: {
|
|
|
1248
1248
|
default: any;
|
|
1249
1249
|
};
|
|
1250
1250
|
datePresetList: {
|
|
1251
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1251
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
1252
1252
|
default: string;
|
|
1253
1253
|
};
|
|
1254
1254
|
regex: {
|
|
@@ -1330,7 +1330,7 @@ declare const _default: {
|
|
|
1330
1330
|
default: any;
|
|
1331
1331
|
};
|
|
1332
1332
|
datePresetList: {
|
|
1333
|
-
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12">;
|
|
1333
|
+
type: import("vue").PropType<"date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12">;
|
|
1334
1334
|
default: string;
|
|
1335
1335
|
};
|
|
1336
1336
|
regex: {
|
|
@@ -1383,7 +1383,7 @@ declare const _default: {
|
|
|
1383
1383
|
dateFormat: string;
|
|
1384
1384
|
types: ("date" | "week" | "month")[];
|
|
1385
1385
|
maxDaysInRange: number;
|
|
1386
|
-
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "month-3-6-9-12";
|
|
1386
|
+
datePresetList: "date" | "week" | "month" | "date1-7-14-30-90" | "date7-14-30-60-90" | "date7-14-31-60-90" | "dateWithoutToday" | "dateWithoutLastMonth" | "dateWithLastMonth" | "month-3-6-9-12";
|
|
1387
1387
|
regex: RegExp;
|
|
1388
1388
|
initialType: "date" | "week" | "month";
|
|
1389
1389
|
openOnTop: boolean;
|
package/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import './
|
|
1
|
+
import './AutocompleteDropdown.vue_vue_type_style_index_0_scoped_214ddaf4_lang.css';
|
|
2
2
|
import { AppTriggerTypes as eo } from "./components/appTrigger/index.js";
|
|
3
3
|
import { AutocompleteDropdownTypes as mo } from "./components/autocompleteDropdown/index.js";
|
|
4
4
|
import { MenuItemTypes as ao } from "./components/menuItem/index.js";
|