optimized-react-component-library-xyz123 0.1.11 → 0.1.13
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/index.js +9 -1
- package/dist/index.mjs +9 -1
- package/package.json +1 -1
- package/src/css/styles.css +5 -0
package/dist/index.js
CHANGED
|
@@ -1919,7 +1919,15 @@ var StepperButtons = ({
|
|
|
1919
1919
|
}) => {
|
|
1920
1920
|
const totalSteps = arraySteps ? arraySteps.length : "";
|
|
1921
1921
|
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", { className: "pts-stepperButtons-container", children: [
|
|
1922
|
-
activeStep !==
|
|
1922
|
+
activeStep !== 0 && /* @__PURE__ */ (0, import_jsx_runtime18.jsx)(
|
|
1923
|
+
"button",
|
|
1924
|
+
{
|
|
1925
|
+
onClick: () => handleActiveStep(activeStep - 1),
|
|
1926
|
+
className: "pts-backButton",
|
|
1927
|
+
type: "button",
|
|
1928
|
+
children: languageSupported ? languageSupported.backButton : "<<"
|
|
1929
|
+
}
|
|
1930
|
+
),
|
|
1923
1931
|
/* @__PURE__ */ (0, import_jsx_runtime18.jsxs)(
|
|
1924
1932
|
"button",
|
|
1925
1933
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1856,7 +1856,15 @@ var StepperButtons = ({
|
|
|
1856
1856
|
}) => {
|
|
1857
1857
|
const totalSteps = arraySteps ? arraySteps.length : "";
|
|
1858
1858
|
return /* @__PURE__ */ jsxs16("div", { className: "pts-stepperButtons-container", children: [
|
|
1859
|
-
activeStep !==
|
|
1859
|
+
activeStep !== 0 && /* @__PURE__ */ jsx18(
|
|
1860
|
+
"button",
|
|
1861
|
+
{
|
|
1862
|
+
onClick: () => handleActiveStep(activeStep - 1),
|
|
1863
|
+
className: "pts-backButton",
|
|
1864
|
+
type: "button",
|
|
1865
|
+
children: languageSupported ? languageSupported.backButton : "<<"
|
|
1866
|
+
}
|
|
1867
|
+
),
|
|
1860
1868
|
/* @__PURE__ */ jsxs16(
|
|
1861
1869
|
"button",
|
|
1862
1870
|
{
|
package/package.json
CHANGED
package/src/css/styles.css
CHANGED
|
@@ -315,6 +315,11 @@ textarea:focus-visible,
|
|
|
315
315
|
margin-left: 1.6rem;
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
+
.pts-start-applicationButton {
|
|
319
|
+
align-self: start !important;
|
|
320
|
+
margin-left: 0px !important;
|
|
321
|
+
}
|
|
322
|
+
|
|
318
323
|
.pts-backButton:focus,
|
|
319
324
|
.pts-backButton:hover,
|
|
320
325
|
.pts-forwardButton:focus,
|