@ledvance/group-ui-biz-bundle 1.0.156 → 1.0.157
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
|
@@ -255,6 +255,7 @@ const BiorhythmPage = (props: { theme?: ThemeType }) => {
|
|
|
255
255
|
defaultValue: `${uaGroupInfo.name}`,
|
|
256
256
|
cancelText: I18n.getLang('auto_scan_system_cancel'),
|
|
257
257
|
confirmText: I18n.getLang('auto_scan_system_wifi_confirm'),
|
|
258
|
+
maxLength: 32,
|
|
258
259
|
inputWrapperStyle: {backgroundColor: props.theme?.textInput.background, borderRadius: cx(10)},
|
|
259
260
|
autoFocus: true,
|
|
260
261
|
onConfirm: (data, { close }) => {
|
|
@@ -626,7 +627,6 @@ const BiorhythmPage = (props: { theme?: ThemeType }) => {
|
|
|
626
627
|
<ApplyForDeviceList
|
|
627
628
|
devices={cloneDeep(groupDevices)}
|
|
628
629
|
/>
|
|
629
|
-
<Spacer height={cx(5)} />
|
|
630
630
|
<InfoText
|
|
631
631
|
icon={res.ic_info}
|
|
632
632
|
text={I18n.getLang('group_feature_biological_rhythm_applyfor_information')}
|
|
@@ -238,7 +238,6 @@ function ManualSettings(props: ManualSettingProps) {
|
|
|
238
238
|
<ApplyForDeviceList
|
|
239
239
|
devices={cloneDeep(groupDevices)}
|
|
240
240
|
/>
|
|
241
|
-
<Spacer height={cx(16)} />
|
|
242
241
|
</Card>
|
|
243
242
|
<Spacer />
|
|
244
243
|
</View>
|
|
@@ -314,7 +313,6 @@ function ManualSettings(props: ManualSettingProps) {
|
|
|
314
313
|
<ApplyForDeviceList
|
|
315
314
|
devices={cloneDeep(groupDevices)}
|
|
316
315
|
/>
|
|
317
|
-
<Spacer height={cx(16)} />
|
|
318
316
|
</Card>
|
|
319
317
|
<Spacer />
|
|
320
318
|
</View>
|
|
@@ -398,7 +396,6 @@ function ManualSettings(props: ManualSettingProps) {
|
|
|
398
396
|
<ApplyForDeviceList
|
|
399
397
|
devices={cloneDeep(groupDevices)}
|
|
400
398
|
/>
|
|
401
|
-
<Spacer height={cx(16)} />
|
|
402
399
|
</Card>
|
|
403
400
|
<Spacer />
|
|
404
401
|
</View>
|
|
@@ -504,7 +501,6 @@ function ManualSettings(props: ManualSettingProps) {
|
|
|
504
501
|
<ApplyForDeviceList
|
|
505
502
|
devices={cloneDeep(groupDevices)}
|
|
506
503
|
/>
|
|
507
|
-
<Spacer height={cx(16)} />
|
|
508
504
|
</Card>
|
|
509
505
|
<Spacer />
|
|
510
506
|
</View>
|
|
@@ -537,7 +533,6 @@ function ManualSettings(props: ManualSettingProps) {
|
|
|
537
533
|
<ApplyForDeviceList
|
|
538
534
|
devices={cloneDeep(groupDevices)}
|
|
539
535
|
/>
|
|
540
|
-
<Spacer height={cx(16)} />
|
|
541
536
|
</Card>
|
|
542
537
|
)
|
|
543
538
|
}, [state.deviceData, state.applyForList, props.theme?.type])
|