mithril-materialized 3.3.2 → 3.3.4
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/advanced.css +48 -46
- package/dist/components.css +101 -95
- package/dist/core.css +31 -29
- package/dist/forms.css +28 -26
- package/dist/index.css +184 -178
- package/dist/index.esm.js +0 -3
- package/dist/index.js +0 -3
- package/dist/index.min.css +2 -2
- package/dist/index.umd.js +0 -3
- package/dist/pickers.css +10 -10
- package/dist/utilities.css +18 -16
- package/package.json +5 -5
- package/sass/components/forms/_checkboxes.scss +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -7749,7 +7749,6 @@ const Wizard = () => {
|
|
|
7749
7749
|
}
|
|
7750
7750
|
finally {
|
|
7751
7751
|
state.isValidating = false;
|
|
7752
|
-
m.redraw();
|
|
7753
7752
|
}
|
|
7754
7753
|
};
|
|
7755
7754
|
const goToStep = async (stepIndex, attrs) => {
|
|
@@ -7781,8 +7780,6 @@ const Wizard = () => {
|
|
|
7781
7780
|
if (onStepChange && oldStep !== stepIndex) {
|
|
7782
7781
|
onStepChange(stepIndex, steps[stepIndex].id || `step-${stepIndex}`);
|
|
7783
7782
|
}
|
|
7784
|
-
// Force redraw to update UI
|
|
7785
|
-
m.redraw();
|
|
7786
7783
|
return true;
|
|
7787
7784
|
};
|
|
7788
7785
|
const nextStep = async (attrs) => {
|
package/dist/index.js
CHANGED
|
@@ -7751,7 +7751,6 @@ const Wizard = () => {
|
|
|
7751
7751
|
}
|
|
7752
7752
|
finally {
|
|
7753
7753
|
state.isValidating = false;
|
|
7754
|
-
m.redraw();
|
|
7755
7754
|
}
|
|
7756
7755
|
};
|
|
7757
7756
|
const goToStep = async (stepIndex, attrs) => {
|
|
@@ -7783,8 +7782,6 @@ const Wizard = () => {
|
|
|
7783
7782
|
if (onStepChange && oldStep !== stepIndex) {
|
|
7784
7783
|
onStepChange(stepIndex, steps[stepIndex].id || `step-${stepIndex}`);
|
|
7785
7784
|
}
|
|
7786
|
-
// Force redraw to update UI
|
|
7787
|
-
m.redraw();
|
|
7788
7785
|
return true;
|
|
7789
7786
|
};
|
|
7790
7787
|
const nextStep = async (attrs) => {
|