@salutejs/plasma-new-hope 0.340.0-canary.2305.18873573377.0 → 0.340.0-canary.2314.18974837629.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.css +19 -0
 - package/cjs/components/Combobox/ComboboxNew/Combobox.js +58 -11
 - package/cjs/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js +2 -0
 - package/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js +8 -2
 - package/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js.map +1 -1
 - package/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js +123 -0
 - package/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js.map +1 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.css +57 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +96 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js.map +1 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js +30 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js.map +1 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles_1auklgl.css +2 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.css +54 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +127 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js.map +1 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js +205 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js.map +1 -0
 - package/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles_7nhjnm.css +15 -0
 - package/cjs/index.css +19 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.js +50 -10
 - package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js +2 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js +35 -3
 - package/emotion/cjs/components/Combobox/ComboboxNew/reducers/index.js +1 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js +140 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +126 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js +36 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.types.js +4 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +148 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js +183 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.js +4 -0
 - package/emotion/cjs/components/Combobox/ComboboxNew/ui/index.js +1 -0
 - package/emotion/cjs/examples/components/Combobox/Combobox.config.js +15 -15
 - package/emotion/cjs/examples/components/Combobox/Combobox.js +0 -15
 - package/emotion/es/components/Combobox/ComboboxNew/Combobox.js +52 -12
 - package/emotion/es/components/Combobox/ComboboxNew/Combobox.tokens.js +2 -0
 - package/emotion/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js +35 -3
 - package/emotion/es/components/Combobox/ComboboxNew/reducers/index.js +1 -0
 - package/emotion/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js +123 -0
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +75 -0
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js +13 -0
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.types.js +1 -0
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +97 -0
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js +119 -0
 - package/emotion/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.js +1 -0
 - package/emotion/es/components/Combobox/ComboboxNew/ui/index.js +1 -0
 - package/emotion/es/examples/components/Combobox/Combobox.config.js +15 -15
 - package/es/components/Combobox/ComboboxNew/Combobox.css +19 -0
 - package/es/components/Combobox/ComboboxNew/Combobox.js +59 -12
 - package/es/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/Combobox.tokens.js +2 -0
 - package/es/components/Combobox/ComboboxNew/Combobox.tokens.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js +8 -2
 - package/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js.map +1 -1
 - package/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js +118 -0
 - package/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js.map +1 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.css +57 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +88 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js.map +1 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js +25 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js.map +1 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles_1auklgl.css +2 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.css +54 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +119 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js.map +1 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js +187 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js.map +1 -0
 - package/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles_7nhjnm.css +15 -0
 - package/es/index.css +19 -0
 - package/package.json +4 -4
 - package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.js +50 -10
 - package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js +2 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/hooks/getPathMaps.js +35 -3
 - package/styled-components/cjs/components/Combobox/ComboboxNew/reducers/index.js +1 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/reducers/treePathReducer.js +140 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +126 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js +50 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/TreeList.types.js +4 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +148 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js +296 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.js +4 -0
 - package/styled-components/cjs/components/Combobox/ComboboxNew/ui/index.js +1 -0
 - package/styled-components/cjs/examples/components/Combobox/Combobox.config.js +12 -4
 - package/styled-components/es/components/Combobox/ComboboxNew/Combobox.js +52 -12
 - package/styled-components/es/components/Combobox/ComboboxNew/Combobox.tokens.js +2 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/hooks/getPathMaps.js +35 -3
 - package/styled-components/es/components/Combobox/ComboboxNew/reducers/index.js +1 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/reducers/treePathReducer.js +123 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.js +75 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.js +27 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/TreeList.types.js +1 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.js +97 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js +232 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.js +1 -0
 - package/styled-components/es/components/Combobox/ComboboxNew/ui/index.js +1 -0
 - package/styled-components/es/examples/components/Combobox/Combobox.config.js +12 -4
 - package/types/components/Combobox/ComboboxNew/Combobox.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/Combobox.tokens.d.ts +2 -0
 - package/types/components/Combobox/ComboboxNew/Combobox.tokens.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts +17 -3
 - package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/hooks/getPathMaps.d.ts +2 -1
 - package/types/components/Combobox/ComboboxNew/hooks/getPathMaps.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/reducers/index.d.ts +1 -0
 - package/types/components/Combobox/ComboboxNew/reducers/index.d.ts.map +1 -1
 - package/types/components/Combobox/ComboboxNew/reducers/treePathReducer.d.ts +18 -0
 - package/types/components/Combobox/ComboboxNew/reducers/treePathReducer.d.ts.map +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/TreeList.d.ts +4 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/TreeList.d.ts.map +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.d.ts +6 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.d.ts.map +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/TreeList.types.d.ts +11 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/TreeList.types.d.ts.map +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.d.ts +4 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.d.ts.map +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.d.ts +62 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.d.ts.map +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.d.ts +6 -0
 - package/types/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.d.ts.map +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/index.d.ts +1 -0
 - package/types/components/Combobox/ComboboxNew/ui/index.d.ts.map +1 -1
 - package/types/components/Select/ui/TreeList/ui/Item/Item.types.d.ts +0 -8
 - package/types/components/Select/ui/TreeList/ui/Item/Item.types.d.ts.map +1 -1
 - package/types/examples/components/Combobox/Combobox.config.d.ts.map +1 -1
 - package/types/examples/components/Combobox/Combobox.d.ts +48 -0
 - package/types/examples/components/Combobox/Combobox.d.ts.map +1 -1
 
    
        package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.styles.js
    ADDED
    
    | 
         @@ -0,0 +1,232 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import styled from "styled-components";
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { addFocus, applyEllipsis } from "../../../../../../../mixins";
         
     | 
| 
      
 3 
     | 
    
         
            +
            import { component, mergeConfig } from "../../../../../../../engines";
         
     | 
| 
      
 4 
     | 
    
         
            +
            import { checkboxConfig, checkboxTokens } from "../../../../../../Checkbox";
         
     | 
| 
      
 5 
     | 
    
         
            +
            import { cellConfig, cellTokens } from "../../../../../../Cell";
         
     | 
| 
      
 6 
     | 
    
         
            +
            import { indicatorConfig, indicatorTokens } from "../../../../../../Indicator";
         
     | 
| 
      
 7 
     | 
    
         
            +
            import { IconDisclosureRightCentered, IconDone } from "../../../../../../_Icon";
         
     | 
| 
      
 8 
     | 
    
         
            +
            import { classes, tokens, constants } from "../../../../Combobox.tokens";
         
     | 
| 
      
 9 
     | 
    
         
            +
            export var ItemWrapper = styled.div.withConfig({
         
     | 
| 
      
 10 
     | 
    
         
            +
                displayName: "Item.styles__ItemWrapper",
         
     | 
| 
      
 11 
     | 
    
         
            +
                componentId: "sc-21354cd4-0"
         
     | 
| 
      
 12 
     | 
    
         
            +
            })([
         
     | 
| 
      
 13 
     | 
    
         
            +
                ""
         
     | 
| 
      
 14 
     | 
    
         
            +
            ]);
         
     | 
| 
      
 15 
     | 
    
         
            +
            var mergedCheckboxConfig = mergeConfig(checkboxConfig);
         
     | 
| 
      
 16 
     | 
    
         
            +
            var Checkbox = component(mergedCheckboxConfig);
         
     | 
