@vaadin/split-layout
Advanced tools
Comparing version 23.1.0-alpha3 to 23.1.0-alpha4
{ | ||
"name": "@vaadin/split-layout", | ||
"version": "23.1.0-alpha3", | ||
"version": "23.1.0-alpha4", | ||
"publishConfig": { | ||
@@ -37,6 +37,6 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "23.1.0-alpha3", | ||
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha3", | ||
"@vaadin/vaadin-material-styles": "23.1.0-alpha3", | ||
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha3" | ||
"@vaadin/component-base": "23.1.0-alpha4", | ||
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha4", | ||
"@vaadin/vaadin-material-styles": "23.1.0-alpha4", | ||
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha4" | ||
}, | ||
@@ -48,3 +48,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "8c9e64e8dfa158dd52a9bf6da351ff038c88ca85" | ||
"gitHead": "aacdb7fe09811894751f0378ff7fb66071892c71" | ||
} |
@@ -168,3 +168,3 @@ /** | ||
listener: (this: SplitLayout, ev: SplitLayoutEventMap[K]) => void, | ||
options?: boolean | AddEventListenerOptions | ||
options?: boolean | AddEventListenerOptions, | ||
): void; | ||
@@ -175,3 +175,3 @@ | ||
listener: (this: SplitLayout, ev: SplitLayoutEventMap[K]) => void, | ||
options?: boolean | EventListenerOptions | ||
options?: boolean | EventListenerOptions, | ||
): void; | ||
@@ -178,0 +178,0 @@ } |
@@ -225,3 +225,3 @@ /** | ||
reflectToAttribute: true, | ||
value: 'horizontal' | ||
value: 'horizontal', | ||
}, | ||
@@ -233,3 +233,3 @@ | ||
/** @private */ | ||
_previousSecondaryPointerEvents: String | ||
_previousSecondaryPointerEvents: String, | ||
}; | ||
@@ -265,3 +265,3 @@ } | ||
child.setAttribute('slot', 'primary'); | ||
} else if (i == 1) { | ||
} else if (i === 1) { | ||
this._secondaryChild = child; | ||
@@ -282,3 +282,3 @@ child.setAttribute('slot', 'secondary'); | ||
} | ||
element.style.flex = '1 1 ' + flexBasis + 'px'; | ||
element.style.flex = `1 1 ${flexBasis}px`; | ||
} | ||
@@ -319,3 +319,3 @@ | ||
primary: this._primaryChild.getBoundingClientRect()[size], | ||
secondary: this._secondaryChild.getBoundingClientRect()[size] | ||
secondary: this._secondaryChild.getBoundingClientRect()[size], | ||
}; | ||
@@ -346,3 +346,3 @@ | ||
console.warn( | ||
`WARNING: Since Vaadin 23, notifyResize() is deprecated. The component uses a ResizeObserver internally and doesn't need to be explicitly notified of resizes.` | ||
`WARNING: Since Vaadin 23, notifyResize() is deprecated. The component uses a ResizeObserver internally and doesn't need to be explicitly notified of resizes.`, | ||
); | ||
@@ -349,0 +349,0 @@ } |
@@ -100,3 +100,3 @@ import '@vaadin/vaadin-lumo-styles/color.js'; | ||
`, | ||
{ moduleId: 'lumo-split-layout' } | ||
{ moduleId: 'lumo-split-layout' }, | ||
); |
@@ -31,3 +31,3 @@ import '@vaadin/vaadin-material-styles/color.js'; | ||
`, | ||
{ moduleId: 'material-split-layout' } | ||
{ moduleId: 'material-split-layout' }, | ||
); |
35347
+ Added@vaadin/component-base@23.1.0-alpha4(transitive)
+ Added@vaadin/icon@23.1.0-alpha4(transitive)
+ Added@vaadin/vaadin-lumo-styles@23.1.0-alpha4(transitive)
+ Added@vaadin/vaadin-material-styles@23.1.0-alpha4(transitive)
+ Added@vaadin/vaadin-themable-mixin@23.1.0-alpha4(transitive)
- Removed@vaadin/component-base@23.1.0-alpha3(transitive)
- Removed@vaadin/icon@23.1.0-alpha3(transitive)
- Removed@vaadin/vaadin-lumo-styles@23.1.0-alpha3(transitive)
- Removed@vaadin/vaadin-material-styles@23.1.0-alpha3(transitive)
- Removed@vaadin/vaadin-themable-mixin@23.1.0-alpha3(transitive)