-
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 feat/EMP-4163-migrate-query-suggestions-modu…
…le-to-composition-api # Conflicts: # packages/_vue3-migration-test/src/router.ts
- Loading branch information
Showing
15 changed files
with
539 additions
and
357 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,25 @@ | |
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.21](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.21) (2024-05-31) | ||
|
||
|
||
### Features | ||
|
||
* **keyboard-navigation:** migrate keyboard-navigation component to composition API (#1493) ([4cf31c9](https://github.com/empathyco/x/commit/4cf31c9df4b751514deaaef4c9abfe4ee5ddfc40)) | ||
|
||
|
||
|
||
## [1.0.0-alpha.20](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.20) (2024-05-31) | ||
|
||
|
||
### Features | ||
|
||
* **panels:** migrate `base-panels` components to composition api (#1491) ([077ad4d](https://github.com/empathyco/x/commit/077ad4d1bcc1dcf0ae2e16a02f1ac073481a1892)) | ||
* **result-images:** migrate result images components to composition API (#1496) ([624fb45](https://github.com/empathyco/x/commit/624fb459e71b3c0905e53ba70c1a3a15f581a0fc)) | ||
|
||
|
||
|
||
## [1.0.0-alpha.19](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.19) (2024-05-30) | ||
|
||
|
||
|
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
43 changes: 43 additions & 0 deletions
43
packages/_vue3-migration-test/src/components/panels/test-base-panel.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,43 @@ | ||
<template> | ||
<div> | ||
<h2>Base header toggle panel</h2> | ||
<BaseHeaderTogglePanel :start-collapsed="false"> | ||
<template #header-content="{ open }"> | ||
<p>Header, open: {{ open ? 'close' : 'open' }}</p> | ||
</template> | ||
<template> | ||
<p>Default content</p> | ||
</template> | ||
</BaseHeaderTogglePanel> | ||
|
||
<h2>Base id toggle panel, Base id toggle panel button and Base Toggle panel</h2> | ||
<BaseIdTogglePanelButton panelId="myToggle">Toggle Aside</BaseIdTogglePanelButton> | ||
<BaseIdTogglePanel :startOpen="true" panelId="myToggle"> | ||
<div>My toggle</div> | ||
</BaseIdTogglePanel> | ||
|
||
<h2>Base tabs panel component</h2> | ||
<BaseTabsPanel initial-tab="fall"> | ||
<template #summer> | ||
<div>Summer Top Sales</div> | ||
</template> | ||
|
||
<template #fall> | ||
<div>Fall Top Sales</div> | ||
</template> | ||
|
||
<template #outlet> | ||
<div>Outlet Top Sales</div> | ||
</template> | ||
</BaseTabsPanel> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
import BaseHeaderTogglePanel from '../../../../x-components/src/components/panels/base-header-toggle-panel.vue'; | ||
import BaseIdTogglePanelButton from '../../../../x-components/src/components/panels/base-id-toggle-panel-button.vue'; | ||
import BaseIdTogglePanel from '../../../../x-components/src/components/panels/base-id-toggle-panel.vue'; | ||
import BaseTabsPanel from '../../../../x-components/src/components/panels/base-tabs-panel.vue'; | ||
</script> | ||
|
||
<style scoped></style> |
27 changes: 27 additions & 0 deletions
27
packages/_vue3-migration-test/src/components/test-base-keyboard-navigation.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,27 @@ | ||
<template> | ||
<SearchInput /> | ||
<BaseKeyboardNavigation> | ||
<ul> | ||
<li> | ||
<button>First</button> | ||
</li> | ||
<li> | ||
<button>Second</button> | ||
</li> | ||
<li> | ||
<button>Third</button> | ||
</li> | ||
</ul> | ||
</BaseKeyboardNavigation> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import BaseKeyboardNavigation from '../../../x-components/src/components/base-keyboard-navigation.vue'; | ||
import SearchInput from '../../../x-components/src/x-modules/search-box/components/search-input.vue'; | ||
</script> | ||
|
||
<style> | ||
button:focus-visible { | ||
border: 3px solid red; | ||
} | ||
</style> |
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,25 @@ | |
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.29](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-31) | ||
|
||
|
||
### Features | ||
|
||
* **keyboard-navigation:** migrate keyboard-navigation component to composition API (#1493) ([4cf31c9](https://github.com/empathyco/x/commit/4cf31c9df4b751514deaaef4c9abfe4ee5ddfc40)) | ||
|
||
|
||
|
||
## [5.0.0-alpha.28](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-31) | ||
|
||
|
||
### Features | ||
|
||
* **panels:** migrate `base-panels` components to composition api (#1491) ([077ad4d](https://github.com/empathyco/x/commit/077ad4d1bcc1dcf0ae2e16a02f1ac073481a1892)) | ||
* **result-images:** migrate result images components to composition API (#1496) ([624fb45](https://github.com/empathyco/x/commit/624fb459e71b3c0905e53ba70c1a3a15f581a0fc)) | ||
|
||
|
||
|
||
## [5.0.0-alpha.27](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-30) | ||
|
||
|
||
|
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
Oops, something went wrong.