catchup-library-web 1.5.3 → 1.5.5
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +342 -328
- package/dist/index.mjs +342 -328
- package/package.json +1 -1
- package/src/components/activities/body-content/ActivityBodyContent.tsx +92 -91
- package/src/components/activities/body-content/ShowBodyMediaByContentType.tsx +329 -264
- package/src/components/activities/solution-content/ActivitySolutionContent.tsx +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -170,7 +170,7 @@ interface IActivityPreviewByDataProps {
|
|
|
170
170
|
isFullScreen: boolean;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
declare const ActivityBodyContent: ({ templateType, bodyMap, contentMap, answerMap, }: IActivityBodyContentProps) => react_jsx_runtime.JSX.Element;
|
|
173
|
+
declare const ActivityBodyContent: ({ templateType, bodyMap, contentMap, answerMap, }: IActivityBodyContentProps) => react_jsx_runtime.JSX.Element | null;
|
|
174
174
|
|
|
175
175
|
declare const DropdownActivityContent: ({ answer, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IDropdownActivityProps) => react_jsx_runtime.JSX.Element;
|
|
176
176
|
|
package/dist/index.d.ts
CHANGED
|
@@ -170,7 +170,7 @@ interface IActivityPreviewByDataProps {
|
|
|
170
170
|
isFullScreen: boolean;
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
declare const ActivityBodyContent: ({ templateType, bodyMap, contentMap, answerMap, }: IActivityBodyContentProps) => react_jsx_runtime.JSX.Element;
|
|
173
|
+
declare const ActivityBodyContent: ({ templateType, bodyMap, contentMap, answerMap, }: IActivityBodyContentProps) => react_jsx_runtime.JSX.Element | null;
|
|
174
174
|
|
|
175
175
|
declare const DropdownActivityContent: ({ answer, data, canAnswerQuestion, changeAnswer, isPreview, showCorrectAnswer, isFullScreen, }: IDropdownActivityProps) => react_jsx_runtime.JSX.Element;
|
|
176
176
|
|