Skip to content

Commit 43016f7

Browse files
committed
3.0.0-alpha.12
1 parent cd4516a commit 43016f7

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
"peerDependencies": {
167167
"immutability-helper": "^2.6.5 || ^3.0.0"
168168
},
169-
"version": "3.0.0-alpha.11",
169+
"version": "3.0.0-alpha.12",
170170
"directories": {
171171
"doc": "docs"
172172
},

src/helpers/state-machine/form/actions/stepper.actions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ const useStepperActions = () => {
6060
data: currentData[stepName],
6161
onError: state.context.effects.onError,
6262
buttonDisabled,
63+
isStepper: true,
6364
});
6465

6566
state.context.effects.onChange({

src/helpers/state-machine/helpers/is-form-schema-state-valid.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ const isFormSchemaStateValid = ({
8181
});
8282
return {
8383
schemaErrors: [{
84-
"rule": "schemaError",
85-
"title": "Invalid Form Schema",
86-
"message": String(err)
84+
'rule': 'schemaError',
85+
'title': 'Invalid Form Schema',
86+
'message': String(err),
8787
}],
8888
transformedSchema,
8989
};

src/helpers/validation/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export const hasSchemaErrors = ({
9595
&& currentUISchema['ui:page']
9696
&& currentUISchema['ui:page']['ui:layout']
9797
&& currentUISchema['ui:page']['ui:layout'] === 'steps'
98-
)
98+
),
9999
});
100100

101101
return {

0 commit comments

Comments
 (0)