| 
      
 17 
     | 
    
         
            +
            var mergedCellConfig = mergeConfig(cellConfig);
         
     | 
| 
      
 18 
     | 
    
         
            +
            var Cell = component(mergedCellConfig);
         
     | 
| 
      
 19 
     | 
    
         
            +
            var mergedIndicatorConfig = mergeConfig(indicatorConfig);
         
     | 
| 
      
 20 
     | 
    
         
            +
            var Indicator = component(mergedIndicatorConfig);
         
     | 
| 
      
 21 
     | 
    
         
            +
            export var StyledWrapper = styled.div.withConfig({
         
     | 
| 
      
 22 
     | 
    
         
            +
                displayName: "Item.styles__StyledWrapper",
         
     | 
| 
      
 23 
     | 
    
         
            +
                componentId: "sc-21354cd4-1"
         
     | 
| 
      
 24 
     | 
    
         
            +
            })([
         
     | 
| 
      
 25 
     | 
    
         
            +
                "",
         
     | 
| 
      
 26 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 27 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 28 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 29 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 30 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 31 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 32 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 33 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 34 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 35 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 36 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 37 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 38 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 39 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 40 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 41 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 42 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 43 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 44 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 45 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 46 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 47 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 48 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 49 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 50 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 51 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 52 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 53 
     | 
    
         
            +
                ");width:100%;"
         
     | 
| 
      
 54 
     | 
    
         
            +
            ], cellTokens.cellTitleColor, constants.cellTitleColor, cellTokens.cellBackgroundColor, constants.cellBackgroundColor, cellTokens.cellPadding, tokens.cellPadding, cellTokens.cellPaddingLeftContent, tokens.cellPaddingLeftContent, cellTokens.cellPaddingContent, tokens.cellPaddingContent, cellTokens.cellPaddingRightContent, tokens.cellPaddingRightContent, cellTokens.cellTextboxGap, tokens.cellTextboxGap, cellTokens.cellGap, tokens.cellGap, cellTokens.cellTitleFontFamily, tokens.cellTitleFontFamily, cellTokens.cellTitleFontSize, tokens.cellTitleFontSize, cellTokens.cellTitleFontStyle, tokens.cellTitleFontStyle, cellTokens.cellTitleFontWeight, tokens.cellTitleFontWeight, cellTokens.cellTitleLetterSpacing, tokens.cellTitleLetterSpacing, cellTokens.cellTitleLineHeight, tokens.cellTitleLineHeight);
         
     | 
| 
      
 55 
     | 
    
         
            +
            export var StyledCell = styled(Cell).withConfig({
         
     | 
| 
      
 56 
     | 
    
         
            +
                displayName: "Item.styles__StyledCell",
         
     | 
| 
      
 57 
     | 
    
         
            +
                componentId: "sc-21354cd4-2"
         
     | 
| 
      
 58 
     | 
    
         
            +
            })([
         
     | 
| 
      
 59 
     | 
    
         
            +
                ""
         
     | 
| 
      
 60 
     | 
    
         
            +
            ]);
         
     | 
| 
      
 61 
     | 
    
         
            +
            export var StyledCheckbox = styled(Checkbox).withConfig({
         
     | 
| 
      
 62 
     | 
    
         
            +
                displayName: "Item.styles__StyledCheckbox",
         
     | 
| 
      
 63 
     | 
    
         
            +
                componentId: "sc-21354cd4-3"
         
     | 
| 
      
 64 
     | 
    
         
            +
            })([
         
     | 
| 
      
 65 
     | 
    
         
            +
                "",
         
     | 
| 
      
 66 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 67 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 68 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 69 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 70 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 71 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 72 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 73 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 74 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 75 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 76 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 77 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 78 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 79 
     | 
    
         
            +
                ");"
         
     | 
| 
      
 80 
     | 
    
         
            +
            ], checkboxTokens.triggerSize, tokens.checkboxTriggerSize, checkboxTokens.triggerBorderRadius, tokens.checkboxTriggerBorderRadius, checkboxTokens.fillColor, tokens.checkboxFillColor, checkboxTokens.iconColor, tokens.checkboxIconColor, checkboxTokens.triggerBorderColor, tokens.checkboxTriggerBorderColor, checkboxTokens.triggerBorderCheckedColor, tokens.checkboxTriggerBorderCheckedColor, checkboxTokens.triggerBorderWidth, tokens.checkboxTriggerBorderWidth);
         
     | 
| 
      
 81 
     | 
    
         
            +
            export var StyledIndicator = styled(Indicator).withConfig({
         
     | 
| 
      
 82 
     | 
    
         
            +
                displayName: "Item.styles__StyledIndicator",
         
     | 
| 
      
 83 
     | 
    
         
            +
                componentId: "sc-21354cd4-4"
         
     | 
| 
      
 84 
     | 
    
         
            +
            })([
         
     | 
| 
      
 85 
     | 
    
         
            +
                "",
         
     | 
| 
      
 86 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 87 
     | 
    
         
            +
                ");",
         
     | 
| 
      
 88 
     | 
    
         
            +
                ":var(",
         
     | 
| 
      
 89 
     | 
    
         
            +
                ");"
         
     | 
| 
      
 90 
     | 
    
         
            +
            ], indicatorTokens.size, tokens.indicatorSize, indicatorTokens.color, tokens.itemIconColor);
         
     | 
| 
      
 91 
     | 
    
         
            +
            // TODO: Удалить после поддержки JS переменных в конфиге компонент
         
     | 
| 
      
 92 
     | 
    
         
            +
            export var sizeMap = {
         
     | 
| 
      
 93 
     | 
    
         
            +
                xs: '1rem',
         
     | 
| 
      
 94 
     | 
    
         
            +
                s: '1.5rem'
         
     | 
| 
      
 95 
     | 
    
         
            +
            };
         
     | 
| 
      
 96 
     | 
    
         
            +
            export var StyledArrowLeft = styled(IconDisclosureRightCentered).withConfig({
         
     | 
| 
      
 97 
     | 
    
         
            +
                displayName: "Item.styles__StyledArrowLeft",
         
     | 
| 
      
 98 
     | 
    
         
            +
                componentId: "sc-21354cd4-5"
         
     | 
| 
      
 99 
     | 
    
         
            +
            })([
         
     | 
| 
      
 100 
     | 
    
         
            +
                "width:",
         
     | 
| 
      
 101 
     | 
    
         
            +
                ";height:",
         
     | 
| 
      
 102 
     | 
    
         
            +
                ";&.",
         
     | 
| 
      
 103 
     | 
    
         
            +
                "{transform:rotate(90deg);}"
         
     | 
| 
      
 104 
     | 
    
         
            +
            ], function(param) {
         
     | 
| 
      
 105 
     | 
    
         
            +
                var _param_size = param.size, size = _param_size === void 0 ? 'xs' : _param_size;
         
     | 
| 
      
 106 
     | 
    
         
            +
                return "var(".concat(tokens.disclosureIconSize, ", ").concat(sizeMap[size], ")");
         
     | 
| 
      
 107 
     | 
    
         
            +
            }, function(param) {
         
     | 
| 
      
 108 
     | 
    
         
            +
                var _param_size = param.size, size = _param_size === void 0 ? 'xs' : _param_size;
         
     | 
| 
      
 109 
     | 
    
         
            +
                return "var(".concat(tokens.disclosureIconSize, ", ").concat(sizeMap[size], ")");
         
     | 
| 
      
 110 
     | 
    
         
            +
            }, classes.arrowInverse);
         
     | 
