prlg-ui 1.8.7 → 1.8.8
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/index.d.ts +2 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1171 -1140
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1638,6 +1638,8 @@ declare type TableProps = {
|
|
|
1638
1638
|
maxHeight?: string | number | undefined;
|
|
1639
1639
|
/** Функция для применения стилей к строке таблицы */
|
|
1640
1640
|
rowStyle?: (data: DataItem) => CSSProperties;
|
|
1641
|
+
/** Состояние загрузки */
|
|
1642
|
+
loading?: boolean;
|
|
1641
1643
|
};
|
|
1642
1644
|
|
|
1643
1645
|
declare type TableRowGroupMode = 'rowspan' | 'subheader';
|