optimized-react-component-library-xyz123 0.18.3 → 0.18.4
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/css/styles.css +17 -0
package/dist/index.mjs
CHANGED
|
@@ -545,6 +545,7 @@ var ExploreFiles = ({
|
|
|
545
545
|
/* @__PURE__ */ jsx8(
|
|
546
546
|
"button",
|
|
547
547
|
{
|
|
548
|
+
id: `question-${questionObject.id}`,
|
|
548
549
|
ref: buttonInputRef,
|
|
549
550
|
onClick: handleKeyOrClick,
|
|
550
551
|
className: clsx(
|
|
@@ -932,9 +933,8 @@ var AddFiles = ({
|
|
|
932
933
|
const handleRemoveErrors = () => {
|
|
933
934
|
setErrorMessageAddingFile([]);
|
|
934
935
|
};
|
|
935
|
-
const questionId = `question-${questionObject.id}`;
|
|
936
936
|
return /* @__PURE__ */ jsxs9(Fragment11, { children: [
|
|
937
|
-
!showPreview && visible && /* @__PURE__ */ jsx11("div", {
|
|
937
|
+
!showPreview && visible && /* @__PURE__ */ jsx11("div", { className: "root-question addFile-question-container", children: /* @__PURE__ */ jsxs9("div", { role: "group", children: [
|
|
938
938
|
questionObject.aboutText && /* @__PURE__ */ jsxs9(
|
|
939
939
|
"p",
|
|
940
940
|
{
|