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

@vaadin/vaadin-list-box

Package Overview
Dependencies
Maintainers
17
Versions
250
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-list-box - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

12

package.json

@@ -13,3 +13,3 @@ {

"name": "@vaadin/vaadin-list-box",
"version": "1.1.0",
"version": "1.1.1",
"main": "vaadin-list-box.js",

@@ -21,2 +21,7 @@ "author": "Vaadin Ltd",

},
"files": [
"vaadin-*.js",
"src",
"theme"
],
"resolutions": {

@@ -38,8 +43,7 @@ "inherits": "2.0.3",

"devDependencies": {
"@polymer/iron-component-page": "^3.0.0-pre.18",
"@polymer/iron-demo-helpers": "^3.0.0-pre.18",
"@polymer/iron-component-page": "^4.0.0",
"@webcomponents/webcomponentsjs": "^2.0.0",
"wct-browser-legacy": "^1.0.1",
"@vaadin/vaadin-demo-helpers": "^2.0.1"
"@vaadin/vaadin-demo-helpers": "^3.0.0"
}
}

@@ -101,16 +101,16 @@ [![npm version](https://badgen.net/npm/v/@vaadin/vaadin-list-box)](https://www.npmjs.com/package/@vaadin/vaadin-list-box)

## Running demos and tests in browser
## Running demos and tests in a browser
1. Fork the `vaadin-list-box` repository and clone it locally.
1. Make sure you have [npm](https://www.npmjs.com/) installed.
1. Make sure you have [npm](https://www.npmjs.com/) and [Bower](https://bower.io) installed.
1. When in the `vaadin-list-box` directory, run `npm install` and then `bower install` to install dependencies.
1. Run `polymer serve --open`, browser will automatically open the component API documentation.
1. Run `npm start`, browser will automatically open the component API documentation.
1. You can also open demo or in-browser tests by adding **demo** or **test** to the URL, for example:
- http://127.0.0.1:8080/components/vaadin-list-box/demo
- http://127.0.0.1:8080/components/vaadin-list-box/test
- http://127.0.0.1:3000/components/vaadin-list-box/demo
- http://127.0.0.1:3000/components/vaadin-list-box/test

@@ -125,5 +125,10 @@

We are using [ESLint](http://eslint.org/) for linting JavaScript code. You can check if your code is following our standards by running `gulp lint`, which will automatically lint all `.js` files as well as JavaScript snippets inside `.html` files.
We are using [ESLint](http://eslint.org/) for linting JavaScript code. You can check if your code is following our standards by running `npm run lint`, which will automatically lint all `.js` files as well as JavaScript snippets inside `.html` files.
## Big Thanks
Cross-browser Testing Platform and Open Source <3 Provided by [Sauce Labs](https://saucelabs.com).
## Contributing

@@ -130,0 +135,0 @@

@@ -69,3 +69,3 @@ /**

static get version() {
return '1.1.0';
return '1.1.1';
}

@@ -84,2 +84,9 @@

constructor() {
super();
/** @protected */
this.focused;
}
ready() {

@@ -86,0 +93,0 @@ super.ready();

import '@vaadin/vaadin-lumo-styles/color.js';
import '@vaadin/vaadin-lumo-styles/spacing.js';
import '@vaadin/vaadin-lumo-styles/style.js';
const $_documentContainer = document.createElement('template');
import { html } from '@polymer/polymer/lib/utils/html-tag.js';
$_documentContainer.innerHTML = `<dom-module id="lumo-list-box" theme-for="vaadin-list-box">
const $_documentContainer = html`<dom-module id="lumo-list-box" theme-for="vaadin-list-box">
<template>

@@ -8,0 +8,0 @@ <style>

import '@vaadin/vaadin-material-styles/font-icons.js';
import '@vaadin/vaadin-material-styles/color.js';
const $_documentContainer = document.createElement('template');
import { html } from '@polymer/polymer/lib/utils/html-tag.js';
$_documentContainer.innerHTML = `<dom-module id="material-list-box" theme-for="vaadin-list-box">
const $_documentContainer = html`<dom-module id="material-list-box" theme-for="vaadin-list-box">
<template>

@@ -7,0 +7,0 @@ <style>

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