carbon-addons-iot-react 2.149.0-next.13 → 2.149.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.
Files changed (25) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/css/carbon-addons-iot-react.css +11 -12
  3. package/css/carbon-addons-iot-react.css.map +1 -1
  4. package/es/components/Header/HeaderAction/HeaderAction.js +4 -1
  5. package/es/components/SuiteHeader/SuiteHeader.js +20 -11
  6. package/es/components/SuiteHeader/SuiteHeaderAppSwitcher/SuiteHeaderAppSwitcher.js +42 -28
  7. package/es/components/SuiteHeader/SuiteHeaderProfile/SuiteHeaderProfile.js +20 -4
  8. package/es/components/Table/Table.js +1 -0
  9. package/es/components/Table/TableSkeletonWithHeaders/TableSkeletonWithHeaders.js +16 -2
  10. package/es/components/WizardInline/WizardFooter/WizardFooter.js +5 -7
  11. package/lib/components/Header/HeaderAction/HeaderAction.js +4 -1
  12. package/lib/components/SuiteHeader/SuiteHeader.js +20 -11
  13. package/lib/components/SuiteHeader/SuiteHeaderAppSwitcher/SuiteHeaderAppSwitcher.js +42 -28
  14. package/lib/components/SuiteHeader/SuiteHeaderProfile/SuiteHeaderProfile.js +20 -4
  15. package/lib/components/Table/Table.js +1 -0
  16. package/lib/components/Table/TableSkeletonWithHeaders/TableSkeletonWithHeaders.js +16 -2
  17. package/lib/components/WizardInline/WizardFooter/WizardFooter.js +6 -8
  18. package/lib/css/carbon-addons-iot-react.css +11 -12
  19. package/lib/css/carbon-addons-iot-react.css.map +1 -1
  20. package/lib/scss/components/SuiteHeader/_suite-header.scss +4 -13
  21. package/lib/scss/components/WizardInline/_wizard-inline.scss +5 -0
  22. package/package.json +2 -2
  23. package/scss/components/SuiteHeader/_suite-header.scss +4 -13
  24. package/scss/components/WizardInline/_wizard-inline.scss +5 -0
  25. package/umd/carbon-addons-iot-react.js +348 -294
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
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.0-next.14](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.13...v2.149.0-next.14) (2022-02-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **SuiteHeader:** Making all actions in SuiteHeader (but the Logout action) become html `<a>` elements so that basic browser workflow works as expected ("open in a new tab" context menu option, ctrl+click to force open in new tab). ([0f4b085](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/0f4b0852c71e6cc7656034bd670829b94e829ab6))
12
+ * **SuiteHeaderAppSwitcher:** Fixing the styling so that it looks the way it was before the changes to convert buttons to anchor links in the SuiteHeader. ([322422d](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/322422d89e156e8cb16ab41da416ac6b5b3e0f8c))
13
+ * **table:** show correct number of columns in tableskeleton ([74e8a8a](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/74e8a8a2f8bde3a3d725e8115b821bb4098e3db6)), closes [#3323](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3323)
14
+
15
+
16
+
17
+
18
+
6
19
  # [2.149.0-next.13](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.149.0-next.12...v2.149.0-next.13) (2022-02-28)
7
20
 
8
21
 
@@ -35748,7 +35748,8 @@ html[dir=rtl] .iot--side-nav__item--depth-3 .bx--side-nav__link-text {
35748
35748
  .iot--suite-header-app-switcher li {
35749
35749
  width: 100%;
35750
35750
  }
35751
- .iot--suite-header-app-switcher li button {
35751
+ .iot--suite-header-app-switcher li button,
35752
+ .iot--suite-header-app-switcher li a {
35752
35753
  margin: 1rem;
35753
35754
  width: calc(100% - 32px);
35754
35755
  min-height: 40px;
@@ -35765,19 +35766,10 @@ html[dir=rtl] .iot--side-nav__item--depth-3 .bx--side-nav__link-text {
35765
35766
  color: #161616;
35766
35767
  }
35767
35768
  .iot--suite-header-app-switcher a {
35768
- display: flex;
35769
35769
  align-items: center;
35770
- padding: 1rem;
35771
35770
  }
35772
35771
  .iot--suite-header-app-switcher--nav-link a {
35773
35772
  text-decoration: none;
35774
- color: #525252;
35775
- }
35776
- .iot--suite-header-app-switcher--nav-link a:hover {
35777
- background-color: #e5e5e5;
35778
- }
35779
- .iot--suite-header-app-switcher--nav-link a svg {
35780
- margin-right: 0.5rem;
35781
35773
  }
35782
35774
  .iot--suite-header-app-switcher--nav-link--loading {
35783
35775
  display: flex;
@@ -35800,7 +35792,8 @@ html[dir=rtl] .iot--side-nav__item--depth-3 .bx--side-nav__link-text {
35800
35792
  border-bottom: 1px solid #e0e0e0;
35801
35793
  margin: 0 1rem 0 1rem;
35802
35794
  }
35803
- .iot--suite-header-app-switcher--app-link button {
35795
+ .iot--suite-header-app-switcher--app-link button,
35796
+ .iot--suite-header-app-switcher--app-link a {
35804
35797
  font-size: 0.875rem;
35805
35798
  font-weight: 600;
35806
35799
  line-height: 1.28572;
@@ -35808,7 +35801,8 @@ html[dir=rtl] .iot--side-nav__item--depth-3 .bx--side-nav__link-text {
35808
35801
  text-decoration: none;
35809
35802
  color: #525252;
35810
35803
  }
35811
- .iot--suite-header-app-switcher--app-link button:hover {
35804
+ .iot--suite-header-app-switcher--app-link button:hover,
35805
+ .iot--suite-header-app-switcher--app-link a:hover {
35812
35806
  background-color: #e5e5e5;
35813
35807
  }
35814
35808
  .iot--suite-header-app-switcher--no-app {
@@ -38210,6 +38204,11 @@ html[dir=rtl] .iot--value-card__value-renderer--value.iot--btn {
38210
38204
  padding-left: 1rem;
38211
38205
  }
38212
38206
 
38207
+ .iot--wizard-footer__buttons {
38208
+ display: flex;
38209
+ margin: auto 0 auto auto;
38210
+ }
38211
+
38213
38212
  .iot--wizard-modal .bx--modal-container {
38214
38213
  min-width: 410px;
38215
38214
  }