| 
      
 111 
     | 
    
         
            +
            export var StyledArrowRight = styled(IconDisclosureRightCentered).withConfig({
         
     | 
| 
      
 112 
     | 
    
         
            +
                displayName: "Item.styles__StyledArrowRight",
         
     | 
| 
      
 113 
     | 
    
         
            +
                componentId: "sc-21354cd4-6"
         
     | 
| 
      
 114 
     | 
    
         
            +
            })([
         
     | 
| 
      
 115 
     | 
    
         
            +
                "width:",
         
     | 
| 
      
 116 
     | 
    
         
            +
                ";height:",
         
     | 
| 
      
 117 
     | 
    
         
            +
                ";transform:rotate(90deg);&.",
         
     | 
| 
      
 118 
     | 
    
         
            +
                "{transform:rotate(-90deg);}"
         
     | 
| 
      
 119 
     | 
    
         
            +
            ], function(param) {
         
     | 
| 
      
 120 
     | 
    
         
            +
                var _param_size = param.size, size = _param_size === void 0 ? 'xs' : _param_size;
         
     | 
| 
      
 121 
     | 
    
         
            +
                return "var(".concat(tokens.disclosureIconSize, ", ").concat(sizeMap[size], ")");
         
     | 
| 
      
 122 
     | 
    
         
            +
            }, function(param) {
         
     | 
| 
      
 123 
     | 
    
         
            +
                var _param_size = param.size, size = _param_size === void 0 ? 'xs' : _param_size;
         
     | 
| 
      
 124 
     | 
    
         
            +
                return "var(".concat(tokens.disclosureIconSize, ", ").concat(sizeMap[size], ")");
         
     | 
| 
      
 125 
     | 
    
         
            +
            }, classes.arrowInverse);
         
     | 
| 
      
 126 
     | 
    
         
            +
            export var StyledIconDone = styled(IconDone).withConfig({
         
     | 
| 
      
 127 
     | 
    
         
            +
                displayName: "Item.styles__StyledIconDone",
         
     | 
| 
      
 128 
     | 
    
         
            +
                componentId: "sc-21354cd4-7"
         
     | 
| 
      
 129 
     | 
    
         
            +
            })([
         
     | 
| 
      
 130 
     | 
    
         
            +
                "width:",
         
     | 
| 
      
 131 
     | 
    
         
            +
                ";height:",
         
     | 
| 
      
 132 
     | 
    
         
            +
                ";"
         
     | 
| 
      
 133 
     | 
    
         
            +
            ], function(param) {
         
     | 
| 
      
 134 
     | 
    
         
            +
                var _param_size = param.size, size = _param_size === void 0 ? 'xs' : _param_size;
         
     | 
| 
      
 135 
     | 
    
         
            +
                return "var(".concat(tokens.disclosureIconSize, ", ").concat(sizeMap[size], ")");
         
     | 
| 
      
 136 
     | 
    
         
            +
            }, function(param) {
         
     | 
| 
      
 137 
     | 
    
         
            +
                var _param_size = param.size, size = _param_size === void 0 ? 'xs' : _param_size;
         
     | 
| 
      
 138 
     | 
    
         
            +
                return "var(".concat(tokens.disclosureIconSize, ", ").concat(sizeMap[size], ")");
         
     | 
| 
      
 139 
     | 
    
         
            +
            });
         
     | 
| 
      
 140 
     | 
    
         
            +
            export var DisclosureIconWrapper = styled.div.withConfig({
         
     | 
| 
      
 141 
     | 
    
         
            +
                displayName: "Item.styles__DisclosureIconWrapper",
         
     | 
| 
      
 142 
     | 
    
         
            +
                componentId: "sc-21354cd4-8"
         
     | 
| 
      
 143 
     | 
    
         
            +
            })([
         
     | 
| 
      
 144 
     | 
    
         
            +
                "line-height:0;color:var(",
         
     | 
| 
      
 145 
     | 
    
         
            +
                ");visibility:",
         
     | 
| 
      
 146 
     | 
    
         
            +
                ";&:hover{color:var(",
         
     | 
| 
      
 147 
     | 
    
         
            +
                ");}"
         
     | 
| 
      
 148 
     | 
    
         
            +
            ], tokens.disclosureIconColor, function(param) {
         
     | 
| 
      
 149 
     | 
    
         
            +
                var visibility = param.visibility;
         
     | 
| 
      
 150 
     | 
    
         
            +
                return visibility || 'visible';
         
     | 
| 
      
 151 
     | 
    
         
            +
            }, tokens.disclosureIconColorHover);
         
     | 
| 
      
 152 
     | 
    
         
            +
            export var IconWrapper = styled.div.withConfig({
         
     | 
| 
      
 153 
     | 
    
         
            +
                displayName: "Item.styles__IconWrapper",
         
     | 
| 
      
 154 
     | 
    
         
            +
                componentId: "sc-21354cd4-9"
         
     | 
| 
      
 155 
     | 
    
         
            +
            })([
         
     | 
| 
      
 156 
     | 
    
         
            +
                "display:flex;align-items:center;justify-content:center;flex:none;width:",
         
     | 
| 
      
 157 
     | 
    
         
            +
                ";height:",
         
     | 
| 
      
 158 
     | 
    
         
            +
                ";line-height:0;color:var(",
         
     | 
| 
      
 159 
     | 
    
         
            +
                ");"
         
     | 
| 
      
 160 
     | 
    
         
            +
            ], function(param) {
         
     | 
| 
      
 161 
     | 
    
         
            +
                var variant = param.variant;
         
     | 
| 
      
 162 
     | 
    
         
            +
                return "var(".concat(variant === 'tight' ? tokens.itemIconSizeTight : tokens.itemIconSize, ")");
         
     | 
| 
      
 163 
     | 
    
         
            +
            }, function(param) {
         
     | 
| 
      
 164 
     | 
    
         
            +
                var variant = param.variant;
         
     | 
| 
      
 165 
     | 
    
         
            +
                return "var(".concat(variant === 'tight' ? tokens.itemIconSizeTight : tokens.itemIconSize, ")");
         
     | 
| 
      
 166 
     | 
    
         
            +
            }, tokens.itemIconColor);
         
     | 
| 
      
 167 
     | 
    
         
            +
            export var StyledText = styled.div.withConfig({
         
     | 
| 
      
 168 
     | 
    
         
            +
                displayName: "Item.styles__StyledText",
         
     | 
| 
      
 169 
     | 
    
         
            +
                componentId: "sc-21354cd4-10"
         
     | 
| 
      
 170 
     | 
    
         
            +
            })([
         
     | 
| 
      
 171 
     | 
    
         
            +
                "",
         
     | 
| 
      
 172 
     | 
    
         
            +
                ";flex:1;"
         
     | 
| 
      
 173 
     | 
    
         
            +
            ], applyEllipsis());
         
     | 
