@vaadin/date-picker 25.0.0-alpha12 → 25.0.0-alpha14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +12 -12
- package/src/styles/vaadin-date-picker-overlay-content-base-styles.js +6 -5
- package/src/styles/vaadin-date-picker-year-base-styles.js +1 -0
- package/src/styles/vaadin-month-calendar-base-styles.js +7 -4
- package/src/vaadin-date-picker-mixin.d.ts +0 -2
- package/src/vaadin-date-picker-mixin.js +1 -3
- package/web-types.json +2 -24
- package/web-types.lit.json +2 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/date-picker",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha14",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,25 +34,25 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
38
|
-
"@vaadin/button": "25.0.0-
|
|
39
|
-
"@vaadin/component-base": "25.0.0-
|
|
40
|
-
"@vaadin/field-base": "25.0.0-
|
|
41
|
-
"@vaadin/input-container": "25.0.0-
|
|
42
|
-
"@vaadin/overlay": "25.0.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
37
|
+
"@vaadin/a11y-base": "25.0.0-alpha14",
|
|
38
|
+
"@vaadin/button": "25.0.0-alpha14",
|
|
39
|
+
"@vaadin/component-base": "25.0.0-alpha14",
|
|
40
|
+
"@vaadin/field-base": "25.0.0-alpha14",
|
|
41
|
+
"@vaadin/input-container": "25.0.0-alpha14",
|
|
42
|
+
"@vaadin/overlay": "25.0.0-alpha14",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha14",
|
|
44
44
|
"lit": "^3.0.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
48
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
47
|
+
"@vaadin/chai-plugins": "25.0.0-alpha14",
|
|
48
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha14",
|
|
49
49
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
50
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
50
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha14",
|
|
51
51
|
"sinon": "^18.0.0"
|
|
52
52
|
},
|
|
53
53
|
"web-types": [
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "8ebeeeca4b5b6564eff954d6582d0d6760464e51"
|
|
58
58
|
}
|
|
@@ -57,7 +57,7 @@ export const overlayContentStyles = css`
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
:host([desktop]) ::slotted([slot='months']) {
|
|
60
|
-
border-bottom: 1px solid var(--vaadin-border-color);
|
|
60
|
+
border-bottom: 1px solid var(--vaadin-border-color-subtle);
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
::slotted([slot='years']) {
|
|
@@ -65,7 +65,8 @@ export const overlayContentStyles = css`
|
|
|
65
65
|
background: var(--vaadin-date-picker-year-scroller-background, var(--vaadin-background-container));
|
|
66
66
|
width: var(--vaadin-date-picker-year-scroller-width, 3rem);
|
|
67
67
|
box-sizing: border-box;
|
|
68
|
-
border-inline-start: 1px solid
|
|
68
|
+
border-inline-start: 1px solid
|
|
69
|
+
var(--vaadin-date-picker-year-scroller-border-color, var(--vaadin-border-color-subtle));
|
|
69
70
|
overflow: visible;
|
|
70
71
|
min-height: 0;
|
|
71
72
|
clip-path: inset(0);
|
|
@@ -73,7 +74,7 @@ export const overlayContentStyles = css`
|
|
|
73
74
|
|
|
74
75
|
::slotted([slot='years'])::before {
|
|
75
76
|
background: var(--vaadin-overlay-background, var(--vaadin-background-color));
|
|
76
|
-
border: 1px solid var(--vaadin-date-picker-year-scroller-border-color, var(--vaadin-border-color));
|
|
77
|
+
border: 1px solid var(--vaadin-date-picker-year-scroller-border-color, var(--vaadin-border-color-subtle));
|
|
77
78
|
width: 16px;
|
|
78
79
|
height: 16px;
|
|
79
80
|
position: absolute;
|
|
@@ -97,11 +98,11 @@ export const overlayContentStyles = css`
|
|
|
97
98
|
display: flex;
|
|
98
99
|
grid-area: toolbar;
|
|
99
100
|
justify-content: space-between;
|
|
100
|
-
padding: var(--vaadin-date-picker-toolbar-padding, var(--vaadin-padding));
|
|
101
|
+
padding: var(--vaadin-date-picker-toolbar-padding, var(--vaadin-padding-s));
|
|
101
102
|
}
|
|
102
103
|
|
|
103
104
|
:host([fullscreen]) [part='toolbar'] {
|
|
104
105
|
grid-area: header;
|
|
105
|
-
border-bottom: 1px solid var(--vaadin-border-color);
|
|
106
|
+
border-bottom: 1px solid var(--vaadin-border-color-subtle);
|
|
106
107
|
}
|
|
107
108
|
`;
|
|
@@ -9,7 +9,7 @@ import { css } from 'lit';
|
|
|
9
9
|
export const monthCalendarStyles = css`
|
|
10
10
|
:host {
|
|
11
11
|
display: block;
|
|
12
|
-
padding: var(--vaadin-date-picker-month-padding, var(--vaadin-padding));
|
|
12
|
+
padding: var(--vaadin-date-picker-month-padding, var(--vaadin-padding-s));
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
[part='month-header'] {
|
|
@@ -33,7 +33,7 @@ export const monthCalendarStyles = css`
|
|
|
33
33
|
}
|
|
34
34
|
|
|
35
35
|
[part~='weekday'] {
|
|
36
|
-
color: var(--vaadin-date-picker-weekday-color,
|
|
36
|
+
color: var(--vaadin-date-picker-weekday-color, var(--vaadin-color-subtle));
|
|
37
37
|
font-size: var(--vaadin-date-picker-weekday-font-size, 0.75rem);
|
|
38
38
|
font-weight: var(--vaadin-date-picker-weekday-font-weight, 500);
|
|
39
39
|
margin-bottom: 0.375rem;
|
|
@@ -46,7 +46,7 @@ export const monthCalendarStyles = css`
|
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
[part~='week-number'] {
|
|
49
|
-
color: var(--vaadin-date-picker-week-number-color,
|
|
49
|
+
color: var(--vaadin-date-picker-week-number-color, var(--vaadin-color-subtle));
|
|
50
50
|
font-size: var(--vaadin-date-picker-week-number-font-size, 0.7rem);
|
|
51
51
|
line-height: 1;
|
|
52
52
|
width: 100%;
|
|
@@ -59,7 +59,10 @@ export const monthCalendarStyles = css`
|
|
|
59
59
|
content: '';
|
|
60
60
|
height: 1px;
|
|
61
61
|
flex: 1;
|
|
62
|
-
background: var(
|
|
62
|
+
background: var(
|
|
63
|
+
--vaadin-date-picker-week-divider-color,
|
|
64
|
+
var(--vaadin-divider-color, var(--vaadin-border-color-subtle))
|
|
65
|
+
);
|
|
63
66
|
}
|
|
64
67
|
|
|
65
68
|
[part~='weekday'],
|
|
@@ -9,7 +9,6 @@ import type { DisabledMixinClass } from '@vaadin/a11y-base/src/disabled-mixin.js
|
|
|
9
9
|
import type { FocusMixinClass } from '@vaadin/a11y-base/src/focus-mixin.js';
|
|
10
10
|
import type { KeyboardMixinClass } from '@vaadin/a11y-base/src/keyboard-mixin.js';
|
|
11
11
|
import type { I18nMixinClass } from '@vaadin/component-base/src/i18n-mixin.js';
|
|
12
|
-
import type { OverlayClassMixinClass } from '@vaadin/component-base/src/overlay-class-mixin.js';
|
|
13
12
|
import type { InputConstraintsMixinClass } from '@vaadin/field-base/src/input-constraints-mixin.js';
|
|
14
13
|
import type { InputMixinClass } from '@vaadin/field-base/src/input-mixin.js';
|
|
15
14
|
|
|
@@ -96,7 +95,6 @@ export declare function DatePickerMixin<T extends Constructor<HTMLElement>>(
|
|
|
96
95
|
Constructor<InputConstraintsMixinClass> &
|
|
97
96
|
Constructor<InputMixinClass> &
|
|
98
97
|
Constructor<KeyboardMixinClass> &
|
|
99
|
-
Constructor<OverlayClassMixinClass> &
|
|
100
98
|
T;
|
|
101
99
|
|
|
102
100
|
export declare class DatePickerMixinClass {
|
|
@@ -10,7 +10,6 @@ import { KeyboardMixin } from '@vaadin/a11y-base/src/keyboard-mixin.js';
|
|
|
10
10
|
import { isIOS } from '@vaadin/component-base/src/browser-utils.js';
|
|
11
11
|
import { I18nMixin } from '@vaadin/component-base/src/i18n-mixin.js';
|
|
12
12
|
import { MediaQueryController } from '@vaadin/component-base/src/media-query-controller.js';
|
|
13
|
-
import { OverlayClassMixin } from '@vaadin/component-base/src/overlay-class-mixin.js';
|
|
14
13
|
import { InputConstraintsMixin } from '@vaadin/field-base/src/input-constraints-mixin.js';
|
|
15
14
|
import { VirtualKeyboardController } from '@vaadin/field-base/src/virtual-keyboard-controller.js';
|
|
16
15
|
import {
|
|
@@ -85,13 +84,12 @@ export const datePickerI18nDefaults = Object.freeze({
|
|
|
85
84
|
* @mixes I18nMixin
|
|
86
85
|
* @mixes InputConstraintsMixin
|
|
87
86
|
* @mixes KeyboardMixin
|
|
88
|
-
* @mixes OverlayClassMixin
|
|
89
87
|
* @param {function(new:HTMLElement)} subclass
|
|
90
88
|
*/
|
|
91
89
|
export const DatePickerMixin = (subclass) =>
|
|
92
90
|
class DatePickerMixinClass extends I18nMixin(
|
|
93
91
|
datePickerI18nDefaults,
|
|
94
|
-
|
|
92
|
+
DelegateFocusMixin(InputConstraintsMixin(KeyboardMixin(subclass))),
|
|
95
93
|
) {
|
|
96
94
|
static get properties() {
|
|
97
95
|
return {
|
package/web-types.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/date-picker",
|
|
4
|
-
"version": "25.0.0-
|
|
4
|
+
"version": "25.0.0-alpha14",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "vaadin-date-picker",
|
|
11
|
-
"description": "`<vaadin-date-picker>` is an input field that allows to enter a date by typing or by selecting from a calendar overlay.\n\n```html\n<vaadin-date-picker label=\"Birthday\"></vaadin-date-picker>\n```\n```js\ndatePicker.value = '2016-03-02';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following custom properties are available for styling:\n\nCustom property | Description | Default\n-------------------------------|----------------------------|---------\n`--vaadin-field-default-width` | Default width of the field | `12em`\n\n`<vaadin-date-picker>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/25.0.0-
|
|
11
|
+
"description": "`<vaadin-date-picker>` is an input field that allows to enter a date by typing or by selecting from a calendar overlay.\n\n```html\n<vaadin-date-picker label=\"Birthday\"></vaadin-date-picker>\n```\n```js\ndatePicker.value = '2016-03-02';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following custom properties are available for styling:\n\nCustom property | Description | Default\n-------------------------------|----------------------------|---------\n`--vaadin-field-default-width` | Default width of the field | `12em`\n\n`<vaadin-date-picker>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/25.0.0-alpha14/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n-----------------|--------------------\n`toggle-button` | Toggle button\n`backdrop` | Backdrop of the overlay\n`overlay` | The overlay container\n`content` | The overlay content\n\nIn addition to `<vaadin-text-field>` state attributes, the following state attributes are available for theming:\n\nAttribute | Description\n---------------|----------------------------------------------\n`opened` | Set when the date selector overlay is opened\n`week-numbers` | Set when week numbers are shown in the calendar\n\n### Internal components\n\nIn addition to `<vaadin-date-picker>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-date-picker-overlay-content>`\n- `<vaadin-date-picker-month-scroller>`\n- `<vaadin-date-picker-year-scroller>`\n- `<vaadin-date-picker-year>`\n- `<vaadin-month-calendar>`\n\nIn order to style the overlay content, use `<vaadin-date-picker-overlay-content>` shadow DOM parts:\n\nPart name | Description\n----------------------|--------------------\n`years-toggle-button` | Fullscreen mode years scroller toggle\n`toolbar` | Toolbar with slotted buttons\n\nThe following state attributes are available on the `<vaadin-date-picker-overlay-content>` element:\n\nAttribute | Description\n----------------|-------------------------------------------------\n`desktop` | Set when the overlay content is in desktop mode\n`fullscreen` | Set when the overlay content is in fullscreen mode\n`years-visible` | Set when the year scroller is visible in fullscreen mode\n\nIn order to style the month calendar, use `<vaadin-month-calendar>` shadow DOM parts:\n\nPart name | Description\n----------------------|--------------------\n`month-header` | Month title\n`weekdays` | Weekday container\n`weekday` | Weekday element\n`week-numbers` | Week numbers container\n`week-number` | Week number element\n`date` | Date element\n`disabled` | Disabled date element\n`focused` | Focused date element\n`selected` | Selected date element\n`today` | Date element corresponding to the current day\n`past` | Date element corresponding to the date in the past\n`future` | Date element corresponding to the date in the future\n\nIn order to style year scroller elements, use `<vaadin-date-picker-year>` shadow DOM parts:\n\nPart name | Description\n----------------------|--------------------\n`year-number` | Year number\n`year-separator` | Year separator\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.\n\n### Change events\n\nDepending on the nature of the value change that the user attempts to commit e.g. by pressing Enter,\nthe component can fire either a `change` event or an `unparsable-change` event:\n\nValue change | Event\n:------------------------|:------------------\nempty => parsable | change\nempty => unparsable | unparsable-change\nparsable => empty | change\nparsable => parsable | change\nparsable => unparsable | change\nunparsable => empty | unparsable-change\nunparsable => parsable | change\nunparsable => unparsable | unparsable-change",
|
|
12
12
|
"attributes": [
|
|
13
13
|
{
|
|
14
14
|
"name": "disabled",
|
|
@@ -215,17 +215,6 @@
|
|
|
215
215
|
]
|
|
216
216
|
}
|
|
217
217
|
},
|
|
218
|
-
{
|
|
219
|
-
"name": "overlay-class",
|
|
220
|
-
"description": "A space-delimited list of CSS class names to set on the overlay element.\nThis property does not affect other CSS class names set manually via JS.\n\nNote, if the CSS class name was set with this property, clearing it will\nremove it from the overlay, even if the same class name was also added\nmanually, e.g. by using `classList.add()` in the `renderer` function.",
|
|
221
|
-
"value": {
|
|
222
|
-
"type": [
|
|
223
|
-
"string",
|
|
224
|
-
"null",
|
|
225
|
-
"undefined"
|
|
226
|
-
]
|
|
227
|
-
}
|
|
228
|
-
},
|
|
229
218
|
{
|
|
230
219
|
"name": "initial-position",
|
|
231
220
|
"description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
|
|
@@ -509,17 +498,6 @@
|
|
|
509
498
|
]
|
|
510
499
|
}
|
|
511
500
|
},
|
|
512
|
-
{
|
|
513
|
-
"name": "overlayClass",
|
|
514
|
-
"description": "A space-delimited list of CSS class names to set on the overlay element.\nThis property does not affect other CSS class names set manually via JS.\n\nNote, if the CSS class name was set with this property, clearing it will\nremove it from the overlay, even if the same class name was also added\nmanually, e.g. by using `classList.add()` in the `renderer` function.",
|
|
515
|
-
"value": {
|
|
516
|
-
"type": [
|
|
517
|
-
"string",
|
|
518
|
-
"null",
|
|
519
|
-
"undefined"
|
|
520
|
-
]
|
|
521
|
-
}
|
|
522
|
-
},
|
|
523
501
|
{
|
|
524
502
|
"name": "initialPosition",
|
|
525
503
|
"description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/date-picker",
|
|
4
|
-
"version": "25.0.0-
|
|
4
|
+
"version": "25.0.0-alpha14",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"elements": [
|
|
17
17
|
{
|
|
18
18
|
"name": "vaadin-date-picker",
|
|
19
|
-
"description": "`<vaadin-date-picker>` is an input field that allows to enter a date by typing or by selecting from a calendar overlay.\n\n```html\n<vaadin-date-picker label=\"Birthday\"></vaadin-date-picker>\n```\n```js\ndatePicker.value = '2016-03-02';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following custom properties are available for styling:\n\nCustom property | Description | Default\n-------------------------------|----------------------------|---------\n`--vaadin-field-default-width` | Default width of the field | `12em`\n\n`<vaadin-date-picker>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/25.0.0-
|
|
19
|
+
"description": "`<vaadin-date-picker>` is an input field that allows to enter a date by typing or by selecting from a calendar overlay.\n\n```html\n<vaadin-date-picker label=\"Birthday\"></vaadin-date-picker>\n```\n```js\ndatePicker.value = '2016-03-02';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following custom properties are available for styling:\n\nCustom property | Description | Default\n-------------------------------|----------------------------|---------\n`--vaadin-field-default-width` | Default width of the field | `12em`\n\n`<vaadin-date-picker>` provides the same set of shadow DOM parts and state attributes as `<vaadin-text-field>`.\nSee [`<vaadin-text-field>`](https://cdn.vaadin.com/vaadin-web-components/25.0.0-alpha14/#/elements/vaadin-text-field) for the styling documentation.\n\nIn addition to `<vaadin-text-field>` parts, the following parts are available for theming:\n\nPart name | Description\n-----------------|--------------------\n`toggle-button` | Toggle button\n`backdrop` | Backdrop of the overlay\n`overlay` | The overlay container\n`content` | The overlay content\n\nIn addition to `<vaadin-text-field>` state attributes, the following state attributes are available for theming:\n\nAttribute | Description\n---------------|----------------------------------------------\n`opened` | Set when the date selector overlay is opened\n`week-numbers` | Set when week numbers are shown in the calendar\n\n### Internal components\n\nIn addition to `<vaadin-date-picker>` itself, the following internal\ncomponents are themable:\n\n- `<vaadin-date-picker-overlay-content>`\n- `<vaadin-date-picker-month-scroller>`\n- `<vaadin-date-picker-year-scroller>`\n- `<vaadin-date-picker-year>`\n- `<vaadin-month-calendar>`\n\nIn order to style the overlay content, use `<vaadin-date-picker-overlay-content>` shadow DOM parts:\n\nPart name | Description\n----------------------|--------------------\n`years-toggle-button` | Fullscreen mode years scroller toggle\n`toolbar` | Toolbar with slotted buttons\n\nThe following state attributes are available on the `<vaadin-date-picker-overlay-content>` element:\n\nAttribute | Description\n----------------|-------------------------------------------------\n`desktop` | Set when the overlay content is in desktop mode\n`fullscreen` | Set when the overlay content is in fullscreen mode\n`years-visible` | Set when the year scroller is visible in fullscreen mode\n\nIn order to style the month calendar, use `<vaadin-month-calendar>` shadow DOM parts:\n\nPart name | Description\n----------------------|--------------------\n`month-header` | Month title\n`weekdays` | Weekday container\n`weekday` | Weekday element\n`week-numbers` | Week numbers container\n`week-number` | Week number element\n`date` | Date element\n`disabled` | Disabled date element\n`focused` | Focused date element\n`selected` | Selected date element\n`today` | Date element corresponding to the current day\n`past` | Date element corresponding to the date in the past\n`future` | Date element corresponding to the date in the future\n\nIn order to style year scroller elements, use `<vaadin-date-picker-year>` shadow DOM parts:\n\nPart name | Description\n----------------------|--------------------\n`year-number` | Year number\n`year-separator` | Year separator\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.\n\n### Change events\n\nDepending on the nature of the value change that the user attempts to commit e.g. by pressing Enter,\nthe component can fire either a `change` event or an `unparsable-change` event:\n\nValue change | Event\n:------------------------|:------------------\nempty => parsable | change\nempty => unparsable | unparsable-change\nparsable => empty | change\nparsable => parsable | change\nparsable => unparsable | change\nunparsable => empty | unparsable-change\nunparsable => parsable | change\nunparsable => unparsable | unparsable-change",
|
|
20
20
|
"extension": true,
|
|
21
21
|
"attributes": [
|
|
22
22
|
{
|
|
@@ -180,13 +180,6 @@
|
|
|
180
180
|
"kind": "expression"
|
|
181
181
|
}
|
|
182
182
|
},
|
|
183
|
-
{
|
|
184
|
-
"name": ".overlayClass",
|
|
185
|
-
"description": "A space-delimited list of CSS class names to set on the overlay element.\nThis property does not affect other CSS class names set manually via JS.\n\nNote, if the CSS class name was set with this property, clearing it will\nremove it from the overlay, even if the same class name was also added\nmanually, e.g. by using `classList.add()` in the `renderer` function.",
|
|
186
|
-
"value": {
|
|
187
|
-
"kind": "expression"
|
|
188
|
-
}
|
|
189
|
-
},
|
|
190
183
|
{
|
|
191
184
|
"name": ".initialPosition",
|
|
192
185
|
"description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
|