@toolbox-web/grid 0.1.1 → 0.2.1
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/all.d.ts +8 -0
- package/all.js +1671 -1140
- package/all.js.map +1 -1
- package/index.d.ts +4 -163
- package/index.js +803 -1338
- package/index.js.map +1 -1
- package/lib/plugins/clipboard/index.js.map +1 -1
- package/lib/plugins/column-virtualization/index.js.map +1 -1
- package/lib/plugins/context-menu/index.js.map +1 -1
- package/lib/plugins/export/index.js.map +1 -1
- package/lib/plugins/filtering/index.js.map +1 -1
- package/lib/plugins/grouping-columns/index.js.map +1 -1
- package/lib/plugins/grouping-rows/index.js.map +1 -1
- package/lib/plugins/master-detail/index.js.map +1 -1
- package/lib/plugins/multi-sort/index.js.map +1 -1
- package/lib/plugins/pinned-columns/index.js.map +1 -1
- package/lib/plugins/pinned-rows/index.js.map +1 -1
- package/lib/plugins/pivot/index.js.map +1 -1
- package/lib/plugins/reorder/index.js.map +1 -1
- package/lib/plugins/selection/index.js +48 -50
- package/lib/plugins/selection/index.js.map +1 -1
- package/lib/plugins/server-side/index.js.map +1 -1
- package/lib/plugins/tree/index.js.map +1 -1
- package/lib/plugins/undo-redo/index.js.map +1 -1
- package/lib/plugins/visibility/index.js.map +1 -1
- package/package.json +1 -1
- package/umd/grid.all.umd.js +12 -12
- package/umd/grid.all.umd.js.map +1 -1
- package/umd/grid.umd.js +13 -13
- package/umd/grid.umd.js.map +1 -1
- package/umd/plugins/selection.umd.js +1 -1
- package/umd/plugins/selection.umd.js.map +1 -1
- package/custom-elements.json +0 -1934
package/all.d.ts
CHANGED
|
@@ -2983,6 +2983,10 @@ export declare interface GridElement {
|
|
|
2983
2983
|
rows: any[];
|
|
2984
2984
|
columns: ColumnConfig[];
|
|
2985
2985
|
gridConfig: any;
|
|
2986
|
+
/** Current focused row index */
|
|
2987
|
+
focusRow: number;
|
|
2988
|
+
/** Current focused column index */
|
|
2989
|
+
focusCol: number;
|
|
2986
2990
|
/** AbortSignal that is aborted when the grid disconnects from the DOM */
|
|
2987
2991
|
disconnectSignal: AbortSignal;
|
|
2988
2992
|
requestRender(): void;
|
|
@@ -2998,6 +3002,10 @@ declare interface GridElement_2 {
|
|
|
2998
3002
|
rows: any[];
|
|
2999
3003
|
columns: ColumnConfig_2[];
|
|
3000
3004
|
gridConfig: any;
|
|
3005
|
+
/** Current focused row index */
|
|
3006
|
+
focusRow: number;
|
|
3007
|
+
/** Current focused column index */
|
|
3008
|
+
focusCol: number;
|
|
3001
3009
|
/** AbortSignal that is aborted when the grid disconnects from the DOM */
|
|
3002
3010
|
disconnectSignal: AbortSignal;
|
|
3003
3011
|
requestRender(): void;
|