Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vaadin/vaadin-select

Package Overview
Dependencies
Maintainers
18
Versions
259
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-select - npm Package Compare versions

Comparing version 3.0.0-alpha1 to 3.0.0

8

package.json
{
"name": "@vaadin/vaadin-select",
"version": "3.0.0-alpha1",
"version": "3.0.0",
"description": "vaadin-select",

@@ -62,4 +62,4 @@ "main": "vaadin-select.js",

"@vaadin/vaadin-element-mixin": "^2.4.2",
"@vaadin/vaadin-item": "^3.0.0-alpha1",
"@vaadin/vaadin-list-box": "^2.0.0-alpha1",
"@vaadin/vaadin-item": "^3.0.0",
"@vaadin/vaadin-list-box": "^2.0.0",
"@vaadin/vaadin-list-mixin": "^2.5.0",

@@ -69,3 +69,3 @@ "@vaadin/vaadin-lumo-styles": "^1.6.1",

"@vaadin/vaadin-overlay": "^3.5.1",
"@vaadin/vaadin-text-field": "^3.0.0-alpha1",
"@vaadin/vaadin-text-field": "^3.0.0",
"@vaadin/vaadin-themable-mixin": "^1.6.2"

@@ -72,0 +72,0 @@ },

@@ -16,3 +16,3 @@ import { SelectElement } from './vaadin-select';

*/
export type SelectOpenedChanged = CustomEvent<{ value: boolean; path: 'opened' }>;
export type SelectOpenedChanged = CustomEvent<{ value: boolean }>;

@@ -22,3 +22,3 @@ /**

*/
export type SelectInvalidChanged = CustomEvent<{ value: boolean; path: 'invalid' }>;
export type SelectInvalidChanged = CustomEvent<{ value: boolean }>;

@@ -28,3 +28,3 @@ /**

*/
export type SelectValueChanged = CustomEvent<{ value: string; path: 'value' }>;
export type SelectValueChanged = CustomEvent<{ value: string }>;

@@ -31,0 +31,0 @@ export interface SelectElementEventMap {

@@ -101,2 +101,7 @@ import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';

* propagated to the internal themable components listed above.
*
* @fires {Event} change - Fired when the user commits a value change.
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
* @fires {CustomEvent} opened-changed - Fired when the `opened` property changes.
* @fires {CustomEvent} value-changed - Fired when the `value` property changes.
*/

@@ -103,0 +108,0 @@ declare class SelectElement extends ElementMixin(ControlStateMixin(ThemableMixin(HTMLElement))) {

@@ -124,2 +124,7 @@ /**

*
* @fires {Event} change - Fired when the user commits a value change.
* @fires {CustomEvent} invalid-changed - Fired when the `invalid` property changes.
* @fires {CustomEvent} opened-changed - Fired when the `opened` property changes.
* @fires {CustomEvent} value-changed - Fired when the `value` property changes.
*
* @extends HTMLElement

@@ -189,3 +194,3 @@ * @mixes ElementMixin

static get version() {
return '3.0.0-alpha1';
return '3.0.0';
}

@@ -192,0 +197,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc