carbon-addons-iot-react 2.151.0-next.1 → 2.151.0-next.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,23 @@
|
|
|
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
|
+
# [2.151.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.151.0-next.1...v2.151.0-next.2) (2022-07-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **emptytable:** added unique id ([ac363fa](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/ac363fa35fafa70f47623ce4279d86f0e51a2fac))
|
|
12
|
+
* **emptytable:** update tests ([4b03f88](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/4b03f881148008fe3b86b952c7b8c2749e5b1ae9))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Reverts
|
|
16
|
+
|
|
17
|
+
* Revert "remove conflicting id from empty tables" ([0dec1cd](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0dec1cd92a806ac2c0a67b766790dd37b9cf2797))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
# [2.151.0-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.151.0-next.0...v2.151.0-next.1) (2022-07-26)
|
|
7
24
|
|
|
8
25
|
|
|
@@ -43,7 +43,7 @@ var EmptyTable = function EmptyTable(_ref) {
|
|
|
43
43
|
testID = _ref.testID,
|
|
44
44
|
testId = _ref.testId;
|
|
45
45
|
return /*#__PURE__*/React__default.createElement(TableBody, {
|
|
46
|
-
id: id // TODO: remove deprecated 'testID' in v3
|
|
46
|
+
id: "".concat(id, "-empty-table") // TODO: remove deprecated 'testID' in v3
|
|
47
47
|
,
|
|
48
48
|
"data-testid": testID || testId
|
|
49
49
|
}, /*#__PURE__*/React__default.createElement(TableRow, {
|
|
@@ -50,7 +50,7 @@ var EmptyTable = function EmptyTable(_ref) {
|
|
|
50
50
|
testID = _ref.testID,
|
|
51
51
|
testId = _ref.testId;
|
|
52
52
|
return /*#__PURE__*/React__default['default'].createElement(carbonComponentsReact.TableBody, {
|
|
53
|
-
id: id // TODO: remove deprecated 'testID' in v3
|
|
53
|
+
id: "".concat(id, "-empty-table") // TODO: remove deprecated 'testID' in v3
|
|
54
54
|
,
|
|
55
55
|
"data-testid": testID || testId
|
|
56
56
|
}, /*#__PURE__*/React__default['default'].createElement(carbonComponentsReact.TableRow, {
|
package/package.json
CHANGED
|
@@ -340,10 +340,10 @@
|
|
|
340
340
|
"whatwg-fetch": "^3.0.0"
|
|
341
341
|
},
|
|
342
342
|
"sideEffects": false,
|
|
343
|
-
"version": "2.151.0-next.
|
|
343
|
+
"version": "2.151.0-next.2",
|
|
344
344
|
"resolutions": {
|
|
345
345
|
"chokidar": "3.3.1",
|
|
346
346
|
"react-grid-layout": "1.2.2"
|
|
347
347
|
},
|
|
348
|
-
"gitHead": "
|
|
348
|
+
"gitHead": "c7ec1586ce08abb6a598ca6d4a5a92bbfca7694e"
|
|
349
349
|
}
|
|
@@ -18640,7 +18640,7 @@
|
|
|
18640
18640
|
testID = _ref.testID,
|
|
18641
18641
|
testId = _ref.testId;
|
|
18642
18642
|
return /*#__PURE__*/React__default['default'].createElement(carbonComponentsReact.TableBody, {
|
|
18643
|
-
id: id // TODO: remove deprecated 'testID' in v3
|
|
18643
|
+
id: "".concat(id, "-empty-table") // TODO: remove deprecated 'testID' in v3
|
|
18644
18644
|
,
|
|
18645
18645
|
"data-testid": testID || testId
|
|
18646
18646
|
}, /*#__PURE__*/React__default['default'].createElement(carbonComponentsReact.TableRow, {
|