@toolbox-web/grid 1.6.2 → 1.8.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 +51 -15
- package/all.js +267 -158
- package/all.js.map +1 -1
- package/index.js +866 -722
- package/index.js.map +1 -1
- package/lib/core/grid.d.ts +68 -1
- package/lib/core/grid.d.ts.map +1 -1
- package/lib/core/internal/header.d.ts.map +1 -1
- package/lib/core/plugin/base-plugin.d.ts +182 -1
- package/lib/core/plugin/base-plugin.d.ts.map +1 -1
- package/lib/core/plugin/index.d.ts +1 -1
- package/lib/core/plugin/index.d.ts.map +1 -1
- package/lib/core/plugin/plugin-manager.d.ts +56 -1
- package/lib/core/plugin/plugin-manager.d.ts.map +1 -1
- package/lib/core/plugin/types.d.ts +36 -0
- package/lib/core/plugin/types.d.ts.map +1 -1
- package/lib/core/types.d.ts +1349 -31
- package/lib/core/types.d.ts.map +1 -1
- package/lib/plugins/clipboard/ClipboardPlugin.d.ts.map +1 -1
- package/lib/plugins/clipboard/index.js +140 -87
- package/lib/plugins/clipboard/index.js.map +1 -1
- package/lib/plugins/column-virtualization/index.js +64 -7
- package/lib/plugins/column-virtualization/index.js.map +1 -1
- package/lib/plugins/context-menu/ContextMenuPlugin.d.ts.map +1 -1
- package/lib/plugins/context-menu/index.js +123 -65
- package/lib/plugins/context-menu/index.js.map +1 -1
- package/lib/plugins/editing/EditingPlugin.d.ts +6 -1
- package/lib/plugins/editing/EditingPlugin.d.ts.map +1 -1
- package/lib/plugins/editing/index.js +95 -13
- package/lib/plugins/editing/index.js.map +1 -1
- package/lib/plugins/export/index.js +91 -34
- package/lib/plugins/export/index.js.map +1 -1
- package/lib/plugins/filtering/FilteringPlugin.d.ts +6 -1
- package/lib/plugins/filtering/FilteringPlugin.d.ts.map +1 -1
- package/lib/plugins/filtering/index.js +192 -123
- package/lib/plugins/filtering/index.js.map +1 -1
- package/lib/plugins/grouping-columns/index.js +57 -0
- package/lib/plugins/grouping-columns/index.js.map +1 -1
- package/lib/plugins/grouping-rows/GroupingRowsPlugin.d.ts +7 -2
- package/lib/plugins/grouping-rows/GroupingRowsPlugin.d.ts.map +1 -1
- package/lib/plugins/grouping-rows/index.js +142 -60
- package/lib/plugins/grouping-rows/index.js.map +1 -1
- package/lib/plugins/master-detail/index.js +69 -12
- package/lib/plugins/master-detail/index.js.map +1 -1
- package/lib/plugins/multi-sort/index.js +70 -13
- package/lib/plugins/multi-sort/index.js.map +1 -1
- package/lib/plugins/pinned-columns/PinnedColumnsPlugin.d.ts +3 -3
- package/lib/plugins/pinned-columns/PinnedColumnsPlugin.d.ts.map +1 -1
- package/lib/plugins/pinned-columns/index.js +106 -36
- package/lib/plugins/pinned-columns/index.js.map +1 -1
- package/lib/plugins/pinned-rows/index.js +57 -0
- package/lib/plugins/pinned-rows/index.js.map +1 -1
- package/lib/plugins/pivot/index.js +57 -0
- package/lib/plugins/pivot/index.js.map +1 -1
- package/lib/plugins/print/PrintPlugin.d.ts.map +1 -1
- package/lib/plugins/print/index.js +58 -1
- package/lib/plugins/print/index.js.map +1 -1
- package/lib/plugins/reorder/ReorderPlugin.d.ts.map +1 -1
- package/lib/plugins/reorder/column-drag.d.ts +2 -2
- package/lib/plugins/reorder/index.js +68 -17
- package/lib/plugins/reorder/index.js.map +1 -1
- package/lib/plugins/responsive/ResponsivePlugin.d.ts +6 -1
- package/lib/plugins/responsive/ResponsivePlugin.d.ts.map +1 -1
- package/lib/plugins/responsive/index.js +125 -54
- package/lib/plugins/responsive/index.js.map +1 -1
- package/lib/plugins/row-reorder/index.js +169 -112
- package/lib/plugins/row-reorder/index.js.map +1 -1
- package/lib/plugins/selection/SelectionPlugin.d.ts +14 -2
- package/lib/plugins/selection/SelectionPlugin.d.ts.map +1 -1
- package/lib/plugins/selection/index.js +84 -7
- package/lib/plugins/selection/index.js.map +1 -1
- package/lib/plugins/server-side/index.js +79 -22
- package/lib/plugins/server-side/index.js.map +1 -1
- package/lib/plugins/tree/TreePlugin.d.ts +7 -1
- package/lib/plugins/tree/TreePlugin.d.ts.map +1 -1
- package/lib/plugins/tree/index.js +140 -58
- package/lib/plugins/tree/index.js.map +1 -1
- package/lib/plugins/undo-redo/UndoRedoPlugin.d.ts +6 -1
- package/lib/plugins/undo-redo/UndoRedoPlugin.d.ts.map +1 -1
- package/lib/plugins/undo-redo/index.js +79 -10
- package/lib/plugins/undo-redo/index.js.map +1 -1
- package/lib/plugins/visibility/index.js +57 -0
- package/lib/plugins/visibility/index.js.map +1 -1
- package/package.json +1 -1
- package/public.d.ts +80 -2
- package/public.d.ts.map +1 -1
- package/umd/grid.all.umd.js +25 -25
- package/umd/grid.all.umd.js.map +1 -1
- package/umd/grid.umd.js +15 -15
- package/umd/grid.umd.js.map +1 -1
- package/umd/plugins/clipboard.umd.js +5 -5
- package/umd/plugins/clipboard.umd.js.map +1 -1
- package/umd/plugins/context-menu.umd.js +1 -1
- package/umd/plugins/context-menu.umd.js.map +1 -1
- package/umd/plugins/editing.umd.js +1 -1
- package/umd/plugins/editing.umd.js.map +1 -1
- package/umd/plugins/filtering.umd.js +1 -1
- package/umd/plugins/filtering.umd.js.map +1 -1
- package/umd/plugins/grouping-rows.umd.js +2 -2
- package/umd/plugins/grouping-rows.umd.js.map +1 -1
- package/umd/plugins/pinned-columns.umd.js +1 -1
- package/umd/plugins/pinned-columns.umd.js.map +1 -1
- package/umd/plugins/print.umd.js +1 -1
- package/umd/plugins/print.umd.js.map +1 -1
- package/umd/plugins/reorder.umd.js +1 -1
- package/umd/plugins/reorder.umd.js.map +1 -1
- package/umd/plugins/responsive.umd.js +1 -1
- package/umd/plugins/responsive.umd.js.map +1 -1
- package/umd/plugins/selection.umd.js +2 -2
- package/umd/plugins/selection.umd.js.map +1 -1
- package/umd/plugins/tree.umd.js +1 -1
- package/umd/plugins/tree.umd.js.map +1 -1
- package/umd/plugins/undo-redo.umd.js +1 -1
- package/umd/plugins/undo-redo.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toolbox-web/grid",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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
|
@@ -65,6 +65,30 @@ export declare function queryGrid<TRow = unknown>(selector: string, parent?: Par
|
|
|
65
65
|
/**
|
|
66
66
|
* Event name constants for DataGrid (public API).
|
|
67
67
|
*
|
|
68
|
+
* Use these constants instead of string literals for type-safe event handling.
|
|
69
|
+
*
|
|
70
|
+
* @example
|
|
71
|
+
* ```typescript
|
|
72
|
+
* import { DGEvents } from '@toolbox-web/grid';
|
|
73
|
+
*
|
|
74
|
+
* // Type-safe event listening
|
|
75
|
+
* grid.addEventListener(DGEvents.CELL_CLICK, (e) => {
|
|
76
|
+
* console.log('Cell clicked:', e.detail);
|
|
77
|
+
* });
|
|
78
|
+
*
|
|
79
|
+
* grid.addEventListener(DGEvents.SORT_CHANGE, (e) => {
|
|
80
|
+
* const { field, direction } = e.detail;
|
|
81
|
+
* console.log(`Sorted by ${field}`);
|
|
82
|
+
* });
|
|
83
|
+
*
|
|
84
|
+
* grid.addEventListener(DGEvents.CELL_COMMIT, (e) => {
|
|
85
|
+
* // Save edited value
|
|
86
|
+
* saveToServer(e.detail.row);
|
|
87
|
+
* });
|
|
88
|
+
* ```
|
|
89
|
+
*
|
|
90
|
+
* @see {@link PluginEvents} for plugin-specific events
|
|
91
|
+
* @see {@link DataGridEventMap} for event detail types
|
|
68
92
|
* @category Events
|
|
69
93
|
*/
|
|
70
94
|
export declare const DGEvents: {
|
|
@@ -86,12 +110,46 @@ export declare const DGEvents: {
|
|
|
86
110
|
/**
|
|
87
111
|
* Union type of all DataGrid event names.
|
|
88
112
|
*
|
|
113
|
+
* @example
|
|
114
|
+
* ```typescript
|
|
115
|
+
* function addListener(grid: DataGridElement, event: DGEventName): void {
|
|
116
|
+
* grid.addEventListener(event, (e) => console.log(e));
|
|
117
|
+
* }
|
|
118
|
+
* ```
|
|
119
|
+
*
|
|
120
|
+
* @see {@link DGEvents} for event constants
|
|
89
121
|
* @category Events
|
|
90
122
|
*/
|
|
91
123
|
export type DGEventName = (typeof DGEvents)[keyof typeof DGEvents];
|
|
92
124
|
/**
|
|
93
125
|
* Plugin event constants (mirrors DGEvents pattern).
|
|
94
126
|
*
|
|
127
|
+
* Events emitted by built-in plugins. Import the relevant plugin
|
|
128
|
+
* to access these events.
|
|
129
|
+
*
|
|
130
|
+
* @example
|
|
131
|
+
* ```typescript
|
|
132
|
+
* import { PluginEvents } from '@toolbox-web/grid';
|
|
133
|
+
* import { SelectionPlugin } from '@toolbox-web/grid/all';
|
|
134
|
+
*
|
|
135
|
+
* // Listen for selection changes
|
|
136
|
+
* grid.addEventListener(PluginEvents.SELECTION_CHANGE, (e) => {
|
|
137
|
+
* console.log('Selected rows:', e.detail.selectedRows);
|
|
138
|
+
* });
|
|
139
|
+
*
|
|
140
|
+
* // Listen for filter changes
|
|
141
|
+
* grid.addEventListener(PluginEvents.FILTER_CHANGE, (e) => {
|
|
142
|
+
* console.log('Active filters:', e.detail);
|
|
143
|
+
* });
|
|
144
|
+
*
|
|
145
|
+
* // Listen for tree expand/collapse
|
|
146
|
+
* grid.addEventListener(PluginEvents.TREE_EXPAND, (e) => {
|
|
147
|
+
* const { row, expanded } = e.detail;
|
|
148
|
+
* console.log(`Row ${expanded ? 'expanded' : 'collapsed'}`);
|
|
149
|
+
* });
|
|
150
|
+
* ```
|
|
151
|
+
*
|
|
152
|
+
* @see {@link DGEvents} for core grid events
|
|
95
153
|
* @category Events
|
|
96
154
|
*/
|
|
97
155
|
export declare const PluginEvents: {
|
|
@@ -116,16 +174,24 @@ export declare const PluginEvents: {
|
|
|
116
174
|
/**
|
|
117
175
|
* Union type of all plugin event names.
|
|
118
176
|
*
|
|
177
|
+
* @example
|
|
178
|
+
* ```typescript
|
|
179
|
+
* function addPluginListener(grid: DataGridElement, event: PluginEventName): void {
|
|
180
|
+
* grid.addEventListener(event, (e) => console.log(e));
|
|
181
|
+
* }
|
|
182
|
+
* ```
|
|
183
|
+
*
|
|
184
|
+
* @see {@link PluginEvents} for event constants
|
|
119
185
|
* @category Events
|
|
120
186
|
*/
|
|
121
187
|
export type PluginEventName = (typeof PluginEvents)[keyof typeof PluginEvents];
|
|
122
188
|
export type {
|
|
123
189
|
/** @deprecated Use CellActivateDetail instead */
|
|
124
|
-
ActivateCellDetail, AggregatorRef, AnimationConfig, AnimationMode, AnimationStyle, BaseColumnConfig, CellActivateDetail, CellActivateTrigger, CellChangeDetail, CellClickDetail, CellCommitDetail, CellRenderContext, ChangedRowsResetDetail, ColumnConfig, ColumnConfigMap, ColumnEditorContext, ColumnEditorSpec, ColumnResizeDetail, ColumnSortState, ColumnState, ColumnType, ColumnViewRenderer, DataGridCustomEvent, DataGridElement as DataGridElementInterface, DataGridEventMap, ExpandCollapseAnimation, ExternalMountEditorDetail, ExternalMountViewDetail, FitMode, FrameworkAdapter, GridColumnState, GridConfig, GridIcons, GridPlugin, HeaderCellContext, HeaderContentDefinition, HeaderLabelContext, HeaderLabelRenderer, HeaderRenderer, IconValue, InferredColumnResult, PrimitiveColumnType, PublicGrid, RowAnimationType, RowClickDetail, RowCommitDetail, RowGroupRenderConfig, RowUpdate, ShellConfig, ShellHeaderConfig, SortChangeDetail, SortHandler, SortState, ToolbarContentDefinition, ToolPanelConfig, ToolPanelDefinition, TypeDefault, UpdateSource, } from './lib/core/types';
|
|
190
|
+
ActivateCellDetail, AggregatorRef, AnimationConfig, AnimationMode, AnimationStyle, BaseColumnConfig, CellActivateDetail, CellActivateTrigger, CellChangeDetail, CellClickDetail, CellCommitDetail, CellRenderContext, ChangedRowsResetDetail, ColumnConfig, ColumnConfigMap, ColumnEditorContext, ColumnEditorSpec, ColumnResizeDetail, ColumnSortState, ColumnState, ColumnType, ColumnViewRenderer, DataGridCustomEvent, DataGridElement as DataGridElementInterface, DataGridEventMap, ExpandCollapseAnimation, ExternalMountEditorDetail, ExternalMountViewDetail, FitMode, FrameworkAdapter, GridColumnState, GridConfig, GridIcons, GridPlugin, HeaderCellContext, HeaderContentDefinition, HeaderLabelContext, HeaderLabelRenderer, HeaderRenderer, IconValue, InferredColumnResult, LoadingContext, LoadingRenderer, LoadingSize, PrimitiveColumnType, PublicGrid, RowAnimationType, RowClickDetail, RowCommitDetail, RowGroupRenderConfig, RowUpdate, ShellConfig, ShellHeaderConfig, SortChangeDetail, SortHandler, SortState, ToolbarContentDefinition, ToolPanelConfig, ToolPanelDefinition, TypeDefault, UpdateSource, } from './lib/core/types';
|
|
125
191
|
export { DEFAULT_ANIMATION_CONFIG, DEFAULT_GRID_ICONS, FitModeEnum } from './lib/core/types';
|
|
126
192
|
export { builtInSort, defaultComparator } from './lib/core/internal/sorting';
|
|
127
193
|
export { BaseGridPlugin, PLUGIN_QUERIES } from './lib/core/plugin';
|
|
128
|
-
export type { AfterCellRenderContext, AfterRowRenderContext, PluginQuery } from './lib/core/plugin';
|
|
194
|
+
export type { AfterCellRenderContext, AfterRowRenderContext, EventDefinition, PluginManifest, PluginQuery, QueryDefinition, } from './lib/core/plugin';
|
|
129
195
|
export { GridClasses, GridCSSVars, GridDataAttrs, GridSelectors } from './lib/core/constants';
|
|
130
196
|
export type { GridClassName, GridCSSVar, GridDataAttr } from './lib/core/constants';
|
|
131
197
|
/**
|
|
@@ -157,54 +223,64 @@ export type { GridClassName, GridCSSVar, GridDataAttr } from './lib/core/constan
|
|
|
157
223
|
/**
|
|
158
224
|
* Column configuration with internal cache properties.
|
|
159
225
|
* Extends the public ColumnConfig with compiled template caches (__compiledView, __viewTemplate, etc.)
|
|
226
|
+
* @category Plugin Development
|
|
160
227
|
* @internal
|
|
161
228
|
*/
|
|
162
229
|
export type { ColumnInternal } from './lib/core/types';
|
|
163
230
|
/**
|
|
164
231
|
* Compiled template function with __blocked property for error handling.
|
|
232
|
+
* @category Plugin Development
|
|
165
233
|
* @internal
|
|
166
234
|
*/
|
|
167
235
|
export type { CompiledViewFunction } from './lib/core/types';
|
|
168
236
|
/**
|
|
169
237
|
* Full internal grid interface extending PublicGrid with internal state.
|
|
170
238
|
* Provides typed access to _columns, _rows, virtualization state, etc.
|
|
239
|
+
* @category Plugin Development
|
|
171
240
|
* @internal
|
|
172
241
|
*/
|
|
173
242
|
export type { InternalGrid } from './lib/core/types';
|
|
174
243
|
/**
|
|
175
244
|
* Cell context for renderer/editor operations.
|
|
245
|
+
* @category Plugin Development
|
|
176
246
|
* @internal
|
|
177
247
|
*/
|
|
178
248
|
export type { CellContext } from './lib/core/types';
|
|
179
249
|
/**
|
|
180
250
|
* Editor execution context extending CellContext with commit/cancel functions.
|
|
251
|
+
* @category Plugin Development
|
|
181
252
|
* @internal
|
|
182
253
|
*/
|
|
183
254
|
export type { EditorExecContext } from './lib/core/types';
|
|
184
255
|
/**
|
|
185
256
|
* Template evaluation context for dynamic templates.
|
|
257
|
+
* @category Plugin Development
|
|
186
258
|
* @internal
|
|
187
259
|
*/
|
|
188
260
|
export type { EvalContext } from './lib/core/types';
|
|
189
261
|
/**
|
|
190
262
|
* Column resize controller interface.
|
|
263
|
+
* @category Plugin Development
|
|
191
264
|
* @internal
|
|
192
265
|
*/
|
|
193
266
|
export type { ResizeController } from './lib/core/types';
|
|
194
267
|
/**
|
|
195
268
|
* Row virtualization state interface.
|
|
269
|
+
* @category Plugin Development
|
|
196
270
|
* @internal
|
|
197
271
|
*/
|
|
198
272
|
export type { VirtualState } from './lib/core/types';
|
|
199
273
|
/**
|
|
200
274
|
* Row element with internal editing state cache.
|
|
201
275
|
* Used for tracking editing cell count without querySelector.
|
|
276
|
+
* @category Plugin Development
|
|
202
277
|
* @internal
|
|
203
278
|
*/
|
|
204
279
|
export type { RowElementInternal } from './lib/core/types';
|
|
205
280
|
/**
|
|
206
281
|
* Union type for input-like elements that have a `value` property.
|
|
207
282
|
* Covers standard form elements and custom elements with value semantics.
|
|
283
|
+
* @category Plugin Development
|
|
208
284
|
* @internal
|
|
209
285
|
*/
|
|
210
286
|
export type { InputLikeElement } from './lib/core/types';
|
|
@@ -221,12 +297,14 @@ export type { InputLikeElement } from './lib/core/types';
|
|
|
221
297
|
* }
|
|
222
298
|
* }
|
|
223
299
|
* ```
|
|
300
|
+
* @category Plugin Development
|
|
224
301
|
* @internal
|
|
225
302
|
*/
|
|
226
303
|
export type AsInternalGrid<T = unknown> = import('./lib/core/types').InternalGrid<T>;
|
|
227
304
|
/**
|
|
228
305
|
* Render phase enum for debugging and understanding the render pipeline.
|
|
229
306
|
* Higher phases include all lower phase work.
|
|
307
|
+
* @category Plugin Development
|
|
230
308
|
*/
|
|
231
309
|
export { RenderPhase } from './lib/core/internal/render-scheduler';
|
|
232
310
|
//# sourceMappingURL=public.d.ts.map
|
package/public.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../libs/grid/src/public.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,EAAE,eAAe,EAAE,eAAe,IAAI,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAElF;;;;;;;;;;;GAWG;AACH,YAAY,EAAE,eAAe,IAAI,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAGlE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,kBAAkB,CAAC;AAGnD;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,UAAU,CAAC,IAAI,GAAG,OAAO,EAAE,MAAM,CAAC,EAAE,OAAO,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,GAAG,eAAe,CAAC,IAAI,CAAC,CAMpG;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,SAAS,CAAC,IAAI,GAAG,OAAO,EACtC,QAAQ,EAAE,MAAM,EAChB,MAAM,GAAE,UAAqB,GAC5B,eAAe,CAAC,IAAI,CAAC,GAAG,IAAI,CAE9B;AAGD
|
|
1
|
+
{"version":3,"file":"public.d.ts","sourceRoot":"","sources":["../../../libs/grid/src/public.ts"],"names":[],"mappings":"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"}
|