Skip to main content

orbital_date_pickers/
features.rs

1bitflags::bitflags! {
2    /// Opt-in date picker capabilities (single-tier; no license checks).
3    pub struct DatePickerFeatures: u32 {
4        /// Date/time/datetime range pickers and range fields (DP-15..21).
5        const RANGE_PICKERS = 0b0001;
6        /// TimeClock and DigitalClock surfaces (DP-11, DP-12).
7        const CLOCK_VIEWS = 0b0010;
8    }
9}