@opentinyvue/vue-date-panel 2.22.0 → 3.22.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/lib/index.js +1 -1
- package/lib/mobile-first.js +387 -414
- package/lib/pc.js +342 -369
- package/package.json +12 -12
- package/src/index.d.ts +127 -1
- package/src/mobile-first.vue.d.ts +215 -1
- package/src/pc.vue.d.ts +148 -1
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-date-panel",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.22.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"main": "./lib/index.js",
|
|
9
9
|
"module": "./lib/index.js",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@opentinyvue/vue-button": "~
|
|
12
|
-
"@opentinyvue/vue-common": "~
|
|
13
|
-
"@opentinyvue/vue-date-table": "~
|
|
14
|
-
"@opentinyvue/vue-directive": "~
|
|
15
|
-
"@opentinyvue/vue-icon": "~
|
|
16
|
-
"@opentinyvue/vue-input": "~
|
|
17
|
-
"@opentinyvue/vue-locale": "~
|
|
18
|
-
"@opentinyvue/vue-month-table": "~
|
|
19
|
-
"@opentinyvue/vue-popup": "~
|
|
11
|
+
"@opentinyvue/vue-button": "~3.22.0",
|
|
12
|
+
"@opentinyvue/vue-common": "~3.22.0",
|
|
13
|
+
"@opentinyvue/vue-date-table": "~3.22.0",
|
|
14
|
+
"@opentinyvue/vue-directive": "~3.22.0",
|
|
15
|
+
"@opentinyvue/vue-icon": "~3.22.0",
|
|
16
|
+
"@opentinyvue/vue-input": "~3.22.0",
|
|
17
|
+
"@opentinyvue/vue-locale": "~3.22.0",
|
|
18
|
+
"@opentinyvue/vue-month-table": "~3.22.0",
|
|
19
|
+
"@opentinyvue/vue-popup": "~3.22.0",
|
|
20
20
|
"@opentinyvue/vue-renderless": "~3.22.0",
|
|
21
21
|
"@opentinyvue/vue-theme": "~3.22.0",
|
|
22
|
-
"@opentinyvue/vue-time": "~
|
|
23
|
-
"@opentinyvue/vue-year-table": "~
|
|
22
|
+
"@opentinyvue/vue-time": "~3.22.0",
|
|
23
|
+
"@opentinyvue/vue-year-table": "~3.22.0"
|
|
24
24
|
},
|
|
25
25
|
"types": "index.d.ts",
|
|
26
26
|
"scripts": {
|
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,128 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
emitter: ObjectConstructor;
|
|
3
|
+
step: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default(): {
|
|
6
|
+
hour: number;
|
|
7
|
+
minute: number;
|
|
8
|
+
second: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
showWeekNumber: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
formatWeeks: FunctionConstructor;
|
|
16
|
+
type: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
firstDayOfWeek: {
|
|
21
|
+
type: NumberConstructor;
|
|
22
|
+
default: number;
|
|
23
|
+
};
|
|
24
|
+
nowClick: {
|
|
25
|
+
type: FunctionConstructor;
|
|
26
|
+
};
|
|
27
|
+
modelValue: {
|
|
28
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
format: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
readonly: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: boolean;
|
|
38
|
+
};
|
|
39
|
+
shortcuts: {
|
|
40
|
+
type: ArrayConstructor;
|
|
41
|
+
default: () => never[];
|
|
42
|
+
};
|
|
43
|
+
disabledDate: {
|
|
44
|
+
type: FunctionConstructor;
|
|
45
|
+
default: () => null;
|
|
46
|
+
};
|
|
47
|
+
popperClass: {
|
|
48
|
+
type: StringConstructor;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
tiny_mode: StringConstructor;
|
|
52
|
+
tiny_mode_root: BooleanConstructor;
|
|
53
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
54
|
+
tiny_renderless: FunctionConstructor;
|
|
55
|
+
tiny_theme: StringConstructor;
|
|
56
|
+
tiny_chart_theme: ObjectConstructor;
|
|
57
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
58
|
+
[key: string]: any;
|
|
59
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
60
|
+
emitter: ObjectConstructor;
|
|
61
|
+
step: {
|
|
62
|
+
type: ObjectConstructor;
|
|
63
|
+
default(): {
|
|
64
|
+
hour: number;
|
|
65
|
+
minute: number;
|
|
66
|
+
second: number;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
showWeekNumber: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
default: boolean;
|
|
72
|
+
};
|
|
73
|
+
formatWeeks: FunctionConstructor;
|
|
74
|
+
type: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
default: string;
|
|
77
|
+
};
|
|
78
|
+
firstDayOfWeek: {
|
|
79
|
+
type: NumberConstructor;
|
|
80
|
+
default: number;
|
|
81
|
+
};
|
|
82
|
+
nowClick: {
|
|
83
|
+
type: FunctionConstructor;
|
|
84
|
+
};
|
|
85
|
+
modelValue: {
|
|
86
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
format: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
readonly: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
shortcuts: {
|
|
98
|
+
type: ArrayConstructor;
|
|
99
|
+
default: () => never[];
|
|
100
|
+
};
|
|
101
|
+
disabledDate: {
|
|
102
|
+
type: FunctionConstructor;
|
|
103
|
+
default: () => null;
|
|
104
|
+
};
|
|
105
|
+
popperClass: {
|
|
106
|
+
type: StringConstructor;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
tiny_mode: StringConstructor;
|
|
110
|
+
tiny_mode_root: BooleanConstructor;
|
|
111
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
112
|
+
tiny_renderless: FunctionConstructor;
|
|
113
|
+
tiny_theme: StringConstructor;
|
|
114
|
+
tiny_chart_theme: ObjectConstructor;
|
|
115
|
+
}>>, {
|
|
116
|
+
format: string;
|
|
117
|
+
type: string;
|
|
118
|
+
tiny_mode_root: boolean;
|
|
119
|
+
modelValue: string | number | Date;
|
|
120
|
+
popperClass: string;
|
|
121
|
+
readonly: boolean;
|
|
122
|
+
step: Record<string, any>;
|
|
123
|
+
showWeekNumber: boolean;
|
|
124
|
+
disabledDate: Function;
|
|
125
|
+
firstDayOfWeek: number;
|
|
126
|
+
shortcuts: unknown[];
|
|
127
|
+
}, {}>;
|
|
2
128
|
export default _default;
|
|
@@ -1,2 +1,216 @@
|
|
|
1
|
-
declare const _default: import("vue/
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
emitter: ObjectConstructor;
|
|
3
|
+
step: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default(): {
|
|
6
|
+
hour: number;
|
|
7
|
+
minute: number;
|
|
8
|
+
second: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
showWeekNumber: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
formatWeeks: FunctionConstructor;
|
|
16
|
+
nowClick: {
|
|
17
|
+
type: FunctionConstructor;
|
|
18
|
+
};
|
|
19
|
+
length: number;
|
|
20
|
+
toString(): string;
|
|
21
|
+
toLocaleString(): string;
|
|
22
|
+
pop(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
23
|
+
push(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
24
|
+
concat(...items: ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
25
|
+
concat(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">)[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
26
|
+
join(separator?: string | undefined): string;
|
|
27
|
+
reverse(): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
28
|
+
shift(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
29
|
+
slice(start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
30
|
+
sort(compareFn?: ((a: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", b: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme") => number) | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
31
|
+
splice(start: number, deleteCount?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
32
|
+
splice(start: number, deleteCount: number, ...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
33
|
+
unshift(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
34
|
+
indexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
35
|
+
lastIndexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
36
|
+
every<S extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S, thisArg?: any): this is S[];
|
|
37
|
+
every(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
38
|
+
some(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
39
|
+
forEach(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => void, thisArg?: any): void;
|
|
40
|
+
map<U>(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U, thisArg?: any): U[];
|
|
41
|
+
filter<S_1 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_1, thisArg?: any): S_1[];
|
|
42
|
+
filter(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
43
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
44
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
45
|
+
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_1, initialValue: U_1): U_1;
|
|
46
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
47
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
48
|
+
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_2, initialValue: U_2): U_2;
|
|
49
|
+
find<S_2 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
50
|
+
find(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
51
|
+
findIndex(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): number;
|
|
52
|
+
fill(value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
53
|
+
copyWithin(target: number, start: number, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
54
|
+
entries(): IterableIterator<[number, "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"]>;
|
|
55
|
+
keys(): IterableIterator<number>;
|
|
56
|
+
values(): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
57
|
+
includes(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): boolean;
|
|
58
|
+
flatMap<U_3, This = undefined>(callback: (this: This, value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
59
|
+
flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
|
|
60
|
+
[Symbol.iterator](): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
61
|
+
[Symbol.unscopables]: {
|
|
62
|
+
[x: number]: boolean | undefined;
|
|
63
|
+
length?: boolean | undefined;
|
|
64
|
+
toString?: boolean | undefined;
|
|
65
|
+
toLocaleString?: boolean | undefined;
|
|
66
|
+
pop?: boolean | undefined;
|
|
67
|
+
push?: boolean | undefined;
|
|
68
|
+
concat?: boolean | undefined;
|
|
69
|
+
join?: boolean | undefined;
|
|
70
|
+
reverse?: boolean | undefined;
|
|
71
|
+
shift?: boolean | undefined;
|
|
72
|
+
slice?: boolean | undefined;
|
|
73
|
+
sort?: boolean | undefined;
|
|
74
|
+
splice?: boolean | undefined;
|
|
75
|
+
unshift?: boolean | undefined;
|
|
76
|
+
indexOf?: boolean | undefined;
|
|
77
|
+
lastIndexOf?: boolean | undefined;
|
|
78
|
+
every?: boolean | undefined;
|
|
79
|
+
some?: boolean | undefined;
|
|
80
|
+
forEach?: boolean | undefined;
|
|
81
|
+
map?: boolean | undefined;
|
|
82
|
+
filter?: boolean | undefined;
|
|
83
|
+
reduce?: boolean | undefined;
|
|
84
|
+
reduceRight?: boolean | undefined;
|
|
85
|
+
find?: boolean | undefined;
|
|
86
|
+
findIndex?: boolean | undefined;
|
|
87
|
+
fill?: boolean | undefined;
|
|
88
|
+
copyWithin?: boolean | undefined;
|
|
89
|
+
entries?: boolean | undefined;
|
|
90
|
+
keys?: boolean | undefined;
|
|
91
|
+
values?: boolean | undefined;
|
|
92
|
+
includes?: boolean | undefined;
|
|
93
|
+
flatMap?: boolean | undefined;
|
|
94
|
+
flat?: boolean | undefined;
|
|
95
|
+
[Symbol.iterator]?: boolean | undefined;
|
|
96
|
+
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
97
|
+
at?: boolean | undefined;
|
|
98
|
+
};
|
|
99
|
+
at(index: number): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
100
|
+
}, {
|
|
101
|
+
t: (this: any, path: any, options?: any) => any;
|
|
102
|
+
vm: any;
|
|
103
|
+
f: (props: any, attrs?: {}) => {};
|
|
104
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
105
|
+
d: (props: any) => void;
|
|
106
|
+
dp: (props: any) => void;
|
|
107
|
+
gcls: (key: any) => any;
|
|
108
|
+
m: (...cssClasses: any[]) => string;
|
|
109
|
+
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("select-change" | "pick" | "dodestroy")[], "select-change" | "pick" | "dodestroy", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
110
|
+
emitter: ObjectConstructor;
|
|
111
|
+
step: {
|
|
112
|
+
type: ObjectConstructor;
|
|
113
|
+
default(): {
|
|
114
|
+
hour: number;
|
|
115
|
+
minute: number;
|
|
116
|
+
second: number;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
showWeekNumber: {
|
|
120
|
+
type: BooleanConstructor;
|
|
121
|
+
default: boolean;
|
|
122
|
+
};
|
|
123
|
+
formatWeeks: FunctionConstructor;
|
|
124
|
+
nowClick: {
|
|
125
|
+
type: FunctionConstructor;
|
|
126
|
+
};
|
|
127
|
+
length: number;
|
|
128
|
+
toString(): string;
|
|
129
|
+
toLocaleString(): string;
|
|
130
|
+
pop(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
131
|
+
push(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
132
|
+
concat(...items: ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
133
|
+
concat(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | ConcatArray<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">)[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
134
|
+
join(separator?: string | undefined): string;
|
|
135
|
+
reverse(): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
136
|
+
shift(): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
137
|
+
slice(start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
138
|
+
sort(compareFn?: ((a: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", b: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme") => number) | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
139
|
+
splice(start: number, deleteCount?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
140
|
+
splice(start: number, deleteCount: number, ...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
141
|
+
unshift(...items: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]): number;
|
|
142
|
+
indexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
143
|
+
lastIndexOf(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): number;
|
|
144
|
+
every<S extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S, thisArg?: any): this is S[];
|
|
145
|
+
every(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
146
|
+
some(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): boolean;
|
|
147
|
+
forEach(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => void, thisArg?: any): void;
|
|
148
|
+
map<U>(callbackfn: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U, thisArg?: any): U[];
|
|
149
|
+
filter<S_1 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_1, thisArg?: any): S_1[];
|
|
150
|
+
filter(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
151
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
152
|
+
reduce(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
153
|
+
reduce<U_1>(callbackfn: (previousValue: U_1, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_1, initialValue: U_1): U_1;
|
|
154
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
155
|
+
reduceRight(callbackfn: (previousValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", initialValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme";
|
|
156
|
+
reduceRight<U_2>(callbackfn: (previousValue: U_2, currentValue: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", currentIndex: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_2, initialValue: U_2): U_2;
|
|
157
|
+
find<S_2 extends "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => value is S_2, thisArg?: any): S_2 | undefined;
|
|
158
|
+
find(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
159
|
+
findIndex(predicate: (value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, obj: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => unknown, thisArg?: any): number;
|
|
160
|
+
fill(value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", start?: number | undefined, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
161
|
+
copyWithin(target: number, start: number, end?: number | undefined): ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[];
|
|
162
|
+
entries(): IterableIterator<[number, "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme"]>;
|
|
163
|
+
keys(): IterableIterator<number>;
|
|
164
|
+
values(): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
165
|
+
includes(searchElement: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", fromIndex?: number | undefined): boolean;
|
|
166
|
+
flatMap<U_3, This = undefined>(callback: (this: This, value: "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme", index: number, array: ("tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme")[]) => U_3 | readonly U_3[], thisArg?: This | undefined): U_3[];
|
|
167
|
+
flat<A, D extends number = 1>(this: A, depth?: D | undefined): FlatArray<A, D>[];
|
|
168
|
+
[Symbol.iterator](): IterableIterator<"tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme">;
|
|
169
|
+
[Symbol.unscopables]: {
|
|
170
|
+
[x: number]: boolean | undefined;
|
|
171
|
+
length?: boolean | undefined;
|
|
172
|
+
toString?: boolean | undefined;
|
|
173
|
+
toLocaleString?: boolean | undefined;
|
|
174
|
+
pop?: boolean | undefined;
|
|
175
|
+
push?: boolean | undefined;
|
|
176
|
+
concat?: boolean | undefined;
|
|
177
|
+
join?: boolean | undefined;
|
|
178
|
+
reverse?: boolean | undefined;
|
|
179
|
+
shift?: boolean | undefined;
|
|
180
|
+
slice?: boolean | undefined;
|
|
181
|
+
sort?: boolean | undefined;
|
|
182
|
+
splice?: boolean | undefined;
|
|
183
|
+
unshift?: boolean | undefined;
|
|
184
|
+
indexOf?: boolean | undefined;
|
|
185
|
+
lastIndexOf?: boolean | undefined;
|
|
186
|
+
every?: boolean | undefined;
|
|
187
|
+
some?: boolean | undefined;
|
|
188
|
+
forEach?: boolean | undefined;
|
|
189
|
+
map?: boolean | undefined;
|
|
190
|
+
filter?: boolean | undefined;
|
|
191
|
+
reduce?: boolean | undefined;
|
|
192
|
+
reduceRight?: boolean | undefined;
|
|
193
|
+
find?: boolean | undefined;
|
|
194
|
+
findIndex?: boolean | undefined;
|
|
195
|
+
fill?: boolean | undefined;
|
|
196
|
+
copyWithin?: boolean | undefined;
|
|
197
|
+
entries?: boolean | undefined;
|
|
198
|
+
keys?: boolean | undefined;
|
|
199
|
+
values?: boolean | undefined;
|
|
200
|
+
includes?: boolean | undefined;
|
|
201
|
+
flatMap?: boolean | undefined;
|
|
202
|
+
flat?: boolean | undefined;
|
|
203
|
+
[Symbol.iterator]?: boolean | undefined;
|
|
204
|
+
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
205
|
+
at?: boolean | undefined;
|
|
206
|
+
};
|
|
207
|
+
at(index: number): "tiny_mode" | "tiny_mode_root" | "tiny_template" | "tiny_renderless" | "_constants" | "tiny_theme" | "tiny_chart_theme" | undefined;
|
|
208
|
+
}>> & {
|
|
209
|
+
onPick?: ((...args: any[]) => any) | undefined;
|
|
210
|
+
"onSelect-change"?: ((...args: any[]) => any) | undefined;
|
|
211
|
+
onDodestroy?: ((...args: any[]) => any) | undefined;
|
|
212
|
+
}, {
|
|
213
|
+
step: Record<string, any>;
|
|
214
|
+
showWeekNumber: boolean;
|
|
215
|
+
}, {}>;
|
|
2
216
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,2 +1,149 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
emitter: ObjectConstructor;
|
|
3
|
+
step: {
|
|
4
|
+
type: ObjectConstructor;
|
|
5
|
+
default(): {
|
|
6
|
+
hour: number;
|
|
7
|
+
minute: number;
|
|
8
|
+
second: number;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
showWeekNumber: {
|
|
12
|
+
type: BooleanConstructor;
|
|
13
|
+
default: boolean;
|
|
14
|
+
};
|
|
15
|
+
formatWeeks: FunctionConstructor;
|
|
16
|
+
type: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
firstDayOfWeek: {
|
|
21
|
+
type: NumberConstructor;
|
|
22
|
+
default: number;
|
|
23
|
+
};
|
|
24
|
+
timeEditable: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
28
|
+
nowClick: {
|
|
29
|
+
type: FunctionConstructor;
|
|
30
|
+
};
|
|
31
|
+
modelValue: {
|
|
32
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
33
|
+
default: string;
|
|
34
|
+
};
|
|
35
|
+
format: {
|
|
36
|
+
type: StringConstructor;
|
|
37
|
+
default: string;
|
|
38
|
+
};
|
|
39
|
+
readonly: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
shortcuts: {
|
|
44
|
+
type: ArrayConstructor;
|
|
45
|
+
default: () => never[];
|
|
46
|
+
};
|
|
47
|
+
disabledDate: {
|
|
48
|
+
type: FunctionConstructor;
|
|
49
|
+
default: () => null;
|
|
50
|
+
};
|
|
51
|
+
popperClass: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
tiny_mode: StringConstructor;
|
|
56
|
+
tiny_mode_root: BooleanConstructor;
|
|
57
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
58
|
+
tiny_renderless: FunctionConstructor;
|
|
59
|
+
tiny_theme: StringConstructor;
|
|
60
|
+
tiny_chart_theme: ObjectConstructor;
|
|
61
|
+
}, {
|
|
62
|
+
t: (this: any, path: any, options?: any) => any;
|
|
63
|
+
vm: any;
|
|
64
|
+
f: (props: any, attrs?: {}) => {};
|
|
65
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
66
|
+
d: (props: any) => void;
|
|
67
|
+
dp: (props: any) => void;
|
|
68
|
+
gcls: (key: any) => any;
|
|
69
|
+
m: (...cssClasses: any[]) => string;
|
|
70
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("update:modelValue" | "select-change" | "pick" | "dodestroy")[], "update:modelValue" | "select-change" | "pick" | "dodestroy", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
71
|
+
emitter: ObjectConstructor;
|
|
72
|
+
step: {
|
|
73
|
+
type: ObjectConstructor;
|
|
74
|
+
default(): {
|
|
75
|
+
hour: number;
|
|
76
|
+
minute: number;
|
|
77
|
+
second: number;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
showWeekNumber: {
|
|
81
|
+
type: BooleanConstructor;
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
formatWeeks: FunctionConstructor;
|
|
85
|
+
type: {
|
|
86
|
+
type: StringConstructor;
|
|
87
|
+
default: string;
|
|
88
|
+
};
|
|
89
|
+
firstDayOfWeek: {
|
|
90
|
+
type: NumberConstructor;
|
|
91
|
+
default: number;
|
|
92
|
+
};
|
|
93
|
+
timeEditable: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
default: boolean;
|
|
96
|
+
};
|
|
97
|
+
nowClick: {
|
|
98
|
+
type: FunctionConstructor;
|
|
99
|
+
};
|
|
100
|
+
modelValue: {
|
|
101
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
102
|
+
default: string;
|
|
103
|
+
};
|
|
104
|
+
format: {
|
|
105
|
+
type: StringConstructor;
|
|
106
|
+
default: string;
|
|
107
|
+
};
|
|
108
|
+
readonly: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
default: boolean;
|
|
111
|
+
};
|
|
112
|
+
shortcuts: {
|
|
113
|
+
type: ArrayConstructor;
|
|
114
|
+
default: () => never[];
|
|
115
|
+
};
|
|
116
|
+
disabledDate: {
|
|
117
|
+
type: FunctionConstructor;
|
|
118
|
+
default: () => null;
|
|
119
|
+
};
|
|
120
|
+
popperClass: {
|
|
121
|
+
type: StringConstructor;
|
|
122
|
+
default: string;
|
|
123
|
+
};
|
|
124
|
+
tiny_mode: StringConstructor;
|
|
125
|
+
tiny_mode_root: BooleanConstructor;
|
|
126
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
127
|
+
tiny_renderless: FunctionConstructor;
|
|
128
|
+
tiny_theme: StringConstructor;
|
|
129
|
+
tiny_chart_theme: ObjectConstructor;
|
|
130
|
+
}>> & {
|
|
131
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
132
|
+
onPick?: ((...args: any[]) => any) | undefined;
|
|
133
|
+
"onSelect-change"?: ((...args: any[]) => any) | undefined;
|
|
134
|
+
onDodestroy?: ((...args: any[]) => any) | undefined;
|
|
135
|
+
}, {
|
|
136
|
+
format: string;
|
|
137
|
+
type: string;
|
|
138
|
+
tiny_mode_root: boolean;
|
|
139
|
+
modelValue: string | number | Date;
|
|
140
|
+
popperClass: string;
|
|
141
|
+
readonly: boolean;
|
|
142
|
+
timeEditable: boolean;
|
|
143
|
+
step: Record<string, any>;
|
|
144
|
+
showWeekNumber: boolean;
|
|
145
|
+
disabledDate: Function;
|
|
146
|
+
firstDayOfWeek: number;
|
|
147
|
+
shortcuts: unknown[];
|
|
148
|
+
}, {}>;
|
|
2
149
|
export default _default;
|