@empathyco/x-components 6.0.0-alpha.1 → 6.0.0-alpha.2

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/design-system/deprecated-full-theme.css +419 -419
  3. package/docs/API-reference/api/x-components.baseswitch.md +1 -2
  4. package/docs/API-reference/components/common/x-components.base-switch.md +1 -2
  5. package/js/components/base-switch.vue.js.map +1 -1
  6. package/js/components/base-switch.vue2.js +2 -3
  7. package/js/components/base-switch.vue2.js.map +1 -1
  8. package/js/x-modules/facets/components/filters/hierarchical-filter.vue.js +3 -3
  9. package/js/x-modules/facets/components/filters/hierarchical-filter.vue.js.map +1 -1
  10. package/js/x-modules/facets/components/filters/hierarchical-filter.vue2.js.map +1 -1
  11. package/js/x-modules/facets/components/filters/number-range-filter.vue.js +5 -5
  12. package/js/x-modules/facets/components/filters/number-range-filter.vue.js.map +1 -1
  13. package/js/x-modules/facets/components/filters/number-range-filter.vue2.js +1 -0
  14. package/js/x-modules/facets/components/filters/number-range-filter.vue2.js.map +1 -1
  15. package/js/x-modules/facets/components/filters/simple-filter.vue.js +5 -5
  16. package/js/x-modules/facets/components/filters/simple-filter.vue.js.map +1 -1
  17. package/js/x-modules/facets/components/filters/simple-filter.vue2.js +1 -0
  18. package/js/x-modules/facets/components/filters/simple-filter.vue2.js.map +1 -1
  19. package/js/x-modules/facets/composables/use-facets.js +3 -1
  20. package/js/x-modules/facets/composables/use-facets.js.map +1 -1
  21. package/js/x-modules/history-queries/components/history-queries-switch.vue.js +3 -3
  22. package/js/x-modules/history-queries/components/history-queries-switch.vue.js.map +1 -1
  23. package/js/x-modules/history-queries/components/history-queries-switch.vue2.js.map +1 -1
  24. package/js/x-modules/next-queries/components/next-queries-list.vue.js +5 -4
  25. package/js/x-modules/next-queries/components/next-queries-list.vue.js.map +1 -1
  26. package/js/x-modules/search/components/banners-list.vue.js +2 -1
  27. package/js/x-modules/search/components/banners-list.vue.js.map +1 -1
  28. package/js/x-modules/search/components/promoteds-list.vue.js +2 -1
  29. package/js/x-modules/search/components/promoteds-list.vue.js.map +1 -1
  30. package/js/x-modules/search/components/results-list.vue.js +2 -1
  31. package/js/x-modules/search/components/results-list.vue.js.map +1 -1
  32. package/package.json +3 -3
  33. package/report/x-components.api.json +2 -2
  34. package/report/x-components.api.md +1 -2
  35. package/types/components/base-switch.vue.d.ts +1 -2
  36. package/types/components/base-switch.vue.d.ts.map +1 -1
  37. package/types/x-modules/facets/components/filters/number-range-filter.vue.d.ts.map +1 -1
  38. package/types/x-modules/facets/components/filters/simple-filter.vue.d.ts.map +1 -1
  39. package/types/x-modules/facets/composables/use-facets.d.ts.map +1 -1
  40. package/types/x-modules/next-queries/components/next-queries-list.vue.d.ts.map +1 -1
  41. package/types/x-modules/search/components/banners-list.vue.d.ts.map +1 -1
  42. package/types/x-modules/search/components/promoteds-list.vue.d.ts.map +1 -1
  43. package/types/x-modules/search/components/results-list.vue.d.ts.map +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,27 @@
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.2](https://github.com/empathyco/x/compare/@empathyco/x-components@6.0.0-alpha.1...@empathyco/x-components@6.0.0-alpha.2) (2024-09-25)
7
+
8
+
9
+ ### ⚠ BREAKING CHANGES
10
+
11
+ * **history-queries-switch:** remove `change` event emission in favour of `update:modelValue` in `BaseSwitch` component.
12
+
13
+ ### Bug Fixes
14
+
15
+ * **history-queries-switch:** migrate value to modelValue (#1618) ([82a6e27](https://github.com/empathyco/x/commit/82a6e27b9a78388b6c0b42c57ce7ff6e63293686))
16
+
17
+
18
+ ### Testing
19
+
20
+ * active and fix linter for tests (#1616) ([0f35e7c](https://github.com/empathyco/x/commit/0f35e7caf529e7a06252abe0ea64b119c1206566))
21
+ * adjust test to vue3 (#1608) ([0f4bb97](https://github.com/empathyco/x/commit/0f4bb97dcba50b21c98575d51bda944bfe532b1f))
22
+ * **e2e-components:** rewrite all e2e sheet components to accomplish vue3 (#1619) ([5a419b2](https://github.com/empathyco/x/commit/5a419b2d882c151f81d9921d591140e5471f5b05))
23
+ * **e2e:** fix e2e tests (#1617) ([f81add6](https://github.com/empathyco/x/commit/f81add665e5b2f36ecedf25d14eb5f6573f0e0fb))
24
+
25
+
26
+
6
27
  ## [6.0.0-alpha.1](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.81...@empathyco/x-components@6.0.0-alpha.1) (2024-09-05)
7
28
 
8
29