@zag-js/slider 1.26.4 → 1.27.0

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
@@ -681,17 +681,17 @@ var machine = core.createMachine({
681
681
  SET_VALUE: [
682
682
  {
683
683
  guard: "hasIndex",
684
- actions: ["setValueAtIndex"]
684
+ actions: ["setValueAtIndex", "invokeOnChangeEnd"]
685
685
  },
686
686
  {
687
- actions: ["setValue"]
687
+ actions: ["setValue", "invokeOnChangeEnd"]
688
688
  }
689
689
  ],
690
690
  INCREMENT: {
691
- actions: ["incrementThumbAtIndex"]
691
+ actions: ["incrementThumbAtIndex", "invokeOnChangeEnd"]
692
692
  },
693
693
  DECREMENT: {
694
- actions: ["decrementThumbAtIndex"]
694
+ actions: ["decrementThumbAtIndex", "invokeOnChangeEnd"]
695
695
  }
696
696
  },
697
697
  states: {
package/dist/index.mjs CHANGED
@@ -679,17 +679,17 @@ var machine = createMachine({
679
679
  SET_VALUE: [
680
680
  {
681
681
  guard: "hasIndex",
682
- actions: ["setValueAtIndex"]
682
+ actions: ["setValueAtIndex", "invokeOnChangeEnd"]
683
683
  },
684
684
  {
685
- actions: ["setValue"]
685
+ actions: ["setValue", "invokeOnChangeEnd"]
686
686
  }
687
687
  ],
688
688
  INCREMENT: {
689
- actions: ["incrementThumbAtIndex"]
689
+ actions: ["incrementThumbAtIndex", "invokeOnChangeEnd"]
690
690
  },
691
691
  DECREMENT: {
692
- actions: ["decrementThumbAtIndex"]
692
+ actions: ["decrementThumbAtIndex", "invokeOnChangeEnd"]
693
693
  }
694
694
  },
695
695
  states: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zag-js/slider",
3
- "version": "1.26.4",
3
+ "version": "1.27.0",
4
4
  "description": "Core logic for the slider widget implemented as a state machine",
5
5
  "keywords": [
6
6
  "js",
@@ -27,11 +27,11 @@
27
27
  "url": "https://github.com/chakra-ui/zag/issues"
28
28
  },
29
29
  "dependencies": {
30
- "@zag-js/anatomy": "1.26.4",
31
- "@zag-js/core": "1.26.4",
32
- "@zag-js/dom-query": "1.26.4",
33
- "@zag-js/utils": "1.26.4",
34
- "@zag-js/types": "1.26.4"
30
+ "@zag-js/anatomy": "1.27.0",
31
+ "@zag-js/core": "1.27.0",
32
+ "@zag-js/dom-query": "1.27.0",
33
+ "@zag-js/utils": "1.27.0",
34
+ "@zag-js/types": "1.27.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "clean-package": "2.2.0"