New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/login

Package Overview
Dependencies
Maintainers
14
Versions
430
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/login - npm Package Compare versions

Comparing version

to
23.1.0-alpha4

20

package.json
{
"name": "@vaadin/login",
"version": "23.1.0-alpha3",
"version": "23.1.0-alpha4",
"publishConfig": {

@@ -38,10 +38,10 @@ "access": "public"

"@polymer/polymer": "^3.0.0",
"@vaadin/button": "23.1.0-alpha3",
"@vaadin/component-base": "23.1.0-alpha3",
"@vaadin/password-field": "23.1.0-alpha3",
"@vaadin/text-field": "23.1.0-alpha3",
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha3",
"@vaadin/vaadin-material-styles": "23.1.0-alpha3",
"@vaadin/vaadin-overlay": "23.1.0-alpha3",
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha3"
"@vaadin/button": "23.1.0-alpha4",
"@vaadin/component-base": "23.1.0-alpha4",
"@vaadin/password-field": "23.1.0-alpha4",
"@vaadin/text-field": "23.1.0-alpha4",
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha4",
"@vaadin/vaadin-material-styles": "23.1.0-alpha4",
"@vaadin/vaadin-overlay": "23.1.0-alpha4",
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha4"
},

@@ -53,3 +53,3 @@ "devDependencies": {

},
"gitHead": "8c9e64e8dfa158dd52a9bf6da351ff038c88ca85"
"gitHead": "aacdb7fe09811894751f0378ff7fb66071892c71"
}

@@ -63,3 +63,3 @@ /**

listener: (this: LoginForm, ev: LoginFormEventMap[K]) => void,
options?: boolean | AddEventListenerOptions
options?: boolean | AddEventListenerOptions,
): void;

@@ -70,3 +70,3 @@

listener: (this: LoginForm, ev: LoginFormEventMap[K]) => void,
options?: boolean | EventListenerOptions
options?: boolean | EventListenerOptions,
): void;

@@ -73,0 +73,0 @@ }

@@ -152,4 +152,4 @@ /**

username: this.$.vaadinLoginUsername.value,
password: this.$.vaadinLoginPassword.value
}
password: this.$.vaadinLoginPassword.value,
},
};

@@ -156,0 +156,0 @@

@@ -35,3 +35,3 @@ /**

value: null,
notify: true
notify: true,
},

@@ -48,3 +48,3 @@

value: false,
notify: true
notify: true,
},

@@ -61,3 +61,3 @@

reflectToAttribute: true,
notify: true
notify: true,
},

@@ -73,3 +73,3 @@

value: false,
notify: true
notify: true,
},

@@ -84,3 +84,3 @@

type: Boolean,
value: false
value: false,
},

@@ -127,11 +127,11 @@

submit: 'Log in',
forgotPassword: 'Forgot password'
forgotPassword: 'Forgot password',
},
errorMessage: {
title: 'Incorrect username or password',
message: 'Check that you have entered the correct username and password and try again.'
}
message: 'Check that you have entered the correct username and password and try again.',
},
};
},
notify: true
notify: true,
},

@@ -145,4 +145,4 @@

type: Boolean,
value: false
}
value: false,
},
};

@@ -149,0 +149,0 @@ }

@@ -76,3 +76,3 @@ /**

title: {
type: String
type: String,
},

@@ -84,4 +84,4 @@

description: {
type: String
}
type: String,
},
};

@@ -96,3 +96,3 @@ }

// Retrieve the elements from component's template
const thisTemplate = DomModule.import(this.is + '-template', 'template');
const thisTemplate = DomModule.import(`${this.is}-template`, 'template');
const card = thisTemplate.content.querySelector('[part=card]');

@@ -99,0 +99,0 @@ const styles = thisTemplate.content.querySelector('style');

@@ -73,3 +73,3 @@ /**

listener: (this: LoginOverlay, ev: LoginOverlayEventMap[K]) => void,
options?: boolean | AddEventListenerOptions
options?: boolean | AddEventListenerOptions,
): void;

@@ -80,3 +80,3 @@

listener: (this: LoginOverlay, ev: LoginOverlayEventMap[K]) => void,
options?: boolean | EventListenerOptions
options?: boolean | EventListenerOptions,
): void;

@@ -83,0 +83,0 @@ }

@@ -89,3 +89,3 @@ /**

value: 'Application description',
notify: true
notify: true,
},

@@ -100,3 +100,3 @@

value: false,
observer: '_onOpenedChange'
observer: '_onOpenedChange',
},

@@ -110,4 +110,4 @@

type: String,
value: 'App name'
}
value: 'App name',
},
};

@@ -114,0 +114,0 @@ }

@@ -12,3 +12,3 @@ import '@vaadin/vaadin-lumo-styles/spacing.js';

`,
{ moduleId: 'lumo-login-form' }
{ moduleId: 'lumo-login-form' },
);

@@ -82,3 +82,3 @@ import '@vaadin/vaadin-lumo-styles/spacing.js';

registerStyles('vaadin-login-form-wrapper', [color, typography, loginFormWrapper], {
moduleId: 'lumo-login-form-wrapper'
moduleId: 'lumo-login-form-wrapper',
});

@@ -176,3 +176,3 @@ import '@vaadin/vaadin-lumo-styles/spacing.js';

registerStyles('vaadin-login-overlay-wrapper', [color, typography, loginOverlayWrapper], {
moduleId: 'vaadin-login-overlay-wrapper-lumo-styles'
moduleId: 'vaadin-login-overlay-wrapper-lumo-styles',
});

@@ -200,3 +200,3 @@

registerStyles('vaadin-login-form-wrapper', [color, typography, loginFormWrapper], {
moduleId: 'lumo-login-overlay'
moduleId: 'lumo-login-overlay',
});

@@ -20,3 +20,3 @@ import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';

`,
{ moduleId: 'material-login-form' }
{ moduleId: 'material-login-form' },
);

@@ -89,3 +89,3 @@ import '@vaadin/vaadin-material-styles/color.js';

registerStyles('vaadin-login-form-wrapper', [typography, loginFormWrapper], {
moduleId: 'material-login-form-wrapper'
moduleId: 'material-login-form-wrapper',
});

@@ -305,3 +305,3 @@ import '@vaadin/vaadin-material-styles/color.js';

registerStyles('vaadin-login-overlay-wrapper', [overlay, typography, loginOverlayWrapper], {
moduleId: 'vaadin-login-overlay-wrapper-material-styles'
moduleId: 'vaadin-login-overlay-wrapper-material-styles',
});

@@ -308,0 +308,0 @@