@vaadin/login 23.1.1 → 23.1.4

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/login",
3
- "version": "23.1.1",
3
+ "version": "23.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,19 +35,19 @@
35
35
  "dependencies": {
36
36
  "@open-wc/dedupe-mixin": "^1.3.0",
37
37
  "@polymer/polymer": "^3.0.0",
38
- "@vaadin/button": "^23.1.1",
39
- "@vaadin/component-base": "^23.1.1",
40
- "@vaadin/password-field": "^23.1.1",
41
- "@vaadin/text-field": "^23.1.1",
42
- "@vaadin/vaadin-lumo-styles": "^23.1.1",
43
- "@vaadin/vaadin-material-styles": "^23.1.1",
44
- "@vaadin/vaadin-overlay": "^23.1.1",
45
- "@vaadin/vaadin-themable-mixin": "^23.1.1"
38
+ "@vaadin/button": "^23.1.4",
39
+ "@vaadin/component-base": "^23.1.4",
40
+ "@vaadin/password-field": "^23.1.4",
41
+ "@vaadin/text-field": "^23.1.4",
42
+ "@vaadin/vaadin-lumo-styles": "^23.1.4",
43
+ "@vaadin/vaadin-material-styles": "^23.1.4",
44
+ "@vaadin/vaadin-overlay": "^23.1.4",
45
+ "@vaadin/vaadin-themable-mixin": "^23.1.4"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@esm-bundle/chai": "^4.3.4",
49
49
  "@vaadin/testing-helpers": "^0.3.2",
50
50
  "sinon": "^13.0.2"
51
51
  },
52
- "gitHead": "390458d6519433a2dd502cef90da48e84573a275"
52
+ "gitHead": "0a82302064f1276a000f0cbd810076539407d133"
53
53
  }
@@ -60,13 +60,13 @@ declare class LoginForm extends ElementMixin(ThemableMixin(LoginMixin(HTMLElemen
60
60
  addEventListener<K extends keyof LoginFormEventMap>(
61
61
  type: K,
62
62
  listener: (this: LoginForm, ev: LoginFormEventMap[K]) => void,
63
- options?: boolean | AddEventListenerOptions,
63
+ options?: AddEventListenerOptions | boolean,
64
64
  ): void;
65
65
 
66
66
  removeEventListener<K extends keyof LoginFormEventMap>(
67
67
  type: K,
68
68
  listener: (this: LoginForm, ev: LoginFormEventMap[K]) => void,
69
- options?: boolean | EventListenerOptions,
69
+ options?: EventListenerOptions | boolean,
70
70
  ): void;
71
71
  }
72
72
 
@@ -24,7 +24,7 @@ export interface LoginI18n {
24
24
  additionalInformation?: string;
25
25
  }
26
26
 
27
- export declare function LoginMixin<T extends Constructor<HTMLElement>>(base: T): T & Constructor<LoginMixinClass>;
27
+ export declare function LoginMixin<T extends Constructor<HTMLElement>>(base: T): Constructor<LoginMixinClass> & T;
28
28
 
29
29
  export declare class LoginMixinClass {
30
30
  /**
@@ -70,13 +70,13 @@ declare class LoginOverlay extends ElementMixin(ThemableMixin(LoginMixin(HTMLEle
70
70
  addEventListener<K extends keyof LoginOverlayEventMap>(
71
71
  type: K,
72
72
  listener: (this: LoginOverlay, ev: LoginOverlayEventMap[K]) => void,
73
- options?: boolean | AddEventListenerOptions,
73
+ options?: AddEventListenerOptions | boolean,
74
74
  ): void;
75
75
 
76
76
  removeEventListener<K extends keyof LoginOverlayEventMap>(
77
77
  type: K,
78
78
  listener: (this: LoginOverlay, ev: LoginOverlayEventMap[K]) => void,
79
- options?: boolean | EventListenerOptions,
79
+ options?: EventListenerOptions | boolean,
80
80
  ): void;
81
81
  }
82
82