-
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-3795-migrate-main-scroll-compone…
- Loading branch information
Showing
29 changed files
with
589 additions
and
469 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,33 @@ | |
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.4](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.4) (2024-05-06) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* **ColumnPickerMixin:** `BaseColumnPickerDropdown` component will no longer emit the `change` event, use `update:modelValue` instead. | ||
`BaseColumnPickerDropdown` prop for the selected columns was renamed from `value` to `modelValue`. | ||
|
||
`BaseColumnPickerList` component will no longer emit the `change` event, use `update:modelValue` instead. | ||
`BaseColumnPickerList` prop for the selected columns was renamed from `value` to `modelValue`. | ||
|
||
`ColumnPickerMixin` has been removed. | ||
|
||
### Code Refactoring | ||
|
||
* **ColumnPickerMixin:** get rid of `ColumnPickerMixin` and refactor components which use it (#1461) ([c5b84da](https://github.com/empathyco/x/commit/c5b84da32b75a37d028e91b64220016a2cfb3037)) | ||
|
||
|
||
|
||
## [1.0.0-alpha.3](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.3) (2024-05-03) | ||
|
||
**Note:** Version bump only for package vue3-migration-test | ||
|
||
|
||
|
||
|
||
|
||
## [1.0.0-alpha.2](https://github.com/empathyco/x/compare/[email protected]@1.0.0-alpha.2) (2024-05-01) | ||
|
||
|
||
|
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
18 changes: 18 additions & 0 deletions
18
...es/_vue3-migration-test/src/components/column-picker/test-base-column-picker-dropdown.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,18 @@ | ||
<template> | ||
<BaseColumnPickerDropdown v-model="selectedColumns" :columns="columns"> | ||
<template #toggle="{ item, isOpen }">Selected: {{ item }} {{ isOpen ? '🔼' : '🔽' }}️</template> | ||
<template #item="{ item, isSelected, isHighlighted }"> | ||
<span v-if="isHighlighted">🟢</span> | ||
<span v-if="isSelected">✅</span> | ||
<span>{{ item }}</span> | ||
</template> | ||
</BaseColumnPickerDropdown> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
import { ref } from 'vue'; | ||
import BaseColumnPickerDropdown from '../../../../x-components/src/components/column-picker/base-column-picker-dropdown.vue'; | ||
const columns = ref([2, 4, 6]); | ||
const selectedColumns = ref(4); | ||
</script> |
27 changes: 27 additions & 0 deletions
27
packages/_vue3-migration-test/src/components/column-picker/test-base-column-picker-list.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> | ||
<!-- | ||
<BaseColumnPickerList v-model="selectedColumns" :columns="columns"> | ||
<template #default="{ column, isSelected }"> | ||
<span v-if="isSelected">✅</span> | ||
<span>{{ column }}</span> | ||
</template> | ||
<template #divider> | ||
<span>-----</span> | ||
</template> | ||
</BaseColumnPickerList> | ||
--> | ||
<span> | ||
BREAKING Vue3: `template v-for` key should be placed on the `template` tag (rather than on its | ||
children) | ||
</span> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
/* | ||
import { ref } from 'vue'; | ||
import BaseColumnPickerList from '../../../../x-components/src/components/column-picker/base-column-picker-list.vue'; | ||
const columns = ref([2, 4, 6]); | ||
const selectedColumns = ref(4); | ||
*/ | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
export * from './animations'; | ||
export { default as TestBaseColumnPickerDropdown } from './column-picker/test-base-column-picker-dropdown.vue'; | ||
export { default as TestBaseColumnPickerList } from './column-picker/test-base-column-picker-list.vue'; | ||
export { default as TestBaseDropdown } from './test-base-dropdown.vue'; | ||
export * from './scroll'; | ||
export { default as TestBaseEventButton } from './test-base-event-button.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
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,14 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [1.1.0-alpha.2](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-03) | ||
|
||
**Note:** Version bump only for package @empathyco/x-adapter-platform | ||
|
||
|
||
|
||
|
||
|
||
## [1.1.0-alpha.1](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-02-05) | ||
|
||
**Note:** Version bump only for package @empathyco/x-adapter-platform | ||
|
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,15 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## [8.1.0-alpha.0](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-03) | ||
|
||
|
||
### Features | ||
|
||
* support empty params on adapter's requests (#1459) ([11a2efc](https://github.com/empathyco/x/commit/11a2efc2d0efe5ef7e34f8feb9e1bcc389bf847a)) | ||
|
||
|
||
|
||
## [8.0.3-alpha.1](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-02-05) | ||
|
||
**Note:** Version bump only for package @empathyco/x-adapter | ||
|
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,33 @@ | |
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.7](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-06) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* **ColumnPickerMixin:** `BaseColumnPickerDropdown` component will no longer emit the `change` event, use `update:modelValue` instead. | ||
`BaseColumnPickerDropdown` prop for the selected columns was renamed from `value` to `modelValue`. | ||
|
||
`BaseColumnPickerList` component will no longer emit the `change` event, use `update:modelValue` instead. | ||
`BaseColumnPickerList` prop for the selected columns was renamed from `value` to `modelValue`. | ||
|
||
`ColumnPickerMixin` has been removed. | ||
|
||
### Code Refactoring | ||
|
||
* **ColumnPickerMixin:** get rid of `ColumnPickerMixin` and refactor components which use it (#1461) ([c5b84da](https://github.com/empathyco/x/commit/c5b84da32b75a37d028e91b64220016a2cfb3037)) | ||
|
||
|
||
|
||
## [5.0.0-alpha.6](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-03) | ||
|
||
**Note:** Version bump only for package @empathyco/x-components | ||
|
||
|
||
|
||
|
||
|
||
## [5.0.0-alpha.5](https://github.com/empathyco/x/compare/@empathyco/[email protected]...@empathyco/[email protected]) (2024-05-01) | ||
|
||
|
||
|
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.