@blueking/date-picker 0.0.36 → 0.0.38
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/dist/components/common-tab.vue.d.ts +1 -1
- package/dist/components/date-picker.vue.d.ts +2 -2
- package/dist/components/natural-picker.vue.d.ts +2 -2
- package/dist/components/panel-wrapper.vue.d.ts +3 -3
- package/dist/components/recent-picker.vue.d.ts +2 -2
- package/dist/components/timezone-picker.vue.d.ts +1 -1
- package/dist/date-picker.vue.d.ts +2 -2
- package/dist/{typings → utils}/constant.d.ts +1 -0
- package/dist/{typings → utils}/utils.d.ts +1 -0
- package/dist/vue2-full.es.js +10993 -10855
- package/dist/vue2-light.es.js +11910 -11793
- package/dist/vue2.d.ts +1 -1
- package/dist/vue3-full.es.js +8578 -8468
- package/dist/vue3-light.es.js +523 -518
- package/dist/vue3.d.ts +3 -3
- package/package.json +3 -3
- /package/dist/{typings → utils}/cookie.d.ts +0 -0
- /package/dist/{typings → utils}/date.d.ts +0 -0
- /package/dist/{typings → utils}/index.d.ts +0 -0
- /package/dist/{typings → utils}/store.d.ts +0 -0
- /package/dist/{typings → utils}/timezone.d.ts +0 -0
- /package/dist/{typings → utils}/types.d.ts +0 -0
package/dist/vue3.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import dayjs
|
|
1
|
+
import dayjs from 'dayjs';
|
|
2
2
|
import DatePicker from './date-picker.vue';
|
|
3
|
-
export { DatePicker,
|
|
3
|
+
export { DatePicker, dayjs };
|
|
4
4
|
export default DatePicker;
|
|
5
|
-
export * from './
|
|
5
|
+
export * from './utils/date';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueking/date-picker",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.38",
|
|
4
4
|
"description": "蓝鲸监控平台日期时间选择",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Tencent BlueKing",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"registry": "https://registry.npmjs.org/"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
|
-
"bkui-vue": "^0.0.2-beta.
|
|
72
|
+
"bkui-vue": "^0.0.2-beta.83",
|
|
73
73
|
"dayjs": "^1.11.10",
|
|
74
74
|
"lodash-es": "^4.17.21",
|
|
75
75
|
"vue": "^3.2.0"
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@typescript-eslint/eslint-plugin": "^6.9.1",
|
|
81
81
|
"@typescript-eslint/parser": "^6.9.1",
|
|
82
82
|
"@vitejs/plugin-vue": "^4.4.0",
|
|
83
|
-
"bkui-vue": "0.0.2-beta.
|
|
83
|
+
"bkui-vue": "0.0.2-beta.83",
|
|
84
84
|
"es-module-lexer": "^1.3.1",
|
|
85
85
|
"eslint": "^8.52.0",
|
|
86
86
|
"eslint-config-prettier": "^9.0.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|