@toolbox-web/grid 2.14.0 → 2.15.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/all.js +2 -2
- package/all.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/lib/core/constants.d.ts +6 -6
- package/lib/core/plugin/base-plugin.d.ts +1 -1
- package/lib/core/types.d.ts +125 -0
- package/lib/features/registry.js +1 -1
- package/lib/features/registry.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/editing/index.js +1 -1
- package/lib/plugins/editing/index.js.map +1 -1
- package/lib/plugins/editing/internal/helpers.d.ts +13 -0
- package/lib/plugins/export/index.js.map +1 -1
- package/lib/plugins/filtering/FilteringPlugin.d.ts +22 -2
- package/lib/plugins/filtering/index.js +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/PinnedRowsPlugin.d.ts +8 -0
- package/lib/plugins/pinned-rows/index.js +1 -1
- package/lib/plugins/pinned-rows/index.js.map +1 -1
- package/lib/plugins/pinned-rows/pinned-rows.d.ts +7 -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.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/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/pinned-rows.umd.js +1 -1
- package/umd/plugins/pinned-rows.umd.js.map +1 -1
|
@@ -61,8 +61,14 @@ export declare function filteredCountPanel(): PanelRender;
|
|
|
61
61
|
/**
|
|
62
62
|
* Renders a single {@link PanelSlot} as a `.tbw-pinned-rows` row with three zones.
|
|
63
63
|
* Returns `null` if no panel content was produced (all renders returned null).
|
|
64
|
+
*
|
|
65
|
+
* When `previousRow` is supplied and every per-renderer output is reference-equal
|
|
66
|
+
* to the outputs that built `previousRow`, the cached row is returned unchanged
|
|
67
|
+
* so the caller can skip DOM mutation. Built-in panels (e.g. row-count) create a
|
|
68
|
+
* fresh element on every call so this short-circuit is naturally bypassed for
|
|
69
|
+
* them; consumer-supplied panels that return a stable element benefit.
|
|
64
70
|
*/
|
|
65
|
-
export declare function renderPanelSlot(slot: PanelSlot, context: PinnedRowsContext): HTMLElement | null;
|
|
71
|
+
export declare function renderPanelSlot(slot: PanelSlot, context: PinnedRowsContext, previousRow?: HTMLElement | null): HTMLElement | null;
|
|
66
72
|
/**
|
|
67
73
|
* Renders a single {@link AggregationRowConfig} (slot variant) as one
|
|
68
74
|
* `.tbw-aggregation-rows` container holding one `.tbw-aggregation-row`.
|