backend.ai-ui 25.16.0-canary-42aaf4815-20251113 → 25.16.0-canary-38f1cb897-20251119
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/backend.ai-ui.js +4027 -4009
- package/dist/backend.ai-ui.js.map +1 -1
- package/dist/components/Table/BAITable.d.ts +2 -1
- package/package.json +1 -1
|
@@ -98,6 +98,7 @@ export interface BAITableProps<RecordType extends AnyObject> extends BAITableBas
|
|
|
98
98
|
tableSettings?: BAITableSettings;
|
|
99
99
|
/** Array of column configurations using BAIColumnType */
|
|
100
100
|
columns?: BAIColumnsType<RecordType>;
|
|
101
|
+
spinnerLoading?: boolean;
|
|
101
102
|
}
|
|
102
103
|
/**
|
|
103
104
|
* BAITable - Enhanced table component with column management and sorting
|
|
@@ -129,5 +130,5 @@ export interface BAITableProps<RecordType extends AnyObject> extends BAITableBas
|
|
|
129
130
|
* />
|
|
130
131
|
* ```
|
|
131
132
|
*/
|
|
132
|
-
declare const BAITable: <RecordType extends object = any>({ resizable, columns, components, loading, order, onChangeOrder, tableSettings, ...tableProps }: BAITableProps<RecordType>) => React.ReactElement;
|
|
133
|
+
declare const BAITable: <RecordType extends object = any>({ resizable, columns, components, loading, spinnerLoading, order, onChangeOrder, tableSettings, ...tableProps }: BAITableProps<RecordType>) => React.ReactElement;
|
|
133
134
|
export default BAITable;
|