@alfalab/core-components-modal 7.0.14 → 8.0.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/Component.desktop.d.ts +0 -1
- package/Component.desktop.js +1 -2
- package/Component.js +3 -3
- package/Component.mobile.d.ts +0 -1
- package/Component.mobile.js +1 -2
- package/Component.responsive.d.ts +0 -1
- package/Component.responsive.js +1 -2
- package/components/content/Component.js +3 -3
- package/components/content/desktop.css +7 -7
- package/components/content/index.css +4 -4
- package/components/content/mobile.css +3 -3
- package/components/footer/Component.js +4 -4
- package/components/footer/desktop.css +9 -9
- package/components/footer/index.css +4 -4
- package/components/footer/layout.css +29 -29
- package/components/footer/mobile.css +3 -3
- package/components/header/Component.js +3 -3
- package/components/header/desktop.css +15 -15
- package/components/header/index.css +4 -4
- package/components/header/mobile.css +4 -4
- package/cssm/Component.desktop.d.ts +0 -1
- package/cssm/Component.desktop.js +1 -2
- package/cssm/Component.mobile.d.ts +0 -1
- package/cssm/Component.mobile.js +1 -2
- package/cssm/Component.responsive.d.ts +0 -1
- package/cssm/Component.responsive.js +1 -2
- package/cssm/desktop.d.ts +1 -1
- package/cssm/desktop.js +1 -1
- package/cssm/index.d.ts +2 -3
- package/cssm/index.js +4 -5
- package/cssm/mobile.d.ts +1 -1
- package/cssm/mobile.js +1 -1
- package/cssm/shared.d.ts +1 -0
- package/cssm/shared.js +10 -0
- package/desktop.css +9 -9
- package/desktop.d.ts +1 -1
- package/desktop.js +1 -1
- package/esm/Component.desktop.d.ts +0 -1
- package/esm/Component.desktop.js +1 -2
- package/esm/Component.js +3 -3
- package/esm/Component.mobile.d.ts +0 -1
- package/esm/Component.mobile.js +1 -2
- package/esm/Component.responsive.d.ts +0 -1
- package/esm/Component.responsive.js +1 -2
- package/esm/components/content/Component.js +3 -3
- package/esm/components/content/desktop.css +7 -7
- package/esm/components/content/index.css +4 -4
- package/esm/components/content/mobile.css +3 -3
- package/esm/components/footer/Component.js +4 -4
- package/esm/components/footer/desktop.css +9 -9
- package/esm/components/footer/index.css +4 -4
- package/esm/components/footer/layout.css +29 -29
- package/esm/components/footer/mobile.css +3 -3
- package/esm/components/header/Component.js +3 -3
- package/esm/components/header/desktop.css +15 -15
- package/esm/components/header/index.css +4 -4
- package/esm/components/header/mobile.css +4 -4
- package/esm/desktop.css +9 -9
- package/esm/desktop.d.ts +1 -1
- package/esm/desktop.js +1 -1
- package/esm/index.d.ts +2 -3
- package/esm/index.js +4 -4
- package/esm/mobile.css +2 -2
- package/esm/mobile.d.ts +1 -1
- package/esm/mobile.js +1 -1
- package/esm/shared.d.ts +1 -0
- package/esm/shared.js +2 -0
- package/esm/transitions.css +8 -8
- package/index.d.ts +2 -3
- package/index.js +4 -5
- package/mobile.css +2 -2
- package/mobile.d.ts +1 -1
- package/mobile.js +1 -1
- package/modern/Component.desktop.d.ts +0 -1
- package/modern/Component.desktop.js +1 -2
- package/modern/Component.js +3 -3
- package/modern/Component.mobile.d.ts +0 -1
- package/modern/Component.mobile.js +1 -2
- package/modern/Component.responsive.d.ts +0 -1
- package/modern/Component.responsive.js +1 -2
- package/modern/components/content/Component.js +3 -3
- package/modern/components/content/desktop.css +7 -7
- package/modern/components/content/index.css +4 -4
- package/modern/components/content/mobile.css +3 -3
- package/modern/components/footer/Component.js +4 -4
- package/modern/components/footer/desktop.css +9 -9
- package/modern/components/footer/index.css +4 -4
- package/modern/components/footer/layout.css +29 -29
- package/modern/components/footer/mobile.css +3 -3
- package/modern/components/header/Component.js +3 -3
- package/modern/components/header/desktop.css +15 -15
- package/modern/components/header/index.css +4 -4
- package/modern/components/header/mobile.css +4 -4
- package/modern/desktop.css +9 -9
- package/modern/desktop.d.ts +1 -1
- package/modern/desktop.js +1 -1
- package/modern/index.d.ts +2 -3
- package/modern/index.js +4 -4
- package/modern/mobile.css +2 -2
- package/modern/mobile.d.ts +1 -1
- package/modern/mobile.js +1 -1
- package/modern/shared.d.ts +1 -0
- package/modern/shared.js +2 -0
- package/modern/transitions.css +8 -8
- package/package.json +26 -5
- package/shared.d.ts +1 -0
- package/shared.js +10 -0
- package/src/Component.desktop.tsx +20 -0
- package/src/Component.mobile.tsx +17 -0
- package/src/Component.responsive.tsx +35 -0
- package/src/Component.tsx +93 -0
- package/src/Context.tsx +3 -0
- package/src/ResponsiveContext.tsx +8 -0
- package/src/components/content/Component.tsx +29 -0
- package/src/components/content/desktop.module.css +13 -0
- package/src/components/content/index.module.css +16 -0
- package/src/components/content/mobile.module.css +9 -0
- package/src/components/footer/Component.tsx +69 -0
- package/src/components/footer/desktop.module.css +22 -0
- package/src/components/footer/index.module.css +17 -0
- package/src/components/footer/layout.module.css +86 -0
- package/src/components/footer/mobile.module.css +9 -0
- package/src/components/header/Component.tsx +60 -0
- package/src/components/header/desktop.module.css +42 -0
- package/src/components/header/index.module.css +15 -0
- package/src/components/header/mobile.module.css +18 -0
- package/src/desktop.module.css +38 -0
- package/src/desktop.ts +2 -0
- package/src/index.ts +2 -0
- package/src/mobile.module.css +7 -0
- package/src/mobile.ts +2 -0
- package/src/shared.ts +1 -0
- package/src/transitions.module.css +24 -0
- package/src/typings.ts +63 -0
- package/src/utils.ts +90 -0
- package/src/vars.css +47 -0
- package/transitions.css +8 -8
- package/cssm/responsive.d.ts +0 -2
- package/cssm/responsive.js +0 -35
- package/esm/responsive.d.ts +0 -2
- package/esm/responsive.js +0 -14
- package/modern/responsive.d.ts +0 -2
- package/modern/responsive.js +0 -13
- package/responsive.d.ts +0 -2
- package/responsive.js +0 -22
- package/send-stats.js +0 -82
package/Component.desktop.d.ts
CHANGED
|
@@ -10,6 +10,5 @@ declare const ModalDesktop: React.ForwardRefExoticComponent<BaseModalProps & {
|
|
|
10
10
|
Content: React.FC<import("./typings").ContentProps>;
|
|
11
11
|
Header: React.FC<import("./components/header/Component").HeaderProps>;
|
|
12
12
|
Footer: React.FC<import("./components/footer/Component").FooterProps>;
|
|
13
|
-
Closer: React.FC<import("@alfalab/core-components-navigation-bar").CloserProps>;
|
|
14
13
|
};
|
|
15
14
|
export { ModalDesktop };
|
package/Component.desktop.js
CHANGED
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var tslib = require('tslib');
|
|
6
6
|
var React = require('react');
|
|
7
|
-
var coreComponentsNavigationBar = require('@alfalab/core-components-navigation-bar');
|
|
8
7
|
var components_content_Component = require('./components/content/Component.js');
|
|
9
8
|
var components_footer_Component = require('./components/footer/Component.js');
|
|
10
9
|
var components_header_Component = require('./components/header/Component.js');
|
|
@@ -13,6 +12,7 @@ require('classnames');
|
|
|
13
12
|
require('./Context.js');
|
|
14
13
|
require('@alfalab/core-components-base-modal');
|
|
15
14
|
require('./ResponsiveContext.js');
|
|
15
|
+
require('@alfalab/core-components-navigation-bar');
|
|
16
16
|
require('react-merge-refs');
|
|
17
17
|
|
|
18
18
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
@@ -24,7 +24,6 @@ var ModalDesktop = Object.assign(ModalDesktopComponent, {
|
|
|
24
24
|
Content: components_content_Component.Content,
|
|
25
25
|
Header: components_header_Component.Header,
|
|
26
26
|
Footer: components_footer_Component.Footer,
|
|
27
|
-
Closer: coreComponentsNavigationBar.Closer,
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
exports.ModalDesktop = ModalDesktop;
|
package/Component.js
CHANGED
|
@@ -15,13 +15,13 @@ var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
|
15
15
|
var mergeRefs__default = /*#__PURE__*/_interopDefaultCompat(mergeRefs);
|
|
16
16
|
var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
|
|
17
17
|
|
|
18
|
-
var desktopStyles = {"wrapper":"
|
|
18
|
+
var desktopStyles = {"wrapper":"modal__wrapper_1rgs6","component":"modal__component_1rgs6","fullscreen":"modal__fullscreen_1rgs6","s":"modal__s_1rgs6","m":"modal__m_1rgs6","l":"modal__l_1rgs6","xl":"modal__xl_1rgs6"};
|
|
19
19
|
require('./desktop.css')
|
|
20
20
|
|
|
21
|
-
var mobileStyles = {"component":"
|
|
21
|
+
var mobileStyles = {"component":"modal__component_tiju5"};
|
|
22
22
|
require('./mobile.css')
|
|
23
23
|
|
|
24
|
-
var transitions = {"appear":"
|
|
24
|
+
var transitions = {"appear":"modal__appear_e1pnc","enter":"modal__enter_e1pnc","appearActive":"modal__appearActive_e1pnc","enterActive":"modal__enterActive_e1pnc","exit":"modal__exit_e1pnc","exitActive":"modal__exitActive_e1pnc","exitDone":"modal__exitDone_e1pnc"};
|
|
25
25
|
require('./transitions.css')
|
|
26
26
|
|
|
27
27
|
var Modal = React.forwardRef(function (_a, ref) {
|
package/Component.mobile.d.ts
CHANGED
|
@@ -5,6 +5,5 @@ declare const ModalMobile: React.ForwardRefExoticComponent<ModalMobileProps & Re
|
|
|
5
5
|
Content: React.FC<import("./typings").ContentProps>;
|
|
6
6
|
Header: React.FC<import("./components/header/Component").HeaderProps>;
|
|
7
7
|
Footer: React.FC<import("./components/footer/Component").FooterProps>;
|
|
8
|
-
Closer: React.FC<import("@alfalab/core-components-navigation-bar").CloserProps>;
|
|
9
8
|
};
|
|
10
9
|
export { ModalMobile };
|
package/Component.mobile.js
CHANGED
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var tslib = require('tslib');
|
|
6
6
|
var React = require('react');
|
|
7
|
-
var coreComponentsNavigationBar = require('@alfalab/core-components-navigation-bar');
|
|
8
7
|
var components_content_Component = require('./components/content/Component.js');
|
|
9
8
|
var components_footer_Component = require('./components/footer/Component.js');
|
|
10
9
|
var components_header_Component = require('./components/header/Component.js');
|
|
@@ -13,6 +12,7 @@ require('classnames');
|
|
|
13
12
|
require('./Context.js');
|
|
14
13
|
require('@alfalab/core-components-base-modal');
|
|
15
14
|
require('./ResponsiveContext.js');
|
|
15
|
+
require('@alfalab/core-components-navigation-bar');
|
|
16
16
|
require('react-merge-refs');
|
|
17
17
|
|
|
18
18
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
@@ -24,7 +24,6 @@ var ModalMobile = Object.assign(ModalMobileComponent, {
|
|
|
24
24
|
Content: components_content_Component.Content,
|
|
25
25
|
Header: components_header_Component.Header,
|
|
26
26
|
Footer: components_footer_Component.Footer,
|
|
27
|
-
Closer: coreComponentsNavigationBar.Closer,
|
|
28
27
|
});
|
|
29
28
|
|
|
30
29
|
exports.ModalMobile = ModalMobile;
|
|
@@ -12,6 +12,5 @@ declare const ModalResponsive: React.ForwardRefExoticComponent<BaseModalProps &
|
|
|
12
12
|
Header: React.FC<import("./components/header/Component").HeaderProps>;
|
|
13
13
|
Content: React.FC<import("./typings").ContentProps>;
|
|
14
14
|
Footer: React.FC<import("./components/footer/Component").FooterProps>;
|
|
15
|
-
Closer: React.FC<import("@alfalab/core-components-navigation-bar").CloserProps>;
|
|
16
15
|
};
|
|
17
16
|
export { ModalResponsive };
|
package/Component.responsive.js
CHANGED
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var tslib = require('tslib');
|
|
6
6
|
var React = require('react');
|
|
7
|
-
var coreComponentsNavigationBar = require('@alfalab/core-components-navigation-bar');
|
|
8
7
|
var hooks = require('@alfalab/hooks');
|
|
9
8
|
var components_content_Component = require('./components/content/Component.js');
|
|
10
9
|
var components_footer_Component = require('./components/footer/Component.js');
|
|
@@ -14,6 +13,7 @@ require('classnames');
|
|
|
14
13
|
require('./Context.js');
|
|
15
14
|
require('@alfalab/core-components-base-modal');
|
|
16
15
|
require('./ResponsiveContext.js');
|
|
16
|
+
require('@alfalab/core-components-navigation-bar');
|
|
17
17
|
require('react-merge-refs');
|
|
18
18
|
|
|
19
19
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
@@ -32,7 +32,6 @@ var ModalResponsive = Object.assign(ModalResponsiveComponent, {
|
|
|
32
32
|
Header: components_header_Component.Header,
|
|
33
33
|
Content: components_content_Component.Content,
|
|
34
34
|
Footer: components_footer_Component.Footer,
|
|
35
|
-
Closer: coreComponentsNavigationBar.Closer,
|
|
36
35
|
});
|
|
37
36
|
|
|
38
37
|
exports.ModalResponsive = ModalResponsive;
|
|
@@ -13,13 +13,13 @@ function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'defau
|
|
|
13
13
|
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
14
14
|
var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
|
|
15
15
|
|
|
16
|
-
var desktopStyles = {"s":"
|
|
16
|
+
var desktopStyles = {"s":"modal__s_lvfv7","m":"modal__m_lvfv7","l":"modal__l_lvfv7","xl":"modal__xl_lvfv7","fullscreen":"modal__fullscreen_lvfv7"};
|
|
17
17
|
require('./desktop.css')
|
|
18
18
|
|
|
19
|
-
var styles = {"content":"
|
|
19
|
+
var styles = {"content":"modal__content_yobxh","withHeader":"modal__withHeader_yobxh","flex":"modal__flex_yobxh"};
|
|
20
20
|
require('./index.css')
|
|
21
21
|
|
|
22
|
-
var mobileStyles = {"content":"
|
|
22
|
+
var mobileStyles = {"content":"modal__content_171ey"};
|
|
23
23
|
require('./mobile.css')
|
|
24
24
|
|
|
25
25
|
var Content = function (_a) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1d901 */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
/* mobile */
|
|
31
31
|
|
|
32
32
|
/* paddings */
|
|
33
|
-
} .
|
|
34
|
-
.
|
|
35
|
-
.
|
|
36
|
-
.
|
|
37
|
-
.
|
|
33
|
+
} .modal__s_lvfv7,
|
|
34
|
+
.modal__m_lvfv7,
|
|
35
|
+
.modal__l_lvfv7,
|
|
36
|
+
.modal__xl_lvfv7,
|
|
37
|
+
.modal__fullscreen_lvfv7 {
|
|
38
38
|
padding: var(--modal-s-content-paddings)
|
|
39
|
-
} .
|
|
39
|
+
} .modal__s_lvfv7:last-child, .modal__m_lvfv7:last-child, .modal__l_lvfv7:last-child, .modal__xl_lvfv7:last-child, .modal__fullscreen_lvfv7:last-child {
|
|
40
40
|
padding-bottom: var(--modal-s-content-only-bottom-padding);
|
|
41
41
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: feso8 */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
/* mobile */
|
|
28
28
|
|
|
29
29
|
/* paddings */
|
|
30
|
-
} .
|
|
30
|
+
} .modal__content_yobxh {
|
|
31
31
|
position: relative;
|
|
32
32
|
box-sizing: border-box;
|
|
33
33
|
width: 100%;
|
|
34
34
|
z-index: 0
|
|
35
|
-
} .
|
|
35
|
+
} .modal__content_yobxh.modal__withHeader_yobxh {
|
|
36
36
|
padding-top: 0;
|
|
37
|
-
} .
|
|
37
|
+
} .modal__flex_yobxh {
|
|
38
38
|
flex: 1;
|
|
39
39
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1cywe */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
/* mobile */
|
|
29
29
|
|
|
30
30
|
/* paddings */
|
|
31
|
-
} .
|
|
31
|
+
} .modal__content_171ey {
|
|
32
32
|
padding: var(--gap-m) var(--gap-m) 0
|
|
33
|
-
} .
|
|
33
|
+
} .modal__content_171ey:last-child {
|
|
34
34
|
padding-bottom: var(--gap-m);
|
|
35
35
|
}
|
|
@@ -13,16 +13,16 @@ function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'defau
|
|
|
13
13
|
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
14
14
|
var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
|
|
15
15
|
|
|
16
|
-
var desktopStyles = {"footer":"
|
|
16
|
+
var desktopStyles = {"footer":"modal__footer_fvoww","sticky":"modal__sticky_fvoww","fullscreen":"modal__fullscreen_fvoww","s":"modal__s_fvoww","m":"modal__m_fvoww","l":"modal__l_fvoww","xl":"modal__xl_fvoww"};
|
|
17
17
|
require('./desktop.css')
|
|
18
18
|
|
|
19
|
-
var styles = {"footer":"
|
|
19
|
+
var styles = {"footer":"modal__footer_1es2d","sticky":"modal__sticky_1es2d","highlighted":"modal__highlighted_1es2d"};
|
|
20
20
|
require('./index.css')
|
|
21
21
|
|
|
22
|
-
var layoutStyles = {"column":"
|
|
22
|
+
var layoutStyles = {"column":"modal__column_1lmne","gap-16":"modal__gap-16_1lmne","gap-24":"modal__gap-24_1lmne","gap-32":"modal__gap-32_1lmne","column-mobile":"modal__column-mobile_1lmne","start":"modal__start_1lmne","center":"modal__center_1lmne","space-between":"modal__space-between_1lmne"};
|
|
23
23
|
require('./layout.css')
|
|
24
24
|
|
|
25
|
-
var mobileStyles = {"footer":"
|
|
25
|
+
var mobileStyles = {"footer":"modal__footer_1r3pc","sticky":"modal__sticky_1r3pc"};
|
|
26
26
|
require('./mobile.css')
|
|
27
27
|
|
|
28
28
|
var Footer = function (_a) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: l8ln9 */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
/* mobile */
|
|
34
34
|
|
|
35
35
|
/* paddings */
|
|
36
|
-
} .
|
|
36
|
+
} .modal__footer_fvoww {
|
|
37
37
|
border-bottom-left-radius: var(--modal-border-radius);
|
|
38
38
|
border-bottom-right-radius: var(--modal-border-radius);
|
|
39
|
-
} .
|
|
39
|
+
} .modal__sticky_fvoww {
|
|
40
40
|
bottom: calc(var(--modal-vertical-padding) * -1)
|
|
41
|
-
} .
|
|
41
|
+
} .modal__sticky_fvoww.modal__fullscreen_fvoww {
|
|
42
42
|
bottom: 0;
|
|
43
|
-
} .
|
|
44
|
-
.
|
|
45
|
-
.
|
|
46
|
-
.
|
|
47
|
-
.
|
|
43
|
+
} .modal__s_fvoww,
|
|
44
|
+
.modal__m_fvoww,
|
|
45
|
+
.modal__l_fvoww,
|
|
46
|
+
.modal__xl_fvoww,
|
|
47
|
+
.modal__fullscreen_fvoww {
|
|
48
48
|
padding: var(--modal-s-footer-paddings);
|
|
49
49
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1g7v8 */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root {
|
|
4
4
|
--color-light-bg-primary: #fff;
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
/* mobile */
|
|
33
33
|
|
|
34
34
|
/* paddings */
|
|
35
|
-
} .
|
|
35
|
+
} .modal__footer_1es2d {
|
|
36
36
|
width: 100%;
|
|
37
37
|
box-sizing: border-box;
|
|
38
38
|
transition: box-shadow 0.2s ease, background 0.2s ease;
|
|
39
|
-
} .
|
|
39
|
+
} .modal__sticky_1es2d {
|
|
40
40
|
background: var(--modal-footer-background);
|
|
41
41
|
position: sticky;
|
|
42
|
-
} .
|
|
42
|
+
} .modal__highlighted_1es2d {
|
|
43
43
|
background: var(--modal-footer-highlight-background);
|
|
44
44
|
box-shadow: var(--modal-footer-highlight-box-shadow);
|
|
45
45
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1gsat */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -31,53 +31,53 @@
|
|
|
31
31
|
/* mobile */
|
|
32
32
|
|
|
33
33
|
/* paddings */
|
|
34
|
-
} .
|
|
34
|
+
} .modal__column_1lmne {
|
|
35
35
|
display: flex;
|
|
36
36
|
flex-direction: column
|
|
37
|
-
} .
|
|
37
|
+
} .modal__column_1lmne > * {
|
|
38
38
|
margin-bottom: var(--modal-footer-default-gap);
|
|
39
|
-
} .
|
|
40
|
-
.
|
|
39
|
+
} .modal__column_1lmne > *:last-child,
|
|
40
|
+
.modal__column_1lmne > *:only-child {
|
|
41
41
|
margin-bottom: 0;
|
|
42
|
-
} .
|
|
42
|
+
} .modal__column_1lmne.modal__gap-16_1lmne > * {
|
|
43
43
|
margin-bottom: var(--gap-m);
|
|
44
|
-
} .
|
|
44
|
+
} .modal__column_1lmne.modal__gap-24_1lmne > * {
|
|
45
45
|
margin-bottom: var(--gap-xl);
|
|
46
|
-
} .
|
|
46
|
+
} .modal__column_1lmne.modal__gap-32_1lmne > * {
|
|
47
47
|
margin-bottom: var(--gap-2xl);
|
|
48
|
-
} .modal__column-
|
|
48
|
+
} .modal__column-mobile_1lmne {
|
|
49
49
|
flex-direction: column-reverse
|
|
50
|
-
} .modal__column-
|
|
50
|
+
} .modal__column-mobile_1lmne > * {
|
|
51
51
|
margin-bottom: 0;
|
|
52
|
-
} .modal__column-
|
|
52
|
+
} .modal__column-mobile_1lmne > *:last-child {
|
|
53
53
|
margin-bottom: var(--modal-footer-default-gap);
|
|
54
|
-
} .modal__column-
|
|
54
|
+
} .modal__column-mobile_1lmne > *:only-child {
|
|
55
55
|
margin-bottom: 0;
|
|
56
|
-
} .
|
|
56
|
+
} .modal__start_1lmne {
|
|
57
57
|
justify-content: flex-start;
|
|
58
|
-
} .
|
|
58
|
+
} .modal__center_1lmne {
|
|
59
59
|
justify-content: center;
|
|
60
|
-
} .modal__space-
|
|
60
|
+
} .modal__space-between_1lmne {
|
|
61
61
|
justify-content: space-between
|
|
62
|
-
} .modal__space-
|
|
62
|
+
} .modal__space-between_1lmne > * {
|
|
63
63
|
flex: 1;
|
|
64
|
-
} .
|
|
65
|
-
.
|
|
66
|
-
.modal__space-
|
|
64
|
+
} .modal__start_1lmne,
|
|
65
|
+
.modal__center_1lmne,
|
|
66
|
+
.modal__space-between_1lmne {
|
|
67
67
|
display: flex
|
|
68
|
-
} .
|
|
68
|
+
} .modal__start_1lmne > *, .modal__center_1lmne > *, .modal__space-between_1lmne > * {
|
|
69
69
|
margin-right: var(--modal-footer-default-gap);
|
|
70
|
-
} .
|
|
71
|
-
.
|
|
72
|
-
.
|
|
73
|
-
.
|
|
74
|
-
.modal__space-
|
|
75
|
-
.modal__space-
|
|
70
|
+
} .modal__start_1lmne > *:last-child,
|
|
71
|
+
.modal__start_1lmne > *:only-child,
|
|
72
|
+
.modal__center_1lmne > *:last-child,
|
|
73
|
+
.modal__center_1lmne > *:only-child,
|
|
74
|
+
.modal__space-between_1lmne > *:last-child,
|
|
75
|
+
.modal__space-between_1lmne > *:only-child {
|
|
76
76
|
margin-right: 0;
|
|
77
|
-
} .
|
|
77
|
+
} .modal__start_1lmne.modal__gap-16_1lmne > *, .modal__center_1lmne.modal__gap-16_1lmne > *, .modal__space-between_1lmne.modal__gap-16_1lmne > * {
|
|
78
78
|
margin-right: var(--gap-m);
|
|
79
|
-
} .
|
|
79
|
+
} .modal__start_1lmne.modal__gap-24_1lmne > *, .modal__center_1lmne.modal__gap-24_1lmne > *, .modal__space-between_1lmne.modal__gap-24_1lmne > * {
|
|
80
80
|
margin-right: var(--gap-xl);
|
|
81
|
-
} .
|
|
81
|
+
} .modal__start_1lmne.modal__gap-32_1lmne > *, .modal__center_1lmne.modal__gap-32_1lmne > *, .modal__space-between_1lmne.modal__gap-32_1lmne > * {
|
|
82
82
|
margin-right: var(--gap-2xl);
|
|
83
83
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 18i5k */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
/* mobile */
|
|
29
29
|
|
|
30
30
|
/* paddings */
|
|
31
|
-
} .
|
|
31
|
+
} .modal__footer_1r3pc {
|
|
32
32
|
padding: var(--gap-m);
|
|
33
|
-
} .
|
|
33
|
+
} .modal__sticky_1r3pc {
|
|
34
34
|
bottom: 0;
|
|
35
35
|
}
|
|
@@ -15,13 +15,13 @@ function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'defau
|
|
|
15
15
|
var React__default = /*#__PURE__*/_interopDefaultCompat(React);
|
|
16
16
|
var cn__default = /*#__PURE__*/_interopDefaultCompat(cn);
|
|
17
17
|
|
|
18
|
-
var desktopStyles = {"header":"
|
|
18
|
+
var desktopStyles = {"header":"modal__header_1lae7","content":"modal__content_1lae7","s":"modal__s_1lae7","m":"modal__m_1lae7","l":"modal__l_1lae7","xl":"modal__xl_1lae7","fullscreen":"modal__fullscreen_1lae7","sticky":"modal__sticky_1lae7"};
|
|
19
19
|
require('./desktop.css')
|
|
20
20
|
|
|
21
|
-
var styles = {"highlighted":"
|
|
21
|
+
var styles = {"highlighted":"modal__highlighted_bfuci","sticky":"modal__sticky_bfuci","hasContent":"modal__hasContent_bfuci"};
|
|
22
22
|
require('./index.css')
|
|
23
23
|
|
|
24
|
-
var mobileStyles = {"header":"
|
|
24
|
+
var mobileStyles = {"header":"modal__header_1060z","sticky":"modal__sticky_1060z","content":"modal__content_1060z"};
|
|
25
25
|
require('./mobile.css')
|
|
26
26
|
|
|
27
27
|
var Header = function (_a) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: uw9pb */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -44,31 +44,31 @@
|
|
|
44
44
|
/* mobile */
|
|
45
45
|
|
|
46
46
|
/* paddings */
|
|
47
|
-
} .
|
|
47
|
+
} .modal__header_1lae7 {
|
|
48
48
|
border-top-left-radius: var(--modal-border-radius);
|
|
49
49
|
border-top-right-radius: var(--modal-border-radius);
|
|
50
|
-
} .
|
|
50
|
+
} .modal__content_1lae7 {
|
|
51
51
|
font-weight: var(--modal-header-desktop-font-weight);
|
|
52
52
|
font-family: var(--modal-header-desktop-font-family);
|
|
53
|
-
} .
|
|
54
|
-
.
|
|
53
|
+
} .modal__s_1lae7 .modal__content_1lae7,
|
|
54
|
+
.modal__m_1lae7 .modal__content_1lae7 {
|
|
55
55
|
padding: var(--modal-s-header-desktop-content-paddings);
|
|
56
56
|
font-size: var(--modal-s-header-desktop-font-size);
|
|
57
57
|
line-height: var(--modal-s-header-desktop-line-height);
|
|
58
|
-
} .
|
|
59
|
-
.
|
|
60
|
-
.
|
|
58
|
+
} .modal__l_1lae7 .modal__content_1lae7,
|
|
59
|
+
.modal__xl_1lae7 .modal__content_1lae7,
|
|
60
|
+
.modal__fullscreen_1lae7 .modal__content_1lae7 {
|
|
61
61
|
padding: var(--modal-l-header-desktop-content-paddings);
|
|
62
62
|
font-size: var(--modal-l-header-desktop-font-size);
|
|
63
63
|
line-height: var(--modal-l-header-desktop-line-height);
|
|
64
|
-
} .
|
|
65
|
-
.
|
|
66
|
-
.
|
|
67
|
-
.
|
|
68
|
-
.
|
|
64
|
+
} .modal__s_1lae7,
|
|
65
|
+
.modal__m_1lae7,
|
|
66
|
+
.modal__l_1lae7,
|
|
67
|
+
.modal__xl_1lae7,
|
|
68
|
+
.modal__fullscreen_1lae7 {
|
|
69
69
|
padding: var(--modal-s-header-paddings);
|
|
70
|
-
} .
|
|
70
|
+
} .modal__sticky_1lae7 {
|
|
71
71
|
top: calc(var(--modal-vertical-padding) * -1)
|
|
72
|
-
} .
|
|
72
|
+
} .modal__sticky_1lae7.modal__fullscreen_1lae7 {
|
|
73
73
|
top: 0;
|
|
74
74
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 7h38i */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root {
|
|
4
4
|
--color-light-bg-primary: #fff;
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
/* mobile */
|
|
33
33
|
|
|
34
34
|
/* paddings */
|
|
35
|
-
} .
|
|
35
|
+
} .modal__highlighted_bfuci {
|
|
36
36
|
background: var(--modal-header-highlight-background);
|
|
37
37
|
box-shadow: var(--modal-header-highlight-box-shadow);
|
|
38
|
-
} .
|
|
38
|
+
} .modal__sticky_bfuci {
|
|
39
39
|
position: sticky;
|
|
40
40
|
z-index: 1
|
|
41
|
-
} .
|
|
41
|
+
} .modal__sticky_bfuci.modal__hasContent_bfuci {
|
|
42
42
|
background: var(--modal-header-background);
|
|
43
43
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1o47b */
|
|
2
2
|
:root {
|
|
3
3
|
} /* deprecated */ :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
4
4
|
} :root { /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */ /* deprecated */
|
|
@@ -38,11 +38,11 @@
|
|
|
38
38
|
|
|
39
39
|
/* paddings */
|
|
40
40
|
--modal-header-mobile-paddings: var(--gap-2xs) var(--gap-xs);
|
|
41
|
-
} .
|
|
41
|
+
} .modal__header_1060z {
|
|
42
42
|
padding: var(--modal-header-mobile-paddings);
|
|
43
|
-
} .
|
|
43
|
+
} .modal__sticky_1060z {
|
|
44
44
|
top: 0;
|
|
45
|
-
} .
|
|
45
|
+
} .modal__content_1060z {
|
|
46
46
|
font-size: var(--modal-header-mobile-font-size);
|
|
47
47
|
line-height: var(--modal-header-mobile-line-height);
|
|
48
48
|
font-family: var(--modal-header-mobile-font-family);
|
|
@@ -10,6 +10,5 @@ declare const ModalDesktop: React.ForwardRefExoticComponent<BaseModalProps & {
|
|
|
10
10
|
Content: React.FC<import("./typings").ContentProps>;
|
|
11
11
|
Header: React.FC<import("./components/header/Component").HeaderProps>;
|
|
12
12
|
Footer: React.FC<import("./components/footer/Component").FooterProps>;
|
|
13
|
-
Closer: React.FC<import("@alfalab/core-components-navigation-bar").CloserProps>;
|
|
14
13
|
};
|
|
15
14
|
export { ModalDesktop };
|
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var tslib = require('tslib');
|
|
6
6
|
var React = require('react');
|
|
7
|
-
var coreComponentsNavigationBar = require('@alfalab/core-components-navigation-bar/cssm');
|
|
8
7
|
var components_content_Component = require('./components/content/Component.js');
|
|
9
8
|
var components_footer_Component = require('./components/footer/Component.js');
|
|
10
9
|
var components_header_Component = require('./components/header/Component.js');
|
|
@@ -20,6 +19,7 @@ require('./components/footer/desktop.module.css');
|
|
|
20
19
|
require('./components/footer/index.module.css');
|
|
21
20
|
require('./components/footer/layout.module.css');
|
|
22
21
|
require('./components/footer/mobile.module.css');
|
|
22
|
+
require('@alfalab/core-components-navigation-bar/cssm');
|
|
23
23
|
require('./components/header/desktop.module.css');
|
|
24
24
|
require('./components/header/index.module.css');
|
|
25
25
|
require('./components/header/mobile.module.css');
|
|
@@ -37,7 +37,6 @@ var ModalDesktop = Object.assign(ModalDesktopComponent, {
|
|
|
37
37
|
Content: components_content_Component.Content,
|
|
38
38
|
Header: components_header_Component.Header,
|
|
39
39
|
Footer: components_footer_Component.Footer,
|
|
40
|
-
Closer: coreComponentsNavigationBar.Closer,
|
|
41
40
|
});
|
|
42
41
|
|
|
43
42
|
exports.ModalDesktop = ModalDesktop;
|
|
@@ -5,6 +5,5 @@ declare const ModalMobile: React.ForwardRefExoticComponent<ModalMobileProps & Re
|
|
|
5
5
|
Content: React.FC<import("./typings").ContentProps>;
|
|
6
6
|
Header: React.FC<import("./components/header/Component").HeaderProps>;
|
|
7
7
|
Footer: React.FC<import("./components/footer/Component").FooterProps>;
|
|
8
|
-
Closer: React.FC<import("@alfalab/core-components-navigation-bar").CloserProps>;
|
|
9
8
|
};
|
|
10
9
|
export { ModalMobile };
|
package/cssm/Component.mobile.js
CHANGED
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var tslib = require('tslib');
|
|
6
6
|
var React = require('react');
|
|
7
|
-
var coreComponentsNavigationBar = require('@alfalab/core-components-navigation-bar/cssm');
|
|
8
7
|
var components_content_Component = require('./components/content/Component.js');
|
|
9
8
|
var components_footer_Component = require('./components/footer/Component.js');
|
|
10
9
|
var components_header_Component = require('./components/header/Component.js');
|
|
@@ -20,6 +19,7 @@ require('./components/footer/desktop.module.css');
|
|
|
20
19
|
require('./components/footer/index.module.css');
|
|
21
20
|
require('./components/footer/layout.module.css');
|
|
22
21
|
require('./components/footer/mobile.module.css');
|
|
22
|
+
require('@alfalab/core-components-navigation-bar/cssm');
|
|
23
23
|
require('./components/header/desktop.module.css');
|
|
24
24
|
require('./components/header/index.module.css');
|
|
25
25
|
require('./components/header/mobile.module.css');
|
|
@@ -37,7 +37,6 @@ var ModalMobile = Object.assign(ModalMobileComponent, {
|
|
|
37
37
|
Content: components_content_Component.Content,
|
|
38
38
|
Header: components_header_Component.Header,
|
|
39
39
|
Footer: components_footer_Component.Footer,
|
|
40
|
-
Closer: coreComponentsNavigationBar.Closer,
|
|
41
40
|
});
|
|
42
41
|
|
|
43
42
|
exports.ModalMobile = ModalMobile;
|
|
@@ -12,6 +12,5 @@ declare const ModalResponsive: React.ForwardRefExoticComponent<BaseModalProps &
|
|
|
12
12
|
Header: React.FC<import("./components/header/Component").HeaderProps>;
|
|
13
13
|
Content: React.FC<import("./typings").ContentProps>;
|
|
14
14
|
Footer: React.FC<import("./components/footer/Component").FooterProps>;
|
|
15
|
-
Closer: React.FC<import("@alfalab/core-components-navigation-bar").CloserProps>;
|
|
16
15
|
};
|
|
17
16
|
export { ModalResponsive };
|
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var tslib = require('tslib');
|
|
6
6
|
var React = require('react');
|
|
7
|
-
var coreComponentsNavigationBar = require('@alfalab/core-components-navigation-bar/cssm');
|
|
8
7
|
var hooks = require('@alfalab/hooks');
|
|
9
8
|
var components_content_Component = require('./components/content/Component.js');
|
|
10
9
|
var components_footer_Component = require('./components/footer/Component.js');
|
|
@@ -21,6 +20,7 @@ require('./components/footer/desktop.module.css');
|
|
|
21
20
|
require('./components/footer/index.module.css');
|
|
22
21
|
require('./components/footer/layout.module.css');
|
|
23
22
|
require('./components/footer/mobile.module.css');
|
|
23
|
+
require('@alfalab/core-components-navigation-bar/cssm');
|
|
24
24
|
require('./components/header/desktop.module.css');
|
|
25
25
|
require('./components/header/index.module.css');
|
|
26
26
|
require('./components/header/mobile.module.css');
|
|
@@ -45,7 +45,6 @@ var ModalResponsive = Object.assign(ModalResponsiveComponent, {
|
|
|
45
45
|
Header: components_header_Component.Header,
|
|
46
46
|
Content: components_content_Component.Content,
|
|
47
47
|
Footer: components_footer_Component.Footer,
|
|
48
|
-
Closer: coreComponentsNavigationBar.Closer,
|
|
49
48
|
});
|
|
50
49
|
|
|
51
50
|
exports.ModalResponsive = ModalResponsive;
|