stylex_constants/constants/number_properties.rs
1use phf::phf_map;
2
3// Using MDN data as a source of truth to populate the above sets
4// by group in alphabetical order:
5
6pub static NUMBER_PROPERTY_SUFFIXIES: phf::Map<&'static str, &'static str> = phf_map! {
7 "animationDelay"=> "ms",
8 "animationDuration"=> "ms",
9 "transitionDelay"=> "ms",
10 "transitionDuration"=> "ms",
11 "voiceDuration"=> "ms",
12};