allaw-ui 0.0.293 → 0.0.295

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.
@@ -22,14 +22,16 @@ var Stepper = function (_a) {
22
22
  setStep(currentStep);
23
23
  }, [currentStep]);
24
24
  var handleNext = useCallback(function () {
25
- console.log("Stepper: Validating current step");
25
+ // console.log("Stepper: Validating current step");
26
26
  var currentPrimaryButton = primaryButton[step - 1];
27
27
  if (currentPrimaryButton === null || currentPrimaryButton === void 0 ? void 0 : currentPrimaryButton.onPrimaryButtonClick) {
28
28
  currentPrimaryButton.onPrimaryButtonClick(step);
29
29
  }
30
30
  if (validateStep) {
31
31
  var isValid = validateStep(step);
32
- console.log("Stepper: Step ".concat(step, " validation result - ").concat(isValid ? "valid" : "invalid"));
32
+ // console.log(
33
+ // `Stepper: Step ${step} validation result - ${isValid ? "valid" : "invalid"}`
34
+ // );
33
35
  if (!isValid) {
34
36
  return;
35
37
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "allaw-ui",
3
- "version": "0.0.293",
3
+ "version": "0.0.295",
4
4
  "description": "Composants UI pour l'application Allaw",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",