Skip to content

Commit

Permalink
Merge branch 'main' into p-wizard/skip-nav
Browse files Browse the repository at this point in the history
  • Loading branch information
collincchoy authored Apr 16, 2024
2 parents 3ae1a70 + f835af1 commit 20cda2e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [2.7.7](https://github.com/PrefectHQ/prefect-design/compare/2.7.6...2.7.7)
#### [v2.7.8](https://github.com/PrefectHQ/prefect-design/compare/v2.7.7...v2.7.8)

- Fix: Use Current Step not current step index in emit [`#1207`](https://github.com/PrefectHQ/prefect-design/pull/1207)
- Release 2.7.7 [`#1206`](https://github.com/PrefectHQ/prefect-design/pull/1206)

#### [v2.7.7](https://github.com/PrefectHQ/prefect-design/compare/2.7.6...v2.7.7)

> 15 April 2024
- Enhancement: Add a footer slot to the wizard component [`#1203`](https://github.com/PrefectHQ/prefect-design/pull/1203)

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"workspaces": [
"./demo"
],
"version": "2.7.7",
"version": "2.7.8",
"description": "",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Wizard/PWizard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
const emit = defineEmits<{
(event: 'cancel' | 'next' | 'previous' | 'submit'): void,
(event: 'step', currentStepIndex: WizardStep | undefined): void,
(event: 'step', currentStep: WizardStep | undefined): void,
}>()
const {
Expand Down

0 comments on commit 20cda2e

Please sign in to comment.