@vaadin/component-base 24.0.0-alpha1 → 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 +2 -2
- package/src/element-mixin.js +1 -1
- package/src/resize-mixin.js +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/component-base",
|
|
3
|
-
"version": "24.0.0-
|
|
3
|
+
"version": "24.0.0-alpha2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
43
43
|
"sinon": "^13.0.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "0c16c01a6807e629a84f5a982793afecc1a7ced0"
|
|
46
46
|
}
|
package/src/element-mixin.js
CHANGED
package/src/resize-mixin.js
CHANGED
|
@@ -86,15 +86,5 @@ export const ResizeMixin = dedupingMixin(
|
|
|
86
86
|
_onResize(_contentRect) {
|
|
87
87
|
// To be implemented.
|
|
88
88
|
}
|
|
89
|
-
|
|
90
|
-
/**
|
|
91
|
-
* @deprecated Since Vaadin 23, `notifyResize()` is deprecated. The component uses a
|
|
92
|
-
* ResizeObserver internally and doesn't need to be explicitly notified of resizes.
|
|
93
|
-
*/
|
|
94
|
-
notifyResize() {
|
|
95
|
-
console.warn(
|
|
96
|
-
`WARNING: Since Vaadin 23, notifyResize() is deprecated. The component uses a ResizeObserver internally and doesn't need to be explicitly notified of resizes.`,
|
|
97
|
-
);
|
|
98
|
-
}
|
|
99
89
|
},
|
|
100
90
|
);
|