@vaadin/split-layout
Advanced tools
Comparing version 23.0.9 to 23.0.10
{ | ||
"name": "@vaadin/split-layout", | ||
"version": "23.0.9", | ||
"version": "23.0.10", | ||
"publishConfig": { | ||
@@ -37,6 +37,6 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^23.0.9", | ||
"@vaadin/vaadin-lumo-styles": "^23.0.9", | ||
"@vaadin/vaadin-material-styles": "^23.0.9", | ||
"@vaadin/vaadin-themable-mixin": "^23.0.9" | ||
"@vaadin/component-base": "^23.0.10", | ||
"@vaadin/vaadin-lumo-styles": "^23.0.10", | ||
"@vaadin/vaadin-material-styles": "^23.0.10", | ||
"@vaadin/vaadin-themable-mixin": "^23.0.10" | ||
}, | ||
@@ -48,3 +48,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "4d687bdd48ba78d55f3371a78b70818e4dfca1a3" | ||
"gitHead": "e8402a55ce0e823ae6da5c97486998cfd931b1d3" | ||
} |
@@ -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, | ||
}; | ||
@@ -317,3 +317,3 @@ } | ||
primary: this._primaryChild.getBoundingClientRect()[size], | ||
secondary: this._secondaryChild.getBoundingClientRect()[size] | ||
secondary: this._secondaryChild.getBoundingClientRect()[size], | ||
}; | ||
@@ -344,3 +344,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.`, | ||
); | ||
@@ -347,0 +347,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' }, | ||
); |
35324