@alfalab/core-components-modal 7.0.15 → 8.0.1
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 +27 -3
- 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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 15vo2 */
|
|
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_1ihrt {
|
|
48
48
|
border-top-left-radius: var(--modal-border-radius);
|
|
49
49
|
border-top-right-radius: var(--modal-border-radius);
|
|
50
|
-
} .
|
|
50
|
+
} .modal__content_1ihrt {
|
|
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_1ihrt .modal__content_1ihrt,
|
|
54
|
+
.modal__m_1ihrt .modal__content_1ihrt {
|
|
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_1ihrt .modal__content_1ihrt,
|
|
59
|
+
.modal__xl_1ihrt .modal__content_1ihrt,
|
|
60
|
+
.modal__fullscreen_1ihrt .modal__content_1ihrt {
|
|
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_1ihrt,
|
|
65
|
+
.modal__m_1ihrt,
|
|
66
|
+
.modal__l_1ihrt,
|
|
67
|
+
.modal__xl_1ihrt,
|
|
68
|
+
.modal__fullscreen_1ihrt {
|
|
69
69
|
padding: var(--modal-s-header-paddings);
|
|
70
|
-
} .
|
|
70
|
+
} .modal__sticky_1ihrt {
|
|
71
71
|
top: calc(var(--modal-vertical-padding) * -1)
|
|
72
|
-
} .
|
|
72
|
+
} .modal__sticky_1ihrt.modal__fullscreen_1ihrt {
|
|
73
73
|
top: 0;
|
|
74
74
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1twm9 */
|
|
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_1qh07 {
|
|
36
36
|
background: var(--modal-header-highlight-background);
|
|
37
37
|
box-shadow: var(--modal-header-highlight-box-shadow);
|
|
38
|
-
} .
|
|
38
|
+
} .modal__sticky_1qh07 {
|
|
39
39
|
position: sticky;
|
|
40
40
|
z-index: 1
|
|
41
|
-
} .
|
|
41
|
+
} .modal__sticky_1qh07.modal__hasContent_1qh07 {
|
|
42
42
|
background: var(--modal-header-background);
|
|
43
43
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1wmip */
|
|
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_18u3f {
|
|
42
42
|
padding: var(--modal-header-mobile-paddings);
|
|
43
|
-
} .
|
|
43
|
+
} .modal__sticky_18u3f {
|
|
44
44
|
top: 0;
|
|
45
|
-
} .
|
|
45
|
+
} .modal__content_18u3f {
|
|
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);
|
package/esm/desktop.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 1mwij */
|
|
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 */
|
|
@@ -35,25 +35,25 @@
|
|
|
35
35
|
/* mobile */
|
|
36
36
|
|
|
37
37
|
/* paddings */
|
|
38
|
-
} .
|
|
38
|
+
} .modal__wrapper_ftxrp {
|
|
39
39
|
padding-top: var(--modal-vertical-padding);
|
|
40
40
|
padding-bottom: var(--modal-vertical-padding);
|
|
41
|
-
} .
|
|
41
|
+
} .modal__component_ftxrp {
|
|
42
42
|
width: 100%;
|
|
43
43
|
max-width: 100%;
|
|
44
44
|
border-radius: var(--modal-border-radius);
|
|
45
|
-
} .
|
|
45
|
+
} .modal__fullscreen_ftxrp {
|
|
46
46
|
padding-top: 0;
|
|
47
47
|
padding-bottom: 0
|
|
48
|
-
} .
|
|
48
|
+
} .modal__fullscreen_ftxrp .modal__component_ftxrp {
|
|
49
49
|
flex: 1;
|
|
50
50
|
border-radius: 0;
|
|
51
|
-
} .
|
|
51
|
+
} .modal__s_ftxrp {
|
|
52
52
|
width: var(--modal-s-width);
|
|
53
|
-
} .
|
|
53
|
+
} .modal__m_ftxrp {
|
|
54
54
|
width: var(--modal-m-width);
|
|
55
|
-
} .
|
|
55
|
+
} .modal__l_ftxrp {
|
|
56
56
|
width: var(--modal-l-width);
|
|
57
|
-
} .
|
|
57
|
+
} .modal__xl_ftxrp {
|
|
58
58
|
width: var(--modal-xl-width);
|
|
59
59
|
}
|
package/esm/desktop.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./Component.desktop";
|
|
2
|
-
export {};
|
|
2
|
+
export { ModalDesktopProps } from "./typings";
|
package/esm/desktop.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export { ModalDesktop } from './Component.desktop.js';
|
|
2
2
|
import 'tslib';
|
|
3
3
|
import 'react';
|
|
4
|
-
import '@alfalab/core-components-navigation-bar/esm';
|
|
5
4
|
import './components/content/Component.js';
|
|
6
5
|
import 'classnames';
|
|
7
6
|
import './Context.js';
|
|
@@ -9,5 +8,6 @@ import '@alfalab/core-components-base-modal/esm';
|
|
|
9
8
|
import './ResponsiveContext.js';
|
|
10
9
|
import './components/footer/Component.js';
|
|
11
10
|
import './components/header/Component.js';
|
|
11
|
+
import '@alfalab/core-components-navigation-bar/esm';
|
|
12
12
|
import './Component.js';
|
|
13
13
|
import 'react-merge-refs';
|
package/esm/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export * from "./typings";
|
|
1
|
+
export { ModalResponsive as Modal } from "./Component.responsive";
|
|
2
|
+
export { ModalResponsiveProps as ModalProps } from "./typings";
|
package/esm/index.js
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export { ModalResponsive } from './Component.responsive.js';
|
|
2
|
-
export { ModalContext } from './Context.js';
|
|
1
|
+
export { ModalResponsive as Modal } from './Component.responsive.js';
|
|
3
2
|
import 'tslib';
|
|
4
3
|
import 'react';
|
|
5
|
-
import '@alfalab/core-components-navigation-bar/esm';
|
|
6
4
|
import '@alfalab/hooks';
|
|
7
5
|
import './components/content/Component.js';
|
|
8
6
|
import 'classnames';
|
|
7
|
+
import './Context.js';
|
|
8
|
+
import '@alfalab/core-components-base-modal/esm';
|
|
9
9
|
import './ResponsiveContext.js';
|
|
10
10
|
import './components/footer/Component.js';
|
|
11
11
|
import './components/header/Component.js';
|
|
12
|
+
import '@alfalab/core-components-navigation-bar/esm';
|
|
12
13
|
import './Component.js';
|
|
13
14
|
import 'react-merge-refs';
|
|
14
|
-
import '@alfalab/core-components-base-modal/esm';
|
package/esm/mobile.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 184fe */
|
|
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,7 +27,7 @@
|
|
|
27
27
|
/* mobile */
|
|
28
28
|
|
|
29
29
|
/* paddings */
|
|
30
|
-
} .
|
|
30
|
+
} .modal__component_p9vh0 {
|
|
31
31
|
flex: 1;
|
|
32
32
|
width: 100%;
|
|
33
33
|
max-width: 600px;
|
package/esm/mobile.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./Component.mobile";
|
|
2
|
-
export {};
|
|
2
|
+
export { ModalMobileProps } from "./typings";
|
package/esm/mobile.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export { ModalMobile } from './Component.mobile.js';
|
|
2
2
|
import 'tslib';
|
|
3
3
|
import 'react';
|
|
4
|
-
import '@alfalab/core-components-navigation-bar/esm';
|
|
5
4
|
import './components/content/Component.js';
|
|
6
5
|
import 'classnames';
|
|
7
6
|
import './Context.js';
|
|
@@ -9,5 +8,6 @@ import '@alfalab/core-components-base-modal/esm';
|
|
|
9
8
|
import './ResponsiveContext.js';
|
|
10
9
|
import './components/footer/Component.js';
|
|
11
10
|
import './components/header/Component.js';
|
|
11
|
+
import '@alfalab/core-components-navigation-bar/esm';
|
|
12
12
|
import './Component.js';
|
|
13
13
|
import 'react-merge-refs';
|
package/esm/shared.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ModalContext } from "./Context";
|
package/esm/shared.js
ADDED
package/esm/transitions.css
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
/* hash:
|
|
2
|
-
.
|
|
3
|
-
.
|
|
1
|
+
/* hash: 15xrf */
|
|
2
|
+
.modal__appear_1u7ur,
|
|
3
|
+
.modal__enter_1u7ur {
|
|
4
4
|
opacity: 0;
|
|
5
5
|
transform: translateY(15px);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
.
|
|
9
|
-
.
|
|
8
|
+
.modal__appearActive_1u7ur,
|
|
9
|
+
.modal__enterActive_1u7ur {
|
|
10
10
|
opacity: 1;
|
|
11
11
|
transform: translateY(0);
|
|
12
12
|
transition: opacity 200ms ease-in, transform 200ms ease-in;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
.
|
|
15
|
+
.modal__exit_1u7ur {
|
|
16
16
|
opacity: 1;
|
|
17
17
|
transform: translateY(0);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
.
|
|
21
|
-
.
|
|
20
|
+
.modal__exitActive_1u7ur,
|
|
21
|
+
.modal__exitDone_1u7ur {
|
|
22
22
|
opacity: 0;
|
|
23
23
|
transform: translateY(15px);
|
|
24
24
|
transition: opacity 200ms ease-out, transform 200ms ease-out;
|
package/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export
|
|
2
|
-
export
|
|
3
|
-
export * from "./typings";
|
|
1
|
+
export { ModalResponsive as Modal } from "./Component.responsive";
|
|
2
|
+
export { ModalResponsiveProps as ModalProps } from "./typings";
|
package/index.js
CHANGED
|
@@ -3,21 +3,20 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var Component_responsive = require('./Component.responsive.js');
|
|
6
|
-
var Context = require('./Context.js');
|
|
7
6
|
require('tslib');
|
|
8
7
|
require('react');
|
|
9
|
-
require('@alfalab/core-components-navigation-bar');
|
|
10
8
|
require('@alfalab/hooks');
|
|
11
9
|
require('./components/content/Component.js');
|
|
12
10
|
require('classnames');
|
|
11
|
+
require('./Context.js');
|
|
12
|
+
require('@alfalab/core-components-base-modal');
|
|
13
13
|
require('./ResponsiveContext.js');
|
|
14
14
|
require('./components/footer/Component.js');
|
|
15
15
|
require('./components/header/Component.js');
|
|
16
|
+
require('@alfalab/core-components-navigation-bar');
|
|
16
17
|
require('./Component.js');
|
|
17
18
|
require('react-merge-refs');
|
|
18
|
-
require('@alfalab/core-components-base-modal');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
exports.
|
|
23
|
-
exports.ModalContext = Context.ModalContext;
|
|
22
|
+
exports.Modal = Component_responsive.ModalResponsive;
|
package/mobile.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 184fe */
|
|
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,7 +27,7 @@
|
|
|
27
27
|
/* mobile */
|
|
28
28
|
|
|
29
29
|
/* paddings */
|
|
30
|
-
} .
|
|
30
|
+
} .modal__component_p9vh0 {
|
|
31
31
|
flex: 1;
|
|
32
32
|
width: 100%;
|
|
33
33
|
max-width: 600px;
|
package/mobile.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./Component.mobile";
|
|
2
|
-
export {};
|
|
2
|
+
export { ModalMobileProps } from "./typings";
|
package/mobile.js
CHANGED
|
@@ -5,7 +5,6 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var Component_mobile = require('./Component.mobile.js');
|
|
6
6
|
require('tslib');
|
|
7
7
|
require('react');
|
|
8
|
-
require('@alfalab/core-components-navigation-bar');
|
|
9
8
|
require('./components/content/Component.js');
|
|
10
9
|
require('classnames');
|
|
11
10
|
require('./Context.js');
|
|
@@ -13,6 +12,7 @@ require('@alfalab/core-components-base-modal');
|
|
|
13
12
|
require('./ResponsiveContext.js');
|
|
14
13
|
require('./components/footer/Component.js');
|
|
15
14
|
require('./components/header/Component.js');
|
|
15
|
+
require('@alfalab/core-components-navigation-bar');
|
|
16
16
|
require('./Component.js');
|
|
17
17
|
require('react-merge-refs');
|
|
18
18
|
|
|
@@ -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 };
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React, { forwardRef } from 'react';
|
|
2
|
-
import { Closer } from '@alfalab/core-components-navigation-bar/modern';
|
|
3
2
|
import { Content } from './components/content/Component.js';
|
|
4
3
|
import { Footer } from './components/footer/Component.js';
|
|
5
4
|
import { Header } from './components/header/Component.js';
|
|
@@ -8,6 +7,7 @@ import 'classnames';
|
|
|
8
7
|
import './Context.js';
|
|
9
8
|
import '@alfalab/core-components-base-modal/modern';
|
|
10
9
|
import './ResponsiveContext.js';
|
|
10
|
+
import '@alfalab/core-components-navigation-bar/modern';
|
|
11
11
|
import 'react-merge-refs';
|
|
12
12
|
|
|
13
13
|
const ModalDesktopComponent = forwardRef((props, ref) => (React.createElement(Modal, { ...props, ref: ref, view: 'desktop' })));
|
|
@@ -15,7 +15,6 @@ const ModalDesktop = Object.assign(ModalDesktopComponent, {
|
|
|
15
15
|
Content,
|
|
16
16
|
Header,
|
|
17
17
|
Footer,
|
|
18
|
-
Closer,
|
|
19
18
|
});
|
|
20
19
|
|
|
21
20
|
export { ModalDesktop };
|
package/modern/Component.js
CHANGED
|
@@ -4,13 +4,13 @@ import cn from 'classnames';
|
|
|
4
4
|
import { BaseModal } from '@alfalab/core-components-base-modal/modern';
|
|
5
5
|
import { ResponsiveContext } from './ResponsiveContext.js';
|
|
6
6
|
|
|
7
|
-
const desktopStyles = {"wrapper":"
|
|
7
|
+
const desktopStyles = {"wrapper":"modal__wrapper_ftxrp","component":"modal__component_ftxrp","fullscreen":"modal__fullscreen_ftxrp","s":"modal__s_ftxrp","m":"modal__m_ftxrp","l":"modal__l_ftxrp","xl":"modal__xl_ftxrp"};
|
|
8
8
|
require('./desktop.css')
|
|
9
9
|
|
|
10
|
-
const mobileStyles = {"component":"
|
|
10
|
+
const mobileStyles = {"component":"modal__component_p9vh0"};
|
|
11
11
|
require('./mobile.css')
|
|
12
12
|
|
|
13
|
-
const transitions = {"appear":"
|
|
13
|
+
const transitions = {"appear":"modal__appear_1u7ur","enter":"modal__enter_1u7ur","appearActive":"modal__appearActive_1u7ur","enterActive":"modal__enterActive_1u7ur","exit":"modal__exit_1u7ur","exitActive":"modal__exitActive_1u7ur","exitDone":"modal__exitDone_1u7ur"};
|
|
14
14
|
require('./transitions.css')
|
|
15
15
|
|
|
16
16
|
const Modal = forwardRef(({ size = 's', fixedPosition, fullscreen, children, className, wrapperClassName, transitionProps = {}, view, ...restProps }, ref) => {
|
|
@@ -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 };
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React, { forwardRef } from 'react';
|
|
2
|
-
import { Closer } from '@alfalab/core-components-navigation-bar/modern';
|
|
3
2
|
import { Content } from './components/content/Component.js';
|
|
4
3
|
import { Footer } from './components/footer/Component.js';
|
|
5
4
|
import { Header } from './components/header/Component.js';
|
|
@@ -8,6 +7,7 @@ import 'classnames';
|
|
|
8
7
|
import './Context.js';
|
|
9
8
|
import '@alfalab/core-components-base-modal/modern';
|
|
10
9
|
import './ResponsiveContext.js';
|
|
10
|
+
import '@alfalab/core-components-navigation-bar/modern';
|
|
11
11
|
import 'react-merge-refs';
|
|
12
12
|
|
|
13
13
|
const ModalMobileComponent = forwardRef((props, ref) => (React.createElement(Modal, { ...props, ref: ref, view: 'mobile' })));
|
|
@@ -15,7 +15,6 @@ const ModalMobile = Object.assign(ModalMobileComponent, {
|
|
|
15
15
|
Content,
|
|
16
16
|
Header,
|
|
17
17
|
Footer,
|
|
18
|
-
Closer,
|
|
19
18
|
});
|
|
20
19
|
|
|
21
20
|
export { 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 };
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import React, { forwardRef } from 'react';
|
|
2
|
-
import { Closer } from '@alfalab/core-components-navigation-bar/modern';
|
|
3
2
|
import { useMedia } from '@alfalab/hooks';
|
|
4
3
|
import { Content } from './components/content/Component.js';
|
|
5
4
|
import { Footer } from './components/footer/Component.js';
|
|
@@ -9,6 +8,7 @@ import 'classnames';
|
|
|
9
8
|
import './Context.js';
|
|
10
9
|
import '@alfalab/core-components-base-modal/modern';
|
|
11
10
|
import './ResponsiveContext.js';
|
|
11
|
+
import '@alfalab/core-components-navigation-bar/modern';
|
|
12
12
|
import 'react-merge-refs';
|
|
13
13
|
|
|
14
14
|
const ModalResponsiveComponent = forwardRef(({ children, breakpoint = 1024, ...restProps }, ref) => {
|
|
@@ -22,7 +22,6 @@ const ModalResponsive = Object.assign(ModalResponsiveComponent, {
|
|
|
22
22
|
Header,
|
|
23
23
|
Content,
|
|
24
24
|
Footer,
|
|
25
|
-
Closer,
|
|
26
25
|
});
|
|
27
26
|
|
|
28
27
|
export { ModalResponsive };
|
|
@@ -4,13 +4,13 @@ import { ModalContext } from '../../Context.js';
|
|
|
4
4
|
import { ResponsiveContext } from '../../ResponsiveContext.js';
|
|
5
5
|
import '@alfalab/core-components-base-modal/modern';
|
|
6
6
|
|
|
7
|
-
const desktopStyles = {"s":"
|
|
7
|
+
const desktopStyles = {"s":"modal__s_18e0n","m":"modal__m_18e0n","l":"modal__l_18e0n","xl":"modal__xl_18e0n","fullscreen":"modal__fullscreen_18e0n"};
|
|
8
8
|
require('./desktop.css')
|
|
9
9
|
|
|
10
|
-
const styles = {"content":"
|
|
10
|
+
const styles = {"content":"modal__content_4p3ye","withHeader":"modal__withHeader_4p3ye","flex":"modal__flex_4p3ye"};
|
|
11
11
|
require('./index.css')
|
|
12
12
|
|
|
13
|
-
const mobileStyles = {"content":"
|
|
13
|
+
const mobileStyles = {"content":"modal__content_rxun5"};
|
|
14
14
|
require('./mobile.css')
|
|
15
15
|
|
|
16
16
|
const Content = ({ children, flex, className }) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: r9wyo */
|
|
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_18e0n,
|
|
34
|
+
.modal__m_18e0n,
|
|
35
|
+
.modal__l_18e0n,
|
|
36
|
+
.modal__xl_18e0n,
|
|
37
|
+
.modal__fullscreen_18e0n {
|
|
38
38
|
padding: var(--modal-s-content-paddings)
|
|
39
|
-
} .
|
|
39
|
+
} .modal__s_18e0n:last-child, .modal__m_18e0n:last-child, .modal__l_18e0n:last-child, .modal__xl_18e0n:last-child, .modal__fullscreen_18e0n:last-child {
|
|
40
40
|
padding-bottom: var(--modal-s-content-only-bottom-padding);
|
|
41
41
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 9i24g */
|
|
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_4p3ye {
|
|
31
31
|
position: relative;
|
|
32
32
|
box-sizing: border-box;
|
|
33
33
|
width: 100%;
|
|
34
34
|
z-index: 0
|
|
35
|
-
} .
|
|
35
|
+
} .modal__content_4p3ye.modal__withHeader_4p3ye {
|
|
36
36
|
padding-top: 0;
|
|
37
|
-
} .
|
|
37
|
+
} .modal__flex_4p3ye {
|
|
38
38
|
flex: 1;
|
|
39
39
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 15p0n */
|
|
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_rxun5 {
|
|
32
32
|
padding: var(--gap-m) var(--gap-m) 0
|
|
33
|
-
} .
|
|
33
|
+
} .modal__content_rxun5:last-child {
|
|
34
34
|
padding-bottom: var(--gap-m);
|
|
35
35
|
}
|
|
@@ -4,16 +4,16 @@ import { ModalContext } from '../../Context.js';
|
|
|
4
4
|
import { ResponsiveContext } from '../../ResponsiveContext.js';
|
|
5
5
|
import '@alfalab/core-components-base-modal/modern';
|
|
6
6
|
|
|
7
|
-
const desktopStyles = {"footer":"
|
|
7
|
+
const desktopStyles = {"footer":"modal__footer_f54rw","sticky":"modal__sticky_f54rw","fullscreen":"modal__fullscreen_f54rw","s":"modal__s_f54rw","m":"modal__m_f54rw","l":"modal__l_f54rw","xl":"modal__xl_f54rw"};
|
|
8
8
|
require('./desktop.css')
|
|
9
9
|
|
|
10
|
-
const styles = {"footer":"
|
|
10
|
+
const styles = {"footer":"modal__footer_7mbfl","sticky":"modal__sticky_7mbfl","highlighted":"modal__highlighted_7mbfl"};
|
|
11
11
|
require('./index.css')
|
|
12
12
|
|
|
13
|
-
const layoutStyles = {"column":"
|
|
13
|
+
const layoutStyles = {"column":"modal__column_1b952","gap-16":"modal__gap-16_1b952","gap-24":"modal__gap-24_1b952","gap-32":"modal__gap-32_1b952","column-mobile":"modal__column-mobile_1b952","start":"modal__start_1b952","center":"modal__center_1b952","space-between":"modal__space-between_1b952"};
|
|
14
14
|
require('./layout.css')
|
|
15
15
|
|
|
16
|
-
const mobileStyles = {"footer":"
|
|
16
|
+
const mobileStyles = {"footer":"modal__footer_uj3re","sticky":"modal__sticky_uj3re"};
|
|
17
17
|
require('./mobile.css')
|
|
18
18
|
|
|
19
19
|
const Footer = ({ children, className, sticky, layout = 'start', gap }) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hash:
|
|
1
|
+
/* hash: 5nd3k */
|
|
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_f54rw {
|
|
37
37
|
border-bottom-left-radius: var(--modal-border-radius);
|
|
38
38
|
border-bottom-right-radius: var(--modal-border-radius);
|
|
39
|
-
} .
|
|
39
|
+
} .modal__sticky_f54rw {
|
|
40
40
|
bottom: calc(var(--modal-vertical-padding) * -1)
|
|
41
|
-
} .
|
|
41
|
+
} .modal__sticky_f54rw.modal__fullscreen_f54rw {
|
|
42
42
|
bottom: 0;
|
|
43
|
-
} .
|
|
44
|
-
.
|
|
45
|
-
.
|
|
46
|
-
.
|
|
47
|
-
.
|
|
43
|
+
} .modal__s_f54rw,
|
|
44
|
+
.modal__m_f54rw,
|
|
45
|
+
.modal__l_f54rw,
|
|
46
|
+
.modal__xl_f54rw,
|
|
47
|
+
.modal__fullscreen_f54rw {
|
|
48
48
|
padding: var(--modal-s-footer-paddings);
|
|
49
49
|
}
|