catchup-library-web 1.20.15 → 1.20.17
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
CHANGED
|
@@ -4994,7 +4994,7 @@ var FillInTheBlanksActivityMaterialContent = ({
|
|
|
4994
4994
|
InputWithSpecialExpression_default,
|
|
4995
4995
|
{
|
|
4996
4996
|
value: option,
|
|
4997
|
-
showSpecialOnly:
|
|
4997
|
+
showSpecialOnly: false
|
|
4998
4998
|
}
|
|
4999
4999
|
) })
|
|
5000
5000
|
}
|
|
@@ -5056,7 +5056,7 @@ var FillInTheBlanksActivityMaterialContent = ({
|
|
|
5056
5056
|
InputWithSpecialExpression_default,
|
|
5057
5057
|
{
|
|
5058
5058
|
value: answerMap[materialKey],
|
|
5059
|
-
showSpecialOnly:
|
|
5059
|
+
showSpecialOnly: false
|
|
5060
5060
|
}
|
|
5061
5061
|
) : /* @__PURE__ */ (0, import_jsx_runtime30.jsx)("p", { className: "text-gray-400 italic" })
|
|
5062
5062
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -4778,7 +4778,7 @@ var FillInTheBlanksActivityMaterialContent = ({
|
|
|
4778
4778
|
InputWithSpecialExpression_default,
|
|
4779
4779
|
{
|
|
4780
4780
|
value: option,
|
|
4781
|
-
showSpecialOnly:
|
|
4781
|
+
showSpecialOnly: false
|
|
4782
4782
|
}
|
|
4783
4783
|
) })
|
|
4784
4784
|
}
|
|
@@ -4840,7 +4840,7 @@ var FillInTheBlanksActivityMaterialContent = ({
|
|
|
4840
4840
|
InputWithSpecialExpression_default,
|
|
4841
4841
|
{
|
|
4842
4842
|
value: answerMap[materialKey],
|
|
4843
|
-
showSpecialOnly:
|
|
4843
|
+
showSpecialOnly: false
|
|
4844
4844
|
}
|
|
4845
4845
|
) : /* @__PURE__ */ jsx30("p", { className: "text-gray-400 italic" })
|
|
4846
4846
|
}
|
package/package.json
CHANGED
package/src/components/activities/material-contents/FillInTheBlanksActivityMaterialContent.tsx
CHANGED
|
@@ -121,7 +121,7 @@ const FillInTheBlanksActivityMaterialContent = ({
|
|
|
121
121
|
<p className="italic whitespace-pre-wrap">
|
|
122
122
|
<InputWithSpecialExpression
|
|
123
123
|
value={option}
|
|
124
|
-
showSpecialOnly={
|
|
124
|
+
showSpecialOnly={false}
|
|
125
125
|
/>
|
|
126
126
|
</p>
|
|
127
127
|
</div>
|
|
@@ -177,18 +177,6 @@ const FillInTheBlanksActivityMaterialContent = ({
|
|
|
177
177
|
contentMap.type === "TEXT" ? (
|
|
178
178
|
<div className="relative">
|
|
179
179
|
<div className="flex-1">
|
|
180
|
-
{/* <InputGroup
|
|
181
|
-
type="textarea"
|
|
182
|
-
value={answerMap[materialKey]}
|
|
183
|
-
useMinHeight={false}
|
|
184
|
-
onChange={(e) => {
|
|
185
|
-
onChange(
|
|
186
|
-
answer,
|
|
187
|
-
materialKey,
|
|
188
|
-
e.target.value
|
|
189
|
-
);
|
|
190
|
-
}}
|
|
191
|
-
/> */}
|
|
192
180
|
<div
|
|
193
181
|
className={`w-full min-h-[44px] border rounded-lg ${
|
|
194
182
|
answerMap[materialKey]
|
|
@@ -204,7 +192,7 @@ const FillInTheBlanksActivityMaterialContent = ({
|
|
|
204
192
|
{answerMap[materialKey] ? (
|
|
205
193
|
<InputWithSpecialExpression
|
|
206
194
|
value={answerMap[materialKey]}
|
|
207
|
-
showSpecialOnly={
|
|
195
|
+
showSpecialOnly={false}
|
|
208
196
|
/>
|
|
209
197
|
) : (
|
|
210
198
|
<p className="text-gray-400 italic"></p>
|