@vaadin/date-time-picker 24.2.0-alpha7 → 24.2.0-alpha8
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 +11 -11
- package/src/vaadin-date-time-picker.d.ts +17 -0
- package/src/vaadin-date-time-picker.js +23 -0
- package/web-types.json +31 -5
- package/web-types.lit.json +18 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/date-time-picker",
|
|
3
|
-
"version": "24.2.0-
|
|
3
|
+
"version": "24.2.0-alpha8",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/a11y-base": "24.2.0-
|
|
40
|
-
"@vaadin/component-base": "24.2.0-
|
|
41
|
-
"@vaadin/custom-field": "24.2.0-
|
|
42
|
-
"@vaadin/date-picker": "24.2.0-
|
|
43
|
-
"@vaadin/field-base": "24.2.0-
|
|
44
|
-
"@vaadin/time-picker": "24.2.0-
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "24.2.0-
|
|
46
|
-
"@vaadin/vaadin-material-styles": "24.2.0-
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "24.2.0-
|
|
39
|
+
"@vaadin/a11y-base": "24.2.0-alpha8",
|
|
40
|
+
"@vaadin/component-base": "24.2.0-alpha8",
|
|
41
|
+
"@vaadin/custom-field": "24.2.0-alpha8",
|
|
42
|
+
"@vaadin/date-picker": "24.2.0-alpha8",
|
|
43
|
+
"@vaadin/field-base": "24.2.0-alpha8",
|
|
44
|
+
"@vaadin/time-picker": "24.2.0-alpha8",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "24.2.0-alpha8",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "24.2.0-alpha8",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "24.2.0-alpha8"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "2c024e8fd462d178430418f76a61f498fb549998"
|
|
59
59
|
}
|
|
@@ -39,6 +39,11 @@ export type DateTimePickerChangeEvent = Event & {
|
|
|
39
39
|
*/
|
|
40
40
|
export type DateTimePickerInvalidChangedEvent = CustomEvent<{ value: boolean }>;
|
|
41
41
|
|
|
42
|
+
/**
|
|
43
|
+
* Fired when the `dirty` property changes.
|
|
44
|
+
*/
|
|
45
|
+
export type DateTimePickerDirtyChangedEvent = CustomEvent<{ value: boolean }>;
|
|
46
|
+
|
|
42
47
|
/**
|
|
43
48
|
* Fired when the `value` property changes.
|
|
44
49
|
*/
|
|
@@ -52,6 +57,8 @@ export type DateTimePickerValidatedEvent = CustomEvent<{ valid: boolean }>;
|
|
|
52
57
|
export interface DateTimePickerCustomEventMap {
|
|
53
58
|
'invalid-changed': DateTimePickerInvalidChangedEvent;
|
|
54
59
|
|
|
60
|
+
'dirty-changed': DateTimePickerDirtyChangedEvent;
|
|
61
|
+
|
|
55
62
|
'value-changed': DateTimePickerValueChangedEvent;
|
|
56
63
|
|
|
57
64
|
validated: DateTimePickerValidatedEvent;
|
|
@@ -113,6 +120,7 @@ export interface DateTimePickerEventMap extends DateTimePickerCustomEventMap, HT
|
|
|
113
120
|
*
|
|
114
121
|
* @fires {Event} change - Fired when the user commits a value change.
|
|
115
122
|
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
|
|
123
|
+
* @fires {CustomEvent} dirty-changed - Fired when the `dirty` property changes.
|
|
116
124
|
* @fires {CustomEvent} value-changed - Fired when the `value` property changes.
|
|
117
125
|
* @fires {CustomEvent} validated - Fired whenever the field is validated.
|
|
118
126
|
*/
|
|
@@ -214,6 +222,15 @@ declare class DateTimePicker extends FieldMixin(DisabledMixin(FocusMixin(Themabl
|
|
|
214
222
|
*/
|
|
215
223
|
autofocus: boolean;
|
|
216
224
|
|
|
225
|
+
/**
|
|
226
|
+
* Whether the field is dirty.
|
|
227
|
+
*
|
|
228
|
+
* The field is automatically marked as dirty once the user triggers
|
|
229
|
+
* an `input` or `change` event on the child pickers. Additionally, the field
|
|
230
|
+
* can be manually marked as dirty by setting the property to `true`.
|
|
231
|
+
*/
|
|
232
|
+
dirty: boolean;
|
|
233
|
+
|
|
217
234
|
/**
|
|
218
235
|
* The object used to localize this component.
|
|
219
236
|
* To change the default localization, replace the entire
|
|
@@ -322,6 +322,19 @@ class DateTimePicker extends FieldMixin(DisabledMixin(FocusMixin(ThemableMixin(E
|
|
|
322
322
|
type: Boolean,
|
|
323
323
|
},
|
|
324
324
|
|
|
325
|
+
/**
|
|
326
|
+
* Whether the field is dirty.
|
|
327
|
+
*
|
|
328
|
+
* The field is automatically marked as dirty once the user triggers
|
|
329
|
+
* an `input` or `change` event on the child pickers. Additionally, the field
|
|
330
|
+
* can be manually marked as dirty by setting the property to `true`.
|
|
331
|
+
*/
|
|
332
|
+
dirty: {
|
|
333
|
+
type: Boolean,
|
|
334
|
+
value: false,
|
|
335
|
+
notify: true,
|
|
336
|
+
},
|
|
337
|
+
|
|
325
338
|
/**
|
|
326
339
|
* The current selected date time.
|
|
327
340
|
* @private
|
|
@@ -409,6 +422,7 @@ class DateTimePicker extends FieldMixin(DisabledMixin(FocusMixin(ThemableMixin(E
|
|
|
409
422
|
this.__defaultTimeMaxValue = '23:59:59.999';
|
|
410
423
|
|
|
411
424
|
this.__changeEventHandler = this.__changeEventHandler.bind(this);
|
|
425
|
+
this.__dirtyChangedEventHandler = this.__dirtyChangedEventHandler.bind(this);
|
|
412
426
|
this.__valueChangedEventHandler = this.__valueChangedEventHandler.bind(this);
|
|
413
427
|
}
|
|
414
428
|
|
|
@@ -516,15 +530,24 @@ class DateTimePicker extends FieldMixin(DisabledMixin(FocusMixin(ThemableMixin(E
|
|
|
516
530
|
this.__dispatchChangeForValue = undefined;
|
|
517
531
|
}
|
|
518
532
|
|
|
533
|
+
/** @private */
|
|
534
|
+
__dirtyChangedEventHandler(event) {
|
|
535
|
+
if (event.detail.value) {
|
|
536
|
+
this.dirty = true;
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
519
540
|
/** @private */
|
|
520
541
|
__addInputListeners(node) {
|
|
521
542
|
node.addEventListener('change', this.__changeEventHandler);
|
|
543
|
+
node.addEventListener('dirty-changed', this.__dirtyChangedEventHandler);
|
|
522
544
|
node.addEventListener('value-changed', this.__valueChangedEventHandler);
|
|
523
545
|
}
|
|
524
546
|
|
|
525
547
|
/** @private */
|
|
526
548
|
__removeInputListeners(node) {
|
|
527
549
|
node.removeEventListener('change', this.__changeEventHandler);
|
|
550
|
+
node.removeEventListener('dirty-changed', this.__dirtyChangedEventHandler);
|
|
528
551
|
node.removeEventListener('value-changed', this.__valueChangedEventHandler);
|
|
529
552
|
}
|
|
530
553
|
|
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-time-picker",
|
|
4
|
-
"version": "24.2.0-
|
|
4
|
+
"version": "24.2.0-alpha8",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"elements": [
|
|
9
9
|
{
|
|
10
10
|
"name": "vaadin-date-time-picker",
|
|
11
|
-
"description": "`<vaadin-date-time-picker>` is a Web Component providing a date time selection field.\n\n```html\n<vaadin-date-time-picker value=\"2019-09-16T15:00\"></vaadin-date-time-picker>\n```\n```js\ndateTimePicker.value = '2019-09-16T15:00';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The slotted label element wrapper\n`helper-text` | The slotted helper text element wrapper\n`error-message` | The slotted error message element wrapper\n`required-indicator` | The `required` state indicator element\n\nThe following state attributes are available for styling:\n\nAttribute | Description | Part name\n--------------------|-------------------------------------------|------------\n`disabled` | Set when the element is disabled | :host\n`focused` | Set when the element is focused | :host\n`focus-ring` | Set when the element is keyboard focused | :host\n`readonly` | Set when the element is readonly | :host\n`invalid` | Set when the element is invalid | :host\n`has-label` | Set when the element has a label | :host\n`has-value` | Set when the element has a value | :host\n`has-helper` | Set when the element has helper text | :host\n`has-error-message` | Set when the element has an error message | :host\n\n### Internal components\n\nThe following components are created by `<vaadin-date-time-picker>` and placed in light DOM:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-
|
|
11
|
+
"description": "`<vaadin-date-time-picker>` is a Web Component providing a date time selection field.\n\n```html\n<vaadin-date-time-picker value=\"2019-09-16T15:00\"></vaadin-date-time-picker>\n```\n```js\ndateTimePicker.value = '2019-09-16T15:00';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The slotted label element wrapper\n`helper-text` | The slotted helper text element wrapper\n`error-message` | The slotted error message element wrapper\n`required-indicator` | The `required` state indicator element\n\nThe following state attributes are available for styling:\n\nAttribute | Description | Part name\n--------------------|-------------------------------------------|------------\n`disabled` | Set when the element is disabled | :host\n`focused` | Set when the element is focused | :host\n`focus-ring` | Set when the element is keyboard focused | :host\n`readonly` | Set when the element is readonly | :host\n`invalid` | Set when the element is invalid | :host\n`has-label` | Set when the element has a label | :host\n`has-value` | Set when the element has a value | :host\n`has-helper` | Set when the element has helper text | :host\n`has-error-message` | Set when the element has an error message | :host\n\n### Internal components\n\nThe following components are created by `<vaadin-date-time-picker>` and placed in light DOM:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-date-picker).\n- [`<vaadin-time-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-time-picker).\n\nNote: the `theme` attribute value set on `<vaadin-date-time-picker>` is\npropagated to these components.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
12
12
|
"attributes": [
|
|
13
13
|
{
|
|
14
14
|
"name": "disabled",
|
|
@@ -222,9 +222,20 @@
|
|
|
222
222
|
]
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
|
+
{
|
|
226
|
+
"name": "dirty",
|
|
227
|
+
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event on the child pickers. Additionally, the field\ncan be manually marked as dirty by setting the property to `true`.",
|
|
228
|
+
"value": {
|
|
229
|
+
"type": [
|
|
230
|
+
"boolean",
|
|
231
|
+
"null",
|
|
232
|
+
"undefined"
|
|
233
|
+
]
|
|
234
|
+
}
|
|
235
|
+
},
|
|
225
236
|
{
|
|
226
237
|
"name": "overlay-class",
|
|
227
|
-
"description": "A space-delimited list of CSS class names to set on the overlay elements\nof the internal components controlled by the `<vaadin-date-time-picker>`:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-
|
|
238
|
+
"description": "A space-delimited list of CSS class names to set on the overlay elements\nof the internal components controlled by the `<vaadin-date-time-picker>`:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-date-picker#property-overlayClass)\n- [`<vaadin-time-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-time-picker#property-overlayClass)",
|
|
228
239
|
"value": {
|
|
229
240
|
"type": [
|
|
230
241
|
"string",
|
|
@@ -459,9 +470,20 @@
|
|
|
459
470
|
]
|
|
460
471
|
}
|
|
461
472
|
},
|
|
473
|
+
{
|
|
474
|
+
"name": "dirty",
|
|
475
|
+
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event on the child pickers. Additionally, the field\ncan be manually marked as dirty by setting the property to `true`.",
|
|
476
|
+
"value": {
|
|
477
|
+
"type": [
|
|
478
|
+
"boolean",
|
|
479
|
+
"null",
|
|
480
|
+
"undefined"
|
|
481
|
+
]
|
|
482
|
+
}
|
|
483
|
+
},
|
|
462
484
|
{
|
|
463
485
|
"name": "i18n",
|
|
464
|
-
"description": "The object used to localize this component.\nTo change the default localization, replace the entire\n`i18n` object or just the properties you want to modify.\n\nThe object is a combination of the i18n properties supported by\n[`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-
|
|
486
|
+
"description": "The object used to localize this component.\nTo change the default localization, replace the entire\n`i18n` object or just the properties you want to modify.\n\nThe object is a combination of the i18n properties supported by\n[`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-date-picker) and\n[`<vaadin-time-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-time-picker).",
|
|
465
487
|
"value": {
|
|
466
488
|
"type": [
|
|
467
489
|
"DateTimePickerI18n"
|
|
@@ -470,7 +492,7 @@
|
|
|
470
492
|
},
|
|
471
493
|
{
|
|
472
494
|
"name": "overlayClass",
|
|
473
|
-
"description": "A space-delimited list of CSS class names to set on the overlay elements\nof the internal components controlled by the `<vaadin-date-time-picker>`:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-
|
|
495
|
+
"description": "A space-delimited list of CSS class names to set on the overlay elements\nof the internal components controlled by the `<vaadin-date-time-picker>`:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-date-picker#property-overlayClass)\n- [`<vaadin-time-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-time-picker#property-overlayClass)",
|
|
474
496
|
"value": {
|
|
475
497
|
"type": [
|
|
476
498
|
"string",
|
|
@@ -493,6 +515,10 @@
|
|
|
493
515
|
"name": "value-changed",
|
|
494
516
|
"description": "Fired when the `value` property changes."
|
|
495
517
|
},
|
|
518
|
+
{
|
|
519
|
+
"name": "dirty-changed",
|
|
520
|
+
"description": "Fired when the `dirty` property changes."
|
|
521
|
+
},
|
|
496
522
|
{
|
|
497
523
|
"name": "invalid-changed",
|
|
498
524
|
"description": "Fired when the `invalid` property changes."
|
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-time-picker",
|
|
4
|
-
"version": "24.2.0-
|
|
4
|
+
"version": "24.2.0-alpha8",
|
|
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-time-picker",
|
|
19
|
-
"description": "`<vaadin-date-time-picker>` is a Web Component providing a date time selection field.\n\n```html\n<vaadin-date-time-picker value=\"2019-09-16T15:00\"></vaadin-date-time-picker>\n```\n```js\ndateTimePicker.value = '2019-09-16T15:00';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The slotted label element wrapper\n`helper-text` | The slotted helper text element wrapper\n`error-message` | The slotted error message element wrapper\n`required-indicator` | The `required` state indicator element\n\nThe following state attributes are available for styling:\n\nAttribute | Description | Part name\n--------------------|-------------------------------------------|------------\n`disabled` | Set when the element is disabled | :host\n`focused` | Set when the element is focused | :host\n`focus-ring` | Set when the element is keyboard focused | :host\n`readonly` | Set when the element is readonly | :host\n`invalid` | Set when the element is invalid | :host\n`has-label` | Set when the element has a label | :host\n`has-value` | Set when the element has a value | :host\n`has-helper` | Set when the element has helper text | :host\n`has-error-message` | Set when the element has an error message | :host\n\n### Internal components\n\nThe following components are created by `<vaadin-date-time-picker>` and placed in light DOM:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-
|
|
19
|
+
"description": "`<vaadin-date-time-picker>` is a Web Component providing a date time selection field.\n\n```html\n<vaadin-date-time-picker value=\"2019-09-16T15:00\"></vaadin-date-time-picker>\n```\n```js\ndateTimePicker.value = '2019-09-16T15:00';\n```\n\nWhen the selected `value` is changed, a `value-changed` event is triggered.\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name | Description\n---------------------|----------------\n`label` | The slotted label element wrapper\n`helper-text` | The slotted helper text element wrapper\n`error-message` | The slotted error message element wrapper\n`required-indicator` | The `required` state indicator element\n\nThe following state attributes are available for styling:\n\nAttribute | Description | Part name\n--------------------|-------------------------------------------|------------\n`disabled` | Set when the element is disabled | :host\n`focused` | Set when the element is focused | :host\n`focus-ring` | Set when the element is keyboard focused | :host\n`readonly` | Set when the element is readonly | :host\n`invalid` | Set when the element is invalid | :host\n`has-label` | Set when the element has a label | :host\n`has-value` | Set when the element has a value | :host\n`has-helper` | Set when the element has helper text | :host\n`has-error-message` | Set when the element has an error message | :host\n\n### Internal components\n\nThe following components are created by `<vaadin-date-time-picker>` and placed in light DOM:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-date-picker).\n- [`<vaadin-time-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-time-picker).\n\nNote: the `theme` attribute value set on `<vaadin-date-time-picker>` is\npropagated to these components.\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
|
|
20
20
|
"extension": true,
|
|
21
21
|
"attributes": [
|
|
22
22
|
{
|
|
@@ -68,6 +68,13 @@
|
|
|
68
68
|
"kind": "expression"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
+
{
|
|
72
|
+
"name": "?dirty",
|
|
73
|
+
"description": "Whether the field is dirty.\n\nThe field is automatically marked as dirty once the user triggers\nan `input` or `change` event on the child pickers. Additionally, the field\ncan be manually marked as dirty by setting the property to `true`.",
|
|
74
|
+
"value": {
|
|
75
|
+
"kind": "expression"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
71
78
|
{
|
|
72
79
|
"name": ".label",
|
|
73
80
|
"description": "The label text for the input node.\nWhen no light dom defined via [slot=label], this value will be used.",
|
|
@@ -161,14 +168,14 @@
|
|
|
161
168
|
},
|
|
162
169
|
{
|
|
163
170
|
"name": ".i18n",
|
|
164
|
-
"description": "The object used to localize this component.\nTo change the default localization, replace the entire\n`i18n` object or just the properties you want to modify.\n\nThe object is a combination of the i18n properties supported by\n[`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-
|
|
171
|
+
"description": "The object used to localize this component.\nTo change the default localization, replace the entire\n`i18n` object or just the properties you want to modify.\n\nThe object is a combination of the i18n properties supported by\n[`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-date-picker) and\n[`<vaadin-time-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-time-picker).",
|
|
165
172
|
"value": {
|
|
166
173
|
"kind": "expression"
|
|
167
174
|
}
|
|
168
175
|
},
|
|
169
176
|
{
|
|
170
177
|
"name": ".overlayClass",
|
|
171
|
-
"description": "A space-delimited list of CSS class names to set on the overlay elements\nof the internal components controlled by the `<vaadin-date-time-picker>`:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-
|
|
178
|
+
"description": "A space-delimited list of CSS class names to set on the overlay elements\nof the internal components controlled by the `<vaadin-date-time-picker>`:\n\n- [`<vaadin-date-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-date-picker#property-overlayClass)\n- [`<vaadin-time-picker>`](https://cdn.vaadin.com/vaadin-web-components/24.2.0-alpha8/#/elements/vaadin-time-picker#property-overlayClass)",
|
|
172
179
|
"value": {
|
|
173
180
|
"kind": "expression"
|
|
174
181
|
}
|
|
@@ -194,6 +201,13 @@
|
|
|
194
201
|
"kind": "expression"
|
|
195
202
|
}
|
|
196
203
|
},
|
|
204
|
+
{
|
|
205
|
+
"name": "@dirty-changed",
|
|
206
|
+
"description": "Fired when the `dirty` property changes.",
|
|
207
|
+
"value": {
|
|
208
|
+
"kind": "expression"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
197
211
|
{
|
|
198
212
|
"name": "@invalid-changed",
|
|
199
213
|
"description": "Fired when the `invalid` property changes.",
|