2024-04-18 14:13:33 +00:00
|
|
|
import BaseStyle from 'primevue/base/style';
|
|
|
|
|
2024-05-01 08:26:48 +00:00
|
|
|
const theme = ({ dt }) => `
|
|
|
|
.p-datepicker {
|
|
|
|
display: inline-flex;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-input {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
width: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker:has(.p-datepicker-dropdown) .p-datepicker-input {
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-dropdown {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-flex;
|
|
|
|
cursor: pointer;
|
|
|
|
user-select: none;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
width: ${dt('datepicker.dropdown.width')};
|
2024-05-08 22:52:39 +00:00
|
|
|
border-top-right-radius: ${dt('datepicker.dropdown.border.radius')};
|
|
|
|
border-bottom-right-radius: ${dt('datepicker.dropdown.border.radius')};
|
2024-05-01 08:26:48 +00:00
|
|
|
background: ${dt('datepicker.dropdown.background')};
|
|
|
|
border: 1px solid ${dt('datepicker.dropdown.border.color')};
|
|
|
|
border-left: 0 none;
|
2024-05-08 22:52:39 +00:00
|
|
|
color: ${dt('datepicker.dropdown.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
|
|
|
outline-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-dropdown:not(:disabled):hover {
|
|
|
|
background: ${dt('datepicker.dropdown.hover.background')};
|
|
|
|
border-color: ${dt('datepicker.dropdown.hover.border.color')};
|
2024-05-08 22:52:39 +00:00
|
|
|
color: ${dt('datepicker.dropdown.hover.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-dropdown:not(:disabled):active {
|
|
|
|
background: ${dt('datepicker.dropdown.active.background')};
|
|
|
|
border-color: ${dt('datepicker.dropdown.active.border.color')};
|
2024-05-08 22:52:39 +00:00
|
|
|
color: ${dt('datepicker.dropdown.active.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-dropdown:focus-visible {
|
2024-05-08 22:52:39 +00:00
|
|
|
box-shadow: ${dt('datepicker.dropdown.focus.ring.shadow')};
|
|
|
|
outline: ${dt('datepicker.dropdown.focus.ring.width')} ${dt('datepicker.dropdown.focus.ring.style')} ${dt('datepicker.dropdown.focus.ring.color')};
|
|
|
|
outline-offset: ${dt('datepicker.dropdown.focus.ring.offset')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker:has(.p-datepicker-input-icon) {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker:has(.p-datepicker-input-icon) .p-datepicker-input {
|
2024-05-08 22:52:39 +00:00
|
|
|
padding-right: calc((${dt('form.field.padding.x')} * 2) + ${dt('icon.size')});
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-input-icon {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
2024-05-08 22:52:39 +00:00
|
|
|
right: ${dt('form.field.padding.x')};
|
|
|
|
margin-top: calc(-1 * (${dt('icon.size')} / 2));
|
|
|
|
color: ${dt('datepicker.input.icon.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-fluid .p-datepicker {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-fluid .p-datepicker-input {
|
|
|
|
width: 1%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker .p-datepicker-panel {
|
|
|
|
min-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-panel {
|
|
|
|
width: auto;
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.panel.padding')};
|
|
|
|
background: ${dt('datepicker.panel.background')};
|
|
|
|
color: ${dt('datepicker.panel.color')};
|
|
|
|
border: 1px solid ${dt('datepicker.panel.border.color')};
|
|
|
|
border-radius: ${dt('datepicker.panel.border.radius')};
|
|
|
|
box-shadow: ${dt('datepicker.panel.shadow')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-panel-inline {
|
|
|
|
display: inline-block;
|
|
|
|
overflow-x: auto;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.header.padding')};
|
|
|
|
font-weight: ${dt('datepicker.header.font.weight')};
|
2024-05-01 08:26:48 +00:00
|
|
|
background: ${dt('datepicker.header.background')};
|
|
|
|
color: ${dt('datepicker.header.color')};
|
|
|
|
border-bottom: 1px solid ${dt('datepicker.header.border.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-title {
|
2024-05-08 22:52:39 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
gap: ${dt('datepicker.title.gap')};
|
|
|
|
font-weight: ${dt('datepicker.title.font.weight')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-view-year,
|
|
|
|
.p-datepicker-view-month {
|
2024-05-08 22:52:39 +00:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
margin: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
font-weight: inherit;
|
|
|
|
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-view-month {
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.view.month.padding')};
|
2024-05-05 17:35:03 +00:00
|
|
|
color: ${dt('datepicker.view.month.color')};
|
2024-05-08 22:52:39 +00:00
|
|
|
border-radius: ${dt('datepicker.view.month.border.radius')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-view-year {
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.view.year.padding')};
|
2024-05-05 17:35:03 +00:00
|
|
|
color: ${dt('datepicker.view.year.color')};
|
2024-05-08 22:52:39 +00:00
|
|
|
border-radius: ${dt('datepicker.view.year.border.radius')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-view-month:enabled:hover {
|
2024-05-05 17:35:03 +00:00
|
|
|
background: ${dt('datepicker.view.month.hover.background')};
|
|
|
|
color: ${dt('datepicker.view.month.hover.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-view-year:enabled:hover {
|
2024-05-05 17:35:03 +00:00
|
|
|
background: ${dt('datepicker.view.year.hover.background')};
|
|
|
|
color: ${dt('datepicker.view.year.hover.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
2024-05-08 22:52:39 +00:00
|
|
|
.p-datepicker-calendar-container {
|
2024-05-01 08:26:48 +00:00
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2024-05-08 22:52:39 +00:00
|
|
|
.p-datepicker-calendar-container .p-datepicker-calendar {
|
2024-05-01 08:26:48 +00:00
|
|
|
flex: 1 1 auto;
|
|
|
|
border-left: 1px solid ${dt('datepicker.group.border.color')};
|
2024-05-08 22:52:39 +00:00
|
|
|
padding-right: ${dt('datepicker.group.gap')};
|
|
|
|
padding-left: ${dt('datepicker.group.gap')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
2024-05-08 22:52:39 +00:00
|
|
|
.p-datepicker-calendar-container .p-datepicker-calendar:first-child {
|
2024-05-01 08:26:48 +00:00
|
|
|
padding-left: 0;
|
|
|
|
border-left: 0 none;
|
|
|
|
}
|
|
|
|
|
2024-05-08 22:52:39 +00:00
|
|
|
.p-datepicker-calendar-container .p-datepicker-calendar:last-child {
|
2024-05-01 08:26:48 +00:00
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-day-view {
|
|
|
|
width: 100%;
|
|
|
|
border-collapse: collapse;
|
|
|
|
font-size: 1rem;
|
2024-05-08 22:52:39 +00:00
|
|
|
margin: ${dt('datepicker.day.view.margin')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-weekday-cell {
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.week.day.padding')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-weekday {
|
2024-05-08 22:52:39 +00:00
|
|
|
font-weight: ${dt('datepicker.week.day.font.weight')};
|
|
|
|
color: ${dt('datepicker.week.day.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-day-cell {
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.date.padding')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-day {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 0 auto;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2024-05-08 22:52:39 +00:00
|
|
|
width: ${dt('datepicker.date.width')};
|
|
|
|
height: ${dt('datepicker.date.height')};
|
|
|
|
border-radius: ${dt('datepicker.date.border.radius')};
|
|
|
|
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
2024-05-01 08:26:48 +00:00
|
|
|
border: 1px solid transparent;
|
|
|
|
outline-color: transparent;
|
|
|
|
color: ${dt('datepicker.date.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-day:not(.p-datepicker-day-selected):not(.p-disabled):hover {
|
|
|
|
background: ${dt('datepicker.date.hover.background')};
|
|
|
|
color: ${dt('datepicker.date.hover.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-day:focus-visible {
|
2024-05-08 22:52:39 +00:00
|
|
|
box-shadow: ${dt('datepicker.date.focus.ring.shadow')};
|
|
|
|
outline: ${dt('datepicker.date.focus.ring.width')} ${dt('datepicker.date.focus.ring.style')} ${dt('datepicker.date.focus.ring.color')};
|
|
|
|
outline-offset: ${dt('datepicker.date.focus.ring.offset')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-day-selected {
|
|
|
|
background: ${dt('datepicker.date.selected.background')};
|
|
|
|
color: ${dt('datepicker.date.selected.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-today > .p-datepicker-day {
|
|
|
|
background: ${dt('datepicker.today.background')};
|
|
|
|
color: ${dt('datepicker.today.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-today > .p-datepicker-day-selected {
|
|
|
|
background: ${dt('datepicker.date.selected.background')};
|
|
|
|
color: ${dt('datepicker.date.selected.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-month-view {
|
2024-05-08 22:52:39 +00:00
|
|
|
margin: ${dt('datepicker.month.view.margin')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-month {
|
|
|
|
width: 33.3%;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.date.padding')};
|
|
|
|
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
|
|
|
border-radius: ${dt('datepicker.month.border.radius')};
|
2024-05-01 08:26:48 +00:00
|
|
|
outline-color: transparent;
|
2024-05-05 17:35:03 +00:00
|
|
|
color: ${dt('datepicker.date.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-month:not(.p-disabled):not(.p-datepicker-month-selected):hover {
|
2024-05-05 17:35:03 +00:00
|
|
|
color: ${dt('datepicker.date.hover.color')};
|
|
|
|
background: ${dt('datepicker.date.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-month-selected {
|
2024-05-05 17:35:03 +00:00
|
|
|
color: ${dt('datepicker.date.selected.color')};
|
|
|
|
background: ${dt('datepicker.date.selected.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-month:not(.p-disabled):focus-visible {
|
2024-05-08 22:52:39 +00:00
|
|
|
box-shadow: ${dt('datepicker.date.focus.ring.shadow')};
|
|
|
|
outline: ${dt('datepicker.date.focus.ring.width')} ${dt('datepicker.date.focus.ring.style')} ${dt('datepicker.date.focus.ring.color')};
|
|
|
|
outline-offset: ${dt('datepicker.date.focus.ring.offset')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-year-view {
|
2024-05-08 22:52:39 +00:00
|
|
|
margin: ${dt('datepicker.year.view.margin')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-year {
|
|
|
|
width: 50%;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
cursor: pointer;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.date.padding')};
|
|
|
|
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
|
|
|
border-radius: ${dt('datepicker.year.border.radius')};
|
2024-05-01 08:26:48 +00:00
|
|
|
outline-color: transparent;
|
2024-05-05 17:35:03 +00:00
|
|
|
color: ${dt('datepicker.date.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-year:not(.p-disabled):not(.p-datepicker-year-selected):hover {
|
2024-05-08 22:52:39 +00:00
|
|
|
color: ${dt('datepicker.date.hover.color')};
|
2024-05-05 17:35:03 +00:00
|
|
|
background: ${dt('datepicker.date.hover.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-year-selected {
|
2024-05-05 17:35:03 +00:00
|
|
|
color: ${dt('datepicker.date.selected.color')};
|
|
|
|
background: ${dt('datepicker.date.selected.background')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-year:not(.p-disabled):focus-visible {
|
2024-05-08 22:52:39 +00:00
|
|
|
box-shadow: ${dt('datepicker.date.focus.ring.shadow')};
|
|
|
|
outline: ${dt('datepicker.date.focus.ring.width')} ${dt('datepicker.date.focus.ring.style')} ${dt('datepicker.date.focus.ring.color')};
|
|
|
|
outline-offset: ${dt('datepicker.date.focus.ring.offset')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-buttonbar {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2024-05-08 22:52:39 +00:00
|
|
|
padding: ${dt('datepicker.buttonbar.padding')};
|
2024-05-01 08:26:48 +00:00
|
|
|
border-top: 1px solid ${dt('datepicker.buttonbar.border.color')};
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-buttonbar .p-button {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-time-picker {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2024-05-05 17:35:03 +00:00
|
|
|
border-top: 1px solid ${dt('datepicker.time.picker.border.color')};
|
2024-05-01 08:26:48 +00:00
|
|
|
padding: 0;
|
2024-05-08 22:52:39 +00:00
|
|
|
gap: ${dt('datepicker.time.picker.gap')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
2024-05-08 22:52:39 +00:00
|
|
|
.p-datepicker-calendar-container + .p-datepicker-time-picker {
|
|
|
|
padding: ${dt('datepicker.time.picker.padding')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-time-picker > div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-direction: column;
|
2024-05-08 22:52:39 +00:00
|
|
|
gap: ${dt('datepicker.time.picker.button.gap')};
|
2024-05-01 08:26:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-time-picker span {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-datepicker-timeonly .p-datepicker-time-picker {
|
|
|
|
border-top: 0 none;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2024-04-18 14:13:33 +00:00
|
|
|
const inlineStyles = {
|
|
|
|
root: ({ props }) => ({ position: props.appendTo === 'self' ? 'relative' : undefined })
|
|
|
|
};
|
|
|
|
|
|
|
|
const classes = {
|
|
|
|
root: ({ props, state }) => [
|
|
|
|
'p-datepicker p-component p-inputwrapper',
|
|
|
|
{
|
|
|
|
'p-invalid': props.invalid,
|
|
|
|
'p-inputwrapper-filled': props.modelValue,
|
|
|
|
'p-inputwrapper-focus': state.focused,
|
|
|
|
'p-focus': state.focused || state.overlayVisible
|
|
|
|
}
|
|
|
|
],
|
2024-05-06 15:23:01 +00:00
|
|
|
pcInput: 'p-datepicker-input',
|
2024-05-03 20:26:53 +00:00
|
|
|
dropdown: 'p-datepicker-dropdown',
|
2024-04-18 14:13:33 +00:00
|
|
|
inputIconContainer: 'p-datepicker-input-icon-container',
|
|
|
|
inputIcon: 'p-datepicker-input-icon',
|
|
|
|
panel: ({ instance, props }) => [
|
|
|
|
'p-datepicker-panel p-component',
|
|
|
|
{
|
|
|
|
'p-datepicker-panel-inline': props.inline,
|
|
|
|
'p-disabled': props.disabled,
|
2024-05-08 15:58:22 +00:00
|
|
|
'p-datepicker-timeonly': props.timeOnly
|
2024-04-18 14:13:33 +00:00
|
|
|
}
|
|
|
|
],
|
2024-05-03 20:26:53 +00:00
|
|
|
calendarContainer: 'p-datepicker-calendar-container',
|
2024-04-18 14:13:33 +00:00
|
|
|
calendar: 'p-datepicker-calendar',
|
|
|
|
header: 'p-datepicker-header',
|
2024-05-06 15:23:01 +00:00
|
|
|
pcPreviousButton: 'p-datepicker-prev-button',
|
2024-04-18 14:13:33 +00:00
|
|
|
title: 'p-datepicker-title',
|
2024-05-08 22:52:39 +00:00
|
|
|
viewMonth: 'p-datepicker-view-month',
|
|
|
|
viewYear: 'p-datepicker-view-year',
|
2024-05-03 20:26:53 +00:00
|
|
|
decade: 'p-datepicker-decade',
|
2024-05-06 15:23:01 +00:00
|
|
|
pcNextButton: 'p-datepicker-next-button',
|
2024-05-03 20:26:53 +00:00
|
|
|
dayView: 'p-datepicker-day-view',
|
2024-04-18 14:13:33 +00:00
|
|
|
weekHeader: 'p-datepicker-weekheader p-disabled',
|
|
|
|
weekNumber: 'p-datepicker-weeknumber',
|
2024-05-07 08:20:31 +00:00
|
|
|
weekLabelContainer: 'p-disabled',
|
2024-05-03 20:26:53 +00:00
|
|
|
weekDayCell: 'p-datepicker-weekday-cell',
|
2024-05-08 22:52:39 +00:00
|
|
|
weekDay: 'p-datepicker-weekday',
|
2024-05-03 20:26:53 +00:00
|
|
|
dayCell: ({ date }) => ['p-datepicker-day-cell', { 'p-datepicker-other-month': date.otherMonth, 'p-datepicker-today': date.today }],
|
|
|
|
day: ({ instance, props, date }) => ['p-datepicker-day', { 'p-datepicker-day-selected': instance.isSelected(date) && date.selectable, 'p-disabled': props.disabled || !date.selectable }],
|
|
|
|
monthView: 'p-datepicker-month-view',
|
2024-04-18 14:13:33 +00:00
|
|
|
month: ({ instance, props, month, index }) => ['p-datepicker-month', { 'p-datepicker-month-selected': instance.isMonthSelected(index), 'p-disabled': props.disabled || !month.selectable }],
|
2024-05-03 20:26:53 +00:00
|
|
|
yearView: 'p-datepicker-year-view',
|
2024-04-18 14:13:33 +00:00
|
|
|
year: ({ instance, props, year }) => ['p-datepicker-year', { 'p-datepicker-year-selected': instance.isYearSelected(year.value), 'p-disabled': props.disabled || !year.selectable }],
|
|
|
|
timePicker: 'p-datepicker-time-picker',
|
|
|
|
hourPicker: 'p-datepicker-hour-picker',
|
2024-05-06 15:23:01 +00:00
|
|
|
pcIncrementButton: 'p-datepicker-increment-button',
|
|
|
|
pcDecrementButton: 'p-datepicker-decrement-button',
|
2024-05-03 20:26:53 +00:00
|
|
|
separator: 'p-datepicker-separator',
|
2024-05-06 13:10:25 +00:00
|
|
|
minutePicker: 'p-datepicker-minute-picker',
|
|
|
|
secondPicker: 'p-datepicker-second-picker',
|
|
|
|
ampmPicker: 'p-datepicker-ampm-picker',
|
2024-04-18 14:13:33 +00:00
|
|
|
buttonbar: 'p-datepicker-buttonbar',
|
2024-05-06 15:23:01 +00:00
|
|
|
pcTodayButton: 'p-datepicker-today-button',
|
|
|
|
pcClearButton: 'p-datepicker-clear-button'
|
2024-04-18 14:13:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default BaseStyle.extend({
|
|
|
|
name: 'datepicker',
|
2024-05-01 08:26:48 +00:00
|
|
|
theme,
|
2024-04-18 14:13:33 +00:00
|
|
|
classes,
|
|
|
|
inlineStyles
|
|
|
|
});
|