@zag-js/slider 0.1.13 → 0.1.14

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
@@ -131,9 +131,7 @@ function getPointRelativeToNode(point, element) {
131
131
  }
132
132
  var rtlKeyMap = {
133
133
  ArrowLeft: "ArrowRight",
134
- ArrowRight: "ArrowLeft",
135
- Home: "End",
136
- End: "Home"
134
+ ArrowRight: "ArrowLeft"
137
135
  };
138
136
  var sameKeyMap = {
139
137
  Up: "ArrowUp",
package/dist/index.mjs CHANGED
@@ -103,9 +103,7 @@ function getPointRelativeToNode(point, element) {
103
103
  }
104
104
  var rtlKeyMap = {
105
105
  ArrowLeft: "ArrowRight",
106
- ArrowRight: "ArrowLeft",
107
- Home: "End",
108
- End: "Home"
106
+ ArrowRight: "ArrowLeft"
109
107
  };
110
108
  var sameKeyMap = {
111
109
  Up: "ArrowUp",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/slider",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Core logic for the slider widget implemented as a state machine",
5
5
  "keywords": [
6
6
  "js",
@@ -29,14 +29,14 @@
29
29
  "url": "https://github.com/chakra-ui/zag/issues"
30
30
  },
31
31
  "dependencies": {
32
- "@zag-js/core": "0.1.9",
33
- "@zag-js/element-size": "0.2.0",
34
- "@zag-js/types": "0.2.4"
32
+ "@zag-js/core": "0.1.10",
33
+ "@zag-js/element-size": "0.2.1",
34
+ "@zag-js/types": "0.2.5"
35
35
  },
36
36
  "devDependencies": {
37
- "@zag-js/dom-utils": "0.1.10",
38
- "@zag-js/form-utils": "0.1.0",
39
- "@zag-js/number-utils": "0.1.3"
37
+ "@zag-js/dom-utils": "0.1.11",
38
+ "@zag-js/form-utils": "0.1.1",
39
+ "@zag-js/number-utils": "0.1.4"
40
40
  },
41
41
  "scripts": {
42
42
  "build-fast": "tsup src/index.ts --format=esm,cjs",