@toolbox-web/grid 0.1.0 → 0.1.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/README.md +1 -1
- package/all.d.ts +5 -0
- package/all.js +370 -413
- package/all.js.map +1 -1
- package/index.js +1334 -1223
- package/index.js.map +1 -1
- package/lib/plugins/context-menu/index.js +35 -78
- package/lib/plugins/context-menu/index.js.map +1 -1
- package/lib/plugins/master-detail/index.js +1 -1
- package/lib/plugins/master-detail/index.js.map +1 -1
- package/lib/plugins/pinned-rows/index.js +8 -8
- package/lib/plugins/pinned-rows/index.js.map +1 -1
- package/lib/plugins/pivot/index.js +160 -160
- package/lib/plugins/pivot/index.js.map +1 -1
- package/lib/plugins/selection/index.js +84 -61
- package/lib/plugins/selection/index.js.map +1 -1
- package/package.json +1 -1
- package/umd/grid.all.umd.js +27 -78
- package/umd/grid.all.umd.js.map +1 -1
- package/umd/grid.umd.js +23 -23
- package/umd/grid.umd.js.map +1 -1
- package/umd/plugins/context-menu.umd.js +1 -52
- package/umd/plugins/context-menu.umd.js.map +1 -1
- package/umd/plugins/master-detail.umd.js +1 -1
- package/umd/plugins/master-detail.umd.js.map +1 -1
- package/umd/plugins/pinned-rows.umd.js +1 -1
- package/umd/plugins/pinned-rows.umd.js.map +1 -1
- package/umd/plugins/pivot.umd.js +1 -1
- package/umd/plugins/pivot.umd.js.map +1 -1
- package/umd/plugins/selection.umd.js +1 -1
- package/umd/plugins/selection.umd.js.map +1 -1
package/README.md
CHANGED
|
@@ -506,7 +506,7 @@ For architecture details, rendering pipeline, and plugin development, see [ARCHI
|
|
|
506
506
|
This grid is built and maintained by a single developer in spare time. If it saves you time or money, consider sponsoring to keep development going:
|
|
507
507
|
|
|
508
508
|
[](https://github.com/sponsors/OysteinAmundsen)
|
|
509
|
-
[](https://patreon.com/
|
|
509
|
+
[](https://www.patreon.com/c/OysteinAmundsen)
|
|
510
510
|
|
|
511
511
|
**What sponsorship enables:**
|
|
512
512
|
|
package/all.d.ts
CHANGED
|
@@ -1959,6 +1959,11 @@ export declare class ContextMenuPlugin extends BaseGridPlugin_2<ContextMenuConfi
|
|
|
1959
1959
|
attach(grid: GridElement_2): void;
|
|
1960
1960
|
detach(): void;
|
|
1961
1961
|
private installGlobalHandlers;
|
|
1962
|
+
/**
|
|
1963
|
+
* Clean up global handlers when the last instance detaches.
|
|
1964
|
+
* Uses reference counting to ensure handlers persist while any grid uses the plugin.
|
|
1965
|
+
*/
|
|
1966
|
+
private uninstallGlobalHandlers;
|
|
1962
1967
|
afterRender(): void;
|
|
1963
1968
|
/**
|
|
1964
1969
|
* Programmatically show the context menu at the specified position.
|