| 
      
 174 
     | 
    
         
            +
            export var Wrapper = styled.div.withConfig({
         
     | 
| 
      
 175 
     | 
    
         
            +
                displayName: "Item.styles__Wrapper",
         
     | 
| 
      
 176 
     | 
    
         
            +
                componentId: "sc-21354cd4-11"
         
     | 
| 
      
 177 
     | 
    
         
            +
            })([
         
     | 
| 
      
 178 
     | 
    
         
            +
                "display:flex;align-items:center;gap:var(",
         
     | 
| 
      
 179 
     | 
    
         
            +
                ");min-height:var(",
         
     | 
| 
      
 180 
     | 
    
         
            +
                ");margin:0;box-sizing:content-box;padding:",
         
     | 
| 
      
 181 
     | 
    
         
            +
                ";font-family:var(",
         
     | 
| 
      
 182 
     | 
    
         
            +
                ");font-size:var(",
         
     | 
| 
      
 183 
     | 
    
         
            +
                ");font-style:var(",
         
     | 
| 
      
 184 
     | 
    
         
            +
                ");font-weight:var(",
         
     | 
| 
      
 185 
     | 
    
         
            +
                ");letter-spacing:var(",
         
     | 
| 
      
 186 
     | 
    
         
            +
                ");line-height:var(",
         
     | 
| 
      
 187 
     | 
    
         
            +
                ");background-color:var(",
         
     | 
| 
      
 188 
     | 
    
         
            +
                ");color:var(--text-primary);border-radius:calc(var(",
         
     | 
| 
      
 189 
     | 
    
         
            +
                ") - 0.125rem - var(",
         
     | 
| 
      
 190 
     | 
    
         
            +
                ",0rem));user-select:none;background-clip:padding-box;&:hover:not(.",
         
     | 
| 
      
 191 
     | 
    
         
            +
                "){cursor:pointer;background-color:var(",
         
     | 
| 
      
 192 
     | 
    
         
            +
                ");}&.",
         
     | 
| 
      
 193 
     | 
    
         
            +
                "{background-color:var(",
         
     | 
| 
      
 194 
     | 
    
         
            +
                ");}&.",
         
     | 
| 
      
 195 
     | 
    
         
            +
                "{opacity:",
         
     | 
| 
      
 196 
     | 
    
         
            +
                ";cursor:not-allowed;}:focus{outline:none;}",
         
     | 
| 
      
 197 
     | 
    
         
            +
                ";"
         
     | 
| 
      
 198 
     | 
    
         
            +
            ], tokens.itemGap, tokens.itemHeight, function(param) {
         
     | 
| 
      
 199 
     | 
    
         
            +
                var variant = param.variant;
         
     | 
| 
      
 200 
     | 
    
         
            +
                return "var(".concat(variant === 'tight' ? tokens.itemPaddingTight : tokens.itemPadding, ")");
         
     | 
| 
      
 201 
     | 
    
         
            +
            }, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, constants.itemBackground, tokens.borderRadius, tokens.dropdownBorderWidth, classes.dropdownItemIsDisabled, tokens.itemBackgroundHover, classes.dropdownItemIsActive, tokens.itemBackgroundHover, classes.dropdownItemIsDisabled, constants.opacity, addFocus({
         
     | 
| 
      
 202 
     | 
    
         
            +
                outlineSize: '0',
         
     | 
| 
      
 203 
     | 
    
         
            +
                outlineOffset: '0',
         
     | 
| 
      
 204 
     | 
    
         
            +
                outlineColor: "var(".concat(constants.focusColor, ")"),
         
     | 
| 
      
 205 
     | 
    
         
            +
                outlineRadius: "calc(var(".concat(tokens.borderRadius, ") - 0.125rem - var(").concat(tokens.dropdownBorderWidth, ", 0rem))"),
         
     | 
| 
      
 206 
     | 
    
         
            +
                hasTransition: false,
         
     | 
| 
      
 207 
     | 
    
         
            +
                customFocusRules: "\n            &.".concat(classes.dropdownItemIsFocused, ":before {\n                outline: none;\n                box-shadow: inset 0 0 0 0.0625rem var(").concat(constants.focusColor, ");\n            }\n        ")
         
     | 
| 
      
 208 
     | 
    
         
            +
            }));
         
     | 
| 
      
 209 
     | 
    
         
            +
            export var StyledCheckboxWrapper = styled.span.withConfig({
         
     | 
| 
      
 210 
     | 
    
         
            +
                displayName: "Item.styles__StyledCheckboxWrapper",
         
     | 
| 
      
 211 
     | 
    
         
            +
                componentId: "sc-21354cd4-12"
         
     | 
| 
      
 212 
     | 
    
         
            +
            })([
         
     | 
| 
      
 213 
     | 
    
         
            +
                ""
         
     | 
| 
      
 214 
     | 
    
         
            +
            ]);
         
     | 
| 
      
 215 
     | 
    
         
            +
            export var ChildItems = styled.div.withConfig({
         
     | 
| 
      
 216 
     | 
    
         
            +
                displayName: "Item.styles__ChildItems",
         
     | 
| 
      
 217 
     | 
    
         
            +
                componentId: "sc-21354cd4-13"
         
     | 
| 
      
 218 
     | 
    
         
            +
            })([
         
     | 
| 
      
 219 
     | 
    
         
            +
                ""
         
     | 
| 
      
 220 
     | 
    
         
            +
            ]);
         
     | 
| 
      
 221 
     | 
    
         
            +
            export var Offset = styled.div.withConfig({
         
     | 
| 
      
 222 
     | 
    
         
            +
                displayName: "Item.styles__Offset",
         
     | 
| 
      
 223 
     | 
    
         
            +
                componentId: "sc-21354cd4-14"
         
     | 
| 
      
 224 
     | 
    
         
            +
            })([
         
     | 
| 
      
 225 
     | 
    
         
            +
                "width:calc(",
         
     | 
| 
      
 226 
     | 
    
         
            +
                " * var(",
         
     | 
| 
      
 227 
     | 
    
         
            +
                "));flex:none;margin-right:calc(var(",
         
     | 
| 
      
 228 
     | 
    
         
            +
                ") * -1);"
         
     | 
| 
      
 229 
     | 
    
         
            +
            ], function(param) {
         
     | 
| 
      
 230 
     | 
    
         
            +
                var depth = param.depth;
         
     | 
| 
      
 231 
     | 
    
         
            +
                return depth || 0;
         
     | 
| 
      
 232 
     | 
    
         
            +
            }, tokens.itemTreeOffsetWidth, tokens.itemGap);
         
     | 
    
        package/styled-components/es/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.types.js
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            export { };
         
     | 
| 
         @@ -266,6 +266,8 @@ export var config = { 
     | 
|
| 
       266 
266 
     | 
    
         
             
                            ":0 0.5rem 0 0;",
         
     | 
| 
       267 
267 
     | 
    
         
             
                            ":1.5rem;",
         
     | 
| 
       268 
268 
     | 
    
         
             
                            ":1.5rem;",
         
     | 
| 
      
 269 
     | 
    
         
            +
                            ":0.5rem;",
         
     | 
| 
      
 270 
     | 
    
         
            +
                            ":2rem;",
         
     | 
| 
       269 
271 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       270 
272 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       271 
273 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
         @@ -296,7 +298,7 @@ export var config = { 
     | 
|
| 
       296 
298 
     | 
    
         
             
                            ":1rem;",
         
     | 
| 
       297 
299 
     | 
    
         
             
                            ":0.375rem;",
         
     | 
| 
       298 
300 
     | 
    
         
             
                            ":0.375rem;"
         
     | 
| 
       299 
     | 
    
         
            -
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconMargin, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight),
         
     | 
| 
      
 301 
     | 
    
         
            +
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconMargin, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.itemGap, tokens.itemTreeOffsetWidth, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight),
         
     | 
