carbon-addons-iot-react 2.154.0-next.2 → 2.154.0-next.4
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 +22 -0
- package/css/carbon-addons-iot-react.css +68 -0
- package/css/carbon-addons-iot-react.css.map +1 -1
- package/es/components/CardCodeEditor/CardCodeEditor.js +6 -5
- package/es/components/Table/Table.js +5 -2
- package/es/components/Table/TableHead/TableHead.js +101 -8
- package/es/components/Table/TableHead/columnWidthUtilityFunctions.js +5 -3
- package/lib/components/CardCodeEditor/CardCodeEditor.js +6 -5
- package/lib/components/Table/Table.js +5 -2
- package/lib/components/Table/TableHead/TableHead.js +102 -8
- package/lib/components/Table/TableHead/columnWidthUtilityFunctions.js +5 -3
- package/lib/css/carbon-addons-iot-react.css +68 -0
- package/lib/css/carbon-addons-iot-react.css.map +1 -1
- package/lib/scss/components/CodeEditor/_code-editor.scss +73 -0
- package/lib/scss/styles.scss +1 -0
- package/package.json +3 -3
- package/scss/components/CodeEditor/_code-editor.scss +73 -0
- package/scss/styles.scss +1 -0
- package/umd/carbon-addons-iot-react.js +2059 -2258
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
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.154.0-next.4](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.154.0-next.3...v2.154.0-next.4) (2023-10-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **codeeditor:** New Code editor component ([#3830](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3830)) ([bc53037](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/bc53037db0c7751bba8286f4eb27ad03e81cd662))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [2.154.0-next.3](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.154.0-next.2...v2.154.0-next.3) (2023-10-18)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **table:** enable percentage-based column width for the table header ([#3831](https://github.com/carbon-design-system/carbon-addons-iot-react/issues/3831)) ([6dd5d97](https://github.com/carbon-design-system/carbon-addons-iot-react/commit/6dd5d97af83286a7d42a8f60d3ded51727c7c89e))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.154.0-next.2](https://github.com/carbon-design-system/carbon-addons-iot-react/compare/v2.154.0-next.1...v2.154.0-next.2) (2023-10-13)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -39811,4 +39811,72 @@ html[dir=rtl] .iot--wizard-modal .iot--wizard-modal__content {
|
|
|
39811
39811
|
-webkit-line-clamp: 1;
|
|
39812
39812
|
}
|
|
39813
39813
|
}
|
|
39814
|
+
.iot--code-editor-container {
|
|
39815
|
+
background-color: #ffffff;
|
|
39816
|
+
height: 100%;
|
|
39817
|
+
overflow: hidden;
|
|
39818
|
+
min-height: 3.5rem;
|
|
39819
|
+
padding-top: 1rem;
|
|
39820
|
+
}
|
|
39821
|
+
.iot--code-editor-container--light {
|
|
39822
|
+
background-color: #f4f4f4;
|
|
39823
|
+
}
|
|
39824
|
+
.iot--code-editor-container--disabled {
|
|
39825
|
+
background-color: #c6c6c6;
|
|
39826
|
+
}
|
|
39827
|
+
.iot--code-editor-container--disabled .view-lines.monaco-mouse-cursor-text {
|
|
39828
|
+
background-color: #c6c6c6;
|
|
39829
|
+
}
|
|
39830
|
+
.iot--code-editor-container--disabled .view-lines.monaco-mouse-cursor-text > div > span > * {
|
|
39831
|
+
color: #8d8d8d;
|
|
39832
|
+
}
|
|
39833
|
+
.iot--code-editor-wrapper {
|
|
39834
|
+
position: relative;
|
|
39835
|
+
height: 100%;
|
|
39836
|
+
}
|
|
39837
|
+
.iot--code-editor-wrapper .monaco-editor {
|
|
39838
|
+
background-color: transparent;
|
|
39839
|
+
height: 100%;
|
|
39840
|
+
}
|
|
39841
|
+
.iot--code-editor-wrapper .monaco-editor .margin,
|
|
39842
|
+
.iot--code-editor-wrapper .monaco-editor-background,
|
|
39843
|
+
.iot--code-editor-wrapper .monaco-editor .inputarea.ime-input {
|
|
39844
|
+
background-color: transparent;
|
|
39845
|
+
}
|
|
39846
|
+
.iot--code-editor-copy {
|
|
39847
|
+
background-color: #ffffff;
|
|
39848
|
+
position: absolute;
|
|
39849
|
+
inset-inline-start: calc(100% - 2.5rem);
|
|
39850
|
+
top: 0;
|
|
39851
|
+
z-index: 1;
|
|
39852
|
+
}
|
|
39853
|
+
.iot--code-editor-copy--light {
|
|
39854
|
+
background-color: #f4f4f4;
|
|
39855
|
+
}
|
|
39856
|
+
.iot--code-editor-copy--disabled {
|
|
39857
|
+
cursor: not-allowed;
|
|
39858
|
+
background-color: #c6c6c6;
|
|
39859
|
+
}
|
|
39860
|
+
.iot--code-editor-copy--disabled:hover {
|
|
39861
|
+
background-color: #c6c6c6;
|
|
39862
|
+
}
|
|
39863
|
+
.iot--code-editor-copy--disabled > svg {
|
|
39864
|
+
fill: #8d8d8d;
|
|
39865
|
+
}
|
|
39866
|
+
.iot--code-editor-upload.bx--btn.bx--btn--icon-only {
|
|
39867
|
+
background-color: #ffffff;
|
|
39868
|
+
position: absolute;
|
|
39869
|
+
inset-inline-start: calc(100% - 5.03rem);
|
|
39870
|
+
top: 0;
|
|
39871
|
+
z-index: 1;
|
|
39872
|
+
}
|
|
39873
|
+
.iot--code-editor-upload--light.bx--btn.bx--btn--icon-only {
|
|
39874
|
+
background-color: #f4f4f4;
|
|
39875
|
+
}
|
|
39876
|
+
.iot--code-editor-upload--light.bx--btn.bx--btn--icon-only:hover {
|
|
39877
|
+
background-color: #e5e5e5;
|
|
39878
|
+
}
|
|
39879
|
+
.iot--code-editor-upload--disabled.bx--btn.bx--btn--icon-only {
|
|
39880
|
+
background-color: #c6c6c6;
|
|
39881
|
+
}
|
|
39814
39882
|
/*# sourceMappingURL=carbon-addons-iot-react.css.map */
|