@ledvance/base 1.2.10 → 1.2.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.
@@ -0,0 +1,51 @@
1
+ @ColumnInfo(name = "device_id")
2
+ val deviceId: String,
3
+ @ColumnInfo(name = "device_name")
4
+ val deviceName: String,
5
+ @ColumnInfo(name = "cat_id")
6
+ val catId: String,
7
+ @ColumnInfo(name = "channel_no")
8
+ val channelNo: Int,
9
+ @ColumnInfo(name = "device_category")
10
+ val deviceCategory: String,
11
+ @ColumnInfo(name = "device_image")
12
+ val deviceImage: String,
13
+ @ColumnInfo(name = "tuya_device_id")
14
+ val tuyaDeviceId: String,
15
+ // deviceType 对应 ProductInfo 的 productId
16
+ @ColumnInfo(name = "device_type")
17
+ val deviceType: String,
18
+ @ColumnInfo(name = "offline_time")
19
+ val offlineTime: String,
20
+ @ColumnInfo(name = "rn_package")
21
+ val rnPackage: String?,
22
+ @ColumnInfo(name = "status")
23
+ val status: Int,
24
+ @ColumnInfo(name = "create_time")
25
+ val createTime: String,
26
+ @ColumnInfo(name = "version")
27
+ val version: String,
28
+ @ColumnInfo(name = "user_id")
29
+ val userId: String,
30
+ @ColumnInfo(name = "family_id")
31
+ val familyId: Long,
32
+ @ColumnInfo(name = "room_id")
33
+ val roomId: Long,
34
+ @ColumnInfo(name = "room_name")
35
+ val roomName: String,
36
+ @ColumnInfo(name = "is_shared")
37
+ val isShared: Int,
38
+ @ColumnInfo(name = "local_index")
39
+ val localIndex: String,
40
+ @ColumnInfo(name = "resource_category")
41
+ val resourceCategory: String,
42
+ @ColumnInfo(name = "resource_id")
43
+ val resourceId: String,
44
+ @ColumnInfo(name = "resource_identifier")
45
+ val resourceIdentifier: String,
46
+ @ColumnInfo(name = "resource_type")
47
+ val resourceType: Int,
48
+ @ColumnInfo(name = "index")
49
+ val index: Int = 0,
50
+ @ColumnInfo(name = "switch_state")
51
+ val switchState: Boolean = true
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "name": "@ledvance/base",
5
5
  "pid": [],
6
6
  "uiid": "",
