@ledvance/group-ui-biz-bundle 1.0.141 → 1.0.143

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 (49) hide show
  1. package/package.json +1 -1
  2. package/src/modules/biorhythm/BiorhythmDetailPage.tsx +8 -2
  3. package/src/modules/biorhythm/BiorhythmPage.tsx +4 -4
  4. package/src/modules/biorhythm/IconSelect.tsx +92 -29
  5. package/src/modules/diyScene/DiySceneActions.ts +3 -0
  6. package/src/modules/diyScene/DiySceneEditorPage.tsx +1 -1
  7. package/src/modules/energyConsumption/EnergyConsumptionActions.ts +1 -1
  8. package/src/modules/energyConsumption/EnergyConsumptionChart/ChartSection.tsx +61 -69
  9. package/src/modules/energyConsumption/EnergyConsumptionChart/LandscapeView.tsx +1 -0
  10. package/src/modules/energyConsumption/EnergyConsumptionChart/styles.ts +8 -4
  11. package/src/modules/energyConsumption/EnergyConsumptionChart/useEnergyData.ts +4 -2
  12. package/src/modules/energyConsumption/component/DateSwitch.tsx +10 -8
  13. package/src/modules/energyConsumption/component/NewBarChart.tsx +23 -3
  14. package/src/modules/fixedTimeForPlug/FixedTimeForPlugDetailPage.tsx +1 -1
  15. package/src/modules/fixedTimeForPlug/ItemCard.tsx +2 -2
  16. package/src/modules/fixedTimeForPlug/Summary.tsx +1 -1
  17. package/src/modules/fixedTimingForLight/FixedTimingForLightDetailPage.tsx +1 -1
  18. package/src/modules/fixedTimingForLight/ItemCard.tsx +2 -2
  19. package/src/modules/fixedTimingForLight/Summary.tsx +1 -1
  20. package/src/modules/flags/FlagEditPage.tsx +2 -2
  21. package/src/modules/flags/FlagInfo.tsx +1180 -1174
  22. package/src/modules/flags/FlagItem.tsx +1 -1
  23. package/src/modules/lightMode/LightModePage.tsx +1 -1
  24. package/src/modules/mood/DynamicMoodEditorPage.tsx +2 -2
  25. package/src/modules/mood/MoodItem.tsx +2 -2
  26. package/src/modules/mood/RecommendMoodItem.tsx +1 -1
  27. package/src/modules/mood/StaticMoodEditorPage.tsx +2 -2
  28. package/src/modules/mood_new/DynamicMoodEditorPage.tsx +2 -2
  29. package/src/modules/mood_new/MixDynamicMoodEditor.tsx +2 -2
  30. package/src/modules/mood_new/MoodItem.tsx +2 -2
  31. package/src/modules/mood_new/RecommendMoodItem.tsx +1 -1
  32. package/src/modules/mood_new/StaticMoodEditorPage.tsx +1 -1
  33. package/src/modules/music/MusicPage.tsx +1 -1
  34. package/src/modules/overchargeSwitch/OverchargeSwitchPage.tsx +1 -1
  35. package/src/modules/powerOnBehavior/LightBehaviorPage.tsx +2 -2
  36. package/src/modules/randomTimeForPlug/ItemCard.tsx +2 -2
  37. package/src/modules/randomTimeForPlug/RandomTimeForPlugDetailPage.tsx +1 -1
  38. package/src/modules/randomTimeForPlug/Summary.tsx +1 -1
  39. package/src/modules/randomTimingForLight/ItemCard.tsx +2 -2
  40. package/src/modules/randomTimingForLight/RandomTimingForLightDetailPage.tsx +1 -1
  41. package/src/modules/randomTimingForLight/Summary.tsx +1 -1
  42. package/src/modules/remoteSwitch/RemoteSwitchPage.tsx +1 -1
  43. package/src/modules/select/SelectPage.tsx +3 -3
  44. package/src/modules/sleepWakeUp/SleepWakeUpDetailPage.tsx +1 -1
  45. package/src/modules/sleepWakeUp/SleepWakeUpPage.tsx +4 -4
  46. package/src/modules/timeSchedule/TimeScheduleDetailPage.tsx +1 -1
  47. package/src/modules/timeSchedule/components/ScheduleCard.tsx +3 -3
  48. package/src/modules/timeSchedule/components/Summary.tsx +1 -1
  49. package/src/modules/timer/TimerPage.tsx +3 -3
@@ -28,7 +28,7 @@ const Summary = (props: SummaryProps) => {
28
28
  color: props.theme?.global.fontColor,
29
29
  fontSize: cx(16),
30
30
  fontWeight: 'bold',
31
- fontFamily: 'helvetica_neue_lt_std_bd',
31
+ // fontFamily: 'helvetica_neue_lt_std_bd',
32
32
  },
33
33
  summaryContainer: {
34
34
  flex: 1,
@@ -176,7 +176,7 @@ const FixedTimingForLightDetailPage = (props: { theme?: ThemeType }) => {
176
176
  color: props.theme?.global.fontColor,
177
177
  fontSize: cx(16),
178
178
  fontWeight: 'bold',
179
- fontFamily: 'helvetica_neue_lt_std_bd',
179
+ // fontFamily: 'helvetica_neue_lt_std_bd',
180
180
  },
181
181
  applyContent: {
182
182
  backgroundColor: props.theme?.container.background,
@@ -40,13 +40,13 @@ const ItemCard = (props: ItemCardProps) => {
40
40
  color: props.theme?.global.fontColor,
41
41
  fontSize: cx(16),
42
42
  fontWeight: 'bold',
43
- fontFamily: 'helvetica_neue_lt_std_bd',
43
+ // fontFamily: 'helvetica_neue_lt_std_bd',
44
44
  },
45
45
  switchBtn: {},
46
46
  loopText: {
47
47
  color: props.theme?.global.fontColor,
48
48
  fontSize: cx(14),
49
- fontFamily: 'helvetica_neue_lt_std_roman',
49
+ // fontFamily: 'helvetica_neue_lt_std_roman',
50
50
  },
51
51
  })
52
52
 
@@ -28,7 +28,7 @@ const Summary = (props: SummaryProps) => {
28
28
  color: props.theme?.global.fontColor,
29
29
  fontSize: cx(16),
30
30
  fontWeight: 'bold',
31
- fontFamily: 'helvetica_neue_lt_std_bd',
31
+ // fontFamily: 'helvetica_neue_lt_std_bd',
32
32
  },
33
33
  summaryContainer: {
34
34
  flex: 1,
@@ -104,7 +104,7 @@ const FlagEditPage = (props: { theme?: ThemeType }) => {
104
104
  light: {
105
105
  color: props.theme?.global.fontColor,
106
106
  fontSize: cx(18),
107
- fontFamily: 'helvetica_neue_lt_std_bd',
107
+ // fontFamily: 'helvetica_neue_lt_std_bd',
108
108
  },
109
109
  transitionMode: {
110
110
  marginHorizontal: cx(16),
@@ -172,7 +172,7 @@ const FlagEditPage = (props: { theme?: ThemeType }) => {
172
172
  deleteBtnText: {
173
173
  color: props.theme?.button.fontColor,
174
174
  fontSize: cx(16),
175
- fontFamily: 'helvetica_neue_lt_std_bd',
175
+ // fontFamily: 'helvetica_neue_lt_std_bd',
176
176
  },
177
177
  })
178
178