-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/EMP-4205-migrate-spellcheck-and-spel…
- Loading branch information
Showing
48 changed files
with
1,170 additions
and
793 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,42 @@ | |
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.27](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.27) (2024-06-12) | ||
|
||
|
||
### Features | ||
|
||
* migrate RTs module to composition API (#1498) ([22c5325](https://github.com/empathyco/x/commit/22c5325666441121e8ee64bfaa4c51ddad11939a)) | ||
|
||
|
||
|
||
## [1.0.0-alpha.26](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.26) (2024-06-12) | ||
|
||
|
||
### Features | ||
|
||
* migrate `query suggestions` module to composition api (#1497) ([4a9c742](https://github.com/empathyco/x/commit/4a9c742007476367328be6c978d16ec16ae115c1)) | ||
|
||
|
||
|
||
## [1.0.0-alpha.25](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.25) (2024-06-12) | ||
|
||
|
||
### Features | ||
|
||
* migrate history queries x module to composition api (#1494) ([cd51e9b](https://github.com/empathyco/x/commit/cd51e9bb2afb77bbb8f935445bfda360dcfaafde)) | ||
|
||
|
||
|
||
## [1.0.0-alpha.24](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.24) (2024-06-05) | ||
|
||
|
||
### Features | ||
|
||
* migrate PartialQueryButton and PartialResultsList (#1501) ([5e87123](https://github.com/empathyco/x/commit/5e87123d4a6c1edeb05f83c31ee8f096b5558e0f)) | ||
|
||
|
||
|
||
## [1.0.0-alpha.23](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.23) (2024-06-04) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
packages/_vue3-migration-test/src/x-modules/history-queries/components/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export { default as TestHistoryQueries } from './test-history-queries.vue'; | ||
export { default as TestMyHistory } from './test-my-history.vue'; |
16 changes: 16 additions & 0 deletions
16
...es/_vue3-migration-test/src/x-modules/history-queries/components/test-history-queries.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<template> | ||
<SearchInput :maxLength="10" /> | ||
<ClearSearchInput /> | ||
|
||
<HistoryQueries :maxItemsToRender="5" /> | ||
<ClearHistoryQueries class="x-button--ghost x-button--ghost-start"> | ||
<span>Clear previous searches</span> | ||
</ClearHistoryQueries> | ||
</template> | ||
|
||
<script setup> | ||
import HistoryQueries from '../../../../../x-components/src/x-modules/history-queries/components/history-queries.vue'; | ||
import ClearHistoryQueries from '../../../../../x-components/src/x-modules/history-queries/components/clear-history-queries.vue'; | ||
import ClearSearchInput from '../../../../../x-components/src/x-modules/search-box/components/clear-search-input.vue'; | ||
import SearchInput from '../../../../../x-components/src/x-modules/search-box/components/search-input.vue'; | ||
</script> |
33 changes: 33 additions & 0 deletions
33
packages/_vue3-migration-test/src/x-modules/history-queries/components/test-my-history.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<template> | ||
<MyHistory v-if="_$x.isHistoryQueriesEnabled && _$x.fullHistoryQueries.length"> | ||
<template #date="{ date }"> | ||
<div>{{ date }}</div> | ||
</template> | ||
|
||
<template #suggestion="{ suggestion, formatTime }"> | ||
<HistoryQuery data-test="my-history-query" :suggestion="suggestion"> | ||
<div class="flex flex-row gap-8"> | ||
<p>{{ suggestion.query }}</p> | ||
|
||
<p> | ||
{{ formatTime(suggestion.timestamp) }} | ||
</p> | ||
</div> | ||
|
||
<template #remove-button-content> | ||
<span>x</span> | ||
</template> | ||
</HistoryQuery> | ||
</template> | ||
</MyHistory> | ||
</template> | ||
|
||
<script setup> | ||
import HistoryQuery from '../../../../../x-components/src/x-modules/history-queries/components/history-query.vue'; | ||
import MyHistory from '../../../../../x-components/src/x-modules/history-queries/components/my-history.vue'; | ||
import { use$x } from '../../../../../x-components/src/composables/use-$x'; | ||
const _$x = use$x(); | ||
</script> | ||
|
||
<style scoped></style> |
1 change: 1 addition & 0 deletions
1
packages/_vue3-migration-test/src/x-modules/history-queries/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './components'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
packages/_vue3-migration-test/src/x-modules/query-suggestions/components/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as TestQuerySuggestions } from './test-query-suggestions.vue'; |
9 changes: 9 additions & 0 deletions
9
...vue3-migration-test/src/x-modules/query-suggestions/components/test-query-suggestions.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<template> | ||
<SearchInput /> | ||
<QuerySuggestions /> | ||
</template> | ||
|
||
<script setup> | ||
import SearchInput from '../../../../../x-components/src/x-modules/search-box/components/search-input.vue'; | ||
import QuerySuggestions from '../../../../../x-components/src/x-modules/query-suggestions/components/query-suggestions.vue'; | ||
</script> |
1 change: 1 addition & 0 deletions
1
packages/_vue3-migration-test/src/x-modules/query-suggestions/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export * from './components'; |
1 change: 1 addition & 0 deletions
1
packages/_vue3-migration-test/src/x-modules/related-tags/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as TestRelatedTags } from './test-related-tags.vue'; |
17 changes: 17 additions & 0 deletions
17
packages/_vue3-migration-test/src/x-modules/related-tags/test-related-tags.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<template> | ||
<span style="display: block"> | ||
Query: | ||
<b>{{ query }}</b> | ||
</span> | ||
<SearchInput /> | ||
<RelatedTags /> | ||
</template> | ||
|
||
<script setup> | ||
import SearchInput from '../../../../x-components/src/x-modules/search-box/components/search-input.vue'; | ||
import RelatedTags from '../../../../x-components/src/x-modules/related-tags/components/related-tags.vue'; | ||
import { useGetter } from '../../../../x-components/src/composables/use-getter'; | ||
const { query } = useGetter('relatedTags', ['query']); | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.