@vaadin/split-layout 24.0.0-alpha2 → 24.0.0-alpha4

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": "24.0.0-alpha2",
3
+ "version": "24.0.0-alpha4",
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": "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"
39
+ "@vaadin/component-base": "24.0.0-alpha4",
40
+ "@vaadin/vaadin-lumo-styles": "24.0.0-alpha4",
41
+ "@vaadin/vaadin-material-styles": "24.0.0-alpha4",
42
+ "@vaadin/vaadin-themable-mixin": "24.0.0-alpha4"
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": "0c16c01a6807e629a84f5a982793afecc1a7ced0"
53
+ "gitHead": "66be46e82c4d0a673859fbc9bdb1581dd89f360c"
54
54
  }
@@ -319,7 +319,7 @@ class SplitLayout extends ElementMixin(ThemableMixin(PolymerElement)) {
319
319
  }
320
320
 
321
321
  const distance = this.orientation === 'vertical' ? event.detail.dy : event.detail.dx;
322
- const isRtl = this.orientation !== 'vertical' && this.getAttribute('dir') === 'rtl';
322
+ const isRtl = this.orientation !== 'vertical' && this.__isRTL;
323
323
  const dirDistance = isRtl ? -distance : distance;
324
324
 
325
325
  this._setFlexBasis(this._primaryChild, this._startSize.primary + dirDistance, this._startSize.container);
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/split-layout",
4
- "version": "24.0.0-alpha2",
4
+ "version": "24.0.0-alpha4",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/split-layout",
4
- "version": "24.0.0-alpha2",
4
+ "version": "24.0.0-alpha4",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {