feat(frontend): add anti_aging to IngredientFunction type and form selector
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
794650afc6
commit
ef8334b93c
2 changed files with 3 additions and 2 deletions
|
|
@ -35,7 +35,7 @@
|
||||||
'exfoliant_aha', 'exfoliant_bha', 'exfoliant_pha',
|
'exfoliant_aha', 'exfoliant_bha', 'exfoliant_pha',
|
||||||
'retinoid', 'antioxidant', 'soothing', 'barrier_support',
|
'retinoid', 'antioxidant', 'soothing', 'barrier_support',
|
||||||
'brightening', 'anti_acne', 'ceramide', 'niacinamide',
|
'brightening', 'anti_acne', 'ceramide', 'niacinamide',
|
||||||
'sunscreen', 'peptide', 'hair_growth_stimulant', 'prebiotic', 'vitamin_c'
|
'sunscreen', 'peptide', 'hair_growth_stimulant', 'prebiotic', 'vitamin_c', 'anti_aging'
|
||||||
];
|
];
|
||||||
const interactionScopes: InteractionScope[] = ['same_step', 'same_day', 'same_period'];
|
const interactionScopes: InteractionScope[] = ['same_step', 'same_day', 'same_period'];
|
||||||
const tristate = [
|
const tristate = [
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,8 @@ export type IngredientFunction =
|
||||||
| 'peptide'
|
| 'peptide'
|
||||||
| 'hair_growth_stimulant'
|
| 'hair_growth_stimulant'
|
||||||
| 'prebiotic'
|
| 'prebiotic'
|
||||||
| 'vitamin_c';
|
| 'vitamin_c'
|
||||||
|
| 'anti_aging';
|
||||||
export type InteractionScope = 'same_step' | 'same_day' | 'same_period';
|
export type InteractionScope = 'same_step' | 'same_day' | 'same_period';
|
||||||
export type MedicationKind = 'prescription' | 'otc' | 'supplement' | 'herbal' | 'other';
|
export type MedicationKind = 'prescription' | 'otc' | 'supplement' | 'herbal' | 'other';
|
||||||
export type OverallSkinState = 'excellent' | 'good' | 'fair' | 'poor';
|
export type OverallSkinState = 'excellent' | 'good' | 'fair' | 'poor';
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue