@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.
Files changed (39) hide show
  1. package/package.json +14 -15
  2. package/vue2/index.es.min.js +25721 -28432
  3. package/vue2/index.iife.min.js +31860 -36605
  4. package/vue2/index.umd.min.js +26347 -29017
  5. package/vue2/vue2.css +3 -7
  6. package/vue3/components/baseline-select.vue.d.ts +12 -0
  7. package/vue3/components/common-submit.vue.d.ts +14 -0
  8. package/{typings → vue3}/components/common-tab.vue.d.ts +2 -1
  9. package/{typings → vue3}/components/date-list.vue.d.ts +5 -7
  10. package/{typings → vue3}/components/date-panel.vue.d.ts +2 -1
  11. package/{typings → vue3}/components/date-picker.vue.d.ts +5 -5
  12. package/{typings → vue3}/components/date-title.vue.d.ts +2 -1
  13. package/{typings → vue3}/components/natural-picker.vue.d.ts +2 -1
  14. package/{typings → vue3}/components/panel-wrapper.vue.d.ts +5 -7
  15. package/{typings → vue3}/components/recent-picker.vue.d.ts +2 -1
  16. package/{typings → vue3}/components/timezone-picker.vue.d.ts +5 -6
  17. package/{typings → vue3}/date-picker.vue.d.ts +2 -1
  18. package/vue3/index.es.min.js +4706 -4530
  19. package/vue3/index.iife.min.js +26970 -29503
  20. package/vue3/index.umd.min.js +4850 -4591
  21. package/{typings → vue3}/utils/date.d.ts +1 -1
  22. package/vue3/vue3.css +3 -1
  23. package/typings/components/baseline-select.vue.d.ts +0 -12
  24. package/typings/components/common-submit.vue.d.ts +0 -18
  25. package/vue2/config.json +0 -1
  26. package/vue3/config.json +0 -1
  27. /package/{typings → vue3}/hooks/use-keydown-enter.d.ts +0 -0
  28. /package/{typings → vue3}/hooks/use-validate.d.ts +0 -0
  29. /package/{typings → vue3}/lang/lang.d.ts +0 -0
  30. /package/{typings → vue3}/utils/constant.d.ts +0 -0
  31. /package/{typings → vue3}/utils/cookie.d.ts +0 -0
  32. /package/{typings → vue3}/utils/duration.d.ts +0 -0
  33. /package/{typings → vue3}/utils/index.d.ts +0 -0
  34. /package/{typings → vue3}/utils/provider.d.ts +0 -0
  35. /package/{typings → vue3}/utils/store.d.ts +0 -0
  36. /package/{typings → vue3}/utils/timezone.d.ts +0 -0
  37. /package/{typings → vue3}/utils/types.d.ts +0 -0
  38. /package/{typings → vue3}/vue2.d.ts +0 -0
  39. /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.6",
3
+ "version": "3.0.8",
4
4
  "description": "蓝鲸监控平台日期时间选择",
5
5
  "license": "MIT",
6
6
  "author": "Tencent BlueKing",
7
7
  "scripts": {
8
- "prepublishOnly": "run-p build dts",
9
- "dev": "vite --mode development -c scripts/vite.dev.ts",
10
- "build": "tsx ./scripts/vite.build.ts",
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": "vite-bundle-visualizer -c scripts/vite.vusualizer.ts"
13
+ "visualize": "component-cli analyze --target vue2"
14
14
  },
15
15
  "exports": {
16
16
  ".": {
17
- "types": "./typings/vue3.d.ts",
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": "./typings/vue3.d.ts",
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": "./typings/vue2.d.ts",
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
- "./typings/vue3.d.ts"
38
+ "./vue3/vue3.d.ts"
39
39
  ],
40
40
  "vue3": [
41
- "./typings/vue3.d.ts"
41
+ "./vue3/vue3.d.ts"
42
42
  ],
43
43
  "vue2": [
44
- "./typings/vue2.d.ts"
44
+ "./vue3/vue2.d.ts"
45
45
  ]
46
46
  }
47
47
  },
48
- "types": "./typings/vue3.d.ts",
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
+ }