@toolbox-web/grid 2.9.0 → 2.11.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 +15 -15
- package/all.js +2 -2
- package/all.js.map +1 -1
- package/custom-elements.json +10 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/lib/core/grid.d.ts +13 -2
- package/lib/core/internal/shell-controller.d.ts +9 -2
- package/lib/core/internal/shell.d.ts +10 -0
- package/lib/core/plugin/index.d.ts +1 -0
- package/lib/core/plugin/types.d.ts +65 -1
- package/lib/core/types.d.ts +58 -3
- 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/editing/index.js.map +1 -1
- package/lib/plugins/export/index.js +1 -1
- package/lib/plugins/export/index.js.map +1 -1
- package/lib/plugins/export/types.d.ts +35 -5
- package/lib/plugins/filtering/index.js.map +1 -1
- package/lib/plugins/grouping-columns/index.js +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/print/index.js.map +1 -1
- package/lib/plugins/reorder-columns/index.js.map +1 -1
- package/lib/plugins/reorder-rows/index.js.map +1 -1
- package/lib/plugins/responsive/index.js.map +1 -1
- package/lib/plugins/row-drag-drop/index.js.map +1 -1
- package/lib/plugins/selection/index.js.map +1 -1
- package/lib/plugins/server-side/index.js.map +1 -1
- package/lib/plugins/sticky-rows/index.js.map +1 -1
- package/lib/plugins/tooltip/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 +1 -1
- package/lib/plugins/visibility/index.js.map +1 -1
- package/package.json +1 -1
- package/public.d.ts +1 -1
- package/umd/grid.all.umd.js +1 -1
- package/umd/grid.all.umd.js.map +1 -1
- package/umd/grid.umd.js +1 -1
- package/umd/grid.umd.js.map +1 -1
- package/umd/plugins/export.umd.js +1 -1
- package/umd/plugins/export.umd.js.map +1 -1
- package/umd/plugins/grouping-columns.umd.js +1 -1
- package/umd/plugins/grouping-columns.umd.js.map +1 -1
- package/umd/plugins/visibility.umd.js +1 -1
- package/umd/plugins/visibility.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolbox-web/grid",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "Zero-dependency, framework-agnostic data grid web component with virtualization, sorting, filtering, editing, and 20+ plugins. Works in vanilla JS, React, Vue, Angular, and any framework.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
package/public.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ export { builtInSort, defaultComparator } from './lib/core/internal/sorting';
|
|
|
182
182
|
export { CORE_CONSUMED_ADAPTER_METHODS } from './lib/core/adapter-conformance';
|
|
183
183
|
export { invalidateAccessorCache, resolveCellValue } from './lib/core/internal/value-accessor';
|
|
184
184
|
export { BaseGridPlugin } from './lib/core/plugin';
|
|
185
|
-
export type { AfterCellRenderContext, AfterRowRenderContext, CellMouseEvent, EventDefinition, PluginDependency, PluginManifest, PluginQuery, QueryDefinition, } from './lib/core/plugin';
|
|
185
|
+
export type { AfterCellRenderContext, AfterRowRenderContext, CellMouseEvent, CollectHeaderRowsContext, EventDefinition, HeaderRowCell, HeaderRowContribution, PluginDependency, PluginManifest, PluginQuery, QueryDefinition, } from './lib/core/plugin';
|
|
186
186
|
export { GridClasses, GridCSSVars, GridDataAttrs, GridSelectors } from './lib/core/constants';
|
|
187
187
|
export type { GridClassName, GridCSSVar, GridDataAttr } from './lib/core/constants';
|
|
188
188
|
/**
|