@vaadin/login 23.3.0-alpha3 → 24.0.0-alpha1

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.3.0-alpha3",
3
+ "version": "24.0.0-alpha1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,14 +37,14 @@
37
37
  "dependencies": {
38
38
  "@open-wc/dedupe-mixin": "^1.3.0",
39
39
  "@polymer/polymer": "^3.0.0",
40
- "@vaadin/button": "23.3.0-alpha3",
41
- "@vaadin/component-base": "23.3.0-alpha3",
42
- "@vaadin/password-field": "23.3.0-alpha3",
43
- "@vaadin/text-field": "23.3.0-alpha3",
44
- "@vaadin/vaadin-lumo-styles": "23.3.0-alpha3",
45
- "@vaadin/vaadin-material-styles": "23.3.0-alpha3",
46
- "@vaadin/vaadin-overlay": "23.3.0-alpha3",
47
- "@vaadin/vaadin-themable-mixin": "23.3.0-alpha3"
40
+ "@vaadin/button": "24.0.0-alpha1",
41
+ "@vaadin/component-base": "24.0.0-alpha1",
42
+ "@vaadin/overlay": "24.0.0-alpha1",
43
+ "@vaadin/password-field": "24.0.0-alpha1",
44
+ "@vaadin/text-field": "24.0.0-alpha1",
45
+ "@vaadin/vaadin-lumo-styles": "24.0.0-alpha1",
46
+ "@vaadin/vaadin-material-styles": "24.0.0-alpha1",
47
+ "@vaadin/vaadin-themable-mixin": "24.0.0-alpha1"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
@@ -55,5 +55,5 @@
55
55
  "web-types.json",
56
56
  "web-types.lit.json"
57
57
  ],
58
- "gitHead": "e86cd2abf3e28bade37711291331415d92c454ec"
58
+ "gitHead": "427527c27c4b27822d61fd41d38d7b170134770b"
59
59
  }
@@ -4,7 +4,7 @@
4
4
  * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
5
  */
6
6
  import { DomModule } from '@polymer/polymer/lib/elements/dom-module.js';
7
- import { OverlayElement } from '@vaadin/vaadin-overlay/src/vaadin-overlay.js';
7
+ import { Overlay } from '@vaadin/overlay/src/vaadin-overlay.js';
8
8
 
9
9
  const template = document.createElement('template');
10
10
 
@@ -59,10 +59,10 @@ let memoizedTemplate;
59
59
  /**
60
60
  * An element used internally by `<vaadin-login-overlay>`. Not intended to be used separately.
61
61
  *
62
- * @extends OverlayElement
62
+ * @extends Overlay
63
63
  * @private
64
64
  */
