x-runtime-lib 0.8.116 → 0.8.118
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/editor/picker/index.vue.d.ts +3 -3
- package/dist/components/element/3d/camera/orthographicCamera/v1/index.vue.d.ts +2 -2
- package/dist/components/element/3d/camera/perspectiveCamera/v1/index.vue.d.ts +2 -2
- package/dist/components/element/3d/light/directionalLight/v1/index.vue.d.ts +2 -2
- package/dist/components/element/3d/light/pointLight/v1/index.vue.d.ts +2 -2
- package/dist/components/element/3d/light/spotLight/v1/index.vue.d.ts +2 -2
- package/dist/components/element/dynamic/slot/v1/index.vue.d.ts +4 -1
- package/dist/index.js +171 -159
- package/dist/types/element.d.ts +18 -8
- package/dist/{vendor.muyuiulw.js → vendor.emk171rx.js} +1239 -1351
- package/package.json +11 -11
package/dist/types/element.d.ts
CHANGED
|
@@ -84,13 +84,18 @@ type ZPropertyMultiTypes = {
|
|
|
84
84
|
readonly?: boolean;
|
|
85
85
|
default: string;
|
|
86
86
|
} & ZPropertyBase;
|
|
87
|
-
type
|
|
88
|
-
ui: '
|
|
87
|
+
type ZPropertySelectComp = {
|
|
88
|
+
ui: 'selectComp';
|
|
89
89
|
readonly?: boolean;
|
|
90
90
|
default: string | undefined;
|
|
91
91
|
} & ZPropertyBase;
|
|
92
|
-
type
|
|
93
|
-
ui: '
|
|
92
|
+
type ZPropertySelectSlot = {
|
|
93
|
+
ui: 'selectSlot';
|
|
94
|
+
readonly?: boolean;
|
|
95
|
+
default: string | undefined;
|
|
96
|
+
} & ZPropertyBase;
|
|
97
|
+
type ZPropertySelectAdaptSlot = {
|
|
98
|
+
ui: 'selectAdaptSlot';
|
|
94
99
|
readonly?: boolean;
|
|
95
100
|
default: string | undefined;
|
|
96
101
|
} & ZPropertyBase;
|
|
@@ -141,15 +146,20 @@ export type ZProperty = ({
|
|
|
141
146
|
defaultArray: string[];
|
|
142
147
|
} & ZPropertyMultiTypes) | ({
|
|
143
148
|
array?: false;
|
|
144
|
-
} &
|
|
149
|
+
} & ZPropertySelectComp) | ({
|
|
150
|
+
array: true;
|
|
151
|
+
defaultArray: string[];
|
|
152
|
+
} & ZPropertySelectComp) | ({
|
|
153
|
+
array?: false;
|
|
154
|
+
} & ZPropertySelectSlot) | ({
|
|
145
155
|
array: true;
|
|
146
156
|
defaultArray: string[];
|
|
147
|
-
} &
|
|
157
|
+
} & ZPropertySelectSlot) | ({
|
|
148
158
|
array?: false;
|
|
149
|
-
} &
|
|
159
|
+
} & ZPropertySelectAdaptSlot) | ({
|
|
150
160
|
array: true;
|
|
151
161
|
defaultArray: string[];
|
|
152
|
-
} &
|
|
162
|
+
} & ZPropertySelectAdaptSlot);
|
|
153
163
|
export type ZMethod = {
|
|
154
164
|
key: string;
|
|
155
165
|
name: string;
|