@vaadin/form-layout 24.0.0-alpha2 → 24.0.0-alpha3
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 +8 -8
- package/src/vaadin-form-layout.d.ts +0 -8
- package/src/vaadin-form-layout.js +0 -18
- 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/form-layout",
|
|
3
|
-
"version": "24.0.0-
|
|
3
|
+
"version": "24.0.0-alpha3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/component-base": "24.0.0-
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "24.0.0-
|
|
41
|
-
"@vaadin/vaadin-material-styles": "24.0.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "24.0.0-
|
|
39
|
+
"@vaadin/component-base": "24.0.0-alpha3",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha3",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "24.0.0-alpha3",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@esm-bundle/chai": "^4.3.4",
|
|
46
|
-
"@vaadin/custom-field": "24.0.0-
|
|
46
|
+
"@vaadin/custom-field": "24.0.0-alpha3",
|
|
47
47
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
48
|
-
"@vaadin/text-field": "24.0.0-
|
|
48
|
+
"@vaadin/text-field": "24.0.0-alpha3",
|
|
49
49
|
"sinon": "^13.0.2"
|
|
50
50
|
},
|
|
51
51
|
"web-types": [
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "7a013a3c5a56abd61dd4f7773c6ec77c3541bdf2"
|
|
56
56
|
}
|
|
@@ -145,14 +145,6 @@ declare class FormLayout extends ResizeMixin(ElementMixin(ThemableMixin(HTMLElem
|
|
|
145
145
|
*/
|
|
146
146
|
responsiveSteps: FormLayoutResponsiveStep[];
|
|
147
147
|
|
|
148
|
-
/**
|
|
149
|
-
* Set custom CSS property values and update the layout.
|
|
150
|
-
*
|
|
151
|
-
* @deprecated Since Vaadin 23, `updateStyles()` is deprecated.
|
|
152
|
-
* Use the native element.style.setProperty API to set custom CSS property values.
|
|
153
|
-
*/
|
|
154
|
-
updateStyles(properties?: { [key: string]: string }): void;
|
|
155
|
-
|
|
156
148
|
/**
|
|
157
149
|
* Update the layout.
|
|
158
150
|
*/
|
|
@@ -435,24 +435,6 @@ class FormLayout extends ResizeMixin(ElementMixin(ThemableMixin(PolymerElement))
|
|
|
435
435
|
this._updateLayout();
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
-
/**
|
|
439
|
-
* Set custom CSS property values and update the layout.
|
|
440
|
-
*
|
|
441
|
-
* @deprecated Since Vaadin 23, `updateStyles()` is deprecated.
|
|
442
|
-
* Use the native element.style.setProperty API to set custom CSS property values.
|
|
443
|
-
*/
|
|
444
|
-
updateStyles(properties = {}) {
|
|
445
|
-
console.warn(
|
|
446
|
-
`WARNING: Since Vaadin 23, updateStyles() is deprecated. Use the native element.style.setProperty API to set custom CSS property values.`,
|
|
447
|
-
);
|
|
448
|
-
|
|
449
|
-
Object.entries(properties).forEach(([key, value]) => {
|
|
450
|
-
this.style.setProperty(key, value);
|
|
451
|
-
});
|
|
452
|
-
|
|
453
|
-
this._updateLayout();
|
|
454
|
-
}
|
|
455
|
-
|
|
456
438
|
/**
|
|
457
439
|
* Update the layout.
|
|
458
440
|
* @protected
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED