@iobroker/adapter-react-v5 8.2.5 → 8.2.7

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/README.md CHANGED
@@ -690,7 +690,10 @@ You can find the migration instructions:
690
690
  -->
691
691
 
692
692
  ## Changelog
693
- ### 8.2.5 (2026-05-24)
693
+ ### 8.2.7 (2026-05-29)
694
+ - (@GermanBluefox) Updated loader
695
+
696
+ ### 8.2.6 (2026-05-25)
694
697
  - (@GermanBluefox) Updated loader
695
698
 
696
699
  ### 8.2.4 (2026-05-15)
@@ -2971,7 +2971,12 @@ export class ObjectBrowserClass extends Component {
2971
2971
  // <IconEdit className="copyButton" style={{{ ...styles.cellButtonsValueButton, styles.cellButtonsValueButtonEdit)} key="ce" />
2972
2972
  info = item.data.state;
2973
2973
  }
2974
- info.style = getValueStyle({ state, isExpertMode: this.state.filter.expertMode, isButton: item.data.button });
2974
+ info.style = getValueStyle({
2975
+ state,
2976
+ isExpertMode: this.state.filter.expertMode,
2977
+ isButton: item.data.button,
2978
+ nonAckColor: this.props.theme.palette.nonAck,
2979
+ });
2975
2980
  let val = info.valTextRx;
2976
2981
  if (!this.state.filter.expertMode) {
2977
2982
  if (item.data.button) {