@topgrid/grid 0.1.0 → 0.2.0
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/README.md +5 -5
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
```ts
|
|
38
38
|
// Single entry — convenient for app-side consumers using both MIT and Pro features.
|
|
39
39
|
import { Grid, createColumns, NumberCell, StatusBadgeCell, setLicenseKey } from '@topgrid/grid';
|
|
40
|
-
import type { GridProps,
|
|
40
|
+
import type { GridProps, TopgridColumnDef } from '@topgrid/grid';
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
```ts
|
|
@@ -80,14 +80,14 @@ canonicalizing exports:
|
|
|
80
80
|
| Identifier | Canonical source | Reason |
|
|
81
81
|
|------------|------------------|--------|
|
|
82
82
|
| `defaultRendererRegistry`, `registerRenderer` | `@topgrid/grid-renderers` | grid-core's are placeholder fallback (ADR-002 D-3A) |
|
|
83
|
-
| `
|
|
83
|
+
| `TopgridColumnDef` (type) | `@topgrid/grid-core` | grid-pro-datamap's alias is `@deprecated` (ADR-006) |
|
|
84
84
|
| `GroupedHeaderGrid`, `GroupedHeaderGridProps` | `@topgrid/grid-pro-header` | grid-core's `legacy/` are C-6 alias |
|
|
85
85
|
|
|
86
86
|
The 6 `@deprecated` APIs from `@topgrid/grid-core` (per ADR-013) are **not** re-exported
|
|
87
87
|
through the facade:
|
|
88
88
|
|
|
89
|
-
- `
|
|
90
|
-
- `createGroupedColumns`, `
|
|
89
|
+
- `createTopgridColumnHelper`
|
|
90
|
+
- `createGroupedColumns`, `TopgridColumnGroup`
|
|
91
91
|
- `useColumnPersistence`
|
|
92
92
|
- `ColumnVisibilityMenu`, `ColumnVisibilityMenuProps`
|
|
93
93
|
|
|
@@ -112,4 +112,4 @@ the four MIT packages individually — see [MIT-only consumption](#mit-only-cons
|
|
|
112
112
|
|
|
113
113
|
---
|
|
114
114
|
|
|
115
|
-
[Documentation](https://
|
|
115
|
+
[Documentation](https://topgrid.platree.com) | [API Reference](https://topgrid.platree.com/api)
|
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { BaseGrid, BaseGridProps, ColumnInfo, ColumnPersistenceOptions, ColumnPinGrid, ColumnPinGridProps, DragThProps, DropIndicator, Grid, GridColumnResizeMode, GridHandle, GridPagination, GridPaginationOptions, GridPaginationProps, GridProps, GridRowSelectionOptions, GridScrollToOptions, GridState, GridStateKey, GridStateValues, PageSizeSelect, PageSizeSelectProps, PaginationMode, PersistTarget, RendererFn, RendererRegistry, RowSelectionMode, SortBadge, SortBadgeProps, SortClearButton, SortClearButtonProps,
|
|
1
|
+
export { BaseGrid, BaseGridProps, ColumnInfo, ColumnPersistenceOptions, ColumnPinGrid, ColumnPinGridProps, DragThProps, DropIndicator, Grid, GridColumnResizeMode, GridHandle, GridPagination, GridPaginationOptions, GridPaginationProps, GridProps, GridRowSelectionOptions, GridScrollToOptions, GridState, GridStateKey, GridStateValues, PageSizeSelect, PageSizeSelectProps, PaginationMode, PersistTarget, RendererFn, RendererRegistry, RowSelectionMode, SortBadge, SortBadgeProps, SortClearButton, SortClearButtonProps, TopgridColumnDef, TopgridColumnType, TotalCount, TotalCountProps, TreeGrid, TreeGridProps, UseColumnDragProps, UseColumnDragReturn, UseColumnOrderPersistProps, UseGridStateOptions, UseStoragePersistOptions, UseUrlSyncOptions, VirtualGrid, VirtualGridProps, createColumns, useColumnDrag, useColumnOrderPersist, useGridState, useStoragePersist, useUrlSync } from '@topgrid/grid-core';
|
|
2
2
|
export * from '@topgrid/grid-renderers';
|
|
3
3
|
export * from '@topgrid/grid-features';
|
|
4
4
|
export * from '@topgrid/grid-export';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { BaseGrid, BaseGridProps, ColumnInfo, ColumnPersistenceOptions, ColumnPinGrid, ColumnPinGridProps, DragThProps, DropIndicator, Grid, GridColumnResizeMode, GridHandle, GridPagination, GridPaginationOptions, GridPaginationProps, GridProps, GridRowSelectionOptions, GridScrollToOptions, GridState, GridStateKey, GridStateValues, PageSizeSelect, PageSizeSelectProps, PaginationMode, PersistTarget, RendererFn, RendererRegistry, RowSelectionMode, SortBadge, SortBadgeProps, SortClearButton, SortClearButtonProps,
|
|
1
|
+
export { BaseGrid, BaseGridProps, ColumnInfo, ColumnPersistenceOptions, ColumnPinGrid, ColumnPinGridProps, DragThProps, DropIndicator, Grid, GridColumnResizeMode, GridHandle, GridPagination, GridPaginationOptions, GridPaginationProps, GridProps, GridRowSelectionOptions, GridScrollToOptions, GridState, GridStateKey, GridStateValues, PageSizeSelect, PageSizeSelectProps, PaginationMode, PersistTarget, RendererFn, RendererRegistry, RowSelectionMode, SortBadge, SortBadgeProps, SortClearButton, SortClearButtonProps, TopgridColumnDef, TopgridColumnType, TotalCount, TotalCountProps, TreeGrid, TreeGridProps, UseColumnDragProps, UseColumnDragReturn, UseColumnOrderPersistProps, UseGridStateOptions, UseStoragePersistOptions, UseUrlSyncOptions, VirtualGrid, VirtualGridProps, createColumns, useColumnDrag, useColumnOrderPersist, useGridState, useStoragePersist, useUrlSync } from '@topgrid/grid-core';
|
|
2
2
|
export * from '@topgrid/grid-renderers';
|
|
3
3
|
export * from '@topgrid/grid-features';
|
|
4
4
|
export * from '@topgrid/grid-export';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@topgrid/grid",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "SEE LICENSE IN EULA",
|
|
6
6
|
"publishConfig": {
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"README.md"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@topgrid/grid-core": "0.
|
|
31
|
-
"@topgrid/grid-
|
|
32
|
-
"@topgrid/grid-
|
|
33
|
-
"@topgrid/grid-
|
|
34
|
-
"@topgrid/grid-
|
|
35
|
-
"@topgrid/grid-
|
|
36
|
-
"@topgrid/grid-pro-datamap": "0.
|
|
37
|
-
"@topgrid/grid-pro-
|
|
38
|
-
"@topgrid/grid-pro-
|
|
39
|
-
"@topgrid/grid-pro-
|
|
40
|
-
"@topgrid/grid-pro-
|
|
41
|
-
"@topgrid/grid-pro-master": "0.
|
|
30
|
+
"@topgrid/grid-core": "0.2.0",
|
|
31
|
+
"@topgrid/grid-renderers": "0.2.0",
|
|
32
|
+
"@topgrid/grid-export": "0.3.0",
|
|
33
|
+
"@topgrid/grid-license": "0.2.0",
|
|
34
|
+
"@topgrid/grid-pro-tracking": "0.2.0",
|
|
35
|
+
"@topgrid/grid-features": "0.4.0",
|
|
36
|
+
"@topgrid/grid-pro-datamap": "0.3.0",
|
|
37
|
+
"@topgrid/grid-pro-merging": "0.2.0",
|
|
38
|
+
"@topgrid/grid-pro-header": "0.2.0",
|
|
39
|
+
"@topgrid/grid-pro-agg": "0.2.0",
|
|
40
|
+
"@topgrid/grid-pro-range": "0.2.0",
|
|
41
|
+
"@topgrid/grid-pro-master": "0.2.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@tanstack/react-table": "^8.0.0",
|