@empathyco/x-components 5.0.0-alpha.72 → 5.0.0-alpha.74

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 (29) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/core/index.js +1 -1
  3. package/design-system/deprecated-full-theme.css +3138 -3138
  4. package/docs/API-reference/api/x-components.displayemitter.md +1 -3
  5. package/docs/API-reference/api/x-components.getactiveelement.md +26 -0
  6. package/docs/API-reference/api/x-components.md +1 -0
  7. package/docs/API-reference/components/common/x-components.display-emitter.md +0 -6
  8. package/js/components/display-emitter.vue.js +2 -10
  9. package/js/components/display-emitter.vue.js.map +1 -1
  10. package/js/components/display-emitter.vue2.js +26 -28
  11. package/js/components/display-emitter.vue2.js.map +1 -1
  12. package/js/index.js +1 -1
  13. package/js/services/directional-focus-navigation.service.js +6 -3
  14. package/js/services/directional-focus-navigation.service.js.map +1 -1
  15. package/js/utils/html.js +21 -1
  16. package/js/utils/html.js.map +1 -1
  17. package/js/x-modules/empathize/components/empathize.vue.js.map +1 -1
  18. package/js/x-modules/empathize/components/empathize.vue2.js +3 -1
  19. package/js/x-modules/empathize/components/empathize.vue2.js.map +1 -1
  20. package/js/x-modules/queries-preview/components/query-preview-button.vue2.js +1 -1
  21. package/package.json +2 -2
  22. package/report/x-components.api.json +64 -4
  23. package/report/x-components.api.md +5 -4
  24. package/types/components/display-emitter.vue.d.ts +7 -27
  25. package/types/components/display-emitter.vue.d.ts.map +1 -1
  26. package/types/services/directional-focus-navigation.service.d.ts.map +1 -1
  27. package/types/utils/html.d.ts +14 -0
  28. package/types/utils/html.d.ts.map +1 -1
  29. package/types/x-modules/empathize/components/empathize.vue.d.ts.map +1 -1
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.74](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.73...@empathyco/x-components@5.0.0-alpha.74) (2024-07-23)
7
+
8
+
9
+ ### Features
10
+
11
+ * **display-emitter:** support Vue3 to the component (#1555) ([21bcd52](https://github.com/empathyco/x/commit/21bcd5228bf2cc3e8f31d49fe55683788438e089))
12
+
13
+
14
+
15
+ ## [5.0.0-alpha.73](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.72...@empathyco/x-components@5.0.0-alpha.73) (2024-07-18)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * keyboard navigation within shadow dom (#1571) ([1784c4c](https://github.com/empathyco/x/commit/1784c4cb6f130947a2454f5adbabcaf4821f8ab2))
21
+
22
+
23
+
6
24
  ## [5.0.0-alpha.72](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.71...@empathyco/x-components@5.0.0-alpha.72) (2024-07-18)
7
25
 
8
26
 
package/core/index.js CHANGED
@@ -179,7 +179,7 @@ export { areFiltersDifferent, createRawFilters } from '../js/utils/filters.js';
179
179
  export { FOCUSABLE_SELECTORS } from '../js/utils/focus.js';
180
180
  export { noOp } from '../js/utils/function.js';
181
181
  export { getURLParameter } from '../js/utils/get-url-parameters.js';
182
- export { getTargetElement, isElementEqualOrContained } from '../js/utils/html.js';
182
+ export { getActiveElement, getTargetElement, isElementEqualOrContained } from '../js/utils/html.js';
183
183
  export { SPLIT_WORDS_REGEX, isNewQuery } from '../js/utils/is-new-query.js';
184
184
  export { normalizeString } from '../js/utils/normalize.js';
185
185
  export { isInRange } from '../js/utils/number.js';