@vaadin/split-layout 23.3.0-alpha5 → 24.0.0-alpha2
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 +6 -6
- package/src/vaadin-split-layout.d.ts +0 -6
- package/src/vaadin-split-layout.js +0 -10
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/split-layout",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "24.0.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,10 +36,10 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/component-base": "
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
41
|
-
"@vaadin/vaadin-material-styles": "
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
39
|
+
"@vaadin/component-base": "24.0.0-alpha2",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha2",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "24.0.0-alpha2",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"web-types.json",
|
|
51
51
|
"web-types.lit.json"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "0c16c01a6807e629a84f5a982793afecc1a7ced0"
|
|
54
54
|
}
|
|
@@ -156,12 +156,6 @@ declare class SplitLayout extends ElementMixin(ThemableMixin(HTMLElement)) {
|
|
|
156
156
|
*/
|
|
157
157
|
orientation: 'horizontal' | 'vertical';
|
|
158
158
|
|
|
159
|
-
/**
|
|
160
|
-
* @deprecated Since Vaadin 23, `notifyResize()` is deprecated. The component uses a
|
|
161
|
-
* ResizeObserver internally and doesn't need to be explicitly notified of resizes.
|
|
162
|
-
*/
|
|
163
|
-
notifyResize(): void;
|
|
164
|
-
|
|
165
159
|
addEventListener<K extends keyof SplitLayoutEventMap>(
|
|
166
160
|
type: K,
|
|
167
161
|
listener: (this: SplitLayout, ev: SplitLayoutEventMap[K]) => void,
|
|
@@ -332,16 +332,6 @@ class SplitLayout extends ElementMixin(ThemableMixin(PolymerElement)) {
|
|
|
332
332
|
}
|
|
333
333
|
}
|
|
334
334
|
|
|
335
|
-
/**
|
|
336
|
-
* @deprecated Since Vaadin 23, `notifyResize()` is deprecated. The component uses a
|
|
337
|
-
* ResizeObserver internally and doesn't need to be explicitly notified of resizes.
|
|
338
|
-
*/
|
|
339
|
-
notifyResize() {
|
|
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.`,
|
|
342
|
-
);
|
|
343
|
-
}
|
|
344
|
-
|
|
345
335
|
/**
|
|
346
336
|
* Fired after dragging the splitter have ended.
|
|
347
337
|
*
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED