@ledvance/ui-biz-bundle 1.1.68 → 1.1.70
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/newModules/biorhythm/BiorhythmActions.ts +425 -374
- package/src/newModules/biorhythm/BiorhythmBean.ts +230 -230
- package/src/newModules/biorhythm/BiorhythmEditPage.tsx +267 -267
- package/src/newModules/biorhythm/BiorhythmPage.tsx +639 -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
|
@@ -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,64 +1,64 @@
|
|
|
1
|
-
import React from 'react'
|
|
2
|
-
import {Image, StyleSheet, View} from 'react-native'
|
|
3
|
-
import Progress from './Progress'
|
|
4
|
-
import {Plan} from '../BiorhythmBean'
|
|
5
|
-
import BiologicalRes from '../res/BiologicalRes'
|
|
6
|
-
import { useCreation } from 'ahooks'
|
|
7
|
-
import { useSystemTimeFormate } from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
8
|
-
|
|
9
|
-
interface TimeCircularProps {
|
|
10
|
-
planList: Plan[]
|
|
11
|
-
onPanMoved?: (id: number, time: number) => void
|
|
12
|
-
planEdit?: Boolean
|
|
13
|
-
replaceStatus?: Boolean
|
|
14
|
-
gradient?: Boolean
|
|
15
|
-
isSupportTemperature: boolean
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
const TimeCircular = (
|
|
19
|
-
props: TimeCircularProps = {
|
|
20
|
-
planList: [],
|
|
21
|
-
planEdit: false,
|
|
22
|
-
replaceStatus: false,
|
|
23
|
-
gradient: false,
|
|
24
|
-
isSupportTemperature: false,
|
|
25
|
-
},
|
|
26
|
-
) => {
|
|
27
|
-
const {planList, onPanMoved, planEdit, replaceStatus, gradient, isSupportTemperature} = props
|
|
28
|
-
const styles = dynamicStyleSheet
|
|
29
|
-
const is24Hour = useSystemTimeFormate()
|
|
30
|
-
const enabledPlanList = planList.filter(plan => plan.enable)
|
|
31
|
-
const timeDialPic = useCreation(() =>{
|
|
32
|
-
if(is24Hour){
|
|
33
|
-
return replaceStatus ? BiologicalRes.ic_warning_amber_sun : BiologicalRes.ic_warning_amber_new
|
|
34
|
-
}else{
|
|
35
|
-
return replaceStatus ? BiologicalRes.ic_warning_amber_sun_12 : BiologicalRes.ic_warning_amber_new_12
|
|
36
|
-
}
|
|
37
|
-
}, [is24Hour, replaceStatus])
|
|
38
|
-
|
|
39
|
-
return (
|
|
40
|
-
<View style={styles.container}>
|
|
41
|
-
<Progress
|
|
42
|
-
radius={130}
|
|
43
|
-
annularHeight={44}
|
|
44
|
-
timeIconList={enabledPlanList}
|
|
45
|
-
planEdit={planEdit}
|
|
46
|
-
gradient={gradient}
|
|
47
|
-
isSupportTemperature={isSupportTemperature}
|
|
48
|
-
onPanMoved={(id: number, time: number) => {
|
|
49
|
-
onPanMoved && onPanMoved(id, time)
|
|
50
|
-
}}>
|
|
51
|
-
<Image source={timeDialPic} style={{width: 172, height: 172}}/>
|
|
52
|
-
</Progress>
|
|
53
|
-
</View>
|
|
54
|
-
)
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
const dynamicStyleSheet = StyleSheet.create({
|
|
58
|
-
container: {
|
|
59
|
-
alignItems: 'center',
|
|
60
|
-
justifyContent: 'center',
|
|
61
|
-
},
|
|
62
|
-
})
|
|
63
|
-
|
|
64
|
-
export default TimeCircular
|
|
1
|
+
import React from 'react'
|
|
2
|
+
import {Image, StyleSheet, View} from 'react-native'
|
|
3
|
+
import Progress from './Progress'
|
|
4
|
+
import {Plan} from '../BiorhythmBean'
|
|
5
|
+
import BiologicalRes from '../res/BiologicalRes'
|
|
6
|
+
import { useCreation } from 'ahooks'
|
|
7
|
+
import { useSystemTimeFormate } from '@ledvance/base/src/models/modules/NativePropsSlice'
|
|
8
|
+
|
|
9
|
+
interface TimeCircularProps {
|
|
10
|
+
planList: Plan[]
|
|
11
|
+
onPanMoved?: (id: number, time: number) => void
|
|
12
|
+
planEdit?: Boolean
|
|
13
|
+
replaceStatus?: Boolean
|
|
14
|
+
gradient?: Boolean
|
|
15
|
+
isSupportTemperature: boolean
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
const TimeCircular = (
|
|
19
|
+
props: TimeCircularProps = {
|
|
20
|
+
planList: [],
|
|
21
|
+
planEdit: false,
|
|
22
|
+
replaceStatus: false,
|
|
23
|
+
gradient: false,
|
|
24
|
+
isSupportTemperature: false,
|
|
25
|
+
},
|
|
26
|
+
) => {
|
|
27
|
+
const {planList, onPanMoved, planEdit, replaceStatus, gradient, isSupportTemperature} = props
|
|
28
|
+
const styles = dynamicStyleSheet
|
|
29
|
+
const is24Hour = useSystemTimeFormate()
|
|
30
|
+
const enabledPlanList = planList.filter(plan => plan.enable)
|
|
31
|
+
const timeDialPic = useCreation(() =>{
|
|
32
|
+
if(is24Hour){
|
|
33
|
+
return replaceStatus ? BiologicalRes.ic_warning_amber_sun : BiologicalRes.ic_warning_amber_new
|
|
34
|
+
}else{
|
|
35
|
+
return replaceStatus ? BiologicalRes.ic_warning_amber_sun_12 : BiologicalRes.ic_warning_amber_new_12
|
|
36
|
+
}
|
|
37
|
+
}, [is24Hour, replaceStatus])
|
|
38
|
+
|
|
39
|
+
return (
|
|
40
|
+
<View style={styles.container}>
|
|
41
|
+
<Progress
|
|
42
|
+
radius={130}
|
|
43
|
+
annularHeight={44}
|
|
44
|
+
timeIconList={enabledPlanList}
|
|
45
|
+
planEdit={planEdit}
|
|
46
|
+
gradient={gradient}
|
|
47
|
+
isSupportTemperature={isSupportTemperature}
|
|
48
|
+
onPanMoved={(id: number, time: number) => {
|
|
49
|
+
onPanMoved && onPanMoved(id, time)
|
|
50
|
+
}}>
|
|
51
|
+
<Image source={timeDialPic} style={{width: 172, height: 172}}/>
|
|
52
|
+
</Progress>
|
|
53
|
+
</View>
|
|
54
|
+
)
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const dynamicStyleSheet = StyleSheet.create({
|
|
58
|
+
container: {
|
|
59
|
+
alignItems: 'center',
|
|
60
|
+
justifyContent: 'center',
|
|
61
|
+
},
|
|
62
|
+
})
|
|
63
|
+
|
|
64
|
+
export default TimeCircular
|
|
@@ -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,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
|
}
|