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 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