@trackunit/react-form-wizard 0.0.41 → 0.1.0

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/index.cjs.js CHANGED
@@ -221,8 +221,8 @@ const FormWizardHeader = ({ title, description, className, dataTestId }) => {
221
221
  return (jsxRuntime.jsxs("div", { className: cvaFormWizardHeader({ className }), "data-testid": dataTestId, children: [jsxRuntime.jsx(reactComponents.Heading, { variant: "primary", children: title }), description ? description : null] }));
222
222
  };
223
223
 
224
- const cvaFormWizardComponentContainer = cssClassVarianceUtilities.cvaMerge(["p-responsive-space"]);
225
- const cvaFormWizardComponentStepForm = cssClassVarianceUtilities.cvaMerge(["grid-rows-min-fr-min", "grid", "h-full"]);
224
+ const cvaFormWizardComponentContainer = cssClassVarianceUtilities.cvaMerge(["p-responsive-space", "overflow-y-auto"]);
225
+ const cvaFormWizardComponentStepForm = cssClassVarianceUtilities.cvaMerge(["grid-rows-min-fr-min", "grid", "h-full", "overflow-hidden"]);
226
226
 
227
227
  /**
228
228
  * A wrapper component used by the FormWizard component to render each step.
package/index.esm.js CHANGED
@@ -217,8 +217,8 @@ const FormWizardHeader = ({ title, description, className, dataTestId }) => {
217
217
  return (jsxs("div", { className: cvaFormWizardHeader({ className }), "data-testid": dataTestId, children: [jsx(Heading, { variant: "primary", children: title }), description ? description : null] }));
218
218
  };
219
219
 
220
- const cvaFormWizardComponentContainer = cvaMerge(["p-responsive-space"]);
221
- const cvaFormWizardComponentStepForm = cvaMerge(["grid-rows-min-fr-min", "grid", "h-full"]);
220
+ const cvaFormWizardComponentContainer = cvaMerge(["p-responsive-space", "overflow-y-auto"]);
221
+ const cvaFormWizardComponentStepForm = cvaMerge(["grid-rows-min-fr-min", "grid", "h-full", "overflow-hidden"]);
222
222
 
223
223
  /**
224
224
  * A wrapper component used by the FormWizard component to render each step.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-form-wizard",
3
- "version": "0.0.41",
3
+ "version": "0.1.0",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "dependencies": {
@@ -1,9 +1,9 @@
1
1
  'use strict';
2
2
 
3
3
  var translation = {
4
- "wizard.defaults.back": "Back",
5
- "wizard.defaults.cancel": "Cancel",
6
- "wizard.defaults.next": "Next"
4
+ "wizard.defaults.back": "Retour",
5
+ "wizard.defaults.cancel": "Annuler",
6
+ "wizard.defaults.next": "Suivant"
7
7
  };
8
8
 
9
9
  exports["default"] = translation;
@@ -1,7 +1,7 @@
1
1
  var translation = {
2
- "wizard.defaults.back": "Back",
3
- "wizard.defaults.cancel": "Cancel",
4
- "wizard.defaults.next": "Next"
2
+ "wizard.defaults.back": "Retour",
3
+ "wizard.defaults.cancel": "Annuler",
4
+ "wizard.defaults.next": "Suivant"
5
5
  };
6
6
 
7
7
  export { translation as default };