optimized-react-component-library-xyz123 0.1.61 → 0.1.63
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 +1 -2
- package/dist/index.mjs +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -878,7 +878,7 @@ var ExploreFiles = ({
|
|
|
878
878
|
let addFilesInfoText = numberOfFiles > 0 ? activatedLanguage === "sv" ? `${numberOfFiles} filer valda (max ${allowedNumberOfFiles})` : `${numberOfFiles} files chosed (max ${allowedNumberOfFiles})` : activatedLanguage === "sv" ? "Ingen fil vald" : "No file chosen";
|
|
879
879
|
return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_jsx_runtime8.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "inputContainer", children: [
|
|
880
880
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
|
|
881
|
-
"
|
|
881
|
+
"div",
|
|
882
882
|
{
|
|
883
883
|
tabIndex: -1,
|
|
884
884
|
className: (0, import_clsx2.default)(
|
|
@@ -887,7 +887,6 @@ var ExploreFiles = ({
|
|
|
887
887
|
showErrors && questionObject.error ? ["form-control error"] : ""
|
|
888
888
|
),
|
|
889
889
|
id: labelId,
|
|
890
|
-
htmlFor: inputId,
|
|
891
890
|
children: [
|
|
892
891
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
893
892
|
"button",
|
package/dist/index.mjs
CHANGED
|
@@ -813,7 +813,7 @@ var ExploreFiles = ({
|
|
|
813
813
|
let addFilesInfoText = numberOfFiles > 0 ? activatedLanguage === "sv" ? `${numberOfFiles} filer valda (max ${allowedNumberOfFiles})` : `${numberOfFiles} files chosed (max ${allowedNumberOfFiles})` : activatedLanguage === "sv" ? "Ingen fil vald" : "No file chosen";
|
|
814
814
|
return /* @__PURE__ */ jsx8(Fragment8, { children: /* @__PURE__ */ jsxs7("div", { className: "inputContainer", children: [
|
|
815
815
|
/* @__PURE__ */ jsxs7(
|
|
816
|
-
"
|
|
816
|
+
"div",
|
|
817
817
|
{
|
|
818
818
|
tabIndex: -1,
|
|
819
819
|
className: clsx2(
|
|
@@ -822,7 +822,6 @@ var ExploreFiles = ({
|
|
|
822
822
|
showErrors && questionObject.error ? ["form-control error"] : ""
|
|
823
823
|
),
|
|
824
824
|
id: labelId,
|
|
825
|
-
htmlFor: inputId,
|
|
826
825
|
children: [
|
|
827
826
|
/* @__PURE__ */ jsx8(
|
|
828
827
|
"button",
|
package/package.json
CHANGED