| 
       300 
302 
     | 
    
         
             
                        m: css([
         
     | 
| 
       301 
303 
     | 
    
         
             
                            "",
         
     | 
| 
       302 
304 
     | 
    
         
             
                            ":3rem;",
         
     | 
| 
         @@ -369,6 +371,8 @@ export var config = { 
     | 
|
| 
       369 
371 
     | 
    
         
             
                            ":0 0.375rem 0 0;",
         
     | 
| 
       370 
372 
     | 
    
         
             
                            ":1.5rem;",
         
     | 
| 
       371 
373 
     | 
    
         
             
                            ":1.5rem;",
         
     | 
| 
      
 374 
     | 
    
         
            +
                            ":0.375rem;",
         
     | 
| 
      
 375 
     | 
    
         
            +
                            ":2rem;",
         
     | 
| 
       372 
376 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       373 
377 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       374 
378 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
         @@ -399,7 +403,7 @@ export var config = { 
     | 
|
| 
       399 
403 
     | 
    
         
             
                            ":0.875rem;",
         
     | 
| 
       400 
404 
     | 
    
         
             
                            ":0.375rem;",
         
     | 
| 
       401 
405 
     | 
    
         
             
                            ":0.375rem;"
         
     | 
| 
       402 
     | 
    
         
            -
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconMargin, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight),
         
     | 
| 
      
 406 
     | 
    
         
            +
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconMargin, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.itemGap, tokens.itemTreeOffsetWidth, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight),
         
     | 
| 
       403 
407 
     | 
    
         
             
                        s: css([
         
     | 
| 
       404 
408 
     | 
    
         
             
                            "",
         
     | 
| 
       405 
409 
     | 
    
         
             
                            ":2.5rem;",
         
     | 
| 
         @@ -472,6 +476,8 @@ export var config = { 
     | 
|
| 
       472 
476 
     | 
    
         
             
                            ":1.5rem;",
         
     | 
| 
       473 
477 
     | 
    
         
             
                            ":1rem;",
         
     | 
| 
       474 
478 
     | 
    
         
             
                            ":0 0.375rem 0 0;",
         
     | 
| 
      
 479 
     | 
    
         
            +
                            ":0.375rem;",
         
     | 
| 
      
 480 
     | 
    
         
            +
                            ":1.875rem;",
         
     | 
| 
       475 
481 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       476 
482 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       477 
483 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
         @@ -502,7 +508,7 @@ export var config = { 
     | 
|
| 
       502 
508 
     | 
    
         
             
                            ":0.75rem;",
         
     | 
| 
       503 
509 
     | 
    
         
             
                            ":0.25rem;",
         
     | 
| 
       504 
510 
     | 
    
         
             
                            ":0.25rem;"
         
     | 
| 
       505 
     | 
    
         
            -
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.itemIconMargin, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight),
         
     | 
| 
      
 511 
     | 
    
         
            +
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.itemIconMargin, tokens.itemGap, tokens.itemTreeOffsetWidth, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight),
         
     | 
| 
       506 
512 
     | 
    
         
             
                        xs: css([
         
     | 
| 
       507 
513 
     | 
    
         
             
                            "",
         
     | 
| 
       508 
514 
     | 
    
         
             
                            ":2rem;",
         
     | 
| 
         @@ -575,6 +581,8 @@ export var config = { 
     | 
|
| 
       575 
581 
     | 
    
         
             
                            ":1rem;",
         
     | 
| 
       576 
582 
     | 
    
         
             
                            ":1rem;",
         
     | 
| 
       577 
583 
     | 
    
         
             
                            ":0 0.25rem 0 0;",
         
     | 
| 
      
 584 
     | 
    
         
            +
                            ":0.25rem;",
         
     | 
| 
      
 585 
     | 
    
         
            +
                            ":1.25rem;",
         
     | 
| 
       578 
586 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       579 
587 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
       580 
588 
     | 
    
         
             
                            ":0rem;",
         
     | 
| 
         @@ -605,7 +613,7 @@ export var config = { 
     | 
|
| 
       605 
613 
     | 
    
         
             
                            ":0.5rem;",
         
     | 
| 
       606 
614 
     | 
    
         
             
                            ":0.125rem;",
         
     | 
| 
       607 
615 
     | 
    
         
             
                            ":0.125rem;"
         
     | 
| 
       608 
     | 
    
         
            -
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.itemIconMargin, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight)
         
     | 
| 
      
 616 
     | 
    
         
            +
                        ], tokens.textFieldHeight, tokens.textFieldPadding, tokens.textFieldPaddingWithChips, tokens.textFieldBorderRadius, tokens.textFieldLeftContentMargin, tokens.textFieldRightContentMargin, tokens.textFieldRightContentWithHintMargin, tokens.textFieldContentRightWrapperGap, tokens.textFieldContentRightWrapperMargin, tokens.textFieldTextBeforeMargin, tokens.textFieldTextAfterMargin, tokens.textFieldFontFamily, tokens.textFieldFontSize, tokens.textFieldFontStyle, tokens.textFieldFontWeight, tokens.textFieldLetterSpacing, tokens.textFieldLineHeight, tokens.textFieldLabelOffset, tokens.textFieldLabelFontFamily, tokens.textFieldLabelFontSize, tokens.textFieldLabelFontStyle, tokens.textFieldLabelFontWeight, tokens.textFieldLabelLetterSpacing, tokens.textFieldLabelLineHeight, tokens.textFieldHintMargin, tokens.textFieldHintTargetSize, tokens.textFieldHintInnerLabelPlacementOffset, tokens.textFieldClearHintInnerLabelPlacementOffset, tokens.textFieldLeftHelperOffset, tokens.textFieldLeftHelperFontFamily, tokens.textFieldLeftHelperFontSize, tokens.textFieldLeftHelperFontStyle, tokens.textFieldLeftHelperFontWeight, tokens.textFieldLeftHelperLetterSpacing, tokens.textFieldLeftHelperLineHeight, tokens.textFieldLabelInnerPadding, tokens.textFieldContentLabelInnerPadding, tokens.textFieldIndicatorSizeInner, tokens.textFieldIndicatorSizeOuter, tokens.textFieldIndicatorLabelPlacementInner, tokens.textFieldIndicatorLabelPlacementOuter, tokens.textFieldIndicatorLabelPlacementInnerRight, tokens.textFieldIndicatorLabelPlacementOuterRight, tokens.textFieldClearIndicatorLabelPlacementInner, tokens.textFieldClearIndicatorLabelPlacementInnerRight, tokens.textFieldClearIndicatorHintInnerRight, tokens.textFieldChipGap, tokens.textFieldChipBorderRadius, tokens.textFieldChipWidth, tokens.textFieldChipHeight, tokens.textFieldChipPadding, tokens.textFieldChipClearContentMarginLeft, tokens.textFieldChipClearContentMarginRight, tokens.textFieldChipCloseIconSize, tokens.textFieldChipFontFamily, tokens.textFieldChipFontSize, tokens.textFieldChipFontStyle, tokens.textFieldChipFontWeight, tokens.textFieldChipLetterSpacing, tokens.textFieldChipLineHeight, tokens.emptyStatePadding, tokens.padding, tokens.borderRadius, tokens.itemHeight, tokens.itemPadding, tokens.itemPaddingTight, tokens.itemBorderRadius, tokens.itemIconSize, tokens.itemIconSizeTight, tokens.itemIconMargin, tokens.itemGap, tokens.itemTreeOffsetWidth, tokens.cellPadding, tokens.cellPaddingLeftContent, tokens.cellPaddingContent, tokens.cellPaddingRightContent, tokens.cellTextboxGap, tokens.cellGap, tokens.cellTitleFontFamily, tokens.cellTitleFontSize, tokens.cellTitleFontStyle, tokens.cellTitleFontWeight, tokens.cellTitleLetterSpacing, tokens.cellTitleLineHeight, tokens.fontFamily, tokens.fontSize, tokens.fontStyle, tokens.fontWeight, tokens.fontLetterSpacing, tokens.fontLineHeight, tokens.checkboxTriggerSize, tokens.checkboxTriggerSizeTight, tokens.checkboxTriggerBorderRadius, tokens.checkboxTriggerBorderRadiusTight, tokens.checkboxTriggerBorderWidth, tokens.indicatorSize, tokens.dividerMarginTop, tokens.dividerMarginRight, tokens.dividerMarginBottom, tokens.dividerMarginLeft, tokens.dividerMarginTopTight, tokens.dividerMarginBottomTight)
         
     | 
| 
       609 
617 
     | 
    
         
             
                    },
         
     | 
| 
       610 
618 
     | 
    
         
             
                    labelPlacement: {
         
     | 
| 
       611 
619 
     | 
    
         
             
                        inner: css([
         
     | 
| 
         @@ -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,2FAomBxG,CAAC;AAEP,eAAO,MAAM,cAAc;;;mBAtmBQ,SAAS,CAAC,gBAAgB,EAAE,IAAI,CAAC,aAAa,EAAE,OAAO,GAAG,eAAe,CAAC,CAAC;;;;;;;;;;;;;;;;;;CA2nB7G,CAAC"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Combobox.tokens.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.tokens.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO;;;;;;;;;;;;CAYnB,CAAC;AAEF,eAAO,MAAM,MAAM 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Combobox.tokens.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.tokens.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO;;;;;;;;;;;;CAYnB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA+Jf,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuG5B,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;CAoBrB,CAAC"}
         
     | 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            import type { CSSProperties, ButtonHTMLAttributes, ChangeEventHandler } from 'react';
         
     | 
| 
      
 1 
     | 
    
         
            +
            import type { CSSProperties, ButtonHTMLAttributes, ChangeEventHandler, Dispatch } from 'react';
         
     | 
| 
       2 
2 
     | 
    
         
             
            import * as React from 'react';
         
     | 
| 
       3 
3 
     | 
    
         
             
            import { RequiredProps, HintProps, LabelProps } from '../../TextField/TextField.types';
         
     | 
| 
       4 
4 
     | 
    
         
             
            import { DropdownProps } from '../../Dropdown/Dropdown.types';
         
     | 
| 
       5 
     | 
    
         
            -
            import { FocusedPathState } from './reducers';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import { FocusedPathState, TreePathState, TreePathAction } from './reducers';
         
     | 
| 
       6 
6 
     | 
    
         
             
            import { ItemOption, ItemOptionTransformed } from './ui/Inner/ui/Item/Item.types';
         
     | 
| 
       7 
7 
     | 
    
         
             
            import type { ValueToCheckedMapType } from './hooks/getPathMaps';
         
     | 
| 
       8 
8 
     | 
    
         
             
            export type SelectAllProps = {
         
     | 
| 
         @@ -222,6 +222,16 @@ type BasicProps<T extends ItemOption = ItemOption> = { 
     | 
|
| 
       222 
222 
     | 
    
         
             
                 * Текст для состояния когда нет результата.
         
     | 
| 
       223 
223 
     | 
    
         
             
                 */
         
     | 
| 
       224 
224 
     | 
    
         
             
                emptyStateDescription?: React.ReactNode;
         
     | 
| 
      
 225 
     | 
    
         
            +
                /**
         
     | 
| 
      
 226 
     | 
    
         
            +
                 * Режим отображения выпадающего списка в виде дерева.
         
     | 
| 
      
 227 
     | 
    
         
            +
                 * @default false
         
     | 
| 
      
 228 
     | 
    
         
            +
                 */
         
     | 
| 
      
 229 
     | 
    
         
            +
                treeView?: boolean;
         
     | 
| 
      
 230 
     | 
    
         
            +
                /**
         
     | 
| 
      
 231 
     | 
    
         
            +
                 * Сторона расположения стрелки скрытия/раскрытия.
         
     | 
| 
      
 232 
     | 
    
         
            +
                 * @default left
         
     | 
| 
      
 233 
     | 
    
         
            +
                 */
         
     | 
| 
      
 234 
     | 
    
         
            +
                arrowPlacement?: 'left' | 'right';
         
     | 
| 
       225 
235 
     | 
    
         
             
                /**
         
     | 
| 
       226 
236 
     | 
    
         
             
                 * @deprecated Использовать listMaxHeight.
         
     | 
| 
       227 
237 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -254,6 +264,10 @@ export type ItemContext = { 
     | 
|
| 
       254 
264 
     | 
    
         
             
                variant: ComboboxProps['variant'];
         
     | 
| 
       255 
265 
     | 
    
         
             
                renderItem: ComboboxProps['renderItem'];
         
     | 
| 
       256 
266 
     | 
    
         
             
                treeId: string;
         
     | 
| 
      
 267 
     | 
    
         
            +
                treePath: TreePathState;
         
     | 
| 
      
 268 
     | 
    
         
            +
                dispatchTreePath: Dispatch<TreePathAction>;
         
     | 
| 
      
 269 
     | 
    
         
            +
                arrowPlacement: ComboboxProps['arrowPlacement'];
         
     | 
| 
      
 270 
     | 
    
         
            +
                valueToPathMap: Map<string, string[]>;
         
     | 
| 
       257 
271 
     | 
    
         
             
            };
         
     | 
| 
       258 
     | 
    
         
            -
            export {};
         
     | 
| 
      
 272 
     | 
    
         
            +
            export type { ItemOption, ItemOptionTransformed };
         
     | 
| 
       259 
273 
     | 
    
         
             
            //# sourceMappingURL=Combobox.types.d.ts.map
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"Combobox.types.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC; 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Combobox.types.d.ts","sourceRoot":"","sources":["../../../../src/components/Combobox/ComboboxNew/Combobox.types.ts"],"names":[],"mappings":"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"}
         
     | 
| 
         @@ -4,6 +4,7 @@ export type PathMapType = Map<string, number>; 
     | 
|
| 
       4 
4 
     | 
    
         
             
            export type FocusedToValueMapType = Map<string, ItemOptionTransformed>;
         
     | 
| 
       5 
5 
     | 
    
         
             
            export type ValueToCheckedMapType = Map<ItemOptionTransformed['value'], boolean | 'done' | 'dot' | 'indeterminate'>;
         
     | 
| 
       6 
6 
     | 
    
         
             
            export type ValueToItemMapType = Map<ItemOptionTransformed['value'], ItemOptionTransformed>;
         
     | 
| 
      
 7 
     | 
    
         
            +
            export type ValueToPathMapType = Map<string, string[]>;
         
     | 
| 
       7 
8 
     | 
    
         
             
            export declare const getPathMap: (items: ComboboxProps["items"]) => [PathMapType, FocusedToValueMapType];
         
     | 
| 
       8 
     | 
    
         
            -
            export declare const getTreeMaps: (items: ComboboxProps["items"]) => [ValueToCheckedMapType, ValueToItemMapType];
         
     | 
| 
      
 9 
     | 
    
         
            +
            export declare const getTreeMaps: (items: ComboboxProps["items"]) => [ValueToCheckedMapType, ValueToItemMapType, ValueToPathMapType];
         
     | 
| 
       9 
10 
     | 
    
         
             
            //# sourceMappingURL=getPathMaps.d.ts.map
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"getPathMaps.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/hooks/getPathMaps.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAEvE,MAAM,MAAM,WAAW,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAC9C,MAAM,MAAM,qBAAqB,GAAG,GAAG,CAAC,MAAM,EAAE,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,qBAAqB,GAAG,GAAG,CAAC,qBAAqB,CAAC,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,KAAK,GAAG,eAAe,CAAC,CAAC;AACpH,MAAM,MAAM,kBAAkB,GAAG,GAAG,CAAC,qBAAqB,CAAC,OAAO,CAAC,EAAE,qBAAqB,CAAC,CAAC; 
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"getPathMaps.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/hooks/getPathMaps.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAClD,OAAO,EAAE,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAEvE,MAAM,MAAM,WAAW,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAC9C,MAAM,MAAM,qBAAqB,GAAG,GAAG,CAAC,MAAM,EAAE,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,qBAAqB,GAAG,GAAG,CAAC,qBAAqB,CAAC,OAAO,CAAC,EAAE,OAAO,GAAG,MAAM,GAAG,KAAK,GAAG,eAAe,CAAC,CAAC;AACpH,MAAM,MAAM,kBAAkB,GAAG,GAAG,CAAC,qBAAqB,CAAC,OAAO,CAAC,EAAE,qBAAqB,CAAC,CAAC;AAC5F,MAAM,MAAM,kBAAkB,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;AAEvD,eAAO,MAAM,UAAU,UAAW,aAAa,CAAC,OAAO,CAAC,KAqBb,CAAC,WAAW,EAAE,qBAAqB,CAC7E,CAAC;AAEF,eAAO,MAAM,WAAW,UAAW,aAAa,CAAC,OAAO,CAAC,KAuBS,CAC1D,qBAAqB,EACrB,kBAAkB,EAClB,kBAAkB,CAEzB,CAAC"}
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/reducers/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC"}
         
     | 
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Combobox/ComboboxNew/reducers/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,sBAAsB,CAAC;AACrC,cAAc,mBAAmB,CAAC"}
         
     | 
| 
         @@ -0,0 +1,18 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { ItemOption } from '../Combobox.types';
         
     | 
| 
      
 2 
     | 
    
         
            +
            type NestedTreePath = {
         
     | 
| 
      
 3 
     | 
    
         
            +
                [key: string]: {} | NestedTreePath;
         
     | 
| 
      
 4 
     | 
    
         
            +
            };
         
     | 
| 
      
 5 
     | 
    
         
            +
            export type TreePathState = NestedTreePath;
         
     | 
| 
      
 6 
     | 
    
         
            +
            export type TreePathAction = {
         
     | 
| 
      
 7 
     | 
    
         
            +
                type: 'reset';
         
     | 
| 
      
 8 
     | 
    
         
            +
            } | {
         
     | 
| 
      
 9 
     | 
    
         
            +
                type: 'toggled_level';
         
     | 
| 
      
 10 
     | 
    
         
            +
                value: string[];
         
     | 
| 
      
 11 
     | 
    
         
            +
            } | {
         
     | 
| 
      
 12 
     | 
    
         
            +
                type: 'expand_all';
         
     | 
| 
      
 13 
     | 
    
         
            +
                value: ItemOption[];
         
     | 
| 
      
 14 
     | 
    
         
            +
            };
         
     | 
| 
      
 15 
     | 
    
         
            +
            export declare const keyExists: (obj: NestedTreePath, path: string[]) => boolean;
         
     | 
| 
      
 16 
     | 
    
         
            +
            export declare function treePathReducer(state: TreePathState, action: TreePathAction): TreePathState;
         
     | 
| 
      
 17 
     | 
    
         
            +
            export {};
         
     | 
| 
      
 18 
     | 
    
         
            +
            //# sourceMappingURL=treePathReducer.d.ts.map
         
     | 
| 
         @@ -0,0 +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;AAGlD,eAAO,MAAM,SAAS,QAAS,cAAc,QAAQ,MAAM,EAAE,YAkB5D,CAAC;AA8EF,wBAAgB,eAAe,CAAC,KAAK,EAAE,aAAa,EAAE,MAAM,EAAE,cAAc,GAAG,aAAa,CAgC3F"}
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"TreeList.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/TreeList.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;AAItC,OAAO,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAIzC,eAAO,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA0BpC,CAAC"}
         
     | 
| 
         @@ -0,0 +1,6 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { SelectProps } from '../../../../../components/Select';
         
     | 
| 
      
 2 
     | 
    
         
            +
            export declare const ListWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
         
     | 
| 
      
 3 
     | 
    
         
            +
            export declare const ScrollContainer: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
         
     | 
| 
      
 4 
     | 
    
         
            +
                listMaxHeight?: SelectProps["listMaxHeight"];
         
     | 
| 
      
 5 
     | 
    
         
            +
            }>;
         
     | 
| 
      
 6 
     | 
    
         
            +
            //# sourceMappingURL=TreeList.styles.d.ts.map
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"TreeList.styles.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/TreeList.styles.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAIpD,eAAO,MAAM,WAAW,qKAQvB,CAAC;AAEF,eAAO,MAAM,eAAe;oBACR,WAAW,CAAC,eAAe,CAAC;EAM/C,CAAC"}
         
     | 
| 
         @@ -0,0 +1,11 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import type { UIEvent, ReactNode } from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import { ComboboxProps } from '../../Combobox.types';
         
     | 
| 
      
 3 
     | 
    
         
            +
            export interface Props {
         
     | 
| 
      
 4 
     | 
    
         
            +
                items: ComboboxProps['items'];
         
     | 
| 
      
 5 
     | 
    
         
            +
                listMaxHeight: ComboboxProps['listMaxHeight'];
         
     | 
| 
      
 6 
     | 
    
         
            +
                onScroll?: (e: UIEvent<HTMLElement>) => void;
         
     | 
| 
      
 7 
     | 
    
         
            +
                virtual?: boolean;
         
     | 
| 
      
 8 
     | 
    
         
            +
                beforeList?: ReactNode;
         
     | 
| 
      
 9 
     | 
    
         
            +
                afterList?: ReactNode;
         
     | 
| 
      
 10 
     | 
    
         
            +
            }
         
     | 
| 
      
 11 
     | 
    
         
            +
            //# sourceMappingURL=TreeList.types.d.ts.map
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"TreeList.types.d.ts","sourceRoot":"","sources":["../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/TreeList.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEhD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AAErD,MAAM,WAAW,KAAK;IAClB,KAAK,EAAE,aAAa,CAAC,OAAO,CAAC,CAAC;IAC9B,aAAa,EAAE,aAAa,CAAC,eAAe,CAAC,CAAC;IAC9C,QAAQ,CAAC,EAAE,CAAC,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC,KAAK,IAAI,CAAC;IAC7C,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,SAAS,CAAC,EAAE,SAAS,CAAC;CACzB"}
         
     | 
| 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            {"version":3,"file":"Item.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/Combobox/ComboboxNew/ui/TreeList/ui/Item/Item.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAC;AAO1C,OAAO,EAAE,KAAK,EAAE,MAAM,cAAc,CAAC;AAmBrC,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,KAAK,CA0IhC,CAAC"}
         
     | 
| 
         @@ -0,0 +1,62 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import { CSSProperties } from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import type { ComboboxProps } from '../../../../Combobox.types';
         
     | 
| 
      
 3 
     | 
    
         
            +
            export declare const ItemWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
         
     | 
| 
      
 4 
     | 
    
         
            +
            export declare const StyledWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
         
     | 
| 
      
 5 
     | 
    
         
            +
            export declare const StyledCell: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("../../../../../../../engines/types").PropsType<import("../../../../../../../engines/types").Variants> & (({
         
     | 
| 
      
 6 
     | 
    
         
            +
                size?: string;
         
     | 
| 
      
 7 
     | 
    
         
            +
                view?: string;
         
     | 
| 
      
 8 
     | 
    
         
            +
                contentLeft?: import("react").ReactNode;
         
     | 
| 
      
 9 
     | 
    
         
            +
                contentRight?: import("react").ReactNode;
         
     | 
| 
      
 10 
     | 
    
         
            +
                alignContentLeft?: import("../../../../../../Cell/Cell.types").AlignProp;
         
     | 
| 
      
 11 
     | 
    
         
            +
                alignContentRight?: import("../../../../../../Cell/Cell.types").AlignProp;
         
     | 
| 
      
 12 
     | 
    
         
            +
                stretching?: "fixed" | "filled" | "auto";
         
     | 
| 
      
 13 
     | 
    
         
            +
                content?: import("react").ReactNode;
         
     | 
| 
      
 14 
     | 
    
         
            +
                description?: string;
         
     | 
| 
      
 15 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 16 
     | 
    
         
            +
                title?: string;
         
     | 
| 
      
 17 
     | 
    
         
            +
                subtitle?: string;
         
     | 
| 
      
 18 
     | 
    
         
            +
                label?: string;
         
     | 
| 
      
 19 
     | 
    
         
            +
                children?: never;
         
     | 
| 
      
 20 
     | 
    
         
            +
            } & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>) | ({
         
     | 
| 
      
 21 
     | 
    
         
            +
                size?: string;
         
     | 
| 
      
 22 
     | 
    
         
            +
                view?: string;
         
     | 
| 
      
 23 
     | 
    
         
            +
                contentLeft?: import("react").ReactNode;
         
     | 
| 
      
 24 
     | 
    
         
            +
                contentRight?: import("react").ReactNode;
         
     | 
| 
      
 25 
     | 
    
         
            +
                alignContentLeft?: import("../../../../../../Cell/Cell.types").AlignProp;
         
     | 
| 
      
 26 
     | 
    
         
            +
                alignContentRight?: import("../../../../../../Cell/Cell.types").AlignProp;
         
     | 
| 
      
 27 
     | 
    
         
            +
                stretching?: "fixed" | "filled" | "auto";
         
     | 
| 
      
 28 
     | 
    
         
            +
                content?: import("react").ReactNode;
         
     | 
| 
      
 29 
     | 
    
         
            +
                description?: string;
         
     | 
| 
      
 30 
     | 
    
         
            +
            } & {
         
     | 
| 
      
 31 
     | 
    
         
            +
                title?: never;
         
     | 
| 
      
 32 
     | 
    
         
            +
                subtitle?: never;
         
     | 
| 
      
 33 
     | 
    
         
            +
                label?: never;
         
     | 
| 
      
 34 
     | 
    
         
            +
                children?: import("react").ReactNode;
         
     | 
| 
      
 35 
     | 
    
         
            +
            } & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>))>;
         
     | 
| 
      
 36 
     | 
    
         
            +
            export declare const StyledCheckbox: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("../../../../../../../engines/types").PropsType<import("../../../../../../../engines/types").Variants> & import("../../../../../../Checkbox/Checkbox.types").CheckboxProps & import("react").RefAttributes<HTMLInputElement>>;
         
     | 
| 
      
 37 
     | 
    
         
            +
            export declare const StyledIndicator: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("../../../../../../../engines/types").PropsType<import("../../../../../../../engines/types").Variants> & import("react").HTMLAttributes<HTMLDivElement> & {
         
     | 
| 
      
 38 
     | 
    
         
            +
                size: string;
         
     | 
| 
      
 39 
     | 
    
         
            +
                view: string;
         
     | 
| 
      
 40 
     | 
    
         
            +
            } & import("react").RefAttributes<HTMLDivElement>>;
         
     | 
| 
      
 41 
     | 
    
         
            +
            export declare const sizeMap: Record<string, string>;
         
     | 
| 
      
 42 
     | 
    
         
            +
            export declare const StyledArrowLeft: import("@linaria/react").StyledMeta & import("react").FC<import("../../../../../../_Icon/IconRoot").IconProps & import("react").HTMLAttributes<HTMLDivElement>>;
         
     | 
| 
      
 43 
     | 
    
         
            +
            export declare const StyledArrowRight: import("@linaria/react").StyledMeta & import("react").FC<import("../../../../../../_Icon/IconRoot").IconProps & import("react").HTMLAttributes<HTMLDivElement>>;
         
     | 
| 
      
 44 
     | 
    
         
            +
            export declare const StyledIconDone: import("@linaria/react").StyledMeta & import("react").FC<import("../../../../../../_Icon/IconRoot").IconProps & import("react").HTMLAttributes<HTMLDivElement>>;
         
     | 
| 
      
 45 
     | 
    
         
            +
            export declare const DisclosureIconWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
         
     | 
| 
      
 46 
     | 
    
         
            +
                visibility: CSSProperties["visibility"];
         
     | 
| 
      
 47 
     | 
    
         
            +
            }>;
         
     | 
| 
      
 48 
     | 
    
         
            +
            export declare const IconWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
         
     | 
| 
      
 49 
     | 
    
         
            +
                variant: ComboboxProps["variant"];
         
     | 
| 
      
 50 
     | 
    
         
            +
            }>;
         
     | 
| 
      
 51 
     | 
    
         
            +
            export declare const StyledText: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
         
     | 
| 
      
 52 
     | 
    
         
            +
                color?: string;
         
     | 
| 
      
 53 
     | 
    
         
            +
            }>;
         
     | 
| 
      
 54 
     | 
    
         
            +
            export declare const Wrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
         
     | 
| 
      
 55 
     | 
    
         
            +
                variant: ComboboxProps["variant"];
         
     | 
| 
      
 56 
     | 
    
         
            +
            }>;
         
     | 
| 
      
 57 
     | 
    
         
            +
            export declare const StyledCheckboxWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & Record<never, unknown>>;
         
     | 
| 
      
 58 
     | 
    
         
            +
            export declare const ChildItems: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
         
     | 
| 
      
 59 
     | 
    
         
            +
            export declare const Offset: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
         
     | 
| 
      
 60 
     | 
    
         
            +
                depth: number;
         
     | 
| 
      
 61 
     | 
    
         
            +
            }>;
         
     | 
| 
      
 62 
     | 
    
         
            +
            //# sourceMappingURL=Item.styles.d.ts.map
         
     |