@vaadin/date-picker 22.0.11 → 22.0.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/date-picker",
3
- "version": "22.0.11",
3
+ "version": "22.0.14",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,21 +35,21 @@
35
35
  "@polymer/iron-a11y-announcer": "^3.0.0",
36
36
  "@polymer/iron-media-query": "^3.0.0",
37
37
  "@polymer/polymer": "^3.2.0",
38
- "@vaadin/button": "^22.0.11",
39
- "@vaadin/component-base": "^22.0.11",
40
- "@vaadin/field-base": "^22.0.11",
41
- "@vaadin/input-container": "^22.0.11",
42
- "@vaadin/vaadin-lumo-styles": "^22.0.11",
43
- "@vaadin/vaadin-material-styles": "^22.0.11",
44
- "@vaadin/vaadin-overlay": "^22.0.11",
45
- "@vaadin/vaadin-themable-mixin": "^22.0.11"
38
+ "@vaadin/button": "^22.0.14",
39
+ "@vaadin/component-base": "^22.0.14",
40
+ "@vaadin/field-base": "^22.0.14",
41
+ "@vaadin/input-container": "^22.0.14",
42
+ "@vaadin/vaadin-lumo-styles": "^22.0.14",
43
+ "@vaadin/vaadin-material-styles": "^22.0.14",
44
+ "@vaadin/vaadin-overlay": "^22.0.14",
45
+ "@vaadin/vaadin-themable-mixin": "^22.0.14"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
- "@vaadin/dialog": "^22.0.11",
50
- "@vaadin/polymer-legacy-adapter": "^22.0.11",
49
+ "@vaadin/dialog": "^22.0.14",
50
+ "@vaadin/polymer-legacy-adapter": "^22.0.14",
51
51
  "@vaadin/testing-helpers": "^0.3.2",
52
52
  "sinon": "^9.2.0"
53
53
  },
54
- "gitHead": "a905b1ef7af885ce5536646e818fe76574407237"
54
+ "gitHead": "62419e3f8f41fe9dc4f0bce5e1717b16828459b6"
55
55
  }
@@ -55,6 +55,7 @@ export declare class DatePickerMixinClass {
55
55
  * Date which should be visible when there is no value selected.
56
56
  *
57
57
  * The same date formats as for the `value` property are supported.
58
+ * @attr {string} initial-position
58
59
  */
59
60
  initialPosition: string | null | undefined;
60
61
 
@@ -65,6 +66,7 @@ export declare class DatePickerMixinClass {
65
66
 
66
67
  /**
67
68
  * Set true to prevent the overlay from opening automatically.
69
+ * @attr {boolean} auto-open-disabled
68
70
  */
69
71
  autoOpenDisabled: boolean | null | undefined;
70
72
 
@@ -72,6 +74,7 @@ export declare class DatePickerMixinClass {
72
74
  * Set true to display ISO-8601 week numbers in the calendar. Notice that
73
75
  * displaying week numbers is only supported when `i18n.firstDayOfWeek`
74
76
  * is 1 (Monday).
77
+ * @attr {boolean} show-week-numbers
75
78
  */
76
79
  showWeekNumbers: boolean | null | undefined;
77
80
 
@@ -115,6 +115,7 @@ registerStyles('vaadin-date-picker', [inputFieldShared, datePickerStyles], { mod
115
115
  * @mixes ElementMixin
116
116
  * @mixes ThemableMixin
117
117
  * @mixes InputControlMixin
118
+ * @mixes DatePickerMixin
118
119
  */
119
120
  class DatePicker extends DatePickerMixin(
120
121
  InputControlMixin(GestureEventListeners(ThemableMixin(ElementMixin(PolymerElement))))