@twreporter/react-components 8.22.0 → 8.23.0-rc.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/CHANGELOG.md +19 -0
- package/lib/mobile-pop-up-modal.js +4 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
# [8.23.0-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.22.1-rc.0...@twreporter/react-components@8.23.0-rc.0) (2023-12-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **react-components:** use core z-index constants ([72f6813](https://github.com/twreporter/twreporter-npm-packages/commit/72f681336666d46a2e0b21524bf267cf04b5c0d9))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [8.22.1-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.22.0...@twreporter/react-components@8.22.1-rc.0) (2023-12-25)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @twreporter/react-components
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [8.22.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/react-components@8.22.0-rc.4...@twreporter/react-components@8.22.0) (2023-12-13)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @twreporter/react-components
|
|
@@ -13,6 +13,8 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
13
13
|
|
|
14
14
|
var _styledComponents = _interopRequireDefault(require("styled-components"));
|
|
15
15
|
|
|
16
|
+
var _zIndex = _interopRequireDefault(require("@twreporter/core/lib/constants/z-index"));
|
|
17
|
+
|
|
16
18
|
var _excluded = ["modalWidth"];
|
|
17
19
|
|
|
18
20
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
@@ -48,11 +50,11 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
|
|
|
48
50
|
var Modal = /*#__PURE__*/_styledComponents["default"].div.withConfig({
|
|
49
51
|
displayName: "mobile-pop-up-modal__Modal",
|
|
50
52
|
componentId: "sc-1m2meeu-0"
|
|
51
|
-
})(["height:", ";width:", ";position:fixed;top:0;z-index:
|
|
53
|
+
})(["height:", ";width:", ";position:fixed;top:0;z-index:", ";overflow-y:scroll;"], function (props) {
|
|
52
54
|
return props.height;
|
|
53
55
|
}, function (props) {
|
|
54
56
|
return props.width;
|
|
55
|
-
});
|
|
57
|
+
}, _zIndex["default"].popup);
|
|
56
58
|
|
|
57
59
|
var MobileModal = /*#__PURE__*/function (_React$PureComponent) {
|
|
58
60
|
_inherits(MobileModal, _React$PureComponent);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/react-components",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.23.0-rc.0",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"repository": "https://github.com/twreporter/twreporter-npm-packages.git",
|
|
6
6
|
"author": "twreporter <developer@twreporter.org>",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"chromatic": "npx chromatic --exit-zero-on-changes"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@twreporter/core": "^1.
|
|
19
|
-
"@twreporter/redux": "^7.8.
|
|
18
|
+
"@twreporter/core": "^1.16.0-rc.0",
|
|
19
|
+
"@twreporter/redux": "^7.8.3-rc.1",
|
|
20
20
|
"fontfaceobserver-es": "^3.3.3",
|
|
21
21
|
"hoist-non-react-statics": "^2.3.1",
|
|
22
22
|
"lodash": "^4.0.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"react-dom": "^16.0.0",
|
|
52
52
|
"storybook": "^7.5.2"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "76700e4230dae55deb76524237315ef9c318b7e1"
|
|
55
55
|
}
|