@vaadin/date-picker 25.1.0-beta2 → 25.1.0-beta3

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.
@@ -475,10 +475,12 @@
475
475
  {
476
476
  "kind": "field",
477
477
  "name": "i18n",
478
- "description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nThe object has the following JSON structure and default values:\n\n```js\n{\n // An array with the full names of months starting\n // with January.\n monthNames: [\n 'January', 'February', 'March', 'April', 'May',\n 'June', 'July', 'August', 'September',\n 'October', 'November', 'December'\n ],\n\n // An array of weekday names starting with Sunday. Used\n // in screen reader announcements.\n weekdays: [\n 'Sunday', 'Monday', 'Tuesday', 'Wednesday',\n 'Thursday', 'Friday', 'Saturday'\n ],\n\n // An array of short weekday names starting with Sunday.\n // Displayed in the calendar.\n weekdaysShort: [\n 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'\n ],\n\n // An integer indicating the first day of the week\n // (0 = Sunday, 1 = Monday, etc.).\n firstDayOfWeek: 0,\n\n // Translation of the Today shortcut button text.\n today: 'Today',\n\n // Translation of the Cancel button text.\n cancel: 'Cancel',\n\n // Used for adjusting the year value when parsing dates with short years.\n // The year values between 0 and 99 are evaluated and adjusted.\n // Example: for a referenceDate of 1970-10-30;\n // dateToBeParsed: 40-10-30, result: 1940-10-30\n // dateToBeParsed: 80-10-30, result: 1980-10-30\n // dateToBeParsed: 10-10-30, result: 2010-10-30\n // Supported date format: ISO 8601 `\"YYYY-MM-DD\"` (default)\n // The default value is the current date.\n referenceDate: '',\n\n // A function to format given `Object` as\n // date string. Object is in the format `{ day: ..., month: ..., year: ... }`\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n formatDate: d => {\n // returns a string representation of the given\n // object in 'MM/DD/YYYY' -format\n },\n\n // A function to parse the given text to an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n // Must properly parse (at least) text formatted by `formatDate`.\n // Setting the property to null will disable keyboard input feature.\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n parseDate: text => {\n // Parses a string in 'MM/DD/YY', 'MM/DD' or 'DD' -format to\n // an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n }\n\n // A function to format given `monthName` and\n // `fullYear` integer as calendar title string.\n formatTitle: (monthName, fullYear) => {\n return monthName + ' ' + fullYear;\n }\n}\n```",
478
+ "privacy": "public",
479
479
  "type": {
480
480
  "text": "Object"
481
481
  },
482
+ "description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nThe object has the following JSON structure and default values:\n\n```js\n{\n // An array with the full names of months starting\n // with January.\n monthNames: [\n 'January', 'February', 'March', 'April', 'May',\n 'June', 'July', 'August', 'September',\n 'October', 'November', 'December'\n ],\n\n // An array of weekday names starting with Sunday. Used\n // in screen reader announcements.\n weekdays: [\n 'Sunday', 'Monday', 'Tuesday', 'Wednesday',\n 'Thursday', 'Friday', 'Saturday'\n ],\n\n // An array of short weekday names starting with Sunday.\n // Displayed in the calendar.\n weekdaysShort: [\n 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'\n ],\n\n // An integer indicating the first day of the week\n // (0 = Sunday, 1 = Monday, etc.).\n firstDayOfWeek: 0,\n\n // Translation of the Today shortcut button text.\n today: 'Today',\n\n // Translation of the Cancel button text.\n cancel: 'Cancel',\n\n // Used for adjusting the year value when parsing dates with short years.\n // The year values between 0 and 99 are evaluated and adjusted.\n // Example: for a referenceDate of 1970-10-30;\n // dateToBeParsed: 40-10-30, result: 1940-10-30\n // dateToBeParsed: 80-10-30, result: 1980-10-30\n // dateToBeParsed: 10-10-30, result: 2010-10-30\n // Supported date format: ISO 8601 `\"YYYY-MM-DD\"` (default)\n // The default value is the current date.\n referenceDate: '',\n\n // A function to format given `Object` as\n // date string. Object is in the format `{ day: ..., month: ..., year: ... }`\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n formatDate: d => {\n // returns a string representation of the given\n // object in 'MM/DD/YYYY' -format\n },\n\n // A function to parse the given text to an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n // Must properly parse (at least) text formatted by `formatDate`.\n // Setting the property to null will disable keyboard input feature.\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n parseDate: text => {\n // Parses a string in 'MM/DD/YY', 'MM/DD' or 'DD' -format to\n // an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n }\n\n // A function to format given `monthName` and\n // `fullYear` integer as calendar title string.\n formatTitle: (monthName, fullYear) => {\n return monthName + ' ' + fullYear;\n }\n}\n```",
483
+ "attribute": "i18n",
482
484
  "inheritedFrom": {
483
485
  "name": "I18nMixin",
484
486
  "package": "@vaadin/component-base/src/i18n-mixin.js"
@@ -488,6 +490,9 @@
488
490
  "kind": "field",
489
491
  "name": "initialPosition",
490
492
  "privacy": "public",
493
+ "type": {
494
+ "text": "string"
495
+ },
491
496
  "description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
492
497
  "attribute": "initial-position"
493
498
  },
@@ -506,7 +511,7 @@
506
511
  "name": "max",
507
512
  "privacy": "public",
508
513
  "type": {
509
- "text": "string | undefined"
514
+ "text": "string"
510
515
  },
511
516
  "description": "The latest date that can be selected. All later dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
512
517
  "attribute": "max"
@@ -516,7 +521,7 @@
516
521
  "name": "min",
517
522
  "privacy": "public",
518
523
  "type": {
519
- "text": "string | undefined"
524
+ "text": "string"
520
525
  },
521
526
  "description": "The earliest date that can be selected. All earlier dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
522
527
  "attribute": "min"
@@ -582,6 +587,11 @@
582
587
  },
