You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2023. It is now read-only.
I marked this as blocked by #1102 if folks want to start on this before #1102 is ready, you'll want to work closely with the person working on #1102 (consider pairing?).
A well defined step of steps, the inputs for a given step may change based on input from the previous step. For now, we will not be dynamically adding steps.
What we know
State delivered from server.
The Headings of a stepper should be well defined. We know the steps.
The contents of each step may change based on input.
We will want to be able to assign an action handler to the final step.
Fields of the stepper will be delivered via action Payload
Two approaches:
Fat component:
Contains all of the possible out comes for the options of the stepper.
The config struct from the server could get very large.
Depending on the information is may take a while to build on the options from various API/resource calls.
All validation is populated in the config as well.
Dynamic component:
Step contents change based on input.
More complex client code.
Handling the failure of async calls to load data.
The text was updated successfully, but these errors were encountered:
I marked this as blocked by #1102 if folks want to start on this before #1102 is ready, you'll want to work closely with the person working on #1102 (consider pairing?).
A well defined step of steps, the inputs for a given step may change based on input from the previous step. For now, we will not be dynamically adding steps.
What we know
State delivered from server.
The Headings of a stepper should be well defined. We know the steps.
The contents of each step may change based on input.
We will want to be able to assign an action handler to the final step.
Fields of the stepper will be delivered via action Payload
Two approaches:
Fat component:
Dynamic component:
The text was updated successfully, but these errors were encountered: