fis-component 0.0.53 → 0.0.54
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Table/Sorter/FISSorter.d.ts +3 -3
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Table/Sorter/FISSorter.d.ts +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ComponentType } from "react";
|
|
2
2
|
interface FISSorterProps {
|
|
3
3
|
columnKey: string;
|
|
4
|
-
onSort: (columnKey
|
|
4
|
+
onSort: (columnKey?: string, order?: string) => void;
|
|
5
5
|
sortedInfo: {
|
|
6
|
-
columnKey
|
|
7
|
-
order
|
|
6
|
+
columnKey?: string;
|
|
7
|
+
order?: string;
|
|
8
8
|
};
|
|
9
9
|
UpIcon?: ComponentType<{
|
|
10
10
|
style?: React.CSSProperties;
|
package/dist/index.d.ts
CHANGED
|
@@ -4098,10 +4098,10 @@ declare const FISTableCell: React$1.ForwardRefExoticComponent<ColumnCellProps &
|
|
|
4098
4098
|
|
|
4099
4099
|
interface FISSorterProps {
|
|
4100
4100
|
columnKey: string;
|
|
4101
|
-
onSort: (columnKey
|
|
4101
|
+
onSort: (columnKey?: string, order?: string) => void;
|
|
4102
4102
|
sortedInfo: {
|
|
4103
|
-
columnKey
|
|
4104
|
-
order
|
|
4103
|
+
columnKey?: string;
|
|
4104
|
+
order?: string;
|
|
4105
4105
|
};
|
|
4106
4106
|
UpIcon?: ComponentType<{
|
|
4107
4107
|
style?: React.CSSProperties;
|