@empathyco/x-components 6.0.0-alpha.25 → 6.0.0-alpha.26

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/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.0-alpha.26](https://github.com/empathyco/x/compare/@empathyco/x-components@6.0.0-alpha.25...@empathyco/x-components@6.0.0-alpha.26) (2025-01-07)
7
+
8
+
9
+ ### Code Refactoring
10
+
11
+ * **store:** deprecate useStore in favor of vuex's useStore ([de4fecf](https://github.com/empathyco/x/commit/de4fecfa6dcfd9f0d408d34a60d4bdd00dffce99))
12
+
13
+
14
+
6
15
  ## [6.0.0-alpha.25](https://github.com/empathyco/x/compare/@empathyco/x-components@6.0.0-alpha.24...@empathyco/x-components@6.0.0-alpha.25) (2025-01-06)
7
16
 
8
17
 
package/core/index.js CHANGED
@@ -148,7 +148,7 @@ export { useDebounce } from '../js/composables/use-debounce.js';
148
148
  export { useGetter } from '../js/composables/use-getter.js';
149
149
  export { useEmitDisplayEvent, useOnDisplay } from '../js/composables/use-on-display.js';
150
150
  export { useState } from '../js/composables/use-state.js';
151
- export { useStore } from '../js/composables/use-store.js';
151
+ export { useStore } from 'vuex';
152
152
  export { useXBus } from '../js/composables/use-x-bus.js';
153
153
  export { infiniteScroll } from '../js/directives/infinite-scroll.js';
154
154
  export { setupDevtools } from '../js/plugins/devtools/devtools.plugin.js';