x-runtime-lib 0.7.37 → 0.7.39
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/types/element.d.ts +4 -4
- package/package.json +7 -7
package/dist/types/element.d.ts
CHANGED
|
@@ -161,12 +161,12 @@ export type ZMethod = {
|
|
|
161
161
|
type: Type;
|
|
162
162
|
}[];
|
|
163
163
|
};
|
|
164
|
-
export type
|
|
164
|
+
export type ZSlotProp = {
|
|
165
165
|
key: string;
|
|
166
166
|
name: string;
|
|
167
167
|
type: Type;
|
|
168
168
|
};
|
|
169
|
-
export type
|
|
169
|
+
export type ZSlotMethod = {
|
|
170
170
|
key: string;
|
|
171
171
|
name: string;
|
|
172
172
|
inputs: {
|
|
@@ -183,8 +183,8 @@ export type SlotMethod = {
|
|
|
183
183
|
export type ZSlot = {
|
|
184
184
|
key: string;
|
|
185
185
|
name: string;
|
|
186
|
-
props:
|
|
187
|
-
methods:
|
|
186
|
+
props: ZSlotProp[];
|
|
187
|
+
methods: ZSlotMethod[];
|
|
188
188
|
};
|
|
189
189
|
export type ZElement = {
|
|
190
190
|
key: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x-runtime-lib",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.39",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"js-interpreter": "^6.0.1",
|
|
28
28
|
"lodash-es": "^4.17.21",
|
|
29
29
|
"mitt": "^3.0.1",
|
|
30
|
-
"vue": "^3.5.
|
|
30
|
+
"vue": "^3.5.20",
|
|
31
31
|
"vue-i18n": "^11.1.11",
|
|
32
|
-
"vuetify": "^3.9.
|
|
33
|
-
"x-error-lib": "^0.5.
|
|
34
|
-
"x-essential-lib": "^0.8.
|
|
32
|
+
"vuetify": "^3.9.6",
|
|
33
|
+
"x-error-lib": "^0.5.8",
|
|
34
|
+
"x-essential-lib": "^0.8.31"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@eslint/js": "^9.34.0",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"husky": "^9.1.7",
|
|
47
47
|
"lint-staged": "^16.1.5",
|
|
48
48
|
"prettier": "3.6.2",
|
|
49
|
-
"sass": "^1.
|
|
49
|
+
"sass": "^1.91.0",
|
|
50
50
|
"typescript": "^5.9.2",
|
|
51
|
-
"typescript-eslint": "^8.
|
|
51
|
+
"typescript-eslint": "^8.41.0",
|
|
52
52
|
"vite": "^7.1.3",
|
|
53
53
|
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
54
54
|
"vite-plugin-vuetify": "^2.1.2",
|