65
- class LoginOverlayWrapper extends OverlayElement {
65
+ class LoginOverlayWrapper extends Overlay {
66
66
  static get is() {
67
67
  return 'vaadin-login-overlay-wrapper';
68
68
  }
@@ -1,7 +1,7 @@
1
1
  import '@vaadin/text-field/theme/lumo/vaadin-text-field.js';
2
2
  import '@vaadin/password-field/theme/lumo/vaadin-password-field.js';
3
3
  import '@vaadin/button/theme/lumo/vaadin-button.js';
4
- import '@vaadin/vaadin-overlay/theme/lumo/vaadin-overlay.js';
4
+ import '@vaadin/overlay/theme/lumo/vaadin-overlay.js';
5
5
  import './vaadin-login-form.js';
6
6
  import './vaadin-login-overlay-styles.js';
7
7
  import '../../src/vaadin-login-overlay.js';
@@ -1,7 +1,7 @@
1
1
  import '@vaadin/text-field/theme/material/vaadin-text-field.js';
2
2
  import '@vaadin/password-field/theme/material/vaadin-password-field.js';
3
3
  import '@vaadin/button/theme/material/vaadin-button.js';
4
- import '@vaadin/vaadin-overlay/theme/material/vaadin-overlay.js';
4
+ import '@vaadin/overlay/theme/material/vaadin-overlay.js';
5
5
  import './vaadin-login-form.js';
6
6
  import './vaadin-login-overlay-styles.js';
7
7
  import '../../src/vaadin-login-overlay.js';
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/login",
4
- "version": "23.3.0-alpha3",
4
+ "version": "24.0.0-alpha1",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -160,7 +160,7 @@
160
160
  },
161
161
  {
162
162
  "name": "vaadin-login-overlay",
163
- "description": "`<vaadin-login-overlay>` is a wrapper of the `<vaadin-login-form>` which opens a login form in an overlay and\nhaving an additional `brand` part for application title and description. Using `<vaadin-login-overlay>` allows\npassword managers to work with login form.\n\n```\n<vaadin-login-overlay opened></vaadin-login-overlay>\n```\n\n### Styling\n\nThe component doesn't have a shadowRoot, so the `<form>` and input fields can be styled from a global scope.\nUse `<vaadin-login-overlay-wrapper>` and `<vaadin-login-form-wrapper>` to apply styles.\n\nThe following shadow DOM parts of the `<vaadin-login-overlay-wrapper>` are available for styling:\n\nPart name | Description\n----------------|---------------------------------------------------------|\n`card` | Container for the entire component's content\n`brand` | Container for application title and description\n`form` | Container for the `<vaadin-login-form>` component\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/custom-theme/styling-components) documentation.\n\nSee [`<vaadin-login-form>`](https://cdn.vaadin.com/vaadin-web-components/23.3.0-alpha3/#/elements/vaadin-login-form)\ndocumentation for `<vaadin-login-form-wrapper>` stylable parts.",
163
+ "description": "`<vaadin-login-overlay>` is a wrapper of the `<vaadin-login-form>` which opens a login form in an overlay and\nhaving an additional `brand` part for application title and description. Using `<vaadin-login-overlay>` allows\npassword managers to work with login form.\n\n```\n<vaadin-login-overlay opened></vaadin-login-overlay>\n```\n\n### Styling\n\nThe component doesn't have a shadowRoot, so the `<form>` and input fields can be styled from a global scope.\nUse `<vaadin-login-overlay-wrapper>` and `<vaadin-login-form-wrapper>` to apply styles.\n\nThe following shadow DOM parts of the `<vaadin-login-overlay-wrapper>` are available for styling:\n\nPart name | Description\n----------------|---------------------------------------------------------|\n`card` | Container for the entire component's content\n`brand` | Container for application title and description\n`form` | Container for the `<vaadin-login-form>` component\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/custom-theme/styling-components) documentation.\n\nSee [`<vaadin-login-form>`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-alpha1/#/elements/vaadin-login-form)\ndocumentation for `<vaadin-login-form-wrapper>` stylable parts.",
164
164
  "attributes": [
165
165
  {
166
166
  "name": "action",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/login",
4
- "version": "23.3.0-alpha3",
4
+ "version": "24.0.0-alpha1",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {
@@ -114,7 +114,7 @@
114
114
  },
115
115
  {
116
116
  "name": "vaadin-login-overlay",
117
- "description": "`<vaadin-login-overlay>` is a wrapper of the `<vaadin-login-form>` which opens a login form in an overlay and\nhaving an additional `brand` part for application title and description. Using `<vaadin-login-overlay>` allows\npassword managers to work with login form.\n\n```\n<vaadin-login-overlay opened></vaadin-login-overlay>\n```\n\n### Styling\n\nThe component doesn't have a shadowRoot, so the `<form>` and input fields can be styled from a global scope.\nUse `<vaadin-login-overlay-wrapper>` and `<vaadin-login-form-wrapper>` to apply styles.\n\nThe following shadow DOM parts of the `<vaadin-login-overlay-wrapper>` are available for styling:\n\nPart name | Description\n----------------|---------------------------------------------------------|\n`card` | Container for the entire component's content\n`brand` | Container for application title and description\n`form` | Container for the `<vaadin-login-form>` component\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/custom-theme/styling-components) documentation.\n\nSee [`<vaadin-login-form>`](https://cdn.vaadin.com/vaadin-web-components/23.3.0-alpha3/#/elements/vaadin-login-form)\ndocumentation for `<vaadin-login-form-wrapper>` stylable parts.",
117
+ "description": "`<vaadin-login-overlay>` is a wrapper of the `<vaadin-login-form>` which opens a login form in an overlay and\nhaving an additional `brand` part for application title and description. Using `<vaadin-login-overlay>` allows\npassword managers to work with login form.\n\n```\n<vaadin-login-overlay opened></vaadin-login-overlay>\n```\n\n### Styling\n\nThe component doesn't have a shadowRoot, so the `<form>` and input fields can be styled from a global scope.\nUse `<vaadin-login-overlay-wrapper>` and `<vaadin-login-form-wrapper>` to apply styles.\n\nThe following shadow DOM parts of the `<vaadin-login-overlay-wrapper>` are available for styling:\n\nPart name | Description\n----------------|---------------------------------------------------------|\n`card` | Container for the entire component's content\n`brand` | Container for application title and description\n`form` | Container for the `<vaadin-login-form>` component\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/custom-theme/styling-components) documentation.\n\nSee [`<vaadin-login-form>`](https://cdn.vaadin.com/vaadin-web-components/24.0.0-alpha1/#/elements/vaadin-login-form)\ndocumentation for `<vaadin-login-form-wrapper>` stylable parts.",
118
118
  "extension": true,
119
119
  "attributes": [
120
120
  {