bkui-vue 0.0.1-beta.76 → 0.0.1-beta.79
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/index.cjs.js +27 -27
- package/dist/index.esm.js +573 -244
- package/dist/index.umd.js +28 -28
- package/dist/style.css +1 -1
- package/lib/button/button.css +10 -17
- package/lib/button/button.d.ts +10 -0
- package/lib/button/button.less +16 -29
- package/lib/button/button.variable.css +10 -17
- package/lib/button/index.d.ts +16 -1
- package/lib/button/index.js +1 -1
- package/lib/components.d.ts +1 -0
- package/lib/components.js +1 -1
- package/lib/table/const.d.ts +26 -0
- package/lib/table/index.d.ts +41 -11
- package/lib/table/index.js +1 -1
- package/lib/table/props.d.ts +2 -2
- package/lib/table/render.d.ts +0 -6
- package/lib/table/table.d.ts +15 -3
- package/lib/tree/constant.d.ts +7 -5
- package/lib/tree/index.d.ts +20 -43
- package/lib/tree/index.js +1 -1
- package/lib/tree/props.d.ts +0 -9
- package/lib/tree/tree.d.ts +6 -17
- package/lib/tree/use-node-attribute.d.ts +2 -6
- package/package.json +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "bkui-vue",
|
3
|
-
"version": "0.0.1-beta.
|
3
|
+
"version": "0.0.1-beta.79",
|
4
4
|
"workspaces": {
|
5
5
|
"packages": [
|
6
6
|
"packages/!(**.bak)*",
|
@@ -15,7 +15,7 @@
|
|
15
15
|
"prepare": "husky install",
|
16
16
|
"dev": "vite serve site",
|
17
17
|
"build": "run-p build:dist build:lib",
|
18
|
-
"build:site": "vite build site --mode development",
|
18
|
+
"build:site": "vite build site --mode development && cp -r ./site/views/ ./site/dist/views ",
|
19
19
|
"build:dist": "rimraf dist && lerna run --stream --scope cli dist",
|
20
20
|
"build:lib": "rimraf lib && lerna run --stream --scope cli lib",
|
21
21
|
"help:release": "lerna run --stream --scope cli release",
|