simple-table-core 0.7.3 → 0.7.5
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 +16 -2
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
import SimpleTable from "./components/SimpleTable/SimpleTable";
|
|
2
|
-
import type
|
|
2
|
+
import type BoundingBox from "./types/BoundingBox";
|
|
3
|
+
import type Cell from "./types/Cell";
|
|
4
|
+
import type CellChangeProps from "./types/CellChangeProps";
|
|
5
|
+
import type CellValue from "./types/CellValue";
|
|
6
|
+
import type DragHandlerProps from "./types/DragHandlerProps";
|
|
7
|
+
import type GroupedRow from "./types/GroupedRow";
|
|
3
8
|
import type HeaderObject from "./types/HeaderObject";
|
|
9
|
+
import type OnSortProps from "./types/OnSortProps";
|
|
10
|
+
import type Row from "./types/Row";
|
|
11
|
+
import type SharedTableProps from "./types/SharedTableProps";
|
|
12
|
+
import type SortConfig from "./types/SortConfig";
|
|
13
|
+
import type TableBodyProps from "./types/TableBodyProps";
|
|
14
|
+
import type TableCellProps from "./types/TableCellProps";
|
|
15
|
+
import type TableHeaderProps from "./types/TableHeaderProps";
|
|
16
|
+
import type TableRowProps from "./types/TableRowProps";
|
|
17
|
+
import type Theme from "./types/Theme";
|
|
4
18
|
export { SimpleTable };
|
|
5
|
-
export type {
|
|
19
|
+
export type { BoundingBox, Cell, CellChangeProps, CellValue, DragHandlerProps, GroupedRow, HeaderObject, OnSortProps, Row, SharedTableProps, SortConfig, TableBodyProps, TableCellProps, TableHeaderProps, TableRowProps, Theme, };
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simple-table-core",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.5",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"import": "./dist/index.es.js",
|
|
10
|
-
"require": "./dist/index.js"
|
|
10
|
+
"require": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
11
12
|
}
|
|
12
13
|
},
|
|
13
14
|
"license": "MIT",
|