@bscomp/ep-ui 0.3.2 → 0.3.4
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/lib/ep-ui.js +151 -145
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +5 -5
- package/lib/form/index.d.ts +3 -1
- package/lib/form/src/index.vue.d.ts +3 -1
- package/package.json +1 -1
package/lib/form/index.d.ts
CHANGED
|
@@ -195,6 +195,8 @@ declare const EPForm: ({
|
|
|
195
195
|
scope: any;
|
|
196
196
|
}) => any>> & Partial<Record<any, (_: {
|
|
197
197
|
scope: any;
|
|
198
|
-
}) => any>> & Partial<Record<string, (_: {}) => any
|
|
198
|
+
}) => any>> & Partial<Record<string, (_: {}) => any>> & {
|
|
199
|
+
top?(_: {}): any;
|
|
200
|
+
};
|
|
199
201
|
}) & import('vue').Plugin<any[]>) & Record<string, any>;
|
|
200
202
|
export default EPForm;
|
|
@@ -105,7 +105,9 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
105
105
|
scope: any;
|
|
106
106
|
}) => any>> & Partial<Record<any, (_: {
|
|
107
107
|
scope: any;
|
|
108
|
-
}) => any>> & Partial<Record<string, (_: {}) => any
|
|
108
|
+
}) => any>> & Partial<Record<string, (_: {}) => any>> & {
|
|
109
|
+
top?(_: {}): any;
|
|
110
|
+
}>;
|
|
109
111
|
export default _default;
|
|
110
112
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
111
113
|
new (): {
|