@blueking/date-picker 0.0.42 → 0.0.44
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/vue2-full.css +1 -1
- package/dist/vue2-full.es.js +89 -92
- package/dist/vue2-light.css +1 -1
- package/dist/vue2-light.es.js +89 -92
- package/dist/vue3-full.es.js +1 -4
- package/dist/vue3-light.es.js +1 -4
- package/package.json +16 -70
- package/dist/app.vue.d.ts +0 -2
- package/dist/main.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,20 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blueking/date-picker",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.44",
|
|
4
4
|
"description": "蓝鲸监控平台日期时间选择",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Tencent BlueKing",
|
|
7
7
|
"packageManager": "pnpm@8.6.0",
|
|
8
|
-
"scripts": {
|
|
9
|
-
"dev": "vite -c scripts/vite.dev.ts",
|
|
10
|
-
"prepublishOnly": "run-s build dts",
|
|
11
|
-
"build": "ts-node --project tsconfig.node.json ./scripts/vite.build.ts",
|
|
12
|
-
"preview": "vite preview",
|
|
13
|
-
"dts": "vue-tsc --project tsconfig.dts.json",
|
|
14
|
-
"prettier": "prettier ./src ./scripts --write",
|
|
15
|
-
"debug": "export TS_NODE_PROJECT=tsconfig.node.json && node --inspect -r ts-node/register ./scripts/vite.build.ts",
|
|
16
|
-
"visualize": "vite-bundle-visualizer -c scripts/vite.vusualizer.ts"
|
|
17
|
-
},
|
|
18
8
|
"exports": {
|
|
19
9
|
".": {
|
|
20
10
|
"types": "./dist/vue3.d.ts",
|
|
@@ -40,7 +30,11 @@
|
|
|
40
30
|
"require": "./dist/vue2-full.es.js",
|
|
41
31
|
"default": "./dist/vue2-full.es.js"
|
|
42
32
|
},
|
|
43
|
-
"./dist/*": "./dist/*"
|
|
33
|
+
"./dist/*": "./dist/*",
|
|
34
|
+
"./src/date-picker.vue": {
|
|
35
|
+
"types": "./dist/date-picker.vue.d.ts",
|
|
36
|
+
"import": "./src/date-picker.vue"
|
|
37
|
+
}
|
|
44
38
|
},
|
|
45
39
|
"typesVersions": {
|
|
46
40
|
"*": {
|
|
@@ -68,54 +62,14 @@
|
|
|
68
62
|
"access": "public",
|
|
69
63
|
"registry": "https://registry.npmjs.org/"
|
|
70
64
|
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"dayjs": "^1.11.10"
|
|
67
|
+
},
|
|
71
68
|
"peerDependencies": {
|
|
72
69
|
"bkui-vue": "^0.0.2-beta.83",
|
|
73
70
|
"dayjs": "^1.11.10",
|
|
74
71
|
"vue": "^3.2.0"
|
|
75
72
|
},
|
|
76
|
-
"devDependencies": {
|
|
77
|
-
"@types/fs-extra": "^11.0.3",
|
|
78
|
-
"@types/node": "^18.18.8",
|
|
79
|
-
"@typescript-eslint/eslint-plugin": "^6.9.1",
|
|
80
|
-
"@typescript-eslint/parser": "^6.9.1",
|
|
81
|
-
"@vitejs/plugin-vue": "^4.4.0",
|
|
82
|
-
"bkui-vue": "0.0.2-beta.83",
|
|
83
|
-
"es-module-lexer": "^1.3.1",
|
|
84
|
-
"eslint": "^8.52.0",
|
|
85
|
-
"eslint-config-prettier": "^9.0.0",
|
|
86
|
-
"eslint-config-tencent": "^1.0.4",
|
|
87
|
-
"eslint-plugin-codecc": "^0.3.0",
|
|
88
|
-
"eslint-plugin-perfectionist": "^2.2.0",
|
|
89
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
90
|
-
"eslint-plugin-vue": "^9.18.1",
|
|
91
|
-
"fs-extra": "^11.1.1",
|
|
92
|
-
"less": "^4.2.0",
|
|
93
|
-
"lint-staged": "^15.0.2",
|
|
94
|
-
"npm-run-all": "^4.1.5",
|
|
95
|
-
"picocolors": "^1.0.0",
|
|
96
|
-
"postcss-html": "^1.5.0",
|
|
97
|
-
"postcss-scss": "^4.0.9",
|
|
98
|
-
"prettier": "^3.0.3",
|
|
99
|
-
"rollup": "^4.2.0",
|
|
100
|
-
"sass": "^1.69.5",
|
|
101
|
-
"simple-git-hooks": "^2.9.0",
|
|
102
|
-
"stylelint": "^15.11.0",
|
|
103
|
-
"stylelint-config-recess-order": "^4.3.0",
|
|
104
|
-
"stylelint-config-recommended-vue": "1.5.0",
|
|
105
|
-
"stylelint-config-standard": "^34.0.0",
|
|
106
|
-
"stylelint-order": "^6.0.3",
|
|
107
|
-
"stylelint-scss": "^5.3.0",
|
|
108
|
-
"terser": "^5.24.0",
|
|
109
|
-
"ts-node": "^10.9.1",
|
|
110
|
-
"tslib": "^2.6.2",
|
|
111
|
-
"typescript": "^5.2.2",
|
|
112
|
-
"vite": "^4.5.0",
|
|
113
|
-
"vite-bundle-visualizer": "^0.10.0",
|
|
114
|
-
"vite-plugin-inspect": "^0.7.41",
|
|
115
|
-
"vue": "^3.3.7",
|
|
116
|
-
"vue-eslint-parser": "^9.3.2",
|
|
117
|
-
"vue-tsc": "^1.8.22"
|
|
118
|
-
},
|
|
119
73
|
"engines": {
|
|
120
74
|
"node": ">=18.16.0"
|
|
121
75
|
},
|
|
@@ -125,19 +79,11 @@
|
|
|
125
79
|
"Firefox ESR",
|
|
126
80
|
"not dead"
|
|
127
81
|
],
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
"prettier --write"
|
|
135
|
-
],
|
|
136
|
-
"*.ts?(x)": [
|
|
137
|
-
"eslint --fix"
|
|
138
|
-
]
|
|
139
|
-
},
|
|
140
|
-
"dependencies": {
|
|
141
|
-
"dayjs": "^1.11.10"
|
|
82
|
+
"scripts": {
|
|
83
|
+
"build": "tsx ./scripts/vite.build.ts",
|
|
84
|
+
"dts": "vue-tsc --project tsconfig.dts.json",
|
|
85
|
+
"prettier": "prettier ./src ./scripts --write",
|
|
86
|
+
"debug": "export TS_NODE_PROJECT=tsconfig.node.json && node --inspect-brk -r ts-node/register ./scripts/vite.build.ts",
|
|
87
|
+
"visualize": "vite-bundle-visualizer -c scripts/vite.vusualizer.ts"
|
|
142
88
|
}
|
|
143
|
-
}
|
|
89
|
+
}
|
package/dist/app.vue.d.ts
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
-
export default _default;
|
package/dist/main.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|