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 121234efea..5ee75b14a3 100644 --- a/packages/_vue3-migration-test/src/components/index.ts +++ b/packages/_vue3-migration-test/src/components/index.ts @@ -9,3 +9,4 @@ 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 TestBaseResultImages } from './result/test-base-result-images.vue'; diff --git a/packages/_vue3-migration-test/src/components/result/test-base-result-images.vue b/packages/_vue3-migration-test/src/components/result/test-base-result-images.vue new file mode 100644 index 0000000000..c94f4eef55 --- /dev/null +++ b/packages/_vue3-migration-test/src/components/result/test-base-result-images.vue @@ -0,0 +1,21 @@ + + + + + diff --git a/packages/_vue3-migration-test/src/router.ts b/packages/_vue3-migration-test/src/router.ts index e078be06f9..7d891e22bf 100644 --- a/packages/_vue3-migration-test/src/router.ts +++ b/packages/_vue3-migration-test/src/router.ts @@ -24,6 +24,7 @@ import { TestSlidingPanel, TestBaseSuggestions, TestHighlight, + TestBaseResultImages, TestQuerySuggestions } from './'; @@ -148,6 +149,11 @@ const routes = [ name: 'Highlight', component: TestHighlight }, + { + path: '/base-result-images', + name: 'BaseResultImages', + component: TestBaseResultImages + }, { path: '/query-suggestions', name: 'QuerySuggestions', diff --git a/packages/x-components/CHANGELOG.md b/packages/x-components/CHANGELOG.md index 3609be320d..ee6796d7d3 100644 --- a/packages/x-components/CHANGELOG.md +++ b/packages/x-components/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. +## [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) diff --git a/packages/x-components/package.json b/packages/x-components/package.json index 2d5cc45bf9..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.26", + "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/result/base-result-fallback-image.vue b/packages/x-components/src/components/result/base-result-fallback-image.vue index 9b50cd8dc7..7ecb0971fa 100644 --- a/packages/x-components/src/components/result/base-result-fallback-image.vue +++ b/packages/x-components/src/components/result/base-result-fallback-image.vue @@ -1,6 +1,5 @@ -