@toolbox-web/grid 2.10.0 → 2.11.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 +15 -15
- package/all.js +1 -1
- 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/types.d.ts +4 -1
- package/lib/core/types.d.ts +4 -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.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/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/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/visibility.umd.js +1 -1
- package/umd/plugins/visibility.umd.js.map +1 -1
package/custom-elements.json
CHANGED
|
@@ -1146,6 +1146,16 @@
|
|
|
1146
1146
|
"text": "void"
|
|
1147
1147
|
}
|
|
1148
1148
|
},
|
|
1149
|
+
"parameters": [
|
|
1150
|
+
{
|
|
1151
|
+
"name": "panelId",
|
|
1152
|
+
"optional": true,
|
|
1153
|
+
"type": {
|
|
1154
|
+
"text": "string"
|
|
1155
|
+
},
|
|
1156
|
+
"description": "Optional ID of the section to expand on open. When provided,\ntakes precedence over `shell.toolPanel.defaultOpen`. If the panel is already\nopen with a different section expanded, switches to the requested section.\nIf the panel ID is not registered, a warning is emitted and the call falls\nback to default behavior (auto-expand `defaultOpen` or first registered panel)."
|
|
1157
|
+
}
|
|
1158
|
+
],
|
|
1149
1159
|
"description": "Open the tool panel sidebar.\n\nThe tool panel displays an accordion view with all registered panel sections.\nEach section can be expanded/collapsed independently."
|
|
1150
1160
|
},
|
|
1151
1161
|
{
|