l-min-components 1.7.1546 → 1.7.1547

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "l-min-components",
3
- "version": "1.7.1546",
3
+ "version": "1.7.1547",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/assets",
@@ -72,6 +72,7 @@ const ReportQuestions = ({
72
72
  onSwitchQuestion,
73
73
  loading,
74
74
  mainTitle,
75
+ defaultSelected,
75
76
  }) => {
76
77
  const { findText } = useTranslation(wordStore);
77
78
  const [questionList, setQuestionList] = useState([]);
@@ -326,6 +327,7 @@ const ReportQuestions = ({
326
327
  aiData={AiData}
327
328
  setToggle={setToggle}
328
329
  isPersonal={isPersonal}
330
+ defaultSelected={defaultSelected}
329
331
  />
330
332
  )}
331
333
  {questionType === "quiz-unscripted" && (
@@ -335,6 +337,7 @@ const ReportQuestions = ({
335
337
  aiData={AiData}
336
338
  setToggle={setToggle}
337
339
  isPersonal={isPersonal}
340
+ defaultSelected={defaultSelected}
338
341
  />
339
342
  )}
340
343
  {questionType === "quiz-multiple-choice" && (
@@ -352,6 +355,7 @@ const ReportQuestions = ({
352
355
  aiData={AiData}
353
356
  setToggle={setToggle}
354
357
  isPersonal={isPersonal}
358
+ defaultSelected={defaultSelected}
355
359
  />
356
360
  )}
357
361
  {questionType === "dialogue-unscripted" && (
@@ -361,6 +365,7 @@ const ReportQuestions = ({
361
365
  aiData={AiData}
362
366
  setToggle={setToggle}
363
367
  isPersonal={isPersonal}
368
+ defaultSelected={defaultSelected}
364
369
  />
365
370
  )}
366
371
  </>