@epam/statgpt-conversation-view 0.4.0-rc.50 → 0.4.0-rc.51
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/components/AdvancedView/TableSettings/AgGridColumnPanel/helpers/draggableListUtils.d.ts +4 -3
- package/index.js +6 -6
- package/index.mjs +4509 -4391
- package/models/filters.d.ts +1 -0
- package/package.json +6 -6
- package/utils/filters.d.ts +1 -0
- package/utils/get-filled-filters.d.ts +1 -0
- package/utils/multiple-filters.d.ts +6 -5
package/components/AdvancedView/TableSettings/AgGridColumnPanel/helpers/draggableListUtils.d.ts
CHANGED
|
@@ -13,9 +13,10 @@ export declare function getItemNodeByPath(nodes: DraggableListNode[], path: read
|
|
|
13
13
|
* becoming completely empty.
|
|
14
14
|
*
|
|
15
15
|
* A leaf is considered visible when `isChecked` is not explicitly `false`.
|
|
16
|
-
* When exactly one visible leaf remains in a group,
|
|
17
|
-
* with `checkable: false
|
|
18
|
-
*
|
|
16
|
+
* When exactly one visible leaf remains in a group, the visible leaf is
|
|
17
|
+
* returned with `checkable: false`, and all item leaves in that group are
|
|
18
|
+
* returned with `draggable: false`. Groups with zero or two or more visible
|
|
19
|
+
* leaves are left unchanged.
|
|
19
20
|
*
|
|
20
21
|
* @param item - A top-level draggable list item node, potentially containing
|
|
21
22
|
* named group sub-nodes with leaf items.
|