@vaadin/split-layout 23.0.9 → 23.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/split-layout",
|
|
3
|
-
"version": "23.0.
|
|
3
|
+
"version": "23.0.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,15 +34,15 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@polymer/polymer": "^3.0.0",
|
|
37
|
-
"@vaadin/component-base": "^23.0.
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "^23.0.
|
|
39
|
-
"@vaadin/vaadin-material-styles": "^23.0.
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "^23.0.
|
|
37
|
+
"@vaadin/component-base": "^23.0.10",
|
|
38
|
+
"@vaadin/vaadin-lumo-styles": "^23.0.10",
|
|
39
|
+
"@vaadin/vaadin-material-styles": "^23.0.10",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "^23.0.10"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@esm-bundle/chai": "^4.3.4",
|
|
44
44
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
45
45
|
"sinon": "^9.2.1"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "e8402a55ce0e823ae6da5c97486998cfd931b1d3"
|
|
48
48
|
}
|
|
@@ -165,13 +165,13 @@ declare class SplitLayout extends ElementMixin(ThemableMixin(HTMLElement)) {
|
|
|
165
165
|
addEventListener<K extends keyof SplitLayoutEventMap>(
|
|
166
166
|
type: K,
|
|
167
167
|
listener: (this: SplitLayout, ev: SplitLayoutEventMap[K]) => void,
|
|
168
|
-
options?: boolean | AddEventListenerOptions
|
|
168
|
+
options?: boolean | AddEventListenerOptions,
|
|
169
169
|
): void;
|
|
170
170
|
|
|
171
171
|
removeEventListener<K extends keyof SplitLayoutEventMap>(
|
|
172
172
|
type: K,
|
|
173
173
|
listener: (this: SplitLayout, ev: SplitLayoutEventMap[K]) => void,
|
|
174
|
-
options?: boolean | EventListenerOptions
|
|
174
|
+
options?: boolean | EventListenerOptions,
|
|
175
175
|
): void;
|
|
176
176
|
}
|
|
177
177
|
|
|
@@ -222,14 +222,14 @@ class SplitLayout extends ElementMixin(ThemableMixin(PolymerElement)) {
|
|
|
222
222
|
orientation: {
|
|
223
223
|
type: String,
|
|
224
224
|
reflectToAttribute: true,
|
|
225
|
-
value: 'horizontal'
|
|
225
|
+
value: 'horizontal',
|
|
226
226
|
},
|
|
227
227
|
|
|
228
228
|
/** @private */
|
|
229
229
|
_previousPrimaryPointerEvents: String,
|
|
230
230
|
|
|
231
231
|
/** @private */
|
|
232
|
-
_previousSecondaryPointerEvents: String
|
|
232
|
+
_previousSecondaryPointerEvents: String,
|
|
233
233
|
};
|
|
234
234
|
}
|
|
235
235
|
|
|
@@ -312,7 +312,7 @@ class SplitLayout extends ElementMixin(ThemableMixin(PolymerElement)) {
|
|
|
312
312
|
this._startSize = {
|
|
313
313
|
container: this.getBoundingClientRect()[size] - this.$.splitter.getBoundingClientRect()[size],
|
|
314
314
|
primary: this._primaryChild.getBoundingClientRect()[size],
|
|
315
|
-
secondary: this._secondaryChild.getBoundingClientRect()[size]
|
|
315
|
+
secondary: this._secondaryChild.getBoundingClientRect()[size],
|
|
316
316
|
};
|
|
317
317
|
|
|
318
318
|
return;
|
|
@@ -338,7 +338,7 @@ class SplitLayout extends ElementMixin(ThemableMixin(PolymerElement)) {
|
|
|
338
338
|
*/
|
|
339
339
|
notifyResize() {
|
|
340
340
|
console.warn(
|
|
341
|
-
`WARNING: Since Vaadin 23, notifyResize() is deprecated. The component uses a ResizeObserver internally and doesn't need to be explicitly notified of resizes
|
|
341
|
+
`WARNING: Since Vaadin 23, notifyResize() is deprecated. The component uses a ResizeObserver internally and doesn't need to be explicitly notified of resizes.`,
|
|
342
342
|
);
|
|
343
343
|
}
|
|
344
344
|
|