{"version":3,"file":"timepicker.config.d.ts","sources":["timepicker.config.d.ts"],"names":[],"mappings":"AAAA;;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AACA","sourcesContent":["/** Provides default configuration values for timepicker */\nexport declare class TimepickerConfig {\n    /** hours change step */\n    hourStep: number;\n    /** minutes change step */\n    minuteStep: number;\n    /** seconds changes step */\n    secondsStep: number;\n    /** if true works in 12H mode and displays AM/PM. If false works in 24H mode and hides AM/PM */\n    showMeridian: boolean;\n    /** meridian labels based on locale */\n    meridians: string[];\n    /** if true hours and minutes fields will be readonly */\n    readonlyInput: boolean;\n    /** if true hours and minutes fields will be disabled */\n    disabled: boolean;\n    /** if true scroll inside hours and minutes inputs will change time */\n    mousewheel: boolean;\n    /** if true the values of hours and minutes can be changed using the up/down arrow keys on the keyboard */\n    arrowkeys: boolean;\n    /** if true spinner arrows above and below the inputs will be shown */\n    showSpinners: boolean;\n    /** show seconds in timepicker */\n    showSeconds: boolean;\n    /** show minutes in timepicker */\n    showMinutes: boolean;\n    /** minimum time user can select */\n    min?: Date;\n    /** maximum time user can select */\n    max?: Date;\n    /** placeholder for hours field in timepicker */\n    hoursPlaceholder: string;\n    /** placeholder for minutes field in timepicker */\n    minutesPlaceholder: string;\n    /** placeholder for seconds field in timepicker */\n    secondsPlaceholder: string;\n    /** hours aria label */\n    ariaLabelHours: string;\n    /** minutes aria label */\n    ariaLabelMinutes: string;\n    /** seconds aria label */\n    ariaLabelSeconds: string;\n}\n"]}