|
11 | 11 | "isStartOfHighlighting": "Set to <code>true</code> if the <code>day</code> is the start of a highlighted date range.",
|
12 | 12 | "isStartOfPreviewing": "Set to <code>true</code> if the <code>day</code> is the end of a highlighted date range.",
|
13 | 13 | "outsideCurrentMonth": "If <code>true</code>, day is outside of month and will be hidden.",
|
14 |
| - "selected": "If <code>true</code>, renders as selected." |
| 14 | + "selected": "If <code>true</code>, renders as selected.", |
| 15 | + "sx": "The system prop that allows defining system overrides as well as additional CSS styles. See the <a href=\"/system/basics/#the-sx-prop\">`sx` page</a> for more details." |
15 | 16 | },
|
16 | 17 | "classDescriptions": {
|
17 | 18 | "root": { "description": "Styles applied to the root element." },
|
18 |
| - "dayWithMargin": { |
| 19 | + "rangeIntervalDayHighlight": { |
19 | 20 | "description": "Styles applied to {{nodeName}} if {{conditions}}.",
|
20 | 21 | "nodeName": "the root element",
|
21 |
| - "conditions": "<code>disableMargin=false</code>" |
| 22 | + "conditions": "<code>isHighlighting=true</code> and <code>outsideCurrentMonth=false</code>" |
22 | 23 | },
|
23 |
| - "dayOutsideMonth": { |
| 24 | + "rangeIntervalDayHighlightStart": { |
24 | 25 | "description": "Styles applied to {{nodeName}} if {{conditions}}.",
|
25 | 26 | "nodeName": "the root element",
|
26 |
| - "conditions": "<code>outsideCurrentMonth=true</code> and <code>showDaysOutsideCurrentMonth=true</code>" |
| 27 | + "conditions": "<code>isStartOfHighlighting=true</code> or <code>day</code> is the start of the month" |
27 | 28 | },
|
28 |
| - "hiddenDaySpacingFiller": { |
| 29 | + "rangeIntervalDayHighlightEnd": { |
29 | 30 | "description": "Styles applied to {{nodeName}} if {{conditions}}.",
|
30 | 31 | "nodeName": "the root element",
|
31 |
| - "conditions": "<code>outsideCurrentMonth=true</code> and <code>showDaysOutsideCurrentMonth=false</code>" |
| 32 | + "conditions": "<code>isEndOfHighlighting=true</code> or <code>day</code> is the end of the month" |
32 | 33 | },
|
33 |
| - "today": { |
| 34 | + "rangeIntervalPreview": { |
| 35 | + "description": "Styles applied to {{nodeName}}.", |
| 36 | + "nodeName": "the preview element" |
| 37 | + }, |
| 38 | + "rangeIntervalDayPreview": { |
34 | 39 | "description": "Styles applied to {{nodeName}} if {{conditions}}.",
|
35 | 40 | "nodeName": "the root element",
|
36 |
| - "conditions": "<code>disableHighlightToday=false</code> and <code>today=true</code>" |
| 41 | + "conditions": "<code>isPreviewing=true</code> and <code>outsideCurrentMonth=false</code>" |
37 | 42 | },
|
38 |
| - "selected": { |
39 |
| - "description": "Pseudo-class applied to {{nodeName}} if {{conditions}}.", |
| 43 | + "rangeIntervalDayPreviewStart": { |
| 44 | + "description": "Styles applied to {{nodeName}} if {{conditions}}.", |
40 | 45 | "nodeName": "the root element",
|
41 |
| - "conditions": "<code>selected=true</code>" |
| 46 | + "conditions": "<code>isStartOfPreviewing=true</code> or <code>day</code> is the start of the month" |
42 | 47 | },
|
43 |
| - "disabled": { |
44 |
| - "description": "Pseudo-class applied to {{nodeName}} if {{conditions}}.", |
| 48 | + "rangeIntervalDayPreviewEnd": { |
| 49 | + "description": "Styles applied to {{nodeName}} if {{conditions}}.", |
45 | 50 | "nodeName": "the root element",
|
46 |
| - "conditions": "<code>disabled=true</code>" |
| 51 | + "conditions": "<code>isEndOfPreviewing=true</code> or <code>day</code> is the end of the month" |
| 52 | + }, |
| 53 | + "day": { "description": "Styles applied to {{nodeName}}.", "nodeName": "the day element" }, |
| 54 | + "dayOutsideRangeInterval": { |
| 55 | + "description": "Styles applied to {{nodeName}} if {{conditions}}.", |
| 56 | + "nodeName": "the day element", |
| 57 | + "conditions": "<code>isHighlighting=false</code>" |
| 58 | + }, |
| 59 | + "dayInsideRangeInterval": { |
| 60 | + "description": "Styles applied to {{nodeName}} if {{conditions}}.", |
| 61 | + "nodeName": "the day element", |
| 62 | + "conditions": "<code>selected=false</code> and <code>isHighlighting=true</code>" |
| 63 | + }, |
| 64 | + "notSelectedDate": { |
| 65 | + "description": "Styles applied to {{nodeName}} if {{conditions}}.", |
| 66 | + "nodeName": "the day element", |
| 67 | + "conditions": "<code>selected=false</code>" |
47 | 68 | }
|
48 | 69 | }
|
49 | 70 | }
|
0 commit comments