@alfalab/core-components-base-modal 4.2.1 → 4.2.2

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [4.2.2](https://github.com/core-ds/core-components/compare/@alfalab/core-components-base-modal@4.2.1...@alfalab/core-components-base-modal@4.2.2) (2022-07-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **base-modal:** fixed click on scrollbar bug ([#165](https://github.com/core-ds/core-components/issues/165)) ([c9df897](https://github.com/core-ds/core-components/commit/c9df8977a6f2e30d753a1f825bb6bad061179a6e))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [4.2.1](https://github.com/core-ds/core-components/compare/@alfalab/core-components-base-modal@4.2.0...@alfalab/core-components-base-modal@4.2.1) (2022-07-18)
7
18
 
8
19
  **Note:** Version bump only for package @alfalab/core-components-base-modal
package/Component.js CHANGED
@@ -48,7 +48,7 @@ var __assign = function () {
48
48
  return __assign.apply(this, arguments);
49
49
  };
50
50
 
51
- var styles = {"component":"base-modal__component_1xxjn","wrapper":"base-modal__wrapper_1xxjn","content":"base-modal__content_1xxjn","hidden":"base-modal__hidden_1xxjn","backdrop":"base-modal__backdrop_1xxjn","appear":"base-modal__appear_1xxjn","enter":"base-modal__enter_1xxjn","appearActive":"base-modal__appearActive_1xxjn","enterActive":"base-modal__enterActive_1xxjn","exit":"base-modal__exit_1xxjn","exitActive":"base-modal__exitActive_1xxjn","exitDone":"base-modal__exitDone_1xxjn"};
51
+ var styles = {"component":"base-modal__component_109qr","wrapper":"base-modal__wrapper_109qr","content":"base-modal__content_109qr","hidden":"base-modal__hidden_109qr","backdrop":"base-modal__backdrop_109qr","appear":"base-modal__appear_109qr","enter":"base-modal__enter_109qr","appearActive":"base-modal__appearActive_109qr","enterActive":"base-modal__enterActive_109qr","exit":"base-modal__exit_109qr","exitActive":"base-modal__exitActive_109qr","exitDone":"base-modal__exitDone_109qr"};
52
52
  require('./index.css')
53
53
 
54
54
  var BaseModalContext = React__default['default'].createContext({
package/esm/Component.js CHANGED
@@ -37,7 +37,7 @@ var __assign = function () {
37
37
  return __assign.apply(this, arguments);
38
38
  };
39
39
 
40
- var styles = {"component":"base-modal__component_1xxjn","wrapper":"base-modal__wrapper_1xxjn","content":"base-modal__content_1xxjn","hidden":"base-modal__hidden_1xxjn","backdrop":"base-modal__backdrop_1xxjn","appear":"base-modal__appear_1xxjn","enter":"base-modal__enter_1xxjn","appearActive":"base-modal__appearActive_1xxjn","enterActive":"base-modal__enterActive_1xxjn","exit":"base-modal__exit_1xxjn","exitActive":"base-modal__exitActive_1xxjn","exitDone":"base-modal__exitDone_1xxjn"};
40
+ var styles = {"component":"base-modal__component_109qr","wrapper":"base-modal__wrapper_109qr","content":"base-modal__content_109qr","hidden":"base-modal__hidden_109qr","backdrop":"base-modal__backdrop_109qr","appear":"base-modal__appear_109qr","enter":"base-modal__enter_109qr","appearActive":"base-modal__appearActive_109qr","enterActive":"base-modal__enterActive_109qr","exit":"base-modal__exit_109qr","exitActive":"base-modal__exitActive_109qr","exitDone":"base-modal__exitDone_109qr"};
41
41
  require('./index.css')
42
42
 
43
43
  var BaseModalContext = React.createContext({
package/esm/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /* hash: 1z9ex */
1
+ /* hash: 1aupf */
2
2
  :root {
3
3
  --color-light-bg-primary: #fff;
4
4
  }
@@ -10,14 +10,14 @@
10
10
 
11
11
  /* Hard up */
12
12
  }
13
- .base-modal__component_1xxjn {
13
+ .base-modal__component_109qr {
14
14
  position: relative;
15
15
  box-sizing: border-box;
16
16
  background: var(--color-light-bg-primary);
17
17
  margin: auto;
18
18
  flex-shrink: 0;
19
19
  }
20
- .base-modal__wrapper_1xxjn {
20
+ .base-modal__wrapper_109qr {
21
21
  position: fixed;
22
22
  top: 0;
23
23
  left: 0;
@@ -30,33 +30,33 @@
30
30
  align-items: center;
31
31
  outline: 0;
32
32
  }
33
- .base-modal__content_1xxjn {
33
+ .base-modal__content_109qr {
34
34
  width: 100%;
35
35
  height: 100%;
36
36
  display: flex;
37
37
  flex-direction: column;
38
38
  flex: 1;
39
39
  }
40
- .base-modal__hidden_1xxjn {
40
+ .base-modal__hidden_109qr {
41
41
  display: none;
42
42
  }
43
- .base-modal__backdrop_1xxjn {
43
+ .base-modal__backdrop_109qr {
44
44
  z-index: 0;
45
45
  }
46
- .base-modal__appear_1xxjn,
47
- .base-modal__enter_1xxjn {
46
+ .base-modal__appear_109qr,
47
+ .base-modal__enter_109qr {
48
48
  opacity: 0;
49
49
  }
50
- .base-modal__appearActive_1xxjn,
51
- .base-modal__enterActive_1xxjn {
50
+ .base-modal__appearActive_109qr,
51
+ .base-modal__enterActive_109qr {
52
52
  opacity: 1;
53
53
  transition: opacity 200ms ease-in;
54
54
  }
55
- .base-modal__exit_1xxjn {
55
+ .base-modal__exit_109qr {
56
56
  opacity: 1;
57
57
  }
58
- .base-modal__exitActive_1xxjn,
59
- .base-modal__exitDone_1xxjn {
58
+ .base-modal__exitActive_109qr,
59
+ .base-modal__exitDone_109qr {
60
60
  opacity: 0;
61
61
  transition: opacity 200ms ease-out;
62
62
  }
package/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /* hash: 1z9ex */
1
+ /* hash: 1aupf */
2
2
  :root {
3
3
  --color-light-bg-primary: #fff;
4
4
  }
@@ -10,14 +10,14 @@
10
10
 
11
11
  /* Hard up */
12
12
  }
13
- .base-modal__component_1xxjn {
13
+ .base-modal__component_109qr {
14
14
  position: relative;
15
15
  box-sizing: border-box;
16
16
  background: var(--color-light-bg-primary);
17
17
  margin: auto;
18
18
  flex-shrink: 0;
19
19
  }
20
- .base-modal__wrapper_1xxjn {
20
+ .base-modal__wrapper_109qr {
21
21
  position: fixed;
22
22
  top: 0;
23
23
  left: 0;
@@ -30,33 +30,33 @@
30
30
  align-items: center;
31
31
  outline: 0;
32
32
  }
33
- .base-modal__content_1xxjn {
33
+ .base-modal__content_109qr {
34
34
  width: 100%;
35
35
  height: 100%;
36
36
  display: flex;
37
37
  flex-direction: column;
38
38
  flex: 1;
39
39
  }
40
- .base-modal__hidden_1xxjn {
40
+ .base-modal__hidden_109qr {
41
41
  display: none;
42
42
  }
43
- .base-modal__backdrop_1xxjn {
43
+ .base-modal__backdrop_109qr {
44
44
  z-index: 0;
45
45
  }
46
- .base-modal__appear_1xxjn,
47
- .base-modal__enter_1xxjn {
46
+ .base-modal__appear_109qr,
47
+ .base-modal__enter_109qr {
48
48
  opacity: 0;
49
49
  }
50
- .base-modal__appearActive_1xxjn,
51
- .base-modal__enterActive_1xxjn {
50
+ .base-modal__appearActive_109qr,
51
+ .base-modal__enterActive_109qr {
52
52
  opacity: 1;
53
53
  transition: opacity 200ms ease-in;
54
54
  }
55
- .base-modal__exit_1xxjn {
55
+ .base-modal__exit_109qr {
56
56
  opacity: 1;
57
57
  }
58
- .base-modal__exitActive_1xxjn,
59
- .base-modal__exitDone_1xxjn {
58
+ .base-modal__exitActive_109qr,
59
+ .base-modal__exitDone_109qr {
60
60
  opacity: 0;
61
61
  transition: opacity 200ms ease-out;
62
62
  }
@@ -10,7 +10,7 @@ import { stackingOrder, Stack } from '@alfalab/core-components-stack/modern';
10
10
  import '@alfalab/core-components-global-store/modern';
11
11
  import { isScrolledToTop, isScrolledToBottom, handleContainer, restoreContainerStyles, hasScrollbar, getScrollbarSize } from './utils.js';
12
12
 
13
- var styles = {"component":"base-modal__component_1xxjn","wrapper":"base-modal__wrapper_1xxjn","content":"base-modal__content_1xxjn","hidden":"base-modal__hidden_1xxjn","backdrop":"base-modal__backdrop_1xxjn","appear":"base-modal__appear_1xxjn","enter":"base-modal__enter_1xxjn","appearActive":"base-modal__appearActive_1xxjn","enterActive":"base-modal__enterActive_1xxjn","exit":"base-modal__exit_1xxjn","exitActive":"base-modal__exitActive_1xxjn","exitDone":"base-modal__exitDone_1xxjn"};
13
+ var styles = {"component":"base-modal__component_109qr","wrapper":"base-modal__wrapper_109qr","content":"base-modal__content_109qr","hidden":"base-modal__hidden_109qr","backdrop":"base-modal__backdrop_109qr","appear":"base-modal__appear_109qr","enter":"base-modal__enter_109qr","appearActive":"base-modal__appearActive_109qr","enterActive":"base-modal__enterActive_109qr","exit":"base-modal__exit_109qr","exitActive":"base-modal__exitActive_109qr","exitDone":"base-modal__exitDone_109qr"};
14
14
  require('./index.css')
15
15
 
16
16
  /* eslint-disable jsx-a11y/no-noninteractive-element-interactions */
package/modern/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /* hash: 1z9ex */
1
+ /* hash: 1aupf */
2
2
  :root {
3
3
  --color-light-bg-primary: #fff;
4
4
  }
@@ -10,14 +10,14 @@
10
10
 
11
11
  /* Hard up */
12
12
  }
13
- .base-modal__component_1xxjn {
13
+ .base-modal__component_109qr {
14
14
  position: relative;
15
15
  box-sizing: border-box;
16
16
  background: var(--color-light-bg-primary);
17
17
  margin: auto;
18
18
  flex-shrink: 0;
19
19
  }
20
- .base-modal__wrapper_1xxjn {
20
+ .base-modal__wrapper_109qr {
21
21
  position: fixed;
22
22
  top: 0;
23
23
  left: 0;
@@ -30,33 +30,33 @@
30
30
  align-items: center;
31
31
  outline: 0;
32
32
  }
33
- .base-modal__content_1xxjn {
33
+ .base-modal__content_109qr {
34
34
  width: 100%;
35
35
  height: 100%;
36
36
  display: flex;
37
37
  flex-direction: column;
38
38
  flex: 1;
39
39
  }
40
- .base-modal__hidden_1xxjn {
40
+ .base-modal__hidden_109qr {
41
41
  display: none;
42
42
  }
43
- .base-modal__backdrop_1xxjn {
43
+ .base-modal__backdrop_109qr {
44
44
  z-index: 0;
45
45
  }
46
- .base-modal__appear_1xxjn,
47
- .base-modal__enter_1xxjn {
46
+ .base-modal__appear_109qr,
47
+ .base-modal__enter_109qr {
48
48
  opacity: 0;
49
49
  }
50
- .base-modal__appearActive_1xxjn,
51
- .base-modal__enterActive_1xxjn {
50
+ .base-modal__appearActive_109qr,
51
+ .base-modal__enterActive_109qr {
52
52
  opacity: 1;
53
53
  transition: opacity 200ms ease-in;
54
54
  }
55
- .base-modal__exit_1xxjn {
55
+ .base-modal__exit_109qr {
56
56
  opacity: 1;
57
57
  }
58
- .base-modal__exitActive_1xxjn,
59
- .base-modal__exitDone_1xxjn {
58
+ .base-modal__exitActive_109qr,
59
+ .base-modal__exitDone_109qr {
60
60
  opacity: 0;
61
61
  transition: opacity 200ms ease-out;
62
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfalab/core-components-base-modal",
3
- "version": "4.2.1",
3
+ "version": "4.2.2",
4
4
  "description": "BaseModal component",
5
5
  "keywords": [],
6
6
  "license": "MIT",