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

@vaadin/vaadin-ordered-layout

Package Overview
Dependencies
Maintainers
16
Versions
249
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vaadin/vaadin-ordered-layout - npm Package Compare versions

Comparing version 1.2.0-alpha1 to 1.2.0-alpha2

2

package.json

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

"name": "@vaadin/vaadin-ordered-layout",
"version": "1.2.0-alpha1",
"version": "1.2.0-alpha2",
"main": "imports.js",

@@ -16,0 +16,0 @@ "author": "Vaadin Ltd",

@@ -80,3 +80,3 @@ /**

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

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

@@ -19,11 +19,3 @@ /**

* ```
* ### Styling
*
* The following state attributes are available for styling:
*
* Attribute | Description
* -------------|-------------
* `horizontal-scroll-disabled` | Set to disable horizontal scrolling
* `vertical-scroll-disabled` | Set to disable vertical scrolling
*
* @memberof Vaadin

@@ -46,9 +38,13 @@ * @mixes Vaadin.ThemableMixin

:host([horizontal-scroll-disabled]) {
:host([scroll-direction='vertical']) {
overflow-x: hidden;
}
:host([vertical-scroll-disabled]) {
:host([scroll-direction='horizontal']) {
overflow-y: hidden;
}
:host([scroll-direction='none']) {
overflow: hidden;
}
</style>

@@ -64,4 +60,17 @@

static get properties() {
return {
/**
* This property indicates the scroll direction. Supported values are `vertical`, `horizontal`, `none`.
* When `scrollDirection` is undefined scrollbars will be shown in both directions.
*/
scrollDirection: {
type: String,
reflectToAttribute: true
}
};
}
static get version() {
return '1.2.0-alpha1';
return '1.2.0-alpha2';
}

@@ -68,0 +77,0 @@ }

@@ -82,3 +82,3 @@ /**

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

@@ -85,0 +85,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