583
588
  {
584
589
  "name": "i18n",
590
+ "type": {
591
+ "text": "Object"
592
+ },
593
+ "description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nShould be overridden by subclasses to provide a custom JSDoc with the\ndefault I18N properties.",
594
+ "fieldName": "i18n",
585
595
  "inheritedFrom": {
586
596
  "name": "I18nMixin",
587
597
  "package": "@vaadin/component-base/src/i18n-mixin.js"
@@ -589,6 +599,9 @@
589
599
  },
590
600
  {
591
601
  "name": "initial-position",
602
+ "type": {
603
+ "text": "string"
604
+ },
592
605
  "description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
593
606
  "fieldName": "initialPosition"
594
607
  },
@@ -603,7 +616,7 @@
603
616
  {
604
617
  "name": "max",
605
618
  "type": {
606
- "text": "string | undefined"
619
+ "text": "string"
607
620
  },
608
621
  "description": "The latest date that can be selected. All later dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
609
622
  "fieldName": "max"
@@ -611,7 +624,7 @@
611
624
  {
612
625
  "name": "min",
613
626
  "type": {
614
- "text": "string | undefined"
627
+ "text": "string"
615
628
  },
616
629
  "description": "The earliest date that can be selected. All earlier dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
617
630
  "fieldName": "min"
@@ -1635,10 +1648,12 @@
1635
1648
  {
1636
1649
  "kind": "field",
1637
1650
  "name": "i18n",
1638
- "description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nThe object has the following JSON structure and default values:\n\n```js\n{\n // An array with the full names of months starting\n // with January.\n monthNames: [\n 'January', 'February', 'March', 'April', 'May',\n 'June', 'July', 'August', 'September',\n 'October', 'November', 'December'\n ],\n\n // An array of weekday names starting with Sunday. Used\n // in screen reader announcements.\n weekdays: [\n 'Sunday', 'Monday', 'Tuesday', 'Wednesday',\n 'Thursday', 'Friday', 'Saturday'\n ],\n\n // An array of short weekday names starting with Sunday.\n // Displayed in the calendar.\n weekdaysShort: [\n 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'\n ],\n\n // An integer indicating the first day of the week\n // (0 = Sunday, 1 = Monday, etc.).\n firstDayOfWeek: 0,\n\n // Translation of the Today shortcut button text.\n today: 'Today',\n\n // Translation of the Cancel button text.\n cancel: 'Cancel',\n\n // Used for adjusting the year value when parsing dates with short years.\n // The year values between 0 and 99 are evaluated and adjusted.\n // Example: for a referenceDate of 1970-10-30;\n // dateToBeParsed: 40-10-30, result: 1940-10-30\n // dateToBeParsed: 80-10-30, result: 1980-10-30\n // dateToBeParsed: 10-10-30, result: 2010-10-30\n // Supported date format: ISO 8601 `\"YYYY-MM-DD\"` (default)\n // The default value is the current date.\n referenceDate: '',\n\n // A function to format given `Object` as\n // date string. Object is in the format `{ day: ..., month: ..., year: ... }`\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n formatDate: d => {\n // returns a string representation of the given\n // object in 'MM/DD/YYYY' -format\n },\n\n // A function to parse the given text to an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n // Must properly parse (at least) text formatted by `formatDate`.\n // Setting the property to null will disable keyboard input feature.\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n parseDate: text => {\n // Parses a string in 'MM/DD/YY', 'MM/DD' or 'DD' -format to\n // an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n }\n\n // A function to format given `monthName` and\n // `fullYear` integer as calendar title string.\n formatTitle: (monthName, fullYear) => {\n return monthName + ' ' + fullYear;\n }\n}\n```",
1651
+ "privacy": "public",
1639
1652
  "type": {
1640
1653
  "text": "Object"
1641
1654
  },
1655
+ "description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nThe object has the following JSON structure and default values:\n\n```js\n{\n // An array with the full names of months starting\n // with January.\n monthNames: [\n 'January', 'February', 'March', 'April', 'May',\n 'June', 'July', 'August', 'September',\n 'October', 'November', 'December'\n ],\n\n // An array of weekday names starting with Sunday. Used\n // in screen reader announcements.\n weekdays: [\n 'Sunday', 'Monday', 'Tuesday', 'Wednesday',\n 'Thursday', 'Friday', 'Saturday'\n ],\n\n // An array of short weekday names starting with Sunday.\n // Displayed in the calendar.\n weekdaysShort: [\n 'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'\n ],\n\n // An integer indicating the first day of the week\n // (0 = Sunday, 1 = Monday, etc.).\n firstDayOfWeek: 0,\n\n // Translation of the Today shortcut button text.\n today: 'Today',\n\n // Translation of the Cancel button text.\n cancel: 'Cancel',\n\n // Used for adjusting the year value when parsing dates with short years.\n // The year values between 0 and 99 are evaluated and adjusted.\n // Example: for a referenceDate of 1970-10-30;\n // dateToBeParsed: 40-10-30, result: 1940-10-30\n // dateToBeParsed: 80-10-30, result: 1980-10-30\n // dateToBeParsed: 10-10-30, result: 2010-10-30\n // Supported date format: ISO 8601 `\"YYYY-MM-DD\"` (default)\n // The default value is the current date.\n referenceDate: '',\n\n // A function to format given `Object` as\n // date string. Object is in the format `{ day: ..., month: ..., year: ... }`\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n formatDate: d => {\n // returns a string representation of the given\n // object in 'MM/DD/YYYY' -format\n },\n\n // A function to parse the given text to an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n // Must properly parse (at least) text formatted by `formatDate`.\n // Setting the property to null will disable keyboard input feature.\n // Note: The argument month is 0-based. This means that January = 0 and December = 11.\n parseDate: text => {\n // Parses a string in 'MM/DD/YY', 'MM/DD' or 'DD' -format to\n // an `Object` in the format `{ day: ..., month: ..., year: ... }`.\n }\n\n // A function to format given `monthName` and\n // `fullYear` integer as calendar title string.\n formatTitle: (monthName, fullYear) => {\n return monthName + ' ' + fullYear;\n }\n}\n```",
1656
+ "attribute": "i18n",
1642
1657
  "inheritedFrom": {
1643
1658
  "name": "I18nMixin",
1644
1659
  "package": "@vaadin/component-base/src/i18n-mixin.js"
@@ -1648,6 +1663,9 @@
1648
1663
  "kind": "field",
1649
1664
  "name": "initialPosition",
1650
1665
  "privacy": "public",
1666
+ "type": {
1667
+ "text": "string"
1668
+ },
1651
1669
  "description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
1652
1670
  "attribute": "initial-position",
1653
1671
  "inheritedFrom": {
@@ -1674,7 +1692,7 @@
1674
1692
  "name": "max",
1675
1693
  "privacy": "public",
1676
1694
  "type": {
1677
- "text": "string | undefined"
1695
+ "text": "string"
1678
1696
  },
1679
1697
  "description": "The latest date that can be selected. All later dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
1680
1698
  "attribute": "max",
@@ -1688,7 +1706,7 @@
1688
1706
  "name": "min",
1689
1707
  "privacy": "public",
1690
1708
  "type": {
1691
- "text": "string | undefined"
1709
+ "text": "string"
1692
1710
  },
1693
1711
  "description": "The earliest date that can be selected. All earlier dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
1694
1712
  "attribute": "min",
@@ -1956,6 +1974,11 @@
1956
1974
  },
1957
1975
  {
1958
1976
  "name": "i18n",
1977
+ "type": {
1978
+ "text": "Object"
1979
+ },
1980
+ "description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nShould be overridden by subclasses to provide a custom JSDoc with the\ndefault I18N properties.",
1981
+ "fieldName": "i18n",
1959
1982
  "inheritedFrom": {
1960
1983
  "name": "I18nMixin",
1961
1984
  "package": "@vaadin/component-base/src/i18n-mixin.js"
@@ -1963,6 +1986,9 @@
1963
1986
  },
1964
1987
  {
1965
1988
  "name": "initial-position",
1989
+ "type": {
1990
+ "text": "string"
1991
+ },
1966
1992
  "description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
1967
1993
  "fieldName": "initialPosition",
1968
1994
  "inheritedFrom": {
@@ -1985,7 +2011,7 @@
1985
2011
  {
1986
2012
  "name": "max",
1987
2013
  "type": {
1988
- "text": "string | undefined"
2014
+ "text": "string"
1989
2015
  },
1990
2016
  "description": "The latest date that can be selected. All later dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
1991
2017
  "fieldName": "max",
@@ -1997,7 +2023,7 @@
1997
2023
  {
1998
2024
  "name": "min",
1999
2025
  "type": {
2000
- "text": "string | undefined"
2026
+ "text": "string"
2001
2027
  },
2002
2028
  "description": "The earliest date that can be selected. All earlier dates will be disabled.\n\nSupported date formats:\n- ISO 8601 `\"YYYY-MM-DD\"` (default)\n- 6-digit extended ISO 8601 `\"+YYYYYY-MM-DD\"`, `\"-YYYYYY-MM-DD\"`",
2003
2029
  "fieldName": "min",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/date-picker",
3
- "version": "25.1.0-beta2",
3
+ "version": "25.1.0-beta3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,27 +35,27 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.1.0-beta2",
39
- "@vaadin/button": "25.1.0-beta2",
40
- "@vaadin/component-base": "25.1.0-beta2",
41
- "@vaadin/field-base": "25.1.0-beta2",
42
- "@vaadin/input-container": "25.1.0-beta2",
43
- "@vaadin/overlay": "25.1.0-beta2",
44
- "@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
38
+ "@vaadin/a11y-base": "25.1.0-beta3",
39
+ "@vaadin/button": "25.1.0-beta3",
40
+ "@vaadin/component-base": "25.1.0-beta3",
41
+ "@vaadin/field-base": "25.1.0-beta3",
42
+ "@vaadin/input-container": "25.1.0-beta3",
43
+ "@vaadin/overlay": "25.1.0-beta3",
44
+ "@vaadin/vaadin-themable-mixin": "25.1.0-beta3",
45
45
  "lit": "^3.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@vaadin/aura": "25.1.0-beta2",
49
- "@vaadin/chai-plugins": "25.1.0-beta2",
50
- "@vaadin/test-runner-commands": "25.1.0-beta2",
48
+ "@vaadin/aura": "25.1.0-beta3",
49
+ "@vaadin/chai-plugins": "25.1.0-beta3",
50
+ "@vaadin/test-runner-commands": "25.1.0-beta3",
51
51
  "@vaadin/testing-helpers": "^2.0.0",
52
- "@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
53
- "sinon": "^21.0.0"
52
+ "@vaadin/vaadin-lumo-styles": "25.1.0-beta3",
53
+ "sinon": "^21.0.2"
54
54
  },
55
55
  "customElements": "custom-elements.json",
56
56
  "web-types": [
57
57
  "web-types.json",
58
58
  "web-types.lit.json"
59
59
  ],
60
- "gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
60
+ "gitHead": "4251850231a42298fda23b83928da588831cdb5d"
61
61
  }
@@ -118,7 +118,6 @@ export const DatePickerMixin = (subclass) =>
118
118
  * Supported date formats:
119
119
  * - ISO 8601 `"YYYY-MM-DD"` (default)
120
120
  * - 6-digit extended ISO 8601 `"+YYYYYY-MM-DD"`, `"-YYYYYY-MM-DD"`
121
- *
122
121
  */
123
122
  value: {
124
123
  type: String,
@@ -133,7 +132,9 @@ export const DatePickerMixin = (subclass) =>
133
132
  * The same date formats as for the `value` property are supported.
134
133
  * @attr {string} initial-position
135
134
  */
136
- initialPosition: String,
135
+ initialPosition: {
136
+ type: String,
137
+ },
137
138
 
138
139
  /**
139
140
  * Set true to open the date selector overlay.
@@ -189,8 +190,6 @@ export const DatePickerMixin = (subclass) =>
189
190
  * Supported date formats:
190
191
  * - ISO 8601 `"YYYY-MM-DD"` (default)
191
192
  * - 6-digit extended ISO 8601 `"+YYYYYY-MM-DD"`, `"-YYYYYY-MM-DD"`
192
- *
193
- * @type {string | undefined}
194
193
  */
195
194
  min: {
196
195
  type: String,
@@ -203,8 +202,6 @@ export const DatePickerMixin = (subclass) =>
203
202
  * Supported date formats:
204
203
  * - ISO 8601 `"YYYY-MM-DD"` (default)
205
204
  * - 6-digit extended ISO 8601 `"+YYYYYY-MM-DD"`, `"-YYYYYY-MM-DD"`
206
- *
207
- * @type {string | undefined}
208
205
  */
209
206
  max: {
210
207
  type: String,
package/web-types.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.1.0-beta2",
4
+ "version": "25.1.0-beta3",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -120,6 +120,17 @@
120
120
  ]
121
121
  }
122
122
  },
123
+ {
124
+ "name": "i18n",
125
+ "description": "The object used to localize this component. To change the default\nlocalization, replace this with an object that provides all properties, or\njust the individual properties you want to change.\n\nShould be overridden by subclasses to provide a custom JSDoc with the\ndefault I18N properties.",
126
+ "value": {
127
+ "type": [
128
+ "Object",
129
+ "null",
130
+ "undefined"
131
+ ]
132
+ }
133
+ },
123
134
  {
124
135
  "name": "initial-position",
125
136
  "description": "Date which should be visible when there is no value selected.\n\nThe same date formats as for the `value` property are supported.",
@@ -170,6 +181,7 @@
170
181
  "value": {
171
182
  "type": [
172
183
  "string",
184
+ "null",
173
185
  "undefined"
174
186
  ]
175
187
  }
@@ -180,6 +192,7 @@
180
192
  "value": {
181
193
  "type": [
182
194
  "string",
195
+ "null",
183
196
  "undefined"
184
197
  ]
185
198
  }
@@ -465,6 +478,7 @@
465
478
  "value": {
466
479
  "type": [
467
480
  "string",
481
+ "null",
468
482
  "undefined"
469
483
  ]
470
484
  }
@@ -475,6 +489,7 @@
475
489
  "value": {
476
490
  "type": [
477
491
  "string",
492
+ "null",
478
493
  "undefined"
479
494
  ]
480
495
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/date-picker",
4
- "version": "25.1.0-beta2",
4
+ "version": "25.1.0-beta3",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {