From 89850fa54eb6f4391c182a88da0b26be4402077f Mon Sep 17 00:00:00 2001 From: empathy/x Date: Thu, 30 May 2024 08:39:06 +0000 Subject: [PATCH 1/2] chore(release): publish - vue3-migration-test@1.0.0-alpha.19 - @empathyco/x-components@5.0.0-alpha.27 --- packages/_vue3-migration-test/CHANGELOG.md | 9 +++++++++ packages/_vue3-migration-test/package.json | 2 +- packages/x-components/CHANGELOG.md | 9 +++++++++ packages/x-components/package.json | 2 +- 4 files changed, 20 insertions(+), 2 deletions(-) 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/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", From 624fb459e71b3c0905e53ba70c1a3a15f581a0fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20CG?= Date: Thu, 30 May 2024 17:43:52 +0200 Subject: [PATCH 2/2] feat(result-images): migrate result images components to composition API (#1496) --- .../src/components/index.ts | 1 + .../result/test-base-result-images.vue | 21 +++++++++++++++++++ packages/_vue3-migration-test/src/router.ts | 8 ++++++- .../result/base-result-fallback-image.vue | 7 +------ .../result/base-result-placeholder-image.vue | 7 +------ 5 files changed, 31 insertions(+), 13 deletions(-) create mode 100644 packages/_vue3-migration-test/src/components/result/test-base-result-images.vue 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 5eb367255b..89dff78109 100644 --- a/packages/_vue3-migration-test/src/router.ts +++ b/packages/_vue3-migration-test/src/router.ts @@ -23,7 +23,8 @@ import { TestUseLayouts, TestSlidingPanel, TestBaseSuggestions, - TestHighlight + TestHighlight, + TestBaseResultImages } from './'; const routes = [ @@ -146,6 +147,11 @@ const routes = [ path: '/highlight', name: 'Highlight', component: TestHighlight + }, + { + path: '/base-result-images', + name: 'BaseResultImages', + component: TestBaseResultImages } ]; 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 @@ -