@salutejs/plasma-new-hope 0.340.0-canary.2314.18974837629.0 → 0.340.0-canary.2314.19038910206.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/cjs/components/Combobox/ComboboxNew/Combobox.js +20 -4
 - package/cjs/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +319 -1
 - package/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js +7 -0
 - package/cjs/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js +14 -2
 - package/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +3 -3
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +22 -5
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js.map +1 -1
 - package/cjs/components/Select/Select.js +2 -1
 - package/cjs/components/Select/Select.js.map +1 -1
 - package/cjs/components/Select/hooks/useKeyboardNavigation.js +127 -38
 - package/cjs/components/Select/hooks/useKeyboardNavigation.js.map +1 -1
 - package/cjs/components/Select/reducers/focusedPathReducer.js +7 -0
 - package/cjs/components/Select/reducers/focusedPathReducer.js.map +1 -1
 - package/cjs/components/Select/reducers/treePathReducer.js +12 -0
 - package/cjs/components/Select/reducers/treePathReducer.js.map +1 -1
 - package/cjs/components/Select/ui/TreeList/TreeList.js +3 -3
 - package/cjs/components/Select/ui/TreeList/TreeList.js.map +1 -1
 - package/cjs/components/Select/ui/TreeList/ui/Item/Item.js +22 -5
 - package/cjs/components/Select/ui/TreeList/ui/Item/Item.js.map +1 -1
 - package/cjs/index.js +2 -0
 - package/cjs/index.js.map +1 -1
 - package/cjs/utils/index.js.map +1 -1
 - package/cjs/utils/isArraysEqual.js +12 -0
 - package/cjs/utils/isArraysEqual.js.map +1 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.js +16 -3
 - package/emotion/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +312 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js +7 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js +14 -2
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +7 -3
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +49 -5
 - package/emotion/cjs/components/Select/Select.js +2 -1
 - package/emotion/cjs/components/Select/hooks/useKeyboardNavigation.js +156 -44
 - package/emotion/cjs/components/Select/reducers/focusedPathReducer.js +7 -0
 - package/emotion/cjs/components/Select/reducers/treePathReducer.js +12 -0
 - package/emotion/cjs/components/Select/ui/TreeList/TreeList.js +7 -3
 - package/emotion/cjs/components/Select/ui/TreeList/ui/Item/Item.js +49 -5
 - package/emotion/cjs/examples/components/Combobox/Combobox.js +15 -0
 - package/emotion/cjs/utils/index.js +4 -0
 - package/emotion/cjs/utils/isArraysEqual.js +15 -0
 - package/emotion/es/components/Combobox/ComboboxNew/Combobox.js +16 -3
 - package/emotion/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +313 -0
 - package/emotion/es/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js +7 -0
 - package/emotion/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js +14 -2
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +7 -3
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +50 -6
 - package/emotion/es/components/Select/Select.js +2 -1
 - package/emotion/es/components/Select/hooks/useKeyboardNavigation.js +157 -44
 - package/emotion/es/components/Select/reducers/focusedPathReducer.js +7 -0
 - package/emotion/es/components/Select/reducers/treePathReducer.js +12 -0
 - package/emotion/es/components/Select/ui/TreeList/TreeList.js +7 -3
 - package/emotion/es/components/Select/ui/TreeList/ui/Item/Item.js +50 -6
 - package/emotion/es/utils/index.js +1 -0
 - package/emotion/es/utils/isArraysEqual.js +5 -0
 - package/es/components/Combobox/ComboboxNew/Combobox.js +20 -4
 - package/es/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +319 -1
 - package/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js +7 -0
 - package/es/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js +14 -2
 - package/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +3 -3
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +23 -6
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js.map +1 -1
 - package/es/components/Select/Select.js +2 -1
 - package/es/components/Select/Select.js.map +1 -1
 - package/es/components/Select/hooks/useKeyboardNavigation.js +127 -38
 - package/es/components/Select/hooks/useKeyboardNavigation.js.map +1 -1
 - package/es/components/Select/reducers/focusedPathReducer.js +7 -0
 - package/es/components/Select/reducers/focusedPathReducer.js.map +1 -1
 - package/es/components/Select/reducers/treePathReducer.js +12 -0
 - package/es/components/Select/reducers/treePathReducer.js.map +1 -1
 - package/es/components/Select/ui/TreeList/TreeList.js +3 -3
 - package/es/components/Select/ui/TreeList/TreeList.js.map +1 -1
 - package/es/components/Select/ui/TreeList/ui/Item/Item.js +23 -6
 - package/es/components/Select/ui/TreeList/ui/Item/Item.js.map +1 -1
 - package/es/index.js +1 -0
 - package/es/index.js.map +1 -1
 - package/es/utils/index.js.map +1 -1
 - package/es/utils/isArraysEqual.js +8 -0
 - package/es/utils/isArraysEqual.js.map +1 -0
 - package/package.json +2 -2
 - package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.js +16 -3
 - package/styled-components/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +312 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js +7 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js +14 -2
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +7 -3
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +49 -5
 - package/styled-components/cjs/components/Select/Select.js +2 -1
 - package/styled-components/cjs/components/Select/hooks/useKeyboardNavigation.js +156 -44
 - package/styled-components/cjs/components/Select/reducers/focusedPathReducer.js +7 -0
 - package/styled-components/cjs/components/Select/reducers/treePathReducer.js +12 -0
 - package/styled-components/cjs/components/Select/ui/TreeList/TreeList.js +7 -3
 - package/styled-components/cjs/components/Select/ui/TreeList/ui/Item/Item.js +49 -5
 - package/styled-components/cjs/utils/index.js +4 -0
 - package/styled-components/cjs/utils/isArraysEqual.js +15 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/Combobox.js +16 -3
 - package/styled-components/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +313 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/reducers/focusedPathReducer.js +7 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js +14 -2
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +7 -3
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +50 -6
 - package/styled-components/es/components/Select/Select.js +2 -1
 - package/styled-components/es/components/Select/hooks/useKeyboardNavigation.js +157 -44
 - package/styled-components/es/components/Select/reducers/focusedPathReducer.js +7 -0
 - package/styled-components/es/components/Select/reducers/treePathReducer.js +12 -0
 - package/styled-components/es/components/Select/ui/TreeList/TreeList.js +7 -3
 - package/styled-components/es/components/Select/ui/TreeList/ui/Item/Item.js +50 -6
 - package/styled-components/es/examples/components/Combobox/Combobox.js +0 -7
 - package/styled-components/es/utils/index.js +1 -0
 - package/styled-components/es/utils/isArraysEqual.js +5 -0
 - package/types/components/Combobox/ComboboxNew/Combobox.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.d.ts +7 -2
 - package/types/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/reducers/focusedPathReducer.d.ts +3 -0
 - package/types/components/Combobox/ComboboxNew/reducers/focusedPathReducer.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/reducers/treePathReducer.d.ts +6 -0
 - package/types/components/Combobox/ComboboxNew/reducers/treePathReducer.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.d.ts +1 -1
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.d.ts.map +1 -1
 - package/types/components/Select/Select.d.ts.map +1 -1
 - package/types/components/Select/hooks/useKeyboardNavigation.d.ts +2 -1
 - package/types/components/Select/hooks/useKeyboardNavigation.d.ts.map +1 -1
 - package/types/components/Select/reducers/focusedPathReducer.d.ts +3 -0
 - package/types/components/Select/reducers/focusedPathReducer.d.ts.map +1 -1
 - package/types/components/Select/reducers/treePathReducer.d.ts +6 -0
 - package/types/components/Select/reducers/treePathReducer.d.ts.map +1 -1
 - package/types/components/Select/ui/TreeList/ui/Item/Item.d.ts.map +1 -1
 - package/types/components/Select/ui/TreeList/ui/Item/Item.types.d.ts +1 -1
 - package/types/components/Select/ui/TreeList/ui/Item/Item.types.d.ts.map +1 -1
 - package/types/utils/index.d.ts +1 -0
 - package/types/utils/index.d.ts.map +1 -1
 - package/types/utils/isArraysEqual.d.ts +2 -0
 - package/types/utils/isArraysEqual.d.ts.map +1 -0
 
| 
         @@ -1,3 +1,28 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            function _array_like_to_array(arr, len) {
         
     | 
| 
      
 2 
     | 
    
         
            +
                if (len == null || len > arr.length) len = arr.length;
         
     | 
| 
      
 3 
     | 
    
         
            +
                for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
         
     | 
| 
      
 4 
     | 
    
         
            +
                return arr2;
         
     | 
| 
      
 5 
     | 
    
         
            +
            }
         
     | 
| 
      
 6 
     | 
    
         
            +
            function _array_without_holes(arr) {
         
     | 
| 
      
 7 
     | 
    
         
            +
                if (Array.isArray(arr)) return _array_like_to_array(arr);
         
     | 
| 
      
 8 
     | 
    
         
            +
            }
         
     | 
| 
      
 9 
     | 
    
         
            +
            function _iterable_to_array(iter) {
         
     | 
| 
      
 10 
     | 
    
         
            +
                if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
         
     | 
| 
      
 11 
     | 
    
         
            +
            }
         
     | 
