@ledvance/base 1.1.10 → 1.1.11
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 +1 -1
- package/src/api/native.d.ts +2 -2
- package/src/api/native.ts +3 -3
- package/src/components/FanAdjustView.d.ts +22 -0
- package/src/components/Popup.d.ts +7 -0
- package/src/components/Segmented.d.ts +14 -0
- package/src/i18n/strings.d.ts +504 -56
- package/src/models/modules/NativePropsSlice.tsx +2 -1
- package/src/res/index.d.ts +1 -1
package/package.json
CHANGED
package/src/api/native.d.ts
CHANGED
|
@@ -15,8 +15,8 @@ export declare class NativeApi {
|
|
|
15
15
|
static renameDevice(deviceId: string, name: string): Promise<NativeResult<any>>;
|
|
16
16
|
static toDeviceSettingsPage(deviceId: string): void;
|
|
17
17
|
static putJson(deviceId: string, featureType: string, json: string): Promise<Result<any>>;
|
|
18
|
-
static getJson(deviceId: string, featureType: string): Promise<Result<
|
|
19
|
-
static groupControl(dps: string, config: string): Promise<Result<any>>;
|
|
18
|
+
static getJson(deviceId: string, featureType: string): Promise<Result<any>>;
|
|
19
|
+
static groupControl(tyGroupId: number, dps: string, config: string): Promise<Result<any>>;
|
|
20
20
|
}
|
|
21
21
|
export declare const openDownloadFile: (filePath: string) => Promise<unknown>;
|
|
22
22
|
export declare const queryDpIds: (dpIds: string, deviceId: string) => Promise<unknown>;
|
package/src/api/native.ts
CHANGED
|
@@ -15,7 +15,7 @@ interface LDVDevicePanelManager {
|
|
|
15
15
|
openDownloadFile: (filePath: string) => void
|
|
16
16
|
formatNumber: (num: number, fixed: number) => string
|
|
17
17
|
getTimeZone: () => string
|
|
18
|
-
groupControl: (dps: string, config: string) => Promise<NativeResult<any>>
|
|
18
|
+
groupControl: (tyGroupId: number, dps: string, config: string) => Promise<NativeResult<any>>
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
const devicePanel: LDVDevicePanelManager = NativeModules.LDVDevicePanelManager
|
|
@@ -214,8 +214,8 @@ export class NativeApi {
|
|
|
214
214
|
})
|
|
215
215
|
}
|
|
216
216
|
|
|
217
|
-
static async groupControl(dps: string, config: string): Promise<Result<any>> {
|
|
218
|
-
const nativeResult = await devicePanel.groupControl(dps, config)
|
|
217
|
+
static async groupControl(tyGroupId: number, dps: string, config: string): Promise<Result<any>> {
|
|
218
|
+
const nativeResult = await devicePanel.groupControl(tyGroupId, dps, config)
|
|
219
219
|
return {
|
|
220
220
|
success: nativeResult.result,
|
|
221
221
|
msg: nativeResult.msg,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ViewProps } from 'react-native';
|
|
2
|
+
interface FanAdjustViewProps extends ViewProps {
|
|
3
|
+
fanEnable: boolean;
|
|
4
|
+
fanSpeed: number;
|
|
5
|
+
maxFanSpeed?: number;
|
|
6
|
+
isSupportDirection?: boolean;
|
|
7
|
+
isSupportDisinfect?: boolean;
|
|
8
|
+
isSupportMode?: boolean;
|
|
9
|
+
directValue?: string;
|
|
10
|
+
modeValue?: string;
|
|
11
|
+
disinfect?: boolean;
|
|
12
|
+
directOptions?: any[];
|
|
13
|
+
modeOptions?: any[];
|
|
14
|
+
directChange?: (direct: string) => void;
|
|
15
|
+
modeChange?: (mode: string) => void;
|
|
16
|
+
disinfectChange?: (disinfect: boolean) => void;
|
|
17
|
+
onFanSwitch: (fanEnable: boolean) => void;
|
|
18
|
+
onFanSpeedChange?: (fanSpeed: number) => void;
|
|
19
|
+
onFanSpeedChangeComplete: (fanSpeed: number) => void;
|
|
20
|
+
}
|
|
21
|
+
declare const FanAdjustView: (props: FanAdjustViewProps) => JSX.Element;
|
|
22
|
+
export default FanAdjustView;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import { ViewStyle } from "react-native";
|
|
3
|
+
interface SegmentedItem {
|
|
4
|
+
label: ReactNode;
|
|
5
|
+
value: string;
|
|
6
|
+
}
|
|
7
|
+
interface SegmentedProps {
|
|
8
|
+
value?: string | number;
|
|
9
|
+
options?: SegmentedItem[];
|
|
10
|
+
onChange?: (v: string) => void;
|
|
11
|
+
style?: ViewStyle;
|
|
12
|
+
}
|
|
13
|
+
declare const Segmented: (props: SegmentedProps) => JSX.Element;
|
|
14
|
+
export default Segmented;
|
package/src/i18n/strings.d.ts
CHANGED
|
@@ -373,8 +373,24 @@ declare const _default: {
|
|
|
373
373
|
string_light_pp_field_sm_add_error1: string;
|
|
374
374
|
feature_activate_dialog_text: string;
|
|
375
375
|
edit_timeschedule_bttn_text: string;
|
|
376
|
-
|
|
377
|
-
|
|
376
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
377
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
378
|
+
ceiling_fan_direction_info_description_text: string;
|
|
379
|
+
ceiling_fan_direction_info_headline: string;
|
|
380
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
381
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
382
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
383
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
384
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
385
|
+
ceiling_fan_mode_info_headline: string;
|
|
386
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
387
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
388
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
389
|
+
ceiling_fan_direction_info_button_label: string;
|
|
390
|
+
ceiling_fan_mode_info_description_text: string;
|
|
391
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
392
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
393
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
378
394
|
};
|
|
379
395
|
cs: {
|
|
380
396
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -750,8 +766,24 @@ declare const _default: {
|
|
|
750
766
|
string_light_pp_field_sm_add_error1: string;
|
|
751
767
|
feature_activate_dialog_text: string;
|
|
752
768
|
edit_timeschedule_bttn_text: string;
|
|
753
|
-
|
|
754
|
-
|
|
769
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
770
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
771
|
+
ceiling_fan_direction_info_description_text: string;
|
|
772
|
+
ceiling_fan_direction_info_headline: string;
|
|
773
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
774
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
775
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
776
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
777
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
778
|
+
ceiling_fan_mode_info_headline: string;
|
|
779
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
780
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
781
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
782
|
+
ceiling_fan_direction_info_button_label: string;
|
|
783
|
+
ceiling_fan_mode_info_description_text: string;
|
|
784
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
785
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
786
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
755
787
|
};
|
|
756
788
|
en: {
|
|
757
789
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -1127,8 +1159,24 @@ declare const _default: {
|
|
|
1127
1159
|
string_light_pp_field_sm_add_error1: string;
|
|
1128
1160
|
feature_activate_dialog_text: string;
|
|
1129
1161
|
edit_timeschedule_bttn_text: string;
|
|
1130
|
-
|
|
1131
|
-
|
|
1162
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
1163
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
1164
|
+
ceiling_fan_direction_info_description_text: string;
|
|
1165
|
+
ceiling_fan_direction_info_headline: string;
|
|
1166
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
1167
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
1168
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
1169
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
1170
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
1171
|
+
ceiling_fan_mode_info_headline: string;
|
|
1172
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
1173
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
1174
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
1175
|
+
ceiling_fan_direction_info_button_label: string;
|
|
1176
|
+
ceiling_fan_mode_info_description_text: string;
|
|
1177
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
1178
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
1179
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
1132
1180
|
};
|
|
1133
1181
|
bg: {
|
|
1134
1182
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -1504,8 +1552,24 @@ declare const _default: {
|
|
|
1504
1552
|
string_light_pp_field_sm_add_error1: string;
|
|
1505
1553
|
feature_activate_dialog_text: string;
|
|
1506
1554
|
edit_timeschedule_bttn_text: string;
|
|
1507
|
-
|
|
1508
|
-
|
|
1555
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
1556
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
1557
|
+
ceiling_fan_direction_info_description_text: string;
|
|
1558
|
+
ceiling_fan_direction_info_headline: string;
|
|
1559
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
1560
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
1561
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
1562
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
1563
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
1564
|
+
ceiling_fan_mode_info_headline: string;
|
|
1565
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
1566
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
1567
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
1568
|
+
ceiling_fan_direction_info_button_label: string;
|
|
1569
|
+
ceiling_fan_mode_info_description_text: string;
|
|
1570
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
1571
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
1572
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
1509
1573
|
};
|
|
1510
1574
|
da: {
|
|
1511
1575
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -1881,8 +1945,24 @@ declare const _default: {
|
|
|
1881
1945
|
string_light_pp_field_sm_add_error1: string;
|
|
1882
1946
|
feature_activate_dialog_text: string;
|
|
1883
1947
|
edit_timeschedule_bttn_text: string;
|
|
1884
|
-
|
|
1885
|
-
|
|
1948
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
1949
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
1950
|
+
ceiling_fan_direction_info_description_text: string;
|
|
1951
|
+
ceiling_fan_direction_info_headline: string;
|
|
1952
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
1953
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
1954
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
1955
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
1956
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
1957
|
+
ceiling_fan_mode_info_headline: string;
|
|
1958
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
1959
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
1960
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
1961
|
+
ceiling_fan_direction_info_button_label: string;
|
|
1962
|
+
ceiling_fan_mode_info_description_text: string;
|
|
1963
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
1964
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
1965
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
1886
1966
|
};
|
|
1887
1967
|
de: {
|
|
1888
1968
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -2258,8 +2338,24 @@ declare const _default: {
|
|
|
2258
2338
|
string_light_pp_field_sm_add_error1: string;
|
|
2259
2339
|
feature_activate_dialog_text: string;
|
|
2260
2340
|
edit_timeschedule_bttn_text: string;
|
|
2261
|
-
|
|
2262
|
-
|
|
2341
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
2342
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
2343
|
+
ceiling_fan_direction_info_description_text: string;
|
|
2344
|
+
ceiling_fan_direction_info_headline: string;
|
|
2345
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
2346
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
2347
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
2348
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
2349
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
2350
|
+
ceiling_fan_mode_info_headline: string;
|
|
2351
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
2352
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
2353
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
2354
|
+
ceiling_fan_direction_info_button_label: string;
|
|
2355
|
+
ceiling_fan_mode_info_description_text: string;
|
|
2356
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
2357
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
2358
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
2263
2359
|
};
|
|
2264
2360
|
el: {
|
|
2265
2361
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -2635,8 +2731,24 @@ declare const _default: {
|
|
|
2635
2731
|
string_light_pp_field_sm_add_error1: string;
|
|
2636
2732
|
feature_activate_dialog_text: string;
|
|
2637
2733
|
edit_timeschedule_bttn_text: string;
|
|
2638
|
-
|
|
2639
|
-
|
|
2734
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
2735
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
2736
|
+
ceiling_fan_direction_info_description_text: string;
|
|
2737
|
+
ceiling_fan_direction_info_headline: string;
|
|
2738
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
2739
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
2740
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
2741
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
2742
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
2743
|
+
ceiling_fan_mode_info_headline: string;
|
|
2744
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
2745
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
2746
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
2747
|
+
ceiling_fan_direction_info_button_label: string;
|
|
2748
|
+
ceiling_fan_mode_info_description_text: string;
|
|
2749
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
2750
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
2751
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
2640
2752
|
};
|
|
2641
2753
|
es: {
|
|
2642
2754
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -3012,8 +3124,24 @@ declare const _default: {
|
|
|
3012
3124
|
string_light_pp_field_sm_add_error1: string;
|
|
3013
3125
|
feature_activate_dialog_text: string;
|
|
3014
3126
|
edit_timeschedule_bttn_text: string;
|
|
3015
|
-
|
|
3016
|
-
|
|
3127
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
3128
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
3129
|
+
ceiling_fan_direction_info_description_text: string;
|
|
3130
|
+
ceiling_fan_direction_info_headline: string;
|
|
3131
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
3132
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
3133
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
3134
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
3135
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
3136
|
+
ceiling_fan_mode_info_headline: string;
|
|
3137
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
3138
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
3139
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
3140
|
+
ceiling_fan_direction_info_button_label: string;
|
|
3141
|
+
ceiling_fan_mode_info_description_text: string;
|
|
3142
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
3143
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
3144
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
3017
3145
|
};
|
|
3018
3146
|
et: {
|
|
3019
3147
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -3389,8 +3517,24 @@ declare const _default: {
|
|
|
3389
3517
|
string_light_pp_field_sm_add_error1: string;
|
|
3390
3518
|
feature_activate_dialog_text: string;
|
|
3391
3519
|
edit_timeschedule_bttn_text: string;
|
|
3392
|
-
|
|
3393
|
-
|
|
3520
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
3521
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
3522
|
+
ceiling_fan_direction_info_description_text: string;
|
|
3523
|
+
ceiling_fan_direction_info_headline: string;
|
|
3524
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
3525
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
3526
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
3527
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
3528
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
3529
|
+
ceiling_fan_mode_info_headline: string;
|
|
3530
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
3531
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
3532
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
3533
|
+
ceiling_fan_direction_info_button_label: string;
|
|
3534
|
+
ceiling_fan_mode_info_description_text: string;
|
|
3535
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
3536
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
3537
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
3394
3538
|
};
|
|
3395
3539
|
fi: {
|
|
3396
3540
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -3766,8 +3910,24 @@ declare const _default: {
|
|
|
3766
3910
|
string_light_pp_field_sm_add_error1: string;
|
|
3767
3911
|
feature_activate_dialog_text: string;
|
|
3768
3912
|
edit_timeschedule_bttn_text: string;
|
|
3769
|
-
|
|
3770
|
-
|
|
3913
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
3914
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
3915
|
+
ceiling_fan_direction_info_description_text: string;
|
|
3916
|
+
ceiling_fan_direction_info_headline: string;
|
|
3917
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
3918
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
3919
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
3920
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
3921
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
3922
|
+
ceiling_fan_mode_info_headline: string;
|
|
3923
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
3924
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
3925
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
3926
|
+
ceiling_fan_direction_info_button_label: string;
|
|
3927
|
+
ceiling_fan_mode_info_description_text: string;
|
|
3928
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
3929
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
3930
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
3771
3931
|
};
|
|
3772
3932
|
fr: {
|
|
3773
3933
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -4143,8 +4303,24 @@ declare const _default: {
|
|
|
4143
4303
|
string_light_pp_field_sm_add_error1: string;
|
|
4144
4304
|
feature_activate_dialog_text: string;
|
|
4145
4305
|
edit_timeschedule_bttn_text: string;
|
|
4146
|
-
|
|
4147
|
-
|
|
4306
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
4307
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
4308
|
+
ceiling_fan_direction_info_description_text: string;
|
|
4309
|
+
ceiling_fan_direction_info_headline: string;
|
|
4310
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
4311
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
4312
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
4313
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
4314
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
4315
|
+
ceiling_fan_mode_info_headline: string;
|
|
4316
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
4317
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
4318
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
4319
|
+
ceiling_fan_direction_info_button_label: string;
|
|
4320
|
+
ceiling_fan_mode_info_description_text: string;
|
|
4321
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
4322
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
4323
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
4148
4324
|
};
|
|
4149
4325
|
hr: {
|
|
4150
4326
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -4520,8 +4696,24 @@ declare const _default: {
|
|
|
4520
4696
|
string_light_pp_field_sm_add_error1: string;
|
|
4521
4697
|
feature_activate_dialog_text: string;
|
|
4522
4698
|
edit_timeschedule_bttn_text: string;
|
|
4523
|
-
|
|
4524
|
-
|
|
4699
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
4700
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
4701
|
+
ceiling_fan_direction_info_description_text: string;
|
|
4702
|
+
ceiling_fan_direction_info_headline: string;
|
|
4703
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
4704
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
4705
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
4706
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
4707
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
4708
|
+
ceiling_fan_mode_info_headline: string;
|
|
4709
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
4710
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
4711
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
4712
|
+
ceiling_fan_direction_info_button_label: string;
|
|
4713
|
+
ceiling_fan_mode_info_description_text: string;
|
|
4714
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
4715
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
4716
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
4525
4717
|
};
|
|
4526
4718
|
hu: {
|
|
4527
4719
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -4897,8 +5089,24 @@ declare const _default: {
|
|
|
4897
5089
|
string_light_pp_field_sm_add_error1: string;
|
|
4898
5090
|
feature_activate_dialog_text: string;
|
|
4899
5091
|
edit_timeschedule_bttn_text: string;
|
|
4900
|
-
|
|
4901
|
-
|
|
5092
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
5093
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
5094
|
+
ceiling_fan_direction_info_description_text: string;
|
|
5095
|
+
ceiling_fan_direction_info_headline: string;
|
|
5096
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
5097
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
5098
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
5099
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
5100
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
5101
|
+
ceiling_fan_mode_info_headline: string;
|
|
5102
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
5103
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
5104
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
5105
|
+
ceiling_fan_direction_info_button_label: string;
|
|
5106
|
+
ceiling_fan_mode_info_description_text: string;
|
|
5107
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
5108
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
5109
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
4902
5110
|
};
|
|
4903
5111
|
it: {
|
|
4904
5112
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -5274,8 +5482,24 @@ declare const _default: {
|
|
|
5274
5482
|
string_light_pp_field_sm_add_error1: string;
|
|
5275
5483
|
feature_activate_dialog_text: string;
|
|
5276
5484
|
edit_timeschedule_bttn_text: string;
|
|
5277
|
-
|
|
5278
|
-
|
|
5485
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
5486
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
5487
|
+
ceiling_fan_direction_info_description_text: string;
|
|
5488
|
+
ceiling_fan_direction_info_headline: string;
|
|
5489
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
5490
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
5491
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
5492
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
5493
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
5494
|
+
ceiling_fan_mode_info_headline: string;
|
|
5495
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
5496
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
5497
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
5498
|
+
ceiling_fan_direction_info_button_label: string;
|
|
5499
|
+
ceiling_fan_mode_info_description_text: string;
|
|
5500
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
5501
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
5502
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
5279
5503
|
};
|
|
5280
5504
|
ko: {
|
|
5281
5505
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -5651,8 +5875,24 @@ declare const _default: {
|
|
|
5651
5875
|
string_light_pp_field_sm_add_error1: string;
|
|
5652
5876
|
feature_activate_dialog_text: string;
|
|
5653
5877
|
edit_timeschedule_bttn_text: string;
|
|
5654
|
-
|
|
5655
|
-
|
|
5878
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
5879
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
5880
|
+
ceiling_fan_direction_info_description_text: string;
|
|
5881
|
+
ceiling_fan_direction_info_headline: string;
|
|
5882
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
5883
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
5884
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
5885
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
5886
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
5887
|
+
ceiling_fan_mode_info_headline: string;
|
|
5888
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
5889
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
5890
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
5891
|
+
ceiling_fan_direction_info_button_label: string;
|
|
5892
|
+
ceiling_fan_mode_info_description_text: string;
|
|
5893
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
5894
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
5895
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
5656
5896
|
};
|
|
5657
5897
|
lt: {
|
|
5658
5898
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -6028,8 +6268,24 @@ declare const _default: {
|
|
|
6028
6268
|
string_light_pp_field_sm_add_error1: string;
|
|
6029
6269
|
feature_activate_dialog_text: string;
|
|
6030
6270
|
edit_timeschedule_bttn_text: string;
|
|
6031
|
-
|
|
6032
|
-
|
|
6271
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
6272
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
6273
|
+
ceiling_fan_direction_info_description_text: string;
|
|
6274
|
+
ceiling_fan_direction_info_headline: string;
|
|
6275
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
6276
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
6277
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
6278
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
6279
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
6280
|
+
ceiling_fan_mode_info_headline: string;
|
|
6281
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
6282
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
6283
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
6284
|
+
ceiling_fan_direction_info_button_label: string;
|
|
6285
|
+
ceiling_fan_mode_info_description_text: string;
|
|
6286
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
6287
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
6288
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
6033
6289
|
};
|
|
6034
6290
|
lv: {
|
|
6035
6291
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -6405,8 +6661,24 @@ declare const _default: {
|
|
|
6405
6661
|
string_light_pp_field_sm_add_error1: string;
|
|
6406
6662
|
feature_activate_dialog_text: string;
|
|
6407
6663
|
edit_timeschedule_bttn_text: string;
|
|
6408
|
-
|
|
6409
|
-
|
|
6664
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
6665
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
6666
|
+
ceiling_fan_direction_info_description_text: string;
|
|
6667
|
+
ceiling_fan_direction_info_headline: string;
|
|
6668
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
6669
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
6670
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
6671
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
6672
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
6673
|
+
ceiling_fan_mode_info_headline: string;
|
|
6674
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
6675
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
6676
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
6677
|
+
ceiling_fan_direction_info_button_label: string;
|
|
6678
|
+
ceiling_fan_mode_info_description_text: string;
|
|
6679
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
6680
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
6681
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
6410
6682
|
};
|
|
6411
6683
|
nb: {
|
|
6412
6684
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -6782,8 +7054,24 @@ declare const _default: {
|
|
|
6782
7054
|
string_light_pp_field_sm_add_error1: string;
|
|
6783
7055
|
feature_activate_dialog_text: string;
|
|
6784
7056
|
edit_timeschedule_bttn_text: string;
|
|
6785
|
-
|
|
6786
|
-
|
|
7057
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
7058
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
7059
|
+
ceiling_fan_direction_info_description_text: string;
|
|
7060
|
+
ceiling_fan_direction_info_headline: string;
|
|
7061
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
7062
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
7063
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
7064
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
7065
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
7066
|
+
ceiling_fan_mode_info_headline: string;
|
|
7067
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
7068
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
7069
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
7070
|
+
ceiling_fan_direction_info_button_label: string;
|
|
7071
|
+
ceiling_fan_mode_info_description_text: string;
|
|
7072
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
7073
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
7074
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
6787
7075
|
};
|
|
6788
7076
|
nl: {
|
|
6789
7077
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -7159,8 +7447,24 @@ declare const _default: {
|
|
|
7159
7447
|
string_light_pp_field_sm_add_error1: string;
|
|
7160
7448
|
feature_activate_dialog_text: string;
|
|
7161
7449
|
edit_timeschedule_bttn_text: string;
|
|
7162
|
-
|
|
7163
|
-
|
|
7450
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
7451
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
7452
|
+
ceiling_fan_direction_info_description_text: string;
|
|
7453
|
+
ceiling_fan_direction_info_headline: string;
|
|
7454
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
7455
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
7456
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
7457
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
7458
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
7459
|
+
ceiling_fan_mode_info_headline: string;
|
|
7460
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
7461
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
7462
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
7463
|
+
ceiling_fan_direction_info_button_label: string;
|
|
7464
|
+
ceiling_fan_mode_info_description_text: string;
|
|
7465
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
7466
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
7467
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
7164
7468
|
};
|
|
7165
7469
|
pl: {
|
|
7166
7470
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -7536,8 +7840,24 @@ declare const _default: {
|
|
|
7536
7840
|
string_light_pp_field_sm_add_error1: string;
|
|
7537
7841
|
feature_activate_dialog_text: string;
|
|
7538
7842
|
edit_timeschedule_bttn_text: string;
|
|
7539
|
-
|
|
7540
|
-
|
|
7843
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
7844
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
7845
|
+
ceiling_fan_direction_info_description_text: string;
|
|
7846
|
+
ceiling_fan_direction_info_headline: string;
|
|
7847
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
7848
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
7849
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
7850
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
7851
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
7852
|
+
ceiling_fan_mode_info_headline: string;
|
|
7853
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
7854
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
7855
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
7856
|
+
ceiling_fan_direction_info_button_label: string;
|
|
7857
|
+
ceiling_fan_mode_info_description_text: string;
|
|
7858
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
7859
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
7860
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
7541
7861
|
};
|
|
7542
7862
|
'pt-BR': {
|
|
7543
7863
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -7913,8 +8233,24 @@ declare const _default: {
|
|
|
7913
8233
|
string_light_pp_field_sm_add_error1: string;
|
|
7914
8234
|
feature_activate_dialog_text: string;
|
|
7915
8235
|
edit_timeschedule_bttn_text: string;
|
|
7916
|
-
|
|
7917
|
-
|
|
8236
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
8237
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
8238
|
+
ceiling_fan_direction_info_description_text: string;
|
|
8239
|
+
ceiling_fan_direction_info_headline: string;
|
|
8240
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
8241
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
8242
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
8243
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
8244
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
8245
|
+
ceiling_fan_mode_info_headline: string;
|
|
8246
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
8247
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
8248
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
8249
|
+
ceiling_fan_direction_info_button_label: string;
|
|
8250
|
+
ceiling_fan_mode_info_description_text: string;
|
|
8251
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
8252
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
8253
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
7918
8254
|
};
|
|
7919
8255
|
pt_BR: {
|
|
7920
8256
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -8290,8 +8626,24 @@ declare const _default: {
|
|
|
8290
8626
|
string_light_pp_field_sm_add_error1: string;
|
|
8291
8627
|
feature_activate_dialog_text: string;
|
|
8292
8628
|
edit_timeschedule_bttn_text: string;
|
|
8293
|
-
|
|
8294
|
-
|
|
8629
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
8630
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
8631
|
+
ceiling_fan_direction_info_description_text: string;
|
|
8632
|
+
ceiling_fan_direction_info_headline: string;
|
|
8633
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
8634
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
8635
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
8636
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
8637
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
8638
|
+
ceiling_fan_mode_info_headline: string;
|
|
8639
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
8640
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
8641
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
8642
|
+
ceiling_fan_direction_info_button_label: string;
|
|
8643
|
+
ceiling_fan_mode_info_description_text: string;
|
|
8644
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
8645
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
8646
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
8295
8647
|
};
|
|
8296
8648
|
ro: {
|
|
8297
8649
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -8667,8 +9019,24 @@ declare const _default: {
|
|
|
8667
9019
|
string_light_pp_field_sm_add_error1: string;
|
|
8668
9020
|
feature_activate_dialog_text: string;
|
|
8669
9021
|
edit_timeschedule_bttn_text: string;
|
|
8670
|
-
|
|
8671
|
-
|
|
9022
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
9023
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
9024
|
+
ceiling_fan_direction_info_description_text: string;
|
|
9025
|
+
ceiling_fan_direction_info_headline: string;
|
|
9026
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
9027
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
9028
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
9029
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
9030
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
9031
|
+
ceiling_fan_mode_info_headline: string;
|
|
9032
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
9033
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
9034
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
9035
|
+
ceiling_fan_direction_info_button_label: string;
|
|
9036
|
+
ceiling_fan_mode_info_description_text: string;
|
|
9037
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
9038
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
9039
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
8672
9040
|
};
|
|
8673
9041
|
ru: {
|
|
8674
9042
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -9044,8 +9412,24 @@ declare const _default: {
|
|
|
9044
9412
|
string_light_pp_field_sm_add_error1: string;
|
|
9045
9413
|
feature_activate_dialog_text: string;
|
|
9046
9414
|
edit_timeschedule_bttn_text: string;
|
|
9047
|
-
|
|
9048
|
-
|
|
9415
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
9416
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
9417
|
+
ceiling_fan_direction_info_description_text: string;
|
|
9418
|
+
ceiling_fan_direction_info_headline: string;
|
|
9419
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
9420
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
9421
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
9422
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
9423
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
9424
|
+
ceiling_fan_mode_info_headline: string;
|
|
9425
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
9426
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
9427
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
9428
|
+
ceiling_fan_direction_info_button_label: string;
|
|
9429
|
+
ceiling_fan_mode_info_description_text: string;
|
|
9430
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
9431
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
9432
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
9049
9433
|
};
|
|
9050
9434
|
sk: {
|
|
9051
9435
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -9421,8 +9805,24 @@ declare const _default: {
|
|
|
9421
9805
|
string_light_pp_field_sm_add_error1: string;
|
|
9422
9806
|
feature_activate_dialog_text: string;
|
|
9423
9807
|
edit_timeschedule_bttn_text: string;
|
|
9424
|
-
|
|
9425
|
-
|
|
9808
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
9809
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
9810
|
+
ceiling_fan_direction_info_description_text: string;
|
|
9811
|
+
ceiling_fan_direction_info_headline: string;
|
|
9812
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
9813
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
9814
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
9815
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
9816
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
9817
|
+
ceiling_fan_mode_info_headline: string;
|
|
9818
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
9819
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
9820
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
9821
|
+
ceiling_fan_direction_info_button_label: string;
|
|
9822
|
+
ceiling_fan_mode_info_description_text: string;
|
|
9823
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
9824
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
9825
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
9426
9826
|
};
|
|
9427
9827
|
sv: {
|
|
9428
9828
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -9798,8 +10198,24 @@ declare const _default: {
|
|
|
9798
10198
|
string_light_pp_field_sm_add_error1: string;
|
|
9799
10199
|
feature_activate_dialog_text: string;
|
|
9800
10200
|
edit_timeschedule_bttn_text: string;
|
|
9801
|
-
|
|
9802
|
-
|
|
10201
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
10202
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
10203
|
+
ceiling_fan_direction_info_description_text: string;
|
|
10204
|
+
ceiling_fan_direction_info_headline: string;
|
|
10205
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
10206
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
10207
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
10208
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
10209
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
10210
|
+
ceiling_fan_mode_info_headline: string;
|
|
10211
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
10212
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
10213
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
10214
|
+
ceiling_fan_direction_info_button_label: string;
|
|
10215
|
+
ceiling_fan_mode_info_description_text: string;
|
|
10216
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
10217
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
10218
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
9803
10219
|
};
|
|
9804
10220
|
tr: {
|
|
9805
10221
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -10175,8 +10591,24 @@ declare const _default: {
|
|
|
10175
10591
|
string_light_pp_field_sm_add_error1: string;
|
|
10176
10592
|
feature_activate_dialog_text: string;
|
|
10177
10593
|
edit_timeschedule_bttn_text: string;
|
|
10178
|
-
|
|
10179
|
-
|
|
10594
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
10595
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
10596
|
+
ceiling_fan_direction_info_description_text: string;
|
|
10597
|
+
ceiling_fan_direction_info_headline: string;
|
|
10598
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
10599
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
10600
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
10601
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
10602
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
10603
|
+
ceiling_fan_mode_info_headline: string;
|
|
10604
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
10605
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
10606
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
10607
|
+
ceiling_fan_direction_info_button_label: string;
|
|
10608
|
+
ceiling_fan_mode_info_description_text: string;
|
|
10609
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
10610
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
10611
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
10180
10612
|
};
|
|
10181
10613
|
uk: {
|
|
10182
10614
|
add_new_dynamic_mood_color_changing_mode_value: string;
|
|
@@ -10552,8 +10984,24 @@ declare const _default: {
|
|
|
10552
10984
|
string_light_pp_field_sm_add_error1: string;
|
|
10553
10985
|
feature_activate_dialog_text: string;
|
|
10554
10986
|
edit_timeschedule_bttn_text: string;
|
|
10555
|
-
|
|
10556
|
-
|
|
10987
|
+
ceiling_fan_direction_info_option_1_headline: string;
|
|
10988
|
+
ceiling_fan_direction_info_option_2_headline: string;
|
|
10989
|
+
ceiling_fan_direction_info_description_text: string;
|
|
10990
|
+
ceiling_fan_direction_info_headline: string;
|
|
10991
|
+
ceiling_fan_direction_info_option_1_text: string;
|
|
10992
|
+
ceiling_fan_direction_info_option_2_text: string;
|
|
10993
|
+
ceiling_fan_feature_2_fan_text_hour_off: string;
|
|
10994
|
+
ceiling_fan_feature_2_fan_text_hour_on: string;
|
|
10995
|
+
ceiling_fan_feature_2_fan_text_min_off: string;
|
|
10996
|
+
ceiling_fan_mode_info_headline: string;
|
|
10997
|
+
ceiling_fan_mode_info_option_1_headline: string;
|
|
10998
|
+
ceiling_fan_mode_info_option_2_headline: string;
|
|
10999
|
+
ceiling_fan_tile_uvc_fan_direction: string;
|
|
11000
|
+
ceiling_fan_direction_info_button_label: string;
|
|
11001
|
+
ceiling_fan_mode_info_description_text: string;
|
|
11002
|
+
ceiling_fan_mode_info_option_1_text: string;
|
|
11003
|
+
ceiling_fan_mode_info_option_2_text: string;
|
|
11004
|
+
ceiling_fan_tile_uvc_fan_disinfect: string;
|
|
10557
11005
|
};
|
|
10558
11006
|
};
|
|
10559
11007
|
export default _default;
|
|
@@ -199,12 +199,13 @@ export function useUAGroupInfo(): UAGroupInfo {
|
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
export function useGroupConfig<T>(): [T, (dps: any, newConfig: T) => Promise<Result<any>>] {
|
|
202
|
+
const tyGroupId = useUAGroupInfo().tyGroupId
|
|
202
203
|
const config = useUAGroupInfo().config as T
|
|
203
204
|
const dispatch = useDispatch()
|
|
204
205
|
const {setGroupConfig} = nativePropsSlice.actions
|
|
205
206
|
const setConfig = useCallback(async (dps: any, newConfig: T) => {
|
|
206
207
|
// 发送控制命令
|
|
207
|
-
const res = await NativeApi.groupControl(JSON.stringify(dps), JSON.stringify(newConfig))
|
|
208
|
+
const res = await NativeApi.groupControl(tyGroupId, JSON.stringify(dps), JSON.stringify(newConfig))
|
|
208
209
|
if (res.success) {
|
|
209
210
|
// 只在结果成功时才改变 redux 数据
|
|
210
211
|
dispatch(setGroupConfig(newConfig))
|
package/src/res/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ declare const _default: {
|
|
|
27
27
|
add: string;
|
|
28
28
|
delete: string;
|
|
29
29
|
icon_edit_scene: string;
|
|
30
|
-
device_panel_timer_add:
|
|
30
|
+
device_panel_timer_add: any;
|
|
31
31
|
device_panel_schedule_add: string;
|
|
32
32
|
device_panel_schedule_alert: string;
|
|
33
33
|
ic_arrows_nav_clear: any;
|