@thanh01.pmt/interactive-quiz-kit 1.0.43 → 1.0.45
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/authoring.cjs +1115 -1115
- package/dist/authoring.d.cts +1 -1
- package/dist/authoring.d.ts +1 -1
- package/dist/authoring.mjs +849 -850
- package/dist/react-ui.cjs +2288 -2063
- package/dist/react-ui.d.cts +5 -2
- package/dist/react-ui.d.ts +5 -2
- package/dist/react-ui.mjs +1582 -1359
- package/dist/{toaster-JTJ7cUyP.d.cts → toaster-DfLqsPwa.d.cts} +7 -1
- package/dist/{toaster-Cgg3CSob.d.ts → toaster-Z0Qz6kch.d.ts} +7 -1
- package/package.json +1 -1
|
@@ -80,8 +80,14 @@ interface APIKeyManagerModalProps {
|
|
|
80
80
|
isOpen: boolean;
|
|
81
81
|
onClose: () => void;
|
|
82
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* A modal component that acts as a wrapper around the ApiKeySettings card.
|
|
85
|
+
* This provides a consistent modal experience for managing API keys within the library.
|
|
86
|
+
*/
|
|
83
87
|
declare const APIKeyManagerModal: React__default.FC<APIKeyManagerModalProps>;
|
|
84
88
|
|
|
89
|
+
declare function ApiKeySettings(): React__default.JSX.Element;
|
|
90
|
+
|
|
85
91
|
declare function MetadataTabs(): React__default.JSX.Element;
|
|
86
92
|
|
|
87
93
|
declare function SubjectManager(): React__default.JSX.Element;
|
|
@@ -129,4 +135,4 @@ declare function useToast(): {
|
|
|
129
135
|
|
|
130
136
|
declare function Toaster(): React.JSX.Element;
|
|
131
137
|
|
|
132
|
-
export { AIQuestionGeneratorModal as A, BloomLevelManager as B, CategoryManager as C, EditQuestionModal as E, GradeLevelManager as G, ImportQuestionsModal as I, LearningObjectiveManager as L, MetadataTabs as M, QuizAuthoringTool as Q, SCORMExportModal as S, TopicManager as T, AIFullQuizGeneratorModal as a, APIKeyManagerModal as b,
|
|
138
|
+
export { AIQuestionGeneratorModal as A, BloomLevelManager as B, CategoryManager as C, EditQuestionModal as E, GradeLevelManager as G, ImportQuestionsModal as I, LearningObjectiveManager as L, MetadataTabs as M, QuizAuthoringTool as Q, SCORMExportModal as S, TopicManager as T, AIFullQuizGeneratorModal as a, APIKeyManagerModal as b, ApiKeySettings as c, QuestionList as d, QuestionFilters as e, QuestionFormDialog as f, SubjectManager as g, QuestionTypeManager as h, ContextManager as i, ApproachManager as j, Toaster as k, toast as t, useToast as u };
|
|
@@ -80,8 +80,14 @@ interface APIKeyManagerModalProps {
|
|
|
80
80
|
isOpen: boolean;
|
|
81
81
|
onClose: () => void;
|
|
82
82
|
}
|
|
83
|
+
/**
|
|
84
|
+
* A modal component that acts as a wrapper around the ApiKeySettings card.
|
|
85
|
+
* This provides a consistent modal experience for managing API keys within the library.
|
|
86
|
+
*/
|
|
83
87
|
declare const APIKeyManagerModal: React__default.FC<APIKeyManagerModalProps>;
|
|
84
88
|
|
|
89
|
+
declare function ApiKeySettings(): React__default.JSX.Element;
|
|
90
|
+
|
|
85
91
|
declare function MetadataTabs(): React__default.JSX.Element;
|
|
86
92
|
|
|
87
93
|
declare function SubjectManager(): React__default.JSX.Element;
|
|
@@ -129,4 +135,4 @@ declare function useToast(): {
|
|
|
129
135
|
|
|
130
136
|
declare function Toaster(): React.JSX.Element;
|
|
131
137
|
|
|
132
|
-
export { AIQuestionGeneratorModal as A, BloomLevelManager as B, CategoryManager as C, EditQuestionModal as E, GradeLevelManager as G, ImportQuestionsModal as I, LearningObjectiveManager as L, MetadataTabs as M, QuizAuthoringTool as Q, SCORMExportModal as S, TopicManager as T, AIFullQuizGeneratorModal as a, APIKeyManagerModal as b,
|
|
138
|
+
export { AIQuestionGeneratorModal as A, BloomLevelManager as B, CategoryManager as C, EditQuestionModal as E, GradeLevelManager as G, ImportQuestionsModal as I, LearningObjectiveManager as L, MetadataTabs as M, QuizAuthoringTool as Q, SCORMExportModal as S, TopicManager as T, AIFullQuizGeneratorModal as a, APIKeyManagerModal as b, ApiKeySettings as c, QuestionList as d, QuestionFilters as e, QuestionFormDialog as f, SubjectManager as g, QuestionTypeManager as h, ContextManager as i, ApproachManager as j, Toaster as k, toast as t, useToast as u };
|
package/package.json
CHANGED