@vaadin/login 25.0.0-alpha11 → 25.0.0-alpha13
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 +13 -13
- package/src/styles/vaadin-login-form-wrapper-base-styles.js +4 -4
- package/src/styles/vaadin-login-overlay-wrapper-base-styles.js +2 -2
- package/src/vaadin-login-overlay-mixin.d.ts +1 -2
- package/src/vaadin-login-overlay-mixin.js +1 -3
- package/web-types.json +1 -23
- package/web-types.lit.json +1 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/login",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,26 +34,26 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
37
|
-
"@vaadin/button": "25.0.0-
|
|
38
|
-
"@vaadin/component-base": "25.0.0-
|
|
39
|
-
"@vaadin/overlay": "25.0.0-
|
|
40
|
-
"@vaadin/password-field": "25.0.0-
|
|
41
|
-
"@vaadin/text-field": "25.0.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
37
|
+
"@vaadin/button": "25.0.0-alpha13",
|
|
38
|
+
"@vaadin/component-base": "25.0.0-alpha13",
|
|
39
|
+
"@vaadin/overlay": "25.0.0-alpha13",
|
|
40
|
+
"@vaadin/password-field": "25.0.0-alpha13",
|
|
41
|
+
"@vaadin/text-field": "25.0.0-alpha13",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha13",
|
|
43
43
|
"lit": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@vaadin/a11y-base": "25.0.0-
|
|
47
|
-
"@vaadin/chai-plugins": "25.0.0-
|
|
48
|
-
"@vaadin/checkbox": "25.0.0-
|
|
49
|
-
"@vaadin/test-runner-commands": "25.0.0-
|
|
46
|
+
"@vaadin/a11y-base": "25.0.0-alpha13",
|
|
47
|
+
"@vaadin/chai-plugins": "25.0.0-alpha13",
|
|
48
|
+
"@vaadin/checkbox": "25.0.0-alpha13",
|
|
49
|
+
"@vaadin/test-runner-commands": "25.0.0-alpha13",
|
|
50
50
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
51
|
-
"@vaadin/vaadin-lumo-styles": "25.0.0-
|
|
51
|
+
"@vaadin/vaadin-lumo-styles": "25.0.0-alpha13",
|
|
52
52
|
"sinon": "^18.0.0"
|
|
53
53
|
},
|
|
54
54
|
"web-types": [
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "182de596226343392135468f021bbce9e6402011"
|
|
59
59
|
}
|
|
@@ -13,8 +13,8 @@ export const loginFormWrapperStyles = css`
|
|
|
13
13
|
display: flex;
|
|
14
14
|
box-sizing: border-box;
|
|
15
15
|
flex-direction: column;
|
|
16
|
-
gap: var(--vaadin-login-form-gap, var(--vaadin-gap-
|
|
17
|
-
padding: var(--vaadin-login-form-padding, var(--vaadin-padding));
|
|
16
|
+
gap: var(--vaadin-login-form-gap, var(--vaadin-gap-l));
|
|
17
|
+
padding: var(--vaadin-login-form-padding, var(--vaadin-padding-l));
|
|
18
18
|
max-width: 100%;
|
|
19
19
|
width: var(--vaadin-login-form-width, 360px);
|
|
20
20
|
}
|
|
@@ -26,7 +26,7 @@ export const loginFormWrapperStyles = css`
|
|
|
26
26
|
::slotted(form) {
|
|
27
27
|
display: flex;
|
|
28
28
|
flex-direction: column;
|
|
29
|
-
gap: var(--vaadin-login-form-gap, var(--vaadin-gap-
|
|
29
|
+
gap: var(--vaadin-login-form-gap, var(--vaadin-gap-m));
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
::slotted([slot='form-title']) {
|
|
@@ -44,7 +44,7 @@ export const loginFormWrapperStyles = css`
|
|
|
44
44
|
color: var(--vaadin-login-form-error-color, var(--vaadin-color));
|
|
45
45
|
font-size: var(--vaadin-login-form-error-font-size, inherit);
|
|
46
46
|
font-weight: var(--vaadin-login-form-error-font-weight, 400);
|
|
47
|
-
gap: var(--vaadin-login-form-error-gap, 0 var(--vaadin-gap-
|
|
47
|
+
gap: var(--vaadin-login-form-error-gap, 0 var(--vaadin-gap-s));
|
|
48
48
|
grid-template-columns: auto 1fr;
|
|
49
49
|
line-height: var(--vaadin-login-form-error-line-height, inherit);
|
|
50
50
|
}
|
|
@@ -14,7 +14,7 @@ const loginOverlayWrapper = css`
|
|
|
14
14
|
var(--vaadin-overlay-background, var(--vaadin-background-color))
|
|
15
15
|
);
|
|
16
16
|
border: var(--vaadin-login-overlay-border-width, var(--vaadin-overlay-border-width, 1px)) solid
|
|
17
|
-
var(--vaadin-login-overlay-border-color, var(--vaadin-overlay-border-color, var(--vaadin-border-color)));
|
|
17
|
+
var(--vaadin-login-overlay-border-color, var(--vaadin-overlay-border-color, var(--vaadin-border-color-subtle)));
|
|
18
18
|
border-radius: var(--vaadin-login-overlay-border-radius, var(--vaadin-radius-l));
|
|
19
19
|
box-shadow: var(
|
|
20
20
|
--vaadin-login-overlay-box-shadow,
|
|
@@ -34,7 +34,7 @@ const loginOverlayWrapper = css`
|
|
|
34
34
|
background: var(--vaadin-login-overlay-brand-background, var(--vaadin-background-container));
|
|
35
35
|
display: flex;
|
|
36
36
|
flex-direction: column;
|
|
37
|
-
padding: var(--vaadin-login-overlay-brand-padding, var(--vaadin-padding));
|
|
37
|
+
padding: var(--vaadin-login-overlay-brand-padding, var(--vaadin-padding-l));
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
::slotted([slot='title']) {
|
|
@@ -4,11 +4,10 @@
|
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import type { Constructor } from '@open-wc/dedupe-mixin';
|
|
7
|
-
import type { OverlayClassMixinClass } from '@vaadin/component-base/src/overlay-class-mixin.js';
|
|
8
7
|
|
|
9
8
|
export declare function LoginOverlayMixin<T extends Constructor<HTMLElement>>(
|
|
10
9
|
base: T,
|
|
11
|
-
): Constructor<LoginOverlayMixinClass> &
|
|
10
|
+
): Constructor<LoginOverlayMixinClass> & T;
|
|
12
11
|
|
|
13
12
|
export declare class LoginOverlayMixinClass {
|
|
14
13
|
/**
|
|
@@ -3,15 +3,13 @@
|
|
|
3
3
|
* Copyright (c) 2018 - 2025 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import { OverlayClassMixin } from '@vaadin/component-base/src/overlay-class-mixin.js';
|
|
7
6
|
import { TitleController } from './title-controller.js';
|
|
8
7
|
|
|
9
8
|
/**
|
|
10
9
|
* @polymerMixin
|
|
11
|
-
* @mixes OverlayClassMixin
|
|
12
10
|
*/
|
|
13
11
|
export const LoginOverlayMixin = (superClass) =>
|
|
14
|
-
class LoginOverlayMixin extends
|
|
12
|
+
class LoginOverlayMixin extends superClass {
|
|
15
13
|
static get properties() {
|
|
16
14
|
return {
|
|
17
15
|
/**
|
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": "25.0.0-
|
|
4
|
+
"version": "25.0.0-alpha13",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -229,17 +229,6 @@
|
|
|
229
229
|
]
|
|
230
230
|
}
|
|
231
231
|
},
|
|
232
|
-
{
|
|
233
|
-
"name": "overlay-class",
|
|
234
|
-
"description": "A space-delimited list of CSS class names to set on the overlay element.\nThis property does not affect other CSS class names set manually via JS.\n\nNote, if the CSS class name was set with this property, clearing it will\nremove it from the overlay, even if the same class name was also added\nmanually, e.g. by using `classList.add()` in the `renderer` function.",
|
|
235
|
-
"value": {
|
|
236
|
-
"type": [
|
|
237
|
-
"string",
|
|
238
|
-
"null",
|
|
239
|
-
"undefined"
|
|
240
|
-
]
|
|
241
|
-
}
|
|
242
|
-
},
|
|
243
232
|
{
|
|
244
233
|
"name": "description",
|
|
245
234
|
"description": "Defines the application description",
|
|
@@ -347,17 +336,6 @@
|
|
|
347
336
|
]
|
|
348
337
|
}
|
|
349
338
|
},
|
|
350
|
-
{
|
|
351
|
-
"name": "overlayClass",
|
|
352
|
-
"description": "A space-delimited list of CSS class names to set on the overlay element.\nThis property does not affect other CSS class names set manually via JS.\n\nNote, if the CSS class name was set with this property, clearing it will\nremove it from the overlay, even if the same class name was also added\nmanually, e.g. by using `classList.add()` in the `renderer` function.",
|
|
353
|
-
"value": {
|
|
354
|
-
"type": [
|
|
355
|
-
"string",
|
|
356
|
-
"null",
|
|
357
|
-
"undefined"
|
|
358
|
-
]
|
|
359
|
-
}
|
|
360
|
-
},
|
|
361
339
|
{
|
|
362
340
|
"name": "description",
|
|
363
341
|
"description": "Defines the application description",
|
package/web-types.lit.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/web-types",
|
|
3
3
|
"name": "@vaadin/login",
|
|
4
|
-
"version": "25.0.0-
|
|
4
|
+
"version": "25.0.0-alpha13",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"framework": "lit",
|
|
7
7
|
"framework-config": {
|
|
@@ -159,13 +159,6 @@
|
|
|
159
159
|
"kind": "expression"
|
|
160
160
|
}
|
|
161
161
|
},
|
|
162
|
-
{
|
|
163
|
-
"name": ".overlayClass",
|
|
164
|
-
"description": "A space-delimited list of CSS class names to set on the overlay element.\nThis property does not affect other CSS class names set manually via JS.\n\nNote, if the CSS class name was set with this property, clearing it will\nremove it from the overlay, even if the same class name was also added\nmanually, e.g. by using `classList.add()` in the `renderer` function.",
|
|
165
|
-
"value": {
|
|
166
|
-
"kind": "expression"
|
|
167
|
-
}
|
|
168
|
-
},
|
|
169
162
|
{
|
|
170
163
|
"name": ".description",
|
|
171
164
|
"description": "Defines the application description",
|