@roqua/quby-frontend
v0.9.8
Published
Important to give a unique key for each response if there is a chance the component will be reused, as it's an uncontrolled component.
Downloads
310
Readme
usage
Important to give a unique key for each response if there is a chance the component will be reused, as it's an uncontrolled component.
<Quby
key=`quby_${questionnaire.key}_${response.id}`
questionnaireJson={questionnaire}
responseJson={response}
displayMode={"paged"}
onSave={(response: Response) => ()}
unsavedResponseWarning="Unsaved changes, are you sure you want to leave the page?" />
assumptions
- All questions are always validated (on load and on every change), errors are just ignored when an answer has not been touched or is hidden.
- Response values are treated as immutable (setValue is always passed a new object)
pnpm build
Generates the new compiled JS files.
pnpm test
This runs the unit tests via Jest.
pnpm storybook
Storybooks are the primary way to try out the interface in a browser.
pnpm publish --access public --no-git-checks
This bumps the version number and uploads a new release to NPM. Make sure to run rm -rf dist; pnpm build
first.