@carbon/ibm-products 1.44.0 → 1.44.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/es/components/Tearsheet/Tearsheet.js +4 -0
- package/es/components/Tearsheet/TearsheetNarrow.js +4 -0
- package/es/components/Tearsheet/TearsheetShell.js +1 -1
- package/lib/components/Tearsheet/Tearsheet.js +4 -0
- package/lib/components/Tearsheet/TearsheetNarrow.js +4 -0
- package/lib/components/Tearsheet/TearsheetShell.js +1 -1
- package/package.json +2 -2
|
@@ -175,6 +175,10 @@ Tearsheet.propTypes = _objectSpread({
|
|
|
175
175
|
* Specifies whether the tearsheet is currently open.
|
|
176
176
|
*/
|
|
177
177
|
open: PropTypes.bool,
|
|
178
|
+
/**
|
|
179
|
+
* The DOM node the tearsheet should be rendered within. Defaults to document.body.
|
|
180
|
+
*/
|
|
181
|
+
portalTarget: PropTypes.node,
|
|
178
182
|
/**
|
|
179
183
|
* The main title of the tearsheet, displayed in the header area.
|
|
180
184
|
*/
|
|
@@ -141,6 +141,10 @@ TearsheetNarrow.propTypes = _objectSpread({
|
|
|
141
141
|
* Specifies whether the tearsheet is currently open.
|
|
142
142
|
*/
|
|
143
143
|
open: PropTypes.bool,
|
|
144
|
+
/**
|
|
145
|
+
* The DOM node the tearsheet should be rendered within. Defaults to document.body.
|
|
146
|
+
*/
|
|
147
|
+
portalTarget: PropTypes.node,
|
|
144
148
|
/**
|
|
145
149
|
* The main title of the tearsheet, displayed in the header area.
|
|
146
150
|
*/
|
|
@@ -388,7 +388,7 @@ TearsheetShell.propTypes = _objectSpread({
|
|
|
388
388
|
*/
|
|
389
389
|
open: PropTypes.bool,
|
|
390
390
|
/**
|
|
391
|
-
*
|
|
391
|
+
* The DOM node the tearsheet should be rendered within. Defaults to document.body.
|
|
392
392
|
*/
|
|
393
393
|
portalTarget: PropTypes.node,
|
|
394
394
|
/**
|
|
@@ -172,6 +172,10 @@ Tearsheet.propTypes = _objectSpread({
|
|
|
172
172
|
* Specifies whether the tearsheet is currently open.
|
|
173
173
|
*/
|
|
174
174
|
open: _propTypes.default.bool,
|
|
175
|
+
/**
|
|
176
|
+
* The DOM node the tearsheet should be rendered within. Defaults to document.body.
|
|
177
|
+
*/
|
|
178
|
+
portalTarget: _propTypes.default.node,
|
|
175
179
|
/**
|
|
176
180
|
* The main title of the tearsheet, displayed in the header area.
|
|
177
181
|
*/
|
|
@@ -138,6 +138,10 @@ TearsheetNarrow.propTypes = _objectSpread({
|
|
|
138
138
|
* Specifies whether the tearsheet is currently open.
|
|
139
139
|
*/
|
|
140
140
|
open: _propTypes.default.bool,
|
|
141
|
+
/**
|
|
142
|
+
* The DOM node the tearsheet should be rendered within. Defaults to document.body.
|
|
143
|
+
*/
|
|
144
|
+
portalTarget: _propTypes.default.node,
|
|
141
145
|
/**
|
|
142
146
|
* The main title of the tearsheet, displayed in the header area.
|
|
143
147
|
*/
|
|
@@ -390,7 +390,7 @@ TearsheetShell.propTypes = _objectSpread({
|
|
|
390
390
|
*/
|
|
391
391
|
open: _propTypes.default.bool,
|
|
392
392
|
/**
|
|
393
|
-
*
|
|
393
|
+
* The DOM node the tearsheet should be rendered within. Defaults to document.body.
|
|
394
394
|
*/
|
|
395
395
|
portalTarget: _propTypes.default.node,
|
|
396
396
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/ibm-products",
|
|
3
3
|
"description": "Carbon for IBM Products",
|
|
4
|
-
"version": "1.44.
|
|
4
|
+
"version": "1.44.1",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"module": "es/index.js",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"react": "^16.8.6 || ^17.0.1",
|
|
96
96
|
"react-dom": "^16.8.6 || ^17.0.1"
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "fc263168325ad92efaa868582b43760e317d9a33"
|
|
99
99
|
}
|