-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
24 changed files
with
469 additions
and
88 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
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
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
32 changes: 32 additions & 0 deletions
32
...istryportal.client/src/config/application-wizard-labor-mobility-assistant-and-one-year.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,32 @@ | ||
import type { Wizard } from "@/types/wizard"; | ||
|
||
import characterReferencesForm from "./character-references-form"; | ||
import previewFormLaborMobilityAssistantAndOneYear from "./preview-form-labor-mobility-assistant-and-one-year"; | ||
import profileInformationForm from "./profile-information-form"; | ||
|
||
const applicationWizard: Wizard = { | ||
id: "form-1", | ||
steps: { | ||
profile: { | ||
stage: "ContactInformation", | ||
title: "Contact information", | ||
form: profileInformationForm, | ||
key: "item.1", | ||
}, | ||
|
||
characterReferences: { | ||
stage: "CharacterReferences", | ||
title: "Character reference", | ||
form: characterReferencesForm, | ||
key: "item.2", | ||
}, | ||
review: { | ||
stage: "Review", | ||
title: "Review and submit", | ||
form: previewFormLaborMobilityAssistantAndOneYear, | ||
key: "item.3", | ||
}, | ||
}, | ||
}; | ||
|
||
export default applicationWizard; |
38 changes: 38 additions & 0 deletions
38
...r.clients.registryportal.client/src/config/application-wizard-labor-mobility-five-year.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,38 @@ | ||
import type { Wizard } from "@/types/wizard"; | ||
|
||
import characterReferencesForm from "./character-references-form"; | ||
import previewFormLaborMobilityFiveYear from "./preview-form-labor-mobility-five-year"; | ||
import profileInformationForm from "./profile-information-form"; | ||
import referencesForm from "./references-form"; | ||
|
||
const applicationWizard: Wizard = { | ||
id: "form-1", | ||
steps: { | ||
profile: { | ||
stage: "ContactInformation", | ||
title: "Contact information", | ||
form: profileInformationForm, | ||
key: "item.1", | ||
}, | ||
characterReferences: { | ||
stage: "CharacterReferences", | ||
title: "Character reference", | ||
form: characterReferencesForm, | ||
key: "item.2", | ||
}, | ||
workReference: { | ||
stage: "WorkReferences", | ||
title: "Work experience reference", | ||
form: referencesForm, | ||
key: "item.3", | ||
}, | ||
review: { | ||
stage: "Review", | ||
title: "Review and submit", | ||
form: previewFormLaborMobilityFiveYear, | ||
key: "item.4", | ||
}, | ||
}, | ||
}; | ||
|
||
export default applicationWizard; |
Oops, something went wrong.