File tree 4 files changed +6
-8
lines changed
4 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 22
22
},
23
23
"[scss]" : {
24
24
"editor.defaultFormatter" : " vscode.css-language-features"
25
+ },
26
+ "files.associations" : {
27
+ "*.mdx" : " markdown"
25
28
}
26
29
}
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ React Multi Page Form seamlessly integrates into the React ecosystem by focusing
19
19
- ** Streamline Long Forms:** Skip unnecessary pages dynamically based on user inputs.
20
20
- ** Easy Testing:** Quickly see the list of pages used for any set of data, and render all pages at once.
21
21
- ** Simplified Navigation:** Implement next and previous buttons effortlessly.
22
- - ** Dynamic Form Testing:** Quickly test and determine which forms are displayed to users depending on their selections.
23
22
- ** Resume Functionality:** Enable users to pick up where they left off, improving completion rates.
24
23
- ** Composable Workflows:** Combine multiple workflows into a single cohesive process, promoting reusability and modularity in form management.
25
24
- ** Great for AI:** Clear separation of concerns makes it easy for AI to generate the first draft of your sequences and forms.
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ export function MyMultiPageForm() {
126
126
const {
127
127
currentPage, // the current page object
128
128
advance, // goes to the next page
129
+ advanceToNextIncomplete, // advances, skipping pages that are complete
129
130
goBack, // goes back one page
130
131
goTo, // goes to a page by id
131
132
isFinal, // if this is the last page
Original file line number Diff line number Diff line change 3
3
"version" : " 0.1.2" ,
4
4
"description" : " Tools to handle multi-page forms" ,
5
5
"main" : " dist/index.js" ,
6
- "files" : [
7
- " dist"
8
- ],
6
+ "files" : [" dist" ],
9
7
"scripts" : {
10
8
"build" : " tsc" ,
11
9
"build:watch" : " tsc -w" ,
16
14
"test" : " jest" ,
17
15
"test:watch" : " jest --watch"
18
16
},
19
- "keywords" : [
20
- " forms" ,
21
- " multi-page"
22
- ],
17
+ "keywords" : [" forms" , " multi-page" ],
23
18
"author" : " Stu Kabakoff" ,
24
19
"license" : " MIT" ,
25
20
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments