@pathscale/ui 0.0.66 → 0.0.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7241,7 +7241,7 @@ function ValidatedForm(props) {
|
|
|
7241
7241
|
"onSubmit",
|
|
7242
7242
|
"initialValues"
|
|
7243
7243
|
]);
|
|
7244
|
-
const { form, errors, touched, data, isValid, isSubmitting, setData, setErrors, setWarnings, setTouched } = (0, __WEBPACK_EXTERNAL_MODULE__felte_solid_6a709b1d__.createForm)({
|
|
7244
|
+
const { form, errors, touched, data, isValid, isSubmitting, setData, setErrors, setWarnings, setTouched, reset } = (0, __WEBPACK_EXTERNAL_MODULE__felte_solid_6a709b1d__.createForm)({
|
|
7245
7245
|
initialValues: local.initialValues,
|
|
7246
7246
|
extend: [
|
|
7247
7247
|
(0, __WEBPACK_EXTERNAL_MODULE__felte_validator_zod_bb07151a__.validator)({
|
|
@@ -7259,7 +7259,8 @@ function ValidatedForm(props) {
|
|
|
7259
7259
|
setData,
|
|
7260
7260
|
setErrors,
|
|
7261
7261
|
setWarnings,
|
|
7262
|
-
setTouched
|
|
7262
|
+
setTouched,
|
|
7263
|
+
reset
|
|
7263
7264
|
}));
|
|
7264
7265
|
return (0, __WEBPACK_EXTERNAL_MODULE_solid_js_web_35d951b7__.createComponent)(FormValidationContext.Provider, {
|
|
7265
7266
|
get value () {
|