@vaadin/split-layout 23.1.2 → 23.1.3
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.1.
|
|
3
|
+
"version": "23.1.3",
|
|
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.1.
|
|
38
|
-
"@vaadin/vaadin-lumo-styles": "^23.1.
|
|
39
|
-
"@vaadin/vaadin-material-styles": "^23.1.
|
|
40
|
-
"@vaadin/vaadin-themable-mixin": "^23.1.
|
|
37
|
+
"@vaadin/component-base": "^23.1.3",
|
|
38
|
+
"@vaadin/vaadin-lumo-styles": "^23.1.3",
|
|
39
|
+
"@vaadin/vaadin-material-styles": "^23.1.3",
|
|
40
|
+
"@vaadin/vaadin-themable-mixin": "^23.1.3"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@esm-bundle/chai": "^4.3.4",
|
|
44
44
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
45
45
|
"sinon": "^13.0.2"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "3066c296ad0ef652bc49417005523398199f1bf2"
|
|
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?:
|
|
168
|
+
options?: AddEventListenerOptions | boolean,
|
|
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?:
|
|
174
|
+
options?: EventListenerOptions | boolean,
|
|
175
175
|
): void;
|
|
176
176
|
}
|
|
177
177
|
|