prlg-ui 1.8.6 → 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 +4 -2
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +1568 -1535
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1237,8 +1237,8 @@ declare interface ICalendarProps {
|
|
|
1237
1237
|
}
|
|
1238
1238
|
|
|
1239
1239
|
declare type ICalendarResult = {
|
|
1240
|
-
to: string;
|
|
1241
|
-
from: string;
|
|
1240
|
+
to: string | null;
|
|
1241
|
+
from: string | null;
|
|
1242
1242
|
};
|
|
1243
1243
|
|
|
1244
1244
|
declare type ICalendarResultValue = string | ICalendarResult | null;
|
|
@@ -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';
|