ucol-ui 0.1.47 → 0.1.48
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/ucol-ui.d.ts +2 -2
- package/package.json +1 -1
package/dist/ucol-ui.d.ts
CHANGED
|
@@ -354,7 +354,7 @@ export declare interface DynamicCrudProps<T extends Record<string, unknown>> {
|
|
|
354
354
|
refresh?: boolean;
|
|
355
355
|
};
|
|
356
356
|
responsiveMode?: boolean;
|
|
357
|
-
colsInResponsiveMode?: ColumnsProps<T>[];
|
|
357
|
+
colsInResponsiveMode?: (ColumnsProps<T> | string)[];
|
|
358
358
|
}
|
|
359
359
|
|
|
360
360
|
export declare const DynamicForm: ({ mode, title, description, icon, layout, cols, fields, submitButtonText, submitEditText, onSubmit, initialData, customCols, }: DynamicFormProps) => default_2.ReactNode;
|
|
@@ -410,7 +410,7 @@ export declare interface DynamicTableProps<T = Record<string, unknown>> {
|
|
|
410
410
|
bulkUpload?: BulkUploadProps;
|
|
411
411
|
onBulkUpload?: () => void;
|
|
412
412
|
responsiveMode?: boolean;
|
|
413
|
-
colsInResponsiveMode?: ColumnsProps<T>[];
|
|
413
|
+
colsInResponsiveMode?: (ColumnsProps<T> | string)[];
|
|
414
414
|
}
|
|
415
415
|
|
|
416
416
|
export declare interface ExcelConfigProps<T = Record<string, unknown>> {
|