@vaadin/date-picker 23.1.2 → 23.1.5

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": "23.1.2",
3
+ "version": "23.1.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,19 +34,19 @@
34
34
  "dependencies": {
35
35
  "@open-wc/dedupe-mixin": "^1.3.0",
36
36
  "@polymer/polymer": "^3.2.0",
37
- "@vaadin/button": "^23.1.2",
38
- "@vaadin/component-base": "^23.1.2",
39
- "@vaadin/field-base": "^23.1.2",
40
- "@vaadin/input-container": "^23.1.2",
41
- "@vaadin/vaadin-lumo-styles": "^23.1.2",
42
- "@vaadin/vaadin-material-styles": "^23.1.2",
43
- "@vaadin/vaadin-overlay": "^23.1.2",
44
- "@vaadin/vaadin-themable-mixin": "^23.1.2"
37
+ "@vaadin/button": "^23.1.5",
38
+ "@vaadin/component-base": "^23.1.5",
39
+ "@vaadin/field-base": "^23.1.5",
40
+ "@vaadin/input-container": "^23.1.5",
41
+ "@vaadin/vaadin-lumo-styles": "^23.1.5",
42
+ "@vaadin/vaadin-material-styles": "^23.1.5",
43
+ "@vaadin/vaadin-overlay": "^23.1.5",
44
+ "@vaadin/vaadin-themable-mixin": "^23.1.5"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@esm-bundle/chai": "^4.3.4",
48
48
  "@vaadin/testing-helpers": "^0.3.2",
49
49
  "sinon": "^13.0.2"
50
50
  },
51
- "gitHead": "6fb205c6e9a761feadfb779dd5d7af96d3102e56"
51
+ "gitHead": "326938919a54353231af25d341ba6076c249afee"
52
52
  }
@@ -90,13 +90,13 @@ declare class DatePickerLight extends ThemableMixin(DatePickerMixin(HTMLElement)
90
90
  addEventListener<K extends keyof DatePickerLightEventMap>(
91
91
  type: K,
92
92
  listener: (this: DatePickerLight, ev: DatePickerLightEventMap[K]) => void,
93
- options?: boolean | AddEventListenerOptions,
93
+ options?: AddEventListenerOptions | boolean,
94
94
  ): void;
95
95
 
96
96
  removeEventListener<K extends keyof DatePickerLightEventMap>(
97
97
  type: K,
98
98
  listener: (this: DatePickerLight, ev: DatePickerLightEventMap[K]) => void,
99
- options?: boolean | EventListenerOptions,
99
+ options?: EventListenerOptions | boolean,
100
100
  ): void;
101
101
  }
102
102
 
@@ -33,13 +33,13 @@ export interface DatePickerI18n {
33
33
 
34
34
  export declare function DatePickerMixin<T extends Constructor<HTMLElement>>(
35
35
  base: T,
36
- ): T &
37
- Constructor<DatePickerMixinClass> &
36
+ ): Constructor<DatePickerMixinClass> &
38
37
  Constructor<DelegateFocusMixinClass> &
39
38
  Constructor<DisabledMixinClass> &
40
39
  Constructor<FocusMixinClass> &
41
40
  Constructor<InputMixinClass> &
42
- Constructor<KeyboardMixinClass>;
41
+ Constructor<KeyboardMixinClass> &
42
+ T;
43
43
 
44
44
  export declare class DatePickerMixinClass {
45
45
  /**
@@ -138,13 +138,13 @@ declare class DatePicker extends DatePickerMixin(InputControlMixin(ThemableMixin
138
138
  addEventListener<K extends keyof DatePickerEventMap>(
139
139
  type: K,
140
140
  listener: (this: DatePicker, ev: DatePickerEventMap[K]) => void,
141
- options?: boolean | AddEventListenerOptions,
141
+ options?: AddEventListenerOptions | boolean,
142
142
  ): void;
143
143
 
144
144
  removeEventListener<K extends keyof DatePickerEventMap>(
145
145
  type: K,
146
146
  listener: (this: DatePicker, ev: DatePickerEventMap[K]) => void,
147
- options?: boolean | EventListenerOptions,
147
+ options?: EventListenerOptions | boolean,
148
148
  ): void;
149
149
  }
150
150