@zy-frontend/element-plus-form 2.0.17 → 2.0.18
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/index.es.d.ts +16 -4
- package/dist/index.es.js +761 -757
- package/package.json +2 -2
package/dist/index.es.d.ts
CHANGED
|
@@ -183,6 +183,12 @@ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
|
|
|
183
183
|
};
|
|
184
184
|
};
|
|
185
185
|
|
|
186
|
+
declare type __VLS_WithTemplateSlots_7<T, S> = T & {
|
|
187
|
+
new (): {
|
|
188
|
+
$slots: S;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
|
|
186
192
|
export declare type ActionPosition = 'left' | 'center' | 'right';
|
|
187
193
|
|
|
188
194
|
export declare interface BaseFormProps {
|
|
@@ -1579,7 +1585,7 @@ descriptionColor: string;
|
|
|
1579
1585
|
|
|
1580
1586
|
declare type ZYDateTimePickerType = 'year' | 'quarter' | 'month' | 'week' | 'date' | 'datetime' | 'yearrange' | 'monthrange' | 'quarterrange' | 'daterange' | 'datetimerange';
|
|
1581
1587
|
|
|
1582
|
-
export declare const ZYDynamicForm:
|
|
1588
|
+
export declare const ZYDynamicForm: __VLS_WithTemplateSlots_6<DefineComponent<ExtractPropTypes< {
|
|
1583
1589
|
modelValue: {
|
|
1584
1590
|
required: true;
|
|
1585
1591
|
type: PropType<Record<string, any>[]>;
|
|
@@ -3032,7 +3038,7 @@ validateEvent: boolean;
|
|
|
3032
3038
|
options: [SwitchOption, SwitchOption];
|
|
3033
3039
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3034
3040
|
|
|
3035
|
-
export declare const ZYTabs: DefineComponent<ExtractPropTypes< {
|
|
3041
|
+
export declare const ZYTabs: __VLS_WithTemplateSlots_5<DefineComponent<ExtractPropTypes< {
|
|
3036
3042
|
modelValue: {
|
|
3037
3043
|
required: true;
|
|
3038
3044
|
type: PropType<TabValue>;
|
|
@@ -3081,9 +3087,15 @@ default: () => never[];
|
|
|
3081
3087
|
}>> & Readonly<{}>, {
|
|
3082
3088
|
unfulfilledFields: Record<string, UnfulfilledField[]>;
|
|
3083
3089
|
tabs: Tab[];
|
|
3084
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any
|
|
3090
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
3091
|
+
"tab-extra"?(_: {
|
|
3092
|
+
label: string;
|
|
3093
|
+
name: TabValue;
|
|
3094
|
+
disabled: boolean | undefined;
|
|
3095
|
+
}): any;
|
|
3096
|
+
}>;
|
|
3085
3097
|
|
|
3086
|
-
export declare const ZYTitle:
|
|
3098
|
+
export declare const ZYTitle: __VLS_WithTemplateSlots_7<DefineComponent<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_5<TitleProps>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<__VLS_TypePropsToRuntimeProps_5<TitleProps>>> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>, {
|
|
3087
3099
|
default?(_: {}): any;
|
|
3088
3100
|
}>;
|
|
3089
3101
|
|