@zag-js/tabs 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
@@ -103,9 +103,7 @@ function isFocusable(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/dist/index.mjs CHANGED
@@ -76,9 +76,7 @@ function isFocusable(element) {
76
76
  }
77
77
  var rtlKeyMap = {
78
78
  ArrowLeft: "ArrowRight",
79
- ArrowRight: "ArrowLeft",
80
- Home: "End",
81
- End: "Home"
79
+ ArrowRight: "ArrowLeft"
82
80
  };
83
81
  var sameKeyMap = {
84
82
  Up: "ArrowUp",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/tabs",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Core logic for the tabs widget implemented as a state machine",
5
5
  "keywords": [
6
6
  "js",
@@ -29,12 +29,12 @@
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/types": "0.2.4"
32
+ "@zag-js/core": "0.1.10",
33
+ "@zag-js/types": "0.2.5"
34
34
  },
35
35
  "devDependencies": {
36
- "@zag-js/dom-utils": "0.1.10",
37
- "@zag-js/utils": "0.1.3"
36
+ "@zag-js/dom-utils": "0.1.11",
37
+ "@zag-js/utils": "0.1.4"
38
38
  },
39
39
  "scripts": {
40
40
  "build-fast": "tsup src/index.ts --format=esm,cjs",