@dinert/element-plus 1.1.40 → 1.1.42
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/element-plus.umd.js +2 -2
- package/dist/element-plus.umd.js.map +1 -1
- package/es/packages/components/form/src/index.mjs +130 -128
- package/es/packages/components/form/src/index.mjs.map +1 -1
- package/es/packages/components/form/utils/index.mjs +49 -49
- package/es/packages/components/form/utils/index.mjs.map +1 -1
- package/es/packages/components/table/src/recuve-table-column.mjs +113 -113
- package/es/packages/components/table/src/recuve-table-column.mjs.map +1 -1
- package/es/src/components/form/types/index.d.ts +1 -0
- package/es/src/components/form/utils/index.d.ts +1 -1
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib/src/components/form/types/index.d.ts +1 -0
- package/lib/src/components/form/utils/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -68,6 +68,7 @@ export interface RewriteFormProps<D = any, FI = any> extends Omit<Partial<FormPr
|
|
|
68
68
|
showLabel?: boolean | ((model: D) => boolean);
|
|
69
69
|
required?: boolean;
|
|
70
70
|
key?: any;
|
|
71
|
+
errData?: string;
|
|
71
72
|
packUp?: boolean;
|
|
72
73
|
searchButton?: Partial<ButtonProps & {
|
|
73
74
|
message?: string;
|
|
@@ -2,7 +2,7 @@ export declare const labelMouseEnter: (e: MouseEvent, item: any, _this: any) =>
|
|
|
2
2
|
export declare const findTreeNode: (treeData: any, key: string, value: string) => any[];
|
|
3
3
|
export declare const getTooltipValue: (value: any, item: any) => any;
|
|
4
4
|
export declare const getSpanValue: (value: any, item: any) => any;
|
|
5
|
-
export declare const valueMouseEnter: (e: MouseEvent, item: any, value: any, _this: any) => void;
|
|
5
|
+
export declare const valueMouseEnter: (e: MouseEvent, item: any, value: any, _this: any, itemShowLabel: any) => void;
|
|
6
6
|
export declare const customPlaceholder: (customName: any, type?: string, name?: string) => string;
|
|
7
7
|
export declare const formItemSlot: (customName: any, name?: string) => string;
|
|
8
8
|
export declare const renderSlot: (arr: string[] | undefined, _this: any, slots: any, item: any) => any;
|