@dinert/element-plus 1.1.17 → 1.1.19

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.
@@ -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?: (row: ScopeProps<T>, column: TableColumnCtx<T>, cellValue: any, index: number) => any;
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>>;
@@ -1,10 +1,6 @@
1
1
  import type { Plugin } from 'vue';
2
2
  type SFCWithInstall<T> = T & Plugin;
3
3
  export declare const DinertTooltip: SFCWithInstall<import("vue").DefineComponent<{
4
- options: {
5
- type: ObjectConstructor;
6
- default: () => {};
7
- };
8
4
  content: {
9
5
  type: StringConstructor;
10
6
  default: string;
@@ -23,10 +19,6 @@ export declare const DinertTooltip: SFCWithInstall<import("vue").DefineComponent
23
19
  default: () => {};
24
20
  };
25
21
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "LabelMouseEnter"[], "LabelMouseEnter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
26
- options: {
27
- type: ObjectConstructor;
28
- default: () => {};
29
- };
30
22
  content: {
31
23
  type: StringConstructor;
32
24
  default: string;
@@ -48,7 +40,6 @@ export declare const DinertTooltip: SFCWithInstall<import("vue").DefineComponent
48
40
  onLabelMouseEnter?: ((...args: any[]) => any) | undefined;
49
41
  }, {
50
42
  disabled: boolean;
51
- options: Record<string, any>;
52
43
  content: string;
53
44
  item: {
54
45
  type?: string | undefined;
@@ -1,9 +1,5 @@
1
1
  import type { PropType } from 'vue';
2
2
  declare const _default: import("vue").DefineComponent<{
3
- options: {
4
- type: ObjectConstructor;
5
- default: () => {};
6
- };
7
3
  content: {
8
4
  type: StringConstructor;
9
5
  default: string;
@@ -22,10 +18,6 @@ declare const _default: import("vue").DefineComponent<{
22
18
  default: () => {};
23
19
  };
24
20
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "LabelMouseEnter"[], "LabelMouseEnter", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
25
- options: {
26
- type: ObjectConstructor;
27
- default: () => {};
28
- };
29
21
  content: {
30
22
  type: StringConstructor;
31
23
  default: string;
@@ -47,7 +39,6 @@ declare const _default: import("vue").DefineComponent<{
47
39
  onLabelMouseEnter?: ((...args: any[]) => any) | undefined;
48
40
  }, {
49
41
  disabled: boolean;
50
- options: Record<string, any>;
51
42
  content: string;
52
43
  item: {
53
44
  type?: string | undefined;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dinert/element-plus",
3
- "version": "1.1.17",
3
+ "version": "1.1.19",
4
4
  "description": "基于vue3封装的element-plus包",
5
5
  "scripts": {
6
6
  "dev": "vite",