@empathyco/x-components 5.0.0-alpha.42 → 5.0.0-alpha.44

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 (47) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/design-system/deprecated-full-theme.css +253 -254
  3. package/docs/API-reference/api/x-components.md +4 -4
  4. package/docs/API-reference/api/x-components.semanticqueries.md +6 -16
  5. package/docs/API-reference/api/x-components.semanticquery.md +17 -11
  6. package/docs/API-reference/api/x-components.spellcheck.md +5 -11
  7. package/docs/API-reference/api/x-components.spellcheckbutton.md +6 -16
  8. package/docs/API-reference/components/semantic-queries/x-components.semantic-query.md +3 -3
  9. package/js/x-modules/search/components/spellcheck-button.vue.js +1 -0
  10. package/js/x-modules/search/components/spellcheck-button.vue.js.map +1 -1
  11. package/js/x-modules/search/components/spellcheck-button.vue2.js +38 -34
  12. package/js/x-modules/search/components/spellcheck-button.vue2.js.map +1 -1
  13. package/js/x-modules/search/components/spellcheck.vue.js.map +1 -1
  14. package/js/x-modules/search/components/spellcheck.vue2.js +18 -168
  15. package/js/x-modules/search/components/spellcheck.vue2.js.map +1 -1
  16. package/js/x-modules/search/x-module.js +3 -1
  17. package/js/x-modules/search/x-module.js.map +1 -1
  18. package/js/x-modules/semantic-queries/components/semantic-queries.vue.js.map +1 -1
  19. package/js/x-modules/semantic-queries/components/semantic-queries.vue2.js +26 -183
  20. package/js/x-modules/semantic-queries/components/semantic-queries.vue2.js.map +1 -1
  21. package/js/x-modules/semantic-queries/components/semantic-query.vue.js +21 -29
  22. package/js/x-modules/semantic-queries/components/semantic-query.vue.js.map +1 -1
  23. package/js/x-modules/semantic-queries/components/semantic-query.vue2.js +24 -177
  24. package/js/x-modules/semantic-queries/components/semantic-query.vue2.js.map +1 -1
  25. package/js/x-modules/semantic-queries/x-module.js +3 -1
  26. package/js/x-modules/semantic-queries/x-module.js.map +1 -1
  27. package/package.json +2 -2
  28. package/report/x-components.api.json +339 -330
  29. package/report/x-components.api.md +31 -23
  30. package/types/x-modules/search/components/spellcheck-button.vue.d.ts +6 -23
  31. package/types/x-modules/search/components/spellcheck-button.vue.d.ts.map +1 -1
  32. package/types/x-modules/search/components/spellcheck.vue.d.ts +5 -15
  33. package/types/x-modules/search/components/spellcheck.vue.d.ts.map +1 -1
  34. package/types/x-modules/search/x-module.d.ts.map +1 -1
  35. package/types/x-modules/semantic-queries/components/semantic-queries.vue.d.ts +7 -22
  36. package/types/x-modules/semantic-queries/components/semantic-queries.vue.d.ts.map +1 -1
  37. package/types/x-modules/semantic-queries/components/semantic-query.vue.d.ts +21 -20
  38. package/types/x-modules/semantic-queries/components/semantic-query.vue.d.ts.map +1 -1
  39. package/types/x-modules/semantic-queries/x-module.d.ts.map +1 -1
  40. package/docs/API-reference/api/x-components.semanticqueries.findsemanticquery.md +0 -26
  41. package/docs/API-reference/api/x-components.semanticqueries.suggestions.md +0 -13
  42. package/docs/API-reference/api/x-components.semanticquery.query.md +0 -13
  43. package/docs/API-reference/api/x-components.semanticquery.suggestion.md +0 -13
  44. package/docs/API-reference/api/x-components.spellcheck.query.md +0 -13
  45. package/docs/API-reference/api/x-components.spellcheck.spellcheckedquery.md +0 -13
  46. package/docs/API-reference/api/x-components.spellcheckbutton.emitevents.md +0 -17
  47. package/docs/API-reference/api/x-components.spellcheckbutton.spellcheckedquery.md +0 -13
package/CHANGELOG.md CHANGED
@@ -3,6 +3,24 @@
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
+ ## [5.0.0-alpha.44](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.43...@empathyco/x-components@5.0.0-alpha.44) (2024-06-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * migrate `Spellcheck` and `SpellcheckButton` components to composition api (#1518) ([0e848a7](https://github.com/empathyco/x/commit/0e848a70d69a780b4a053d5bc78b432178f21327))
12
+
13
+
14
+
15
+ ## [5.0.0-alpha.43](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.42...@empathyco/x-components@5.0.0-alpha.43) (2024-06-13)
16
+
17
+
18
+ ### Features
19
+
20
+ * migrate semantics queries module to composition api (#1508) ([72914a2](https://github.com/empathyco/x/commit/72914a25195e2e546da343d32c6a4544b38bdd91))
21
+
22
+
23
+
6
24
  ## [5.0.0-alpha.42](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.41...@empathyco/x-components@5.0.0-alpha.42) (2024-06-12)
7
25
 
8
26