@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
|
@@ -2,14 +2,14 @@ import { __assign } from 'tslib';
|
|
|
2
2
|
import React, { forwardRef } from 'react';
|
|
3
3
|
import { useMatchMedia } from '../../../mq/esm';
|
|
4
4
|
import { TitleBase } from '../title/component.js';
|
|
5
|
-
import { c as commonStyles } from '../common.module-
|
|
5
|
+
import { c as commonStyles } from '../common.module-598e0956.js';
|
|
6
6
|
import 'react-merge-refs';
|
|
7
7
|
import 'classnames';
|
|
8
8
|
import '../hooks/use-skeleton.js';
|
|
9
9
|
import '../../../skeleton/esm';
|
|
10
10
|
import '@alfalab/hooks';
|
|
11
11
|
import '../title/utils.js';
|
|
12
|
-
import '../colors.module-
|
|
12
|
+
import '../colors.module-d44fc8b3.js';
|
|
13
13
|
|
|
14
14
|
var styles = {"styrene-xlarge":"typography__styrene-xlarge_6szja","styrene-large":"typography__styrene-large_6szja","styrene-medium":"typography__styrene-medium_6szja","styrene-small":"typography__styrene-small_6szja","styrene-xsmall":"typography__styrene-xsmall_6szja","system-xlarge":"typography__system-xlarge_6szja","system-large":"typography__system-large_6szja","system-medium":"typography__system-medium_6szja","system-small":"typography__system-small_6szja","system-xsmall":"typography__system-xsmall_6szja","margins-xlarge":"typography__margins-xlarge_6szja","margins-large":"typography__margins-large_6szja","margins-medium":"typography__margins-medium_6szja","margins-small":"typography__margins-small_6szja","margins-xsmall":"typography__margins-xsmall_6szja"};
|
|
15
15
|
require('./index.css');
|
|
@@ -9,5 +9,5 @@ import '../hooks/use-skeleton.js';
|
|
|
9
9
|
import '../../../skeleton/esm';
|
|
10
10
|
import '@alfalab/hooks';
|
|
11
11
|
import '../title/utils.js';
|
|
12
|
-
import '../colors.module-
|
|
13
|
-
import '../common.module-
|
|
12
|
+
import '../colors.module-d44fc8b3.js';
|
|
13
|
+
import '../common.module-598e0956.js';
|
|
@@ -8,10 +8,10 @@ import 'classnames';
|
|
|
8
8
|
import './hooks/use-skeleton.js';
|
|
9
9
|
import '../../skeleton/modern';
|
|
10
10
|
import '@alfalab/hooks';
|
|
11
|
-
import './colors.module-
|
|
11
|
+
import './colors.module-09161417.js';
|
|
12
12
|
import './title/component.js';
|
|
13
13
|
import './title/utils.js';
|
|
14
|
-
import './common.module-
|
|
14
|
+
import './common.module-7bad8215.js';
|
|
15
15
|
import '../../mq/modern';
|
|
16
16
|
|
|
17
17
|
const Typography = {
|
|
@@ -7,11 +7,11 @@ import 'classnames';
|
|
|
7
7
|
import './hooks/use-skeleton.js';
|
|
8
8
|
import '../../skeleton/modern';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
|
-
import './colors.module-
|
|
10
|
+
import './colors.module-09161417.js';
|
|
11
11
|
import './title/index.js';
|
|
12
12
|
import './title/component.js';
|
|
13
13
|
import './title/utils.js';
|
|
14
|
-
import './common.module-
|
|
14
|
+
import './common.module-7bad8215.js';
|
|
15
15
|
import './title-mobile/component.js';
|
|
16
16
|
import './title-responsive/component.js';
|
|
17
17
|
import '../../mq/modern';
|
|
@@ -2,7 +2,7 @@ import React, { forwardRef } from 'react';
|
|
|
2
2
|
import mergeRefs from 'react-merge-refs';
|
|
3
3
|
import cn from 'classnames';
|
|
4
4
|
import { useSkeleton } from '../hooks/use-skeleton.js';
|
|
5
|
-
import { c as colors } from '../colors.module-
|
|
5
|
+
import { c as colors } from '../colors.module-09161417.js';
|
|
6
6
|
import '../../../skeleton/modern';
|
|
7
7
|
import '@alfalab/hooks';
|
|
8
8
|
|
|
@@ -3,7 +3,7 @@ import mergeRefs from 'react-merge-refs';
|
|
|
3
3
|
import cn from 'classnames';
|
|
4
4
|
import { useSkeleton } from '../hooks/use-skeleton.js';
|
|
5
5
|
import { getDefaultWeight } from './utils.js';
|
|
6
|
-
import { c as colors } from '../colors.module-
|
|
6
|
+
import { c as colors } from '../colors.module-09161417.js';
|
|
7
7
|
import '../../../skeleton/modern';
|
|
8
8
|
import '@alfalab/hooks';
|
|
9
9
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import React, { forwardRef } from 'react';
|
|
2
2
|
import { TitleBase } from './component.js';
|
|
3
|
-
import { c as commonStyles } from '../common.module-
|
|
3
|
+
import { c as commonStyles } from '../common.module-7bad8215.js';
|
|
4
4
|
import 'react-merge-refs';
|
|
5
5
|
import 'classnames';
|
|
6
6
|
import '../hooks/use-skeleton.js';
|
|
7
7
|
import '../../../skeleton/modern';
|
|
8
8
|
import '@alfalab/hooks';
|
|
9
9
|
import './utils.js';
|
|
10
|
-
import '../colors.module-
|
|
10
|
+
import '../colors.module-09161417.js';
|
|
11
11
|
|
|
12
12
|
const 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"};
|
|
13
13
|
require('./index.css');
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import React, { forwardRef } from 'react';
|
|
2
2
|
import { TitleBase } from '../title/component.js';
|
|
3
|
-
import { c as commonStyles } from '../common.module-
|
|
3
|
+
import { c as commonStyles } from '../common.module-7bad8215.js';
|
|
4
4
|
import 'react-merge-refs';
|
|
5
5
|
import 'classnames';
|
|
6
6
|
import '../hooks/use-skeleton.js';
|
|
7
7
|
import '../../../skeleton/modern';
|
|
8
8
|
import '@alfalab/hooks';
|
|
9
9
|
import '../title/utils.js';
|
|
10
|
-
import '../colors.module-
|
|
10
|
+
import '../colors.module-09161417.js';
|
|
11
11
|
|
|
12
12
|
const 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"};
|
|
13
13
|
require('./index.css');
|
|
@@ -7,5 +7,5 @@ import '../hooks/use-skeleton.js';
|
|
|
7
7
|
import '../../../skeleton/modern';
|
|
8
8
|
import '@alfalab/hooks';
|
|
9
9
|
import '../title/utils.js';
|
|
10
|
-
import '../colors.module-
|
|
11
|
-
import '../common.module-
|
|
10
|
+
import '../colors.module-09161417.js';
|
|
11
|
+
import '../common.module-7bad8215.js';
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import React, { forwardRef } from 'react';
|
|
2
2
|
import { useMatchMedia } from '../../../mq/modern';
|
|
3
3
|
import { TitleBase } from '../title/component.js';
|
|
4
|
-
import { c as commonStyles } from '../common.module-
|
|
4
|
+
import { c as commonStyles } from '../common.module-7bad8215.js';
|
|
5
5
|
import 'react-merge-refs';
|
|
6
6
|
import 'classnames';
|
|
7
7
|
import '../hooks/use-skeleton.js';
|
|
8
8
|
import '../../../skeleton/modern';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
10
|
import '../title/utils.js';
|
|
11
|
-
import '../colors.module-
|
|
11
|
+
import '../colors.module-09161417.js';
|
|
12
12
|
|
|
13
13
|
const styles = {"styrene-xlarge":"typography__styrene-xlarge_6szja","styrene-large":"typography__styrene-large_6szja","styrene-medium":"typography__styrene-medium_6szja","styrene-small":"typography__styrene-small_6szja","styrene-xsmall":"typography__styrene-xsmall_6szja","system-xlarge":"typography__system-xlarge_6szja","system-large":"typography__system-large_6szja","system-medium":"typography__system-medium_6szja","system-small":"typography__system-small_6szja","system-xsmall":"typography__system-xsmall_6szja","margins-xlarge":"typography__margins-xlarge_6szja","margins-large":"typography__margins-large_6szja","margins-medium":"typography__margins-medium_6szja","margins-small":"typography__margins-small_6szja","margins-xsmall":"typography__margins-xsmall_6szja"};
|
|
14
14
|
require('./index.css');
|
|
@@ -8,5 +8,5 @@ import '../hooks/use-skeleton.js';
|
|
|
8
8
|
import '../../../skeleton/modern';
|
|
9
9
|
import '@alfalab/hooks';
|
|
10
10
|
import '../title/utils.js';
|
|
11
|
-
import '../colors.module-
|
|
12
|
-
import '../common.module-
|
|
11
|
+
import '../colors.module-09161417.js';
|
|
12
|
+
import '../common.module-7bad8215.js';
|
|
@@ -5,7 +5,7 @@ var React = require('react');
|
|
|
5
5
|
var mergeRefs = require('react-merge-refs');
|
|
6
6
|
var cn = require('classnames');
|
|
7
7
|
var hooks_useSkeleton = require('../hooks/use-skeleton.js');
|
|
8
|
-
var colors_module = require('../colors.module-
|
|
8
|
+
var colors_module = require('../colors.module-bf04f1dc.js');
|
|
9
9
|
|
|
10
10
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
11
11
|
|
|
@@ -6,7 +6,7 @@ var mergeRefs = require('react-merge-refs');
|
|
|
6
6
|
var cn = require('classnames');
|
|
7
7
|
var hooks_useSkeleton = require('../hooks/use-skeleton.js');
|
|
8
8
|
var title_utils = require('./utils.js');
|
|
9
|
-
var colors_module = require('../colors.module-
|
|
9
|
+
var colors_module = require('../colors.module-bf04f1dc.js');
|
|
10
10
|
|
|
11
11
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
12
12
|
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
3
3
|
var tslib = require('tslib');
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var title_component = require('./component.js');
|
|
6
|
-
var common_module = require('../common.module-
|
|
6
|
+
var common_module = require('../common.module-4c00fa0c.js');
|
|
7
7
|
|
|
8
8
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
9
9
|
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
3
3
|
var tslib = require('tslib');
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var title_component = require('../title/component.js');
|
|
6
|
-
var common_module = require('../common.module-
|
|
6
|
+
var common_module = require('../common.module-4c00fa0c.js');
|
|
7
7
|
|
|
8
8
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
9
9
|
|
|
@@ -4,7 +4,7 @@ var tslib = require('tslib');
|
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var coreComponentsMq = require('../../mq');
|
|
6
6
|
var title_component = require('../title/component.js');
|
|
7
|
-
var common_module = require('../common.module-
|
|
7
|
+
var common_module = require('../common.module-4c00fa0c.js');
|
|
8
8
|
|
|
9
9
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
10
10
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/select/esm/{list-popover-desktop-aec914e9.d.ts → list-popover-desktop-20c87b82.d.ts}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/select/modern/{list-popover-desktop-65d415ed.d.ts → list-popover-desktop-d2b7aabc.d.ts}
RENAMED
|
File without changes
|
/package/select/modern/{list-popover-desktop-65d415ed.js → list-popover-desktop-d2b7aabc.js}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|