16 lines
687 B
JavaScript
16 lines
687 B
JavaScript
export const bleeding = ['spotting', 'light', 'medium', 'heavy']
|
|
export const mucusFeeling = ['dry', 'nothing', 'wet', 'slippery']
|
|
export const mucusTexture = ['nothing', 'creamy', 'egg white']
|
|
export const mucusNFP = ['t', 'Ø', 'f', 'S', '+S']
|
|
export const cervixOpening = ['closed', 'medium', 'open']
|
|
export const cervixFirmness = ['hard', 'soft']
|
|
export const cervixPosition = ['low', 'medium', 'high']
|
|
export const intensity = ['low', 'medium', 'high']
|
|
|
|
export const fertilityStatus = {
|
|
fertile: 'fertile',
|
|
infertile: 'infertile',
|
|
fertileUntilEvening: 'Fertile phase ends in the evening',
|
|
unknown: 'We cannot show any cycle information because no menses has been entered'
|
|
}
|