@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 '../Context.js';
|
|
|
12
12
|
import '../../../base-modal/esm';
|
|
13
13
|
import '../ResponsiveContext.js';
|
|
14
14
|
import '../components/controls/Component.js';
|
|
15
|
-
import '../layout.module-
|
|
15
|
+
import '../layout.module-b79af139.js';
|
|
16
16
|
import '../components/footer/Component.desktop.js';
|
|
17
17
|
import '../components/footer/Component.js';
|
|
18
18
|
import '../components/header/Component.js';
|
package/side-panel/esm/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import '../../shared/esm';
|
|
|
6
6
|
import './components/controls/Component.js';
|
|
7
7
|
import 'classnames';
|
|
8
8
|
import './ResponsiveContext.js';
|
|
9
|
-
import './layout.module-
|
|
9
|
+
import './layout.module-b79af139.js';
|
|
10
10
|
import './components/header/Component.js';
|
|
11
11
|
import '../../navigation-bar-private/esm';
|
|
12
12
|
import './consts.js';
|
|
@@ -10,7 +10,7 @@ import { ResponsiveContext } from '../ResponsiveContext.js';
|
|
|
10
10
|
import '../components/content/Component.js';
|
|
11
11
|
import '../../../shared/esm';
|
|
12
12
|
import '../Context.js';
|
|
13
|
-
import '../layout.module-
|
|
13
|
+
import '../layout.module-b79af139.js';
|
|
14
14
|
import '../components/footer/Component.js';
|
|
15
15
|
import '../../../navigation-bar-private/esm';
|
|
16
16
|
import '../consts.js';
|
|
@@ -9,7 +9,7 @@ import '../../../shared/esm';
|
|
|
9
9
|
import '../Context.js';
|
|
10
10
|
import '../ResponsiveContext.js';
|
|
11
11
|
import '../components/controls/Component.js';
|
|
12
|
-
import '../layout.module-
|
|
12
|
+
import '../layout.module-b79af139.js';
|
|
13
13
|
import '../components/footer/Component.mobile.js';
|
|
14
14
|
import '../components/footer/Component.js';
|
|
15
15
|
import '../components/header/Component.js';
|
|
@@ -7,7 +7,7 @@ import { SidePanelDesktop } from './desktop/Component.desktop.js';
|
|
|
7
7
|
import { SidePanelMobile } from './mobile/Component.mobile.js';
|
|
8
8
|
import { ResponsiveContext } from './ResponsiveContext.js';
|
|
9
9
|
import 'classnames';
|
|
10
|
-
import './layout.module-
|
|
10
|
+
import './layout.module-549d23fa.js';
|
|
11
11
|
import '../../navigation-bar-private/modern';
|
|
12
12
|
import './consts.js';
|
|
13
13
|
import './Context.js';
|
|
@@ -2,7 +2,7 @@ import React, { useContext } from 'react';
|
|
|
2
2
|
import cn from 'classnames';
|
|
3
3
|
import { getDataTestId } from '../../../../shared/modern';
|
|
4
4
|
import { ResponsiveContext } from '../../ResponsiveContext.js';
|
|
5
|
-
import { l as layoutStyles } from '../../layout.module-
|
|
5
|
+
import { l as layoutStyles } from '../../layout.module-549d23fa.js';
|
|
6
6
|
|
|
7
7
|
const styles = {"component":"side-panel__component_8dofa"};
|
|
8
8
|
require('./index.css');
|
|
@@ -6,7 +6,7 @@ import '../../../../shared/modern';
|
|
|
6
6
|
import '../../Context.js';
|
|
7
7
|
import '../../../../base-modal/modern';
|
|
8
8
|
import '../../ResponsiveContext.js';
|
|
9
|
-
import '../../layout.module-
|
|
9
|
+
import '../../layout.module-549d23fa.js';
|
|
10
10
|
|
|
11
11
|
const styles = {"sticky":"side-panel__sticky_nuap6","size-500":"side-panel__size-500_nuap6"};
|
|
12
12
|
require('./desktop.css');
|
|
@@ -3,7 +3,7 @@ import cn from 'classnames';
|
|
|
3
3
|
import { getDataTestId } from '../../../../shared/modern';
|
|
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-549d23fa.js';
|
|
7
7
|
import '../../../../base-modal/modern';
|
|
8
8
|
|
|
9
9
|
const styles = {"footer":"side-panel__footer_f38kg","sticky":"side-panel__sticky_f38kg","highlighted":"side-panel__highlighted_f38kg"};
|
|
@@ -5,7 +5,7 @@ import '../../../../shared/modern';
|
|
|
5
5
|
import '../../Context.js';
|
|
6
6
|
import '../../../../base-modal/modern';
|
|
7
7
|
import '../../ResponsiveContext.js';
|
|
8
|
-
import '../../layout.module-
|
|
8
|
+
import '../../layout.module-549d23fa.js';
|
|
9
9
|
|
|
10
10
|
const styles = {"footer":"side-panel__footer_pwwqy","sticky":"side-panel__sticky_pwwqy"};
|
|
11
11
|
require('./mobile.css');
|
|
@@ -12,7 +12,7 @@ import '../components/content/Component.js';
|
|
|
12
12
|
import '../../../shared/modern';
|
|
13
13
|
import '../Context.js';
|
|
14
14
|
import '../../../base-modal/modern';
|
|
15
|
-
import '../layout.module-
|
|
15
|
+
import '../layout.module-549d23fa.js';
|
|
16
16
|
import '../components/footer/Component.js';
|
|
17
17
|
import '../../../navigation-bar-private/modern';
|
|
18
18
|
|
|
@@ -11,7 +11,7 @@ import '../Context.js';
|
|
|
11
11
|
import '../../../base-modal/modern';
|
|
12
12
|
import '../ResponsiveContext.js';
|
|
13
13
|
import '../components/controls/Component.js';
|
|
14
|
-
import '../layout.module-
|
|
14
|
+
import '../layout.module-549d23fa.js';
|
|
15
15
|
import '../components/footer/Component.desktop.js';
|
|
16
16
|
import '../components/footer/Component.js';
|
|
17
17
|
import '../components/header/Component.js';
|
|
@@ -5,7 +5,7 @@ import '../../shared/modern';
|
|
|
5
5
|
import './components/controls/Component.js';
|
|
6
6
|
import 'classnames';
|
|
7
7
|
import './ResponsiveContext.js';
|
|
8
|
-
import './layout.module-
|
|
8
|
+
import './layout.module-549d23fa.js';
|
|
9
9
|
import './components/header/Component.js';
|
|
10
10
|
import '../../navigation-bar-private/modern';
|
|
11
11
|
import './consts.js';
|
|
@@ -9,7 +9,7 @@ import { ResponsiveContext } from '../ResponsiveContext.js';
|
|
|
9
9
|
import '../components/content/Component.js';
|
|
10
10
|
import '../../../shared/modern';
|
|
11
11
|
import '../Context.js';
|
|
12
|
-
import '../layout.module-
|
|
12
|
+
import '../layout.module-549d23fa.js';
|
|
13
13
|
import '../components/footer/Component.js';
|
|
14
14
|
import '../../../navigation-bar-private/modern';
|
|
15
15
|
import '../consts.js';
|
|
@@ -8,7 +8,7 @@ import '../../../shared/modern';
|
|
|
8
8
|
import '../Context.js';
|
|
9
9
|
import '../ResponsiveContext.js';
|
|
10
10
|
import '../components/controls/Component.js';
|
|
11
|
-
import '../layout.module-
|
|
11
|
+
import '../layout.module-549d23fa.js';
|
|
12
12
|
import '../components/footer/Component.mobile.js';
|
|
13
13
|
import '../components/footer/Component.js';
|
|
14
14
|
import '../components/header/Component.js';
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
.
|
|
1
|
+
.card-image__cardImage_snx2p {
|
|
2
|
+
background: #e7e8ea;
|
|
3
|
+
} .card-image__loaded_snx2p {
|
|
4
|
+
background: transparent
|
|
5
|
+
}.badge__component_14mdt.badge__background-accent_14mdt {
|
|
2
6
|
background-color: #f83a2a;
|
|
3
7
|
color: rgba(255, 255, 255, 0.94);
|
|
4
8
|
} .badge__component_14mdt.badge__background-specialbg-secondary-transparent_14mdt {
|
|
@@ -73,10 +77,6 @@
|
|
|
73
77
|
} .backdrop__exitActive_17s4d,
|
|
74
78
|
.backdrop__exitDone_17s4d {
|
|
75
79
|
background-color: transparent;
|
|
76
|
-
}.card-image__cardImage_snx2p {
|
|
77
|
-
background: #e7e8ea;
|
|
78
|
-
} .card-image__loaded_snx2p {
|
|
79
|
-
background: transparent
|
|
80
80
|
}.divider__component_4mgdh {
|
|
81
81
|
border-bottom: 1px solid #353539;
|
|
82
82
|
}.dropzone__component_n345m {
|
|
@@ -4,9 +4,9 @@ var tslib = require('tslib');
|
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var cn = require('classnames');
|
|
6
6
|
var coreComponentsIconButton = require('../../../icon-button');
|
|
7
|
-
var getDataTestId = require('../../getDataTestId-
|
|
7
|
+
var getDataTestId = require('../../getDataTestId-316e89c4.js');
|
|
8
8
|
require('@alfalab/hooks');
|
|
9
|
-
require('../../PortalContext-
|
|
9
|
+
require('../../PortalContext-812e773a.js');
|
|
10
10
|
var coreComponentsStatusBadge = require('../../../status-badge');
|
|
11
11
|
var CrossMIcon = require('@alfalab/icons-glyph/CrossMIcon');
|
|
12
12
|
var components_baseToastPlate_hooks_useCustomIcons = require('./hooks/useCustomIcons.js');
|
|
@@ -2,7 +2,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
2
2
|
|
|
3
3
|
require('react');
|
|
4
4
|
require('@alfalab/hooks');
|
|
5
|
-
require('../../../PortalContext-
|
|
5
|
+
require('../../../PortalContext-812e773a.js');
|
|
6
6
|
|
|
7
7
|
var exhaustiveCheck = function (value) { return value; };
|
|
8
8
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
|
-
var getDataTestId = require('../../../getDataTestId-
|
|
3
|
+
var getDataTestId = require('../../../getDataTestId-316e89c4.js');
|
|
4
4
|
require('react');
|
|
5
5
|
require('@alfalab/hooks');
|
|
6
|
-
require('../../../PortalContext-
|
|
6
|
+
require('../../../PortalContext-812e773a.js');
|
|
7
7
|
|
|
8
8
|
function getBaseToastPlateTestIds(dataTestId) {
|
|
9
9
|
return {
|
|
@@ -6,9 +6,9 @@ import { ToastPlateMobile } from './mobile/Component.mobile.js';
|
|
|
6
6
|
import './components/base-toast-plate/component.js';
|
|
7
7
|
import 'classnames';
|
|
8
8
|
import '../../icon-button/esm';
|
|
9
|
-
import './getDataTestId-
|
|
9
|
+
import './getDataTestId-11a376e0.js';
|
|
10
10
|
import '@alfalab/hooks';
|
|
11
|
-
import './PortalContext-
|
|
11
|
+
import './PortalContext-b4370e67.js';
|
|
12
12
|
import '../../status-badge/esm';
|
|
13
13
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
14
14
|
import './components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -2,9 +2,9 @@ import { __rest, __assign } from 'tslib';
|
|
|
2
2
|
import React, { forwardRef, useCallback } from 'react';
|
|
3
3
|
import cn from 'classnames';
|
|
4
4
|
import { IconButton } from '../../../../icon-button/esm';
|
|
5
|
-
import { g as getDataTestId } from '../../getDataTestId-
|
|
5
|
+
import { g as getDataTestId } from '../../getDataTestId-11a376e0.js';
|
|
6
6
|
import '@alfalab/hooks';
|
|
7
|
-
import '../../PortalContext-
|
|
7
|
+
import '../../PortalContext-b4370e67.js';
|
|
8
8
|
import { StatusBadge } from '../../../../status-badge/esm';
|
|
9
9
|
import { CrossMIcon } from '@alfalab/icons-glyph/CrossMIcon';
|
|
10
10
|
import { useCustomIcons } from './hooks/useCustomIcons.js';
|
|
@@ -3,9 +3,9 @@ import 'tslib';
|
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'classnames';
|
|
5
5
|
import '../../../../icon-button/esm';
|
|
6
|
-
import '../../getDataTestId-
|
|
6
|
+
import '../../getDataTestId-11a376e0.js';
|
|
7
7
|
import '@alfalab/hooks';
|
|
8
|
-
import '../../PortalContext-
|
|
8
|
+
import '../../PortalContext-b4370e67.js';
|
|
9
9
|
import '../../../../status-badge/esm';
|
|
10
10
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
11
11
|
import './hooks/useCustomIcons.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { g as getDataTestId } from '../../../getDataTestId-
|
|
1
|
+
import { g as getDataTestId } from '../../../getDataTestId-11a376e0.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '@alfalab/hooks';
|
|
4
|
-
import '../../../PortalContext-
|
|
4
|
+
import '../../../PortalContext-b4370e67.js';
|
|
5
5
|
|
|
6
6
|
function getBaseToastPlateTestIds(dataTestId) {
|
|
7
7
|
return {
|
|
@@ -3,9 +3,9 @@ import React, { forwardRef } from 'react';
|
|
|
3
3
|
import { BaseToastPlate } from '../components/base-toast-plate/component.js';
|
|
4
4
|
import 'classnames';
|
|
5
5
|
import '../../../icon-button/esm';
|
|
6
|
-
import '../getDataTestId-
|
|
6
|
+
import '../getDataTestId-11a376e0.js';
|
|
7
7
|
import '@alfalab/hooks';
|
|
8
|
-
import '../PortalContext-
|
|
8
|
+
import '../PortalContext-b4370e67.js';
|
|
9
9
|
import '../../../status-badge/esm';
|
|
10
10
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
11
11
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -4,9 +4,9 @@ import 'react';
|
|
|
4
4
|
import '../components/base-toast-plate/component.js';
|
|
5
5
|
import 'classnames';
|
|
6
6
|
import '../../../icon-button/esm';
|
|
7
|
-
import '../getDataTestId-
|
|
7
|
+
import '../getDataTestId-11a376e0.js';
|
|
8
8
|
import '@alfalab/hooks';
|
|
9
|
-
import '../PortalContext-
|
|
9
|
+
import '../PortalContext-b4370e67.js';
|
|
10
10
|
import '../../../status-badge/esm';
|
|
11
11
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
12
12
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -71,7 +71,7 @@ declare const dom: {
|
|
|
71
71
|
preventDefault: typeof preventDefault;
|
|
72
72
|
};
|
|
73
73
|
export { isClient, os, createPaddingStyle, easingFns, fnUtils, maskUtils, hooks, dom };
|
|
74
|
-
export { PortalContext } from "./PortalContext-
|
|
75
|
-
export * from "./getDataTestId-
|
|
74
|
+
export { PortalContext } from "./PortalContext-b4370e67";
|
|
75
|
+
export * from "./getDataTestId-11a376e0";
|
|
76
76
|
export * from "./browser-a216f694";
|
|
77
77
|
export * from "./components/base-toast-plate/hooks/useDeprecatedBadge";
|
package/toast-plate/esm/index.js
CHANGED
|
@@ -6,9 +6,9 @@ import './desktop/Component.desktop.js';
|
|
|
6
6
|
import './components/base-toast-plate/component.js';
|
|
7
7
|
import 'classnames';
|
|
8
8
|
import '../../icon-button/esm';
|
|
9
|
-
import './getDataTestId-
|
|
9
|
+
import './getDataTestId-11a376e0.js';
|
|
10
10
|
import '@alfalab/hooks';
|
|
11
|
-
import './PortalContext-
|
|
11
|
+
import './PortalContext-b4370e67.js';
|
|
12
12
|
import '../../status-badge/esm';
|
|
13
13
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
14
14
|
import './components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -3,9 +3,9 @@ import React, { forwardRef } from 'react';
|
|
|
3
3
|
import { BaseToastPlate } from '../components/base-toast-plate/component.js';
|
|
4
4
|
import 'classnames';
|
|
5
5
|
import '../../../icon-button/esm';
|
|
6
|
-
import '../getDataTestId-
|
|
6
|
+
import '../getDataTestId-11a376e0.js';
|
|
7
7
|
import '@alfalab/hooks';
|
|
8
|
-
import '../PortalContext-
|
|
8
|
+
import '../PortalContext-b4370e67.js';
|
|
9
9
|
import '../../../status-badge/esm';
|
|
10
10
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
11
11
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -4,9 +4,9 @@ import 'react';
|
|
|
4
4
|
import '../components/base-toast-plate/component.js';
|
|
5
5
|
import 'classnames';
|
|
6
6
|
import '../../../icon-button/esm';
|
|
7
|
-
import '../getDataTestId-
|
|
7
|
+
import '../getDataTestId-11a376e0.js';
|
|
8
8
|
import '@alfalab/hooks';
|
|
9
|
-
import '../PortalContext-
|
|
9
|
+
import '../PortalContext-b4370e67.js';
|
|
10
10
|
import '../../../status-badge/esm';
|
|
11
11
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
12
12
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -71,7 +71,7 @@ declare const dom: {
|
|
|
71
71
|
preventDefault: typeof preventDefault;
|
|
72
72
|
};
|
|
73
73
|
export { isClient, os, createPaddingStyle, easingFns, fnUtils, maskUtils, hooks, dom };
|
|
74
|
-
export { PortalContext } from "./PortalContext-
|
|
75
|
-
export * from "./getDataTestId-
|
|
74
|
+
export { PortalContext } from "./PortalContext-812e773a";
|
|
75
|
+
export * from "./getDataTestId-316e89c4";
|
|
76
76
|
export * from "./browser-a216f694";
|
|
77
77
|
export * from "./components/base-toast-plate/hooks/useDeprecatedBadge";
|
|
@@ -5,9 +5,9 @@ import { ToastPlateMobile } from './mobile/Component.mobile.js';
|
|
|
5
5
|
import './components/base-toast-plate/component.js';
|
|
6
6
|
import 'classnames';
|
|
7
7
|
import '../../icon-button/modern';
|
|
8
|
-
import './getDataTestId-
|
|
8
|
+
import './getDataTestId-56b815bf.js';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
|
-
import './PortalContext-
|
|
10
|
+
import './PortalContext-6bf9a525.js';
|
|
11
11
|
import '../../status-badge/modern';
|
|
12
12
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
13
13
|
import './components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React, { forwardRef, useCallback } from 'react';
|
|
2
2
|
import cn from 'classnames';
|
|
3
3
|
import { IconButton } from '../../../../icon-button/modern';
|
|
4
|
-
import { g as getDataTestId } from '../../getDataTestId-
|
|
4
|
+
import { g as getDataTestId } from '../../getDataTestId-56b815bf.js';
|
|
5
5
|
import '@alfalab/hooks';
|
|
6
|
-
import '../../PortalContext-
|
|
6
|
+
import '../../PortalContext-6bf9a525.js';
|
|
7
7
|
import { StatusBadge } from '../../../../status-badge/modern';
|
|
8
8
|
import { CrossMIcon } from '@alfalab/icons-glyph/CrossMIcon';
|
|
9
9
|
import { useCustomIcons } from './hooks/useCustomIcons.js';
|
|
@@ -2,9 +2,9 @@ export { BaseToastPlate } from './component.js';
|
|
|
2
2
|
import 'react';
|
|
3
3
|
import 'classnames';
|
|
4
4
|
import '../../../../icon-button/modern';
|
|
5
|
-
import '../../getDataTestId-
|
|
5
|
+
import '../../getDataTestId-56b815bf.js';
|
|
6
6
|
import '@alfalab/hooks';
|
|
7
|
-
import '../../PortalContext-
|
|
7
|
+
import '../../PortalContext-6bf9a525.js';
|
|
8
8
|
import '../../../../status-badge/modern';
|
|
9
9
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
10
10
|
import './hooks/useCustomIcons.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { g as getDataTestId } from '../../../getDataTestId-
|
|
1
|
+
import { g as getDataTestId } from '../../../getDataTestId-56b815bf.js';
|
|
2
2
|
import 'react';
|
|
3
3
|
import '@alfalab/hooks';
|
|
4
|
-
import '../../../PortalContext-
|
|
4
|
+
import '../../../PortalContext-6bf9a525.js';
|
|
5
5
|
|
|
6
6
|
function getBaseToastPlateTestIds(dataTestId) {
|
|
7
7
|
return {
|
|
@@ -2,9 +2,9 @@ import React, { forwardRef } from 'react';
|
|
|
2
2
|
import { BaseToastPlate } from '../components/base-toast-plate/component.js';
|
|
3
3
|
import 'classnames';
|
|
4
4
|
import '../../../icon-button/modern';
|
|
5
|
-
import '../getDataTestId-
|
|
5
|
+
import '../getDataTestId-56b815bf.js';
|
|
6
6
|
import '@alfalab/hooks';
|
|
7
|
-
import '../PortalContext-
|
|
7
|
+
import '../PortalContext-6bf9a525.js';
|
|
8
8
|
import '../../../status-badge/modern';
|
|
9
9
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
10
10
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -3,9 +3,9 @@ import 'react';
|
|
|
3
3
|
import '../components/base-toast-plate/component.js';
|
|
4
4
|
import 'classnames';
|
|
5
5
|
import '../../../icon-button/modern';
|
|
6
|
-
import '../getDataTestId-
|
|
6
|
+
import '../getDataTestId-56b815bf.js';
|
|
7
7
|
import '@alfalab/hooks';
|
|
8
|
-
import '../PortalContext-
|
|
8
|
+
import '../PortalContext-6bf9a525.js';
|
|
9
9
|
import '../../../status-badge/modern';
|
|
10
10
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
11
11
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -71,7 +71,7 @@ declare const dom: {
|
|
|
71
71
|
preventDefault: typeof preventDefault;
|
|
72
72
|
};
|
|
73
73
|
export { isClient, os, createPaddingStyle, easingFns, fnUtils, maskUtils, hooks, dom };
|
|
74
|
-
export { PortalContext } from "./PortalContext-
|
|
75
|
-
export * from "./getDataTestId-
|
|
74
|
+
export { PortalContext } from "./PortalContext-6bf9a525";
|
|
75
|
+
export * from "./getDataTestId-56b815bf";
|
|
76
76
|
export * from "./browser-a216f694";
|
|
77
77
|
export * from "./components/base-toast-plate/hooks/useDeprecatedBadge";
|
|
@@ -5,9 +5,9 @@ import './desktop/Component.desktop.js';
|
|
|
5
5
|
import './components/base-toast-plate/component.js';
|
|
6
6
|
import 'classnames';
|
|
7
7
|
import '../../icon-button/modern';
|
|
8
|
-
import './getDataTestId-
|
|
8
|
+
import './getDataTestId-56b815bf.js';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
|
-
import './PortalContext-
|
|
10
|
+
import './PortalContext-6bf9a525.js';
|
|
11
11
|
import '../../status-badge/modern';
|
|
12
12
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
13
13
|
import './components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -2,9 +2,9 @@ import React, { forwardRef } from 'react';
|
|
|
2
2
|
import { BaseToastPlate } from '../components/base-toast-plate/component.js';
|
|
3
3
|
import 'classnames';
|
|
4
4
|
import '../../../icon-button/modern';
|
|
5
|
-
import '../getDataTestId-
|
|
5
|
+
import '../getDataTestId-56b815bf.js';
|
|
6
6
|
import '@alfalab/hooks';
|
|
7
|
-
import '../PortalContext-
|
|
7
|
+
import '../PortalContext-6bf9a525.js';
|
|
8
8
|
import '../../../status-badge/modern';
|
|
9
9
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
10
10
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -3,9 +3,9 @@ import 'react';
|
|
|
3
3
|
import '../components/base-toast-plate/component.js';
|
|
4
4
|
import 'classnames';
|
|
5
5
|
import '../../../icon-button/modern';
|
|
6
|
-
import '../getDataTestId-
|
|
6
|
+
import '../getDataTestId-56b815bf.js';
|
|
7
7
|
import '@alfalab/hooks';
|
|
8
|
-
import '../PortalContext-
|
|
8
|
+
import '../PortalContext-6bf9a525.js';
|
|
9
9
|
import '../../../status-badge/modern';
|
|
10
10
|
import '@alfalab/icons-glyph/CrossMIcon';
|
|
11
11
|
import '../components/base-toast-plate/hooks/useCustomIcons.js';
|
|
@@ -9,10 +9,10 @@ import 'classnames';
|
|
|
9
9
|
import './hooks/use-skeleton.js';
|
|
10
10
|
import '../../skeleton/esm';
|
|
11
11
|
import '@alfalab/hooks';
|
|
12
|
-
import './colors.module-
|
|
12
|
+
import './colors.module-d44fc8b3.js';
|
|
13
13
|
import './title/component.js';
|
|
14
14
|
import './title/utils.js';
|
|
15
|
-
import './common.module-
|
|
15
|
+
import './common.module-598e0956.js';
|
|
16
16
|
import '../../mq/esm';
|
|
17
17
|
|
|
18
18
|
var Typography = {
|
package/typography/esm/index.js
CHANGED
|
@@ -8,11 +8,11 @@ import 'classnames';
|
|
|
8
8
|
import './hooks/use-skeleton.js';
|
|
9
9
|
import '../../skeleton/esm';
|
|
10
10
|
import '@alfalab/hooks';
|
|
11
|
-
import './colors.module-
|
|
11
|
+
import './colors.module-d44fc8b3.js';
|
|
12
12
|
import './title/index.js';
|
|
13
13
|
import './title/component.js';
|
|
14
14
|
import './title/utils.js';
|
|
15
|
-
import './common.module-
|
|
15
|
+
import './common.module-598e0956.js';
|
|
16
16
|
import './title-mobile/component.js';
|
|
17
17
|
import './title-responsive/component.js';
|
|
18
18
|
import '../../mq/esm';
|
|
@@ -3,7 +3,7 @@ import React, { forwardRef } from 'react';
|
|
|
3
3
|
import mergeRefs from 'react-merge-refs';
|
|
4
4
|
import cn from 'classnames';
|
|
5
5
|
import { useSkeleton } from '../hooks/use-skeleton.js';
|
|
6
|
-
import { c as colors } from '../colors.module-
|
|
6
|
+
import { c as colors } from '../colors.module-d44fc8b3.js';
|
|
7
7
|
import '../../../skeleton/esm';
|
|
8
8
|
import '@alfalab/hooks';
|
|
9
9
|
|
|
@@ -4,7 +4,7 @@ import mergeRefs from 'react-merge-refs';
|
|
|
4
4
|
import cn from 'classnames';
|
|
5
5
|
import { useSkeleton } from '../hooks/use-skeleton.js';
|
|
6
6
|
import { getDefaultWeight } from './utils.js';
|
|
7
|
-
import { c as colors } from '../colors.module-
|
|
7
|
+
import { c as colors } from '../colors.module-d44fc8b3.js';
|
|
8
8
|
import '../../../skeleton/esm';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
10
|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { __assign } from 'tslib';
|
|
2
2
|
import React, { forwardRef } from 'react';
|
|
3
3
|
import { TitleBase } from './component.js';
|
|
4
|
-
import { c as commonStyles } from '../common.module-
|
|
4
|
+
import { c as commonStyles } from '../common.module-598e0956.js';
|
|
5
5
|
import 'react-merge-refs';
|
|
6
6
|
import 'classnames';
|
|
7
7
|
import '../hooks/use-skeleton.js';
|
|
8
8
|
import '../../../skeleton/esm';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
10
|
import './utils.js';
|
|
11
|
-
import '../colors.module-
|
|
11
|
+
import '../colors.module-d44fc8b3.js';
|
|
12
12
|
|
|
13
13
|
var styles = {"styrene-xlarge":"typography__styrene-xlarge_f0o2t","styrene-large":"typography__styrene-large_f0o2t","styrene-medium":"typography__styrene-medium_f0o2t","styrene-small":"typography__styrene-small_f0o2t","styrene-xsmall":"typography__styrene-xsmall_f0o2t","system-xlarge":"typography__system-xlarge_f0o2t","system-large":"typography__system-large_f0o2t","system-medium":"typography__system-medium_f0o2t","system-small":"typography__system-small_f0o2t","system-xsmall":"typography__system-xsmall_f0o2t","margins-xlarge":"typography__margins-xlarge_f0o2t","margins-large":"typography__margins-large_f0o2t","margins-medium":"typography__margins-medium_f0o2t","margins-small":"typography__margins-small_f0o2t","margins-xsmall":"typography__margins-xsmall_f0o2t"};
|
|
14
14
|
require('./index.css');
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { __assign } from 'tslib';
|
|
2
2
|
import React, { forwardRef } from 'react';
|
|
3
3
|
import { TitleBase } from '../title/component.js';
|
|
4
|
-
import { c as commonStyles } from '../common.module-
|
|
4
|
+
import { c as commonStyles } from '../common.module-598e0956.js';
|
|
5
5
|
import 'react-merge-refs';
|
|
6
6
|
import 'classnames';
|
|
7
7
|
import '../hooks/use-skeleton.js';
|
|
8
8
|
import '../../../skeleton/esm';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
10
|
import '../title/utils.js';
|
|
11
|
-
import '../colors.module-
|
|
11
|
+
import '../colors.module-d44fc8b3.js';
|
|
12
12
|
|
|
13
13
|
var styles = {"styrene-xlarge":"typography__styrene-xlarge_4x47g","styrene-large":"typography__styrene-large_4x47g","styrene-medium":"typography__styrene-medium_4x47g","styrene-small":"typography__styrene-small_4x47g","styrene-xsmall":"typography__styrene-xsmall_4x47g","system-xlarge":"typography__system-xlarge_4x47g","system-large":"typography__system-large_4x47g","system-medium":"typography__system-medium_4x47g","system-small":"typography__system-small_4x47g","system-xsmall":"typography__system-xsmall_4x47g"};
|
|
14
14
|
require('./index.css');
|
|
@@ -8,5 +8,5 @@ import '../hooks/use-skeleton.js';
|
|
|
8
8
|
import '../../../skeleton/esm';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
10
|
import '../title/utils.js';
|
|
11
|
-
import '../colors.module-
|
|
12
|
-
import '../common.module-
|
|
11
|
+
import '../colors.module-d44fc8b3.js';
|
|
12
|
+
import '../common.module-598e0956.js';
|