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

@vaadin/vaadin-form-layout

Package Overview
Dependencies
Maintainers
16
Versions
247
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

Comparing version 2.2.0 to 2.3.0-alpha1

./@types/interfaces.d.ts

14

package.json

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

"name": "@vaadin/vaadin-form-layout",
"version": "2.2.0",
"version": "2.3.0-alpha1",
"main": "vaadin-form-layout.js",

@@ -22,3 +22,5 @@ "author": "Vaadin Ltd",

"files": [
"vaadin-*.d.ts",
"vaadin-*.js",
"@types",
"src",

@@ -36,11 +38,11 @@ "theme"

"@polymer/polymer": "^3.0.0",
"@vaadin/vaadin-themable-mixin": "^1.2.1",
"@vaadin/vaadin-themable-mixin": "^1.6.1",
"@vaadin/vaadin-lumo-styles": "^1.6.0",
"@vaadin/vaadin-material-styles": "^1.3.2",
"@vaadin/vaadin-element-mixin": "^2.3.0"
"@vaadin/vaadin-element-mixin": "^2.4.1"
},
"scripts": {
"generate-typings": "gen-typescript-declarations --outDir . --verify"
},
"devDependencies": {
"generate-typings": "gen-typescript-declarations --outDir . --verify"
},
"devDependencies": {
"@polymer/iron-component-page": "^4.0.0",

@@ -47,0 +49,0 @@ "@polymer/iron-demo-helpers": "^3.0.0",

@@ -185,2 +185,3 @@ /**

/** @private */
_onLabelClick(e) {

@@ -187,0 +188,0 @@ // No `Array.prototype.find` in MSIE, using `filter` instead :-(

@@ -169,3 +169,3 @@ /**

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

@@ -176,3 +176,3 @@

/**
* @typedef ResponsiveStep
* @typedef FormLayoutResponsiveStep
* @type {object}

@@ -221,3 +221,3 @@ * @property {string} minWidth - The threshold value for this step in CSS length units.

*
* @type {ResponsiveStep[]}
* @type {!Array<!FormLayoutResponsiveStep>}
*/

@@ -238,2 +238,3 @@ responsiveSteps: {

* Current number of columns in the layout
* @private
*/

@@ -246,2 +247,3 @@ _columnCount: {

* Indicates that labels are on top
* @private
*/

@@ -260,2 +262,3 @@ _labelsOnTop: {

/** @protected */
ready() {

@@ -283,2 +286,3 @@ // Here we create and attach a style element that we use for validating

/** @protected */
connectedCallback() {

@@ -293,2 +297,3 @@ super.connectedCallback();

/** @protected */
disconnectedCallback() {

@@ -301,2 +306,3 @@ super.disconnectedCallback();

/** @private */
_observeChildrenColspanChange() {

@@ -330,2 +336,3 @@ // Observe changes in form items' `colspan` attribute and update styles

/** @private */
_getObservableNodes(nodeList) {

@@ -337,2 +344,3 @@ const ignore = ['template', 'style', 'dom-repeat', 'dom-if'];

/** @private */
_naturalNumberOrOne(n) {

@@ -345,2 +353,3 @@ if (typeof n === 'number' && n >= 1 && n < Infinity) {

/** @private */
_isValidCSSLength(value) {

@@ -373,2 +382,3 @@ // Let us choose a CSS property for validating CSS <length> values:

/** @private */
_responsiveStepsChanged(responsiveSteps, oldResponsiveSteps) {

@@ -414,2 +424,3 @@ try {

/** @private */
__onAnimationEnd(e) {

@@ -421,2 +432,3 @@ if (e.animationName.indexOf('vaadin-form-layout-appear') === 0) {

/** @private */
_selectResponsiveStep() {

@@ -454,2 +466,3 @@ // Iterate through responsiveSteps and choose the step

/** @private */
_invokeUpdateStyles() {

@@ -461,5 +474,7 @@ this.updateStyles();

* Set custom CSS property values and update the layout.
* @param {Object<string, string>=} properties
* @protected
*/
updateStyles(...args) {
super.updateStyles(...args);
updateStyles(properties) {
super.updateStyles(properties);

@@ -466,0 +481,0 @@ /*

import './theme/lumo/vaadin-form-item.js';
export * from './src/vaadin-form-item.js';
import './theme/lumo/vaadin-form-layout.js';
export * from './src/vaadin-form-layout.js';
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