| 
      
 12 
     | 
    
         
            +
            function _non_iterable_spread() {
         
     | 
| 
      
 13 
     | 
    
         
            +
                throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
         
     | 
| 
      
 14 
     | 
    
         
            +
            }
         
     | 
| 
      
 15 
     | 
    
         
            +
            function _to_consumable_array(arr) {
         
     | 
| 
      
 16 
     | 
    
         
            +
                return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
         
     | 
| 
      
 17 
     | 
    
         
            +
            }
         
     | 
| 
      
 18 
     | 
    
         
            +
            function _unsupported_iterable_to_array(o, minLen) {
         
     | 
| 
      
 19 
     | 
    
         
            +
                if (!o) return;
         
     | 
| 
      
 20 
     | 
    
         
            +
                if (typeof o === "string") return _array_like_to_array(o, minLen);
         
     | 
| 
      
 21 
     | 
    
         
            +
                var n = Object.prototype.toString.call(o).slice(8, -1);
         
     | 
| 
      
 22 
     | 
    
         
            +
                if (n === "Object" && o.constructor) n = o.constructor.name;
         
     | 
| 
      
 23 
     | 
    
         
            +
                if (n === "Map" || n === "Set") return Array.from(n);
         
     | 
| 
      
 24 
     | 
    
         
            +
                if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
         
     | 
| 
      
 25 
     | 
    
         
            +
            }
         
     | 
| 
       1 
26 
     | 
    
         
             
            import { keyExists } from "../reducers/treePathReducer";
         
     | 
| 
       2 
27 
     | 
    
         
             
            var JUMP_SIZE = 10;
         
     | 
| 
       3 
28 
     | 
    
         
             
            export var keys = {
         
     | 
| 
         @@ -21,8 +46,9 @@ export var getItemByFocused = function(focusedPath, focusedToValueMap) { 
     | 
|
| 
       21 
46 
     | 
    
         
             
                }, '').replace(/^(\/)/, '');
         
     | 
| 
       22 
47 
     | 
    
         
             
                return focusedToValueMap.get(focusedPathAsString);
         
     | 
| 
       23 
48 
     | 
    
         
             
            };
         
     | 
| 
      
 49 
     | 
    
         
            +
            // #TODO: подумать над идеей выноса логики фокуса непосредственно в focusedPathReducer.
         
     | 
| 
       24 
