x-block-lib 0.8.59 → 0.8.60
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/core/blocks/app/misc/selectSlot/v1/index.d.ts +1 -0
- package/dist/core/locale/msg/en.d.ts +3 -0
- package/dist/core/locale/msg/zhHans.d.ts +3 -0
- package/dist/core/utils/app/app.d.ts +14 -17
- package/dist/core/utils/app/index.d.ts +1 -0
- package/dist/core/utils/app/slot.d.ts +9 -0
- package/dist/core/utils/common/shadow.d.ts +2 -1
- package/dist/index.js +294 -276
- package/dist/{msg-en.jch03670.js → msg-en.lazlimvt.js} +3 -0
- package/dist/{msg-zhHans.dkvb4o7c.js → msg-zhHans.b1gbdbmm.js} +3 -0
- package/package.json +8 -8
|
@@ -168,6 +168,9 @@ const _ = {
|
|
|
168
168
|
APP_V1_SELECT_COMP_TITLE: "select comp",
|
|
169
169
|
APP_V1_SELECT_COMP_TOOLTIP: "APP_V1_SELECT_COMP_TOOLTIP",
|
|
170
170
|
APP_V1_SELECT_COMP_HELPURL: "APP_V1_SELECT_COMP_HELPURL",
|
|
171
|
+
APP_V1_SELECT_SLOT_TITLE: "select slot",
|
|
172
|
+
APP_V1_SELECT_SLOT_TOOLTIP: "APP_V1_SELECT_SLOT_TOOLTIP",
|
|
173
|
+
APP_V1_SELECT_SLOT_HELPURL: "APP_V1_SELECT_SLOT_HELPURL",
|
|
171
174
|
APP_V1_SET_APP_METHOD_OUTPUT_TITLE: "set method output",
|
|
172
175
|
APP_V1_SET_APP_METHOD_OUTPUT_TOOLTIP: "APP_V1_SET_APP_METHOD_OUTPUT_TOOLTIP",
|
|
173
176
|
APP_V1_SET_APP_METHOD_OUTPUT_HELPURL: "APP_V1_SET_APP_METHOD_OUTPUT_HELPURL",
|
|
@@ -168,6 +168,9 @@ const _ = {
|
|
|
168
168
|
APP_V1_SELECT_COMP_TITLE: "选择组件",
|
|
169
169
|
APP_V1_SELECT_COMP_TOOLTIP: "APP_V1_SELECT_COMP_TOOLTIP",
|
|
170
170
|
APP_V1_SELECT_COMP_HELPURL: "APP_V1_SELECT_COMP_HELPURL",
|
|
171
|
+
APP_V1_SELECT_SLOT_TITLE: "选择插槽",
|
|
172
|
+
APP_V1_SELECT_SLOT_TOOLTIP: "APP_V1_SELECT_SLOT_TOOLTIP",
|
|
173
|
+
APP_V1_SELECT_SLOT_HELPURL: "APP_V1_SELECT_SLOT_HELPURL",
|
|
171
174
|
APP_V1_SET_APP_METHOD_OUTPUT_TITLE: "设置方法输出",
|
|
172
175
|
APP_V1_SET_APP_METHOD_OUTPUT_TOOLTIP: "APP_V1_SET_APP_METHOD_OUTPUT_TOOLTIP",
|
|
173
176
|
APP_V1_SET_APP_METHOD_OUTPUT_HELPURL: "APP_V1_SET_APP_METHOD_OUTPUT_HELPURL",
|
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.60",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"vue-draggable-plus": "^0.6.0",
|
|
37
37
|
"vue-i18n": "^11.2.2",
|
|
38
38
|
"vue-router": "^4.6.3",
|
|
39
|
-
"vuetify": "^3.11.
|
|
39
|
+
"vuetify": "^3.11.3",
|
|
40
40
|
"x-essential-lib": "^0.9.19",
|
|
41
|
-
"x-runtime-lib": "^0.8.
|
|
41
|
+
"x-runtime-lib": "^0.8.118",
|
|
42
42
|
"x-state-lib": "^0.3.31"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@eslint/js": "^9.39.1",
|
|
46
46
|
"@types/lodash-es": "^4.17.12",
|
|
47
|
-
"@types/node": "^
|
|
47
|
+
"@types/node": "^25.0.0",
|
|
48
48
|
"@vitejs/plugin-vue": "^6.0.2",
|
|
49
49
|
"eslint": "^9.39.1",
|
|
50
50
|
"eslint-config-prettier": "^10.1.8",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
"husky": "^9.1.7",
|
|
55
55
|
"lint-staged": "^16.2.7",
|
|
56
56
|
"prettier": "3.7.4",
|
|
57
|
-
"sass": "^1.
|
|
57
|
+
"sass": "^1.96.0",
|
|
58
58
|
"typescript": "^5.9.3",
|
|
59
|
-
"typescript-eslint": "^8.
|
|
60
|
-
"vite": "^7.2.
|
|
59
|
+
"typescript-eslint": "^8.49.0",
|
|
60
|
+
"vite": "^7.2.7",
|
|
61
61
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
62
62
|
"vite-plugin-vuetify": "^2.1.2",
|
|
63
63
|
"vue-eslint-parser": "^10.2.0",
|
|
64
|
-
"vue-tsc": "^3.1.
|
|
64
|
+
"vue-tsc": "^3.1.8"
|
|
65
65
|
}
|
|
66
66
|
}
|