primevue-mirror/components/lib/datepicker/style/DatePickerStyle.d.ts

168 lines
4.1 KiB
TypeScript
Raw Normal View History

/**
*
* DatePicker is a form component to work with dates.
*
* [Live Demo](https://www.primevue.org/datepicker/)
*
* @module datepickerstyle
*
*/
2024-04-18 14:13:33 +00:00
import { BaseStyle } from '../../base/style';
export enum DatePickerClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-datepicker',
2024-05-22 13:52:02 +00:00
/**
* Class name of the input element
*/
pcInput = 'p-datepicker-input',
2024-05-22 13:52:02 +00:00
/**
* Class name of the dropdown element
*/
dropdown = 'p-datepicker-dropdown',
2024-05-22 13:52:02 +00:00
/**
* Class name of the input icon container element
*/
inputIconContainer = 'p-datepicker-input-icon-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the input icon element
*/
inputIcon = 'p-datepicker-input-icon',
2024-05-22 13:52:02 +00:00
/**
* Class name of the panel element
*/
panel = 'p-datepicker-panel',
2024-05-22 13:52:02 +00:00
/**
* Class name of the calendar container element
*/
calendarContainer = 'p-datepicker-calendar-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the calendar element
*/
calendar = 'p-datepicker-calendar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the header element
*/
header = 'p-datepicker-header',
2024-05-22 13:52:02 +00:00
/**
* Class name of the previous button element
*/
pcPreviousButton = 'p-datepicker-prev-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the title element
*/
title = 'p-datepicker-title',
2024-05-22 13:52:02 +00:00
/**
* Class name of the view month element
*/
viewMonth = 'p-datepicker-view-month',
2024-05-22 13:52:02 +00:00
/**
* Class name of the view year element
*/
viewYear = 'p-datepicker-view-year',
2024-05-22 13:52:02 +00:00
/**
* Class name of the decade element
*/
decade = 'p-datepicker-decade',
2024-05-22 13:52:02 +00:00
/**
* Class name of the next button element
*/
pcNextButton = 'p-datepicker-next-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the day view element
*/
dayView = 'p-datepicker-day-view',
2024-05-22 13:52:02 +00:00
/**
* Class name of the week header element
*/
weekHeader = 'p-datepicker-weekheader',
2024-05-22 13:52:02 +00:00
/**
* Class name of the week number element
*/
weekNumber = 'p-datepicker-weeknumber',
2024-05-22 17:36:43 +00:00
/**
* Class name of the week label container element
*/
weekLabelContainer = 'p-datepicker-weeklabel-container',
2024-05-22 13:52:02 +00:00
/**
* Class name of the week day cell element
*/
weekDayCell = 'p-datepicker-weekday-cell',
2024-05-22 13:52:02 +00:00
/**
* Class name of the week day element
*/
weekDay = 'p-datepicker-weekday',
/**
* Class name of the day cell element
*/
dayCell = 'p-datepicker-day-cell',
2024-05-22 13:52:02 +00:00
/**
* Class name of the day element
*/
day = 'p-datepicker-day',
2024-05-22 13:52:02 +00:00
/**
* Class name of the month view element
*/
monthView = 'p-datepicker-month-view',
2024-05-22 13:52:02 +00:00
/**
* Class name of the month element
*/
month = 'p-datepicker-month',
2024-05-22 13:52:02 +00:00
/**
* Class name of the year view element
*/
yearView = 'p-datepicker-year-view',
2024-05-22 13:52:02 +00:00
/**
* Class name of the year element
*/
year = 'p-datepicker-year',
2024-05-22 13:52:02 +00:00
/**
* Class name of the time picker element
*/
timePicker = 'p-datepicker-time-picker',
2024-05-22 13:52:02 +00:00
/**
* Class name of the hour picker element
*/
hourPicker = 'p-datepicker-hour-picker',
2024-05-22 13:52:02 +00:00
/**
* Class name of the increment button element
*/
pcIncrementButton = 'p-datepicker-increment-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the decrement button element
*/
pcDecrementButton = 'p-datepicker-decrement-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the separator element
*/
separator = 'p-datepicker-separator',
2024-05-22 13:52:02 +00:00
/**
* Class name of the minute picker element
*/
minutePicker = 'p-datepicker-minute-picker',
2024-05-22 13:52:02 +00:00
/**
* Class name of the second picker element
*/
secondPicker = 'p-datepicker-second-picker',
2024-05-22 13:52:02 +00:00
/**
* Class name of the ampm picker element
*/
ampmPicker = 'p-datepicker-ampm-picker',
2024-05-22 13:52:02 +00:00
/**
* Class name of the buttonbar element
*/
buttonbar = 'p-datepicker-buttonbar',
2024-05-22 13:52:02 +00:00
/**
* Class name of the today button element
*/
pcTodayButton = 'p-datepicker-today-button',
2024-05-22 13:52:02 +00:00
/**
* Class name of the clear button element
*/
pcClearButton = 'p-datepicker-clear-button'
}
2024-04-18 14:13:33 +00:00
export interface DatePickerStyle extends BaseStyle {}