Socket
Socket
Sign inDemoInstall

@vaadin/scroller

Package Overview
Dependencies
Maintainers
19
Versions
368
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/scroller - npm Package Compare versions

Comparing version 22.0.0-alpha6 to 22.0.0-alpha7

48

package.json
{
"name": "@vaadin/scroller",
"version": "22.0.0-alpha6",
"version": "22.0.0-alpha7",
"publishConfig": {
"access": "public"
},
"description": "vaadin-scroller",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/vaadin/web-components.git",
"directory": "packages/scroller"
},
"author": "Vaadin Ltd",
"homepage": "https://vaadin.com/components",
"bugs": {
"url": "https://github.com/vaadin/web-components/issues"
},
"main": "vaadin-scroller.js",
"module": "vaadin-scroller.js",
"repository": "vaadin/web-components",
"files": [
"src",
"theme",
"vaadin-*.d.ts",
"vaadin-*.js"
],
"keywords": [

@@ -15,20 +34,8 @@ "Vaadin",

],
"author": "Vaadin Ltd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vaadin/web-components/issues"
},
"homepage": "https://vaadin.com/components",
"files": [
"vaadin-*.d.ts",
"vaadin-*.js",
"src",
"theme"
],
"dependencies": {
"@polymer/polymer": "^3.0.0",
"@vaadin/vaadin-element-mixin": "^22.0.0-alpha6",
"@vaadin/vaadin-lumo-styles": "^22.0.0-alpha6",
"@vaadin/vaadin-material-styles": "^22.0.0-alpha6",
"@vaadin/vaadin-themable-mixin": "^22.0.0-alpha6"
"@vaadin/component-base": "22.0.0-alpha7",
"@vaadin/vaadin-lumo-styles": "22.0.0-alpha7",
"@vaadin/vaadin-material-styles": "22.0.0-alpha7",
"@vaadin/vaadin-themable-mixin": "22.0.0-alpha7"
},

@@ -39,6 +46,3 @@ "devDependencies": {

},
"publishConfig": {
"access": "public"
},
"gitHead": "4b136b1c7da8942960e7255f40c27859125b3a45"
"gitHead": "8e89419c6b44a1d225d5859e180d7b35e47ddb52"
}

@@ -0,5 +1,5 @@

import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
import { ElementMixin } from '@vaadin/vaadin-element-mixin/vaadin-element-mixin.js';
/**

@@ -14,3 +14,3 @@ * `<vaadin-scroller>` provides a simple way to enable scrolling when its content is overflowing.

*/
declare class ScrollerElement extends ThemableMixin(ElementMixin(HTMLElement)) {
declare class Scroller extends ThemableMixin(ElementMixin(HTMLElement)) {
/**

@@ -25,6 +25,6 @@ * This property indicates the scroll direction. Supported values are `vertical`, `horizontal`, `none`.

interface HTMLElementTagNameMap {
'vaadin-scroller': ScrollerElement;
'vaadin-scroller': Scroller;
}
}
export { ScrollerElement };
export { Scroller };

@@ -7,4 +7,4 @@ /**

import { PolymerElement, html } from '@polymer/polymer/polymer-element.js';
import { ElementMixin } from '@vaadin/component-base/src/element-mixin.js';
import { ThemableMixin } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
import { ElementMixin } from '@vaadin/vaadin-element-mixin/vaadin-element-mixin.js';

@@ -24,3 +24,3 @@ /**

*/
class ScrollerElement extends ElementMixin(ThemableMixin(PolymerElement)) {
class Scroller extends ElementMixin(ThemableMixin(PolymerElement)) {
static get template() {

@@ -73,4 +73,4 @@ return html`

customElements.define(ScrollerElement.is, ScrollerElement);
customElements.define(Scroller.is, Scroller);
export { ScrollerElement };
export { Scroller };
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