catchup-library-web 2.5.8 → 2.5.10
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +158 -218
- package/dist/index.mjs +177 -237
- package/package.json +1 -1
- package/src/components/activities/MatchingActivityContent.tsx +28 -17
- package/src/components/activities/OrderingActivityContent.tsx +28 -17
- package/src/components/activities/body-contents/ActivityBodyContent.tsx +1 -1
- package/src/components/activities/body-contents/ShowBodyMediaByContentType.tsx +2 -6
- package/src/components/activities/material-contents/FillInTheBlanksActivityMaterialContent.tsx +19 -19
- package/src/components/activities/material-contents/GroupingActivityMaterialContent.tsx +24 -24
- package/src/components/activities/material-contents/MatchingActivityMaterialContent.tsx +25 -25
- package/src/components/activities/material-contents/OrderingActivityMaterialContent.tsx +16 -55
- package/src/components/activities/material-contents/ShowMaterialMediaByContentType.tsx +1 -1
- package/src/components/groups/InputGroup.tsx +2 -2
- package/src/components/groups/PageTravelGroup.tsx +46 -86
- package/src/properties/ActivityProperties.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -135,6 +135,7 @@ interface IOrderingActivityProps {
|
|
|
135
135
|
changeAnswer: (e: any) => void;
|
|
136
136
|
isPreview: boolean;
|
|
137
137
|
showCorrectAnswer: boolean;
|
|
138
|
+
isFullScreen: boolean;
|
|
138
139
|
}
|
|
139
140
|
interface IDropdownActivityProps {
|
|
140
141
|
answerMap: any;
|
|
@@ -178,6 +179,7 @@ interface IMatchingActivityProps {
|
|
|
178
179
|
changeAnswer: (e: any) => void;
|
|
179
180
|
isPreview: boolean;
|
|
180
181
|
showCorrectAnswer: boolean;
|
|
182
|
+
isFullScreen: boolean;
|
|
181
183
|
}
|
|
182
184
|
interface IFillInTheBlanksActivityProps {
|
|
183
185
|
answerMap: any;
|
|
@@ -238,7 +240,7 @@ declare const FillInTheBlanksActivityContent: ({ answerMap, data, canAnswerQuest
|
|
|
238
240
|
|
|
239
241
|
declare const GroupingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IGroupingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
240
242
|
|
|
241
|
-
declare const MatchingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IMatchingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
243
|
+
declare const MatchingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IMatchingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
242
244
|
|
|
243
245
|
declare const MCMAActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IMCMAActivityProps) => react_jsx_runtime.JSX.Element;
|
|
244
246
|
|
|
@@ -246,7 +248,7 @@ declare const MCSAActivityContent: ({ answerMap, data, canAnswerQuestion, change
|
|
|
246
248
|
|
|
247
249
|
declare const OpenEndedActivityContent: ({ answerMap, data, changeAnswer, canAnswerQuestion, showMaterialContent, isPreview, isFullScreen, }: IOpenEndedActivityProps) => react_jsx_runtime.JSX.Element;
|
|
248
250
|
|
|
249
|
-
declare const OrderingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IOrderingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
251
|
+
declare const OrderingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IOrderingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
250
252
|
|
|
251
253
|
declare const TrueFalseActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: ITrueFalseActivityProps) => react_jsx_runtime.JSX.Element;
|
|
252
254
|
|
package/dist/index.d.ts
CHANGED
|
@@ -135,6 +135,7 @@ interface IOrderingActivityProps {
|
|
|
135
135
|
changeAnswer: (e: any) => void;
|
|
136
136
|
isPreview: boolean;
|
|
137
137
|
showCorrectAnswer: boolean;
|
|
138
|
+
isFullScreen: boolean;
|
|
138
139
|
}
|
|
139
140
|
interface IDropdownActivityProps {
|
|
140
141
|
answerMap: any;
|
|
@@ -178,6 +179,7 @@ interface IMatchingActivityProps {
|
|
|
178
179
|
changeAnswer: (e: any) => void;
|
|
179
180
|
isPreview: boolean;
|
|
180
181
|
showCorrectAnswer: boolean;
|
|
182
|
+
isFullScreen: boolean;
|
|
181
183
|
}
|
|
182
184
|
interface IFillInTheBlanksActivityProps {
|
|
183
185
|
answerMap: any;
|
|
@@ -238,7 +240,7 @@ declare const FillInTheBlanksActivityContent: ({ answerMap, data, canAnswerQuest
|
|
|
238
240
|
|
|
239
241
|
declare const GroupingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IGroupingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
240
242
|
|
|
241
|
-
declare const MatchingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IMatchingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
243
|
+
declare const MatchingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IMatchingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
242
244
|
|
|
243
245
|
declare const MCMAActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IMCMAActivityProps) => react_jsx_runtime.JSX.Element;
|
|
244
246
|
|
|
@@ -246,7 +248,7 @@ declare const MCSAActivityContent: ({ answerMap, data, canAnswerQuestion, change
|
|
|
246
248
|
|
|
247
249
|
declare const OpenEndedActivityContent: ({ answerMap, data, changeAnswer, canAnswerQuestion, showMaterialContent, isPreview, isFullScreen, }: IOpenEndedActivityProps) => react_jsx_runtime.JSX.Element;
|
|
248
250
|
|
|
249
|
-
declare const OrderingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, }: IOrderingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
251
|
+
declare const OrderingActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IOrderingActivityProps) => react_jsx_runtime.JSX.Element;
|
|
250
252
|
|
|
251
253
|
declare const TrueFalseActivityContent: ({ answerMap, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: ITrueFalseActivityProps) => react_jsx_runtime.JSX.Element;
|
|
252
254
|
|