x-block-lib 0.8.6 → 0.8.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/dist/components/blockly/buildReactive.d.ts +28 -0
- package/dist/components/blockly/clean/index.vue.d.ts +2 -1
- package/dist/components/blockly/index.vue.d.ts +6 -3
- package/dist/components/blockly/lock/index.vue.d.ts +4 -3
- package/dist/components/blockly/navigator/blockList/index.vue.d.ts +4 -2
- package/dist/components/blockly/navigator/blockList/item.vue.d.ts +2 -1
- package/dist/components/blockly/navigator/blockTree/index.vue.d.ts +4 -3
- package/dist/components/blockly/navigator/index.vue.d.ts +2 -1
- package/dist/components/sourceDlg/content/index.vue.d.ts +2 -1
- package/dist/components/sourceDlg/index.vue.d.ts +2 -1
- package/dist/index.js +1191 -1061
- package/dist/{vendor.hbs954v9.js → vendor.b68g5q94.js} +6904 -6812
- package/package.json +17 -16
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x-block-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.8",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -22,11 +22,12 @@
|
|
|
22
22
|
"*": "prettier --write ."
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@blockly/field-colour": "^6.0.
|
|
26
|
-
"@blockly/keyboard-navigation": "^3.0.
|
|
27
|
-
"@blockly/plugin-cross-tab-copy-paste": "^8.0.
|
|
28
|
-
"@blockly/shadow-block-converter": "^7.0.
|
|
25
|
+
"@blockly/field-colour": "^6.0.5",
|
|
26
|
+
"@blockly/keyboard-navigation": "^3.0.3",
|
|
27
|
+
"@blockly/plugin-cross-tab-copy-paste": "^8.0.2",
|
|
28
|
+
"@blockly/shadow-block-converter": "^7.0.4",
|
|
29
29
|
"@highlightjs/vue-plugin": "^2.1.0",
|
|
30
|
+
"@sindresorhus/base62": "^1.0.0",
|
|
30
31
|
"axios": "^1.12.2",
|
|
31
32
|
"blockly": "^12.3.1",
|
|
32
33
|
"highlight.js": "^11.11.1",
|
|
@@ -35,32 +36,32 @@
|
|
|
35
36
|
"vue-draggable-plus": "^0.6.0",
|
|
36
37
|
"vue-i18n": "^11.1.12",
|
|
37
38
|
"vue-router": "^4.5.1",
|
|
38
|
-
"vuetify": "^3.10.
|
|
39
|
+
"vuetify": "^3.10.5",
|
|
39
40
|
"x-essential-lib": "^0.9.0",
|
|
40
|
-
"x-runtime-lib": "^0.8.
|
|
41
|
+
"x-runtime-lib": "^0.8.10",
|
|
41
42
|
"x-state-lib": "^0.3.19"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
|
-
"@eslint/js": "^9.
|
|
45
|
+
"@eslint/js": "^9.37.0",
|
|
45
46
|
"@types/lodash-es": "^4.17.12",
|
|
46
|
-
"@types/node": "^24.
|
|
47
|
+
"@types/node": "^24.7.2",
|
|
47
48
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
48
|
-
"eslint": "^9.
|
|
49
|
+
"eslint": "^9.37.0",
|
|
49
50
|
"eslint-config-prettier": "^10.1.8",
|
|
50
51
|
"eslint-plugin-prettier": "^5.5.4",
|
|
51
52
|
"eslint-plugin-vue": "^10.5.0",
|
|
52
53
|
"globals": "^16.4.0",
|
|
53
54
|
"husky": "^9.1.7",
|
|
54
|
-
"lint-staged": "^16.2.
|
|
55
|
+
"lint-staged": "^16.2.4",
|
|
55
56
|
"prettier": "3.6.2",
|
|
56
57
|
"sass": "^1.93.2",
|
|
57
|
-
"typescript": "^5.9.
|
|
58
|
-
"typescript-eslint": "^8.
|
|
59
|
-
"vite": "^7.1.
|
|
58
|
+
"typescript": "^5.9.3",
|
|
59
|
+
"typescript-eslint": "^8.46.0",
|
|
60
|
+
"vite": "^7.1.9",
|
|
60
61
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
61
|
-
"vite-plugin-static-copy": "^3.1.
|
|
62
|
+
"vite-plugin-static-copy": "^3.1.3",
|
|
62
63
|
"vite-plugin-vuetify": "^2.1.2",
|
|
63
64
|
"vue-eslint-parser": "^10.2.0",
|
|
64
|
-
"vue-tsc": "^3.
|
|
65
|
+
"vue-tsc": "^3.1.1"
|
|
65
66
|
}
|
|
66
67
|
}
|