@vaadin/time-picker 25.2.0-alpha8 → 25.2.0-beta1
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/custom-elements.json +342 -10
- package/package.json +14 -14
- package/src/vaadin-time-picker-item.js +0 -3
- package/src/vaadin-time-picker-mixin.js +15 -26
- package/src/vaadin-time-picker-overlay.js +0 -4
- package/src/vaadin-time-picker-scroller.js +0 -1
- package/src/vaadin-time-picker.js +0 -3
- package/web-types.json +55 -162
- package/web-types.lit.json +52 -52
package/custom-elements.json
CHANGED
|
@@ -164,6 +164,20 @@
|
|
|
164
164
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
165
165
|
}
|
|
166
166
|
},
|
|
167
|
+
{
|
|
168
|
+
"kind": "field",
|
|
169
|
+
"name": "autofocus",
|
|
170
|
+
"privacy": "public",
|
|
171
|
+
"type": {
|
|
172
|
+
"text": "boolean"
|
|
173
|
+
},
|
|
174
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
175
|
+
"attribute": "autofocus",
|
|
176
|
+
"inheritedFrom": {
|
|
177
|
+
"name": "DelegateFocusMixin",
|
|
178
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
179
|
+
}
|
|
180
|
+
},
|
|
167
181
|
{
|
|
168
182
|
"kind": "field",
|
|
169
183
|
"name": "autoOpenDisabled",
|
|
@@ -200,6 +214,19 @@
|
|
|
200
214
|
"type": {
|
|
201
215
|
"text": "boolean"
|
|
202
216
|
}
|
|
217
|
+
},
|
|
218
|
+
"inheritedFrom": {
|
|
219
|
+
"name": "FieldMixin",
|
|
220
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"kind": "method",
|
|
225
|
+
"name": "clear",
|
|
226
|
+
"description": "Clear the value of the field.",
|
|
227
|
+
"inheritedFrom": {
|
|
228
|
+
"name": "ClearButtonMixin",
|
|
229
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
203
230
|
}
|
|
204
231
|
},
|
|
205
232
|
{
|
|
@@ -225,6 +252,20 @@
|
|
|
225
252
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
226
253
|
}
|
|
227
254
|
},
|
|
255
|
+
{
|
|
256
|
+
"kind": "field",
|
|
257
|
+
"name": "disabled",
|
|
258
|
+
"privacy": "public",
|
|
259
|
+
"type": {
|
|
260
|
+
"text": "boolean"
|
|
261
|
+
},
|
|
262
|
+
"description": "If true, the user cannot interact with this element.",
|
|
263
|
+
"attribute": "disabled",
|
|
264
|
+
"inheritedFrom": {
|
|
265
|
+
"name": "DelegateFocusMixin",
|
|
266
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
267
|
+
}
|
|
268
|
+
},
|
|
228
269
|
{
|
|
229
270
|
"kind": "field",
|
|
230
271
|
"name": "errorMessage",
|
|
@@ -267,6 +308,20 @@
|
|
|
267
308
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
268
309
|
}
|
|
269
310
|
},
|
|
311
|
+
{
|
|
312
|
+
"kind": "field",
|
|
313
|
+
"name": "invalid",
|
|
314
|
+
"privacy": "public",
|
|
315
|
+
"type": {
|
|
316
|
+
"text": "boolean"
|
|
317
|
+
},
|
|
318
|
+
"description": "Set to true when the field is invalid.",
|
|
319
|
+
"attribute": "invalid",
|
|
320
|
+
"inheritedFrom": {
|
|
321
|
+
"name": "FieldMixin",
|
|
322
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
270
325
|
{
|
|
271
326
|
"kind": "field",
|
|
272
327
|
"name": "label",
|
|
@@ -281,6 +336,20 @@
|
|
|
281
336
|
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
282
337
|
}
|
|
283
338
|
},
|
|
339
|
+
{
|
|
340
|
+
"kind": "field",
|
|
341
|
+
"name": "manualValidation",
|
|
342
|
+
"privacy": "public",
|
|
343
|
+
"type": {
|
|
344
|
+
"text": "boolean"
|
|
345
|
+
},
|
|
346
|
+
"description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
|
|
347
|
+
"attribute": "manual-validation",
|
|
348
|
+
"inheritedFrom": {
|
|
349
|
+
"name": "FieldMixin",
|
|
350
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
284
353
|
{
|
|
285
354
|
"kind": "field",
|
|
286
355
|
"name": "max",
|
|
@@ -380,6 +449,20 @@
|
|
|
380
449
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
381
450
|
}
|
|
382
451
|
},
|
|
452
|
+
{
|
|
453
|
+
"kind": "field",
|
|
454
|
+
"name": "required",
|
|
455
|
+
"privacy": "public",
|
|
456
|
+
"type": {
|
|
457
|
+
"text": "boolean"
|
|
458
|
+
},
|
|
459
|
+
"description": "Specifies that the user must fill in a value.",
|
|
460
|
+
"attribute": "required",
|
|
461
|
+
"inheritedFrom": {
|
|
462
|
+
"name": "FieldMixin",
|
|
463
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
464
|
+
}
|
|
465
|
+
},
|
|
383
466
|
{
|
|
384
467
|
"kind": "field",
|
|
385
468
|
"name": "step",
|
|
@@ -404,6 +487,20 @@
|
|
|
404
487
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
405
488
|
}
|
|
406
489
|
},
|
|
490
|
+
{
|
|
491
|
+
"kind": "method",
|
|
492
|
+
"name": "validate",
|
|
493
|
+
"description": "Validates the field and sets the `invalid` property based on the result.\n\nThe method fires a `validated` event with the result of the validation.",
|
|
494
|
+
"return": {
|
|
495
|
+
"type": {
|
|
496
|
+
"text": "boolean"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
"inheritedFrom": {
|
|
500
|
+
"name": "FieldMixin",
|
|
501
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
502
|
+
}
|
|
503
|
+
},
|
|
407
504
|
{
|
|
408
505
|
"kind": "field",
|
|
409
506
|
"name": "value",
|
|
@@ -412,7 +509,11 @@
|
|
|
412
509
|
"text": "string"
|
|
413
510
|
},
|
|
414
511
|
"description": "The time value for this element.\n\nSupported time formats are in ISO 8601:\n- `hh:mm` (default)\n- `hh:mm:ss`\n- `hh:mm:ss.fff`",
|
|
415
|
-
"attribute": "value"
|
|
512
|
+
"attribute": "value",
|
|
513
|
+
"inheritedFrom": {
|
|
514
|
+
"name": "ClearButtonMixin",
|
|
515
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
516
|
+
}
|
|
416
517
|
}
|
|
417
518
|
],
|
|
418
519
|
"events": [
|
|
@@ -420,6 +521,10 @@
|
|
|
420
521
|
"name": "change",
|
|
421
522
|
"type": {
|
|
422
523
|
"text": "CustomEvent"
|
|
524
|
+
},
|
|
525
|
+
"inheritedFrom": {
|
|
526
|
+
"name": "InputConstraintsMixin",
|
|
527
|
+
"package": "@vaadin/field-base/src/input-constraints-mixin.js"
|
|
423
528
|
}
|
|
424
529
|
},
|
|
425
530
|
{
|
|
@@ -427,6 +532,16 @@
|
|
|
427
532
|
"type": {
|
|
428
533
|
"text": "CustomEvent"
|
|
429
534
|
}
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
"name": "validated",
|
|
538
|
+
"type": {
|
|
539
|
+
"text": "CustomEvent"
|
|
540
|
+
},
|
|
541
|
+
"inheritedFrom": {
|
|
542
|
+
"name": "FieldMixin",
|
|
543
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
544
|
+
}
|
|
430
545
|
}
|
|
431
546
|
],
|
|
432
547
|
"attributes": [
|
|
@@ -478,6 +593,18 @@
|
|
|
478
593
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
479
594
|
}
|
|
480
595
|
},
|
|
596
|
+
{
|
|
597
|
+
"name": "autofocus",
|
|
598
|
+
"type": {
|
|
599
|
+
"text": "boolean"
|
|
600
|
+
},
|
|
601
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
602
|
+
"fieldName": "autofocus",
|
|
603
|
+
"inheritedFrom": {
|
|
604
|
+
"name": "DelegateFocusMixin",
|
|
605
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
606
|
+
}
|
|
607
|
+
},
|
|
481
608
|
{
|
|
482
609
|
"name": "autoselect",
|
|
483
610
|
"type": {
|
|
@@ -502,6 +629,18 @@
|
|
|
502
629
|
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
503
630
|
}
|
|
504
631
|
},
|
|
632
|
+
{
|
|
633
|
+
"name": "disabled",
|
|
634
|
+
"type": {
|
|
635
|
+
"text": "boolean"
|
|
636
|
+
},
|
|
637
|
+
"description": "If true, the user cannot interact with this element.",
|
|
638
|
+
"fieldName": "disabled",
|
|
639
|
+
"inheritedFrom": {
|
|
640
|
+
"name": "DelegateFocusMixin",
|
|
641
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
642
|
+
}
|
|
643
|
+
},
|
|
505
644
|
{
|
|
506
645
|
"name": "error-message",
|
|
507
646
|
"type": {
|
|
@@ -538,6 +677,18 @@
|
|
|
538
677
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
539
678
|
}
|
|
540
679
|
},
|
|
680
|
+
{
|
|
681
|
+
"name": "invalid",
|
|
682
|
+
"type": {
|
|
683
|
+
"text": "boolean"
|
|
684
|
+
},
|
|
685
|
+
"description": "Set to true when the field is invalid.",
|
|
686
|
+
"fieldName": "invalid",
|
|
687
|
+
"inheritedFrom": {
|
|
688
|
+
"name": "FieldMixin",
|
|
689
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
690
|
+
}
|
|
691
|
+
},
|
|
541
692
|
{
|
|
542
693
|
"name": "label",
|
|
543
694
|
"type": {
|
|
@@ -550,6 +701,18 @@
|
|
|
550
701
|
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
551
702
|
}
|
|
552
703
|
},
|
|
704
|
+
{
|
|
705
|
+
"name": "manual-validation",
|
|
706
|
+
"type": {
|
|
707
|
+
"text": "boolean"
|
|
708
|
+
},
|
|
709
|
+
"description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
|
|
710
|
+
"fieldName": "manualValidation",
|
|
711
|
+
"inheritedFrom": {
|
|
712
|
+
"name": "FieldMixin",
|
|
713
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
714
|
+
}
|
|
715
|
+
},
|
|
553
716
|
{
|
|
554
717
|
"name": "max",
|
|
555
718
|
"type": {
|
|
@@ -626,6 +789,18 @@
|
|
|
626
789
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
627
790
|
}
|
|
628
791
|
},
|
|
792
|
+
{
|
|
793
|
+
"name": "required",
|
|
794
|
+
"type": {
|
|
795
|
+
"text": "boolean"
|
|
796
|
+
},
|
|
797
|
+
"description": "Specifies that the user must fill in a value.",
|
|
798
|
+
"fieldName": "required",
|
|
799
|
+
"inheritedFrom": {
|
|
800
|
+
"name": "FieldMixin",
|
|
801
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
802
|
+
}
|
|
803
|
+
},
|
|
629
804
|
{
|
|
630
805
|
"name": "step",
|
|
631
806
|
"type": {
|
|
@@ -652,7 +827,11 @@
|
|
|
652
827
|
"text": "string"
|
|
653
828
|
},
|
|
654
829
|
"description": "The time value for this element.\n\nSupported time formats are in ISO 8601:\n- `hh:mm` (default)\n- `hh:mm:ss`\n- `hh:mm:ss.fff`",
|
|
655
|
-
"fieldName": "value"
|
|
830
|
+
"fieldName": "value",
|
|
831
|
+
"inheritedFrom": {
|
|
832
|
+
"name": "ClearButtonMixin",
|
|
833
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
834
|
+
}
|
|
656
835
|
}
|
|
657
836
|
],
|
|
658
837
|
"mixins": [
|
|
@@ -660,6 +839,10 @@
|
|
|
660
839
|
"name": "I18nMixin",
|
|
661
840
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
662
841
|
},
|
|
842
|
+
{
|
|
843
|
+
"name": "PatternMixin",
|
|
844
|
+
"package": "@vaadin/field-base/src/pattern-mixin.js"
|
|
845
|
+
},
|
|
663
846
|
{
|
|
664
847
|
"name": "ComboBoxBaseMixin",
|
|
665
848
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
@@ -667,10 +850,6 @@
|
|
|
667
850
|
{
|
|
668
851
|
"name": "InputControlMixin",
|
|
669
852
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
670
|
-
},
|
|
671
|
-
{
|
|
672
|
-
"name": "PatternMixin",
|
|
673
|
-
"package": "@vaadin/field-base/src/pattern-mixin.js"
|
|
674
853
|
}
|
|
675
854
|
],
|
|
676
855
|
"parameters": [
|
|
@@ -750,6 +929,20 @@
|
|
|
750
929
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
751
930
|
}
|
|
752
931
|
},
|
|
932
|
+
{
|
|
933
|
+
"kind": "field",
|
|
934
|
+
"name": "autofocus",
|
|
935
|
+
"privacy": "public",
|
|
936
|
+
"type": {
|
|
937
|
+
"text": "boolean"
|
|
938
|
+
},
|
|
939
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
940
|
+
"attribute": "autofocus",
|
|
941
|
+
"inheritedFrom": {
|
|
942
|
+
"name": "DelegateFocusMixin",
|
|
943
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
944
|
+
}
|
|
945
|
+
},
|
|
753
946
|
{
|
|
754
947
|
"kind": "field",
|
|
755
948
|
"name": "autoOpenDisabled",
|
|
@@ -788,8 +981,17 @@
|
|
|
788
981
|
}
|
|
789
982
|
},
|
|
790
983
|
"inheritedFrom": {
|
|
791
|
-
"name": "
|
|
792
|
-
"
|
|
984
|
+
"name": "InputConstraintsMixin",
|
|
985
|
+
"package": "@vaadin/field-base/src/input-constraints-mixin.js"
|
|
986
|
+
}
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"kind": "method",
|
|
990
|
+
"name": "clear",
|
|
991
|
+
"description": "Clear the value of the field.",
|
|
992
|
+
"inheritedFrom": {
|
|
993
|
+
"name": "ClearButtonMixin",
|
|
994
|
+
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
793
995
|
}
|
|
794
996
|
},
|
|
795
997
|
{
|
|
@@ -815,6 +1017,20 @@
|
|
|
815
1017
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
816
1018
|
}
|
|
817
1019
|
},
|
|
1020
|
+
{
|
|
1021
|
+
"kind": "field",
|
|
1022
|
+
"name": "disabled",
|
|
1023
|
+
"privacy": "public",
|
|
1024
|
+
"type": {
|
|
1025
|
+
"text": "boolean"
|
|
1026
|
+
},
|
|
1027
|
+
"description": "If true, the user cannot interact with this element.",
|
|
1028
|
+
"attribute": "disabled",
|
|
1029
|
+
"inheritedFrom": {
|
|
1030
|
+
"name": "DelegateFocusMixin",
|
|
1031
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
818
1034
|
{
|
|
819
1035
|
"kind": "field",
|
|
820
1036
|
"name": "errorMessage",
|
|
@@ -857,6 +1073,20 @@
|
|
|
857
1073
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
858
1074
|
}
|
|
859
1075
|
},
|
|
1076
|
+
{
|
|
1077
|
+
"kind": "field",
|
|
1078
|
+
"name": "invalid",
|
|
1079
|
+
"privacy": "public",
|
|
1080
|
+
"type": {
|
|
1081
|
+
"text": "boolean"
|
|
1082
|
+
},
|
|
1083
|
+
"description": "Set to true when the field is invalid.",
|
|
1084
|
+
"attribute": "invalid",
|
|
1085
|
+
"inheritedFrom": {
|
|
1086
|
+
"name": "FieldMixin",
|
|
1087
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
860
1090
|
{
|
|
861
1091
|
"kind": "field",
|
|
862
1092
|
"name": "label",
|
|
@@ -871,6 +1101,20 @@
|
|
|
871
1101
|
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
872
1102
|
}
|
|
873
1103
|
},
|
|
1104
|
+
{
|
|
1105
|
+
"kind": "field",
|
|
1106
|
+
"name": "manualValidation",
|
|
1107
|
+
"privacy": "public",
|
|
1108
|
+
"type": {
|
|
1109
|
+
"text": "boolean"
|
|
1110
|
+
},
|
|
1111
|
+
"description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
|
|
1112
|
+
"attribute": "manual-validation",
|
|
1113
|
+
"inheritedFrom": {
|
|
1114
|
+
"name": "FieldMixin",
|
|
1115
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1116
|
+
}
|
|
1117
|
+
},
|
|
874
1118
|
{
|
|
875
1119
|
"kind": "field",
|
|
876
1120
|
"name": "max",
|
|
@@ -978,6 +1222,20 @@
|
|
|
978
1222
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
979
1223
|
}
|
|
980
1224
|
},
|
|
1225
|
+
{
|
|
1226
|
+
"kind": "field",
|
|
1227
|
+
"name": "required",
|
|
1228
|
+
"privacy": "public",
|
|
1229
|
+
"type": {
|
|
1230
|
+
"text": "boolean"
|
|
1231
|
+
},
|
|
1232
|
+
"description": "Specifies that the user must fill in a value.",
|
|
1233
|
+
"attribute": "required",
|
|
1234
|
+
"inheritedFrom": {
|
|
1235
|
+
"name": "FieldMixin",
|
|
1236
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
981
1239
|
{
|
|
982
1240
|
"kind": "field",
|
|
983
1241
|
"name": "step",
|
|
@@ -1006,6 +1264,20 @@
|
|
|
1006
1264
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
1007
1265
|
}
|
|
1008
1266
|
},
|
|
1267
|
+
{
|
|
1268
|
+
"kind": "method",
|
|
1269
|
+
"name": "validate",
|
|
1270
|
+
"description": "Validates the field and sets the `invalid` property based on the result.\n\nThe method fires a `validated` event with the result of the validation.",
|
|
1271
|
+
"return": {
|
|
1272
|
+
"type": {
|
|
1273
|
+
"text": "boolean"
|
|
1274
|
+
}
|
|
1275
|
+
},
|
|
1276
|
+
"inheritedFrom": {
|
|
1277
|
+
"name": "FieldMixin",
|
|
1278
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1279
|
+
}
|
|
1280
|
+
},
|
|
1009
1281
|
{
|
|
1010
1282
|
"kind": "field",
|
|
1011
1283
|
"name": "value",
|
|
@@ -1029,8 +1301,8 @@
|
|
|
1029
1301
|
},
|
|
1030
1302
|
"description": "Fired when the user commits a value change.",
|
|
1031
1303
|
"inheritedFrom": {
|
|
1032
|
-
"name": "
|
|
1033
|
-
"
|
|
1304
|
+
"name": "InputConstraintsMixin",
|
|
1305
|
+
"package": "@vaadin/field-base/src/input-constraints-mixin.js"
|
|
1034
1306
|
}
|
|
1035
1307
|
},
|
|
1036
1308
|
{
|
|
@@ -1150,6 +1422,18 @@
|
|
|
1150
1422
|
"package": "@vaadin/combo-box/src/vaadin-combo-box-base-mixin.js"
|
|
1151
1423
|
}
|
|
1152
1424
|
},
|
|
1425
|
+
{
|
|
1426
|
+
"name": "autofocus",
|
|
1427
|
+
"type": {
|
|
1428
|
+
"text": "boolean"
|
|
1429
|
+
},
|
|
1430
|
+
"description": "Specify that this control should have input focus when the page loads.",
|
|
1431
|
+
"fieldName": "autofocus",
|
|
1432
|
+
"inheritedFrom": {
|
|
1433
|
+
"name": "DelegateFocusMixin",
|
|
1434
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
1435
|
+
}
|
|
1436
|
+
},
|
|
1153
1437
|
{
|
|
1154
1438
|
"name": "autoselect",
|
|
1155
1439
|
"type": {
|
|
@@ -1174,6 +1458,18 @@
|
|
|
1174
1458
|
"package": "@vaadin/field-base/src/clear-button-mixin.js"
|
|
1175
1459
|
}
|
|
1176
1460
|
},
|
|
1461
|
+
{
|
|
1462
|
+
"name": "disabled",
|
|
1463
|
+
"type": {
|
|
1464
|
+
"text": "boolean"
|
|
1465
|
+
},
|
|
1466
|
+
"description": "If true, the user cannot interact with this element.",
|
|
1467
|
+
"fieldName": "disabled",
|
|
1468
|
+
"inheritedFrom": {
|
|
1469
|
+
"name": "DelegateFocusMixin",
|
|
1470
|
+
"package": "@vaadin/a11y-base/src/delegate-focus-mixin.js"
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1177
1473
|
{
|
|
1178
1474
|
"name": "error-message",
|
|
1179
1475
|
"type": {
|
|
@@ -1210,6 +1506,18 @@
|
|
|
1210
1506
|
"package": "@vaadin/component-base/src/i18n-mixin.js"
|
|
1211
1507
|
}
|
|
1212
1508
|
},
|
|
1509
|
+
{
|
|
1510
|
+
"name": "invalid",
|
|
1511
|
+
"type": {
|
|
1512
|
+
"text": "boolean"
|
|
1513
|
+
},
|
|
1514
|
+
"description": "Set to true when the field is invalid.",
|
|
1515
|
+
"fieldName": "invalid",
|
|
1516
|
+
"inheritedFrom": {
|
|
1517
|
+
"name": "FieldMixin",
|
|
1518
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1519
|
+
}
|
|
1520
|
+
},
|
|
1213
1521
|
{
|
|
1214
1522
|
"name": "label",
|
|
1215
1523
|
"type": {
|
|
@@ -1222,6 +1530,18 @@
|
|
|
1222
1530
|
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1223
1531
|
}
|
|
1224
1532
|
},
|
|
1533
|
+
{
|
|
1534
|
+
"name": "manual-validation",
|
|
1535
|
+
"type": {
|
|
1536
|
+
"text": "boolean"
|
|
1537
|
+
},
|
|
1538
|
+
"description": "Set to true to enable manual validation mode. This mode disables automatic\nconstraint validation, allowing you to control the validation process yourself.\nYou can still trigger constraint validation manually with the `validate()` method\nor use `checkValidity()` to assess the component's validity without affecting\nthe invalid state. In manual validation mode, you can also manipulate\nthe `invalid` property directly through your application logic without conflicts\nwith the component's internal validation.",
|
|
1539
|
+
"fieldName": "manualValidation",
|
|
1540
|
+
"inheritedFrom": {
|
|
1541
|
+
"name": "FieldMixin",
|
|
1542
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1543
|
+
}
|
|
1544
|
+
},
|
|
1225
1545
|
{
|
|
1226
1546
|
"name": "max",
|
|
1227
1547
|
"type": {
|
|
@@ -1306,6 +1626,18 @@
|
|
|
1306
1626
|
"package": "@vaadin/field-base/src/input-control-mixin.js"
|
|
1307
1627
|
}
|
|
1308
1628
|
},
|
|
1629
|
+
{
|
|
1630
|
+
"name": "required",
|
|
1631
|
+
"type": {
|
|
1632
|
+
"text": "boolean"
|
|
1633
|
+
},
|
|
1634
|
+
"description": "Specifies that the user must fill in a value.",
|
|
1635
|
+
"fieldName": "required",
|
|
1636
|
+
"inheritedFrom": {
|
|
1637
|
+
"name": "FieldMixin",
|
|
1638
|
+
"package": "@vaadin/field-base/src/field-mixin.js"
|
|
1639
|
+
}
|
|
1640
|
+
},
|
|
1309
1641
|
{
|
|
1310
1642
|
"name": "step",
|
|
1311
1643
|
"type": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/time-picker",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-beta1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,22 +35,22 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.2.0-
|
|
39
|
-
"@vaadin/combo-box": "25.2.0-
|
|
40
|
-
"@vaadin/component-base": "25.2.0-
|
|
41
|
-
"@vaadin/field-base": "25.2.0-
|
|
42
|
-
"@vaadin/input-container": "25.2.0-
|
|
43
|
-
"@vaadin/item": "25.2.0-
|
|
44
|
-
"@vaadin/overlay": "25.2.0-
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "25.2.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.2.0-beta1",
|
|
39
|
+
"@vaadin/combo-box": "25.2.0-beta1",
|
|
40
|
+
"@vaadin/component-base": "25.2.0-beta1",
|
|
41
|
+
"@vaadin/field-base": "25.2.0-beta1",
|
|
42
|
+
"@vaadin/input-container": "25.2.0-beta1",
|
|
43
|
+
"@vaadin/item": "25.2.0-beta1",
|
|
44
|
+
"@vaadin/overlay": "25.2.0-beta1",
|
|
45
|
+
"@vaadin/vaadin-themable-mixin": "25.2.0-beta1",
|
|
46
46
|
"lit": "^3.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@vaadin/aura": "25.2.0-
|
|
50
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
51
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
49
|
+
"@vaadin/aura": "25.2.0-beta1",
|
|
50
|
+
"@vaadin/chai-plugins": "25.2.0-beta1",
|
|
51
|
+
"@vaadin/test-runner-commands": "25.2.0-beta1",
|
|
52
52
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
53
|
-
"@vaadin/vaadin-lumo-styles": "25.2.0-
|
|
53
|
+
"@vaadin/vaadin-lumo-styles": "25.2.0-beta1",
|
|
54
54
|
"sinon": "^21.0.2"
|
|
55
55
|
},
|
|
56
56
|
"customElements": "custom-elements.json",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"web-types.json",
|
|
59
59
|
"web-types.lit.json"
|
|
60
60
|
],
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "471a23f60d1eb725f98a33f62cb9664d9c0a4163"
|
|
62
62
|
}
|
|
@@ -35,9 +35,6 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mix
|
|
|
35
35
|
* See [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.
|
|
36
36
|
*
|
|
37
37
|
* @customElement vaadin-time-picker-item
|
|
38
|
-
* @mixes ComboBoxItemMixin
|
|
39
|
-
* @mixes ThemableMixin
|
|
40
|
-
* @mixes DirMixin
|
|
41
38
|
* @private
|
|
42
39
|
*/
|
|
43
40
|
export class TimePickerItem extends ComboBoxItemMixin(
|