@ledvance/base 1.0.26 → 1.0.27

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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.0.26",
7
+ "version": "1.0.27",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -17,3 +17,4 @@ export declare class NativeApi {
17
17
  static putJson(deviceId: string, featureType: string, json: string): Promise<Result<any>>;
18
18
  static getJson(deviceId: string, featureType: string): Promise<Result<string>>;
19
19
  }
20
+ export declare const queryDpIds: (dpIds: string, deviceId: string) => Promise<unknown>;
package/src/api/native.ts CHANGED
@@ -1,5 +1,5 @@
1
- import {NativeModules} from 'react-native'
2
- import {NativeResult, Result} from '../models/modules/Result'
1
+ import { NativeModules } from 'react-native'
2
+ import { NativeResult, Result } from '../models/modules/Result'
3
3
 
4
4
  interface LDVDevicePanelManager {
5
5
  back: () => void
@@ -11,6 +11,7 @@ interface LDVDevicePanelManager {
11
11
  toDeviceSettingsPage: (deviceId: string) => void
12
12
  putJson: (deviceId: string, featureType: string, json: string, callback: (res: NativeResult<any>) => void) => void
13
13
  getJson: (deviceId: string, featureType: string, callback: (res: NativeResult<string>) => void) => void
14
+ getInitiativeQueryDpsInfoWithDpsArray: (dpIds: string, deviceId: string, callback: (res: NativeResult<string>) => void) => void
14
15
  }
15
16
 
16
17
  const devicePanel: LDVDevicePanelManager = NativeModules.LDVDevicePanelManager
@@ -31,7 +32,7 @@ const showObj = (objc) => {
31
32
  }
32
33
 
33
34
  const control = (devId, dps, callback) => {
34
- devicePanel.control({devId, dps: JSON.stringify(dps)}, res => {
35
+ devicePanel.control({ devId, dps: JSON.stringify(dps) }, res => {
35
36
  callback && callback(res)
36
37
  })
37
38
  }
@@ -41,7 +42,7 @@ const TASK = 'LDV_TY'
41
42
 
42
43
  const timerList = devId => {
43
44
  return new Promise((resolve, _reject) => {
44
- const params = {devId, task: TASK, action: 'list', bizType: 0}
45
+ const params = { devId, task: TASK, action: 'list', bizType: 0 }
45
46
  devicePanel.setTimer(params, res => {
46
47
  resolve(res)
47
48
  })
@@ -49,21 +50,21 @@ const timerList = devId => {
49
50
  }
50
51
 
51
52
  const addTimer = (devId, value, callback: any = undefined) => {
52
- const params = {devId, task: TASK, action: 'add', value, bizType: 0}
53
+ const params = { devId, task: TASK, action: 'add', value, bizType: 0 }
53
54
  devicePanel.setTimer(params, res => {
54
55
  callback && callback(res)
55
56
  })
56
57
  }
57
58
 
58
59
  const editTimer = (devId, value, callback: any = undefined) => {
59
- const params = {devId, task: TASK, action: 'update', value, bizType: 0}
60
+ const params = { devId, task: TASK, action: 'update', value, bizType: 0 }
60
61
  devicePanel.setTimer(params, res => {
61
62
  callback && callback(res)
62
63
  })
63
64
  }
64
65
 
65
66
  const deleteTimer = (devId, value, callback: any = undefined) => {
66
- const params = {devId, task: TASK, action: 'delete', value, bizType: 0}
67
+ const params = { devId, task: TASK, action: 'delete', value, bizType: 0 }
67
68
  devicePanel.setTimer(params, res => {
68
69
  callback && callback(res)
69
70
  })
@@ -81,7 +82,7 @@ function getAllTaskTimer(devId: string, type: number = 0, callback: ((res: Nativ
81
82
 
82
83
  const setDp = <T>(deviceId: string, key: string, value: any) => {
83
84
  return new Promise<NativeResult<T>>((resolve, _reject) => {
84
- control(deviceId, {[key]: value}, res => {
85
+ control(deviceId, { [key]: value }, res => {
85
86
  resolve(res)
86
87
  })
87
88
  })
@@ -207,4 +208,12 @@ export class NativeApi {
207
208
  })
208
209
  })
209
210
  }
211
+ }
212
+
213
+ export const queryDpIds = (dpIds: string, deviceId: string) => {
214
+ return new Promise((resolve, _reject) => {
215
+ devicePanel.getInitiativeQueryDpsInfoWithDpsArray(dpIds, deviceId, res => {
216
+ resolve(res)
217
+ })
218
+ })
210
219
  }
@@ -2,7 +2,7 @@ interface TopBarProps {
2
2
  title: string;
3
3
  onBackPress: () => void;
4
4
  rightButtonIcon?: any | {};
5
- rightButtonStyle?: any | undefined;
5
+ rightButtonStyle?: any | undefined | number;
6
6
  onRightButtonPress?: (() => void) | undefined;
7
7
  }
8
8
  declare const LDVTopBar: (props: TopBarProps) => JSX.Element;
@@ -10,11 +10,12 @@ interface TopBarProps {
10
10
  title: string,
11
11
  onBackPress: () => void,
12
12
  rightButtonIcon?: any | {},
13
- rightButtonStyle?: any | undefined,
13
+ rightButtonStyle?: any | undefined | number,
14
14
  onRightButtonPress?: (() => void) | undefined,
15
15
  }
16
16
 
17
17
  const LDVTopBar = (props: TopBarProps) => {
18
+ const icon = typeof props.rightButtonIcon === 'number' ? props.rightButtonIcon : { uri: props.rightButtonIcon }
18
19
  return (
19
20
  <View
20
21
  style={{
@@ -52,7 +53,7 @@ const LDVTopBar = (props: TopBarProps) => {
52
53
  { width: cx(28), height: cx(28) },
53
54
  props.rightButtonStyle,
54
55
  ]}
55
- source={{ uri: props.rightButtonIcon }} />
56
+ source={icon} />
56
57
  </View>
57
58
  </TouchableOpacity>
58
59
  }
@@ -1,6 +1,6 @@
1
1
  interface LdvTopNameProps {
2
2
  title: string;
3
- rightIcon?: string | undefined;
3
+ rightIcon?: string | undefined | number;
4
4
  rightIconClick?: () => void;
5
5
  }
6
6
  declare const LdvTopName: (props: LdvTopNameProps) => JSX.Element;
@@ -6,11 +6,12 @@ const cx = Utils.RatioUtils.convertX
6
6
 
7
7
  interface LdvTopNameProps {
8
8
  title: string,
9
- rightIcon?: string | undefined,
9
+ rightIcon?: string | undefined | number,
10
10
  rightIconClick?: () => void
11
11
  }
12
12
 
13
13
  const LdvTopName = (props: LdvTopNameProps) => {
14
+ const icon = typeof props.rightIcon === 'number' ? props.rightIcon : { uri: props.rightIcon }
14
15
  return (
15
16
  <View style={styles.container}>
16
17
  <View
@@ -25,7 +26,7 @@ const LdvTopName = (props: LdvTopNameProps) => {
25
26
  onPress={props.rightIconClick}>
26
27
  <Image
27
28
  style={{ width: cx(24), height: cx(24), tintColor: '#ff6600' }}
28
- source={{ uri: props.rightIcon }} />
29
+ source={icon} />
29
30
  </TouchableOpacity>}
30
31
  </View>
31
32
  </View>
@@ -348,6 +348,16 @@ declare const _default: {
348
348
  timer_ceiling_fan_switched_on_text: string;
349
349
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
350
350
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
351
+ ceiling_fan_tile_uvc_fan_speed: string;
352
+ routines_add_edit_name: string;
353
+ string_light_pp_dialog_sm_ed_headline_d: string;
354
+ strip_light_static_mood_edit_dialog_text: string;
355
+ power_strip_feature_2_socket_1_text_min_on: string;
356
+ power_strip_feature_2_socket_1_text_min_off: string;
357
+ power_strip_feature_2_socket_2_text_min_on: string;
358
+ power_strip_feature_2_socket_2_text_min_off: string;
359
+ power_strip_feature_2_socket_3_text_min_on: string;
360
+ power_strip_feature_2_socket_3_text_min_off: string;
351
361
  };
352
362
  cs: {
353
363
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -698,6 +708,16 @@ declare const _default: {
698
708
  timer_ceiling_fan_switched_on_text: string;
699
709
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
700
710
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
711
+ ceiling_fan_tile_uvc_fan_speed: string;
712
+ routines_add_edit_name: string;
713
+ string_light_pp_dialog_sm_ed_headline_d: string;
714
+ strip_light_static_mood_edit_dialog_text: string;
715
+ power_strip_feature_2_socket_1_text_min_on: string;
716
+ power_strip_feature_2_socket_1_text_min_off: string;
717
+ power_strip_feature_2_socket_2_text_min_on: string;
718
+ power_strip_feature_2_socket_2_text_min_off: string;
719
+ power_strip_feature_2_socket_3_text_min_on: string;
720
+ power_strip_feature_2_socket_3_text_min_off: string;
701
721
  };
702
722
  en: {
703
723
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -1048,6 +1068,16 @@ declare const _default: {
1048
1068
  timer_ceiling_fan_switched_on_text: string;
1049
1069
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
1050
1070
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
1071
+ ceiling_fan_tile_uvc_fan_speed: string;
1072
+ routines_add_edit_name: string;
1073
+ string_light_pp_dialog_sm_ed_headline_d: string;
1074
+ strip_light_static_mood_edit_dialog_text: string;
1075
+ power_strip_feature_2_socket_1_text_min_on: string;
1076
+ power_strip_feature_2_socket_1_text_min_off: string;
1077
+ power_strip_feature_2_socket_2_text_min_on: string;
1078
+ power_strip_feature_2_socket_2_text_min_off: string;
1079
+ power_strip_feature_2_socket_3_text_min_on: string;
1080
+ power_strip_feature_2_socket_3_text_min_off: string;
1051
1081
  };
1052
1082
  bg: {
1053
1083
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -1398,6 +1428,16 @@ declare const _default: {
1398
1428
  timer_ceiling_fan_switched_on_text: string;
1399
1429
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
1400
1430
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
1431
+ ceiling_fan_tile_uvc_fan_speed: string;
1432
+ routines_add_edit_name: string;
1433
+ string_light_pp_dialog_sm_ed_headline_d: string;
1434
+ strip_light_static_mood_edit_dialog_text: string;
1435
+ power_strip_feature_2_socket_1_text_min_on: string;
1436
+ power_strip_feature_2_socket_1_text_min_off: string;
1437
+ power_strip_feature_2_socket_2_text_min_on: string;
1438
+ power_strip_feature_2_socket_2_text_min_off: string;
1439
+ power_strip_feature_2_socket_3_text_min_on: string;
1440
+ power_strip_feature_2_socket_3_text_min_off: string;
1401
1441
  };
1402
1442
  da: {
1403
1443
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -1748,6 +1788,16 @@ declare const _default: {
1748
1788
  timer_ceiling_fan_switched_on_text: string;
1749
1789
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
1750
1790
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
1791
+ ceiling_fan_tile_uvc_fan_speed: string;
1792
+ routines_add_edit_name: string;
1793
+ string_light_pp_dialog_sm_ed_headline_d: string;
1794
+ strip_light_static_mood_edit_dialog_text: string;
1795
+ power_strip_feature_2_socket_1_text_min_on: string;
1796
+ power_strip_feature_2_socket_1_text_min_off: string;
1797
+ power_strip_feature_2_socket_2_text_min_on: string;
1798
+ power_strip_feature_2_socket_2_text_min_off: string;
1799
+ power_strip_feature_2_socket_3_text_min_on: string;
1800
+ power_strip_feature_2_socket_3_text_min_off: string;
1751
1801
  };
1752
1802
  de: {
1753
1803
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -2098,6 +2148,16 @@ declare const _default: {
2098
2148
  timer_ceiling_fan_switched_on_text: string;
2099
2149
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
2100
2150
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
2151
+ ceiling_fan_tile_uvc_fan_speed: string;
2152
+ routines_add_edit_name: string;
2153
+ string_light_pp_dialog_sm_ed_headline_d: string;
2154
+ strip_light_static_mood_edit_dialog_text: string;
2155
+ power_strip_feature_2_socket_1_text_min_on: string;
2156
+ power_strip_feature_2_socket_1_text_min_off: string;
2157
+ power_strip_feature_2_socket_2_text_min_on: string;
2158
+ power_strip_feature_2_socket_2_text_min_off: string;
2159
+ power_strip_feature_2_socket_3_text_min_on: string;
2160
+ power_strip_feature_2_socket_3_text_min_off: string;
2101
2161
  };
2102
2162
  el: {
2103
2163
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -2448,6 +2508,16 @@ declare const _default: {
2448
2508
  timer_ceiling_fan_switched_on_text: string;
2449
2509
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
2450
2510
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
2511
+ ceiling_fan_tile_uvc_fan_speed: string;
2512
+ routines_add_edit_name: string;
2513
+ string_light_pp_dialog_sm_ed_headline_d: string;
2514
+ strip_light_static_mood_edit_dialog_text: string;
2515
+ power_strip_feature_2_socket_1_text_min_on: string;
2516
+ power_strip_feature_2_socket_1_text_min_off: string;
2517
+ power_strip_feature_2_socket_2_text_min_on: string;
2518
+ power_strip_feature_2_socket_2_text_min_off: string;
2519
+ power_strip_feature_2_socket_3_text_min_on: string;
2520
+ power_strip_feature_2_socket_3_text_min_off: string;
2451
2521
  };
2452
2522
  es: {
2453
2523
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -2798,6 +2868,16 @@ declare const _default: {
2798
2868
  timer_ceiling_fan_switched_on_text: string;
2799
2869
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
2800
2870
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
2871
+ ceiling_fan_tile_uvc_fan_speed: string;
2872
+ routines_add_edit_name: string;
2873
+ string_light_pp_dialog_sm_ed_headline_d: string;
2874
+ strip_light_static_mood_edit_dialog_text: string;
2875
+ power_strip_feature_2_socket_1_text_min_on: string;
2876
+ power_strip_feature_2_socket_1_text_min_off: string;
2877
+ power_strip_feature_2_socket_2_text_min_on: string;
2878
+ power_strip_feature_2_socket_2_text_min_off: string;
2879
+ power_strip_feature_2_socket_3_text_min_on: string;
2880
+ power_strip_feature_2_socket_3_text_min_off: string;
2801
2881
  };
2802
2882
  et: {
2803
2883
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -3148,6 +3228,16 @@ declare const _default: {
3148
3228
  timer_ceiling_fan_switched_on_text: string;
3149
3229
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
3150
3230
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
3231
+ ceiling_fan_tile_uvc_fan_speed: string;
3232
+ routines_add_edit_name: string;
3233
+ string_light_pp_dialog_sm_ed_headline_d: string;
3234
+ strip_light_static_mood_edit_dialog_text: string;
3235
+ power_strip_feature_2_socket_1_text_min_on: string;
3236
+ power_strip_feature_2_socket_1_text_min_off: string;
3237
+ power_strip_feature_2_socket_2_text_min_on: string;
3238
+ power_strip_feature_2_socket_2_text_min_off: string;
3239
+ power_strip_feature_2_socket_3_text_min_on: string;
3240
+ power_strip_feature_2_socket_3_text_min_off: string;
3151
3241
  };
3152
3242
  fi: {
3153
3243
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -3498,6 +3588,16 @@ declare const _default: {
3498
3588
  timer_ceiling_fan_switched_on_text: string;
3499
3589
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
3500
3590
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
3591
+ ceiling_fan_tile_uvc_fan_speed: string;
3592
+ routines_add_edit_name: string;
3593
+ string_light_pp_dialog_sm_ed_headline_d: string;
3594
+ strip_light_static_mood_edit_dialog_text: string;
3595
+ power_strip_feature_2_socket_1_text_min_on: string;
3596
+ power_strip_feature_2_socket_1_text_min_off: string;
3597
+ power_strip_feature_2_socket_2_text_min_on: string;
3598
+ power_strip_feature_2_socket_2_text_min_off: string;
3599
+ power_strip_feature_2_socket_3_text_min_on: string;
3600
+ power_strip_feature_2_socket_3_text_min_off: string;
3501
3601
  };
3502
3602
  fr: {
3503
3603
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -3848,6 +3948,16 @@ declare const _default: {
3848
3948
  timer_ceiling_fan_switched_on_text: string;
3849
3949
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
3850
3950
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
3951
+ ceiling_fan_tile_uvc_fan_speed: string;
3952
+ routines_add_edit_name: string;
3953
+ string_light_pp_dialog_sm_ed_headline_d: string;
3954
+ strip_light_static_mood_edit_dialog_text: string;
3955
+ power_strip_feature_2_socket_1_text_min_on: string;
3956
+ power_strip_feature_2_socket_1_text_min_off: string;
3957
+ power_strip_feature_2_socket_2_text_min_on: string;
3958
+ power_strip_feature_2_socket_2_text_min_off: string;
3959
+ power_strip_feature_2_socket_3_text_min_on: string;
3960
+ power_strip_feature_2_socket_3_text_min_off: string;
3851
3961
  };
3852
3962
  hr: {
3853
3963
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -4198,6 +4308,16 @@ declare const _default: {
4198
4308
  timer_ceiling_fan_switched_on_text: string;
4199
4309
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
4200
4310
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
4311
+ ceiling_fan_tile_uvc_fan_speed: string;
4312
+ routines_add_edit_name: string;
4313
+ string_light_pp_dialog_sm_ed_headline_d: string;
4314
+ strip_light_static_mood_edit_dialog_text: string;
4315
+ power_strip_feature_2_socket_1_text_min_on: string;
4316
+ power_strip_feature_2_socket_1_text_min_off: string;
4317
+ power_strip_feature_2_socket_2_text_min_on: string;
4318
+ power_strip_feature_2_socket_2_text_min_off: string;
4319
+ power_strip_feature_2_socket_3_text_min_on: string;
4320
+ power_strip_feature_2_socket_3_text_min_off: string;
4201
4321
  };
4202
4322
  hu: {
4203
4323
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -4548,6 +4668,16 @@ declare const _default: {
4548
4668
  timer_ceiling_fan_switched_on_text: string;
4549
4669
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
4550
4670
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
4671
+ ceiling_fan_tile_uvc_fan_speed: string;
4672
+ routines_add_edit_name: string;
4673
+ string_light_pp_dialog_sm_ed_headline_d: string;
4674
+ strip_light_static_mood_edit_dialog_text: string;
4675
+ power_strip_feature_2_socket_1_text_min_on: string;
4676
+ power_strip_feature_2_socket_1_text_min_off: string;
4677
+ power_strip_feature_2_socket_2_text_min_on: string;
4678
+ power_strip_feature_2_socket_2_text_min_off: string;
4679
+ power_strip_feature_2_socket_3_text_min_on: string;
4680
+ power_strip_feature_2_socket_3_text_min_off: string;
4551
4681
  };
4552
4682
  it: {
4553
4683
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -4898,6 +5028,16 @@ declare const _default: {
4898
5028
  timer_ceiling_fan_switched_on_text: string;
4899
5029
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
4900
5030
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
5031
+ ceiling_fan_tile_uvc_fan_speed: string;
5032
+ routines_add_edit_name: string;
5033
+ string_light_pp_dialog_sm_ed_headline_d: string;
5034
+ strip_light_static_mood_edit_dialog_text: string;
5035
+ power_strip_feature_2_socket_1_text_min_on: string;
5036
+ power_strip_feature_2_socket_1_text_min_off: string;
5037
+ power_strip_feature_2_socket_2_text_min_on: string;
5038
+ power_strip_feature_2_socket_2_text_min_off: string;
5039
+ power_strip_feature_2_socket_3_text_min_on: string;
5040
+ power_strip_feature_2_socket_3_text_min_off: string;
4901
5041
  };
4902
5042
  ko: {
4903
5043
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -5248,6 +5388,16 @@ declare const _default: {
5248
5388
  timer_ceiling_fan_switched_on_text: string;
5249
5389
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
5250
5390
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
5391
+ ceiling_fan_tile_uvc_fan_speed: string;
5392
+ routines_add_edit_name: string;
5393
+ string_light_pp_dialog_sm_ed_headline_d: string;
5394
+ strip_light_static_mood_edit_dialog_text: string;
5395
+ power_strip_feature_2_socket_1_text_min_on: string;
5396
+ power_strip_feature_2_socket_1_text_min_off: string;
5397
+ power_strip_feature_2_socket_2_text_min_on: string;
5398
+ power_strip_feature_2_socket_2_text_min_off: string;
5399
+ power_strip_feature_2_socket_3_text_min_on: string;
5400
+ power_strip_feature_2_socket_3_text_min_off: string;
5251
5401
  };
5252
5402
  lt: {
5253
5403
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -5598,6 +5748,16 @@ declare const _default: {
5598
5748
  timer_ceiling_fan_switched_on_text: string;
5599
5749
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
5600
5750
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
5751
+ ceiling_fan_tile_uvc_fan_speed: string;
5752
+ routines_add_edit_name: string;
5753
+ string_light_pp_dialog_sm_ed_headline_d: string;
5754
+ strip_light_static_mood_edit_dialog_text: string;
5755
+ power_strip_feature_2_socket_1_text_min_on: string;
5756
+ power_strip_feature_2_socket_1_text_min_off: string;
5757
+ power_strip_feature_2_socket_2_text_min_on: string;
5758
+ power_strip_feature_2_socket_2_text_min_off: string;
5759
+ power_strip_feature_2_socket_3_text_min_on: string;
5760
+ power_strip_feature_2_socket_3_text_min_off: string;
5601
5761
  };
5602
5762
  lv: {
5603
5763
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -5948,6 +6108,16 @@ declare const _default: {
5948
6108
  timer_ceiling_fan_switched_on_text: string;
5949
6109
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
5950
6110
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
6111
+ ceiling_fan_tile_uvc_fan_speed: string;
6112
+ routines_add_edit_name: string;
6113
+ string_light_pp_dialog_sm_ed_headline_d: string;
6114
+ strip_light_static_mood_edit_dialog_text: string;
6115
+ power_strip_feature_2_socket_1_text_min_on: string;
6116
+ power_strip_feature_2_socket_1_text_min_off: string;
6117
+ power_strip_feature_2_socket_2_text_min_on: string;
6118
+ power_strip_feature_2_socket_2_text_min_off: string;
6119
+ power_strip_feature_2_socket_3_text_min_on: string;
6120
+ power_strip_feature_2_socket_3_text_min_off: string;
5951
6121
  };
5952
6122
  nb: {
5953
6123
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -6298,6 +6468,16 @@ declare const _default: {
6298
6468
  timer_ceiling_fan_switched_on_text: string;
6299
6469
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
6300
6470
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
6471
+ ceiling_fan_tile_uvc_fan_speed: string;
6472
+ routines_add_edit_name: string;
6473
+ string_light_pp_dialog_sm_ed_headline_d: string;
6474
+ strip_light_static_mood_edit_dialog_text: string;
6475
+ power_strip_feature_2_socket_1_text_min_on: string;
6476
+ power_strip_feature_2_socket_1_text_min_off: string;
6477
+ power_strip_feature_2_socket_2_text_min_on: string;
6478
+ power_strip_feature_2_socket_2_text_min_off: string;
6479
+ power_strip_feature_2_socket_3_text_min_on: string;
6480
+ power_strip_feature_2_socket_3_text_min_off: string;
6301
6481
  };
6302
6482
  nl: {
6303
6483
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -6648,6 +6828,16 @@ declare const _default: {
6648
6828
  timer_ceiling_fan_switched_on_text: string;
6649
6829
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
6650
6830
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
6831
+ ceiling_fan_tile_uvc_fan_speed: string;
6832
+ routines_add_edit_name: string;
6833
+ string_light_pp_dialog_sm_ed_headline_d: string;
6834
+ strip_light_static_mood_edit_dialog_text: string;
6835
+ power_strip_feature_2_socket_1_text_min_on: string;
6836
+ power_strip_feature_2_socket_1_text_min_off: string;
6837
+ power_strip_feature_2_socket_2_text_min_on: string;
6838
+ power_strip_feature_2_socket_2_text_min_off: string;
6839
+ power_strip_feature_2_socket_3_text_min_on: string;
6840
+ power_strip_feature_2_socket_3_text_min_off: string;
6651
6841
  };
6652
6842
  pl: {
6653
6843
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -6998,8 +7188,18 @@ declare const _default: {
6998
7188
  timer_ceiling_fan_switched_on_text: string;
6999
7189
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
7000
7190
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
7191
+ ceiling_fan_tile_uvc_fan_speed: string;
7192
+ routines_add_edit_name: string;
7193
+ string_light_pp_dialog_sm_ed_headline_d: string;
7194
+ strip_light_static_mood_edit_dialog_text: string;
7195
+ power_strip_feature_2_socket_1_text_min_on: string;
7196
+ power_strip_feature_2_socket_1_text_min_off: string;
7197
+ power_strip_feature_2_socket_2_text_min_on: string;
7198
+ power_strip_feature_2_socket_2_text_min_off: string;
7199
+ power_strip_feature_2_socket_3_text_min_on: string;
7200
+ power_strip_feature_2_socket_3_text_min_off: string;
7001
7201
  };
7002
- pt_BR: {
7202
+ 'pt-BR': {
7003
7203
  add_new_dynamic_mood_color_changing_mode_value: string;
7004
7204
  power_off_memory_default_state_title: string;
7005
7205
  sockets_ce: string;
@@ -7348,8 +7548,18 @@ declare const _default: {
7348
7548
  timer_ceiling_fan_switched_on_text: string;
7349
7549
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
7350
7550
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
7551
+ ceiling_fan_tile_uvc_fan_speed: string;
7552
+ routines_add_edit_name: string;
7553
+ string_light_pp_dialog_sm_ed_headline_d: string;
7554
+ strip_light_static_mood_edit_dialog_text: string;
7555
+ power_strip_feature_2_socket_1_text_min_on: string;
7556
+ power_strip_feature_2_socket_1_text_min_off: string;
7557
+ power_strip_feature_2_socket_2_text_min_on: string;
7558
+ power_strip_feature_2_socket_2_text_min_off: string;
7559
+ power_strip_feature_2_socket_3_text_min_on: string;
7560
+ power_strip_feature_2_socket_3_text_min_off: string;
7351
7561
  };
7352
- 'pt-BR': {
7562
+ pt_BR: {
7353
7563
  add_new_dynamic_mood_color_changing_mode_value: string;
7354
7564
  power_off_memory_default_state_title: string;
7355
7565
  sockets_ce: string;
@@ -7698,6 +7908,16 @@ declare const _default: {
7698
7908
  timer_ceiling_fan_switched_on_text: string;
7699
7909
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
7700
7910
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
7911
+ ceiling_fan_tile_uvc_fan_speed: string;
7912
+ routines_add_edit_name: string;
7913
+ string_light_pp_dialog_sm_ed_headline_d: string;
7914
+ strip_light_static_mood_edit_dialog_text: string;
7915
+ power_strip_feature_2_socket_1_text_min_on: string;
7916
+ power_strip_feature_2_socket_1_text_min_off: string;
7917
+ power_strip_feature_2_socket_2_text_min_on: string;
7918
+ power_strip_feature_2_socket_2_text_min_off: string;
7919
+ power_strip_feature_2_socket_3_text_min_on: string;
7920
+ power_strip_feature_2_socket_3_text_min_off: string;
7701
7921
  };
7702
7922
  ro: {
7703
7923
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -8048,6 +8268,16 @@ declare const _default: {
8048
8268
  timer_ceiling_fan_switched_on_text: string;
8049
8269
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
8050
8270
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
8271
+ ceiling_fan_tile_uvc_fan_speed: string;
8272
+ routines_add_edit_name: string;
8273
+ string_light_pp_dialog_sm_ed_headline_d: string;
8274
+ strip_light_static_mood_edit_dialog_text: string;
8275
+ power_strip_feature_2_socket_1_text_min_on: string;
8276
+ power_strip_feature_2_socket_1_text_min_off: string;
8277
+ power_strip_feature_2_socket_2_text_min_on: string;
8278
+ power_strip_feature_2_socket_2_text_min_off: string;
8279
+ power_strip_feature_2_socket_3_text_min_on: string;
8280
+ power_strip_feature_2_socket_3_text_min_off: string;
8051
8281
  };
8052
8282
  ru: {
8053
8283
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -8398,6 +8628,16 @@ declare const _default: {
8398
8628
  timer_ceiling_fan_switched_on_text: string;
8399
8629
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
8400
8630
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
8631
+ ceiling_fan_tile_uvc_fan_speed: string;
8632
+ routines_add_edit_name: string;
8633
+ string_light_pp_dialog_sm_ed_headline_d: string;
8634
+ strip_light_static_mood_edit_dialog_text: string;
8635
+ power_strip_feature_2_socket_1_text_min_on: string;
8636
+ power_strip_feature_2_socket_1_text_min_off: string;
8637
+ power_strip_feature_2_socket_2_text_min_on: string;
8638
+ power_strip_feature_2_socket_2_text_min_off: string;
8639
+ power_strip_feature_2_socket_3_text_min_on: string;
8640
+ power_strip_feature_2_socket_3_text_min_off: string;
8401
8641
  };
8402
8642
  sk: {
8403
8643
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -8748,6 +8988,16 @@ declare const _default: {
8748
8988
  timer_ceiling_fan_switched_on_text: string;
8749
8989
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
8750
8990
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
8991
+ ceiling_fan_tile_uvc_fan_speed: string;
8992
+ routines_add_edit_name: string;
8993
+ string_light_pp_dialog_sm_ed_headline_d: string;
8994
+ strip_light_static_mood_edit_dialog_text: string;
8995
+ power_strip_feature_2_socket_1_text_min_on: string;
8996
+ power_strip_feature_2_socket_1_text_min_off: string;
8997
+ power_strip_feature_2_socket_2_text_min_on: string;
8998
+ power_strip_feature_2_socket_2_text_min_off: string;
8999
+ power_strip_feature_2_socket_3_text_min_on: string;
9000
+ power_strip_feature_2_socket_3_text_min_off: string;
8751
9001
  };
8752
9002
  sv: {
8753
9003
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -9098,6 +9348,16 @@ declare const _default: {
9098
9348
  timer_ceiling_fan_switched_on_text: string;
9099
9349
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
9100
9350
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
9351
+ ceiling_fan_tile_uvc_fan_speed: string;
9352
+ routines_add_edit_name: string;
9353
+ string_light_pp_dialog_sm_ed_headline_d: string;
9354
+ strip_light_static_mood_edit_dialog_text: string;
9355
+ power_strip_feature_2_socket_1_text_min_on: string;
9356
+ power_strip_feature_2_socket_1_text_min_off: string;
9357
+ power_strip_feature_2_socket_2_text_min_on: string;
9358
+ power_strip_feature_2_socket_2_text_min_off: string;
9359
+ power_strip_feature_2_socket_3_text_min_on: string;
9360
+ power_strip_feature_2_socket_3_text_min_off: string;
9101
9361
  };
9102
9362
  tr: {
9103
9363
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -9448,6 +9708,16 @@ declare const _default: {
9448
9708
  timer_ceiling_fan_switched_on_text: string;
9449
9709
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
9450
9710
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
9711
+ ceiling_fan_tile_uvc_fan_speed: string;
9712
+ routines_add_edit_name: string;
9713
+ string_light_pp_dialog_sm_ed_headline_d: string;
9714
+ strip_light_static_mood_edit_dialog_text: string;
9715
+ power_strip_feature_2_socket_1_text_min_on: string;
9716
+ power_strip_feature_2_socket_1_text_min_off: string;
9717
+ power_strip_feature_2_socket_2_text_min_on: string;
9718
+ power_strip_feature_2_socket_2_text_min_off: string;
9719
+ power_strip_feature_2_socket_3_text_min_on: string;
9720
+ power_strip_feature_2_socket_3_text_min_off: string;
9451
9721
  };
9452
9722
  uk: {
9453
9723
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -9798,6 +10068,16 @@ declare const _default: {
9798
10068
  timer_ceiling_fan_switched_on_text: string;
9799
10069
  timeschedule_add_schedule_ceiling_fan_selectionfield_text: string;
9800
10070
  timeschedule_add_schedule_ceiling_fan_selectionfield_text2: string;
10071
+ ceiling_fan_tile_uvc_fan_speed: string;
10072
+ routines_add_edit_name: string;
10073
+ string_light_pp_dialog_sm_ed_headline_d: string;
10074
+ strip_light_static_mood_edit_dialog_text: string;
10075
+ power_strip_feature_2_socket_1_text_min_on: string;
10076
+ power_strip_feature_2_socket_1_text_min_off: string;
10077
+ power_strip_feature_2_socket_2_text_min_on: string;
10078
+ power_strip_feature_2_socket_2_text_min_off: string;
10079
+ power_strip_feature_2_socket_3_text_min_on: string;
10080
+ power_strip_feature_2_socket_3_text_min_off: string;
9801
10081
  };
9802
10082
  };
9803
10083
  export default _default;