diff --git a/packages/_vue3-migration-test/CHANGELOG.md b/packages/_vue3-migration-test/CHANGELOG.md
index 756be650ba..59ba1099e6 100644
--- a/packages/_vue3-migration-test/CHANGELOG.md
+++ b/packages/_vue3-migration-test/CHANGELOG.md
@@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.0.0-alpha.19](https://github.com/empathyco/x/compare/vue3-migration-test@1.0.0-alpha.18...vue3-migration-test@1.0.0-alpha.19) (2024-05-30)
+
+
+### Features
+
+* **highlight:** migrate highlight component to composition API (#1486) ([10dd541](https://github.com/empathyco/x/commit/10dd5417f861d6e1152483abbd510059d2917f48))
+
+
+
## [1.0.0-alpha.18](https://github.com/empathyco/x/compare/vue3-migration-test@1.0.0-alpha.17...vue3-migration-test@1.0.0-alpha.18) (2024-05-29)
diff --git a/packages/_vue3-migration-test/package.json b/packages/_vue3-migration-test/package.json
index f63247de4d..a81bcc1a43 100644
--- a/packages/_vue3-migration-test/package.json
+++ b/packages/_vue3-migration-test/package.json
@@ -1,7 +1,7 @@
{
"name": "vue3-migration-test",
"private": "true",
- "version": "1.0.0-alpha.18",
+ "version": "1.0.0-alpha.19",
"scripts": {
"dev": "vite",
"preview": "vite preview",
diff --git a/packages/_vue3-migration-test/src/components/index.ts b/packages/_vue3-migration-test/src/components/index.ts
index 66785550b3..758ade872c 100644
--- a/packages/_vue3-migration-test/src/components/index.ts
+++ b/packages/_vue3-migration-test/src/components/index.ts
@@ -8,4 +8,5 @@ export { default as TestBaseVariableColumnGrid } from './test-base-variable-colu
export { default as TestSlidingPanel } from './test-sliding-panel.vue';
export { default as TestUseLayouts } from './test-use-layouts.vue';
export { default as TestBaseSuggestions } from './suggestions/test-base-suggestions.vue';
+export { default as TestHighlight } from './test-highlight.vue';
export { default as TestBasePanel } from './panels/test-base-panel.vue';
diff --git a/packages/_vue3-migration-test/src/components/test-highlight.vue b/packages/_vue3-migration-test/src/components/test-highlight.vue
new file mode 100644
index 0000000000..f535528659
--- /dev/null
+++ b/packages/_vue3-migration-test/src/components/test-highlight.vue
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
diff --git a/packages/_vue3-migration-test/src/router.ts b/packages/_vue3-migration-test/src/router.ts
index ac47753eac..4601d4d456 100644
--- a/packages/_vue3-migration-test/src/router.ts
+++ b/packages/_vue3-migration-test/src/router.ts
@@ -23,6 +23,7 @@ import {
TestUseLayouts,
TestSlidingPanel,
TestBaseSuggestions,
+ TestHighlight,
TestBasePanel
} from './';
@@ -142,6 +143,11 @@ const routes = [
name: 'BaseSuggestions',
component: TestBaseSuggestions
},
+ {
+ path: '/highlight',
+ name: 'Highlight',
+ component: TestHighlight
+ },
{
path: '/test-base-panel',
name: 'TestBasePanel',
diff --git a/packages/x-components/CHANGELOG.md b/packages/x-components/CHANGELOG.md
index e761e3137c..ee6796d7d3 100644
--- a/packages/x-components/CHANGELOG.md
+++ b/packages/x-components/CHANGELOG.md
@@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [5.0.0-alpha.27](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.26...@empathyco/x-components@5.0.0-alpha.27) (2024-05-30)
+
+
+### Features
+
+* **highlight:** migrate highlight component to composition API (#1486) ([10dd541](https://github.com/empathyco/x/commit/10dd5417f861d6e1152483abbd510059d2917f48))
+
+
+
+## [5.0.0-alpha.26](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.25...@empathyco/x-components@5.0.0-alpha.26) (2024-05-30)
+
+
+### Bug Fixes
+
+* **animation:** fix Expected Object, got Function on animations props (#1489) ([4467edc](https://github.com/empathyco/x/commit/4467edcb08c8d4f59044209d0f9a800745f6d6af))
+
+
+
## [5.0.0-alpha.25](https://github.com/empathyco/x/compare/@empathyco/x-components@5.0.0-alpha.24...@empathyco/x-components@5.0.0-alpha.25) (2024-05-29)
diff --git a/packages/x-components/package.json b/packages/x-components/package.json
index 10cc25d8a1..aa609b98c7 100644
--- a/packages/x-components/package.json
+++ b/packages/x-components/package.json
@@ -1,6 +1,6 @@
{
"name": "@empathyco/x-components",
- "version": "5.0.0-alpha.25",
+ "version": "5.0.0-alpha.27",
"description": "Empathy X Components",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
diff --git a/packages/x-components/src/components/base-dropdown.vue b/packages/x-components/src/components/base-dropdown.vue
index 0d233a8465..b40341033d 100644
--- a/packages/x-components/src/components/base-dropdown.vue
+++ b/packages/x-components/src/components/base-dropdown.vue
@@ -78,15 +78,8 @@