50 
     | 
    
         
             
            export var useKeyNavigation = function(param) {
         
     | 
| 
       25 
     | 
    
         
            -
                var focusedPath = param.focusedPath, dispatchFocusedPath = param.dispatchFocusedPath, path = param.path, dispatchPath = param.dispatchPath, pathMap = param.pathMap, focusedToValueMap = param.focusedToValueMap, handleListToggle = param.handleListToggle, handlePressDown = param.handlePressDown, treePath = param.treePath, dispatchTreePath = param.dispatchTreePath, treeView = param.treeView, valueToPathMap = param.valueToPathMap;
         
     | 
| 
      
 51 
     | 
    
         
            +
                var focusedPath = param.focusedPath, dispatchFocusedPath = param.dispatchFocusedPath, path = param.path, dispatchPath = param.dispatchPath, pathMap = param.pathMap, focusedToValueMap = param.focusedToValueMap, handleListToggle = param.handleListToggle, handlePressDown = param.handlePressDown, treePath = param.treePath, dispatchTreePath = param.dispatchTreePath, treeView = param.treeView, valueToPathMap = param.valueToPathMap, items = param.items;
         
     | 
| 
       26 
52 
     | 
    
         
             
                if (treeView) {
         
     | 
| 
       27 
53 
     | 
    
         
             
                    return keyboardNavigationTree({
         
     | 
| 
       28 
54 
     | 
    
         
             
                        focusedPath: focusedPath,
         
     | 
| 
         @@ -36,7 +62,8 @@ export var useKeyNavigation = function(param) { 
     | 
|
| 
       36 
62 
     | 
    
         
             
                        treePath: treePath,
         
     | 
| 
       37 
63 
     | 
    
         
             
                        dispatchTreePath: dispatchTreePath,
         
     | 
| 
       38 
64 
     | 
    
         
             
                        treeView: treeView,
         
     | 
| 
       39 
     | 
    
         
            -
                        valueToPathMap: valueToPathMap
         
     | 
| 
      
 65 
     | 
    
         
            +
                        valueToPathMap: valueToPathMap,
         
     | 
| 
      
 66 
     | 
    
         
            +
                        items: items
         
     | 
| 
       40 
67 
     | 
    
         
             
                    });
         
     | 
| 
       41 
68 
     | 
    
         
             
                }
         
     | 
| 
       42 
69 
     | 
    
         
             
                return keyboardNavigationDefault({
         
     | 
| 
         @@ -51,7 +78,8 @@ export var useKeyNavigation = function(param) { 
     | 
|
| 
       51 
78 
     | 
    
         
             
                    treePath: treePath,
         
     | 
| 
       52 
79 
     | 
    
         
             
                    dispatchTreePath: dispatchTreePath,
         
     | 
| 
       53 
80 
     | 
    
         
             
                    treeView: treeView,
         
     | 
| 
       54 
     | 
    
         
            -
                    valueToPathMap: valueToPathMap
         
     | 
| 
      
 81 
     | 
    
         
            +
                    valueToPathMap: valueToPathMap,
         
     | 
| 
      
 82 
     | 
    
         
            +
                    items: items
         
     | 
| 
       55 
83 
     | 
    
         
             
                });
         
     | 
| 
       56 
84 
     | 
    
         
             
            };
         
     | 
| 
       57 
85 
     | 
    
         
             
            var keyboardNavigationDefault = function(param) {
         
     | 
| 
         @@ -320,24 +348,85 @@ var keyboardNavigationDefault = function(param) { 
     | 
|
| 
       320 
348 
     | 
    
         
             
                };
         
     | 
| 
       321 
349 
     | 
    
         
             
            };
         
     | 
| 
       322 
350 
     | 
    
         
             
            var keyboardNavigationTree = function(param) {
         
     | 
| 
       323 
     | 
    
         
            -
                var focusedPath = param.focusedPath, dispatchFocusedPath = param.dispatchFocusedPath, path = param.path, dispatchPath = param.dispatchPath, pathMap = param.pathMap, focusedToValueMap = param.focusedToValueMap, handleListToggle = param.handleListToggle, handlePressDown = param.handlePressDown, treePath = param.treePath, dispatchTreePath = param.dispatchTreePath, valueToPathMap = param.valueToPathMap;
         
     | 
| 
      
 351 
     | 
    
         
            +
                var focusedPath = param.focusedPath, dispatchFocusedPath = param.dispatchFocusedPath, path = param.path, dispatchPath = param.dispatchPath, pathMap = param.pathMap, focusedToValueMap = param.focusedToValueMap, handleListToggle = param.handleListToggle, handlePressDown = param.handlePressDown, treePath = param.treePath, dispatchTreePath = param.dispatchTreePath, valueToPathMap = param.valueToPathMap, items = param.items;
         
     | 
| 
       324 
352 
     | 
    
         
             
                var _currentItem_parent_items, _currentItem_parent;
         
     | 
| 
       325 
     | 
    
         
            -
                var currentIndex = (focusedPath === null || focusedPath === void 0 ? void 0 : focusedPath[focusedPath.length - 1]) || 0;
         
     | 
| 
       326 
353 
     | 
    
         
             
                var currentItem = getItemByFocused(focusedPath, focusedToValueMap);
         
     | 
| 
      
 354 
     | 
    
         
            +
                var currentIndex = (focusedPath === null || focusedPath === void 0 ? void 0 : focusedPath[focusedPath.length - 1]) || 0;
         
     | 
| 
       327 
355 
     | 
    
         
             
                var currentLength = (currentItem === null || currentItem === void 0 ? void 0 : (_currentItem_parent = currentItem.parent) === null || _currentItem_parent === void 0 ? void 0 : (_currentItem_parent_items = _currentItem_parent.items) === null || _currentItem_parent_items === void 0 ? void 0 : _currentItem_parent_items.length) || pathMap.get('root') || 0;
         
     | 
| 
      
 356 
     | 
    
         
            +
                var isValidFocus = function(focusCandidate) {
         
     | 
| 
      
 357 
     | 
    
         
            +
                    if (!Array.isArray(items) || !Array.isArray(focusCandidate)) return false;
         
     | 
| 
      
 358 
     | 
    
         
            +
                    var currentLevel = items;
         
     | 
| 
      
 359 
     | 
    
         
            +
                    var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
         
     | 
| 
      
 360 
     | 
    
         
            +
                    try {
         
     | 
| 
      
 361 
     | 
    
         
            +
                        for(var _iterator = focusCandidate[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
         
     | 
| 
      
 362 
     | 
    
         
            +
                            var index = _step.value;
         
     | 
| 
      
 363 
     | 
    
         
            +
                            if (!Array.isArray(currentLevel) || index >= currentLevel.length) {
         
     | 
| 
      
 364 
     | 
    
         
            +
                                return false;
         
     | 
| 
      
 365 
     | 
    
         
            +
                            }
         
     | 
| 
      
 366 
     | 
    
         
            +
                            var node = currentLevel[index];
         
     | 
| 
      
 367 
     | 
    
         
            +
                            currentLevel = node.items || [];
         
     | 
| 
      
 368 
     | 
    
         
            +
                        }
         
     | 
| 
      
 369 
     | 
    
         
            +
                    } catch (err) {
         
     | 
| 
      
 370 
     | 
    
         
            +
                        _didIteratorError = true;
         
     | 
| 
      
 371 
     | 
    
         
            +
                        _iteratorError = err;
         
     | 
| 
      
 372 
     | 
    
         
            +
                    } finally{
         
     | 
| 
      
 373 
     | 
    
         
            +
                        try {
         
     | 
| 
      
 374 
     | 
    
         
            +
                            if (!_iteratorNormalCompletion && _iterator.return != null) {
         
     | 
| 
      
 375 
     | 
    
         
            +
                                _iterator.return();
         
     | 
| 
      
 376 
     | 
    
         
            +
                            }
         
     | 
| 
      
 377 
     | 
    
         
            +
                        } finally{
         
     | 
| 
      
 378 
     | 
    
         
            +
                            if (_didIteratorError) {
         
     | 
| 
      
 379 
     | 
    
         
            +
                                throw _iteratorError;
         
     | 
| 
      
 380 
     | 
    
         
            +
                            }
         
     | 
| 
      
 381 
     | 
    
         
            +
                        }
         
     | 
| 
      
 382 
     | 
    
         
            +
                    }
         
     | 
| 
      
 383 
     | 
    
         
            +
                    return true;
         
     | 
| 
      
 384 
     | 
    
         
            +
                };
         
     | 
| 
       328 
385 
     | 
    
         
             
                var onKeyDown = function(event) {
         
     | 
| 
       329 
386 
     | 
    
         
             
                    switch(event.code){
         
     | 
| 
       330 
387 
     | 
    
         
             
                        case keys.ArrowUp:
         
     | 
| 
       331 
388 
     | 
    
         
             
                            {
         
     | 
| 
       332 
     | 
    
         
            -
                                 
     | 
| 
       333 
     | 
    
         
            -
             
     | 
| 
      
 389 
     | 
    
         
            +
                                /**
         
     | 
| 
      
 390 
     | 
    
         
            +
                             * Если список открыт и фокус уже установлен на каком-либо элементе.
         
     | 
| 
      
 391 
     | 
    
         
            +
                             * */ if (focusedPath.length) {
         
     | 
| 
      
 392 
     | 
    
         
            +
                                    /**
         
     | 
| 
      
 393 
     | 
    
         
            +
                                 * Если это не первый элемент, то нужно вначале найти элемент для фокуса.
         
     | 
| 
      
 394 
     | 
    
         
            +
                                 * Т.к. если верхний элемент раскрыт, то и перемещаться нужно не на него,
         
     | 
| 
      
 395 
     | 
    
         
            +
                                 * а на его самый нижний дочерний элемент.
         
     | 
| 
      
 396 
     | 
    
         
            +
                                 * */ if (currentIndex > 0) {
         
     | 
| 
      
 397 
     | 
    
         
            +
                                        var nextFocus = _to_consumable_array(focusedPath.slice(0, -1)).concat([
         
     | 
| 
      
 398 
     | 
    
         
            +
                                            currentIndex - 1
         
     | 
| 
      
 399 
     | 
    
         
            +
                                        ]);
         
     | 
| 
      
 400 
     | 
    
         
            +
                                        while(nextFocus){
         
     | 
| 
      
 401 
     | 
    
         
            +
                                            var focusedPathAsString = nextFocus.reduce(function(acc, n) {
         
     | 
| 
      
 402 
     | 
    
         
            +
                                                return "".concat(acc, "/").concat(n);
         
     | 
| 
      
 403 
     | 
    
         
            +
                                            }, '').replace(/^(\/)/, '');
         
     | 
| 
      
 404 
     | 
    
         
            +
                                            var item = focusedToValueMap.get(focusedPathAsString);
         
     | 
| 
      
 405 
     | 
    
         
            +
                                            var isLevelOpened = keyExists(treePath, valueToPathMap.get(item.value.toString()) || []);
         
     | 
| 
      
 406 
     | 
    
         
            +
                                            if (isLevelOpened) {
         
     | 
| 
      
 407 
     | 
    
         
            +
                                                var _item_items;
         
     | 
| 
      
 408 
     | 
    
         
            +
                                                nextFocus = _to_consumable_array(nextFocus).concat([
         
     | 
| 
      
 409 
     | 
    
         
            +
                                                    ((item === null || item === void 0 ? void 0 : (_item_items = item.items) === null || _item_items === void 0 ? void 0 : _item_items.length) || 0) - 1
         
     | 
| 
      
 410 
     | 
    
         
            +
                                                ]);
         
     | 
| 
      
 411 
     | 
    
         
            +
                                            } else {
         
     | 
| 
      
 412 
     | 
    
         
            +
                                                break;
         
     | 
| 
      
 413 
     | 
    
         
            +
                                            }
         
     | 
| 
      
 414 
     | 
    
         
            +
                                        }
         
     | 
| 
       334 
415 
     | 
    
         
             
                                        dispatchFocusedPath({
         
     | 
| 
       335 
     | 
    
         
            -
                                            type: ' 
     | 
| 
       336 
     | 
    
         
            -
                                            value:  
     | 
| 
      
 416 
     | 
    
         
            +
                                            type: 'set_focus',
         
     | 
| 
      
 417 
     | 
    
         
            +
                                            value: nextFocus
         
     | 
| 
      
 418 
     | 
    
         
            +
                                        });
         
     | 
| 
      
 419 
     | 
    
         
            +
                                    } else {
         
     | 
| 
      
 420 
     | 
    
         
            +
                                        /**
         
     | 
| 
      
 421 
     | 
    
         
            +
                                     * Если элемент первый, то нужно лишь подняться к его родителю.
         
     | 
| 
      
 422 
     | 
    
         
            +
                                     * */ dispatchFocusedPath({
         
     | 
| 
      
 423 
     | 
    
         
            +
                                            type: 'return_prev_focus'
         
     | 
| 
       337 
424 
     | 
    
         
             
                                        });
         
     | 
| 
       338 
425 
     | 
    
         
             
                                    }
         
     | 
| 
       339 
426 
     | 
    
         
             
                                } else {
         
     | 
| 
       340 
     | 
    
         
            -
                                     
     | 
| 
      
 427 
     | 
    
         
            +
                                    /**
         
     | 
| 
      
 428 
     | 
    
         
            +
                                 * Если список закрыт, то нужно его открыть и установить фокус на первый элемент.
         
     | 
| 
      
 429 
     | 
    
         
            +
                                 * */ dispatchPath({
         
     | 
| 
       341 
430 
     | 
    
         
             
                                        type: 'opened_first_level'
         
     | 
| 
       342 
431 
     | 
    
         
             
                                    });
         
     | 
| 
       343 
432 
     | 
    
         
             
                                    dispatchFocusedPath({
         
     | 
| 
         @@ -349,15 +438,61 @@ var keyboardNavigationTree = function(param) { 
     | 
|
| 
       349 
438 
     | 
    
         
             
                            }
         
     | 
| 
       350 
439 
     | 
    
         
             
                        case keys.ArrowDown:
         
     | 
| 
       351 
440 
     | 
    
         
             
                            {
         
     | 
| 
       352 
     | 
    
         
            -
                                 
     | 
| 
       353 
     | 
    
         
            -
             
     | 
| 
      
 441 
     | 
    
         
            +
                                /**
         
     | 
| 
      
 442 
     | 
    
         
            +
                             * Если список открыт и фокус уже установлен на каком-либо элементе.
         
     | 
| 
      
 443 
     | 
    
         
            +
                             * */ if (focusedPath.length) {
         
     | 
| 
      
 444 
     | 
    
         
            +
                                    /**
         
     | 
| 
      
 445 
     | 
    
         
            +
                                 * Заходим сюда если у элемента есть другие вложенные элементы.
         
     | 
| 
      
 446 
     | 
    
         
            +
                                 * */ if ((currentItem === null || currentItem === void 0 ? void 0 : currentItem.items) && (currentItem === null || currentItem === void 0 ? void 0 : currentItem.items.length)) {
         
     | 
| 
      
 447 
     | 
    
         
            +
                                        var isCurrentLevelOpened = keyExists(treePath, valueToPathMap.get(currentItem.value.toString()) || []);
         
     | 
| 
      
 448 
     | 
    
         
            +
                                        /**
         
     | 
| 
      
 449 
     | 
    
         
            +
                                     * Если у этого элемента открыт его дочерний список,
         
     | 
| 
      
 450 
     | 
    
         
            +
                                     * то устанавливаем фокус на первый элемент из этого списка
         
     | 
| 
      
 451 
     | 
    
         
            +
                                     * и сразу же выходим из обработчика события.
         
     | 
| 
      
 452 
     | 
    
         
            +
                                     * */ if (isCurrentLevelOpened) {
         
     | 
| 
      
 453 
     | 
    
         
            +
                                            dispatchFocusedPath({
         
     | 
| 
      
 454 
     | 
    
         
            +
                                                type: 'add_focus',
         
     | 
| 
      
 455 
     | 
    
         
            +
                                                value: 0
         
     | 
| 
      
 456 
     | 
    
         
            +
                                            });
         
     | 
| 
      
 457 
     | 
    
         
            +
                                            break;
         
     | 
| 
      
 458 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 459 
     | 
    
         
            +
                                    }
         
     | 
| 
      
 460 
     | 
    
         
            +
                                    /**
         
     | 
| 
      
 461 
     | 
    
         
            +
                                 * Если мы еще не достигли конца списка, то движемся к следующему элементу.
         
     | 
| 
      
 462 
     | 
    
         
            +
                                 * */ if (currentIndex + 1 < currentLength) {
         
     | 
| 
       354 
463 
     | 
    
         
             
                                        dispatchFocusedPath({
         
     | 
| 
       355 
464 
     | 
    
         
             
                                            type: 'change_last_focus',
         
     | 
| 
       356 
465 
     | 
    
         
             
                                            value: currentIndex + 1
         
     | 
| 
       357 
466 
     | 
    
         
             
                                        });
         
     | 
| 
      
 467 
     | 
    
         
            +
                                    } else {
         
     | 
| 
      
 468 
     | 
    
         
            +
                                        /**
         
     | 
| 
      
 469 
     | 
    
         
            +
                                     * Если же достигли последнего элемента на текущем уровне, то нужно определить,
         
     | 
| 
      
 470 
     | 
    
         
            +
                                     * на какой из элементов ниже мы перейдем.
         
     | 
| 
      
 471 
     | 
    
         
            +
                                     * Переход фокуса отсюда может быть только на уровни выше, при чем сразу на несколько.
         
     | 
| 
      
 472 
     | 
    
         
            +
                                     * */ var focusCandidate = _to_consumable_array(focusedPath);
         
     | 
| 
      
 473 
     | 
    
         
            +
                                        var nextFocus1 = null;
         
     | 
| 
      
 474 
     | 
    
         
            +
                                        while(focusCandidate.length > 1){
         
     | 
| 
      
 475 
     | 
    
         
            +
                                            focusCandidate = _to_consumable_array(focusCandidate.slice(0, -2)).concat([
         
     | 
| 
      
 476 
     | 
    
         
            +
                                                (focusCandidate.at(-2) || 0) + 1
         
     | 
| 
      
 477 
     | 
    
         
            +
                                            ]);
         
     | 
| 
      
 478 
     | 
    
         
            +
                                            if (isValidFocus(focusCandidate)) {
         
     | 
| 
      
 479 
     | 
    
         
            +
                                                nextFocus1 = focusCandidate;
         
     | 
| 
      
 480 
     | 
    
         
            +
                                                break;
         
     | 
| 
      
 481 
     | 
    
         
            +
                                            }
         
     | 
| 
      
 482 
     | 
    
         
            +
                                        }
         
     | 
| 
      
 483 
     | 
    
         
            +
                                        if (nextFocus1) {
         
     | 
| 
      
 484 
     | 
    
         
            +
                                            dispatchFocusedPath({
         
     | 
| 
      
 485 
     | 
    
         
            +
                                                type: 'set_focus',
         
     | 
| 
      
 486 
     | 
    
         
            +
                                                value: nextFocus1
         
     | 
| 
      
 487 
     | 
    
         
            +
                                            });
         
     | 
| 
      
 488 
     | 
    
         
            +
                                        } else {
         
     | 
| 
      
 489 
     | 
    
         
            +
                                            break;
         
     | 
| 
      
 490 
     | 
    
         
            +
                                        }
         
     | 
| 
       358 
491 
     | 
    
         
             
                                    }
         
     | 
| 
       359 
492 
     | 
    
         
             
                                } else {
         
     | 
| 
       360 
     | 
    
         
            -
                                     
     | 
| 
      
 493 
     | 
    
         
            +
                                    /**
         
     | 
| 
      
 494 
     | 
    
         
            +
                                 * Если список закрыт, то нужно его открыть и установить фокус на первый элемент.
         
     | 
| 
      
 495 
     | 
    
         
            +
                                 * */ dispatchPath({
         
     | 
| 
       361 
496 
     | 
    
         
             
                                        type: 'opened_first_level'
         
     | 
| 
       362 
497 
     | 
    
         
             
                                    });
         
     | 
| 
       363 
498 
     | 
    
         
             
                                    dispatchFocusedPath({
         
     | 
| 
         @@ -371,19 +506,10 @@ var keyboardNavigationTree = function(param) { 
     | 
|
| 
       371 
506 
     | 
    
         
             
                            {
         
     | 
| 
       372 
507 
     | 
    
         
             
                                if (path[0]) {
         
     | 
| 
       373 
508 
     | 
    
         
             
                                    if (focusedPath.length) {
         
     | 
| 
       374 
     | 
    
         
            -
                                         
     | 
| 
       375 
     | 
    
         
            -
             
     | 
| 
       376 
     | 
    
         
            -
                                             
     | 
| 
       377 
     | 
    
         
            -
             
     | 
| 
       378 
     | 
    
         
            -
                                                value: valueToPathMap.get((currentItem === null || currentItem === void 0 ? void 0 : currentItem.value.toString()) || '') || []
         
     | 
| 
       379 
     | 
    
         
            -
                                            });
         
     | 
| 
       380 
     | 
    
         
            -
                                        } else if (focusedPath.length === 1) {
         
     | 
| 
       381 
     | 
    
         
            -
                                            handleListToggle(false);
         
     | 
| 
       382 
     | 
    
         
            -
                                        } else {
         
     | 
| 
       383 
     | 
    
         
            -
                                            dispatchFocusedPath({
         
     | 
| 
       384 
     | 
    
         
            -
                                                type: 'return_prev_focus'
         
     | 
| 
       385 
     | 
    
         
            -
                                            });
         
     | 
| 
       386 
     | 
    
         
            -
                                        }
         
     | 
| 
      
 509 
     | 
    
         
            +
                                        dispatchTreePath({
         
     | 
| 
      
 510 
     | 
    
         
            +
                                            type: 'close_level',
         
     | 
| 
      
 511 
     | 
    
         
            +
                                            value: valueToPathMap.get((currentItem === null || currentItem === void 0 ? void 0 : currentItem.value.toString()) || '') || []
         
     | 
| 
      
 512 
     | 
    
         
            +
                                        });
         
     | 
| 
       387 
513 
     | 
    
         
             
                                    }
         
     | 
| 
       388 
514 
     | 
    
         
             
                                }
         
     | 
| 
       389 
515 
     | 
    
         
             
                                break;
         
     | 
| 
         @@ -391,26 +517,13 @@ var keyboardNavigationTree = function(param) { 
     | 
|
| 
       391 
517 
     | 
    
         
             
                        case keys.ArrowRight:
         
     | 
| 
       392 
518 
     | 
    
         
             
                            {
         
     | 
| 
       393 
519 
     | 
    
         
             
                                if (path[0]) {
         
     | 
| 
       394 
     | 
    
         
            -
                                    if (!focusedPath.length) {
         
     | 
| 
      
 520 
     | 
    
         
            +
                                    if (!focusedPath.length || (currentItem === null || currentItem === void 0 ? void 0 : currentItem.disabled) || (currentItem === null || currentItem === void 0 ? void 0 : currentItem.isDisabled) || !(currentItem === null || currentItem === void 0 ? void 0 : currentItem.items)) {
         
     | 
| 
       395 
521 
     | 
    
         
             
                                        break;
         
     | 
| 
       396 
522 
     | 
    
         
             
                                    }
         
     | 
| 
       397 
     | 
    
         
            -
                                     
     | 
| 
       398 
     | 
    
         
            -
                                         
     | 
| 
       399 
     | 
    
         
            -
             
     | 
| 
       400 
     | 
    
         
            -
                                     
     | 
| 
       401 
     | 
    
         
            -
                                        var isCurrentLevelOpened1 = keyExists(treePath, valueToPathMap.get(currentItem.value.toString()) || []);
         
     | 
| 
       402 
     | 
    
         
            -
                                        if (isCurrentLevelOpened1) {
         
     | 
| 
       403 
     | 
    
         
            -
                                            dispatchFocusedPath({
         
     | 
| 
       404 
     | 
    
         
            -
                                                type: 'add_focus',
         
     | 
| 
       405 
     | 
    
         
            -
                                                value: 0
         
     | 
| 
       406 
     | 
    
         
            -
                                            });
         
     | 
| 
       407 
     | 
    
         
            -
                                        } else {
         
     | 
| 
       408 
     | 
    
         
            -
                                            dispatchTreePath({
         
     | 
| 
       409 
     | 
    
         
            -
                                                type: 'toggled_level',
         
     | 
| 
       410 
     | 
    
         
            -
                                                value: valueToPathMap.get(currentItem.value.toString()) || []
         
     | 
| 
       411 
     | 
    
         
            -
                                            });
         
     | 
| 
       412 
     | 
    
         
            -
                                        }
         
     | 
| 
       413 
     | 
    
         
            -
                                    }
         
     | 
| 
      
 523 
     | 
    
         
            +
                                    dispatchTreePath({
         
     | 
| 
      
 524 
     | 
    
         
            +
                                        type: 'open_level',
         
     | 
| 
      
 525 
     | 
    
         
            +
                                        value: valueToPathMap.get(currentItem.value.toString()) || []
         
     | 
| 
      
 526 
     | 
    
         
            +
                                    });
         
     | 
| 
       414 
527 
     | 
    
         
             
                                }
         
     | 
| 
       415 
528 
     | 
    
         
             
                                break;
         
     | 
| 
       416 
529 
     | 
    
         
             
                            }
         
     | 
| 
         @@ -29,6 +29,10 @@ export function focusedPathReducer(state, action) { 
     | 
|
| 
       29 
29 
     | 
    
         
             
                        {
         
     | 
| 
       30 
30 
     | 
    
         
             
                            return [];
         
     | 
| 
       31 
31 
     | 
    
         
             
                        }
         
     | 
| 
      
 32 
     | 
    
         
            +
                    case 'set_focus':
         
     | 
| 
      
 33 
     | 
    
         
            +
                        {
         
     | 
| 
      
 34 
     | 
    
         
            +
                            return action.value;
         
     | 
| 
      
 35 
     | 
    
         
            +
                        }
         
     | 
| 
       32 
36 
     | 
    
         
             
                    case 'set_initial_focus':
         
     | 
| 
       33 
37 
     | 
    
         
             
                        {
         
     | 
| 
       34 
38 
     | 
    
         
             
                            return [
         
     | 
| 
         @@ -49,6 +53,9 @@ export function focusedPathReducer(state, action) { 
     | 
|
| 
       49 
53 
     | 
    
         
             
                        }
         
     | 
| 
       50 
54 
     | 
    
         
             
                    case 'return_prev_focus':
         
     | 
| 
       51 
55 
     | 
    
         
             
                        {
         
     | 
| 
      
 56 
     | 
    
         
            +
                            if (state.length === 1) {
         
     | 
| 
      
 57 
     | 
    
         
            +
                                return state;
         
     | 
| 
      
 58 
     | 
    
         
            +
                            }
         
     | 
| 
       52 
59 
     | 
    
         
             
                            return state.slice(0, -1);
         
     | 
| 
       53 
60 
     | 
    
         
             
                        }
         
     | 
| 
       54 
61 
     | 
    
         
             
                    default:
         
     | 
| 
         @@ -73,6 +73,18 @@ export function treePathReducer(state, action) { 
     | 
|
| 
       73 
73 
     | 
    
         
             
                            }
         
     | 
| 
       74 
74 
     | 
    
         
             
                            return stateCopy;
         
     | 
| 
       75 
75 
     | 
    
         
             
                        }
         
     | 
| 
      
 76 
     | 
    
         
            +
                    case 'open_level':
         
     | 
| 
      
 77 
     | 
    
         
            +
                        {
         
     | 
| 
      
 78 
     | 
    
         
            +
                            var stateCopy1 = deepCopy(state);
         
     | 
| 
      
 79 
     | 
    
         
            +
                            createObjectAtPath(stateCopy1, action.value);
         
     | 
| 
      
 80 
     | 
    
         
            +
                            return stateCopy1;
         
     | 
| 
      
 81 
     | 
    
         
            +
                        }
         
     | 
| 
      
 82 
     | 
    
         
            +
                    case 'close_level':
         
     | 
| 
      
 83 
     | 
    
         
            +
                        {
         
     | 
| 
      
 84 
     | 
    
         
            +
                            var stateCopy2 = deepCopy(state);
         
     | 
| 
      
 85 
     | 
    
         
            +
                            removeObjectAtPath(stateCopy2, action.value);
         
     | 
| 
      
 86 
     | 
    
         
            +
                            return stateCopy2;
         
     | 
| 
      
 87 
     | 
    
         
            +
                        }
         
     | 
| 
       76 
88 
     | 
    
         
             
                    default:
         
     | 
| 
       77 
89 
     | 
    
         
             
                        {
         
     | 
| 
       78 
90 
     | 
    
         
             
                            return state;
         
     | 
| 
         @@ -20,8 +20,10 @@ export var TreeList = function(param) { 
     | 
|
| 
       20 
20 
     | 
    
         
             
                }, beforeList, items === null || items === void 0 ? void 0 : items.map(function(item, index) {
         
     | 
| 
       21 
21 
     | 
    
         
             
                    return /*#__PURE__*/ React.createElement(Item, {
         
     | 
| 
       22 
22 
     | 
    
         
             
                        key: index,
         
     | 
| 
       23 
     | 
    
         
            -
                         
     | 
| 
       24 
     | 
    
         
            -
                         
     | 
| 
      
 23 
     | 
    
         
            +
                        item: item,
         
     | 
| 
      
 24 
     | 
    
         
            +
                        pathToItem: [
         
     | 
| 
      
 25 
     | 
    
         
            +
                            index
         
     | 
| 
      
 26 
     | 
    
         
            +
                        ]
         
     | 
| 
       25 
27 
     | 
    
         
             
                    });
         
     | 
| 
       26 
28 
     | 
    
         
             
                }), afterList));
         
     | 
| 
       27 
29 
     | 
    
         
             
            };
         
     | 
| 
         @@ -69,7 +71,9 @@ var VirtualTreeList = function(param) { 
     | 
|
| 
       69 
71 
     | 
    
         
             
                        ref: virtualizer.measureElement
         
     | 
| 
       70 
72 
     | 
    
         
             
                    }, /*#__PURE__*/ React.createElement(Item, {
         
     | 
| 
       71 
73 
     | 
    
         
             
                        item: items[virtualRow.index],
         
     | 
| 
       72 
     | 
    
         
            -
                         
     | 
| 
      
 74 
     | 
    
         
            +
                        pathToItem: [
         
     | 
| 
      
 75 
     | 
    
         
            +
                            virtualRow.index
         
     | 
| 
      
 76 
     | 
    
         
            +
                        ]
         
     | 
| 
       73 
77 
     | 
    
         
             
                    }));
         
     | 
| 
       74 
78 
     | 
    
         
             
                })))), afterList);
         
     | 
| 
       75 
79 
     | 
    
         
             
            };
         
     | 
| 
         @@ -1,11 +1,38 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
             
     | 
| 
      
 1 
     | 
    
         
            +
            function _array_like_to_array(arr, len) {
         
     | 
| 
      
 2 
     | 
    
         
            +
                if (len == null || len > arr.length) len = arr.length;
         
     | 
| 
      
 3 
     | 
    
         
            +
                for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
         
     | 
| 
      
 4 
     | 
    
         
            +
                return arr2;
         
     | 
| 
      
 5 
     | 
    
         
            +
            }
         
     | 
| 
      
 6 
     | 
    
         
            +
            function _array_without_holes(arr) {
         
     | 
| 
      
 7 
     | 
    
         
            +
                if (Array.isArray(arr)) return _array_like_to_array(arr);
         
     | 
| 
      
 8 
     | 
    
         
            +
            }
         
     | 
| 
      
 9 
     | 
    
         
            +
            function _iterable_to_array(iter) {
         
     | 
| 
      
 10 
     | 
    
         
            +
                if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
         
     | 
| 
      
 11 
     | 
    
         
            +
            }
         
     | 
| 
      
 12 
     | 
    
         
            +
            function _non_iterable_spread() {
         
     | 
| 
      
 13 
     | 
    
         
            +
                throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
         
     | 
| 
      
 14 
     | 
    
         
            +
            }
         
     | 
| 
      
 15 
     | 
    
         
            +
            function _to_consumable_array(arr) {
         
     | 
| 
      
 16 
     | 
    
         
            +
                return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
         
     | 
| 
      
 17 
     | 
    
         
            +
            }
         
     | 
| 
      
 18 
     | 
    
         
            +
            function _unsupported_iterable_to_array(o, minLen) {
         
     | 
| 
      
 19 
     | 
    
         
            +
                if (!o) return;
         
     | 
| 
      
 20 
     | 
    
         
            +
                if (typeof o === "string") return _array_like_to_array(o, minLen);
         
     | 
| 
      
 21 
     | 
    
         
            +
                var n = Object.prototype.toString.call(o).slice(8, -1);
         
     | 
| 
      
 22 
     | 
    
         
            +
                if (n === "Object" && o.constructor) n = o.constructor.name;
         
     | 
| 
      
 23 
     | 
    
         
            +
                if (n === "Map" || n === "Set") return Array.from(n);
         
     | 
| 
      
 24 
     | 
    
         
            +
                if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
         
     | 
| 
      
 25 
     | 
    
         
            +
            }
         
     | 
| 
      
 26 
     | 
    
         
            +
            import React, { useContext, useRef } from "react";
         
     | 
| 
       2 
27 
     | 
    
         
             
            import { classes } from "../../../../Select.tokens";
         
     | 
| 
       3 
28 
     | 
    
         
             
            import { sizeToIconSize } from "../../../../utils";
         
     | 
| 
      
 29 
     | 
    
         
            +
            import { isArraysEqual, cx } from "../../../../../../utils";
         
     | 
| 
      
 30 
     | 
    
         
            +
            import { useDidMountEffect } from "../../../../../../hooks";
         
     | 
| 
       4 
31 
     | 
    
         
             
            import { keyExists } from "../../../../reducers/treePathReducer";
         
     | 
| 
       5 
32 
     | 
    
         
             
            import { Context } from "../../../../Select.context";
         
     | 
| 
       6 
33 
     | 
    
         
             
            import { ItemWrapper, ChildItems, Offset, IconWrapper, StyledCheckboxWrapper, StyledCheckbox, StyledIndicator, StyledIconDone, StyledText, StyledWrapper, StyledCell, DisclosureIconWrapper, StyledArrowRight, Wrapper, StyledArrowLeft } from "./Item.styles";
         
     | 
| 
       7 
34 
     | 
    
         
             
            export var Item = function(param) {
         
     | 
| 
       8 
     | 
    
         
            -
                var item = param.item,  
     | 
| 
      
 35 
     | 
    
         
            +
                var item = param.item, pathToItem = param.pathToItem;
         
     | 
| 
       9 
36 
     | 
    
         
             
                var _valueToPathMap_get, _item_items;
         
     | 
| 
       10 
37 
     | 
    
         
             
                var label = item.label, value = item.value, disabled = item.disabled, isDisabled = item.isDisabled, contentLeft = item.contentLeft, contentRight = item.contentRight;
         
     | 
| 
       11 
38 
     | 
    
         
             
                var isLeaf = !(item === null || item === void 0 ? void 0 : item.items);
         
     | 
| 
         @@ -13,11 +40,14 @@ export var Item = function(param) { 
     | 
|
| 
       13 
40 
     | 
    
         
             
                // @ts-ignore
         
     | 
| 
       14 
41 
     | 
    
         
             
                _checkboxAppearance = _useContext._checkboxAppearance, focusedPath = _useContext.focusedPath, treePath = _useContext.treePath, dispatchTreePath = _useContext.dispatchTreePath, arrowPlacement = _useContext.arrowPlacement, handleItemClick = _useContext.handleItemClick, handleCheckboxChange = _useContext.handleCheckboxChange, valueToPathMap = _useContext.valueToPathMap;
         
     | 
| 
       15 
42 
     | 
    
         
             
                var itemDisabled = Boolean(disabled || isDisabled);
         
     | 
| 
      
 43 
     | 
    
         
            +
                var disabledClassName = itemDisabled ? classes.dropdownItemIsDisabled : undefined;
         
     | 
| 
      
 44 
     | 
    
         
            +
                var ref = useRef(null);
         
     | 
| 
       16 
45 
     | 
    
         
             
                var currentItemDepth = (((_valueToPathMap_get = valueToPathMap.get(item.value.toString())) === null || _valueToPathMap_get === void 0 ? void 0 : _valueToPathMap_get.length) || 0) - 1;
         
     | 
| 
       17 
46 
     | 
    
         
             
                var isCurrentLevelOpened = keyExists(treePath, valueToPathMap.get(value.toString()) || []);
         
     | 
| 
       18 
47 
     | 
    
         
             
                var withArrowInverse = isCurrentLevelOpened ? classes.arrowInverse : undefined;
         
     | 
| 
       19 
     | 
    
         
            -
                var focusedClass =  
     | 
| 
      
 48 
     | 
    
         
            +
                var focusedClass = isArraysEqual(pathToItem, focusedPath) ? classes.dropdownItemIsFocused : undefined;
         
     | 
| 
       20 
49 
     | 
    
         
             
                var handleClick = function(e) {
         
     | 
| 
      
 50 
     | 
    
         
            +
                    if (itemDisabled) return;
         
     | 
| 
       21 
51 
     | 
    
         
             
                    if (!isLeaf) {
         
     | 
| 
       22 
52 
     | 
    
         
             
                        dispatchTreePath({
         
     | 
| 
       23 
53 
     | 
    
         
             
                            type: 'toggled_level',
         
     | 
| 
         @@ -33,8 +63,20 @@ export var Item = function(param) { 
     | 
|
| 
       33 
63 
     | 
    
         
             
                    e.stopPropagation();
         
     | 
| 
       34 
64 
     | 
    
         
             
                    handleCheckboxChange(item);
         
     | 
| 
       35 
65 
     | 
    
         
             
                };
         
     | 
| 
      
 66 
     | 
    
         
            +
                useDidMountEffect(function() {
         
     | 
| 
      
 67 
     | 
    
         
            +
                    if (focusedClass && (ref === null || ref === void 0 ? void 0 : ref.current)) {
         
     | 
| 
      
 68 
     | 
    
         
            +
                        ref.current.scrollIntoView({
         
     | 
| 
      
 69 
     | 
    
         
            +
                            behavior: 'smooth',
         
     | 
| 
      
 70 
     | 
    
         
            +
                            block: 'center',
         
     | 
| 
      
 71 
     | 
    
         
            +
                            inline: 'center'
         
     | 
| 
      
 72 
     | 
    
         
            +
                        });
         
     | 
| 
      
 73 
     | 
    
         
            +
                    }
         
     | 
| 
      
 74 
     | 
    
         
            +
                }, [
         
     | 
| 
      
 75 
     | 
    
         
            +
                    focusedClass
         
     | 
| 
      
 76 
     | 
    
         
            +
                ]);
         
     | 
| 
       36 
77 
     | 
    
         
             
                return /*#__PURE__*/ React.createElement(ItemWrapper, null, /*#__PURE__*/ React.createElement(Wrapper, {
         
     | 
| 
       37 
     | 
    
         
            -
                     
     | 
| 
      
 78 
     | 
    
         
            +
                    ref: ref,
         
     | 
| 
      
 79 
     | 
    
         
            +
                    className: cx(focusedClass, disabledClassName),
         
     | 
| 
       38 
80 
     | 
    
         
             
                    onClick: handleClick,
         
     | 
| 
       39 
81 
     | 
    
         
             
                    variant: variant,
         
     | 
| 
       40 
82 
     | 
    
         
             
                    role: "treeitem"
         
     | 
| 
         @@ -92,8 +134,10 @@ export var Item = function(param) { 
     | 
|
| 
       92 
134 
     | 
    
         
             
                }))), !isLeaf && isCurrentLevelOpened && /*#__PURE__*/ React.createElement(ChildItems, null, (_item_items = item.items) === null || _item_items === void 0 ? void 0 : _item_items.map(function(item, index) {
         
     | 
| 
       93 
135 
     | 
    
         
             
                    return /*#__PURE__*/ React.createElement(Item, {
         
     | 
| 
       94 
136 
     | 
    
         
             
                        item: item,
         
     | 
| 
       95 
     | 
    
         
            -
                         
     | 
| 
       96 
     | 
    
         
            -
                         
     | 
| 
      
 137 
     | 
    
         
            +
                        key: item.value,
         
     | 
| 
      
 138 
     | 
    
         
            +
                        pathToItem: _to_consumable_array(pathToItem).concat([
         
     | 
| 
      
 139 
     | 
    
         
            +
                            index
         
     | 
| 
      
 140 
     | 
    
         
            +
                        ])
         
     | 
| 
       97 
141 
     | 
    
         
             
                    });
         
     | 
| 
       98 
142 
     | 
    
         
             
                })));
         
     | 
| 
       99 
143 
     | 
    
         
             
            };
         
     | 
| 
         @@ -1,7 +0,0 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import { component, mergeConfig } from "../../../engines";
         
     | 
| 
       2 
     | 
    
         
            -
            import { comboboxNewConfig } from "../../..";
         
     | 
| 
       3 
     | 
    
         
            -
            import { config } from "./Combobox.config";
         
     | 
| 
       4 
     | 
    
         
            -
            var mergedConfig = mergeConfig(comboboxNewConfig, config);
         
     | 
| 
       5 
     | 
    
         
            -
            var ComboboxComponent = component(mergedConfig);
         
     | 
| 
       6 
     | 
    
         
            -
            var Combobox = ComboboxComponent;
         
     | 
| 
       7 
     | 
    
         
            -
            export { Combobox };
         
     | 
| 
         @@ -14,6 +14,7 @@ export { noop } from "./noop"; 
     | 
|
| 
       14 
14 
     | 
    
         
             
            export { getHeightAsNumber } from "./getHeightAsNumber";
         
     | 
| 
       15 
15 
     | 
    
         
             
            export { createConditionalComponent } from "./createConditionalComponent";
         
     | 
| 
       16 
16 
     | 
    
         
             
            export { deepCopy } from "./deepCopy";
         
     | 
| 
      
 17 
     | 
    
         
            +
            export { isArraysEqual } from "./isArraysEqual";
         
     | 
| 
       17 
18 
     | 
    
         
             
            export var cx = function() {
         
     | 
| 
       18 
19 
     | 
    
         
             
                for(var _len = arguments.length, classes = new Array(_len), _key = 0; _key < _len; _key++){
         
     | 
| 
       19 
20 
     | 
    
         
             
                    classes[_key] = arguments[_key];
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6E,MAAM,OAAO,CAAC;AAIlG,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AA6BxC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAOtD;;GAEG;AAEH,eAAO,MAAM,YAAY,SAAU,SAAS,CAAC,gBAAgB,EAAE,IAAI,CAAC,aAAa,EAAE,OAAO,GAAG,eAAe,CAAC,CAAC, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6E,MAAM,OAAO,CAAC;AAIlG,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AA6BxC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAOtD;;GAEG;AAEH,eAAO,MAAM,YAAY,SAAU,SAAS,CAAC,gBAAgB,EAAE,IAAI,CAAC,aAAa,EAAE,OAAO,GAAG,eAAe,CAAC,CAAC,2FAknBxG,CAAC;AAEP,eAAO,MAAM,cAAc;;;mBApnBQ,SAAS,CAAC,gBAAgB,EAAE,IAAI,CAAC,aAAa,EAAE,OAAO,GAAG,eAAe,CAAC,CAAC;;;;;;;;;;;;;;;;;;CAyoB7G,CAAC"}
         
     | 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            import type { Dispatch } from 'react';
         
     | 
| 
       2 
2 
     | 
    
         
             
            import React from 'react';
         
     | 
| 
       3 
     | 
    
         
            -
            import { PathAction, PathState, FocusedPathAction, FocusedPathState } from '../reducers';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import { PathAction, PathState, FocusedPathAction, FocusedPathState, TreePathState, TreePathAction } from '../reducers';
         
     | 
| 
       4 
4 
     | 
    
         
             
            import type { ItemOptionTransformed } from '../ui/Inner/ui/Item/Item.types';
         
     | 
| 
       5 
5 
     | 
    
         
             
            import { PathMapType, FocusedToValueMapType, ValueToItemMapType } from './getPathMaps';
         
     | 
| 
       6 
6 
     | 
    
         
             
            export declare const keys: {
         
     | 
| 
         @@ -33,10 +33,15 @@ type Props = { 
     | 
|
| 
       33 
33 
     | 
    
         
             
                value: string | string[];
         
     | 
| 
       34 
34 
     | 
    
         
             
                textValue: string;
         
     | 
| 
       35 
35 
     | 
    
         
             
                valueToItemMap: ValueToItemMapType;
         
     | 
| 
      
 36 
     | 
    
         
            +
                treePath: TreePathState;
         
     | 
| 
      
 37 
     | 
    
         
            +
                dispatchTreePath: Dispatch<TreePathAction>;
         
     | 
| 
      
 38 
     | 
    
         
            +
                treeView: boolean;
         
     | 
| 
      
 39 
     | 
    
         
            +
                valueToPathMap: Map<string, string[]>;
         
     | 
| 
      
 40 
     | 
    
         
            +
                items: ItemOptionTransformed[];
         
     | 
| 
       36 
41 
     | 
    
         
             
            };
         
     | 
| 
       37 
42 
     | 
    
         
             
            type ReturnedProps = {
         
     | 
| 
       38 
43 
     | 
    
         
             
                onKeyDown: (event: React.KeyboardEvent<HTMLElement>) => void;
         
     | 
| 
       39 
44 
     | 
    
         
             
            };
         
     | 
| 
       40 
     | 
    
         
            -
            export declare const useKeyNavigation: ({ focusedPath, dispatchFocusedPath, path, dispatchPath, pathMap, focusedToValueMap, handleListToggle, handlePressDown, setTextValue, multiple, value, textValue, valueToItemMap, }: Props) => ReturnedProps;
         
     | 
| 
      
 45 
     | 
    
         
            +
            export declare const useKeyNavigation: ({ focusedPath, dispatchFocusedPath, path, dispatchPath, pathMap, focusedToValueMap, handleListToggle, handlePressDown, setTextValue, multiple, value, textValue, valueToItemMap, treePath, dispatchTreePath, treeView, valueToPathMap, items, }: Props) => ReturnedProps;
         
     | 
| 
       41 
46 
     | 
    
         
             
            export {};
         
     | 
| 
       42 
47 
     | 
    
         
             
            //# sourceMappingURL=useKeyboardNavigation.d.ts.map
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"useKeyboardNavigation.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAiB,QAAQ,EAAE,MAAM,OAAO,CAAC;AACrD,OAAO,KAAK,MAAM,OAAO,CAAC; 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"useKeyboardNavigation.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAiB,QAAQ,EAAE,MAAM,OAAO,CAAC;AACrD,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AACxH,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAE5E,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,kBAAkB,EAAE,MAAM,eAAe,CAAC;AAIvF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;CAchB,CAAC;AAEF,eAAO,MAAM,gBAAgB,gBAAiB,gBAAgB,qBAAqB,qBAAqB,sCAIvG,CAAC;AAEF,KAAK,KAAK,GAAG;IACT,WAAW,EAAE,gBAAgB,CAAC;IAC9B,mBAAmB,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC;IACjD,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,OAAO,EAAE,WAAW,CAAC;IACrB,iBAAiB,EAAE,qBAAqB,CAAC;IACzC,gBAAgB,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IAC5C,eAAe,EAAE,CAAC,IAAI,EAAE,qBAAqB,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;IAC1F,YAAY,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC;IAC3D,QAAQ,EAAE,OAAO,GAAG,SAAS,CAAC;IAC9B,KAAK,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,kBAAkB,CAAC;IACnC,QAAQ,EAAE,aAAa,CAAC;IACxB,gBAAgB,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;IAC3C,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACtC,KAAK,EAAE,qBAAqB,EAAE,CAAC;CAClC,CAAC;AAEF,KAAK,aAAa,GAAG;IACjB,SAAS,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;CAChE,CAAC;AAGF,eAAO,MAAM,gBAAgB,oPAmB1B,KAAK,KAAG,aA4CV,CAAC"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"focusedPathReducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/reducers/focusedPathReducer.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;AAE7C,MAAM,MAAM,iBAAiB,GACvB;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GACjB;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,GAC7B;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GAC5C;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GACpC;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,CAAC;AAEpC,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,iBAAiB,GAAG,gBAAgB, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"focusedPathReducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/reducers/focusedPathReducer.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;AAE7C,MAAM,MAAM,iBAAiB,GACvB;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GACjB;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,gBAAgB,CAAA;CAAE,GAC9C;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,GAC7B;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GAC5C;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GACpC;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,CAAC;AAEpC,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,iBAAiB,GAAG,gBAAgB,CAkCvG"}
         
     | 
| 
         @@ -11,6 +11,12 @@ export type TreePathAction = { 
     | 
|
| 
       11 
11 
     | 
    
         
             
            } | {
         
     | 
| 
       12 
12 
     | 
    
         
             
                type: 'expand_all';
         
     | 
| 
       13 
13 
     | 
    
         
             
                value: ItemOption[];
         
     | 
| 
      
 14 
     | 
    
         
            +
            } | {
         
     | 
| 
      
 15 
     | 
    
         
            +
                type: 'open_level';
         
     | 
| 
      
 16 
     | 
    
         
            +
                value: string[];
         
     | 
| 
      
 17 
     | 
    
         
            +
            } | {
         
     | 
| 
      
 18 
     | 
    
         
            +
                type: 'close_level';
         
     | 
| 
      
 19 
     | 
    
         
            +
                value: string[];
         
     | 
| 
       14 
20 
     | 
    
         
             
            };
         
     | 
| 
       15 
21 
     | 
    
         
             
            export declare const keyExists: (obj: NestedTreePath, path: string[]) => boolean;
         
     | 
| 
       16 
22 
     | 
    
         
             
            export declare function treePathReducer(state: TreePathState, action: TreePathAction): TreePathState;
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"treePathReducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/reducers/treePathReducer.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C,KAAK,cAAc,GAAG;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,EAAE,GAAG,cAAc,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,cAAc,CAAC;AAE3C,MAAM,MAAM,cAAc,GACpB;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GACjB;IAAE,IAAI,EAAE,eAAe,CAAC;IAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,GAC1C;IAAE,IAAI,EAAE,YAAY,CAAC;IAAC,KAAK,EAAE,UAAU,EAAE,CAAA;CAAE,CAAC; 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"treePathReducer.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/reducers/treePathReducer.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C,KAAK,cAAc,GAAG;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,EAAE,GAAG,cAAc,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,cAAc,CAAC;AAE3C,MAAM,MAAM,cAAc,GACpB;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GACjB;IAAE,IAAI,EAAE,eAAe,CAAC;IAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,GAC1C;IAAE,IAAI,EAAE,YAAY,CAAC;IAAC,KAAK,EAAE,UAAU,EAAE,CAAA;CAAE,GAC3C;IAAE,IAAI,EAAE,YAAY,CAAC;IAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,GACvC;IAAE,IAAI,EAAE,aAAa,CAAC;IAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC;AAG/C,eAAO,MAAM,SAAS,QAAS,cAAc,QAAQ,MAAM,EAAE,YAkB5D,CAAC;AA8EF,wBAAgB,eAAe,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,cAAc,GAAG,aAAa,CAgD3F"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.tsx"],"names":[],"mappings":"AAAA,OAAO, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AASlD,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAmBrC,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA4JhC,CAAC"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Item.types.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAExD,MAAM,WAAW,KAAK;IAClB, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Item.types.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAExD,MAAM,WAAW,KAAK;IAClB,IAAI,EAAE,UAAU,CAAC;IACjB,UAAU,EAAE,MAAM,EAAE,CAAC;CACxB"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KASN,MAAM,OAAO,CAAC;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAYxC,OAAO,KAAK,EAAE,iBAAiB,EAAiB,MAAM,gBAAgB,CAAC;AAMvE;;GAEG;AACH,eAAO,MAAM,UAAU,SAAU,SAAS,CAAC,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Select.d.ts","sourceRoot":"","sources":["../../../src/components/Select/Select.tsx"],"names":[],"mappings":"AAAA,OAAO,KASN,MAAM,OAAO,CAAC;AACf,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAYxC,OAAO,KAAK,EAAE,iBAAiB,EAAiB,MAAM,gBAAgB,CAAC;AAMvE;;GAEG;AACH,eAAO,MAAM,UAAU,SAAU,SAAS,CAAC,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC,gGAqgBzF,CAAC;AAEP,eAAO,MAAM,YAAY;;;mBAvgBQ,SAAS,CAAC,iBAAiB,EAAE,IAAI,CAAC,iBAAiB,EAAE,OAAO,CAAC,CAAC;;;;;;;;;CAmhB9F,CAAC"}
         
     | 
| 
         @@ -32,10 +32,11 @@ type Props = { 
     | 
|
| 
       32 
32 
     | 
    
         
             
                dispatchTreePath: Dispatch<TreePathAction>;
         
     | 
| 
       33 
33 
     | 
    
         
             
                treeView: boolean;
         
     | 
| 
       34 
34 
     | 
    
         
             
                valueToPathMap: Map<string, string[]>;
         
     | 
| 
      
 35 
     | 
    
         
            +
                items: MergedDropdownNodeTransformed[];
         
     | 
| 
       35 
36 
     | 
    
         
             
            };
         
     | 
| 
       36 
37 
     | 
    
         
             
            type ReturnedProps = {
         
     | 
| 
       37 
38 
     | 
    
         
             
                onKeyDown: (event: React.KeyboardEvent<HTMLElement>) => void;
         
     | 
| 
       38 
39 
     | 
    
         
             
            };
         
     | 
| 
       39 
     | 
    
         
            -
            export declare const useKeyNavigation: ({ focusedPath, dispatchFocusedPath, path, dispatchPath, pathMap, focusedToValueMap, handleListToggle, handlePressDown, treePath, dispatchTreePath, treeView, valueToPathMap, }: Props) => ReturnedProps;
         
     | 
| 
      
 40 
     | 
    
         
            +
            export declare const useKeyNavigation: ({ focusedPath, dispatchFocusedPath, path, dispatchPath, pathMap, focusedToValueMap, handleListToggle, handlePressDown, treePath, dispatchTreePath, treeView, valueToPathMap, items, }: Props) => ReturnedProps;
         
     | 
| 
       40 
41 
     | 
    
         
             
            export {};
         
     | 
| 
       41 
42 
     | 
    
         
             
            //# sourceMappingURL=useKeyboardNavigation.d.ts.map
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"useKeyboardNavigation.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/hooks/useKeyboardNavigation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAiB,QAAQ,EAAE,MAAM,OAAO,CAAC;AACrD,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AACxH,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAEpF,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAInE,eAAO,MAAM,IAAI;;;;;;;;;;;;;;CAchB,CAAC;AAEF,eAAO,MAAM,gBAAgB,gBAAiB,gBAAgB,qBAAqB,qBAAqB,8CAIvG,CAAC;AAEF,KAAK,KAAK,GAAG;IACT,WAAW,EAAE,gBAAgB,CAAC;IAC9B,mBAAmB,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC;IACjD,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,OAAO,EAAE,WAAW,CAAC;IACrB,iBAAiB,EAAE,qBAAqB,CAAC;IACzC,gBAAgB,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IAC5C,eAAe,EAAE,CAAC,IAAI,EAAE,6BAA6B,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;IAClG,QAAQ,EAAE,aAAa,CAAC;IACxB,gBAAgB,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;IAC3C,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC; 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"useKeyboardNavigation.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/hooks/useKeyboardNavigation.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAiB,QAAQ,EAAE,MAAM,OAAO,CAAC;AACrD,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,OAAO,EAAE,UAAU,EAAE,SAAS,EAAE,iBAAiB,EAAE,gBAAgB,EAAE,cAAc,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AACxH,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAEpF,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AAInE,eAAO,MAAM,IAAI;;;;;;;;;;;;;;CAchB,CAAC;AAEF,eAAO,MAAM,gBAAgB,gBAAiB,gBAAgB,qBAAqB,qBAAqB,8CAIvG,CAAC;AAEF,KAAK,KAAK,GAAG;IACT,WAAW,EAAE,gBAAgB,CAAC;IAC9B,mBAAmB,EAAE,QAAQ,CAAC,iBAAiB,CAAC,CAAC;IACjD,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,OAAO,EAAE,WAAW,CAAC;IACrB,iBAAiB,EAAE,qBAAqB,CAAC;IACzC,gBAAgB,EAAE,CAAC,MAAM,EAAE,OAAO,KAAK,IAAI,CAAC;IAC5C,eAAe,EAAE,CAAC,IAAI,EAAE,6BAA6B,EAAE,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;IAClG,QAAQ,EAAE,aAAa,CAAC;IACxB,gBAAgB,EAAE,QAAQ,CAAC,cAAc,CAAC,CAAC;IAC3C,QAAQ,EAAE,OAAO,CAAC;IAClB,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACtC,KAAK,EAAE,6BAA6B,EAAE,CAAC;CAC1C,CAAC;AAEF,KAAK,aAAa,GAAG;IACjB,SAAS,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,aAAa,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;CAChE,CAAC;AAGF,eAAO,MAAM,gBAAgB,0LAc1B,KAAK,KAAG,aAkCV,CAAC"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"focusedPathReducer.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/reducers/focusedPathReducer.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;AAE7C,MAAM,MAAM,iBAAiB,GACvB;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GACjB;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,GAC7B;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GAC5C;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GACpC;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,CAAC;AAEpC,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,iBAAiB,GAAG,gBAAgB, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"focusedPathReducer.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/reducers/focusedPathReducer.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,gBAAgB,GAAG,KAAK,CAAC,MAAM,CAAC,CAAC;AAE7C,MAAM,MAAM,iBAAiB,GACvB;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GACjB;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,gBAAgB,CAAA;CAAE,GAC9C;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,GAC7B;IAAE,IAAI,EAAE,mBAAmB,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GAC5C;IAAE,IAAI,EAAE,WAAW,CAAC;IAAC,KAAK,EAAE,MAAM,CAAA;CAAE,GACpC;IAAE,IAAI,EAAE,mBAAmB,CAAA;CAAE,CAAC;AAEpC,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,gBAAgB,EAAE,MAAM,EAAE,iBAAiB,GAAG,gBAAgB,CAkCvG"}
         
     | 
| 
         @@ -7,6 +7,12 @@ export type TreePathAction = { 
     | 
|
| 
       7 
7 
     | 
    
         
             
            } | {
         
     | 
| 
       8 
8 
     | 
    
         
             
                type: 'toggled_level';
         
     | 
| 
       9 
9 
     | 
    
         
             
                value: string[];
         
     | 
| 
      
 10 
     | 
    
         
            +
            } | {
         
     | 
| 
      
 11 
     | 
    
         
            +
                type: 'open_level';
         
     | 
| 
      
 12 
     | 
    
         
            +
                value: string[];
         
     | 
| 
      
 13 
     | 
    
         
            +
            } | {
         
     | 
| 
      
 14 
     | 
    
         
            +
                type: 'close_level';
         
     | 
| 
      
 15 
     | 
    
         
            +
                value: string[];
         
     | 
| 
       10 
16 
     | 
    
         
             
            };
         
     | 
| 
       11 
17 
     | 
    
         
             
            export declare const keyExists: (obj: NestedTreePath, path: string[]) => boolean;
         
     | 
| 
       12 
18 
     | 
    
         
             
            export declare function treePathReducer(state: TreePathState, action: TreePathAction): TreePathState;
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"treePathReducer.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/reducers/treePathReducer.ts"],"names":[],"mappings":"AAEA,KAAK,cAAc,GAAG;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,EAAE,GAAG,cAAc,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,cAAc,CAAC;AAE3C,MAAM,MAAM,cAAc, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"treePathReducer.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/reducers/treePathReducer.ts"],"names":[],"mappings":"AAEA,KAAK,cAAc,GAAG;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,EAAE,GAAG,cAAc,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,cAAc,CAAC;AAE3C,MAAM,MAAM,cAAc,GACpB;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,GACjB;IAAE,IAAI,EAAE,eAAe,CAAC;IAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,GAC1C;IAAE,IAAI,EAAE,YAAY,CAAC;IAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,GACvC;IAAE,IAAI,EAAE,aAAa,CAAC;IAAC,KAAK,EAAE,MAAM,EAAE,CAAA;CAAE,CAAC;AAG/C,eAAO,MAAM,SAAS,QAAS,cAAc,QAAQ,MAAM,EAAE,YAkB5D,CAAC;AAoDF,wBAAgB,eAAe,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,cAAc,GAAG,aAAa,CA0C3F"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Select/ui/TreeList/ui/Item/Item.tsx"],"names":[],"mappings":"AAAA,OAAO, 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Select/ui/TreeList/ui/Item/Item.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA6B,MAAM,OAAO,CAAC;AASlD,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAmBrC,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA4JhC,CAAC"}
         
     |