x-runtime-lib 0.5.11 → 0.5.12
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/element/dialog/v1/index.vue.d.ts +16 -1
- package/dist/index.js +919 -885
- package/dist/types/element.d.ts +9 -1
- package/package.json +1 -1
package/dist/types/element.d.ts
CHANGED
|
@@ -18,6 +18,14 @@ type ZTypeInput = {
|
|
|
18
18
|
step: number;
|
|
19
19
|
} & ZTypeBase;
|
|
20
20
|
export type ZType = ZTypeWord | ZTypeInput;
|
|
21
|
+
export type ZSlot = {
|
|
22
|
+
key: string;
|
|
23
|
+
name: string;
|
|
24
|
+
params: {
|
|
25
|
+
key: string;
|
|
26
|
+
name: string;
|
|
27
|
+
}[];
|
|
28
|
+
};
|
|
21
29
|
export type ZEvent = {
|
|
22
30
|
key: string;
|
|
23
31
|
name: string;
|
|
@@ -150,7 +158,7 @@ export type ZElement = {
|
|
|
150
158
|
key: string;
|
|
151
159
|
name: string;
|
|
152
160
|
comp: any;
|
|
153
|
-
|
|
161
|
+
slots: ZSlot[];
|
|
154
162
|
events: ZEvent[];
|
|
155
163
|
methods: ZMethod[];
|
|
156
164
|
props: ZProps;
|