catchup-library-web 2.5.15 → 2.5.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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +259 -219
- package/dist/index.mjs +279 -239
- package/package.json +1 -1
- package/src/components/activities/GroupingActivityContent.tsx +33 -18
- package/src/components/activities/MatchingActivityContent.tsx +7 -3
- package/src/components/activities/OrderingActivityContent.tsx +7 -3
- package/src/components/activities/body-contents/ActivityBodyContent.tsx +8 -8
- package/src/components/activities/material-contents/DropdownActivityMaterialContent.tsx +5 -3
- package/src/components/activities/material-contents/FillInTheBlanksActivityMaterialContent.tsx +5 -3
- package/src/components/activities/material-contents/GroupingActivityMaterialContent.tsx +5 -3
- package/src/components/activities/material-contents/MCMAActivityMaterialContent.tsx +8 -6
- package/src/components/activities/material-contents/MCSAActivityMaterialContent.tsx +8 -6
- package/src/components/activities/material-contents/MatchingActivityMaterialContent.tsx +3 -1
- package/src/components/activities/material-contents/OpenEndedActivityMaterialContent.tsx +5 -5
- package/src/components/activities/material-contents/OrderingActivityMaterialContent.tsx +3 -1
- package/src/components/activities/material-contents/TrueFalseActivityMaterialContent.tsx +6 -4
- package/src/properties/ActivityProperties.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -171,6 +171,7 @@ interface IGroupingActivityProps {
|
|
|
171
171
|
changeAnswer: (e: any) => void;
|
|
172
172
|
isPreview: boolean;
|
|
173
173
|
showCorrectAnswer: boolean;
|
|
174
|
+
isFullScreen: boolean;
|
|
174
175
|
}
|
|
175
176
|
interface IMatchingActivityProps {
|
|
176
177
|
answerMap: any;
|
|
@@ -238,7 +239,7 @@ declare const DropdownActivityContent: ({ answerMap, data, canAnswerQuestion, ch
|
|
|
238
239
|
|
|
239
240
|
declare const FillInTheBlanksActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IFillInTheBlanksActivityProps) => react_jsx_runtime.JSX.Element;
|
|
240
241
|
|
|
241
|
-
declare const GroupingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IGroupingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
242
|
+
declare const GroupingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IGroupingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
242
243
|
|
|
243
244
|
declare const MatchingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IMatchingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
244
245
|
|
package/dist/index.d.ts
CHANGED
|
@@ -171,6 +171,7 @@ interface IGroupingActivityProps {
|
|
|
171
171
|
changeAnswer: (e: any) => void;
|
|
172
172
|
isPreview: boolean;
|
|
173
173
|
showCorrectAnswer: boolean;
|
|
174
|
+
isFullScreen: boolean;
|
|
174
175
|
}
|
|
175
176
|
interface IMatchingActivityProps {
|
|
176
177
|
answerMap: any;
|
|
@@ -238,7 +239,7 @@ declare const DropdownActivityContent: ({ answerMap, data, canAnswerQuestion, ch
|
|
|
238
239
|
|
|
239
240
|
declare const FillInTheBlanksActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IFillInTheBlanksActivityProps) => react_jsx_runtime.JSX.Element;
|
|
240
241
|
|
|
241
|
-
declare const GroupingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IGroupingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
242
|
+
declare const GroupingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IGroupingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
242
243
|
|
|
243
244
|
declare const MatchingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IMatchingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
244
245
|
|