@opentinyvue/vue-date-range 2.21.0 → 3.21.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 +471 -411
- package/lib/pc.js +369 -362
- package/package.json +7 -7
- package/src/index.d.ts +73 -1
- package/src/mobile-first.vue.d.ts +49 -1
- package/src/pc.vue.d.ts +52 -1
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentinyvue/vue-date-range",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.21.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"type": "module",
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@opentinyvue/vue-common": "~
|
|
10
|
+
"@opentinyvue/vue-common": "~3.21.0",
|
|
11
11
|
"@opentinyvue/vue-renderless": "~3.21.0",
|
|
12
|
-
"@opentinyvue/vue-input": "~
|
|
13
|
-
"@opentinyvue/vue-button": "~
|
|
14
|
-
"@opentinyvue/vue-time": "~
|
|
15
|
-
"@opentinyvue/vue-date-table": "~
|
|
12
|
+
"@opentinyvue/vue-input": "~3.21.0",
|
|
13
|
+
"@opentinyvue/vue-button": "~3.21.0",
|
|
14
|
+
"@opentinyvue/vue-time": "~3.21.0",
|
|
15
|
+
"@opentinyvue/vue-date-table": "~3.21.0",
|
|
16
16
|
"@opentinyvue/vue-theme": "~3.21.0",
|
|
17
|
-
"@opentinyvue/vue-icon": "~
|
|
17
|
+
"@opentinyvue/vue-icon": "~3.21.0"
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"types": "index.d.ts",
|
package/src/index.d.ts
CHANGED
|
@@ -1,2 +1,74 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<{
|
|
2
|
+
_constants: {
|
|
3
|
+
type: ObjectConstructor;
|
|
4
|
+
default: () => {
|
|
5
|
+
startDate: Date;
|
|
6
|
+
endDate: Date;
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
emitter: ObjectConstructor;
|
|
10
|
+
step: {
|
|
11
|
+
type: ObjectConstructor;
|
|
12
|
+
default(): {
|
|
13
|
+
hour: number;
|
|
14
|
+
minute: number;
|
|
15
|
+
second: number;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
showWeekNumber: {
|
|
19
|
+
type: BooleanConstructor;
|
|
20
|
+
default: boolean;
|
|
21
|
+
};
|
|
22
|
+
formatWeeks: FunctionConstructor;
|
|
23
|
+
timeEditable: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
tiny_mode: StringConstructor;
|
|
28
|
+
tiny_mode_root: BooleanConstructor;
|
|
29
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
30
|
+
tiny_renderless: FunctionConstructor;
|
|
31
|
+
tiny_theme: StringConstructor;
|
|
32
|
+
tiny_chart_theme: ObjectConstructor;
|
|
33
|
+
}, () => import("@vue/runtime-core").VNode<import("@vue/runtime-core").RendererNode, import("@vue/runtime-core").RendererElement, {
|
|
34
|
+
[key: string]: any;
|
|
35
|
+
}>, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{
|
|
36
|
+
_constants: {
|
|
37
|
+
type: ObjectConstructor;
|
|
38
|
+
default: () => {
|
|
39
|
+
startDate: Date;
|
|
40
|
+
endDate: Date;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
emitter: ObjectConstructor;
|
|
44
|
+
step: {
|
|
45
|
+
type: ObjectConstructor;
|
|
46
|
+
default(): {
|
|
47
|
+
hour: number;
|
|
48
|
+
minute: number;
|
|
49
|
+
second: number;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
showWeekNumber: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
formatWeeks: FunctionConstructor;
|
|
57
|
+
timeEditable: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
tiny_mode: StringConstructor;
|
|
62
|
+
tiny_mode_root: BooleanConstructor;
|
|
63
|
+
tiny_template: (ObjectConstructor | FunctionConstructor)[];
|
|
64
|
+
tiny_renderless: FunctionConstructor;
|
|
65
|
+
tiny_theme: StringConstructor;
|
|
66
|
+
tiny_chart_theme: ObjectConstructor;
|
|
67
|
+
}>>, {
|
|
68
|
+
tiny_mode_root: boolean;
|
|
69
|
+
_constants: Record<string, any>;
|
|
70
|
+
timeEditable: boolean;
|
|
71
|
+
step: Record<string, any>;
|
|
72
|
+
showWeekNumber: boolean;
|
|
73
|
+
}, {}>;
|
|
2
74
|
export default _default;
|
|
@@ -1,2 +1,50 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
tiny_mode?: any;
|
|
3
|
+
tiny_mode_root?: any;
|
|
4
|
+
tiny_template?: any;
|
|
5
|
+
tiny_renderless?: any;
|
|
6
|
+
_constants?: any;
|
|
7
|
+
tiny_theme?: any;
|
|
8
|
+
tiny_chart_theme?: any;
|
|
9
|
+
step?: any;
|
|
10
|
+
showWeekNumber?: any;
|
|
11
|
+
formatWeeks?: any;
|
|
12
|
+
emitter?: any;
|
|
13
|
+
}>, {
|
|
14
|
+
t: (this: any, path: any, options?: any) => any;
|
|
15
|
+
vm: any;
|
|
16
|
+
f: (props: any, attrs?: {}) => {};
|
|
17
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
18
|
+
d: (props: any) => void;
|
|
19
|
+
dp: (props: any) => void;
|
|
20
|
+
gcls: (key: any) => any;
|
|
21
|
+
m: (...cssClasses: any[]) => string;
|
|
22
|
+
}, any, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("pick" | "dodestroy")[], "pick" | "dodestroy", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
23
|
+
tiny_mode?: any;
|
|
24
|
+
tiny_mode_root?: any;
|
|
25
|
+
tiny_template?: any;
|
|
26
|
+
tiny_renderless?: any;
|
|
27
|
+
_constants?: any;
|
|
28
|
+
tiny_theme?: any;
|
|
29
|
+
tiny_chart_theme?: any;
|
|
30
|
+
step?: any;
|
|
31
|
+
showWeekNumber?: any;
|
|
32
|
+
formatWeeks?: any;
|
|
33
|
+
emitter?: any;
|
|
34
|
+
}>>> & {
|
|
35
|
+
onPick?: ((...args: any[]) => any) | undefined;
|
|
36
|
+
onDodestroy?: ((...args: any[]) => any) | undefined;
|
|
37
|
+
}, {
|
|
38
|
+
readonly tiny_mode?: any;
|
|
39
|
+
readonly tiny_mode_root?: any;
|
|
40
|
+
readonly tiny_template?: any;
|
|
41
|
+
readonly tiny_renderless?: any;
|
|
42
|
+
readonly _constants?: any;
|
|
43
|
+
readonly tiny_theme?: any;
|
|
44
|
+
readonly tiny_chart_theme?: any;
|
|
45
|
+
readonly step?: any;
|
|
46
|
+
readonly showWeekNumber?: any;
|
|
47
|
+
readonly formatWeeks?: any;
|
|
48
|
+
readonly emitter?: any;
|
|
49
|
+
}, {}>;
|
|
2
50
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,2 +1,53 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
tiny_mode?: any;
|
|
3
|
+
tiny_mode_root?: any;
|
|
4
|
+
tiny_template?: any;
|
|
5
|
+
tiny_renderless?: any;
|
|
6
|
+
_constants?: any;
|
|
7
|
+
tiny_theme?: any;
|
|
8
|
+
tiny_chart_theme?: any;
|
|
9
|
+
timeEditable?: any;
|
|
10
|
+
step?: any;
|
|
11
|
+
showWeekNumber?: any;
|
|
12
|
+
formatWeeks?: any;
|
|
13
|
+
emitter?: any;
|
|
14
|
+
}>, {
|
|
15
|
+
t: (this: any, path: any, options?: any) => any;
|
|
16
|
+
vm: any;
|
|
17
|
+
f: (props: any, attrs?: {}) => {};
|
|
18
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
19
|
+
d: (props: any) => void;
|
|
20
|
+
dp: (props: any) => void;
|
|
21
|
+
gcls: (key: any) => any;
|
|
22
|
+
m: (...cssClasses: any[]) => string;
|
|
23
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("pick" | "dodestroy")[], "pick" | "dodestroy", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
24
|
+
tiny_mode?: any;
|
|
25
|
+
tiny_mode_root?: any;
|
|
26
|
+
tiny_template?: any;
|
|
27
|
+
tiny_renderless?: any;
|
|
28
|
+
_constants?: any;
|
|
29
|
+
tiny_theme?: any;
|
|
30
|
+
tiny_chart_theme?: any;
|
|
31
|
+
timeEditable?: any;
|
|
32
|
+
step?: any;
|
|
33
|
+
showWeekNumber?: any;
|
|
34
|
+
formatWeeks?: any;
|
|
35
|
+
emitter?: any;
|
|
36
|
+
}>>> & {
|
|
37
|
+
onPick?: ((...args: any[]) => any) | undefined;
|
|
38
|
+
onDodestroy?: ((...args: any[]) => any) | undefined;
|
|
39
|
+
}, {
|
|
40
|
+
readonly tiny_mode?: any;
|
|
41
|
+
readonly tiny_mode_root?: any;
|
|
42
|
+
readonly tiny_template?: any;
|
|
43
|
+
readonly tiny_renderless?: any;
|
|
44
|
+
readonly _constants?: any;
|
|
45
|
+
readonly tiny_theme?: any;
|
|
46
|
+
readonly tiny_chart_theme?: any;
|
|
47
|
+
readonly timeEditable?: any;
|
|
48
|
+
readonly step?: any;
|
|
49
|
+
readonly showWeekNumber?: any;
|
|
50
|
+
readonly formatWeeks?: any;
|
|
51
|
+
readonly emitter?: any;
|
|
52
|
+
}, {}>;
|
|
2
53
|
export default _default;
|