@salutejs/plasma-new-hope 0.336.0-canary.2205.17476690989.0 → 0.336.0-canary.2210.17487143389.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/CodeField/CodeField.css +7 -6
- package/cjs/components/CodeField/CodeField.js +54 -23
- package/cjs/components/CodeField/CodeField.js.map +1 -1
- package/cjs/components/CodeField/CodeField.styles.js +7 -1
- package/cjs/components/CodeField/CodeField.styles.js.map +1 -1
- package/cjs/components/CodeField/{CodeField.styles_ebdpd0.css → CodeField.styles_14p25hi.css} +1 -0
- package/cjs/components/CodeField/hooks/useWebOTP.js +103 -0
- package/cjs/components/CodeField/hooks/useWebOTP.js.map +1 -0
- package/cjs/components/CodeField/utils/handleCodeError.js +2 -2
- package/cjs/components/CodeField/utils/handleCodeError.js.map +1 -1
- package/cjs/components/CodeField/utils/handleItemError.js +14 -4
- package/cjs/components/CodeField/utils/handleItemError.js.map +1 -1
- package/cjs/components/CodeField/utils/isWebOTPSupported.js +10 -0
- package/cjs/components/CodeField/utils/isWebOTPSupported.js.map +1 -0
- package/cjs/components/Combobox/ComboboxNew/Combobox.css +6 -6
- package/cjs/components/Combobox/ComboboxNew/Combobox.js +23 -22
- package/cjs/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
- package/cjs/components/Combobox/ComboboxNew/Combobox.styles.js +4 -3
- package/cjs/components/Combobox/ComboboxNew/Combobox.styles.js.map +1 -1
- package/{es/components/Combobox/ComboboxNew/Combobox.styles_261unw.css → cjs/components/Combobox/ComboboxNew/Combobox.styles_isfa46.css} +1 -1
- package/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js +1 -1
- package/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js.map +1 -1
- package/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +7 -3
- package/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js.map +1 -1
- package/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.css +6 -6
- package/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js +5 -11
- package/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js.map +1 -1
- package/cjs/components/Combobox/ComboboxOld/Combobox.css +2 -2
- package/cjs/components/Combobox/ComboboxOld/ui/ComboboxDivider/ComboboxDivider.css +2 -2
- package/cjs/components/Combobox/ComboboxOld/ui/ComboboxFooter/ComboboxFooter.css +2 -2
- package/cjs/components/Combobox/ComboboxOld/ui/ComboboxGroup/ComboboxGroup.css +2 -2
- package/cjs/components/Combobox/ComboboxOld/ui/ComboboxHeader/ComboboxHeader.css +2 -2
- package/cjs/components/Dropdown/Dropdown.css +2 -2
- package/cjs/components/Dropdown/Dropdown.js +10 -6
- package/cjs/components/Dropdown/Dropdown.js.map +1 -1
- package/cjs/components/Dropdown/Dropdown.styles.js +9 -2
- package/cjs/components/Dropdown/Dropdown.styles.js.map +1 -1
- package/{es/components/Dropdown/Dropdown.styles_kkvnr1.css → cjs/components/Dropdown/Dropdown.styles_zheit5.css} +1 -1
- package/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +7 -3
- package/cjs/components/Dropdown/hooks/useKeyboardNavigation.js.map +1 -1
- package/cjs/components/Dropdown/ui/DropdownInner/DropdownInner.css +2 -2
- package/cjs/components/Dropdown/ui/DropdownInner/DropdownInner.js +9 -9
- package/cjs/components/Dropdown/ui/DropdownInner/DropdownInner.js.map +1 -1
- package/cjs/components/Pagination/Pagination.css +2 -2
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +2 -2
- package/cjs/components/Select/Select.css +2 -2
- package/cjs/components/Select/Select.js +3 -4
- package/cjs/components/Select/Select.js.map +1 -1
- package/cjs/components/Select/Select.styles.js +4 -3
- package/cjs/components/Select/Select.styles.js.map +1 -1
- package/{es/components/Select/Select.styles_dta4dl.css → cjs/components/Select/Select.styles_bjoo18.css} +1 -1
- package/cjs/components/Select/hooks/useKeyboardNavigation.js +7 -3
- package/cjs/components/Select/hooks/useKeyboardNavigation.js.map +1 -1
- package/cjs/components/Select/ui/Inner/Inner.css +2 -2
- package/cjs/components/Select/ui/Inner/Inner.js +5 -11
- package/cjs/components/Select/ui/Inner/Inner.js.map +1 -1
- package/cjs/components/Table/Table.css +2 -2
- package/cjs/components/Table/ui/Cell/Cell.css +2 -2
- package/cjs/components/Table/ui/EditableCell/EditableCell.css +2 -2
- package/cjs/components/Table/ui/HeadCell/HeadCell.css +2 -2
- package/cjs/components/Table/ui/HeadCell/ui/Filter/Filter.css +2 -2
- package/cjs/index.css +17 -16
- package/emotion/cjs/components/CodeField/CodeField.js +47 -19
- package/emotion/cjs/components/CodeField/CodeField.styles.js +18 -11
- package/emotion/cjs/components/CodeField/hooks/useWebOTP.js +254 -0
- package/emotion/cjs/components/CodeField/utils/handleCodeError.js +2 -2
- package/emotion/cjs/components/CodeField/utils/handleItemError.js +12 -3
- package/emotion/cjs/components/CodeField/utils/index.js +4 -0
- package/emotion/cjs/components/CodeField/utils/isWebOTPSupported.js +13 -0
- package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.js +22 -20
- package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.styles.js +16 -16
- package/emotion/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js +1 -1
- package/emotion/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +7 -3
- package/emotion/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js +9 -50
- package/emotion/cjs/components/Dropdown/Dropdown.js +10 -6
- package/emotion/cjs/components/Dropdown/Dropdown.styles.js +8 -5
- package/emotion/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +7 -3
- package/emotion/cjs/components/Dropdown/ui/DropdownInner/DropdownInner.js +11 -48
- package/emotion/cjs/components/Select/Select.js +2 -4
- package/emotion/cjs/components/Select/Select.styles.js +8 -8
- package/emotion/cjs/components/Select/hooks/useKeyboardNavigation.js +7 -3
- package/emotion/cjs/components/Select/ui/Inner/Inner.js +9 -50
- package/emotion/cjs/examples/components/Combobox/Combobox.js +0 -15
- package/emotion/es/components/CodeField/CodeField.js +49 -21
- package/emotion/es/components/CodeField/CodeField.styles.js +15 -11
- package/emotion/es/components/CodeField/hooks/useWebOTP.js +244 -0
- package/emotion/es/components/CodeField/utils/handleCodeError.js +2 -2
- package/emotion/es/components/CodeField/utils/handleItemError.js +12 -3
- package/emotion/es/components/CodeField/utils/index.js +1 -0
- package/emotion/es/components/CodeField/utils/isWebOTPSupported.js +3 -0
- package/emotion/es/components/Combobox/ComboboxNew/Combobox.js +22 -20
- package/emotion/es/components/Combobox/ComboboxNew/Combobox.styles.js +16 -16
- package/emotion/es/components/Combobox/ComboboxNew/Combobox.tokens.js +1 -1
- package/emotion/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +7 -3
- package/emotion/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js +6 -11
- package/emotion/es/components/Dropdown/Dropdown.js +10 -6
- package/emotion/es/components/Dropdown/Dropdown.styles.js +8 -5
- package/emotion/es/components/Dropdown/hooks/useKeyboardNavigation.js +7 -3
- package/emotion/es/components/Dropdown/ui/DropdownInner/DropdownInner.js +8 -9
- package/emotion/es/components/Select/Select.js +2 -4
- package/emotion/es/components/Select/Select.styles.js +8 -8
- package/emotion/es/components/Select/hooks/useKeyboardNavigation.js +7 -3
- package/emotion/es/components/Select/ui/Inner/Inner.js +6 -11
- package/es/components/CodeField/CodeField.css +7 -6
- package/es/components/CodeField/CodeField.js +56 -25
- package/es/components/CodeField/CodeField.js.map +1 -1
- package/es/components/CodeField/CodeField.styles.js +7 -2
- package/es/components/CodeField/CodeField.styles.js.map +1 -1
- package/es/components/CodeField/{CodeField.styles_ebdpd0.css → CodeField.styles_14p25hi.css} +1 -0
- package/es/components/CodeField/hooks/useWebOTP.js +99 -0
- package/es/components/CodeField/hooks/useWebOTP.js.map +1 -0
- package/es/components/CodeField/utils/handleCodeError.js +2 -2
- package/es/components/CodeField/utils/handleCodeError.js.map +1 -1
- package/es/components/CodeField/utils/handleItemError.js +14 -4
- package/es/components/CodeField/utils/handleItemError.js.map +1 -1
- package/es/components/CodeField/utils/isWebOTPSupported.js +6 -0
- package/es/components/CodeField/utils/isWebOTPSupported.js.map +1 -0
- package/es/components/Combobox/ComboboxNew/Combobox.css +6 -6
- package/es/components/Combobox/ComboboxNew/Combobox.js +23 -22
- package/es/components/Combobox/ComboboxNew/Combobox.js.map +1 -1
- package/es/components/Combobox/ComboboxNew/Combobox.styles.js +4 -3
- package/es/components/Combobox/ComboboxNew/Combobox.styles.js.map +1 -1
- package/{cjs/components/Combobox/ComboboxNew/Combobox.styles_261unw.css → es/components/Combobox/ComboboxNew/Combobox.styles_isfa46.css} +1 -1
- package/es/components/Combobox/ComboboxNew/Combobox.tokens.js +1 -1
- package/es/components/Combobox/ComboboxNew/Combobox.tokens.js.map +1 -1
- package/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +7 -3
- package/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js.map +1 -1
- package/es/components/Combobox/ComboboxNew/ui/Inner/Inner.css +6 -6
- package/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js +6 -12
- package/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js.map +1 -1
- package/es/components/Combobox/ComboboxOld/Combobox.css +2 -2
- package/es/components/Combobox/ComboboxOld/ui/ComboboxDivider/ComboboxDivider.css +2 -2
- package/es/components/Combobox/ComboboxOld/ui/ComboboxFooter/ComboboxFooter.css +2 -2
- package/es/components/Combobox/ComboboxOld/ui/ComboboxGroup/ComboboxGroup.css +2 -2
- package/es/components/Combobox/ComboboxOld/ui/ComboboxHeader/ComboboxHeader.css +2 -2
- package/es/components/Dropdown/Dropdown.css +2 -2
- package/es/components/Dropdown/Dropdown.js +10 -6
- package/es/components/Dropdown/Dropdown.js.map +1 -1
- package/es/components/Dropdown/Dropdown.styles.js +9 -2
- package/es/components/Dropdown/Dropdown.styles.js.map +1 -1
- package/{cjs/components/Dropdown/Dropdown.styles_kkvnr1.css → es/components/Dropdown/Dropdown.styles_zheit5.css} +1 -1
- package/es/components/Dropdown/hooks/useKeyboardNavigation.js +7 -3
- package/es/components/Dropdown/hooks/useKeyboardNavigation.js.map +1 -1
- package/es/components/Dropdown/ui/DropdownInner/DropdownInner.css +2 -2
- package/es/components/Dropdown/ui/DropdownInner/DropdownInner.js +10 -10
- package/es/components/Dropdown/ui/DropdownInner/DropdownInner.js.map +1 -1
- package/es/components/Pagination/Pagination.css +2 -2
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +2 -2
- package/es/components/Select/Select.css +2 -2
- package/es/components/Select/Select.js +3 -4
- package/es/components/Select/Select.js.map +1 -1
- package/es/components/Select/Select.styles.js +4 -3
- package/es/components/Select/Select.styles.js.map +1 -1
- package/{cjs/components/Select/Select.styles_dta4dl.css → es/components/Select/Select.styles_bjoo18.css} +1 -1
- package/es/components/Select/hooks/useKeyboardNavigation.js +7 -3
- package/es/components/Select/hooks/useKeyboardNavigation.js.map +1 -1
- package/es/components/Select/ui/Inner/Inner.css +2 -2
- package/es/components/Select/ui/Inner/Inner.js +6 -12
- package/es/components/Select/ui/Inner/Inner.js.map +1 -1
- package/es/components/Table/Table.css +2 -2
- package/es/components/Table/ui/Cell/Cell.css +2 -2
- package/es/components/Table/ui/EditableCell/EditableCell.css +2 -2
- package/es/components/Table/ui/HeadCell/HeadCell.css +2 -2
- package/es/components/Table/ui/HeadCell/ui/Filter/Filter.css +2 -2
- package/es/index.css +17 -16
- package/package.json +2 -2
- package/styled-components/cjs/components/CodeField/CodeField.js +47 -19
- package/styled-components/cjs/components/CodeField/CodeField.styles.js +14 -5
- package/styled-components/cjs/components/CodeField/hooks/useWebOTP.js +254 -0
- package/styled-components/cjs/components/CodeField/utils/handleCodeError.js +2 -2
- package/styled-components/cjs/components/CodeField/utils/handleItemError.js +12 -3
- package/styled-components/cjs/components/CodeField/utils/index.js +4 -0
- package/styled-components/cjs/components/CodeField/utils/isWebOTPSupported.js +13 -0
- package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.js +22 -20
- package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.styles.js +9 -9
- package/styled-components/cjs/components/Combobox/ComboboxNew/Combobox.tokens.js +1 -1
- package/styled-components/cjs/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +7 -3
- package/styled-components/cjs/components/Combobox/ComboboxNew/ui/Inner/Inner.js +9 -50
- package/styled-components/cjs/components/Dropdown/Dropdown.js +10 -6
- package/styled-components/cjs/components/Dropdown/Dropdown.styles.js +7 -3
- package/styled-components/cjs/components/Dropdown/hooks/useKeyboardNavigation.js +7 -3
- package/styled-components/cjs/components/Dropdown/ui/DropdownInner/DropdownInner.js +11 -48
- package/styled-components/cjs/components/Select/Select.js +2 -4
- package/styled-components/cjs/components/Select/Select.styles.js +5 -5
- package/styled-components/cjs/components/Select/hooks/useKeyboardNavigation.js +7 -3
- package/styled-components/cjs/components/Select/ui/Inner/Inner.js +9 -50
- package/styled-components/es/components/CodeField/CodeField.js +49 -21
- package/styled-components/es/components/CodeField/CodeField.styles.js +11 -5
- package/styled-components/es/components/CodeField/hooks/useWebOTP.js +244 -0
- package/styled-components/es/components/CodeField/utils/handleCodeError.js +2 -2
- package/styled-components/es/components/CodeField/utils/handleItemError.js +12 -3
- package/styled-components/es/components/CodeField/utils/index.js +1 -0
- package/styled-components/es/components/CodeField/utils/isWebOTPSupported.js +3 -0
- package/styled-components/es/components/Combobox/ComboboxNew/Combobox.js +22 -20
- package/styled-components/es/components/Combobox/ComboboxNew/Combobox.styles.js +9 -9
- package/styled-components/es/components/Combobox/ComboboxNew/Combobox.tokens.js +1 -1
- package/styled-components/es/components/Combobox/ComboboxNew/hooks/useKeyboardNavigation.js +7 -3
- package/styled-components/es/components/Combobox/ComboboxNew/ui/Inner/Inner.js +6 -11
- package/styled-components/es/components/Dropdown/Dropdown.js +10 -6
- package/styled-components/es/components/Dropdown/Dropdown.styles.js +7 -3
- package/styled-components/es/components/Dropdown/hooks/useKeyboardNavigation.js +7 -3
- package/styled-components/es/components/Dropdown/ui/DropdownInner/DropdownInner.js +8 -9
- package/styled-components/es/components/Select/Select.js +2 -4
- package/styled-components/es/components/Select/Select.styles.js +5 -5
- package/styled-components/es/components/Select/hooks/useKeyboardNavigation.js +7 -3
- package/styled-components/es/components/Select/ui/Inner/Inner.js +6 -11
- package/types/components/CodeField/CodeField.d.ts.map +1 -1
- package/types/components/CodeField/CodeField.styles.d.ts +1 -0
- package/types/components/CodeField/CodeField.styles.d.ts.map +1 -1
- package/types/components/CodeField/hooks/useWebOTP.d.ts +23 -0
- package/types/components/CodeField/hooks/useWebOTP.d.ts.map +1 -0
- package/types/components/CodeField/utils/handleCodeError.d.ts +2 -2
- package/types/components/CodeField/utils/handleCodeError.d.ts.map +1 -1
- package/types/components/CodeField/utils/handleItemError.d.ts +3 -2
- package/types/components/CodeField/utils/handleItemError.d.ts.map +1 -1
- package/types/components/CodeField/utils/index.d.ts +1 -0
- package/types/components/CodeField/utils/index.d.ts.map +1 -1
- package/types/components/CodeField/utils/isWebOTPSupported.d.ts +2 -0
- package/types/components/CodeField/utils/isWebOTPSupported.d.ts.map +1 -0
- package/types/components/Combobox/ComboboxNew/Combobox.d.ts.map +1 -1
- package/types/components/Combobox/ComboboxNew/Combobox.styles.d.ts +1 -0
- package/types/components/Combobox/ComboboxNew/Combobox.styles.d.ts.map +1 -1
- package/types/components/Combobox/ComboboxNew/Combobox.tokens.d.ts +1 -1
- package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts +6 -6
- package/types/components/Combobox/ComboboxNew/Combobox.types.d.ts.map +1 -1
- package/types/components/Combobox/ComboboxNew/ui/Inner/Inner.d.ts.map +1 -1
- package/types/components/Combobox/ComboboxNew/ui/Inner/Inner.type.d.ts +1 -2
- package/types/components/Combobox/ComboboxNew/ui/Inner/Inner.type.d.ts.map +1 -1
- package/types/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.types.d.ts +2 -6
- package/types/components/Combobox/ComboboxNew/ui/Inner/ui/Item/Item.types.d.ts.map +1 -1
- package/types/components/Dropdown/Dropdown.d.ts +2 -2
- package/types/components/Dropdown/Dropdown.d.ts.map +1 -1
- package/types/components/Dropdown/Dropdown.styles.d.ts +1 -0
- package/types/components/Dropdown/Dropdown.styles.d.ts.map +1 -1
- package/types/components/Dropdown/Dropdown.types.d.ts +5 -5
- package/types/components/Dropdown/Dropdown.types.d.ts.map +1 -1
- package/types/components/Dropdown/ui/DropdownInner/DropdownInner.d.ts.map +1 -1
- package/types/components/Dropdown/ui/DropdownInner/DropdownInner.type.d.ts +3 -2
- package/types/components/Dropdown/ui/DropdownInner/DropdownInner.type.d.ts.map +1 -1
- package/types/components/Dropdown/ui/DropdownItem/DropdownItem.type.d.ts +3 -7
- package/types/components/Dropdown/ui/DropdownItem/DropdownItem.type.d.ts.map +1 -1
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts +6 -6
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts.map +1 -1
- package/types/components/Select/Select.d.ts.map +1 -1
- package/types/components/Select/Select.styles.d.ts +1 -0
- package/types/components/Select/Select.styles.d.ts.map +1 -1
- package/types/components/Select/Select.types.d.ts +10 -10
- package/types/components/Select/Select.types.d.ts.map +1 -1
- package/types/components/Select/ui/Inner/Inner.d.ts.map +1 -1
- package/types/components/Select/ui/Inner/Inner.type.d.ts +1 -2
- package/types/components/Select/ui/Inner/Inner.type.d.ts.map +1 -1
- package/types/components/Select/ui/Inner/ui/Item/Item.types.d.ts +3 -11
- package/types/components/Select/ui/Inner/ui/Item/Item.types.d.ts.map +1 -1
- package/types/components/Table/ui/HeadCell/ui/Filter/Filter.styles.d.ts +6 -6
- package/types/components/Table/ui/HeadCell/ui/Filter/Filter.styles.d.ts.map +1 -1
- package/types/examples/components/Combobox/Combobox.d.ts +24 -24
- package/types/examples/components/Combobox/Combobox.d.ts.map +1 -1
- package/types/examples/components/Dropdown/Dropdown.d.ts +1 -1
- package/types/examples/components/Dropdown/Dropdown.d.ts.map +1 -1
- package/types/examples/components/Select/Select.d.ts +6 -6
- package/types/examples/components/Select/Select.d.ts.map +1 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { Dispatch
|
1
|
+
import type { Dispatch } from 'react';
|
2
2
|
import type { PathAction, PathState } from '../../reducers';
|
3
3
|
import type { SelectProps } from '../../Select.types';
|
4
4
|
import type { MergedDropdownNodeTransformed } from './ui/Item/Item.types';
|
@@ -9,6 +9,5 @@ export type InnerProps = {
|
|
9
9
|
dispatchPath: Dispatch<PathAction>;
|
10
10
|
index: number;
|
11
11
|
listWidth: SelectProps['listWidth'];
|
12
|
-
portal?: RefObject<HTMLElement>;
|
13
12
|
};
|
14
13
|
//# sourceMappingURL=Inner.type.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Inner.type.d.ts","sourceRoot":"","sources":["../../../../../src/components/Select/ui/Inner/Inner.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,
|
1
|
+
{"version":3,"file":"Inner.type.d.ts","sourceRoot":"","sources":["../../../../../src/components/Select/ui/Inner/Inner.type.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAEtC,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,MAAM,gBAAgB,CAAC;AAC5D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEtD,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,sBAAsB,CAAC;AAE1E,MAAM,MAAM,UAAU,GAAG;IACrB,IAAI,EAAE,6BAA6B,CAAC;IACpC,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC;IACnC,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,WAAW,CAAC,WAAW,CAAC,CAAC;CACvC,CAAC"}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import type { ReactNode
|
1
|
+
import type { ReactNode } from 'react';
|
2
2
|
import React from 'react';
|
3
3
|
import type { PathState } from '../../../../reducers';
|
4
4
|
import type { SelectPlacement, SelectPlacementBasic } from '../../../../Select.types';
|
@@ -12,7 +12,7 @@ export type ItemOption = {
|
|
12
12
|
*/
|
13
13
|
label: string;
|
14
14
|
/**
|
15
|
-
* Сторона открытия вложенного
|
15
|
+
* Сторона открытия вложенного дропдауна относительно текущего элемента
|
16
16
|
* @default right
|
17
17
|
*/
|
18
18
|
placement?: SelectPlacement | Array<SelectPlacementBasic>;
|
@@ -36,10 +36,6 @@ export type ItemOption = {
|
|
36
36
|
* Classname для item
|
37
37
|
*/
|
38
38
|
className?: string;
|
39
|
-
/**
|
40
|
-
* Максимальная высота дочернего выпадающего списка.
|
41
|
-
*/
|
42
|
-
listMaxHeight?: CSSProperties['height'];
|
43
39
|
};
|
44
40
|
export type ItemOptionTransformed = ItemOption & {
|
45
41
|
parent?: ItemOption | null;
|
@@ -58,7 +54,7 @@ export type MergedDropdownNode = {
|
|
58
54
|
value: string | number;
|
59
55
|
label: string;
|
60
56
|
/**
|
61
|
-
* Сторона открытия
|
57
|
+
* Сторона открытия дропдауна относительно target элемента.
|
62
58
|
* @default bottom
|
63
59
|
*/
|
64
60
|
placement?: SelectPlacement | Array<SelectPlacementBasic>;
|
@@ -82,10 +78,6 @@ export type MergedDropdownNode = {
|
|
82
78
|
* Classname для item
|
83
79
|
*/
|
84
80
|
className?: string;
|
85
|
-
/**
|
86
|
-
* Максимальная высота дочернего выпадающего списка.
|
87
|
-
*/
|
88
|
-
listMaxHeight?: CSSProperties['height'];
|
89
81
|
};
|
90
82
|
export type MergedDropdownNodeTransformed = MergedDropdownNode & {
|
91
83
|
parent?: MergedDropdownNode | null;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Item.types.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Select/ui/Inner/ui/Item/Item.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,
|
1
|
+
{"version":3,"file":"Item.types.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Select/ui/Inner/ui/Item/Item.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACtD,OAAO,KAAK,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,0BAA0B,CAAC;AAEtF,MAAM,MAAM,UAAU,GAAG;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,SAAS,CAAC,EAAE,eAAe,GAAG,KAAK,CAAC,oBAAoB,CAAC,CAAC;IAC1D;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,UAAU,GAAG;IAAE,MAAM,CAAC,EAAE,UAAU,GAAG,IAAI,CAAA;CAAE,CAAC;AAEhF,MAAM,MAAM,SAAS,GAAG;IACpB,IAAI,EAAE,6BAA6B,CAAC;IACpC,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,SAAS,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;IAC/C,SAAS,CAAC,EAAE,KAAK,CAAC,cAAc,CAAC,YAAY,CAAC,CAAC;CAClD,CAAC;AAEF,MAAM,MAAM,kBAAkB,GAAG;IAC7B,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;IACd;;;OAGG;IACH,SAAS,CAAC,EAAE,eAAe,GAAG,KAAK,CAAC,oBAAoB,CAAC,CAAC;IAC1D,KAAK,CAAC,EAAE,kBAAkB,EAAE,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IAE9B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,SAAS,CAAC;IACzB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,6BAA6B,GAAG,kBAAkB,GAAG;IAAE,MAAM,CAAC,EAAE,kBAAkB,GAAG,IAAI,CAAA;CAAE,CAAC"}
|
@@ -35,6 +35,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
35
35
|
placement?: import("../../../../../Select/Select.types").SelectPlacement | Array<import("../../../../../Select/Select.types").SelectPlacementBasic>;
|
36
36
|
variant?: "normal" | "tight";
|
37
37
|
zIndex?: import("react").CSSProperties["zIndex"];
|
38
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
38
39
|
listMaxHeight?: import("react").CSSProperties["height"];
|
39
40
|
listWidth?: import("react").CSSProperties["width"];
|
40
41
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -54,7 +55,6 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
54
55
|
isOpen?: boolean;
|
55
56
|
listHeight?: import("react").CSSProperties["height"];
|
56
57
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
57
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
58
58
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & import("../../../../../TextField/TextField.types").RequiredProps & {
|
59
59
|
hintText: string;
|
60
60
|
hintTrigger?: "hover" | "click";
|
@@ -93,6 +93,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
93
93
|
placement?: import("../../../../../Select/Select.types").SelectPlacement | Array<import("../../../../../Select/Select.types").SelectPlacementBasic>;
|
94
94
|
variant?: "normal" | "tight";
|
95
95
|
zIndex?: import("react").CSSProperties["zIndex"];
|
96
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
96
97
|
listMaxHeight?: import("react").CSSProperties["height"];
|
97
98
|
listWidth?: import("react").CSSProperties["width"];
|
98
99
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -112,7 +113,6 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
112
113
|
isOpen?: boolean;
|
113
114
|
listHeight?: import("react").CSSProperties["height"];
|
114
115
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
115
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
116
116
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & import("../../../../../TextField/TextField.types").RequiredProps & {
|
117
117
|
hintTrigger?: never;
|
118
118
|
hintText?: never;
|
@@ -150,6 +150,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
150
150
|
placement?: import("../../../../../Select/Select.types").SelectPlacement | Array<import("../../../../../Select/Select.types").SelectPlacementBasic>;
|
151
151
|
variant?: "normal" | "tight";
|
152
152
|
zIndex?: import("react").CSSProperties["zIndex"];
|
153
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
153
154
|
listMaxHeight?: import("react").CSSProperties["height"];
|
154
155
|
listWidth?: import("react").CSSProperties["width"];
|
155
156
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -169,7 +170,6 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
169
170
|
isOpen?: boolean;
|
170
171
|
listHeight?: import("react").CSSProperties["height"];
|
171
172
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
172
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
173
173
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & import("../../../../../TextField/TextField.types").RequiredProps & {
|
174
174
|
hintTrigger?: never;
|
175
175
|
hintText?: never;
|
@@ -208,6 +208,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
208
208
|
placement?: import("../../../../../Select/Select.types").SelectPlacement | Array<import("../../../../../Select/Select.types").SelectPlacementBasic>;
|
209
209
|
variant?: "normal" | "tight";
|
210
210
|
zIndex?: import("react").CSSProperties["zIndex"];
|
211
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
211
212
|
listMaxHeight?: import("react").CSSProperties["height"];
|
212
213
|
listWidth?: import("react").CSSProperties["width"];
|
213
214
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -227,7 +228,6 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
227
228
|
isOpen?: boolean;
|
228
229
|
listHeight?: import("react").CSSProperties["height"];
|
229
230
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
230
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
231
231
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & {
|
232
232
|
target: "button-like";
|
233
233
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
@@ -253,6 +253,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
253
253
|
placement?: import("../../../../../Select/Select.types").SelectPlacement | Array<import("../../../../../Select/Select.types").SelectPlacementBasic>;
|
254
254
|
variant?: "normal" | "tight";
|
255
255
|
zIndex?: import("react").CSSProperties["zIndex"];
|
256
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
256
257
|
listMaxHeight?: import("react").CSSProperties["height"];
|
257
258
|
listWidth?: import("react").CSSProperties["width"];
|
258
259
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -272,7 +273,6 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
272
273
|
isOpen?: boolean;
|
273
274
|
listHeight?: import("react").CSSProperties["height"];
|
274
275
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
275
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
276
276
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | (import("../../../../../TextField/TextField.types").LabelProps & {
|
277
277
|
target: "button-like";
|
278
278
|
view?: "default" | "accent" | "secondary" | "clear" | "positive" | "warning" | "negative" | "dark" | "black" | "white";
|
@@ -299,6 +299,7 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
299
299
|
placement?: import("../../../../../Select/Select.types").SelectPlacement | Array<import("../../../../../Select/Select.types").SelectPlacementBasic>;
|
300
300
|
variant?: "normal" | "tight";
|
301
301
|
zIndex?: import("react").CSSProperties["zIndex"];
|
302
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
302
303
|
listMaxHeight?: import("react").CSSProperties["height"];
|
303
304
|
listWidth?: import("react").CSSProperties["width"];
|
304
305
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -318,7 +319,6 @@ export declare const Select: import("@linaria/react").StyledMeta & import("react
|
|
318
319
|
isOpen?: boolean;
|
319
320
|
listHeight?: import("react").CSSProperties["height"];
|
320
321
|
onScrollBottom?: (e: React.UIEvent<HTMLElement>) => void;
|
321
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
322
322
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>)>;
|
323
323
|
export declare const IconFilterWrapper: import("@linaria/react").StyledComponent<import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & Record<never, unknown>>;
|
324
324
|
export declare const StyledIndicator: import("@linaria/react").StyledMeta & import("react").FunctionComponent<import("../../../../../../engines/types").PropsType<import("../../../../../../engines/types").Variants> & import("react").HTMLAttributes<HTMLDivElement> & {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Filter.styles.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Table/ui/HeadCell/ui/Filter/Filter.styles.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;kBAY2C,MAAO,SAAS;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"Filter.styles.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/Table/ui/HeadCell/ui/Filter/Filter.styles.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;kBAY2C,MAAO,SAAS;;;;;;;;;;;;;;;;;;2JA4C8yN,MAAO,SAAS;;;;;;;sBAA48B,MAAO,SAAS;;gFAAmR,MAAO,SAAS;;iBAAyS,MAAO,SAAS;gBAAwG,MAAO,SAAS;;mBAAiR,MAAO,OAAO;;;;;;;;;yBAAk5B,MAAO,OAAO;;;;;;;;;;;;;;;;wBA5CtrT,SAAS;;;;;;;;;;;;;;;;;;;iKA4CqzN,SAAS;;;;;;;4BAAm9B,SAAS;;sFAA0R,SAAS;;uBAAgT,SAAS;sBAA+G,SAAS;;yBAAwR,OAAO;;;;;;;;;+BAAy5B,OAAO;;;;;;;;;;;;;;;;wBA5CtrT,SAAS;;;;;;;;;;;;;;;;;;iKA4CqzN,SAAS;;;;;;;4BAAm9B,SAAS;;sFAA0R,SAAS;;uBAAgT,SAAS;sBAA+G,SAAS;;yBAAwR,OAAO;;;;;;;;;+BAAy5B,OAAO;;;;;;;;;;;;;;;;wBA5CtrT,SAAS;;;;;;;;;;;;;;;;;;;iKA4CqzN,SAAS;;;;;;;4BAAm9B,SAAS;;sFAA0R,SAAS;;uBAAgT,SAAS;sBAA+G,SAAS;;yBAAwR,OAAO;;;;;;;;;+BAAy5B,OAAO;;;;;;;;;;;;;;;;;;;;;;iKAAx3F,SAAS;;;;;;;4BAAm9B,SAAS;;sFAA0R,SAAS;;uBAAgT,SAAS;sBAA+G,SAAS;;yBAAwR,OAAO;;;;;;;;;+BAAy5B,OAAO;;;;;;;;;;;;;;;;;;;;;;;iKAAx3F,SAAS;;;;;;;4BAAm9B,SAAS;;sFAA0R,SAAS;;uBAAgT,SAAS;sBAA+G,SAAS;;yBAAwR,OAAO;;;;;;;;;+BAAy5B,OAAO;uLAlC1vT,CAAC;AAKF,eAAO,MAAM,iBAAiB,qKAI7B,CAAC;AAEF,eAAO,MAAM,eAAe;;;kDAM3B,CAAC;AAEF,eAAO,MAAM,cAAc,qSAE1B,CAAC;AAEF,eAAO,MAAM,aAAa,kRAEzB,CAAC;AAEF,eAAO,MAAM,YAAY,qKAMxB,CAAC"}
|
@@ -41,6 +41,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
41
41
|
textAfter?: string;
|
42
42
|
variant?: "normal" | "tight";
|
43
43
|
zIndex?: import("react").CSSProperties["zIndex"];
|
44
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
44
45
|
listMaxHeight?: import("react").CSSProperties["height"];
|
45
46
|
listWidth?: import("react").CSSProperties["width"];
|
46
47
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -57,7 +58,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
57
58
|
view?: string;
|
58
59
|
emptyStateDescription?: string;
|
59
60
|
listHeight?: import("react").CSSProperties["height"];
|
60
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
61
61
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
62
62
|
readOnly?: boolean;
|
63
63
|
disabled?: true;
|
@@ -95,6 +95,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
95
95
|
textAfter?: string;
|
96
96
|
variant?: "normal" | "tight";
|
97
97
|
zIndex?: import("react").CSSProperties["zIndex"];
|
98
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
98
99
|
listMaxHeight?: import("react").CSSProperties["height"];
|
99
100
|
listWidth?: import("react").CSSProperties["width"];
|
100
101
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -111,7 +112,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
111
112
|
view?: string;
|
112
113
|
emptyStateDescription?: string;
|
113
114
|
listHeight?: import("react").CSSProperties["height"];
|
114
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
115
115
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
116
116
|
readOnly?: boolean;
|
117
117
|
disabled?: true;
|
@@ -149,6 +149,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
149
149
|
textAfter?: string;
|
150
150
|
variant?: "normal" | "tight";
|
151
151
|
zIndex?: import("react").CSSProperties["zIndex"];
|
152
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
152
153
|
listMaxHeight?: import("react").CSSProperties["height"];
|
153
154
|
listWidth?: import("react").CSSProperties["width"];
|
154
155
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -165,7 +166,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
165
166
|
view?: string;
|
166
167
|
emptyStateDescription?: string;
|
167
168
|
listHeight?: import("react").CSSProperties["height"];
|
168
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
169
169
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
170
170
|
readOnly?: boolean;
|
171
171
|
disabled?: true;
|
@@ -203,6 +203,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
203
203
|
textAfter?: string;
|
204
204
|
variant?: "normal" | "tight";
|
205
205
|
zIndex?: import("react").CSSProperties["zIndex"];
|
206
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
206
207
|
listMaxHeight?: import("react").CSSProperties["height"];
|
207
208
|
listWidth?: import("react").CSSProperties["width"];
|
208
209
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -219,7 +220,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
219
220
|
view?: string;
|
220
221
|
emptyStateDescription?: string;
|
221
222
|
listHeight?: import("react").CSSProperties["height"];
|
222
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
223
223
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
224
224
|
readOnly?: boolean;
|
225
225
|
disabled?: true;
|
@@ -257,6 +257,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
257
257
|
textAfter?: string;
|
258
258
|
variant?: "normal" | "tight";
|
259
259
|
zIndex?: import("react").CSSProperties["zIndex"];
|
260
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
260
261
|
listMaxHeight?: import("react").CSSProperties["height"];
|
261
262
|
listWidth?: import("react").CSSProperties["width"];
|
262
263
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -273,7 +274,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
273
274
|
view?: string;
|
274
275
|
emptyStateDescription?: string;
|
275
276
|
listHeight?: import("react").CSSProperties["height"];
|
276
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
277
277
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
278
278
|
readOnly?: boolean;
|
279
279
|
disabled?: true;
|
@@ -311,6 +311,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
311
311
|
textAfter?: string;
|
312
312
|
variant?: "normal" | "tight";
|
313
313
|
zIndex?: import("react").CSSProperties["zIndex"];
|
314
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
314
315
|
listMaxHeight?: import("react").CSSProperties["height"];
|
315
316
|
listWidth?: import("react").CSSProperties["width"];
|
316
317
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -327,7 +328,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
327
328
|
view?: string;
|
328
329
|
emptyStateDescription?: string;
|
329
330
|
listHeight?: import("react").CSSProperties["height"];
|
330
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
331
331
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
332
332
|
readOnly?: boolean;
|
333
333
|
disabled?: true;
|
@@ -365,6 +365,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
365
365
|
textAfter?: string;
|
366
366
|
variant?: "normal" | "tight";
|
367
367
|
zIndex?: import("react").CSSProperties["zIndex"];
|
368
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
368
369
|
listMaxHeight?: import("react").CSSProperties["height"];
|
369
370
|
listWidth?: import("react").CSSProperties["width"];
|
370
371
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -381,7 +382,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
381
382
|
view?: string;
|
382
383
|
emptyStateDescription?: string;
|
383
384
|
listHeight?: import("react").CSSProperties["height"];
|
384
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
385
385
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
386
386
|
readOnly?: boolean;
|
387
387
|
disabled?: true;
|
@@ -419,6 +419,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
419
419
|
textAfter?: string;
|
420
420
|
variant?: "normal" | "tight";
|
421
421
|
zIndex?: import("react").CSSProperties["zIndex"];
|
422
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
422
423
|
listMaxHeight?: import("react").CSSProperties["height"];
|
423
424
|
listWidth?: import("react").CSSProperties["width"];
|
424
425
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -435,7 +436,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
435
436
|
view?: string;
|
436
437
|
emptyStateDescription?: string;
|
437
438
|
listHeight?: import("react").CSSProperties["height"];
|
438
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
439
439
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
440
440
|
readOnly?: boolean;
|
441
441
|
disabled?: true;
|
@@ -473,6 +473,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
473
473
|
textAfter?: string;
|
474
474
|
variant?: "normal" | "tight";
|
475
475
|
zIndex?: import("react").CSSProperties["zIndex"];
|
476
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
476
477
|
listMaxHeight?: import("react").CSSProperties["height"];
|
477
478
|
listWidth?: import("react").CSSProperties["width"];
|
478
479
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -489,7 +490,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
489
490
|
view?: string;
|
490
491
|
emptyStateDescription?: string;
|
491
492
|
listHeight?: import("react").CSSProperties["height"];
|
492
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
493
493
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
494
494
|
readOnly?: true;
|
495
495
|
disabled?: boolean;
|
@@ -527,6 +527,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
527
527
|
textAfter?: string;
|
528
528
|
variant?: "normal" | "tight";
|
529
529
|
zIndex?: import("react").CSSProperties["zIndex"];
|
530
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
530
531
|
listMaxHeight?: import("react").CSSProperties["height"];
|
531
532
|
listWidth?: import("react").CSSProperties["width"];
|
532
533
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -543,7 +544,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
543
544
|
view?: string;
|
544
545
|
emptyStateDescription?: string;
|
545
546
|
listHeight?: import("react").CSSProperties["height"];
|
546
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
547
547
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
548
548
|
readOnly?: true;
|
549
549
|
disabled?: boolean;
|
@@ -581,6 +581,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
581
581
|
textAfter?: string;
|
582
582
|
variant?: "normal" | "tight";
|
583
583
|
zIndex?: import("react").CSSProperties["zIndex"];
|
584
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
584
585
|
listMaxHeight?: import("react").CSSProperties["height"];
|
585
586
|
listWidth?: import("react").CSSProperties["width"];
|
586
587
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -597,7 +598,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
597
598
|
view?: string;
|
598
599
|
emptyStateDescription?: string;
|
599
600
|
listHeight?: import("react").CSSProperties["height"];
|
600
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
601
601
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
602
602
|
readOnly?: true;
|
603
603
|
disabled?: boolean;
|
@@ -635,6 +635,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
635
635
|
textAfter?: string;
|
636
636
|
variant?: "normal" | "tight";
|
637
637
|
zIndex?: import("react").CSSProperties["zIndex"];
|
638
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
638
639
|
listMaxHeight?: import("react").CSSProperties["height"];
|
639
640
|
listWidth?: import("react").CSSProperties["width"];
|
640
641
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -651,7 +652,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
651
652
|
view?: string;
|
652
653
|
emptyStateDescription?: string;
|
653
654
|
listHeight?: import("react").CSSProperties["height"];
|
654
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
655
655
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
656
656
|
readOnly?: true;
|
657
657
|
disabled?: boolean;
|
@@ -689,6 +689,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
689
689
|
textAfter?: string;
|
690
690
|
variant?: "normal" | "tight";
|
691
691
|
zIndex?: import("react").CSSProperties["zIndex"];
|
692
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
692
693
|
listMaxHeight?: import("react").CSSProperties["height"];
|
693
694
|
listWidth?: import("react").CSSProperties["width"];
|
694
695
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -705,7 +706,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
705
706
|
view?: string;
|
706
707
|
emptyStateDescription?: string;
|
707
708
|
listHeight?: import("react").CSSProperties["height"];
|
708
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
709
709
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
710
710
|
readOnly?: true;
|
711
711
|
disabled?: boolean;
|
@@ -743,6 +743,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
743
743
|
textAfter?: string;
|
744
744
|
variant?: "normal" | "tight";
|
745
745
|
zIndex?: import("react").CSSProperties["zIndex"];
|
746
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
746
747
|
listMaxHeight?: import("react").CSSProperties["height"];
|
747
748
|
listWidth?: import("react").CSSProperties["width"];
|
748
749
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -759,7 +760,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
759
760
|
view?: string;
|
760
761
|
emptyStateDescription?: string;
|
761
762
|
listHeight?: import("react").CSSProperties["height"];
|
762
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
763
763
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
764
764
|
readOnly?: true;
|
765
765
|
disabled?: boolean;
|
@@ -797,6 +797,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
797
797
|
textAfter?: string;
|
798
798
|
variant?: "normal" | "tight";
|
799
799
|
zIndex?: import("react").CSSProperties["zIndex"];
|
800
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
800
801
|
listMaxHeight?: import("react").CSSProperties["height"];
|
801
802
|
listWidth?: import("react").CSSProperties["width"];
|
802
803
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -813,7 +814,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
813
814
|
view?: string;
|
814
815
|
emptyStateDescription?: string;
|
815
816
|
listHeight?: import("react").CSSProperties["height"];
|
816
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
817
817
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
818
818
|
readOnly?: true;
|
819
819
|
disabled?: boolean;
|
@@ -851,6 +851,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
851
851
|
textAfter?: string;
|
852
852
|
variant?: "normal" | "tight";
|
853
853
|
zIndex?: import("react").CSSProperties["zIndex"];
|
854
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
854
855
|
listMaxHeight?: import("react").CSSProperties["height"];
|
855
856
|
listWidth?: import("react").CSSProperties["width"];
|
856
857
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -867,7 +868,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
867
868
|
view?: string;
|
868
869
|
emptyStateDescription?: string;
|
869
870
|
listHeight?: import("react").CSSProperties["height"];
|
870
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
871
871
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
872
872
|
readOnly?: true;
|
873
873
|
disabled?: boolean;
|
@@ -905,6 +905,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
905
905
|
textAfter?: string;
|
906
906
|
variant?: "normal" | "tight";
|
907
907
|
zIndex?: import("react").CSSProperties["zIndex"];
|
908
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
908
909
|
listMaxHeight?: import("react").CSSProperties["height"];
|
909
910
|
listWidth?: import("react").CSSProperties["width"];
|
910
911
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -921,7 +922,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
921
922
|
view?: string;
|
922
923
|
emptyStateDescription?: string;
|
923
924
|
listHeight?: import("react").CSSProperties["height"];
|
924
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
925
925
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
926
926
|
readOnly?: false;
|
927
927
|
disabled?: false;
|
@@ -959,6 +959,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
959
959
|
textAfter?: string;
|
960
960
|
variant?: "normal" | "tight";
|
961
961
|
zIndex?: import("react").CSSProperties["zIndex"];
|
962
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
962
963
|
listMaxHeight?: import("react").CSSProperties["height"];
|
963
964
|
listWidth?: import("react").CSSProperties["width"];
|
964
965
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -975,7 +976,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
975
976
|
view?: string;
|
976
977
|
emptyStateDescription?: string;
|
977
978
|
listHeight?: import("react").CSSProperties["height"];
|
978
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
979
979
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
980
980
|
readOnly?: false;
|
981
981
|
disabled?: false;
|
@@ -1013,6 +1013,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1013
1013
|
textAfter?: string;
|
1014
1014
|
variant?: "normal" | "tight";
|
1015
1015
|
zIndex?: import("react").CSSProperties["zIndex"];
|
1016
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
1016
1017
|
listMaxHeight?: import("react").CSSProperties["height"];
|
1017
1018
|
listWidth?: import("react").CSSProperties["width"];
|
1018
1019
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -1029,7 +1030,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1029
1030
|
view?: string;
|
1030
1031
|
emptyStateDescription?: string;
|
1031
1032
|
listHeight?: import("react").CSSProperties["height"];
|
1032
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
1033
1033
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
1034
1034
|
readOnly?: false;
|
1035
1035
|
disabled?: false;
|
@@ -1067,6 +1067,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1067
1067
|
textAfter?: string;
|
1068
1068
|
variant?: "normal" | "tight";
|
1069
1069
|
zIndex?: import("react").CSSProperties["zIndex"];
|
1070
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
1070
1071
|
listMaxHeight?: import("react").CSSProperties["height"];
|
1071
1072
|
listWidth?: import("react").CSSProperties["width"];
|
1072
1073
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -1083,7 +1084,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1083
1084
|
view?: string;
|
1084
1085
|
emptyStateDescription?: string;
|
1085
1086
|
listHeight?: import("react").CSSProperties["height"];
|
1086
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
1087
1087
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
1088
1088
|
readOnly?: false;
|
1089
1089
|
disabled?: false;
|
@@ -1121,6 +1121,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1121
1121
|
textAfter?: string;
|
1122
1122
|
variant?: "normal" | "tight";
|
1123
1123
|
zIndex?: import("react").CSSProperties["zIndex"];
|
1124
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
1124
1125
|
listMaxHeight?: import("react").CSSProperties["height"];
|
1125
1126
|
listWidth?: import("react").CSSProperties["width"];
|
1126
1127
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -1137,7 +1138,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1137
1138
|
view?: string;
|
1138
1139
|
emptyStateDescription?: string;
|
1139
1140
|
listHeight?: import("react").CSSProperties["height"];
|
1140
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
1141
1141
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
1142
1142
|
readOnly?: false;
|
1143
1143
|
disabled?: false;
|
@@ -1175,6 +1175,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1175
1175
|
textAfter?: string;
|
1176
1176
|
variant?: "normal" | "tight";
|
1177
1177
|
zIndex?: import("react").CSSProperties["zIndex"];
|
1178
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
1178
1179
|
listMaxHeight?: import("react").CSSProperties["height"];
|
1179
1180
|
listWidth?: import("react").CSSProperties["width"];
|
1180
1181
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -1191,7 +1192,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1191
1192
|
view?: string;
|
1192
1193
|
emptyStateDescription?: string;
|
1193
1194
|
listHeight?: import("react").CSSProperties["height"];
|
1194
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
1195
1195
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
1196
1196
|
readOnly?: false;
|
1197
1197
|
disabled?: false;
|
@@ -1229,6 +1229,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1229
1229
|
textAfter?: string;
|
1230
1230
|
variant?: "normal" | "tight";
|
1231
1231
|
zIndex?: import("react").CSSProperties["zIndex"];
|
1232
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
1232
1233
|
listMaxHeight?: import("react").CSSProperties["height"];
|
1233
1234
|
listWidth?: import("react").CSSProperties["width"];
|
1234
1235
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -1245,7 +1246,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1245
1246
|
view?: string;
|
1246
1247
|
emptyStateDescription?: string;
|
1247
1248
|
listHeight?: import("react").CSSProperties["height"];
|
1248
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
1249
1249
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
1250
1250
|
readOnly?: false;
|
1251
1251
|
disabled?: false;
|
@@ -1283,6 +1283,7 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1283
1283
|
textAfter?: string;
|
1284
1284
|
variant?: "normal" | "tight";
|
1285
1285
|
zIndex?: import("react").CSSProperties["zIndex"];
|
1286
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
1286
1287
|
listMaxHeight?: import("react").CSSProperties["height"];
|
1287
1288
|
listWidth?: import("react").CSSProperties["width"];
|
1288
1289
|
portal?: string | React.RefObject<HTMLElement>;
|
@@ -1299,7 +1300,6 @@ declare const ComboboxComponent: import("react").FunctionComponent<import("../..
|
|
1299
1300
|
view?: string;
|
1300
1301
|
emptyStateDescription?: string;
|
1301
1302
|
listHeight?: import("react").CSSProperties["height"];
|
1302
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
1303
1303
|
} & import("../../../components/TextField/TextField.types").LabelProps & {
|
1304
1304
|
readOnly?: false;
|
1305
1305
|
disabled?: false;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../src/examples/components/Combobox/Combobox.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAIxE,OAAO,KAAK,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAEtF,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAG3C,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAY+yG,MAAO,YAAY
|
1
|
+
{"version":3,"file":"Combobox.d.ts","sourceRoot":"","sources":["../../../../src/examples/components/Combobox/Combobox.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,cAAc,EAAE,YAAY,EAAE,MAAM,OAAO,CAAC;AAIxE,OAAO,KAAK,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAEtF,OAAO,EAAE,MAAM,EAAE,MAAM,mBAAmB,CAAC;AAG3C,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAY+yG,MAAO,YAAY;;;;;;;;sBAAy1B,MAAO,SAAS;gDAAgI,MAAO,SAAS;;;;mBAA6f,MAAO,OAAO;;iBAAyO,MAAO,SAAS;gBAAwF,MAAO,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAAj3D,YAAY;;;;;;;;4BAAg2B,SAAS;sDAAuI,SAAS;;;;yBAAogB,OAAO;;uBAAgP,SAAS;sBAA+F,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qKAZ7oK,CAAC;AAElD,KAAK,eAAe,GAAG,MAAM,OAAO,MAAM,CAAC,YAAY,CAAC,CAAC;AAEzD,KAAK,QAAQ,CAAC,CAAC,SAAS,kBAAkB,IAAI,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,eAAe,CAAC,GACjF,IAAI,CAAC,cAAc,CAAC,OAAO,iBAAiB,CAAC,EAAE,eAAe,CAAC,CAAC;AAEpE,QAAA,MAAM,QAAQ,EAAwB,CAAC,CAA4B,SAAlB,kBAAkB,EAC/D,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,GAAG;IAAE,GAAG,CAAC,EAAE,YAAY,CAAC,gBAAgB,CAAC,CAAA;CAAE,KAC5D,YAAY,GAAG,IAAI,CAAC;AAEzB,OAAO,EAAE,QAAQ,EAAE,CAAC"}
|
@@ -20,6 +20,7 @@ export declare const Dropdown: import("react").FunctionComponent<import("../../.
|
|
20
20
|
openByRightClick?: boolean;
|
21
21
|
placement?: import("../../../components/Dropdown/Dropdown.types").DropdownPlacement;
|
22
22
|
offset?: [number, number];
|
23
|
+
listOverflow?: import("react").CSSProperties["overflow"];
|
23
24
|
listMaxHeight?: import("react").CSSProperties["height"];
|
24
25
|
listWidth?: import("react").CSSProperties["width"];
|
25
26
|
hasArrow?: boolean;
|
@@ -37,6 +38,5 @@ export declare const Dropdown: import("react").FunctionComponent<import("../../.
|
|
37
38
|
onItemClick?: ((item: import("../../../components/Dropdown").DropdownItemOption, event: import("react").SyntheticEvent) => void) | undefined;
|
38
39
|
listHeight?: import("react").CSSProperties["height"];
|
39
40
|
hoverIndex?: number;
|
40
|
-
listOverflow?: import("react").CSSProperties["overflow"];
|
41
41
|
} & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
|
42
42
|
//# sourceMappingURL=Dropdown.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../../src/examples/components/Dropdown/Dropdown.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,QAAQ
|
1
|
+
{"version":3,"file":"Dropdown.d.ts","sourceRoot":"","sources":["../../../../src/examples/components/Dropdown/Dropdown.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAC4wE,MAAO,SAAS;uFAAgI,MAAO,SAAS;;;;;;;mGADl5E,CAAC"}
|