@zag-js/splitter 0.1.12 → 0.1.13

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/dist/index.js CHANGED
@@ -116,9 +116,7 @@ function getPointRelativeToNode(point, element) {
116
116
  }
117
117
  var rtlKeyMap = {
118
118
  ArrowLeft: "ArrowRight",
119
- ArrowRight: "ArrowLeft",
120
- Home: "End",
121
- End: "Home"
119
+ ArrowRight: "ArrowLeft"
122
120
  };
123
121
  var sameKeyMap = {
124
122
  Up: "ArrowUp",
package/dist/index.mjs CHANGED
@@ -89,9 +89,7 @@ function getPointRelativeToNode(point, element) {
89
89
  }
90
90
  var rtlKeyMap = {
91
91
  ArrowLeft: "ArrowRight",
92
- ArrowRight: "ArrowLeft",
93
- Home: "End",
94
- End: "Home"
92
+ ArrowRight: "ArrowLeft"
95
93
  };
96
94
  var sameKeyMap = {
97
95
  Up: "ArrowUp",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/splitter",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Core logic for the splitter widget implemented as a state machine",
5
5
  "keywords": [
6
6
  "js",
@@ -30,12 +30,12 @@
30
30
  "url": "https://github.com/chakra-ui/zag/issues"
31
31
  },
32
32
  "dependencies": {
33
- "@zag-js/core": "0.1.9",
34
- "@zag-js/types": "0.2.4"
33
+ "@zag-js/core": "0.1.10",
34
+ "@zag-js/types": "0.2.5"
35
35
  },
36
36
  "devDependencies": {
37
- "@zag-js/dom-utils": "0.1.10",
38
- "@zag-js/number-utils": "0.1.3"
37
+ "@zag-js/dom-utils": "0.1.11",
38
+ "@zag-js/number-utils": "0.1.4"
39
39
  },
40
40
  "scripts": {
41
41
  "build-fast": "tsup src/index.ts --format=esm,cjs",