carbon-addons-iot-react 2.149.1-next.1 → 2.149.1-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 +11 -0
- package/css/carbon-addons-iot-react.css +1 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/CardEditor/CardEditForm/CardEditForm.js +10 -226
- package/es/components/CardEditor/CardEditor.js +182 -13
- package/lib/components/CardEditor/CardEditForm/CardEditForm.js +10 -232
- package/lib/components/CardEditor/CardEditor.js +187 -12
- package/lib/components/DashboardEditor/DashboardEditor.js +1 -1
- package/lib/css/carbon-addons-iot-react.css +1 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/index.js +1 -1
- package/lib/scss/components/CardEditor/CardEditForm/_card-edit-form.scss +1 -0
- package/package.json +2 -2
- package/scss/components/CardEditor/CardEditForm/_card-edit-form.scss +1 -0
- package/umd/carbon-addons-iot-react.js +172 -218
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
|
+
## [2.149.1-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.1-next.1...v2.149.1-next.2) (2022-05-31)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **cardeditor:** fixed Open JSON editor button in config pane ([6280f4c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6280f4c73a7fa42e783ffa653ac8bb260877aefd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.149.1-next.1](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.1-next.0...v2.149.1-next.1) (2022-05-27)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package carbon-addons-iot-react
|
|
@@ -29606,6 +29606,7 @@ html[dir=rtl] .iot--card--header {
|
|
|
29606
29606
|
}
|
|
29607
29607
|
.iot--card-edit-form .bx--tab-content {
|
|
29608
29608
|
flex: 1;
|
|
29609
|
+
padding-bottom: 0;
|
|
29609
29610
|
}
|
|
29610
29611
|
.iot--card-edit-form .bx--tabs--scrollable__nav {
|
|
29611
29612
|
width: 100%;
|