@kne/form-info 0.1.5 → 0.1.7
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/README.md +690 -100
- package/dist/index.js +13 -6
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +2 -2
package/dist/index.modern.js
CHANGED
|
@@ -138,7 +138,7 @@ const FormInfo = props => {
|
|
|
138
138
|
list: list,
|
|
139
139
|
column: column,
|
|
140
140
|
className: classnames({
|
|
141
|
-
[style[
|
|
141
|
+
[style['column-not-layout']]: notLayout
|
|
142
142
|
}),
|
|
143
143
|
itemRender: (children, props) => {
|
|
144
144
|
if (props.hidden) {
|
|
@@ -3957,7 +3957,7 @@ const FormSteps = p => {
|
|
|
3957
3957
|
return res;
|
|
3958
3958
|
}
|
|
3959
3959
|
if (autoStep && res !== false) {
|
|
3960
|
-
onComplete(stepCacheRef.current);
|
|
3960
|
+
await onComplete(stepCacheRef.current);
|
|
3961
3961
|
return res;
|
|
3962
3962
|
}
|
|
3963
3963
|
return res;
|