@dinert/element-plus 1.1.16 → 1.1.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/element-plus.umd.js +2 -2
- package/dist/element-plus.umd.js.map +1 -1
- package/es/packages/components/form/src/index.mjs +39 -39
- package/es/packages/components/form/src/index.mjs.map +1 -1
- package/es/packages/components/form/utils/index.mjs +10 -10
- package/es/packages/components/form/utils/index.mjs.map +1 -1
- package/es/packages/components/table/src/index.mjs +1 -1
- package/es/packages/components/table/src/index.mjs.map +1 -1
- package/es/packages/index.mjs +17 -15
- package/es/packages/index.mjs.map +1 -1
- package/es/src/components/form/types/index.d.ts +1 -0
- package/es/src/components/table/types/index.d.ts +1 -1
- package/es/src/index.d.ts +1 -0
- package/es/src/views/test-table/data.d.ts +1 -21
- package/es/style.css +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/table/types/index.d.ts +1 -1
- package/lib/src/index.d.ts +1 -0
- package/lib/src/views/test-table/data.d.ts +1 -21
- package/package.json +1 -1
|
@@ -60,6 +60,7 @@ export interface RewriteFormProps<D = any, FI = any> extends Omit<Partial<FormPr
|
|
|
60
60
|
row?: RewriteRowProps;
|
|
61
61
|
showLabel?: boolean;
|
|
62
62
|
required?: boolean;
|
|
63
|
+
packUp?: boolean;
|
|
63
64
|
}
|
|
64
65
|
export interface DinertFormProps<D = any, FI = any> {
|
|
65
66
|
form: RewriteFormProps<D, FI>;
|
|
@@ -24,7 +24,7 @@ export interface RewriteTableColumnCtx<T = any> extends Omit<Partial<TableColumn
|
|
|
24
24
|
type?: 'default' | 'selection' | 'index' | 'expand';
|
|
25
25
|
checked?: boolean;
|
|
26
26
|
show?: boolean | ((column: RewriteTableColumnCtx<T>) => boolean);
|
|
27
|
-
formatter?: (
|
|
27
|
+
formatter?: (scope: ScopeProps<T>, column: TableColumnCtx<T>, cellValue: any, index: number) => any;
|
|
28
28
|
setting?: boolean;
|
|
29
29
|
maxOperations?: number;
|
|
30
30
|
operations?: Record<string, OperationsProps<T>>;
|
package/lib/src/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { Plugin } from 'vue';
|
|
|
2
2
|
import TablePage2 from './hooks/TablePage/index';
|
|
3
3
|
import UseDialog2 from './hooks/UseDialog/index';
|
|
4
4
|
import UseForm2 from './hooks/UseForm/index';
|
|
5
|
+
export { dataTransformRod } from './utils/tools';
|
|
5
6
|
export * from './components/index';
|
|
6
7
|
export declare const TablePage: typeof TablePage2;
|
|
7
8
|
export declare const UseDialog: typeof UseDialog2;
|
|
@@ -1,21 +1 @@
|
|
|
1
|
-
export declare const tableData:
|
|
2
|
-
args: string;
|
|
3
|
-
costTime: number;
|
|
4
|
-
errorMsg: string;
|
|
5
|
-
id: string;
|
|
6
|
-
ip: string;
|
|
7
|
-
operationDescription: string;
|
|
8
|
-
operationObject: string;
|
|
9
|
-
operationResult: string;
|
|
10
|
-
operationType: {
|
|
11
|
-
code: string;
|
|
12
|
-
name: string;
|
|
13
|
-
};
|
|
14
|
-
overTime: number;
|
|
15
|
-
requestMethod: string;
|
|
16
|
-
requestUrl: string;
|
|
17
|
-
securityLevel: string;
|
|
18
|
-
startTime: string;
|
|
19
|
-
userId: string;
|
|
20
|
-
userName: string;
|
|
21
|
-
}[];
|
|
1
|
+
export declare const tableData: never[];
|