optimized-react-component-library-xyz123 0.1.60 → 0.1.62
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 +12 -13
- package/dist/index.mjs +12 -13
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -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",
|
|
@@ -903,22 +902,22 @@ var ExploreFiles = ({
|
|
|
903
902
|
children: activatedLanguage === "sv" ? "V\xE4lj fil" : "Choose file"
|
|
904
903
|
}
|
|
905
904
|
),
|
|
906
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
907
|
-
"input",
|
|
908
|
-
{
|
|
909
|
-
ref: fileInputRef,
|
|
910
|
-
type: "file",
|
|
911
|
-
className: "invisible",
|
|
912
|
-
multiple: true,
|
|
913
|
-
onChange: handleFiles,
|
|
914
|
-
tabIndex: -1,
|
|
915
|
-
id: inputId
|
|
916
|
-
}
|
|
917
|
-
),
|
|
918
905
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)("span", { "aria-hidden": true, className: "filePickText", children: addFilesInfoText + "span aria-hidden=true" })
|
|
919
906
|
]
|
|
920
907
|
}
|
|
921
908
|
),
|
|
909
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
910
|
+
"input",
|
|
911
|
+
{
|
|
912
|
+
ref: fileInputRef,
|
|
913
|
+
type: "file",
|
|
914
|
+
className: "invisible",
|
|
915
|
+
multiple: true,
|
|
916
|
+
onChange: handleFiles,
|
|
917
|
+
tabIndex: -1,
|
|
918
|
+
id: inputId
|
|
919
|
+
}
|
|
920
|
+
),
|
|
922
921
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
|
|
923
922
|
ScreenReaderErrors_default,
|
|
924
923
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -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",
|
|
@@ -838,22 +837,22 @@ var ExploreFiles = ({
|
|
|
838
837
|
children: activatedLanguage === "sv" ? "V\xE4lj fil" : "Choose file"
|
|
839
838
|
}
|
|
840
839
|
),
|
|
841
|
-
/* @__PURE__ */ jsx8(
|
|
842
|
-
"input",
|
|
843
|
-
{
|
|
844
|
-
ref: fileInputRef,
|
|
845
|
-
type: "file",
|
|
846
|
-
className: "invisible",
|
|
847
|
-
multiple: true,
|
|
848
|
-
onChange: handleFiles,
|
|
849
|
-
tabIndex: -1,
|
|
850
|
-
id: inputId
|
|
851
|
-
}
|
|
852
|
-
),
|
|
853
840
|
/* @__PURE__ */ jsx8("span", { "aria-hidden": true, className: "filePickText", children: addFilesInfoText + "span aria-hidden=true" })
|
|
854
841
|
]
|
|
855
842
|
}
|
|
856
843
|
),
|
|
844
|
+
/* @__PURE__ */ jsx8(
|
|
845
|
+
"input",
|
|
846
|
+
{
|
|
847
|
+
ref: fileInputRef,
|
|
848
|
+
type: "file",
|
|
849
|
+
className: "invisible",
|
|
850
|
+
multiple: true,
|
|
851
|
+
onChange: handleFiles,
|
|
852
|
+
tabIndex: -1,
|
|
853
|
+
id: inputId
|
|
854
|
+
}
|
|
855
|
+
),
|
|
857
856
|
/* @__PURE__ */ jsx8(
|
|
858
857
|
ScreenReaderErrors_default,
|
|
859
858
|
{
|
package/package.json
CHANGED