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

vaadin-checkbox

Package Overview
Dependencies
Maintainers
8
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vaadin-checkbox - npm Package Compare versions

Comparing version 1.0.0-alpha1 to 1.0.0-alpha5

analysis.json

9

bower.json

@@ -23,3 +23,3 @@ {

"gulpfile.js",
"package.json",
"package-lock.json",
"wct.conf.js"

@@ -33,8 +33,9 @@ ],

"devDependencies": {
"elements-demo-resources": "^2.0.0",
"iron-component-page": "^2.0.0",
"iron-component-page": "^3.0.0",
"iron-demo-helpers": "^2.0.0",
"iron-test-helpers": "^2.0.0",
"web-component-tester": "^6.0.0"
"webcomponentsjs": "^1.0.1",
"web-component-tester": "^6.1.5",
"vaadin-demo-helpers": "vaadin/vaadin-demo-helpers"
}
}

@@ -27,5 +27,5 @@ 'use strict';

])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError('fail'));
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError('fail'));
});

@@ -39,8 +39,9 @@

])
.pipe(htmlExtract({
sel: 'script, code-example code'
}))
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError('fail'));
.pipe(htmlExtract({
sel: 'script, code-example code',
strip: true
}))
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError('fail'));
});

@@ -54,10 +55,10 @@

])
.pipe(htmlExtract({
sel: 'style'
}))
.pipe(stylelint({
reporters: [
{formatter: 'string', console: true}
]
}));
.pipe(htmlExtract({
sel: 'style'
}))
.pipe(stylelint({
reporters: [
{formatter: 'string', console: true}
]
}));
});

@@ -64,0 +65,0 @@

{
"name": "vaadin-checkbox",
"version": "1.0.0-alpha1",
"version": "1.0.0-alpha5",
"description": "vaadin-checkbox",

@@ -25,20 +25,16 @@ "main": "vaadin-checkbox.html",

"bower": "latest",
"eslint": "^3.19.0",
"eslint": "^4.0.0",
"eslint-config-vaadin": "latest",
"eslint-plugin-html": "^1.7.0",
"gemini": "^4.17.1",
"gemini-polyserve": "^1.0.0",
"gemini-sauce": "^1.0.0",
"eslint-plugin-html": "^3.0.0",
"gulp": "latest",
"gulp-eslint": "^3.0.1",
"gulp-html-extract": "^0.0.3",
"gulp-eslint": "^4.0.0",
"gulp-html-extract": "^0.3.0",
"gulp-stylelint": "^3.7.0",
"lighthouse": "^1.6.0",
"polymer-cli": "^0.18.0",
"polyserve": "^0.15.0",
"stylelint": "^7.10.0",
"polymer-cli": "^1.2.0",
"stylelint": "^8.0.0",
"stylelint-config-vaadin": "latest",
"web-component-tester": "^6.0.0",
"web-component-tester": "^6.1.5",
"yargs": "latest"
}
}
![Bower version](https://img.shields.io/bower/v/vaadin-checkbox.svg)
<!--[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://beta.webcomponents.org/element/vaadin/vaadin-checkbox)-->
[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://beta.webcomponents.org/element/vaadin/vaadin-checkbox)
[![Build Status](https://travis-ci.org/vaadin/vaadin-checkbox.svg?branch=master)](https://travis-ci.org/vaadin/vaadin-checkbox)

@@ -8,5 +8,7 @@ [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/vaadin/vaadin-core-elements?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)

<!--[Live Demo ↗](https://cdn.vaadin.com/vaadin-checkbox/1.0.0-alpha1/demo/)-->
[Live Demo ↗](https://cdn.vaadin.com/vaadin-checkbox/1.0.0-alpha4/demo/)
|
[API documentation ↗](https://cdn.vaadin.com/vaadin-checkbox/1.0.0-alpha4/#/elements/vaadin-checkbox)
[&lt;vaadin-checkbox&gt;](https://vaadin.com/elements/-/element/vaadin-checkbox) is a [Polymer](http://polymer-project.org) element providing an accessible and customizable checkbox, part of the [Vaadin Core Elements](https://vaadin.com/elements).
[&lt;vaadin-checkbox&gt;](https://vaadin.com/elements/-/element/vaadin-checkbox) is a [Polymer 2](http://polymer-project.org) element providing an accessible and customizable checkbox, part of the [Vaadin Core Elements](https://vaadin.com/elements).

@@ -17,2 +19,3 @@ <!--

<template>
<script src="../webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="vaadin-checkbox.html">

@@ -25,3 +28,5 @@ <next-code-block></next-code-block>

```html
<vaadin-checkbox></vaadin-checkbox>
<vaadin-checkbox checked>
Make my profile visible
</vaadin-checkbox>
```

@@ -33,3 +38,3 @@

## Contributing
## Running demos and tests in browser

@@ -40,17 +45,12 @@ 1. Fork the `vaadin-checkbox` repository and clone it locally.

1. When in the `vaadin-checkbox` directory, run `npm install` to install dependencies.
1. When in the `vaadin-checkbox` directory, run `npm install` and then `bower install` to install dependencies.
1. Run `polymer serve --open`, browser will automatically open the component API documentation.
## Running demos and tests in browser
1. You can also open demo or in-browser tests by adding **demo** or **test** to the URL, for example:
1. Install [polymer-cli](https://www.npmjs.com/package/polymer-cli): `npm install -g polymer-cli`
- http://127.0.0.1:8080/components/vaadin-checkbox/demo
- http://127.0.0.1:8080/components/vaadin-checkbox/test
1. When in the `vaadin-checkbox` directory, run `polymer serve --open`, 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:8081/components/vaadin-checkbox/demo/
- http://127.0.0.1:8081/components/vaadin-checkbox/test/
## Running tests from the command line

@@ -57,0 +57,0 @@

@@ -6,12 +6,12 @@ var argv = require('yargs').argv;

var saucelabsPlatforms = [
'OS X 10.12/iphone@10.2',
'OS X 10.12/ipad@10.2',
'Windows 10/microsoftedge@14',
'macOS 10.12/iphone@10.3',
'macOS 10.12/ipad@10.3',
'Windows 10/microsoftedge@15',
'Windows 10/internet explorer@11',
'OS X 10.12/safari@10.0'
'macOS 10.12/safari@10.0'
];
var cronPlatforms = [
'Windows 10/chrome@58',
'Windows 10/firefox@53'
'Windows 10/chrome@59',
'Windows 10/firefox@54'
];

@@ -18,0 +18,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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