@pisell/materials 1.0.537 → 1.0.538
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/preview.js +6 -6
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +19 -19
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +18 -18
- package/es/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +8 -1
- package/es/components/productCard/index.less +1 -1
- package/es/components/table/Table/utils.d.ts +1 -1
- package/lib/components/dataSourceComponents/dataSourceTable/hooks/useTableProps.d.ts +8 -1
- package/lib/components/productCard/index.less +1 -1
- package/lib/components/table/Table/utils.d.ts +1 -1
- package/package.json +1 -1
|
@@ -65,7 +65,7 @@ declare const useTableProps: (props: UseTablePropsProps) => {
|
|
|
65
65
|
useCustomAction: boolean;
|
|
66
66
|
actionType: string;
|
|
67
67
|
openMode: "modal" | "drawer";
|
|
68
|
-
openContentSize: "small" | "
|
|
68
|
+
openContentSize: "small" | "large" | "middle";
|
|
69
69
|
openTitle: string;
|
|
70
70
|
key: string;
|
|
71
71
|
} | undefined;
|
|
@@ -81,5 +81,12 @@ declare const useTableProps: (props: UseTablePropsProps) => {
|
|
|
81
81
|
}[];
|
|
82
82
|
} | undefined;
|
|
83
83
|
onValuesChange?: ((changedValues: any, values: any) => void) | undefined;
|
|
84
|
+
extraParams?: {
|
|
85
|
+
list?: Record<string, any> | undefined;
|
|
86
|
+
get?: Record<string, any> | undefined;
|
|
87
|
+
update?: Record<string, any> | undefined;
|
|
88
|
+
create?: Record<string, any> | undefined;
|
|
89
|
+
destroy?: Record<string, any> | undefined;
|
|
90
|
+
} | undefined;
|
|
84
91
|
};
|
|
85
92
|
export default useTableProps;
|
|
@@ -167,7 +167,7 @@ export declare const getSettingKeyArrByMode: ({ filter, columnSetting, dataSourc
|
|
|
167
167
|
sort?: SortType | undefined;
|
|
168
168
|
mode: "" | "localStorage" | "remote";
|
|
169
169
|
currentViewMode: ModeType;
|
|
170
|
-
}) => ("
|
|
170
|
+
}) => ("view_mode" | "column_setting" | "order_by" | "group_by" | "gallery_setting" | "filter_setting")[];
|
|
171
171
|
export declare const omit: (obj: Record<string, any>, keys: string[]) => Record<string, any>;
|
|
172
172
|
export declare const stringify: (obj: Record<string, any>) => string;
|
|
173
173
|
export {};
|
|
@@ -65,7 +65,7 @@ declare const useTableProps: (props: UseTablePropsProps) => {
|
|
|
65
65
|
useCustomAction: boolean;
|
|
66
66
|
actionType: string;
|
|
67
67
|
openMode: "modal" | "drawer";
|
|
68
|
-
openContentSize: "small" | "
|
|
68
|
+
openContentSize: "small" | "large" | "middle";
|
|
69
69
|
openTitle: string;
|
|
70
70
|
key: string;
|
|
71
71
|
} | undefined;
|
|
@@ -81,5 +81,12 @@ declare const useTableProps: (props: UseTablePropsProps) => {
|
|
|
81
81
|
}[];
|
|
82
82
|
} | undefined;
|
|
83
83
|
onValuesChange?: ((changedValues: any, values: any) => void) | undefined;
|
|
84
|
+
extraParams?: {
|
|
85
|
+
list?: Record<string, any> | undefined;
|
|
86
|
+
get?: Record<string, any> | undefined;
|
|
87
|
+
update?: Record<string, any> | undefined;
|
|
88
|
+
create?: Record<string, any> | undefined;
|
|
89
|
+
destroy?: Record<string, any> | undefined;
|
|
90
|
+
} | undefined;
|
|
84
91
|
};
|
|
85
92
|
export default useTableProps;
|
|
@@ -167,7 +167,7 @@ export declare const getSettingKeyArrByMode: ({ filter, columnSetting, dataSourc
|
|
|
167
167
|
sort?: SortType | undefined;
|
|
168
168
|
mode: "" | "localStorage" | "remote";
|
|
169
169
|
currentViewMode: ModeType;
|
|
170
|
-
}) => ("
|
|
170
|
+
}) => ("view_mode" | "column_setting" | "order_by" | "group_by" | "gallery_setting" | "filter_setting")[];
|
|
171
171
|
export declare const omit: (obj: Record<string, any>, keys: string[]) => Record<string, any>;
|
|
172
172
|
export declare const stringify: (obj: Record<string, any>) => string;
|
|
173
173
|
export {};
|