simple-table-core 1.2.6 → 1.2.7
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 +18 -18
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import SimpleTable from "./components/simple-table/SimpleTable";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
2
|
+
import BoundingBox from "./types/BoundingBox";
|
|
3
|
+
import Cell from "./types/Cell";
|
|
4
|
+
import CellChangeProps from "./types/CellChangeProps";
|
|
5
|
+
import CellValue from "./types/CellValue";
|
|
6
|
+
import ColumnEditorPosition from "./types/ColumnEditorPosition";
|
|
7
|
+
import DragHandlerProps from "./types/DragHandlerProps";
|
|
8
8
|
import EnumOption from "./types/EnumOption";
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import
|
|
9
|
+
import HeaderObject, { Accessor } from "./types/HeaderObject";
|
|
10
|
+
import { AggregationConfig, AggregationType } from "./types/AggregationTypes";
|
|
11
|
+
import OnSortProps from "./types/OnSortProps";
|
|
12
|
+
import Row from "./types/Row";
|
|
13
|
+
import SharedTableProps from "./types/SharedTableProps";
|
|
14
|
+
import SortColumn from "./types/SortColumn";
|
|
15
|
+
import TableCellProps from "./types/TableCellProps";
|
|
16
|
+
import TableHeaderProps from "./types/TableHeaderProps";
|
|
17
17
|
import TableRefType from "./types/TableRefType";
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
18
|
+
import TableRowProps from "./types/TableRowProps";
|
|
19
|
+
import Theme from "./types/Theme";
|
|
20
|
+
import UpdateDataProps from "./types/UpdateCellProps";
|
|
21
21
|
import { FilterCondition, TableFilterState } from "./types/FilterTypes";
|
|
22
22
|
export { SimpleTable };
|
|
23
|
-
export type { AggregationConfig, AggregationType, BoundingBox, Cell, CellChangeProps, CellValue, ColumnEditorPosition, DragHandlerProps, EnumOption, FilterCondition, HeaderObject, OnSortProps, Row, SharedTableProps, SortColumn, TableCellProps, TableFilterState, TableHeaderProps, TableRefType, TableRowProps, Theme, UpdateDataProps, };
|
|
23
|
+
export type { Accessor, AggregationConfig, AggregationType, BoundingBox, Cell, CellChangeProps, CellValue, ColumnEditorPosition, DragHandlerProps, EnumOption, FilterCondition, HeaderObject, OnSortProps, Row, SharedTableProps, SortColumn, TableCellProps, TableFilterState, TableHeaderProps, TableRefType, TableRowProps, Theme, UpdateDataProps, };
|
package/package.json
CHANGED