7
- "version": "1.2.10",
7
+ "version": "1.2.11",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "@reduxjs/toolkit": "^1.8.6",
@@ -0,0 +1,19 @@
1
+ export interface AdvancedData {
2
+ title: string;
3
+ subtitles?: string[];
4
+ statusColor: string;
5
+ router: {
6
+ key: string;
7
+ params?: any;
8
+ };
9
+ dp?: {
10
+ key: string;
11
+ code: string;
12
+ };
13
+ }
14
+ export interface AdvanceCardProps {
15
+ data: AdvancedData;
16
+ onPress: () => void;
17
+ }
18
+ declare const AdvanceCard: (props: AdvanceCardProps) => JSX.Element;
19
+ export default AdvanceCard;
@@ -0,0 +1,90 @@
1
+ import React from 'react'
2
+ import { StyleSheet, Text, View } from 'react-native'
3
+ import { Utils } from 'tuya-panel-kit'
4
+ import Card from 'components/Card'
5
+ import Spacer from 'components/Spacer'
6
+
7
+ const { convertX: cx } = Utils.RatioUtils
8
+
9
+ export interface AdvancedData {
10
+ title: string
11
+ subtitles?: string[]
12
+ statusColor: string
13
+ router: { key: string, params?: any }
14
+ dp?: { key: string, code: string }
15
+ }
16
+
17
+ export interface AdvanceCardProps {
18
+ data: AdvancedData
19
+ onPress: () => void
20
+ }
21
+
22
+ const AdvanceCard = (props: AdvanceCardProps) => {
23
+ return (
24
+ <Card
25
+ style={styles.itemContainer}
26
+ containerStyle={styles.itemContent}
27
+ onPress={props.onPress}>
28
+ <View style={styles.dotBg}>
29
+ <View
30
+ style={[
31
+ styles.dot,
32
+ { backgroundColor: props.data.statusColor },
33
+ ]}/>
34
+ </View>
35
+ <View style={styles.titleBg}>
36
+ <Text style={styles.title}>{props.data.title}</Text>
37
+ <Spacer height={cx(8)}/>
38
+ {
39
+ (!!props.data.subtitles) && props.data.subtitles.map(subtitle => (
40
+ <Text style={styles.subtitle} key={subtitle}>{subtitle}</Text>
41
+ ))
42
+ }
43
+ </View>
44
+ </Card>
45
+ )
46
+ }
47
+
48
+ const styles = StyleSheet.create({
49
+ itemContainer: {
50
+ width: cx(154),
51
+ borderRadius: cx(16),
52
+ },
53
+ itemContent: {},
54
+ titleBg: {
55
+ height: cx(118),
56
+ justifyContent: 'center',
57
+ alignItems: 'center',
58
+ },
59
+ title: {
60
+ marginHorizontal: cx(16),
61
+ color: '#000',
62
+ fontSize: cx(14),
63
+ textAlign: 'center',
64
+ fontFamily: 'helvetica_neue_lt_std_roman',
65
+ },
66
+ subtitle: {
67
+ color: '#666',
68
+ fontSize: cx(10),
69
+ textAlign: 'center',
70
+ fontFamily: 'helvetica_neue_lt_std_roman',
71
+ },
72
+ dotBg: {
73
+ position: 'absolute',
74
+ top: cx(10),
75
+ end: cx(10),
76
+ borderWidth: cx(.5),
77
+ borderColor: '#cbcbcb80',
78
+ borderRadius: cx(7),
79
+ },
80
+ dot: {
81
+ width: cx(10),
82
+ height: cx(10),
83
+ backgroundColor: 'rgb(0, 201, 49)',
84
+ borderRadius: cx(5),
85
+ borderColor: '#fff',
86
+ borderWidth: cx(1),
87
+ },
88
+ })
89
+
90
+ export default AdvanceCard
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ import { AdvancedData } from './AdvanceCard';
3
+ export interface AdvanceListProps {
4
+ advanceData: AdvancedData[];
5
+ onAdvanceItemClick?: (advanceData: AdvancedData, index: number) => void | undefined;
6
+ }
7
+ declare function AdvanceList(props: AdvanceListProps): JSX.Element;
8
+ declare const _default: React.MemoExoticComponent<typeof AdvanceList>;
9
+ export default _default;
@@ -0,0 +1,62 @@
1
+ import React, { useCallback } from 'react'
2
+ import { FlatList, StyleSheet, View } from 'react-native'
3
+ import AdvanceCard, { AdvancedData } from './AdvanceCard'
4
+ import Spacer from './Spacer'
5
+ import { useNavigation } from '@react-navigation/core'
6
+ import { Utils } from 'tuya-panel-kit'
7
+
8
+ const { convertX: cx } = Utils.RatioUtils
9
+
10
+ export interface AdvanceListProps {
11
+ advanceData: AdvancedData[],
12
+ onAdvanceItemClick?: (advanceData: AdvancedData, index: number) => void | undefined
13
+ }
14
+
15
+ function AdvanceList(props: AdvanceListProps) {
16
+ const navigation = useNavigation()
17
+
18
+ const { advanceData, onAdvanceItemClick } = props
19
+
20
+ const renderItem = useCallback(({ item, index }) => (
21
+ <View style={styles.item}>
22
+ <AdvanceCard
23
+ data={item}
24
+ onPress={() => {
25
+ if (!onAdvanceItemClick || onAdvanceItemClick(item, index)) {
26
+ navigation.navigate(item.router.key, item.router.params)
27
+ }
28
+ }}/>
29
+ </View>
30
+ ), [navigation, onAdvanceItemClick])
31
+
32
+ const keyExtractor = useCallback((item: AdvancedData, index: number) => item.dp?.code || `key-${index}`, [])
33
+
34
+ const Header = useCallback(() => <Spacer height={cx(10)}/>, [])
35
+ const Separator = useCallback(() => <Spacer/>, [])
36
+ const Footer = useCallback(() => <Spacer height={cx(30)}/>, [])
37
+
38
+ return (
39
+ <FlatList
40
+ numColumns={2}
41
+ style={styles.container}
42
+ data={advanceData}
43
+ renderItem={renderItem}
44
+ keyExtractor={keyExtractor}
45
+ ListHeaderComponent={Header}
46
+ ItemSeparatorComponent={Separator}
47
+ ListFooterComponent={Footer}/>
48
+ )
49
+ }
50
+
51
+ const styles = StyleSheet.create({
52
+ container: {
53
+ marginHorizontal: cx(14),
54
+ },
55
+ item: {
56
+ flex: .5,
57
+ justifyContent: 'center',
58
+ alignItems: 'center',
59
+ },
60
+ })
61
+
62
+ export default React.memo(AdvanceList)
@@ -22,6 +22,7 @@ interface DrawToolViewProps extends PropsWithChildren<ViewProps> {
22
22
  isSupportBrightness?: boolean;
23
23
  isColorMode?: boolean;
24
24
  setIsColorMode: (isColorMode: boolean) => void;
25
+ blockColor?: string;
25
26
  h: number;
26
27
  s: number;
27
28
  v: number;
@@ -1,8 +1,9 @@
1
- import { ImageStyle, StyleProp, TextStyle, ViewProps } from 'react-native';
1
+ import { ImageStyle, StyleProp, TextStyle, ViewProps, ViewStyle } from 'react-native';
2
2
  interface InfoTextProps extends ViewProps {
3
3
  icon: string | number;
4
4
  text: string;
5
5
  contentColor?: string;
6
+ style?: ViewStyle;
6
7
  iconStyle?: StyleProp<ImageStyle>;
7
8
  textStyle?: StyleProp<TextStyle>;
8
9
  }
@@ -7,6 +7,7 @@ interface LdvPickerViewProps {
7
7
  style?: StyleProp<ViewStyle> | undefined;
8
8
  unit?: string[];
9
9
  minutesStep?: number;
10
+ maxHour?: number;
10
11
  }
11
12
  declare const LdvPickerView: (props: LdvPickerViewProps) => JSX.Element;
12
13
  export default LdvPickerView;
@@ -542,6 +542,11 @@ declare const _default: {
542
542
  socket_settings_firstbox_status1_description: string;
543
543
  socket_settings_firstbox_status2_description: string;
544
544
  socket_settings_firstbox_status3_description: string;
545
+ striplight_lengthadaptationtext: string;
546
+ bt_shs_google_button_cancel_enabling: string;
547
+ striplight_adaptbutton: string;
548
+ striplight_lengthtitle: string;
549
+ striplight_actuallength: string;
545
550
  };
546
551
  ar: {
547
552
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -1086,6 +1091,11 @@ declare const _default: {
1086
1091
  socket_settings_firstbox_status1_description: string;
1087
1092
  socket_settings_firstbox_status2_description: string;
1088
1093
  socket_settings_firstbox_status3_description: string;
1094
+ striplight_lengthadaptationtext: string;
1095
+ bt_shs_google_button_cancel_enabling: string;
1096
+ striplight_adaptbutton: string;
1097
+ striplight_lengthtitle: string;
1098
+ striplight_actuallength: string;
1089
1099
  };
1090
1100
  cs: {
1091
1101
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -1630,6 +1640,11 @@ declare const _default: {
1630
1640
  socket_settings_firstbox_status1_description: string;
1631
1641
  socket_settings_firstbox_status2_description: string;
1632
1642
  socket_settings_firstbox_status3_description: string;
1643
+ striplight_lengthadaptationtext: string;
1644
+ bt_shs_google_button_cancel_enabling: string;
1645
+ striplight_adaptbutton: string;
1646
+ striplight_lengthtitle: string;
1647
+ striplight_actuallength: string;
1633
1648
  };
1634
1649
  en: {
1635
1650
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -2174,6 +2189,11 @@ declare const _default: {
2174
2189
  socket_settings_firstbox_status1_description: string;
2175
2190
  socket_settings_firstbox_status2_description: string;
2176
2191
  socket_settings_firstbox_status3_description: string;
2192
+ striplight_lengthadaptationtext: string;
2193
+ bt_shs_google_button_cancel_enabling: string;
2194
+ striplight_adaptbutton: string;
2195
+ striplight_lengthtitle: string;
2196
+ striplight_actuallength: string;
2177
2197
  };
2178
2198
  bg: {
2179
2199
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -2718,6 +2738,11 @@ declare const _default: {
2718
2738
  socket_settings_firstbox_status1_description: string;
2719
2739
  socket_settings_firstbox_status2_description: string;
2720
2740
  socket_settings_firstbox_status3_description: string;
2741
+ striplight_lengthadaptationtext: string;
2742
+ bt_shs_google_button_cancel_enabling: string;
2743
+ striplight_adaptbutton: string;
2744
+ striplight_lengthtitle: string;
2745
+ striplight_actuallength: string;
2721
2746
  };
2722
2747
  da: {
2723
2748
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -3262,6 +3287,11 @@ declare const _default: {
3262
3287
  socket_settings_firstbox_status1_description: string;
3263
3288
  socket_settings_firstbox_status2_description: string;
3264
3289
  socket_settings_firstbox_status3_description: string;
3290
+ striplight_lengthadaptationtext: string;
3291
+ bt_shs_google_button_cancel_enabling: string;
3292
+ striplight_adaptbutton: string;
3293
+ striplight_lengthtitle: string;
3294
+ striplight_actuallength: string;
3265
3295
  };
3266
3296
  de: {
3267
3297
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -3806,6 +3836,11 @@ declare const _default: {
3806
3836
  socket_settings_firstbox_status1_description: string;
3807
3837
  socket_settings_firstbox_status2_description: string;
3808
3838
  socket_settings_firstbox_status3_description: string;
3839
+ striplight_lengthadaptationtext: string;
3840
+ bt_shs_google_button_cancel_enabling: string;
3841
+ striplight_adaptbutton: string;
3842
+ striplight_lengthtitle: string;
3843
+ striplight_actuallength: string;
3809
3844
  };
3810
3845
  el: {
3811
3846
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -4350,6 +4385,11 @@ declare const _default: {
4350
4385
  socket_settings_firstbox_status1_description: string;
4351
4386
  socket_settings_firstbox_status2_description: string;
4352
4387
  socket_settings_firstbox_status3_description: string;
4388
+ striplight_lengthadaptationtext: string;
4389
+ bt_shs_google_button_cancel_enabling: string;
4390
+ striplight_adaptbutton: string;
4391
+ striplight_lengthtitle: string;
4392
+ striplight_actuallength: string;
4353
4393
  };
4354
4394
  es: {
4355
4395
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -4894,6 +4934,11 @@ declare const _default: {
4894
4934
  socket_settings_firstbox_status1_description: string;
4895
4935
  socket_settings_firstbox_status2_description: string;
4896
4936
  socket_settings_firstbox_status3_description: string;
4937
+ striplight_lengthadaptationtext: string;
4938
+ bt_shs_google_button_cancel_enabling: string;
4939
+ striplight_adaptbutton: string;
4940
+ striplight_lengthtitle: string;
4941
+ striplight_actuallength: string;
4897
4942
  };
4898
4943
  et: {
4899
4944
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -5438,6 +5483,11 @@ declare const _default: {
5438
5483
  socket_settings_firstbox_status1_description: string;
5439
5484
  socket_settings_firstbox_status2_description: string;
5440
5485
  socket_settings_firstbox_status3_description: string;
5486
+ striplight_lengthadaptationtext: string;
5487
+ bt_shs_google_button_cancel_enabling: string;
5488
+ striplight_adaptbutton: string;
5489
+ striplight_lengthtitle: string;
5490
+ striplight_actuallength: string;
5441
5491
  };
5442
5492
  fi: {
5443
5493
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -5982,6 +6032,11 @@ declare const _default: {
5982
6032
  socket_settings_firstbox_status1_description: string;
5983
6033
  socket_settings_firstbox_status2_description: string;
5984
6034
  socket_settings_firstbox_status3_description: string;
6035
+ striplight_lengthadaptationtext: string;
6036
+ bt_shs_google_button_cancel_enabling: string;
6037
+ striplight_adaptbutton: string;
6038
+ striplight_lengthtitle: string;
6039
+ striplight_actuallength: string;
5985
6040
  };
5986
6041
  fr: {
5987
6042
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -6526,6 +6581,11 @@ declare const _default: {
6526
6581
  socket_settings_firstbox_status1_description: string;
6527
6582
  socket_settings_firstbox_status2_description: string;
6528
6583
  socket_settings_firstbox_status3_description: string;
6584
+ striplight_lengthadaptationtext: string;
6585
+ bt_shs_google_button_cancel_enabling: string;
6586
+ striplight_adaptbutton: string;
6587
+ striplight_lengthtitle: string;
6588
+ striplight_actuallength: string;
6529
6589
  };
6530
6590
  hr: {
6531
6591
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -7070,6 +7130,11 @@ declare const _default: {
7070
7130
  socket_settings_firstbox_status1_description: string;
7071
7131
  socket_settings_firstbox_status2_description: string;
7072
7132
  socket_settings_firstbox_status3_description: string;
7133
+ striplight_lengthadaptationtext: string;
7134
+ bt_shs_google_button_cancel_enabling: string;
7135
+ striplight_adaptbutton: string;
7136
+ striplight_lengthtitle: string;
7137
+ striplight_actuallength: string;
7073
7138
  };
7074
7139
  hu: {
7075
7140
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -7614,6 +7679,11 @@ declare const _default: {
7614
7679
  socket_settings_firstbox_status1_description: string;
7615
7680
  socket_settings_firstbox_status2_description: string;
7616
7681
  socket_settings_firstbox_status3_description: string;
7682
+ striplight_lengthadaptationtext: string;
7683
+ bt_shs_google_button_cancel_enabling: string;
7684
+ striplight_adaptbutton: string;
7685
+ striplight_lengthtitle: string;
7686
+ striplight_actuallength: string;
7617
7687
  };
7618
7688
  it: {
7619
7689
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -8158,6 +8228,11 @@ declare const _default: {
8158
8228
  socket_settings_firstbox_status1_description: string;
8159
8229
  socket_settings_firstbox_status2_description: string;
8160
8230
  socket_settings_firstbox_status3_description: string;
8231
+ striplight_lengthadaptationtext: string;
8232
+ bt_shs_google_button_cancel_enabling: string;
8233
+ striplight_adaptbutton: string;
8234
+ striplight_lengthtitle: string;
8235
+ striplight_actuallength: string;
8161
8236
  };
8162
8237
  ko: {
8163
8238
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -8702,6 +8777,11 @@ declare const _default: {
8702
8777
  socket_settings_firstbox_status1_description: string;
8703
8778
  socket_settings_firstbox_status2_description: string;
8704
8779
  socket_settings_firstbox_status3_description: string;
8780
+ striplight_lengthadaptationtext: string;
8781
+ bt_shs_google_button_cancel_enabling: string;
8782
+ striplight_adaptbutton: string;
8783
+ striplight_lengthtitle: string;
8784
+ striplight_actuallength: string;
8705
8785
  };
8706
8786
  lt: {
8707
8787
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -9246,6 +9326,11 @@ declare const _default: {
9246
9326
  socket_settings_firstbox_status1_description: string;
9247
9327
  socket_settings_firstbox_status2_description: string;
9248
9328
  socket_settings_firstbox_status3_description: string;
9329
+ striplight_lengthadaptationtext: string;
9330
+ bt_shs_google_button_cancel_enabling: string;
9331
+ striplight_adaptbutton: string;
9332
+ striplight_lengthtitle: string;
9333
+ striplight_actuallength: string;
9249
9334
  };
9250
9335
  lv: {
9251
9336
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -9790,6 +9875,11 @@ declare const _default: {
9790
9875
  socket_settings_firstbox_status1_description: string;
9791
9876
  socket_settings_firstbox_status2_description: string;
9792
9877
  socket_settings_firstbox_status3_description: string;
9878
+ striplight_lengthadaptationtext: string;
9879
+ bt_shs_google_button_cancel_enabling: string;
9880
+ striplight_adaptbutton: string;
9881
+ striplight_lengthtitle: string;
9882
+ striplight_actuallength: string;
9793
9883
  };
9794
9884
  nb: {
9795
9885
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -10334,6 +10424,11 @@ declare const _default: {
10334
10424
  socket_settings_firstbox_status1_description: string;
10335
10425
  socket_settings_firstbox_status2_description: string;
10336
10426
  socket_settings_firstbox_status3_description: string;
10427
+ striplight_lengthadaptationtext: string;
10428
+ bt_shs_google_button_cancel_enabling: string;
10429
+ striplight_adaptbutton: string;
10430
+ striplight_lengthtitle: string;
10431
+ striplight_actuallength: string;
10337
10432
  };
10338
10433
  nl: {
10339
10434
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -10878,6 +10973,11 @@ declare const _default: {
10878
10973
  socket_settings_firstbox_status1_description: string;
10879
10974
  socket_settings_firstbox_status2_description: string;
10880
10975
  socket_settings_firstbox_status3_description: string;
10976
+ striplight_lengthadaptationtext: string;
10977
+ bt_shs_google_button_cancel_enabling: string;
10978
+ striplight_adaptbutton: string;
10979
+ striplight_lengthtitle: string;
10980
+ striplight_actuallength: string;
10881
10981
  };
10882
10982
  pl: {
10883
10983
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -11422,6 +11522,11 @@ declare const _default: {
11422
11522
  socket_settings_firstbox_status1_description: string;
11423
11523
  socket_settings_firstbox_status2_description: string;
11424
11524
  socket_settings_firstbox_status3_description: string;
11525
+ striplight_lengthadaptationtext: string;
11526
+ bt_shs_google_button_cancel_enabling: string;
11527
+ striplight_adaptbutton: string;
11528
+ striplight_lengthtitle: string;
11529
+ striplight_actuallength: string;
11425
11530
  };
11426
11531
  'pt-BR': {
11427
11532
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -11966,6 +12071,11 @@ declare const _default: {
11966
12071
  socket_settings_firstbox_status1_description: string;
11967
12072
  socket_settings_firstbox_status2_description: string;
11968
12073
  socket_settings_firstbox_status3_description: string;
12074
+ striplight_lengthadaptationtext: string;
12075
+ bt_shs_google_button_cancel_enabling: string;
12076
+ striplight_adaptbutton: string;
12077
+ striplight_lengthtitle: string;
12078
+ striplight_actuallength: string;
11969
12079
  };
11970
12080
  pt_BR: {
11971
12081
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -12510,6 +12620,11 @@ declare const _default: {
12510
12620
  socket_settings_firstbox_status1_description: string;
12511
12621
  socket_settings_firstbox_status2_description: string;
12512
12622
  socket_settings_firstbox_status3_description: string;
12623
+ striplight_lengthadaptationtext: string;
12624
+ bt_shs_google_button_cancel_enabling: string;
12625
+ striplight_adaptbutton: string;
12626
+ striplight_lengthtitle: string;
12627
+ striplight_actuallength: string;
12513
12628
  };
12514
12629
  ro: {
12515
12630
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -13054,6 +13169,11 @@ declare const _default: {
13054
13169
  socket_settings_firstbox_status1_description: string;
13055
13170
  socket_settings_firstbox_status2_description: string;
13056
13171
  socket_settings_firstbox_status3_description: string;
13172
+ striplight_lengthadaptationtext: string;
13173
+ bt_shs_google_button_cancel_enabling: string;
13174
+ striplight_adaptbutton: string;
13175
+ striplight_lengthtitle: string;
13176
+ striplight_actuallength: string;
13057
13177
  };
13058
13178
  ru: {
13059
13179
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -13598,6 +13718,11 @@ declare const _default: {
13598
13718
  socket_settings_firstbox_status1_description: string;
13599
13719
  socket_settings_firstbox_status2_description: string;
13600
13720
  socket_settings_firstbox_status3_description: string;
13721
+ striplight_lengthadaptationtext: string;
13722
+ bt_shs_google_button_cancel_enabling: string;
13723
+ striplight_adaptbutton: string;
13724
+ striplight_lengthtitle: string;
13725
+ striplight_actuallength: string;
13601
13726
  };
13602
13727
  sk: {
13603
13728
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -14142,6 +14267,11 @@ declare const _default: {
14142
14267
  socket_settings_firstbox_status1_description: string;
14143
14268
  socket_settings_firstbox_status2_description: string;
14144
14269
  socket_settings_firstbox_status3_description: string;
14270
+ striplight_lengthadaptationtext: string;
14271
+ bt_shs_google_button_cancel_enabling: string;
14272
+ striplight_adaptbutton: string;
14273
+ striplight_lengthtitle: string;
14274
+ striplight_actuallength: string;
14145
14275
  };
14146
14276
  sv: {
14147
14277
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -14686,6 +14816,11 @@ declare const _default: {
14686
14816
  socket_settings_firstbox_status1_description: string;
14687
14817
  socket_settings_firstbox_status2_description: string;
14688
14818
  socket_settings_firstbox_status3_description: string;
14819
+ striplight_lengthadaptationtext: string;
14820
+ bt_shs_google_button_cancel_enabling: string;
14821
+ striplight_adaptbutton: string;
14822
+ striplight_lengthtitle: string;
14823
+ striplight_actuallength: string;
14689
14824
  };
14690
14825
  tr: {
14691
14826
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -15230,6 +15365,11 @@ declare const _default: {
15230
15365
  socket_settings_firstbox_status1_description: string;
15231
15366
  socket_settings_firstbox_status2_description: string;
15232
15367
  socket_settings_firstbox_status3_description: string;
15368
+ striplight_lengthadaptationtext: string;
15369
+ bt_shs_google_button_cancel_enabling: string;
15370
+ striplight_adaptbutton: string;
15371
+ striplight_lengthtitle: string;
15372
+ striplight_actuallength: string;
15233
15373
  };
15234
15374
  uk: {
15235
15375
  add_new_dynamic_mood_color_changing_mode_value: string;
@@ -15774,6 +15914,11 @@ declare const _default: {
15774
15914
  socket_settings_firstbox_status1_description: string;
15775
15915
  socket_settings_firstbox_status2_description: string;
15776
15916
  socket_settings_firstbox_status3_description: string;
15917
+ striplight_lengthadaptationtext: string;
15918
+ bt_shs_google_button_cancel_enabling: string;
15919
+ striplight_adaptbutton: string;
15920
+ striplight_lengthtitle: string;
15921
+ striplight_actuallength: string;
15777
15922
  };
15778
15923
  };
15779
15924
  export default _default;