@blueking/date-picker 3.0.6 → 3.0.8
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/package.json +14 -15
- package/vue2/index.es.min.js +25721 -28432
- package/vue2/index.iife.min.js +31860 -36605
- package/vue2/index.umd.min.js +26347 -29017
- package/vue2/vue2.css +3 -7
- package/vue3/components/baseline-select.vue.d.ts +12 -0
- package/vue3/components/common-submit.vue.d.ts +14 -0
- package/{typings → vue3}/components/common-tab.vue.d.ts +2 -1
- package/{typings → vue3}/components/date-list.vue.d.ts +5 -7
- package/{typings → vue3}/components/date-panel.vue.d.ts +2 -1
- package/{typings → vue3}/components/date-picker.vue.d.ts +5 -5
- package/{typings → vue3}/components/date-title.vue.d.ts +2 -1
- package/{typings → vue3}/components/natural-picker.vue.d.ts +2 -1
- package/{typings → vue3}/components/panel-wrapper.vue.d.ts +5 -7
- package/{typings → vue3}/components/recent-picker.vue.d.ts +2 -1
- package/{typings → vue3}/components/timezone-picker.vue.d.ts +5 -6
- package/{typings → vue3}/date-picker.vue.d.ts +2 -1
- package/vue3/index.es.min.js +4706 -4530
- package/vue3/index.iife.min.js +26970 -29503
- package/vue3/index.umd.min.js +4850 -4591
- package/{typings → vue3}/utils/date.d.ts +1 -1
- package/vue3/vue3.css +3 -1
- package/typings/components/baseline-select.vue.d.ts +0 -12
- package/typings/components/common-submit.vue.d.ts +0 -18
- package/vue2/config.json +0 -1
- package/vue3/config.json +0 -1
- /package/{typings → vue3}/hooks/use-keydown-enter.d.ts +0 -0
- /package/{typings → vue3}/hooks/use-validate.d.ts +0 -0
- /package/{typings → vue3}/lang/lang.d.ts +0 -0
- /package/{typings → vue3}/utils/constant.d.ts +0 -0
- /package/{typings → vue3}/utils/cookie.d.ts +0 -0
- /package/{typings → vue3}/utils/duration.d.ts +0 -0
- /package/{typings → vue3}/utils/index.d.ts +0 -0
- /package/{typings → vue3}/utils/provider.d.ts +0 -0
- /package/{typings → vue3}/utils/store.d.ts +0 -0
- /package/{typings → vue3}/utils/timezone.d.ts +0 -0
- /package/{typings → vue3}/utils/types.d.ts +0 -0
- /package/{typings → vue3}/vue2.d.ts +0 -0
- /package/{typings → vue3}/vue3.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueking/date-picker",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8",
|
|
4
4
|
"description": "蓝鲸监控平台日期时间选择",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Tencent BlueKing",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"prepublishOnly": "run-
|
|
9
|
-
"dev": "
|
|
10
|
-
"build": "
|
|
8
|
+
"prepublishOnly": "run-s build dts",
|
|
9
|
+
"dev": "component-cli dev",
|
|
10
|
+
"build": "component-cli build --target all",
|
|
11
11
|
"dts": "vue-tsc --project tsconfig.dts.json",
|
|
12
12
|
"prettier": "prettier ./src ./scripts ./playground --write",
|
|
13
|
-
"visualize": "
|
|
13
|
+
"visualize": "component-cli analyze --target vue2"
|
|
14
14
|
},
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
|
-
"types": "./
|
|
17
|
+
"types": "./vue3/vue3.d.ts",
|
|
18
18
|
"import": "./vue3/index.es.min.js",
|
|
19
19
|
"default": "./vue3/index.es.min.js"
|
|
20
20
|
},
|
|
21
21
|
"./vue3": {
|
|
22
|
-
"types": "./
|
|
22
|
+
"types": "./vue3/vue3.d.ts",
|
|
23
23
|
"import": "./vue3/index.es.min.js",
|
|
24
24
|
"default": "./vue3/index.es.min.js"
|
|
25
25
|
},
|
|
26
26
|
"./vue2": {
|
|
27
|
-
"types": "./
|
|
27
|
+
"types": "./vue3/vue2.d.ts",
|
|
28
28
|
"import": "./vue2/index.es.min.js",
|
|
29
29
|
"default": "./vue2/index.es.min.js"
|
|
30
30
|
},
|
|
@@ -35,23 +35,22 @@
|
|
|
35
35
|
"typesVersions": {
|
|
36
36
|
"*": {
|
|
37
37
|
".": [
|
|
38
|
-
"./
|
|
38
|
+
"./vue3/vue3.d.ts"
|
|
39
39
|
],
|
|
40
40
|
"vue3": [
|
|
41
|
-
"./
|
|
41
|
+
"./vue3/vue3.d.ts"
|
|
42
42
|
],
|
|
43
43
|
"vue2": [
|
|
44
|
-
"./
|
|
44
|
+
"./vue3/vue2.d.ts"
|
|
45
45
|
]
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
-
"types": "./
|
|
48
|
+
"types": "./vue3/vue3.d.ts",
|
|
49
49
|
"module": "./vue3/index.es.min.js",
|
|
50
50
|
"unpkg": "./vue3/index.es.min.js",
|
|
51
51
|
"files": [
|
|
52
52
|
"vue2",
|
|
53
|
-
"vue3"
|
|
54
|
-
"typings"
|
|
53
|
+
"vue3"
|
|
55
54
|
],
|
|
56
55
|
"publishConfig": {
|
|
57
56
|
"access": "public",
|
|
@@ -63,4 +62,4 @@
|
|
|
63
62
|
"dayjs": "^1.11.10",
|
|
64
63
|
"vue": "^3"
|
|
65
64
|
}
|
|
66
|
-
}
|
|
65
|
+
}
|