carbon-addons-iot-react 2.151.0-next.13 → 2.151.0-next.14
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 +16 -0
- package/css/carbon-addons-iot-react.css +4 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/CardEditor/CardEditForm/CardEditForm.js +15 -8
- package/es/components/CardEditor/CardEditForm/CardEditFormContent.js +17 -10
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItemModal.js +78 -10
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormContent.js +17 -8
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/ImageCardFormItems/ImageCardFormContent.js +15 -8
- package/es/components/CardEditor/CardEditForm/CardEditFormItems/TableCardFormItems/TableCardFormContent.js +24 -10
- package/es/components/CardEditor/CardEditor.js +15 -7
- package/es/components/DashboardEditor/DashboardEditor.js +16 -11
- package/es/components/DashboardEditor/editorUtils.js +18 -5
- package/es/components/HotspotEditorModal/HotspotEditorDataSourceTab/HotspotEditorDataSourceTab.js +20 -13
- package/es/components/HotspotEditorModal/HotspotEditorModal.js +24 -17
- package/lib/components/CardEditor/CardEditForm/CardEditForm.js +14 -7
- package/lib/components/CardEditor/CardEditForm/CardEditFormContent.js +16 -9
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItemModal.js +76 -8
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/DataSeriesFormItems/DataSeriesFormContent.js +16 -7
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/ImageCardFormItems/ImageCardFormContent.js +14 -7
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/TableCardFormItems/TableCardFormContent.js +23 -9
- package/lib/components/CardEditor/CardEditor.js +15 -7
- package/lib/components/DashboardEditor/DashboardEditor.js +15 -10
- package/lib/components/DashboardEditor/editorUtils.js +18 -4
- package/lib/components/HotspotEditorModal/HotspotEditorDataSourceTab/HotspotEditorDataSourceTab.js +20 -13
- package/lib/components/HotspotEditorModal/HotspotEditorModal.js +23 -16
- package/lib/css/carbon-addons-iot-react.css +4 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/CardEditor/CardEditForm/_card-edit-form.scss +6 -0
- package/package.json +2 -2
- package/scss/components/CardEditor/CardEditForm/_card-edit-form.scss +6 -0
- package/umd/carbon-addons-iot-react.js +246 -97
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.14](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.151.0-next.13...v2.151.0-next.14) (2022-09-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* updating the scss ([6246fd6](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6246fd6eaeb325c699a6b6f7dfee50e841dd587f))
|
|
12
|
+
* **requested changes:** change request ([590854c](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/590854c887028221201d4afba3197c4bbf09ef84))
|
|
13
|
+
* change type to dataItemType ([157947d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/157947d9b93f6c61b094c032d80cba81c2fc4977))
|
|
14
|
+
* failing cypres test case ([8e105ac](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/8e105ac4fe9b6bf7b6af1dfeff37fddcb6d1a89c))
|
|
15
|
+
* update the snapshot ([d271f65](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/d271f65e2c0662e0fc2ecd6c97227409d32cb34c))
|
|
16
|
+
* **DataSeriesFormItemModal:** Added button and logic for dynamic aggregation dropdown ([b255076](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/b25507667ed2bbb5ad5cb2ef1c4bdd853d7cc079))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [2.151.0-next.13](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.151.0-next.12...v2.151.0-next.13) (2022-09-02)
|
|
7
23
|
|
|
8
24
|
|
|
@@ -29844,6 +29844,10 @@ div.iot--card-edit-form--data-item-list .iot--list-item--content--values--value_
|
|
|
29844
29844
|
padding-right: 4rem;
|
|
29845
29845
|
}
|
|
29846
29846
|
|
|
29847
|
+
.iot--add-aggregation__btn {
|
|
29848
|
+
margin-top: 1.5rem;
|
|
29849
|
+
}
|
|
29850
|
+
|
|
29847
29851
|
.iot--composed-modal {
|
|
29848
29852
|
/* support large modals for ll the sizes */
|
|
29849
29853
|
/* Needed for buttons when they're next to each other */
|