fui-material 2.6.9 → 2.6.11
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/f-ui-kit.es.js +30 -17
- package/dist/f-ui-kit.es.js.map +1 -1
- package/dist/f-ui-kit.umd.js +2 -2
- package/dist/f-ui-kit.umd.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/types/material/FPagination/hooks/usePagination.d.ts +1 -1
- package/dist/types/material/TableComponents/FTableRow/FTableRow.d.ts +9 -3
- package/package.json +2 -2
|
@@ -67,5 +67,5 @@ interface IProps {
|
|
|
67
67
|
* });
|
|
68
68
|
* // returns [1, 2, 3]
|
|
69
69
|
*/
|
|
70
|
-
export declare const usePagination: ({ totalCount, pageSize, siblingCount, currentPage }: IProps) => (string | number)[]
|
|
70
|
+
export declare const usePagination: ({ totalCount, pageSize, siblingCount, currentPage }: IProps) => (string | number)[];
|
|
71
71
|
export {};
|
|
@@ -21,6 +21,12 @@ export interface IFTableRow extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
|
21
21
|
* @default "left"
|
|
22
22
|
*/
|
|
23
23
|
textAlignment?: "left" | "right" | "center" | "justify";
|
|
24
|
+
/**
|
|
25
|
+
* Отключает эффект ховера (hover) для этой строки.
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @default false
|
|
28
|
+
*/
|
|
29
|
+
disableHover?: boolean;
|
|
24
30
|
}
|
|
25
31
|
/**
|
|
26
32
|
* Компонент FTableRow представляет собой строку таблицы (`<tr>`).
|
|
@@ -28,9 +34,9 @@ export interface IFTableRow extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
|
28
34
|
*
|
|
29
35
|
* @component
|
|
30
36
|
* @example
|
|
31
|
-
* <FTableRow
|
|
32
|
-
*
|
|
33
|
-
*
|
|
37
|
+
* <FTableRow>
|
|
38
|
+
* <td>Ячейка 1</td>
|
|
39
|
+
* <td>Ячейка 2</td>
|
|
34
40
|
* </FTableRow>
|
|
35
41
|
*
|
|
36
42
|
* @param {IFTableRow} props - Пропсы компонента.
|