@alfalab/core-components 47.12.1-beta.1 → 47.13.0-beta.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/gallery/Component.js +12 -29
- package/gallery/components/header/Component.js +13 -0
- package/gallery/components/header-mobile/Component.js +3 -6
- package/gallery/components/header-mobile/index.d.ts +1 -1
- package/gallery/components/header-mobile/index.js +6 -0
- package/gallery/components/image-preview/Component.js +44 -17
- package/gallery/components/image-preview/index.css +0 -2
- package/gallery/components/image-viewer/component.js +3 -2
- package/gallery/components/image-viewer/index.css +0 -2
- package/gallery/components/image-viewer/slide.js +1 -1
- package/gallery/components/image-viewer/video/index.css +4 -4
- package/gallery/components/image-viewer/video/index.d.ts +2 -1
- package/gallery/components/image-viewer/video/index.js +28 -23
- package/gallery/components/index.d.ts +2 -0
- package/gallery/components/index.js +4 -0
- package/gallery/components/info-bar/Component.js +18 -7
- package/gallery/components/info-bar/index.css +4 -4
- package/gallery/components/info-bar/index.d.ts +1 -1
- package/gallery/components/info-bar/index.js +6 -0
- package/gallery/components/navigation-bar/Component.js +3 -4
- package/gallery/cssm/Component.js +12 -29
- package/gallery/cssm/components/header/Component.js +13 -0
- package/gallery/cssm/components/header-mobile/Component.js +3 -12
- package/gallery/cssm/components/header-mobile/index.d.ts +1 -1
- package/gallery/cssm/components/header-mobile/index.js +6 -0
- package/gallery/cssm/components/image-preview/Component.js +44 -17
- package/gallery/cssm/components/image-preview/index.module.css +0 -2
- package/gallery/cssm/components/image-viewer/component.js +2 -1
- package/gallery/cssm/components/image-viewer/index.module.css +0 -2
- package/gallery/cssm/components/image-viewer/slide.js +1 -1
- package/gallery/cssm/components/image-viewer/video/index.d.ts +2 -1
- package/gallery/cssm/components/image-viewer/video/index.js +27 -22
- package/gallery/cssm/components/image-viewer/video/index.module.css +4 -4
- package/gallery/cssm/components/index.d.ts +2 -0
- package/gallery/cssm/components/index.js +4 -0
- package/gallery/cssm/components/info-bar/Component.js +18 -13
- package/gallery/cssm/components/info-bar/index.d.ts +1 -1
- package/gallery/cssm/components/info-bar/index.js +6 -0
- package/gallery/cssm/components/info-bar/index.module.css +4 -4
- package/gallery/cssm/components/navigation-bar/Component.js +3 -4
- package/gallery/cssm/index.d.ts +1 -1
- package/gallery/cssm/index.js +1 -9
- package/gallery/cssm/utils/constants.d.ts +12 -1
- package/gallery/cssm/utils/constants.js +17 -0
- package/gallery/cssm/utils/index.js +6 -0
- package/gallery/esm/Component.js +19 -37
- package/gallery/esm/components/header/Component.js +14 -1
- package/gallery/esm/components/header-mobile/Component.js +3 -18
- package/gallery/esm/components/header-mobile/index.d.ts +1 -1
- package/gallery/esm/components/header-mobile/index.js +20 -1
- package/gallery/esm/components/image-preview/Component.js +44 -17
- package/gallery/esm/components/image-preview/index.css +0 -2
- package/gallery/esm/components/image-preview/index.js +1 -0
- package/gallery/esm/components/image-viewer/component.js +3 -4
- package/gallery/esm/components/image-viewer/index.css +0 -2
- package/gallery/esm/components/image-viewer/index.js +1 -3
- package/gallery/esm/components/image-viewer/slide.js +2 -4
- package/gallery/esm/components/image-viewer/video/index.css +4 -4
- package/gallery/esm/components/image-viewer/video/index.d.ts +2 -1
- package/gallery/esm/components/image-viewer/video/index.js +28 -22
- package/gallery/esm/components/index.d.ts +2 -0
- package/gallery/esm/components/index.js +4 -3
- package/gallery/esm/components/info-bar/Component.js +19 -20
- package/gallery/esm/components/info-bar/index.css +4 -4
- package/gallery/esm/components/info-bar/index.d.ts +1 -1
- package/gallery/esm/components/info-bar/index.js +20 -1
- package/gallery/esm/components/navigation-bar/Component.js +4 -3
- package/gallery/esm/components/navigation-bar/index.js +1 -1
- package/gallery/esm/index.d.ts +1 -1
- package/gallery/esm/index.js +11 -12
- package/gallery/esm/{slide-ca7119fa.js → slide-da05984b.js} +1 -3
- package/gallery/esm/utils/constants.d.ts +12 -1
- package/gallery/esm/utils/constants.js +12 -1
- package/gallery/esm/utils/index.js +1 -1
- package/gallery/index.d.ts +1 -1
- package/gallery/index.js +1 -9
- package/gallery/modern/Component.js +19 -37
- package/gallery/modern/components/header/Component.js +13 -1
- package/gallery/modern/components/header-mobile/Component.js +3 -18
- package/gallery/modern/components/header-mobile/index.d.ts +1 -1
- package/gallery/modern/components/header-mobile/index.js +19 -1
- package/gallery/modern/components/image-preview/Component.js +39 -13
- package/gallery/modern/components/image-preview/index.css +0 -2
- package/gallery/modern/components/image-preview/index.js +1 -0
- package/gallery/modern/components/image-viewer/component.js +3 -4
- package/gallery/modern/components/image-viewer/index.css +0 -2
- package/gallery/modern/components/image-viewer/index.js +1 -3
- package/gallery/modern/components/image-viewer/slide.js +2 -4
- package/gallery/modern/components/image-viewer/video/index.css +4 -4
- package/gallery/modern/components/image-viewer/video/index.d.ts +2 -1
- package/gallery/modern/components/image-viewer/video/index.js +28 -22
- package/gallery/modern/components/index.d.ts +2 -0
- package/gallery/modern/components/index.js +4 -3
- package/gallery/modern/components/info-bar/Component.js +18 -20
- package/gallery/modern/components/info-bar/index.css +4 -4
- package/gallery/modern/components/info-bar/index.d.ts +1 -1
- package/gallery/modern/components/info-bar/index.js +19 -1
- package/gallery/modern/components/navigation-bar/Component.js +4 -3
- package/gallery/modern/components/navigation-bar/index.js +1 -1
- package/gallery/modern/index.d.ts +1 -1
- package/gallery/modern/index.js +11 -12
- package/gallery/modern/{slide-e2bd02f9.js → slide-dac6462d.js} +1 -3
- package/gallery/modern/utils/constants.d.ts +12 -1
- package/gallery/modern/utils/constants.js +12 -1
- package/gallery/modern/utils/index.js +1 -1
- package/gallery/{slide-ebea0c09.js → slide-387e9068.js} +1 -1
- package/gallery/utils/constants.d.ts +12 -1
- package/gallery/utils/constants.js +17 -0
- package/gallery/utils/index.js +6 -0
- package/modal/components/controls/Component.js +1 -1
- package/modal/components/footer/Component.js +1 -1
- package/modal/esm/Component.responsive.js +1 -1
- package/modal/esm/components/controls/Component.js +1 -1
- package/modal/esm/components/controls/index.js +1 -1
- package/modal/esm/components/footer/Component.js +1 -1
- package/modal/esm/desktop/Component.desktop.js +1 -1
- package/modal/esm/desktop/index.js +1 -1
- package/modal/esm/index.js +1 -1
- package/modal/esm/mobile/Component.mobile.js +1 -1
- package/modal/esm/mobile/index.js +1 -1
- package/modal/modern/Component.responsive.js +1 -1
- package/modal/modern/components/controls/Component.js +1 -1
- package/modal/modern/components/controls/index.js +1 -1
- package/modal/modern/components/footer/Component.js +1 -1
- package/modal/modern/desktop/Component.desktop.js +1 -1
- package/modal/modern/desktop/index.js +1 -1
- package/modal/modern/index.js +1 -1
- package/modal/modern/mobile/Component.mobile.js +1 -1
- package/modal/modern/mobile/index.js +1 -1
- package/package.json +1 -1
- package/select/components/base-select/Component.js +2 -2
- package/select/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
- package/select/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
- package/select/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
- package/select/esm/Component.responsive.js +3 -3
- package/select/esm/components/base-select/Component.js +2 -2
- package/select/esm/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
- package/select/esm/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
- package/select/esm/components/base-select/components/list-mobile/list-mobile.js +1 -1
- package/select/esm/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
- package/select/esm/components/base-select/index.js +2 -2
- package/select/esm/components/index.js +2 -2
- package/select/esm/desktop/Component.desktop.js +2 -2
- package/select/esm/desktop/index.js +2 -2
- package/select/esm/index.js +3 -3
- package/select/esm/mobile/Component.mobile.js +3 -3
- package/select/esm/mobile/Component.modal.mobile.js +3 -3
- package/select/esm/mobile/index.js +3 -3
- package/select/esm/presets/index.js +1 -1
- package/select/esm/presets/useSelectWithApply/hook.js +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
- package/select/esm/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
- package/select/esm/shared/index.js +3 -3
- package/select/mobile/Component.mobile.js +1 -1
- package/select/modern/Component.responsive.js +3 -3
- package/select/modern/components/base-select/Component.js +2 -2
- package/select/modern/components/base-select/components/list-desktop/list-popover-desktop.js +1 -1
- package/select/modern/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js +1 -1
- package/select/modern/components/base-select/components/list-mobile/list-mobile.js +1 -1
- package/select/modern/components/base-select/components/list-mobile/list-modal-mobile.js +1 -1
- package/select/modern/components/base-select/index.js +2 -2
- package/select/modern/components/index.js +2 -2
- package/select/modern/desktop/Component.desktop.js +2 -2
- package/select/modern/desktop/index.js +2 -2
- package/select/modern/index.js +3 -3
- package/select/modern/mobile/Component.mobile.js +3 -3
- package/select/modern/mobile/Component.modal.mobile.js +3 -3
- package/select/modern/mobile/index.js +3 -3
- package/select/modern/presets/index.js +1 -1
- package/select/modern/presets/useSelectWithApply/hook.js +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
- package/select/modern/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
- package/select/modern/shared/index.js +3 -3
- package/select/presets/index.js +1 -1
- package/select/presets/useSelectWithApply/hook.js +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/Component.js +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/index.d.ts +1 -1
- package/select/presets/useSelectWithApply/options-list-with-apply/index.js +1 -1
- package/select/shared/index.js +1 -1
- package/side-panel/components/controls/Component.js +1 -1
- package/side-panel/components/footer/Component.js +1 -1
- package/side-panel/esm/Component.responsive.js +1 -1
- package/side-panel/esm/components/controls/Component.js +1 -1
- package/side-panel/esm/components/controls/index.js +1 -1
- package/side-panel/esm/components/footer/Component.desktop.js +1 -1
- package/side-panel/esm/components/footer/Component.js +1 -1
- package/side-panel/esm/components/footer/Component.mobile.js +1 -1
- package/side-panel/esm/desktop/Component.desktop.js +1 -1
- package/side-panel/esm/desktop/index.js +1 -1
- package/side-panel/esm/index.js +1 -1
- package/side-panel/esm/mobile/Component.mobile.js +1 -1
- package/side-panel/esm/mobile/index.js +1 -1
- package/side-panel/modern/Component.responsive.js +1 -1
- package/side-panel/modern/components/controls/Component.js +1 -1
- package/side-panel/modern/components/controls/index.js +1 -1
- package/side-panel/modern/components/footer/Component.desktop.js +1 -1
- package/side-panel/modern/components/footer/Component.js +1 -1
- package/side-panel/modern/components/footer/Component.mobile.js +1 -1
- package/side-panel/modern/desktop/Component.desktop.js +1 -1
- package/side-panel/modern/desktop/index.js +1 -1
- package/side-panel/modern/index.js +1 -1
- package/side-panel/modern/mobile/Component.mobile.js +1 -1
- package/side-panel/modern/mobile/index.js +1 -1
- package/themes/compiled/mobile-dark-bluetint.css +5 -5
- package/toast-plate/components/base-toast-plate/component.js +2 -2
- package/toast-plate/components/base-toast-plate/hooks/useDeprecatedBadge.js +1 -1
- package/toast-plate/components/base-toast-plate/utils/getBaseToastPlateTestIds.js +2 -2
- package/toast-plate/esm/Component.responsive.js +2 -2
- package/toast-plate/esm/components/base-toast-plate/component.js +2 -2
- package/toast-plate/esm/components/base-toast-plate/hooks/useDeprecatedBadge.js +1 -1
- package/toast-plate/esm/components/base-toast-plate/index.js +2 -2
- package/toast-plate/esm/components/base-toast-plate/utils/getBaseToastPlateTestIds.js +2 -2
- package/toast-plate/esm/desktop/Component.desktop.js +2 -2
- package/toast-plate/esm/desktop/index.js +2 -2
- package/toast-plate/esm/index-2f466837.d.ts +2 -2
- package/toast-plate/esm/index.js +2 -2
- package/toast-plate/esm/mobile/Component.mobile.js +2 -2
- package/toast-plate/esm/mobile/index.js +2 -2
- package/toast-plate/index-2f466837.d.ts +2 -2
- package/toast-plate/modern/Component.responsive.js +2 -2
- package/toast-plate/modern/components/base-toast-plate/component.js +2 -2
- package/toast-plate/modern/components/base-toast-plate/hooks/useDeprecatedBadge.js +1 -1
- package/toast-plate/modern/components/base-toast-plate/index.js +2 -2
- package/toast-plate/modern/components/base-toast-plate/utils/getBaseToastPlateTestIds.js +2 -2
- package/toast-plate/modern/desktop/Component.desktop.js +2 -2
- package/toast-plate/modern/desktop/index.js +2 -2
- package/toast-plate/modern/index-2f466837.d.ts +2 -2
- package/toast-plate/modern/index.js +2 -2
- package/toast-plate/modern/mobile/Component.mobile.js +2 -2
- package/toast-plate/modern/mobile/index.js +2 -2
- package/typography/esm/component.js +2 -2
- package/typography/esm/index.js +2 -2
- package/typography/esm/text/component.js +1 -1
- package/typography/esm/text/index.js +1 -1
- package/typography/esm/title/component.js +1 -1
- package/typography/esm/title/index.js +2 -2
- package/typography/esm/title-mobile/component.js +2 -2
- package/typography/esm/title-mobile/index.js +2 -2
- package/typography/esm/title-responsive/component.js +2 -2
- package/typography/esm/title-responsive/index.js +2 -2
- package/typography/modern/component.js +2 -2
- package/typography/modern/index.js +2 -2
- package/typography/modern/text/component.js +1 -1
- package/typography/modern/text/index.js +1 -1
- package/typography/modern/title/component.js +1 -1
- package/typography/modern/title/index.js +2 -2
- package/typography/modern/title-mobile/component.js +2 -2
- package/typography/modern/title-mobile/index.js +2 -2
- package/typography/modern/title-responsive/component.js +2 -2
- package/typography/modern/title-responsive/index.js +2 -2
- package/typography/text/component.js +1 -1
- package/typography/title/component.js +1 -1
- package/typography/title/index.js +1 -1
- package/typography/title-mobile/component.js +1 -1
- package/typography/title-responsive/component.js +1 -1
- /package/gallery/esm/{slide-ca7119fa.d.ts → slide-da05984b.d.ts} +0 -0
- /package/gallery/modern/{slide-e2bd02f9.d.ts → slide-dac6462d.d.ts} +0 -0
- /package/gallery/{slide-ebea0c09.d.ts → slide-387e9068.d.ts} +0 -0
- /package/modal/esm/{layout.module-6361424d.js → layout.module-94caa56e.js} +0 -0
- /package/modal/{layout.module-3fc11792.js → layout.module-4c01904f.js} +0 -0
- /package/modal/modern/{layout.module-e0e30502.js → layout.module-db207304.js} +0 -0
- /package/select/esm/{hook-3b730828.d.ts → hook-2ac6d7d4.d.ts} +0 -0
- /package/select/esm/{hook-3b730828.js → hook-2ac6d7d4.js} +0 -0
- /package/select/esm/{list-popover-desktop-aec914e9.d.ts → list-popover-desktop-20c87b82.d.ts} +0 -0
- /package/select/esm/{list-popover-desktop-aec914e9.js → list-popover-desktop-20c87b82.js} +0 -0
- /package/select/esm/{mobile.module-ae380d17.js → mobile.module-6dbbc4d9.js} +0 -0
- /package/select/{hook-20696959.d.ts → hook-3b0516fb.d.ts} +0 -0
- /package/select/{hook-20696959.js → hook-3b0516fb.js} +0 -0
- /package/select/{list-popover-desktop-ba96cd50.d.ts → list-popover-desktop-447ef64d.d.ts} +0 -0
- /package/select/{list-popover-desktop-ba96cd50.js → list-popover-desktop-447ef64d.js} +0 -0
- /package/select/{mobile.module-c6e0a17d.js → mobile.module-0f5968f6.js} +0 -0
- /package/select/modern/{hook-08cacbab.d.ts → hook-587f20b6.d.ts} +0 -0
- /package/select/modern/{hook-08cacbab.js → hook-587f20b6.js} +0 -0
- /package/select/modern/{list-popover-desktop-65d415ed.d.ts → list-popover-desktop-d2b7aabc.d.ts} +0 -0
- /package/select/modern/{list-popover-desktop-65d415ed.js → list-popover-desktop-d2b7aabc.js} +0 -0
- /package/select/modern/{mobile.module-c16635d6.js → mobile.module-7d3202b8.js} +0 -0
- /package/side-panel/esm/{layout.module-8f998738.js → layout.module-b79af139.js} +0 -0
- /package/side-panel/{layout.module-2364c729.js → layout.module-6e8d2296.js} +0 -0
- /package/side-panel/modern/{layout.module-c793f704.js → layout.module-549d23fa.js} +0 -0
- /package/toast-plate/{PortalContext-5d1c35c9.d.ts → PortalContext-812e773a.d.ts} +0 -0
- /package/toast-plate/{PortalContext-5d1c35c9.js → PortalContext-812e773a.js} +0 -0
- /package/toast-plate/esm/{PortalContext-76e29fb0.d.ts → PortalContext-b4370e67.d.ts} +0 -0
- /package/toast-plate/esm/{PortalContext-76e29fb0.js → PortalContext-b4370e67.js} +0 -0
- /package/toast-plate/esm/{getDataTestId-9959edc4.d.ts → getDataTestId-11a376e0.d.ts} +0 -0
- /package/toast-plate/esm/{getDataTestId-9959edc4.js → getDataTestId-11a376e0.js} +0 -0
- /package/toast-plate/{getDataTestId-bf909aba.d.ts → getDataTestId-316e89c4.d.ts} +0 -0
- /package/toast-plate/{getDataTestId-bf909aba.js → getDataTestId-316e89c4.js} +0 -0
- /package/toast-plate/modern/{PortalContext-de359614.d.ts → PortalContext-6bf9a525.d.ts} +0 -0
- /package/toast-plate/modern/{PortalContext-de359614.js → PortalContext-6bf9a525.js} +0 -0
- /package/toast-plate/modern/{getDataTestId-0f89d772.d.ts → getDataTestId-56b815bf.d.ts} +0 -0
- /package/toast-plate/modern/{getDataTestId-0f89d772.js → getDataTestId-56b815bf.js} +0 -0
- /package/typography/{colors.module-111c5bd6.js → colors.module-bf04f1dc.js} +0 -0
- /package/typography/{common.module-62a6f23d.js → common.module-4c00fa0c.js} +0 -0
- /package/typography/esm/{colors.module-1525a6cf.js → colors.module-d44fc8b3.js} +0 -0
- /package/typography/esm/{common.module-1cba9ba8.js → common.module-598e0956.js} +0 -0
- /package/typography/modern/{colors.module-ffa65232.js → colors.module-09161417.js} +0 -0
- /package/typography/modern/{common.module-a97de0bb.js → common.module-7bad8215.js} +0 -0
|
@@ -12,7 +12,7 @@ import { Option } from '../components/option/Component.js';
|
|
|
12
12
|
import { OptionsList } from '../components/options-list/Component.js';
|
|
13
13
|
import { Search } from '../components/search/Component.js';
|
|
14
14
|
import { VirtualOptionsList } from '../components/virtual-options-list/Component.js';
|
|
15
|
-
import { u as useSelectWithApply } from '../hook-
|
|
15
|
+
import { u as useSelectWithApply } from '../hook-2ac6d7d4.js';
|
|
16
16
|
import { Header } from '../presets/useSelectWithApply/options-list-with-apply/header/Component.js';
|
|
17
17
|
import 'classnames';
|
|
18
18
|
import '@alfalab/icons-glyph/ChevronDownMIcon';
|
|
@@ -25,12 +25,12 @@ import '@alfalab/hooks';
|
|
|
25
25
|
import '../utils.js';
|
|
26
26
|
import '../components/native-select/Component.js';
|
|
27
27
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
28
|
-
import '../list-popover-desktop-
|
|
28
|
+
import '../list-popover-desktop-20c87b82.js';
|
|
29
29
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
30
30
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
31
31
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
32
32
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
33
|
-
import '../mobile.module-
|
|
33
|
+
import '../mobile.module-6dbbc4d9.js';
|
|
34
34
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
35
35
|
import '../components/clear-button/Component.js';
|
|
36
36
|
import '../../../button/esm';
|
|
@@ -17,12 +17,12 @@ import '@alfalab/hooks';
|
|
|
17
17
|
import '../utils.js';
|
|
18
18
|
import '../components/native-select/Component.js';
|
|
19
19
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
20
|
-
import '../list-popover-desktop-
|
|
20
|
+
import '../list-popover-desktop-20c87b82.js';
|
|
21
21
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
22
22
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
23
23
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
24
24
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
25
|
-
import '../mobile.module-
|
|
25
|
+
import '../mobile.module-6dbbc4d9.js';
|
|
26
26
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
27
27
|
import '../components/field/Component.js';
|
|
28
28
|
import '../components/clear-button/Component.js';
|
|
@@ -48,7 +48,7 @@ import '../../../input/esm';
|
|
|
48
48
|
import '@alfalab/icons-glyph/MagnifierMIcon';
|
|
49
49
|
import '../components/virtual-options-list/Component.js';
|
|
50
50
|
import 'react-virtual';
|
|
51
|
-
import '../hook-
|
|
51
|
+
import '../hook-2ac6d7d4.js';
|
|
52
52
|
import 'deep-equal';
|
|
53
53
|
import '../presets/useSelectWithApply/options-list-with-apply/footer/Component.js';
|
|
54
54
|
import '../../../button/esm/desktop';
|
|
@@ -18,12 +18,12 @@ import '@alfalab/hooks';
|
|
|
18
18
|
import '../utils.js';
|
|
19
19
|
import '../components/native-select/Component.js';
|
|
20
20
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
21
|
-
import '../list-popover-desktop-
|
|
21
|
+
import '../list-popover-desktop-20c87b82.js';
|
|
22
22
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
23
23
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
24
24
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
25
25
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
26
|
-
import '../mobile.module-
|
|
26
|
+
import '../mobile.module-6dbbc4d9.js';
|
|
27
27
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
28
28
|
import '../components/field/Component.js';
|
|
29
29
|
import '../components/clear-button/Component.js';
|
|
@@ -49,7 +49,7 @@ import '../../../input/esm';
|
|
|
49
49
|
import '@alfalab/icons-glyph/MagnifierMIcon';
|
|
50
50
|
import '../components/virtual-options-list/Component.js';
|
|
51
51
|
import 'react-virtual';
|
|
52
|
-
import '../hook-
|
|
52
|
+
import '../hook-2ac6d7d4.js';
|
|
53
53
|
import 'deep-equal';
|
|
54
54
|
import '../presets/useSelectWithApply/options-list-with-apply/footer/Component.js';
|
|
55
55
|
import '../../../button/esm/desktop';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { useSelectWithLoading } from './useSelectWithLoading/hook.js';
|
|
2
2
|
export { useLazyLoading } from './useLazyLoading/hook.js';
|
|
3
|
-
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-
|
|
3
|
+
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-2ac6d7d4.js';
|
|
4
4
|
import 'tslib';
|
|
5
5
|
import 'react';
|
|
6
6
|
import '../../../skeleton/esm';
|
|
@@ -2,7 +2,7 @@ import 'tslib';
|
|
|
2
2
|
import 'react';
|
|
3
3
|
import 'deep-equal';
|
|
4
4
|
import '../../../../shared/esm';
|
|
5
|
-
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../../hook-
|
|
5
|
+
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../../hook-2ac6d7d4.js';
|
|
6
6
|
import '../../utils.js';
|
|
7
7
|
import '../../components/options-list/Component.js';
|
|
8
8
|
import 'react-merge-refs';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'tslib';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '../../../components/options-list/Component.js';
|
|
4
|
-
export { O as OptionsListWithApply } from '../../../hook-
|
|
4
|
+
export { O as OptionsListWithApply } from '../../../hook-2ac6d7d4.js';
|
|
5
5
|
import './footer/Component.js';
|
|
6
6
|
import './header/Component.js';
|
|
7
7
|
import 'react-merge-refs';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "../../../hook-
|
|
1
|
+
export * from "../../../hook-2ac6d7d4";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { useSelectWithLoading } from '../presets/useSelectWithLoading/hook.js';
|
|
2
2
|
export { useLazyLoading } from '../presets/useLazyLoading/hook.js';
|
|
3
|
-
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-
|
|
3
|
+
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-2ac6d7d4.js';
|
|
4
4
|
export { defaultAccessor, defaultFilterFn, defaultGroupAccessor, getSelectTestIds, isGroup, isOptionShape, joinOptions, lastIndexOf, processOptions, usePrevious, useVisibleOptions } from '../utils.js';
|
|
5
5
|
export { Option } from '../components/option/Component.js';
|
|
6
6
|
export { BaseOption } from '../components/base-option/Component.js';
|
|
@@ -44,12 +44,12 @@ import 'compute-scroll-into-view';
|
|
|
44
44
|
import 'downshift';
|
|
45
45
|
import '../components/native-select/Component.js';
|
|
46
46
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
47
|
-
import '../list-popover-desktop-
|
|
47
|
+
import '../list-popover-desktop-20c87b82.js';
|
|
48
48
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
49
49
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
50
50
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
51
51
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
52
|
-
import '../mobile.module-
|
|
52
|
+
import '../mobile.module-6dbbc4d9.js';
|
|
53
53
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
54
54
|
import '../../../base-modal/esm';
|
|
55
55
|
import '../../../button/esm/mobile';
|
|
@@ -14,7 +14,7 @@ var components_option_Component = require('../components/option/Component.js');
|
|
|
14
14
|
var components_optionsList_Component = require('../components/options-list/Component.js');
|
|
15
15
|
var components_search_Component = require('../components/search/Component.js');
|
|
16
16
|
var components_virtualOptionsList_Component = require('../components/virtual-options-list/Component.js');
|
|
17
|
-
var presets_useSelectWithApply_optionsListWithApply_Component = require('../hook-
|
|
17
|
+
var presets_useSelectWithApply_optionsListWithApply_Component = require('../hook-3b0516fb.js');
|
|
18
18
|
var presets_useSelectWithApply_optionsListWithApply_header_Component = require('../presets/useSelectWithApply/options-list-with-apply/header/Component.js');
|
|
19
19
|
|
|
20
20
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
@@ -18,12 +18,12 @@ import '@alfalab/hooks';
|
|
|
18
18
|
import './utils.js';
|
|
19
19
|
import './components/native-select/Component.js';
|
|
20
20
|
import './components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
21
|
-
import './list-popover-desktop-
|
|
21
|
+
import './list-popover-desktop-d2b7aabc.js';
|
|
22
22
|
import './components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
23
23
|
import './components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
24
24
|
import './components/base-select/components/list-mobile/list-mobile.js';
|
|
25
25
|
import './components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
26
|
-
import './mobile.module-
|
|
26
|
+
import './mobile.module-7d3202b8.js';
|
|
27
27
|
import './components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
28
28
|
import './components/field/Component.js';
|
|
29
29
|
import './components/clear-button/Component.js';
|
|
@@ -51,7 +51,7 @@ import '../../base-modal/modern';
|
|
|
51
51
|
import '../../button/modern/mobile';
|
|
52
52
|
import './components/virtual-options-list/Component.js';
|
|
53
53
|
import 'react-virtual';
|
|
54
|
-
import './hook-
|
|
54
|
+
import './hook-587f20b6.js';
|
|
55
55
|
import 'deep-equal';
|
|
56
56
|
import './presets/useSelectWithApply/options-list-with-apply/footer/Component.js';
|
|
57
57
|
import '../../button/modern/desktop';
|
|
@@ -9,11 +9,11 @@ import { useLayoutEffect_SAFE_FOR_SSR } from '@alfalab/hooks';
|
|
|
9
9
|
import { defaultAccessor, defaultFilterFn, defaultGroupAccessor, processOptions, isGroup } from '../../utils.js';
|
|
10
10
|
import { NativeSelect } from '../native-select/Component.js';
|
|
11
11
|
import { getListPopoverDesktopProps } from './components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
12
|
-
import { s as styles, L as ListPopoverDesktop } from '../../list-popover-desktop-
|
|
12
|
+
import { s as styles, L as ListPopoverDesktop } from '../../list-popover-desktop-d2b7aabc.js';
|
|
13
13
|
import { getListModalMobileProps } from './components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
14
14
|
import { getListBottomSheetMobileProps } from './components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
15
15
|
import { ListMobile } from './components/list-mobile/list-mobile.js';
|
|
16
|
-
import { m as mobileStyles } from '../../mobile.module-
|
|
16
|
+
import { m as mobileStyles } from '../../mobile.module-7d3202b8.js';
|
|
17
17
|
import './components/list-mobile/list-bottom-sheet-mobile.js';
|
|
18
18
|
import './components/list-mobile/list-modal-mobile.js';
|
|
19
19
|
|
package/select/modern/components/base-select/components/list-mobile/list-bottom-sheet-mobile.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { getDataTestId } from '../../../../../../shared/modern';
|
|
3
|
-
import { m as mobileStyles } from '../../../../mobile.module-
|
|
3
|
+
import { m as mobileStyles } from '../../../../mobile.module-7d3202b8.js';
|
|
4
4
|
|
|
5
5
|
const ListBottomSheetMobile = (props) => {
|
|
6
6
|
const { BottomSheet, dataTestId, open, label, placeholder, footer, swipeable, showSearch, bottomSheetProps, menuRef, scrollableContainerRef, onScroll, flatOptions, closeMenu, handleEntered, renderSearch, renderOptionsList, } = props;
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { ListBottomSheetMobile } from './list-bottom-sheet-mobile.js';
|
|
3
3
|
import { ListModalMobile } from './list-modal-mobile.js';
|
|
4
4
|
import '../../../../../../shared/modern';
|
|
5
|
-
import '../../../../mobile.module-
|
|
5
|
+
import '../../../../mobile.module-7d3202b8.js';
|
|
6
6
|
import 'react-merge-refs';
|
|
7
7
|
import 'classnames';
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import mergeRefs from 'react-merge-refs';
|
|
3
3
|
import cn from 'classnames';
|
|
4
4
|
import { getDataTestId } from '../../../../../../shared/modern';
|
|
5
|
-
import { m as mobileStyles } from '../../../../mobile.module-
|
|
5
|
+
import { m as mobileStyles } from '../../../../mobile.module-7d3202b8.js';
|
|
6
6
|
|
|
7
7
|
const ListModalMobile = (props) => {
|
|
8
8
|
const { ModalMobile, dataTestId, open, modalProps, modalHeaderProps, modalFooterProps, menuRef, scrollableContainerRef, label, placeholder, onScroll, flatOptions, closeMenu, handleEntered, renderSearch, renderOptionsList, } = props;
|
|
@@ -10,10 +10,10 @@ import '@alfalab/hooks';
|
|
|
10
10
|
import '../../utils.js';
|
|
11
11
|
import '../native-select/Component.js';
|
|
12
12
|
import './components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
13
|
-
import '../../list-popover-desktop-
|
|
13
|
+
import '../../list-popover-desktop-d2b7aabc.js';
|
|
14
14
|
import './components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
15
15
|
import './components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
16
16
|
import './components/list-mobile/list-mobile.js';
|
|
17
17
|
import './components/list-mobile/list-bottom-sheet-mobile.js';
|
|
18
|
-
import '../../mobile.module-
|
|
18
|
+
import '../../mobile.module-7d3202b8.js';
|
|
19
19
|
import './components/list-mobile/list-modal-mobile.js';
|
|
@@ -19,12 +19,12 @@ import '@alfalab/hooks';
|
|
|
19
19
|
import '../utils.js';
|
|
20
20
|
import './native-select/Component.js';
|
|
21
21
|
import './base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
22
|
-
import '../list-popover-desktop-
|
|
22
|
+
import '../list-popover-desktop-d2b7aabc.js';
|
|
23
23
|
import './base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
24
24
|
import './base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
25
25
|
import './base-select/components/list-mobile/list-mobile.js';
|
|
26
26
|
import './base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
27
|
-
import '../mobile.module-
|
|
27
|
+
import '../mobile.module-7d3202b8.js';
|
|
28
28
|
import './base-select/components/list-mobile/list-modal-mobile.js';
|
|
29
29
|
import './clear-button/Component.js';
|
|
30
30
|
import '../../../button/modern';
|
|
@@ -19,12 +19,12 @@ import '@alfalab/hooks';
|
|
|
19
19
|
import '../utils.js';
|
|
20
20
|
import '../components/native-select/Component.js';
|
|
21
21
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
22
|
-
import '../list-popover-desktop-
|
|
22
|
+
import '../list-popover-desktop-d2b7aabc.js';
|
|
23
23
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
24
24
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
25
25
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
26
26
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
27
|
-
import '../mobile.module-
|
|
27
|
+
import '../mobile.module-7d3202b8.js';
|
|
28
28
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
29
29
|
import '../components/clear-button/Component.js';
|
|
30
30
|
import '../../../button/modern';
|
|
@@ -15,12 +15,12 @@ import '@alfalab/hooks';
|
|
|
15
15
|
import '../utils.js';
|
|
16
16
|
import '../components/native-select/Component.js';
|
|
17
17
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
18
|
-
import '../list-popover-desktop-
|
|
18
|
+
import '../list-popover-desktop-d2b7aabc.js';
|
|
19
19
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
20
20
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
21
21
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
22
22
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
23
|
-
import '../mobile.module-
|
|
23
|
+
import '../mobile.module-7d3202b8.js';
|
|
24
24
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
25
25
|
import '../components/field/Component.js';
|
|
26
26
|
import '../components/clear-button/Component.js';
|
package/select/modern/index.js
CHANGED
|
@@ -17,12 +17,12 @@ import '@alfalab/hooks';
|
|
|
17
17
|
import './utils.js';
|
|
18
18
|
import './components/native-select/Component.js';
|
|
19
19
|
import './components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
20
|
-
import './list-popover-desktop-
|
|
20
|
+
import './list-popover-desktop-d2b7aabc.js';
|
|
21
21
|
import './components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
22
22
|
import './components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
23
23
|
import './components/base-select/components/list-mobile/list-mobile.js';
|
|
24
24
|
import './components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
25
|
-
import './mobile.module-
|
|
25
|
+
import './mobile.module-7d3202b8.js';
|
|
26
26
|
import './components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
27
27
|
import './components/field/Component.js';
|
|
28
28
|
import './components/clear-button/Component.js';
|
|
@@ -51,7 +51,7 @@ import '../../base-modal/modern';
|
|
|
51
51
|
import '../../button/modern/mobile';
|
|
52
52
|
import './components/virtual-options-list/Component.js';
|
|
53
53
|
import 'react-virtual';
|
|
54
|
-
import './hook-
|
|
54
|
+
import './hook-587f20b6.js';
|
|
55
55
|
import 'deep-equal';
|
|
56
56
|
import './presets/useSelectWithApply/options-list-with-apply/footer/Component.js';
|
|
57
57
|
import '../../button/modern/desktop';
|
|
@@ -11,7 +11,7 @@ import { Option } from '../components/option/Component.js';
|
|
|
11
11
|
import { OptionsList } from '../components/options-list/Component.js';
|
|
12
12
|
import { Search } from '../components/search/Component.js';
|
|
13
13
|
import { VirtualOptionsList } from '../components/virtual-options-list/Component.js';
|
|
14
|
-
import { u as useSelectWithApply } from '../hook-
|
|
14
|
+
import { u as useSelectWithApply } from '../hook-587f20b6.js';
|
|
15
15
|
import { Header } from '../presets/useSelectWithApply/options-list-with-apply/header/Component.js';
|
|
16
16
|
import 'classnames';
|
|
17
17
|
import '@alfalab/icons-glyph/ChevronDownMIcon';
|
|
@@ -24,12 +24,12 @@ import '@alfalab/hooks';
|
|
|
24
24
|
import '../utils.js';
|
|
25
25
|
import '../components/native-select/Component.js';
|
|
26
26
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
27
|
-
import '../list-popover-desktop-
|
|
27
|
+
import '../list-popover-desktop-d2b7aabc.js';
|
|
28
28
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
29
29
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
30
30
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
31
31
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
32
|
-
import '../mobile.module-
|
|
32
|
+
import '../mobile.module-7d3202b8.js';
|
|
33
33
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
34
34
|
import '../components/clear-button/Component.js';
|
|
35
35
|
import '../../../button/modern';
|
|
@@ -16,12 +16,12 @@ import '@alfalab/hooks';
|
|
|
16
16
|
import '../utils.js';
|
|
17
17
|
import '../components/native-select/Component.js';
|
|
18
18
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
19
|
-
import '../list-popover-desktop-
|
|
19
|
+
import '../list-popover-desktop-d2b7aabc.js';
|
|
20
20
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
21
21
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
22
22
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
23
23
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
24
|
-
import '../mobile.module-
|
|
24
|
+
import '../mobile.module-7d3202b8.js';
|
|
25
25
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
26
26
|
import '../components/field/Component.js';
|
|
27
27
|
import '../components/clear-button/Component.js';
|
|
@@ -47,7 +47,7 @@ import '../../../input/modern';
|
|
|
47
47
|
import '@alfalab/icons-glyph/MagnifierMIcon';
|
|
48
48
|
import '../components/virtual-options-list/Component.js';
|
|
49
49
|
import 'react-virtual';
|
|
50
|
-
import '../hook-
|
|
50
|
+
import '../hook-587f20b6.js';
|
|
51
51
|
import 'deep-equal';
|
|
52
52
|
import '../presets/useSelectWithApply/options-list-with-apply/footer/Component.js';
|
|
53
53
|
import '../../../button/modern/desktop';
|
|
@@ -17,12 +17,12 @@ import '@alfalab/hooks';
|
|
|
17
17
|
import '../utils.js';
|
|
18
18
|
import '../components/native-select/Component.js';
|
|
19
19
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
20
|
-
import '../list-popover-desktop-
|
|
20
|
+
import '../list-popover-desktop-d2b7aabc.js';
|
|
21
21
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
22
22
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
23
23
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
24
24
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
25
|
-
import '../mobile.module-
|
|
25
|
+
import '../mobile.module-7d3202b8.js';
|
|
26
26
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
27
27
|
import '../components/field/Component.js';
|
|
28
28
|
import '../components/clear-button/Component.js';
|
|
@@ -48,7 +48,7 @@ import '../../../input/modern';
|
|
|
48
48
|
import '@alfalab/icons-glyph/MagnifierMIcon';
|
|
49
49
|
import '../components/virtual-options-list/Component.js';
|
|
50
50
|
import 'react-virtual';
|
|
51
|
-
import '../hook-
|
|
51
|
+
import '../hook-587f20b6.js';
|
|
52
52
|
import 'deep-equal';
|
|
53
53
|
import '../presets/useSelectWithApply/options-list-with-apply/footer/Component.js';
|
|
54
54
|
import '../../../button/modern/desktop';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { useSelectWithLoading } from './useSelectWithLoading/hook.js';
|
|
2
2
|
export { useLazyLoading } from './useLazyLoading/hook.js';
|
|
3
|
-
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-
|
|
3
|
+
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-587f20b6.js';
|
|
4
4
|
import 'react';
|
|
5
5
|
import '../../../skeleton/modern';
|
|
6
6
|
import '../components/option/Component.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import 'react';
|
|
2
2
|
import 'deep-equal';
|
|
3
3
|
import '../../../../shared/modern';
|
|
4
|
-
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../../hook-
|
|
4
|
+
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../../hook-587f20b6.js';
|
|
5
5
|
import '../../utils.js';
|
|
6
6
|
import '../../components/options-list/Component.js';
|
|
7
7
|
import 'react-merge-refs';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import 'react';
|
|
2
2
|
import '../../../components/options-list/Component.js';
|
|
3
|
-
export { O as OptionsListWithApply } from '../../../hook-
|
|
3
|
+
export { O as OptionsListWithApply } from '../../../hook-587f20b6.js';
|
|
4
4
|
import './footer/Component.js';
|
|
5
5
|
import './header/Component.js';
|
|
6
6
|
import 'react-merge-refs';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "../../../hook-
|
|
1
|
+
export * from "../../../hook-587f20b6";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { useSelectWithLoading } from '../presets/useSelectWithLoading/hook.js';
|
|
2
2
|
export { useLazyLoading } from '../presets/useLazyLoading/hook.js';
|
|
3
|
-
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-
|
|
3
|
+
export { S as SELECT_ALL_KEY, u as useSelectWithApply } from '../hook-587f20b6.js';
|
|
4
4
|
export { defaultAccessor, defaultFilterFn, defaultGroupAccessor, getSelectTestIds, isGroup, isOptionShape, joinOptions, lastIndexOf, processOptions, usePrevious, useVisibleOptions } from '../utils.js';
|
|
5
5
|
export { Option } from '../components/option/Component.js';
|
|
6
6
|
export { BaseOption } from '../components/base-option/Component.js';
|
|
@@ -43,12 +43,12 @@ import 'compute-scroll-into-view';
|
|
|
43
43
|
import 'downshift';
|
|
44
44
|
import '../components/native-select/Component.js';
|
|
45
45
|
import '../components/base-select/components/list-desktop/helpers/get-list-popover-desktop-props.js';
|
|
46
|
-
import '../list-popover-desktop-
|
|
46
|
+
import '../list-popover-desktop-d2b7aabc.js';
|
|
47
47
|
import '../components/base-select/components/list-mobile/helpers/get-list-modal-mobile-props.js';
|
|
48
48
|
import '../components/base-select/components/list-mobile/helpers/get-list-bottom-sheet-mobile-props.js';
|
|
49
49
|
import '../components/base-select/components/list-mobile/list-mobile.js';
|
|
50
50
|
import '../components/base-select/components/list-mobile/list-bottom-sheet-mobile.js';
|
|
51
|
-
import '../mobile.module-
|
|
51
|
+
import '../mobile.module-7d3202b8.js';
|
|
52
52
|
import '../components/base-select/components/list-mobile/list-modal-mobile.js';
|
|
53
53
|
import '../../../base-modal/modern';
|
|
54
54
|
import '../../../button/modern/mobile';
|
package/select/presets/index.js
CHANGED
|
@@ -2,7 +2,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
2
2
|
|
|
3
3
|
var presets_useSelectWithLoading_hook = require('./useSelectWithLoading/hook.js');
|
|
4
4
|
var presets_useLazyLoading_hook = require('./useLazyLoading/hook.js');
|
|
5
|
-
var presets_useSelectWithApply_optionsListWithApply_Component = require('../hook-
|
|
5
|
+
var presets_useSelectWithApply_optionsListWithApply_Component = require('../hook-3b0516fb.js');
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
|
|
@@ -4,7 +4,7 @@ require('tslib');
|
|
|
4
4
|
require('react');
|
|
5
5
|
require('deep-equal');
|
|
6
6
|
require('../../utils.js');
|
|
7
|
-
var presets_useSelectWithApply_optionsListWithApply_Component = require('../../hook-
|
|
7
|
+
var presets_useSelectWithApply_optionsListWithApply_Component = require('../../hook-3b0516fb.js');
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
|
|
@@ -4,7 +4,7 @@ require('tslib');
|
|
|
4
4
|
require('react');
|
|
5
5
|
require('../../../components/options-list/Component.js');
|
|
6
6
|
require('../../../consts.js');
|
|
7
|
-
var presets_useSelectWithApply_optionsListWithApply_Component = require('../../../hook-
|
|
7
|
+
var presets_useSelectWithApply_optionsListWithApply_Component = require('../../../hook-3b0516fb.js');
|
|
8
8
|
require('./footer/Component.js');
|
|
9
9
|
require('./header/Component.js');
|
|
10
10
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "../../../hook-
|
|
1
|
+
export * from "../../../hook-3b0516fb";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
|
-
var presets_useSelectWithApply_optionsListWithApply_Component = require('../../../hook-
|
|
3
|
+
var presets_useSelectWithApply_optionsListWithApply_Component = require('../../../hook-3b0516fb.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
package/select/shared/index.js
CHANGED
|
@@ -2,7 +2,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
2
2
|
|
|
3
3
|
var presets_useSelectWithLoading_hook = require('../presets/useSelectWithLoading/hook.js');
|
|
4
4
|
var presets_useLazyLoading_hook = require('../presets/useLazyLoading/hook.js');
|
|
5
|
-
var presets_useSelectWithApply_optionsListWithApply_Component = require('../hook-
|
|
5
|
+
var presets_useSelectWithApply_optionsListWithApply_Component = require('../hook-3b0516fb.js');
|
|
6
6
|
var utils = require('../utils.js');
|
|
7
7
|
var components_option_Component = require('../components/option/Component.js');
|
|
8
8
|
var components_baseOption_Component = require('../components/base-option/Component.js');
|
|
@@ -4,7 +4,7 @@ var React = require('react');
|
|
|
4
4
|
var cn = require('classnames');
|
|
5
5
|
var coreComponentsShared = require('../../../shared');
|
|
6
6
|
var ResponsiveContext = require('../../ResponsiveContext.js');
|
|
7
|
-
var layout_module = require('../../layout.module-
|
|
7
|
+
var layout_module = require('../../layout.module-6e8d2296.js');
|
|
8
8
|
|
|
9
9
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
10
10
|
|
|
@@ -5,7 +5,7 @@ var cn = require('classnames');
|
|
|
5
5
|
var coreComponentsShared = require('../../../shared');
|
|
6
6
|
var Context = require('../../Context.js');
|
|
7
7
|
var ResponsiveContext = require('../../ResponsiveContext.js');
|
|
8
|
-
var layout_module = require('../../layout.module-
|
|
8
|
+
var layout_module = require('../../layout.module-6e8d2296.js');
|
|
9
9
|
|
|
10
10
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
11
11
|
|
|
@@ -8,7 +8,7 @@ import { SidePanelDesktop } from './desktop/Component.desktop.js';
|
|
|
8
8
|
import { SidePanelMobile } from './mobile/Component.mobile.js';
|
|
9
9
|
import { ResponsiveContext } from './ResponsiveContext.js';
|
|
10
10
|
import 'classnames';
|
|
11
|
-
import './layout.module-
|
|
11
|
+
import './layout.module-b79af139.js';
|
|
12
12
|
import '../../navigation-bar-private/esm';
|
|
13
13
|
import './consts.js';
|
|
14
14
|
import './Context.js';
|
|
@@ -2,7 +2,7 @@ import React, { useContext } from 'react';
|
|
|
2
2
|
import cn from 'classnames';
|
|
3
3
|
import { getDataTestId } from '../../../../shared/esm';
|
|
4
4
|
import { ResponsiveContext } from '../../ResponsiveContext.js';
|
|
5
|
-
import { l as layoutStyles } from '../../layout.module-
|
|
5
|
+
import { l as layoutStyles } from '../../layout.module-b79af139.js';
|
|
6
6
|
|
|
7
7
|
var styles = {"component":"side-panel__component_8dofa"};
|
|
8
8
|
require('./index.css');
|
|
@@ -7,7 +7,7 @@ import '../../../../shared/esm';
|
|
|
7
7
|
import '../../Context.js';
|
|
8
8
|
import '../../../../base-modal/esm';
|
|
9
9
|
import '../../ResponsiveContext.js';
|
|
10
|
-
import '../../layout.module-
|
|
10
|
+
import '../../layout.module-b79af139.js';
|
|
11
11
|
|
|
12
12
|
var styles = {"sticky":"side-panel__sticky_nuap6","size-500":"side-panel__size-500_nuap6"};
|
|
13
13
|
require('./desktop.css');
|
|
@@ -3,7 +3,7 @@ import cn from 'classnames';
|
|
|
3
3
|
import { getDataTestId } from '../../../../shared/esm';
|
|
4
4
|
import { ModalContext } from '../../Context.js';
|
|
5
5
|
import { ResponsiveContext } from '../../ResponsiveContext.js';
|
|
6
|
-
import { l as layoutStyles } from '../../layout.module-
|
|
6
|
+
import { l as layoutStyles } from '../../layout.module-b79af139.js';
|
|
7
7
|
import '../../../../base-modal/esm';
|
|
8
8
|
|
|
9
9
|
var styles = {"footer":"side-panel__footer_f38kg","sticky":"side-panel__sticky_f38kg","highlighted":"side-panel__highlighted_f38kg"};
|
|
@@ -6,7 +6,7 @@ import '../../../../shared/esm';
|
|
|
6
6
|
import '../../Context.js';
|
|
7
7
|
import '../../../../base-modal/esm';
|
|
8
8
|
import '../../ResponsiveContext.js';
|
|
9
|
-
import '../../layout.module-
|
|
9
|
+
import '../../layout.module-b79af139.js';
|
|
10
10
|
|
|
11
11
|
var styles = {"footer":"side-panel__footer_pwwqy","sticky":"side-panel__sticky_pwwqy"};
|
|
12
12
|
require('./mobile.css');
|
|
@@ -13,7 +13,7 @@ import '../components/content/Component.js';
|
|
|
13
13
|
import '../../../shared/esm';
|
|
14
14
|
import '../Context.js';
|
|
15
15
|
import '../../../base-modal/esm';
|
|
16
|
-
import '../layout.module-
|
|
16
|
+
import '../layout.module-b79af139.js';
|
|
17
17
|
import '../components/footer/Component.js';
|
|
18
18
|
import '../../../navigation-bar-private/esm';
|
|
19
19
|
|