@ledvance/ui-biz-bundle 1.1.68 → 1.1.69
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/.babelrc +31 -31
- package/.eslintignore +5 -5
- package/.eslintrc.js +27 -27
- package/.prettierrc.js +1 -1
- package/.versionrc +5 -5
- package/package.json +74 -74
- package/rn-cli.config.js +8 -8
- package/src/hooks/DeviceDpStateHooks.d.ts +14 -14
- package/src/hooks/DeviceDpStateHooks.ts +50 -50
- package/src/modules/biorhythm/BiorhythmActions.d.ts +8 -8
- package/src/modules/biorhythm/BiorhythmActions.ts +324 -324
- package/src/modules/biorhythm/BiorhythmBean.d.ts +58 -58
- package/src/modules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/modules/biorhythm/BiorhythmEditPage.d.ts +14 -14
- package/src/modules/biorhythm/BiorhythmEditPage.tsx +324 -324
- package/src/modules/biorhythm/BiorhythmPage.d.ts +10 -10
- package/src/modules/biorhythm/BiorhythmPage.tsx +796 -796
- package/src/modules/biorhythm/IconSelect.d.ts +2 -2
- package/src/modules/biorhythm/IconSelect.tsx +81 -81
- package/src/modules/biorhythm/Router.ts +34 -34
- package/src/modules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/modules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/modules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/modules/biorhythm/circular/Progress.tsx +411 -411
- package/src/modules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/modules/biorhythm/circular/TimeCircular.tsx +70 -70
- package/src/modules/biorhythm/iconListData.d.ts +7 -7
- package/src/modules/biorhythm/iconListData.ts +29 -29
- package/src/modules/biorhythm/pIdList.d.ts +2 -2
- package/src/modules/biorhythm/pIdList.ts +35 -35
- package/src/modules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/modules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/modules/config/ldvConfig.d.ts +2 -2
- package/src/modules/config/ldvConfig.tsx +18 -18
- package/src/modules/fixedTime/FixedTimeActions.ts +173 -173
- package/src/modules/fixedTime/FixedTimeDetailPage.tsx +372 -372
- package/src/modules/fixedTime/FixedTimePage.tsx +213 -213
- package/src/modules/fixedTime/Router.ts +26 -26
- package/src/modules/flags/FlagActions.ts +267 -267
- package/src/modules/flags/FlagEditPage.tsx +441 -441
- package/src/modules/flags/FlagInfo.tsx +563 -563
- package/src/modules/flags/FlagItem.tsx +90 -90
- package/src/modules/flags/FlagPage.tsx +277 -277
- package/src/modules/flags/Router.ts +25 -25
- package/src/modules/history/HistoryPage.d.ts +2 -2
- package/src/modules/history/HistoryPage.tsx +261 -261
- package/src/modules/history/Router.ts +16 -16
- package/src/modules/history/SwitchHistoryPageActions.d.ts +14 -14
- package/src/modules/history/SwitchHistoryPageActions.ts +76 -76
- package/src/modules/mood/AddMoodPage.d.ts +10 -10
- package/src/modules/mood/AddMoodPage.tsx +792 -792
- package/src/modules/mood/DynamicMoodEditorPage.d.ts +6 -6
- package/src/modules/mood/DynamicMoodEditorPage.tsx +561 -561
- package/src/modules/mood/FantasyMood.tsx +176 -176
- package/src/modules/mood/FantasyMoodEditPage.tsx +582 -582
- package/src/modules/mood/FantasyMoodItem.tsx +104 -104
- package/src/modules/mood/FantasyRouter.ts +35 -35
- package/src/modules/mood/MixMood/AddMixMoodPage.tsx +247 -247
- package/src/modules/mood/MixMood/MixMoodActions.ts +128 -128
- package/src/modules/mood/MixMood/MixMoodEditPage.tsx +721 -721
- package/src/modules/mood/MixMood/MixMoodItem.tsx +134 -134
- package/src/modules/mood/MixMood/MixMoodPage.tsx +326 -326
- package/src/modules/mood/MixMood/MixSceneBeans.ts +364 -364
- package/src/modules/mood/MixMood/RecommendMixMoodItem.tsx +69 -69
- package/src/modules/mood/MixMood/Router.ts +44 -44
- package/src/modules/mood/MoodItem.d.ts +11 -11
- package/src/modules/mood/MoodItem.tsx +114 -114
- package/src/modules/mood/MoodPage.d.ts +16 -16
- package/src/modules/mood/MoodPage.tsx +296 -296
- package/src/modules/mood/RecommendMoodItem.d.ts +13 -13
- package/src/modules/mood/RecommendMoodItem.tsx +74 -74
- package/src/modules/mood/Router.ts +53 -53
- package/src/modules/mood/StaticMoodEditorPage.d.ts +16 -16
- package/src/modules/mood/StaticMoodEditorPage.tsx +320 -320
- package/src/modules/mood/tools.d.ts +3 -3
- package/src/modules/mood/tools.ts +11 -11
- package/src/modules/music/MusicDataBean.d.ts +47 -47
- package/src/modules/music/MusicDataBean.ts +167 -167
- package/src/modules/music/MusicManager.d.ts +27 -27
- package/src/modules/music/MusicManager.ts +207 -207
- package/src/modules/music/MusicPage.d.ts +10 -10
- package/src/modules/music/MusicPage.tsx +347 -347
- package/src/modules/music/MusicPageActions.d.ts +35 -35
- package/src/modules/music/MusicPageActions.ts +317 -317
- package/src/modules/music/Router.ts +16 -16
- package/src/modules/music/SelecetGenre.d.ts +7 -7
- package/src/modules/music/SelecetGenre.tsx +63 -63
- package/src/modules/music/color.d.ts +2 -2
- package/src/modules/music/color.ts +73 -73
- package/src/modules/music/res/index.d.ts +10 -10
- package/src/modules/music/res/index.ts +9 -9
- package/src/modules/powerOnBehavior/PowerOnBehaviorActions.ts +11 -11
- package/src/modules/powerOnBehavior/PowerOnBehaviorPage.tsx +173 -173
- package/src/modules/powerOnBehavior/Router.ts +16 -16
- package/src/modules/randomTime/RandomTimeActions.ts +160 -160
- package/src/modules/randomTime/RandomTimeDetailPage.tsx +337 -337
- package/src/modules/randomTime/RandomTimePage.tsx +214 -214
- package/src/modules/randomTime/Router.ts +25 -25
- package/src/modules/randomTime/Summary.tsx +122 -122
- package/src/modules/scene/SceneAction.d.ts +13 -13
- package/src/modules/scene/SceneAction.ts +473 -473
- package/src/modules/scene/SceneDetailPage.d.ts +1 -1
- package/src/modules/scene/SceneDetailPage.tsx +421 -421
- package/src/modules/scene/SceneInfo.d.ts +72 -72
- package/src/modules/scene/SceneInfo.ts +1059 -1059
- package/src/modules/scene/ScenePage.d.ts +7 -7
- package/src/modules/scene/ScenePage.tsx +147 -147
- package/src/modules/select/SelectPage.d.ts +12 -12
- package/src/modules/select/SelectPage.tsx +137 -137
- package/src/modules/sleepWakeup/DeviceState.d.ts +9 -9
- package/src/modules/sleepWakeup/DeviceState.tsx +99 -99
- package/src/modules/sleepWakeup/LdvScheduleItem.d.ts +15 -15
- package/src/modules/sleepWakeup/LdvScheduleItem.tsx +176 -176
- package/src/modules/sleepWakeup/Router.ts +25 -25
- package/src/modules/sleepWakeup/SleepWakeUpActions.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpActions.ts +180 -180
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.d.ts +2 -2
- package/src/modules/sleepWakeup/SleepWakeUpDetailPage.tsx +616 -616
- package/src/modules/sleepWakeup/SleepWakeUpPage.d.ts +13 -13
- package/src/modules/sleepWakeup/SleepWakeUpPage.tsx +424 -424
- package/src/modules/sleepWakeup/utils.d.ts +44 -44
- package/src/modules/sleepWakeup/utils.ts +253 -253
- package/src/modules/timeSchedule/DeviceState.d.ts +17 -17
- package/src/modules/timeSchedule/DeviceState.tsx +94 -94
- package/src/modules/timeSchedule/LdvScheduleItem.d.ts +15 -15
- package/src/modules/timeSchedule/LdvScheduleItem.tsx +130 -130
- package/src/modules/timeSchedule/ManualSetting.d.ts +14 -14
- package/src/modules/timeSchedule/ManualSetting.tsx +219 -219
- package/src/modules/timeSchedule/MoodSetting.d.ts +11 -11
- package/src/modules/timeSchedule/MoodSetting.tsx +228 -228
- package/src/modules/timeSchedule/Router.ts +25 -25
- package/src/modules/timeSchedule/ScheduleScene.d.ts +6 -6
- package/src/modules/timeSchedule/ScheduleScene.tsx +144 -144
- package/src/modules/timeSchedule/SingleLightView.d.ts +12 -12
- package/src/modules/timeSchedule/SingleLightView.tsx +175 -175
- package/src/modules/timeSchedule/TimeScheduleBean.d.ts +14 -14
- package/src/modules/timeSchedule/TimeScheduleBean.ts +18 -18
- package/src/modules/timeSchedule/TimeScheduleEditpage.d.ts +6 -6
- package/src/modules/timeSchedule/TimeScheduleEditpage.tsx +765 -765
- package/src/modules/timeSchedule/TimeSchedulePage.d.ts +13 -13
- package/src/modules/timeSchedule/TimeSchedulePage.tsx +358 -358
- package/src/modules/timeSchedule/components/ColorList.ts +23 -23
- package/src/modules/timeSchedule/components/LampSwitchCard.tsx +106 -106
- package/src/modules/timeSchedule/mix/MixLightActions.d.ts +3 -3
- package/src/modules/timeSchedule/mix/MixLightActions.ts +49 -49
- package/src/modules/timeSchedule/mix/MixLightBean.d.ts +10 -10
- package/src/modules/timeSchedule/mix/MixLightBean.ts +9 -9
- package/src/modules/timeSchedule/mix/MixLightView.d.ts +7 -7
- package/src/modules/timeSchedule/mix/MixLightView.tsx +197 -197
- package/src/modules/timeSchedule/utils.d.ts +1 -1
- package/src/modules/timeSchedule/utils.ts +6 -6
- package/src/modules/timer/Router.ts +16 -16
- package/src/modules/timer/TimerPage.d.ts +11 -11
- package/src/modules/timer/TimerPage.tsx +384 -384
- package/src/modules/timer/TimerPageAction.d.ts +22 -22
- package/src/modules/timer/TimerPageAction.ts +131 -131
- package/src/navigation/Routers.d.ts +15 -15
- package/src/navigation/Routers.ts +46 -46
- package/src/navigation/tools.d.ts +9 -9
- package/src/navigation/tools.ts +21 -21
- package/src/newModules/biorhythm/BiorhythmActions.ts +374 -374
- package/src/newModules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/newModules/biorhythm/BiorhythmEditPage.tsx +267 -267
- package/src/newModules/biorhythm/BiorhythmPage.tsx +642 -642
- package/src/newModules/biorhythm/IconSelect.tsx +84 -84
- package/src/newModules/biorhythm/Router.ts +33 -33
- package/src/newModules/biorhythm/circular/ItemIcon.d.ts +22 -22
- package/src/newModules/biorhythm/circular/ItemIcon.tsx +172 -172
- package/src/newModules/biorhythm/circular/Progress.d.ts +24 -24
- package/src/newModules/biorhythm/circular/Progress.tsx +371 -371
- package/src/newModules/biorhythm/circular/TimeCircular.d.ts +11 -11
- package/src/newModules/biorhythm/circular/TimeCircular.tsx +64 -64
- package/src/newModules/biorhythm/iconListData.ts +29 -29
- package/src/newModules/biorhythm/pIdList.ts +35 -35
- package/src/newModules/biorhythm/res/BiologicalRes.d.ts +43 -43
- package/src/newModules/biorhythm/res/BiologicalRes.ts +41 -41
- package/src/newModules/childLock/ChildLockPage.tsx +97 -97
- package/src/newModules/childLock/Router.ts +16 -16
- package/src/newModules/energyConsumption/EnergyConsumptionActions.ts +23 -23
- package/src/newModules/energyConsumption/EnergyConsumptionChart.tsx +84 -84
- package/src/newModules/energyConsumption/EnergyConsumptionDetail.tsx +322 -322
- package/src/newModules/energyConsumption/EnergyConsumptionPage.tsx +393 -393
- package/src/newModules/energyConsumption/Router.ts +34 -34
- package/src/newModules/energyConsumption/co2Data.ts +23655 -23655
- package/src/newModules/energyConsumption/component/BarChart.tsx +93 -93
- package/src/newModules/energyConsumption/component/EnergyModal.tsx +284 -284
- package/src/newModules/energyConsumption/component/Overview.tsx +118 -118
- package/src/newModules/fixedTime/FixedTimeActions.ts +241 -241
- package/src/newModules/fixedTime/FixedTimeDetailPage.tsx +345 -345
- package/src/newModules/fixedTime/FixedTimePage.tsx +302 -302
- package/src/newModules/fixedTime/Router.ts +25 -25
- package/src/newModules/lightMode/LightModePage.tsx +204 -204
- package/src/newModules/lightMode/Router.ts +16 -16
- package/src/newModules/mood/AddMoodPage.tsx +194 -194
- package/src/newModules/mood/DynamicMoodEditorPage.tsx +650 -650
- package/src/newModules/mood/Interface.ts +220 -220
- package/src/newModules/mood/MixDynamicMoodEditor.tsx +786 -786
- package/src/newModules/mood/MoodActions.ts +232 -232
- package/src/newModules/mood/MoodInfo.ts +2151 -2151
- package/src/newModules/mood/MoodItem.tsx +160 -160
- package/src/newModules/mood/MoodPage.tsx +386 -386
- package/src/newModules/mood/MoodParse.ts +443 -443
- package/src/newModules/mood/RecommendMoodItem.tsx +81 -81
- package/src/newModules/mood/Router.ts +43 -43
- package/src/newModules/mood/StaticMoodEditorPage.tsx +290 -290
- package/src/newModules/overchargeSwitch/OverchargeSwitchPage.tsx +96 -96
- package/src/newModules/overchargeSwitch/Router.ts +16 -16
- package/src/newModules/powerOnBehavior/LightBehaviorPage.tsx +266 -266
- package/src/newModules/powerOnBehavior/PlugBehaviorPage.tsx +173 -173
- package/src/newModules/powerOnBehavior/PowerOnBehaviorActions.ts +106 -106
- package/src/newModules/powerOnBehavior/Router.ts +27 -27
- package/src/newModules/randomTime/RandomTimeActions.ts +238 -238
- package/src/newModules/randomTime/RandomTimeDetailPage.tsx +325 -325
- package/src/newModules/randomTime/RandomTimePage.tsx +299 -299
- package/src/newModules/randomTime/Router.ts +25 -25
- package/src/newModules/randomTime/Summary.tsx +116 -116
- package/src/newModules/remoteControl/RemoteControlActions.ts +5 -5
- package/src/newModules/remoteControl/RemoteControlPage.tsx +51 -51
- package/src/newModules/remoteControl/Router.ts +15 -15
- package/src/newModules/select/Route.ts +16 -16
- package/src/newModules/select/SelectPage.d.ts +12 -12
- package/src/newModules/select/SelectPage.tsx +137 -137
- package/src/newModules/sleepWakeUp/Interface.ts +69 -69
- package/src/newModules/sleepWakeUp/Router.ts +24 -24
- package/src/newModules/sleepWakeUp/SleepWakeUpActions.ts +317 -317
- package/src/newModules/sleepWakeUp/SleepWakeUpDetailPage.tsx +661 -661
- package/src/newModules/sleepWakeUp/SleepWakeUpPage.tsx +455 -455
- package/src/newModules/sleepWakeUp/utils.ts +253 -253
- package/src/newModules/swithInching/Router.ts +16 -16
- package/src/newModules/swithInching/SwithInching.tsx +231 -231
- package/src/newModules/swithInching/SwithInchingAction.ts +55 -55
- package/src/newModules/swithInching/pickerView.tsx +91 -91
- package/src/newModules/timeSchedule/Interface.ts +142 -142
- package/src/newModules/timeSchedule/Router.ts +25 -25
- package/src/newModules/timeSchedule/TimeScheduleActions.ts +53 -53
- package/src/newModules/timeSchedule/TimeScheduleDetailPage.tsx +648 -648
- package/src/newModules/timeSchedule/TimeSchedulePage.tsx +253 -253
- package/src/newModules/timeSchedule/components/ManuaSettings.tsx +460 -460
- package/src/newModules/timeSchedule/components/ScheduleCard.tsx +125 -125
- package/tsconfig.json +50 -50
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Plan } from '../BiorhythmBean';
|
|
2
|
-
interface TimeCircularProps {
|
|
3
|
-
planList: Plan[];
|
|
4
|
-
onPanMoved?: (id: number, time: string) => void;
|
|
5
|
-
planEdit?: Boolean;
|
|
6
|
-
replaceStatus?: Boolean;
|
|
7
|
-
gradient?: Boolean;
|
|
8
|
-
isSupportTemperature: boolean;
|
|
9
|
-
}
|
|
10
|
-
declare const TimeCircular: (props?: TimeCircularProps) => any;
|
|
11
|
-
export default TimeCircular;
|
|
1
|
+
import { Plan } from '../BiorhythmBean';
|
|
2
|
+
interface TimeCircularProps {
|
|
3
|
+
planList: Plan[];
|
|
4
|
+
onPanMoved?: (id: number, time: string) => void;
|
|
5
|
+
planEdit?: Boolean;
|
|
6
|
+
replaceStatus?: Boolean;
|
|
7
|
+
gradient?: Boolean;
|
|
8
|
+
isSupportTemperature: boolean;
|
|
9
|
+
}
|
|
10
|
+
declare const TimeCircular: (props?: TimeCircularProps) => any;
|
|
11
|
+
export default TimeCircular;
|
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
import React, {useEffect, useState} from 'react'
|
|
2
|
-
import {Image, StyleSheet, View} from 'react-native'
|
|
3
|
-
import Progress from './Progress'
|
|
4
|
-
import {Plan} from '../BiorhythmBean'
|
|
5
|
-
import {getSystemTimeFormat} from '@ledvance/base/src/api/native'
|
|
6
|
-
import BiologicalRes from '../res/BiologicalRes'
|
|
7
|
-
|
|
8
|
-
interface TimeCircularProps {
|
|
9
|
-
planList: Plan[]
|
|
10
|
-
onPanMoved?: (id: number, time: string) => void
|
|
11
|
-
planEdit?: Boolean
|
|
12
|
-
replaceStatus?: Boolean
|
|
13
|
-
gradient?: Boolean
|
|
14
|
-
isSupportTemperature: boolean
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
const TimeCircular = (
|
|
18
|
-
props: TimeCircularProps = {
|
|
19
|
-
planList: [],
|
|
20
|
-
planEdit: false,
|
|
21
|
-
replaceStatus: false,
|
|
22
|
-
gradient: false,
|
|
23
|
-
isSupportTemperature: false,
|
|
24
|
-
},
|
|
25
|
-
) => {
|
|
26
|
-
const {planList, onPanMoved, planEdit, replaceStatus, gradient, isSupportTemperature} = props
|
|
27
|
-
const styles = dynamicStyleSheet
|
|
28
|
-
|
|
29
|
-
const enabledPlanList = planList.filter(plan => plan.enable)
|
|
30
|
-
const [timeDialPic, setTimeDialPic] = useState(BiologicalRes.ic_warning_amber_sun)
|
|
31
|
-
|
|
32
|
-
useEffect(() => {
|
|
33
|
-
const updateDialPic = async () => {
|
|
34
|
-
const is24Hour = await getSystemTimeFormat() === 24
|
|
35
|
-
if (is24Hour) {
|
|
36
|
-
setTimeDialPic(replaceStatus ? BiologicalRes.ic_warning_amber_sun : BiologicalRes.ic_warning_amber_new)
|
|
37
|
-
} else {
|
|
38
|
-
setTimeDialPic(replaceStatus ? BiologicalRes.ic_warning_amber_sun_12 : BiologicalRes.ic_warning_amber_new_12)
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
updateDialPic().then()
|
|
43
|
-
}, [replaceStatus])
|
|
44
|
-
|
|
45
|
-
return (
|
|
46
|
-
<View style={styles.container}>
|
|
47
|
-
<Progress
|
|
48
|
-
radius={130}
|
|
49
|
-
annularHeight={44}
|
|
50
|
-
timeIconList={enabledPlanList}
|
|
51
|
-
planEdit={planEdit}
|
|
52
|
-
gradient={gradient}
|
|
53
|
-
isSupportTemperature={isSupportTemperature}
|
|
54
|
-
onPanMoved={(id: number, time: string) => {
|
|
55
|
-
onPanMoved && onPanMoved(id, time)
|
|
56
|
-
}}>
|
|
57
|
-
<Image source={timeDialPic} style={{width: 172, height: 172}}/>
|
|
58
|
-
</Progress>
|
|
59
|
-
</View>
|
|
60
|
-
)
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
const dynamicStyleSheet = StyleSheet.create({
|
|
64
|
-
container: {
|
|
65
|
-
alignItems: 'center',
|
|
66
|
-
justifyContent: 'center',
|
|
67
|
-
},
|
|
68
|
-
})
|
|
69
|
-
|
|
70
|
-
export default TimeCircular
|
|
1
|
+
import React, {useEffect, useState} from 'react'
|
|
2
|
+
import {Image, StyleSheet, View} from 'react-native'
|
|
3
|
+
import Progress from './Progress'
|
|
4
|
+
import {Plan} from '../BiorhythmBean'
|
|
5
|
+
import {getSystemTimeFormat} from '@ledvance/base/src/api/native'
|
|
6
|
+
import BiologicalRes from '../res/BiologicalRes'
|
|
7
|
+
|
|
8
|
+
interface TimeCircularProps {
|
|
9
|
+
planList: Plan[]
|
|
10
|
+
onPanMoved?: (id: number, time: string) => void
|
|
11
|
+
planEdit?: Boolean
|
|
12
|
+
replaceStatus?: Boolean
|
|
13
|
+
gradient?: Boolean
|
|
14
|
+
isSupportTemperature: boolean
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
const TimeCircular = (
|
|
18
|
+
props: TimeCircularProps = {
|
|
19
|
+
planList: [],
|
|
20
|
+
planEdit: false,
|
|
21
|
+
replaceStatus: false,
|
|
22
|
+
gradient: false,
|
|
23
|
+
isSupportTemperature: false,
|
|
24
|
+
},
|
|
25
|
+
) => {
|
|
26
|
+
const {planList, onPanMoved, planEdit, replaceStatus, gradient, isSupportTemperature} = props
|
|
27
|
+
const styles = dynamicStyleSheet
|
|
28
|
+
|
|
29
|
+
const enabledPlanList = planList.filter(plan => plan.enable)
|
|
30
|
+
const [timeDialPic, setTimeDialPic] = useState(BiologicalRes.ic_warning_amber_sun)
|
|
31
|
+
|
|
32
|
+
useEffect(() => {
|
|
33
|
+
const updateDialPic = async () => {
|
|
34
|
+
const is24Hour = await getSystemTimeFormat() === 24
|
|
35
|
+
if (is24Hour) {
|
|
36
|
+
setTimeDialPic(replaceStatus ? BiologicalRes.ic_warning_amber_sun : BiologicalRes.ic_warning_amber_new)
|
|
37
|
+
} else {
|
|
38
|
+
setTimeDialPic(replaceStatus ? BiologicalRes.ic_warning_amber_sun_12 : BiologicalRes.ic_warning_amber_new_12)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
updateDialPic().then()
|
|
43
|
+
}, [replaceStatus])
|
|
44
|
+
|
|
45
|
+
return (
|
|
46
|
+
<View style={styles.container}>
|
|
47
|
+
<Progress
|
|
48
|
+
radius={130}
|
|
49
|
+
annularHeight={44}
|
|
50
|
+
timeIconList={enabledPlanList}
|
|
51
|
+
planEdit={planEdit}
|
|
52
|
+
gradient={gradient}
|
|
53
|
+
isSupportTemperature={isSupportTemperature}
|
|
54
|
+
onPanMoved={(id: number, time: string) => {
|
|
55
|
+
onPanMoved && onPanMoved(id, time)
|
|
56
|
+
}}>
|
|
57
|
+
<Image source={timeDialPic} style={{width: 172, height: 172}}/>
|
|
58
|
+
</Progress>
|
|
59
|
+
</View>
|
|
60
|
+
)
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
const dynamicStyleSheet = StyleSheet.create({
|
|
64
|
+
container: {
|
|
65
|
+
alignItems: 'center',
|
|
66
|
+
justifyContent: 'center',
|
|
67
|
+
},
|
|
68
|
+
})
|
|
69
|
+
|
|
70
|
+
export default TimeCircular
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
declare const iconList: {
|
|
2
|
-
id: number;
|
|
3
|
-
icon: any;
|
|
4
|
-
selectStatus: boolean;
|
|
5
|
-
disabled: boolean;
|
|
6
|
-
}[];
|
|
7
|
-
export default iconList;
|
|
1
|
+
declare const iconList: {
|
|
2
|
+
id: number;
|
|
3
|
+
icon: any;
|
|
4
|
+
selectStatus: boolean;
|
|
5
|
+
disabled: boolean;
|
|
6
|
+
}[];
|
|
7
|
+
export default iconList;
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
import BiologicalRes from './res/BiologicalRes'
|
|
2
|
-
|
|
3
|
-
const iconList = [
|
|
4
|
-
{id: 1, icon: BiologicalRes.biorhythom_Icon1, selectStatus: false, disabled: false},
|
|
5
|
-
{id: 2, icon: BiologicalRes.biorhythom_Icon2, selectStatus: false, disabled: false},
|
|
6
|
-
{id: 3, icon: BiologicalRes.biorhythom_Icon3, selectStatus: false, disabled: false},
|
|
7
|
-
{id: 4, icon: BiologicalRes.biorhythom_Icon4, selectStatus: false, disabled: false},
|
|
8
|
-
{id: 5, icon: BiologicalRes.biorhythom_Icon5, selectStatus: false, disabled: false},
|
|
9
|
-
{id: 6, icon: BiologicalRes.biorhythom_Icon6, selectStatus: false, disabled: false},
|
|
10
|
-
{id: 7, icon: BiologicalRes.biorhythom_Icon7, selectStatus: false, disabled: false},
|
|
11
|
-
{id: 8, icon: BiologicalRes.biorhythom_Icon8, selectStatus: false, disabled: false},
|
|
12
|
-
{id: 9, icon: BiologicalRes.biorhythom_Icon9, selectStatus: false, disabled: false},
|
|
13
|
-
{id: 10, icon: BiologicalRes.biorhythom_Icon10, selectStatus: false, disabled: false},
|
|
14
|
-
{id: 11, icon: BiologicalRes.biorhythom_Icon11, selectStatus: false, disabled: false},
|
|
15
|
-
{id: 12, icon: BiologicalRes.biorhythom_Icon12, selectStatus: false, disabled: false},
|
|
16
|
-
{id: 13, icon: BiologicalRes.biorhythom_Icon13, selectStatus: false, disabled: false},
|
|
17
|
-
{id: 14, icon: BiologicalRes.biorhythom_Icon14, selectStatus: false, disabled: false},
|
|
18
|
-
{id: 15, icon: BiologicalRes.biorhythom_Icon15, selectStatus: false, disabled: false},
|
|
19
|
-
{id: 16, icon: BiologicalRes.biorhythom_Icon16, selectStatus: false, disabled: false},
|
|
20
|
-
{id: 17, icon: BiologicalRes.biorhythom_Icon17, selectStatus: false, disabled: false},
|
|
21
|
-
{id: 18, icon: BiologicalRes.biorhythom_Icon18, selectStatus: false, disabled: false},
|
|
22
|
-
{id: 19, icon: BiologicalRes.biorhythom_Icon19, selectStatus: false, disabled: false},
|
|
23
|
-
{id: 20, icon: BiologicalRes.biorhythom_Icon20, selectStatus: false, disabled: false},
|
|
24
|
-
{id: 21, icon: BiologicalRes.biorhythom_Icon21, selectStatus: false, disabled: false},
|
|
25
|
-
{id: 22, icon: BiologicalRes.biorhythom_Icon22, selectStatus: false, disabled: false},
|
|
26
|
-
{id: 23, icon: BiologicalRes.biorhythom_Icon23, selectStatus: false, disabled: false},
|
|
27
|
-
{id: 24, icon: BiologicalRes.biorhythom_Icon24, selectStatus: false, disabled: false},
|
|
28
|
-
]
|
|
29
|
-
|
|
1
|
+
import BiologicalRes from './res/BiologicalRes'
|
|
2
|
+
|
|
3
|
+
const iconList = [
|
|
4
|
+
{id: 1, icon: BiologicalRes.biorhythom_Icon1, selectStatus: false, disabled: false},
|
|
5
|
+
{id: 2, icon: BiologicalRes.biorhythom_Icon2, selectStatus: false, disabled: false},
|
|
6
|
+
{id: 3, icon: BiologicalRes.biorhythom_Icon3, selectStatus: false, disabled: false},
|
|
7
|
+
{id: 4, icon: BiologicalRes.biorhythom_Icon4, selectStatus: false, disabled: false},
|
|
8
|
+
{id: 5, icon: BiologicalRes.biorhythom_Icon5, selectStatus: false, disabled: false},
|
|
9
|
+
{id: 6, icon: BiologicalRes.biorhythom_Icon6, selectStatus: false, disabled: false},
|
|
10
|
+
{id: 7, icon: BiologicalRes.biorhythom_Icon7, selectStatus: false, disabled: false},
|
|
11
|
+
{id: 8, icon: BiologicalRes.biorhythom_Icon8, selectStatus: false, disabled: false},
|
|
12
|
+
{id: 9, icon: BiologicalRes.biorhythom_Icon9, selectStatus: false, disabled: false},
|
|
13
|
+
{id: 10, icon: BiologicalRes.biorhythom_Icon10, selectStatus: false, disabled: false},
|
|
14
|
+
{id: 11, icon: BiologicalRes.biorhythom_Icon11, selectStatus: false, disabled: false},
|
|
15
|
+
{id: 12, icon: BiologicalRes.biorhythom_Icon12, selectStatus: false, disabled: false},
|
|
16
|
+
{id: 13, icon: BiologicalRes.biorhythom_Icon13, selectStatus: false, disabled: false},
|
|
17
|
+
{id: 14, icon: BiologicalRes.biorhythom_Icon14, selectStatus: false, disabled: false},
|
|
18
|
+
{id: 15, icon: BiologicalRes.biorhythom_Icon15, selectStatus: false, disabled: false},
|
|
19
|
+
{id: 16, icon: BiologicalRes.biorhythom_Icon16, selectStatus: false, disabled: false},
|
|
20
|
+
{id: 17, icon: BiologicalRes.biorhythom_Icon17, selectStatus: false, disabled: false},
|
|
21
|
+
{id: 18, icon: BiologicalRes.biorhythom_Icon18, selectStatus: false, disabled: false},
|
|
22
|
+
{id: 19, icon: BiologicalRes.biorhythom_Icon19, selectStatus: false, disabled: false},
|
|
23
|
+
{id: 20, icon: BiologicalRes.biorhythom_Icon20, selectStatus: false, disabled: false},
|
|
24
|
+
{id: 21, icon: BiologicalRes.biorhythom_Icon21, selectStatus: false, disabled: false},
|
|
25
|
+
{id: 22, icon: BiologicalRes.biorhythom_Icon22, selectStatus: false, disabled: false},
|
|
26
|
+
{id: 23, icon: BiologicalRes.biorhythom_Icon23, selectStatus: false, disabled: false},
|
|
27
|
+
{id: 24, icon: BiologicalRes.biorhythom_Icon24, selectStatus: false, disabled: false},
|
|
28
|
+
]
|
|
29
|
+
|
|
30
30
|
export default iconList
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const pIdList: string[];
|
|
2
|
-
export default pIdList;
|
|
1
|
+
declare const pIdList: string[];
|
|
2
|
+
export default pIdList;
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
const pIdList = [
|
|
2
|
-
'2tb7pu47xmtakusc',
|
|
3
|
-
'jde6i6cjuqafvhep',
|
|
4
|
-
'nertorg6rigv9kcs',
|
|
5
|
-
'upbvn0aceeduokg8',
|
|
6
|
-
'vz1ecmcefgtcjmze',
|
|
7
|
-
'9pub2u7xzwe3luhn',
|
|
8
|
-
'eyqghznptocb0c09',
|
|
9
|
-
'qrj3ubhrz2udkkp3',
|
|
10
|
-
'edlnwro9m0jhogfk',
|
|
11
|
-
'qaf91tzgkjhzxdlg',
|
|
12
|
-
'yy0mpo6vahmhhnyx',
|
|
13
|
-
'pfdsrf1aa9p2iqm7',
|
|
14
|
-
'aanbfdroxoikeemq',
|
|
15
|
-
'n19x26xmhzsoduoc',
|
|
16
|
-
'cnwub7a6xrvr8tg1',
|
|
17
|
-
'ix2a1uedckqziihs',
|
|
18
|
-
'hlodwjcku419f9q3',
|
|
19
|
-
'ntdbtyr4e5rk0nva',
|
|
20
|
-
'ck9ujelnqptkc2gu',
|
|
21
|
-
'poor3eeaue1xtmtj',
|
|
22
|
-
'f84gfg5bqwopeh6b',
|
|
23
|
-
'11w17umtgr8i7pzr',
|
|
24
|
-
'bivme7hztqwtansf',
|
|
25
|
-
'3eeippeoos24ebym',
|
|
26
|
-
'greysrcf5qraouxc',
|
|
27
|
-
'zadmgcev0sjzfzxx',
|
|
28
|
-
'wdk5pdrtqlguvbhx',
|
|
29
|
-
'rfzv1m0tt7bczqaf',
|
|
30
|
-
'qusibjjgjyarjs6w',
|
|
31
|
-
'hqad0c0jizozhhzl',
|
|
32
|
-
'bvctkpyefwowjfnh',
|
|
33
|
-
'z7g5wwtayzypqhdo',
|
|
34
|
-
]
|
|
35
|
-
|
|
1
|
+
const pIdList = [
|
|
2
|
+
'2tb7pu47xmtakusc',
|
|
3
|
+
'jde6i6cjuqafvhep',
|
|
4
|
+
'nertorg6rigv9kcs',
|
|
5
|
+
'upbvn0aceeduokg8',
|
|
6
|
+
'vz1ecmcefgtcjmze',
|
|
7
|
+
'9pub2u7xzwe3luhn',
|
|
8
|
+
'eyqghznptocb0c09',
|
|
9
|
+
'qrj3ubhrz2udkkp3',
|
|
10
|
+
'edlnwro9m0jhogfk',
|
|
11
|
+
'qaf91tzgkjhzxdlg',
|
|
12
|
+
'yy0mpo6vahmhhnyx',
|
|
13
|
+
'pfdsrf1aa9p2iqm7',
|
|
14
|
+
'aanbfdroxoikeemq',
|
|
15
|
+
'n19x26xmhzsoduoc',
|
|
16
|
+
'cnwub7a6xrvr8tg1',
|
|
17
|
+
'ix2a1uedckqziihs',
|
|
18
|
+
'hlodwjcku419f9q3',
|
|
19
|
+
'ntdbtyr4e5rk0nva',
|
|
20
|
+
'ck9ujelnqptkc2gu',
|
|
21
|
+
'poor3eeaue1xtmtj',
|
|
22
|
+
'f84gfg5bqwopeh6b',
|
|
23
|
+
'11w17umtgr8i7pzr',
|
|
24
|
+
'bivme7hztqwtansf',
|
|
25
|
+
'3eeippeoos24ebym',
|
|
26
|
+
'greysrcf5qraouxc',
|
|
27
|
+
'zadmgcev0sjzfzxx',
|
|
28
|
+
'wdk5pdrtqlguvbhx',
|
|
29
|
+
'rfzv1m0tt7bczqaf',
|
|
30
|
+
'qusibjjgjyarjs6w',
|
|
31
|
+
'hqad0c0jizozhhzl',
|
|
32
|
+
'bvctkpyefwowjfnh',
|
|
33
|
+
'z7g5wwtayzypqhdo',
|
|
34
|
+
]
|
|
35
|
+
|
|
36
36
|
export default pIdList
|
|
@@ -1,43 +1,43 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
ic_warning_amber_sun: any;
|
|
3
|
-
ic_warning_amber_sun_12: any;
|
|
4
|
-
ic_warning_amber_new: any;
|
|
5
|
-
ic_warning_amber_new_12: any;
|
|
6
|
-
biorhythom_add: any;
|
|
7
|
-
biorhythom_select_rightIcon: any;
|
|
8
|
-
biorhythom_Icon1: any;
|
|
9
|
-
biorhythom_Icon2: any;
|
|
10
|
-
biorhythom_Icon3: any;
|
|
11
|
-
biorhythom_Icon4: any;
|
|
12
|
-
biorhythom_Icon5: any;
|
|
13
|
-
biorhythom_Icon6: any;
|
|
14
|
-
biorhythom_Icon7: any;
|
|
15
|
-
biorhythom_Icon8: any;
|
|
16
|
-
biorhythom_Icon9: any;
|
|
17
|
-
biorhythom_Icon10: any;
|
|
18
|
-
biorhythom_Icon11: any;
|
|
19
|
-
biorhythom_Icon12: any;
|
|
20
|
-
biorhythom_Icon13: any;
|
|
21
|
-
biorhythom_Icon14: any;
|
|
22
|
-
biorhythom_Icon15: any;
|
|
23
|
-
biorhythom_Icon16: any;
|
|
24
|
-
biorhythom_Icon17: any;
|
|
25
|
-
biorhythom_Icon18: any;
|
|
26
|
-
biorhythom_Icon19: any;
|
|
27
|
-
biorhythom_Icon20: any;
|
|
28
|
-
biorhythom_Icon21: any;
|
|
29
|
-
biorhythom_Icon22: any;
|
|
30
|
-
biorhythom_Icon23: any;
|
|
31
|
-
biorhythom_Icon24: any;
|
|
32
|
-
rhythm_icon1: string;
|
|
33
|
-
rhythm_icon1_1: any;
|
|
34
|
-
rhythm_icon2: string;
|
|
35
|
-
rhythm_icon2_1: any;
|
|
36
|
-
rhythm_icon3: string;
|
|
37
|
-
rhythm_icon3_1: any;
|
|
38
|
-
rhythm_icon4: string;
|
|
39
|
-
rhythm_icon4_1: any;
|
|
40
|
-
rhythm_icon12_1: any;
|
|
41
|
-
rhythm_icon12: string;
|
|
42
|
-
};
|
|
43
|
-
export default _default;
|
|
1
|
+
declare const _default: {
|
|
2
|
+
ic_warning_amber_sun: any;
|
|
3
|
+
ic_warning_amber_sun_12: any;
|
|
4
|
+
ic_warning_amber_new: any;
|
|
5
|
+
ic_warning_amber_new_12: any;
|
|
6
|
+
biorhythom_add: any;
|
|
7
|
+
biorhythom_select_rightIcon: any;
|
|
8
|
+
biorhythom_Icon1: any;
|
|
9
|
+
biorhythom_Icon2: any;
|
|
10
|
+
biorhythom_Icon3: any;
|
|
11
|
+
biorhythom_Icon4: any;
|
|
12
|
+
biorhythom_Icon5: any;
|
|
13
|
+
biorhythom_Icon6: any;
|
|
14
|
+
biorhythom_Icon7: any;
|
|
15
|
+
biorhythom_Icon8: any;
|
|
16
|
+
biorhythom_Icon9: any;
|
|
17
|
+
biorhythom_Icon10: any;
|
|
18
|
+
biorhythom_Icon11: any;
|
|
19
|
+
biorhythom_Icon12: any;
|
|
20
|
+
biorhythom_Icon13: any;
|
|
21
|
+
biorhythom_Icon14: any;
|
|
22
|
+
biorhythom_Icon15: any;
|
|
23
|
+
biorhythom_Icon16: any;
|
|
24
|
+
biorhythom_Icon17: any;
|
|
25
|
+
biorhythom_Icon18: any;
|
|
26
|
+
biorhythom_Icon19: any;
|
|
27
|
+
biorhythom_Icon20: any;
|
|
28
|
+
biorhythom_Icon21: any;
|
|
29
|
+
biorhythom_Icon22: any;
|
|
30
|
+
biorhythom_Icon23: any;
|
|
31
|
+
biorhythom_Icon24: any;
|
|
32
|
+
rhythm_icon1: string;
|
|
33
|
+
rhythm_icon1_1: any;
|
|
34
|
+
rhythm_icon2: string;
|
|
35
|
+
rhythm_icon2_1: any;
|
|
36
|
+
rhythm_icon3: string;
|
|
37
|
+
rhythm_icon3_1: any;
|
|
38
|
+
rhythm_icon4: string;
|
|
39
|
+
rhythm_icon4_1: any;
|
|
40
|
+
rhythm_icon12_1: any;
|
|
41
|
+
rhythm_icon12: string;
|
|
42
|
+
};
|
|
43
|
+
export default _default;
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
ic_warning_amber_sun: require('./Biological_Rhythm.png'),
|
|
3
|
-
ic_warning_amber_sun_12: require('./Biological_Rhythm_12.png'),
|
|
4
|
-
ic_warning_amber_new: require('./Biological_Rhythm_new.png'),
|
|
5
|
-
ic_warning_amber_new_12: require('./Biological_Rhythm_new_12.png'),
|
|
6
|
-
biorhythom_add: require('./iconsMaterialOutlinedArrowsNavAdd.png'),
|
|
7
|
-
biorhythom_select_rightIcon: require('./iconsMaterialOutlinedArrowsNavArrowForwardIos.png'),
|
|
8
|
-
biorhythom_Icon1: require('./iconsMaterialOutlinedWheatherWbTwilight.png'),
|
|
9
|
-
biorhythom_Icon2: require('./iconsMaterialOutlinedWheatherWbSunny.png'),
|
|
10
|
-
biorhythom_Icon3: require('./iconsMaterialOutlinedWheatherBedtime.png'),
|
|
11
|
-
biorhythom_Icon4: require('./iconsMaterialOutlinedWheatherPartlyCloudyDay.png'),
|
|
12
|
-
biorhythom_Icon5: require('./iconsMaterialOutlinedTimeAccessAlarm.png'),
|
|
13
|
-
biorhythom_Icon6: require('./iconsMaterialOutlinedOtherNotificationsNone.png'),
|
|
14
|
-
biorhythom_Icon7: require('./iconsMaterialOutlinedBuildingsHome.png'),
|
|
15
|
-
biorhythom_Icon8: require('./iconsMaterialOutlinedOtherBed.png'),
|
|
16
|
-
biorhythom_Icon9: require('./iconsMaterialOutlinedOtherChair.png'),
|
|
17
|
-
biorhythom_Icon10: require('./iconsMaterialOutlinedOtherDirectionsCar.png'),
|
|
18
|
-
biorhythom_Icon11: require('./iconsMaterialOutlinedOtherBusinessCenter.png'),
|
|
19
|
-
biorhythom_Icon12: require('./iconsMaterialOutlinedAccountGroups.png'),
|
|
20
|
-
biorhythom_Icon13: require('./iconsMaterialOutlinedOtherMenuBook.png'),
|
|
21
|
-
biorhythom_Icon14: require('./iconsMaterialOutlinedOtherHeadphones.png'),
|
|
22
|
-
biorhythom_Icon15: require('./iconsMaterialOutlinedOtherMusicNote.png'),
|
|
23
|
-
biorhythom_Icon16: require('./iconsMaterialOutlinedOtherFitnessCenter.png'),
|
|
24
|
-
biorhythom_Icon17: require('./iconsMaterialOutlinedOtherSportsEsports.png'),
|
|
25
|
-
biorhythom_Icon18: require('./iconsMaterialOutlinedOtherTv.png'),
|
|
26
|
-
biorhythom_Icon19: require('./iconsMaterialOutlinedOtherRestaurant.png'),
|
|
27
|
-
biorhythom_Icon20: require('./iconsMaterialOutlinedOtherCoffee.png'),
|
|
28
|
-
biorhythom_Icon21: require('./iconsMaterialOutlinedWheatherStarOutline.png'),
|
|
29
|
-
biorhythom_Icon22: require('./iconsMaterialOutlinedEditorFavoriteBorder.png'),
|
|
30
|
-
biorhythom_Icon23: require('./iconsMaterialOutlinedOtherSentimentSatisfied.png'),
|
|
31
|
-
biorhythom_Icon24: require('./iconsMaterialOutlinedOtherPottedPlant.png'),
|
|
32
|
-
rhythm_icon1: 'rhythm_icon1',
|
|
33
|
-
rhythm_icon1_1: require('./iconsMaterialOutlinedWheatherWbTwilight.png'),
|
|
34
|
-
rhythm_icon2: 'rhythm_icon2',
|
|
35
|
-
rhythm_icon2_1: require('./iconsMaterialOutlinedWheatherWbSunny.png'),
|
|
36
|
-
rhythm_icon3: 'rhythm_icon3',
|
|
37
|
-
rhythm_icon3_1: require('./iconsMaterialOutlinedOtherChair.png'),
|
|
38
|
-
rhythm_icon4: 'rhythm_icon4',
|
|
39
|
-
rhythm_icon4_1: require('./iconsMaterialOutlinedWheatherBedtime.png'),
|
|
40
|
-
rhythm_icon12_1: require('./iconsMaterialOutlinedTimeAccessAlarm.png'),
|
|
41
|
-
rhythm_icon12: 'rhythm_icon12',
|
|
1
|
+
export default {
|
|
2
|
+
ic_warning_amber_sun: require('./Biological_Rhythm.png'),
|
|
3
|
+
ic_warning_amber_sun_12: require('./Biological_Rhythm_12.png'),
|
|
4
|
+
ic_warning_amber_new: require('./Biological_Rhythm_new.png'),
|
|
5
|
+
ic_warning_amber_new_12: require('./Biological_Rhythm_new_12.png'),
|
|
6
|
+
biorhythom_add: require('./iconsMaterialOutlinedArrowsNavAdd.png'),
|
|
7
|
+
biorhythom_select_rightIcon: require('./iconsMaterialOutlinedArrowsNavArrowForwardIos.png'),
|
|
8
|
+
biorhythom_Icon1: require('./iconsMaterialOutlinedWheatherWbTwilight.png'),
|
|
9
|
+
biorhythom_Icon2: require('./iconsMaterialOutlinedWheatherWbSunny.png'),
|
|
10
|
+
biorhythom_Icon3: require('./iconsMaterialOutlinedWheatherBedtime.png'),
|
|
11
|
+
biorhythom_Icon4: require('./iconsMaterialOutlinedWheatherPartlyCloudyDay.png'),
|
|
12
|
+
biorhythom_Icon5: require('./iconsMaterialOutlinedTimeAccessAlarm.png'),
|
|
13
|
+
biorhythom_Icon6: require('./iconsMaterialOutlinedOtherNotificationsNone.png'),
|
|
14
|
+
biorhythom_Icon7: require('./iconsMaterialOutlinedBuildingsHome.png'),
|
|
15
|
+
biorhythom_Icon8: require('./iconsMaterialOutlinedOtherBed.png'),
|
|
16
|
+
biorhythom_Icon9: require('./iconsMaterialOutlinedOtherChair.png'),
|
|
17
|
+
biorhythom_Icon10: require('./iconsMaterialOutlinedOtherDirectionsCar.png'),
|
|
18
|
+
biorhythom_Icon11: require('./iconsMaterialOutlinedOtherBusinessCenter.png'),
|
|
19
|
+
biorhythom_Icon12: require('./iconsMaterialOutlinedAccountGroups.png'),
|
|
20
|
+
biorhythom_Icon13: require('./iconsMaterialOutlinedOtherMenuBook.png'),
|
|
21
|
+
biorhythom_Icon14: require('./iconsMaterialOutlinedOtherHeadphones.png'),
|
|
22
|
+
biorhythom_Icon15: require('./iconsMaterialOutlinedOtherMusicNote.png'),
|
|
23
|
+
biorhythom_Icon16: require('./iconsMaterialOutlinedOtherFitnessCenter.png'),
|
|
24
|
+
biorhythom_Icon17: require('./iconsMaterialOutlinedOtherSportsEsports.png'),
|
|
25
|
+
biorhythom_Icon18: require('./iconsMaterialOutlinedOtherTv.png'),
|
|
26
|
+
biorhythom_Icon19: require('./iconsMaterialOutlinedOtherRestaurant.png'),
|
|
27
|
+
biorhythom_Icon20: require('./iconsMaterialOutlinedOtherCoffee.png'),
|
|
28
|
+
biorhythom_Icon21: require('./iconsMaterialOutlinedWheatherStarOutline.png'),
|
|
29
|
+
biorhythom_Icon22: require('./iconsMaterialOutlinedEditorFavoriteBorder.png'),
|
|
30
|
+
biorhythom_Icon23: require('./iconsMaterialOutlinedOtherSentimentSatisfied.png'),
|
|
31
|
+
biorhythom_Icon24: require('./iconsMaterialOutlinedOtherPottedPlant.png'),
|
|
32
|
+
rhythm_icon1: 'rhythm_icon1',
|
|
33
|
+
rhythm_icon1_1: require('./iconsMaterialOutlinedWheatherWbTwilight.png'),
|
|
34
|
+
rhythm_icon2: 'rhythm_icon2',
|
|
35
|
+
rhythm_icon2_1: require('./iconsMaterialOutlinedWheatherWbSunny.png'),
|
|
36
|
+
rhythm_icon3: 'rhythm_icon3',
|
|
37
|
+
rhythm_icon3_1: require('./iconsMaterialOutlinedOtherChair.png'),
|
|
38
|
+
rhythm_icon4: 'rhythm_icon4',
|
|
39
|
+
rhythm_icon4_1: require('./iconsMaterialOutlinedWheatherBedtime.png'),
|
|
40
|
+
rhythm_icon12_1: require('./iconsMaterialOutlinedTimeAccessAlarm.png'),
|
|
41
|
+
rhythm_icon12: 'rhythm_icon12',
|
|
42
42
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const ldvStyles: any;
|
|
2
|
-
export default ldvStyles;
|
|
1
|
+
declare const ldvStyles: any;
|
|
2
|
+
export default ldvStyles;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
import { StyleSheet } from 'react-native';
|
|
3
|
-
|
|
4
|
-
const ldvStyles = StyleSheet.create({
|
|
5
|
-
shadow: {
|
|
6
|
-
shadowColor: '#000000',
|
|
7
|
-
shadowOpacity: 0.2,
|
|
8
|
-
shadowRadius: 8,
|
|
9
|
-
elevation:8,
|
|
10
|
-
shadowOffset: {
|
|
11
|
-
width: 0,
|
|
12
|
-
height: 4,
|
|
13
|
-
},
|
|
14
|
-
backgroundColor: '#fff',
|
|
15
|
-
borderRadius: 8,
|
|
16
|
-
},
|
|
17
|
-
})
|
|
18
|
-
|
|
1
|
+
|
|
2
|
+
import { StyleSheet } from 'react-native';
|
|
3
|
+
|
|
4
|
+
const ldvStyles = StyleSheet.create({
|
|
5
|
+
shadow: {
|
|
6
|
+
shadowColor: '#000000',
|
|
7
|
+
shadowOpacity: 0.2,
|
|
8
|
+
shadowRadius: 8,
|
|
9
|
+
elevation:8,
|
|
10
|
+
shadowOffset: {
|
|
11
|
+
width: 0,
|
|
12
|
+
height: 4,
|
|
13
|
+
},
|
|
14
|
+
backgroundColor: '#fff',
|
|
15
|
+
borderRadius: 8,
|
|
16
|
+
},
|
|
17
|
+
})
|
|
18
|
+
|
|
19
19
|
export default ldvStyles;
|