carbon-addons-iot-react 4.1.20 → 4.1.22
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/css/carbon-addons-iot-react.css +8 -29
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/HotspotEditorModal/HotspotEditorModal.js +23 -5
- package/es/components/HotspotEditorModal/HotspotTextStyleTab/HotspotTextStyleTab.js +10 -4
- package/es/components/PageWizard/PageWizardStep/PageWizardStep.js +7 -4
- package/lib/components/CardEditor/CardEditForm/CardEditFormItems/ImageCardFormItems/ImageCardFormContent.js +1 -1
- package/lib/components/HotspotEditorModal/HotspotEditorModal.js +25 -4
- package/lib/components/HotspotEditorModal/HotspotTextStyleTab/HotspotTextStyleTab.js +9 -3
- package/lib/components/PageWizard/PageWizardStep/PageWizardStep.js +7 -4
- package/lib/css/carbon-addons-iot-react.css +8 -29
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/HotspotEditorModal/HotspotTextStyleTab/_hotspot-text-style-tab.scss +0 -8
- package/lib/scss/components/PageWizard/_page-wizard.scss +8 -5
- package/package.json +2 -2
- package/scss/components/HotspotEditorModal/HotspotTextStyleTab/_hotspot-text-style-tab.scss +0 -8
- package/scss/components/PageWizard/_page-wizard.scss +8 -5
- package/umd/carbon-addons-iot-react.js +198 -172
|
@@ -7274,30 +7274,6 @@ html[dir=rtl] .cds--list-box__label .iot--color-dropdown__item {
|
|
|
7274
7274
|
padding-right: 5rem;
|
|
7275
7275
|
background: var(--cds-field-02, #f4f4f4);
|
|
7276
7276
|
}
|
|
7277
|
-
.iot--hotspot-text-style-tab__text-style button:first-of-type,
|
|
7278
|
-
.iot--hotspot-text-style-tab__text-style button:last-of-type {
|
|
7279
|
-
border-radius: 0;
|
|
7280
|
-
}
|
|
7281
|
-
.iot--hotspot-text-style-tab__text-style button:first-of-type {
|
|
7282
|
-
border-top-left-radius: 5px;
|
|
7283
|
-
border-bottom-left-radius: 5px;
|
|
7284
|
-
}
|
|
7285
|
-
.iot--hotspot-text-style-tab__text-style button:last-of-type {
|
|
7286
|
-
border-top-right-radius: 5px;
|
|
7287
|
-
border-bottom-right-radius: 5px;
|
|
7288
|
-
}
|
|
7289
|
-
html[dir=rtl] .iot--hotspot-text-style-tab__text-style button:first-of-type,
|
|
7290
|
-
html[dir=rtl] .iot--hotspot-text-style-tab__text-style button:last-of-type {
|
|
7291
|
-
border-radius: 0;
|
|
7292
|
-
}
|
|
7293
|
-
html[dir=rtl] .iot--hotspot-text-style-tab__text-style button:first-of-type {
|
|
7294
|
-
border-top-right-radius: 5px;
|
|
7295
|
-
border-bottom-right-radius: 5px;
|
|
7296
|
-
}
|
|
7297
|
-
html[dir=rtl] .iot--hotspot-text-style-tab__text-style button:last-of-type {
|
|
7298
|
-
border-top-left-radius: 5px;
|
|
7299
|
-
border-bottom-left-radius: 5px;
|
|
7300
|
-
}
|
|
7301
7277
|
.iot--hotspot-text-style-tab__dropdown {
|
|
7302
7278
|
width: 100%;
|
|
7303
7279
|
}
|
|
@@ -30881,6 +30857,7 @@ html[dir=rtl] .cds--number .cds--number__controls {
|
|
|
30881
30857
|
margin-right: 1rem;
|
|
30882
30858
|
}
|
|
30883
30859
|
.iot--page-wizard--content--actions--sticky {
|
|
30860
|
+
display: flex;
|
|
30884
30861
|
position: fixed;
|
|
30885
30862
|
bottom: 0;
|
|
30886
30863
|
left: 0;
|
|
@@ -30892,13 +30869,15 @@ html[dir=rtl] .cds--number .cds--number__controls {
|
|
|
30892
30869
|
.iot--page-wizard--content--actions--sticky .cds--btn {
|
|
30893
30870
|
margin-right: 1rem;
|
|
30894
30871
|
}
|
|
30895
|
-
.iot--page-wizard--content--
|
|
30896
|
-
display: flex;
|
|
30897
|
-
}
|
|
30898
|
-
.iot--page-wizard--content--after-footer--content {
|
|
30872
|
+
.iot--page-wizard--content--footer {
|
|
30899
30873
|
display: flex;
|
|
30900
|
-
width: 100%;
|
|
30901
30874
|
align-items: center;
|
|
30875
|
+
}
|
|
30876
|
+
.iot--page-wizard--content--footer--before--content {
|
|
30877
|
+
flex: 1;
|
|
30878
|
+
justify-content: flex-start;
|
|
30879
|
+
}
|
|
30880
|
+
.iot--page-wizard--content--footer--after--content {
|
|
30902
30881
|
justify-content: flex-end;
|
|
30903
30882
|
}
|
|
30904
30883
|
.iot--page-wizard--inline-notificaton {
|