@thanh01.pmt/interactive-quiz-kit 1.0.25 → 1.0.28

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.
@@ -1,197 +0,0 @@
1
- type RichContentString = string;
2
-
3
- type QuestionTypeStrings = 'multiple_choice' | 'multiple_response' | 'fill_in_the_blanks' | 'drag_and_drop' | 'true_false' | 'short_answer' | 'numeric' | 'sequence' | 'matching' | 'hotspot' | 'blockly_programming' | 'scratch_programming' | 'coding';
4
- interface BaseQuestion {
5
- id: string;
6
- questionType: QuestionTypeStrings;
7
- prompt: RichContentString;
8
- points?: number;
9
- explanation?: RichContentString;
10
- learningObjective?: string;
11
- glossary?: string[];
12
- bloomLevel?: string;
13
- difficulty?: 'easy' | 'medium' | 'hard';
14
- contextCode?: string;
15
- gradeBand?: string;
16
- course?: string;
17
- subject?: string;
18
- category?: string;
19
- topic?: string;
20
- imageUrl?: string;
21
- imageAltText?: string;
22
- }
23
- interface QuestionOption {
24
- id: string;
25
- text: RichContentString;
26
- }
27
- interface MultipleChoiceQuestion extends BaseQuestion {
28
- questionType: 'multiple_choice';
29
- options: QuestionOption[];
30
- correctAnswerId: string;
31
- }
32
- interface MultipleResponseQuestion extends BaseQuestion {
33
- questionType: 'multiple_response';
34
- options: QuestionOption[];
35
- correctAnswerIds: string[];
36
- }
37
- interface FillInTheBlanksQuestion extends BaseQuestion {
38
- questionType: 'fill_in_the_blanks';
39
- segments: {
40
- type: 'text' | 'blank';
41
- content?: RichContentString;
42
- id?: string;
43
- }[];
44
- answers: {
45
- blankId: string;
46
- acceptedValues: string[];
47
- }[];
48
- isCaseSensitive?: boolean;
49
- }
50
- interface DraggableItem {
51
- id: string;
52
- content: RichContentString;
53
- }
54
- interface DropZone {
55
- id: string;
56
- label: RichContentString;
57
- }
58
- interface DragAndDropQuestion extends BaseQuestion {
59
- questionType: 'drag_and_drop';
60
- draggableItems: DraggableItem[];
61
- dropZones: DropZone[];
62
- answerMap: {
63
- draggableId: string;
64
- dropZoneId: string;
65
- }[];
66
- backgroundImageUrl?: string;
67
- imageAltText?: string;
68
- }
69
- interface TrueFalseQuestion extends BaseQuestion {
70
- questionType: 'true_false';
71
- correctAnswer: boolean;
72
- }
73
- interface ShortAnswerQuestion extends BaseQuestion {
74
- questionType: 'short_answer';
75
- acceptedAnswers: string[];
76
- isCaseSensitive?: boolean;
77
- }
78
- interface NumericQuestion extends BaseQuestion {
79
- questionType: 'numeric';
80
- answer: number;
81
- tolerance?: number;
82
- }
83
- interface SequenceItem {
84
- id: string;
85
- content: RichContentString;
86
- }
87
- interface SequenceQuestion extends BaseQuestion {
88
- questionType: 'sequence';
89
- items: SequenceItem[];
90
- correctOrder: string[];
91
- }
92
- interface MatchPromptItem {
93
- id: string;
94
- content: RichContentString;
95
- }
96
- interface MatchOptionItem {
97
- id: string;
98
- content: RichContentString;
99
- }
100
- interface MatchingQuestion extends BaseQuestion {
101
- questionType: 'matching';
102
- prompts: MatchPromptItem[];
103
- options: MatchOptionItem[];
104
- correctAnswerMap: {
105
- promptId: string;
106
- optionId: string;
107
- }[];
108
- shuffleOptions?: boolean;
109
- }
110
- interface HotspotArea {
111
- id: string;
112
- shape: 'rect' | 'circle';
113
- coords: number[];
114
- description?: RichContentString;
115
- }
116
- interface HotspotQuestion extends BaseQuestion {
117
- questionType: 'hotspot';
118
- imageUrl: string;
119
- imageAltText?: string;
120
- hotspots: HotspotArea[];
121
- correctHotspotIds: string[];
122
- }
123
- interface BlocklyProgrammingQuestion extends BaseQuestion {
124
- questionType: 'blockly_programming';
125
- toolboxDefinition: string;
126
- initialWorkspace?: string;
127
- solutionWorkspaceXML?: string;
128
- solutionGeneratedCode?: string;
129
- }
130
- interface ScratchProgrammingQuestion extends BaseQuestion {
131
- questionType: 'scratch_programming';
132
- toolboxDefinition: string;
133
- initialWorkspace?: string;
134
- solutionWorkspaceXML?: string;
135
- solutionGeneratedCode?: string;
136
- }
137
- type SupportedCodingLanguage = 'cpp' | 'javascript' | 'python' | 'swift' | 'csharp';
138
- interface TestCase {
139
- id: string;
140
- input: any[];
141
- expectedOutput: any;
142
- isPublic: boolean;
143
- }
144
- interface CodingQuestion extends BaseQuestion {
145
- questionType: 'coding';
146
- codingLanguage: SupportedCodingLanguage;
147
- solutionCode: string;
148
- testCases: TestCase[];
149
- functionSignature?: string;
150
- }
151
- type QuizQuestion = MultipleChoiceQuestion | MultipleResponseQuestion | FillInTheBlanksQuestion | DragAndDropQuestion | TrueFalseQuestion | ShortAnswerQuestion | NumericQuestion | SequenceQuestion | MatchingQuestion | HotspotQuestion | BlocklyProgrammingQuestion | ScratchProgrammingQuestion | CodingQuestion;
152
-
153
- interface SCORMSettings {
154
- version: "1.2" | "2004";
155
- setCompletionOnFinish?: boolean;
156
- setSuccessOnPass?: boolean;
157
- autoCommit?: boolean;
158
- studentNameVar?: string;
159
- lessonStatusVar?: string;
160
- scoreRawVar?: string;
161
- scoreMaxVar?: string;
162
- scoreMinVar?: string;
163
- sessionTimeVar?: string;
164
- exitVar?: string;
165
- suspendDataVar?: string;
166
- lessonStatusVar_1_2?: string;
167
- scoreRawVar_1_2?: string;
168
- scoreMaxVar_1_2?: string;
169
- scoreMinVar_1_2?: string;
170
- completionStatusVar_2004?: string;
171
- successStatusVar_2004?: string;
172
- scoreScaledVar_2004?: string;
173
- scoreRawVar_2004?: string;
174
- scoreMaxVar_2004?: string;
175
- scoreMinVar_2004?: string;
176
- }
177
- interface QuizSettings {
178
- language?: string;
179
- shuffleQuestions?: boolean;
180
- shuffleOptions?: boolean;
181
- timeLimitMinutes?: number;
182
- showCorrectAnswers?: 'immediately' | 'end_of_quiz' | 'never';
183
- passingScorePercent?: number;
184
- webhookUrl?: string;
185
- scorm?: SCORMSettings;
186
- }
187
-
188
- interface QuizConfig {
189
- id: string;
190
- title: string;
191
- description?: RichContentString;
192
- questions: QuizQuestion[];
193
- settings?: QuizSettings;
194
- version?: number;
195
- }
196
-
197
- export type { BaseQuestion as B, CodingQuestion as C, DragAndDropQuestion as D, FillInTheBlanksQuestion as F, HotspotQuestion as H, MultipleChoiceQuestion as M, NumericQuestion as N, QuestionTypeStrings as Q, RichContentString as R, ShortAnswerQuestion as S, TrueFalseQuestion as T, MultipleResponseQuestion as a, SequenceQuestion as b, MatchingQuestion as c, BlocklyProgrammingQuestion as d, ScratchProgrammingQuestion as e, QuizQuestion as f, QuestionOption as g, SequenceItem as h, MatchPromptItem as i, MatchOptionItem as j, DraggableItem as k, DropZone as l, HotspotArea as m, TestCase as n, SupportedCodingLanguage as o, SCORMSettings as p, QuizSettings as q, QuizConfig as r };
@@ -1,197 +0,0 @@
1
- type RichContentString = string;
2
-
3
- type QuestionTypeStrings = 'multiple_choice' | 'multiple_response' | 'fill_in_the_blanks' | 'drag_and_drop' | 'true_false' | 'short_answer' | 'numeric' | 'sequence' | 'matching' | 'hotspot' | 'blockly_programming' | 'scratch_programming' | 'coding';
4
- interface BaseQuestion {
5
- id: string;
6
- questionType: QuestionTypeStrings;
7
- prompt: RichContentString;
8
- points?: number;
9
- explanation?: RichContentString;
10
- learningObjective?: string;
11
- glossary?: string[];
12
- bloomLevel?: string;
13
- difficulty?: 'easy' | 'medium' | 'hard';
14
- contextCode?: string;
15
- gradeBand?: string;
16
- course?: string;
17
- subject?: string;
18
- category?: string;
19
- topic?: string;
20
- imageUrl?: string;
21
- imageAltText?: string;
22
- }
23
- interface QuestionOption {
24
- id: string;
25
- text: RichContentString;
26
- }
27
- interface MultipleChoiceQuestion extends BaseQuestion {
28
- questionType: 'multiple_choice';
29
- options: QuestionOption[];
30
- correctAnswerId: string;
31
- }
32
- interface MultipleResponseQuestion extends BaseQuestion {
33
- questionType: 'multiple_response';
34
- options: QuestionOption[];
35
- correctAnswerIds: string[];
36
- }
37
- interface FillInTheBlanksQuestion extends BaseQuestion {
38
- questionType: 'fill_in_the_blanks';
39
- segments: {
40
- type: 'text' | 'blank';
41
- content?: RichContentString;
42
- id?: string;
43
- }[];
44
- answers: {
45
- blankId: string;
46
- acceptedValues: string[];
47
- }[];
48
- isCaseSensitive?: boolean;
49
- }
50
- interface DraggableItem {
51
- id: string;
52
- content: RichContentString;
53
- }
54
- interface DropZone {
55
- id: string;
56
- label: RichContentString;
57
- }
58
- interface DragAndDropQuestion extends BaseQuestion {
59
- questionType: 'drag_and_drop';
60
- draggableItems: DraggableItem[];
61
- dropZones: DropZone[];
62
- answerMap: {
63
- draggableId: string;
64
- dropZoneId: string;
65
- }[];
66
- backgroundImageUrl?: string;
67
- imageAltText?: string;
68
- }
69
- interface TrueFalseQuestion extends BaseQuestion {
70
- questionType: 'true_false';
71
- correctAnswer: boolean;
72
- }
73
- interface ShortAnswerQuestion extends BaseQuestion {
74
- questionType: 'short_answer';
75
- acceptedAnswers: string[];
76
- isCaseSensitive?: boolean;
77
- }
78
- interface NumericQuestion extends BaseQuestion {
79
- questionType: 'numeric';
80
- answer: number;
81
- tolerance?: number;
82
- }
83
- interface SequenceItem {
84
- id: string;
85
- content: RichContentString;
86
- }
87
- interface SequenceQuestion extends BaseQuestion {
88
- questionType: 'sequence';
89
- items: SequenceItem[];
90
- correctOrder: string[];
91
- }
92
- interface MatchPromptItem {
93
- id: string;
94
- content: RichContentString;
95
- }
96
- interface MatchOptionItem {
97
- id: string;
98
- content: RichContentString;
99
- }
100
- interface MatchingQuestion extends BaseQuestion {
101
- questionType: 'matching';
102
- prompts: MatchPromptItem[];
103
- options: MatchOptionItem[];
104
- correctAnswerMap: {
105
- promptId: string;
106
- optionId: string;
107
- }[];
108
- shuffleOptions?: boolean;
109
- }
110
- interface HotspotArea {
111
- id: string;
112
- shape: 'rect' | 'circle';
113
- coords: number[];
114
- description?: RichContentString;
115
- }
116
- interface HotspotQuestion extends BaseQuestion {
117
- questionType: 'hotspot';
118
- imageUrl: string;
119
- imageAltText?: string;
120
- hotspots: HotspotArea[];
121
- correctHotspotIds: string[];
122
- }
123
- interface BlocklyProgrammingQuestion extends BaseQuestion {
124
- questionType: 'blockly_programming';
125
- toolboxDefinition: string;
126
- initialWorkspace?: string;
127
- solutionWorkspaceXML?: string;
128
- solutionGeneratedCode?: string;
129
- }
130
- interface ScratchProgrammingQuestion extends BaseQuestion {
131
- questionType: 'scratch_programming';
132
- toolboxDefinition: string;
133
- initialWorkspace?: string;
134
- solutionWorkspaceXML?: string;
135
- solutionGeneratedCode?: string;
136
- }
137
- type SupportedCodingLanguage = 'cpp' | 'javascript' | 'python' | 'swift' | 'csharp';
138
- interface TestCase {
139
- id: string;
140
- input: any[];
141
- expectedOutput: any;
142
- isPublic: boolean;
143
- }
144
- interface CodingQuestion extends BaseQuestion {
145
- questionType: 'coding';
146
- codingLanguage: SupportedCodingLanguage;
147
- solutionCode: string;
148
- testCases: TestCase[];
149
- functionSignature?: string;
150
- }
151
- type QuizQuestion = MultipleChoiceQuestion | MultipleResponseQuestion | FillInTheBlanksQuestion | DragAndDropQuestion | TrueFalseQuestion | ShortAnswerQuestion | NumericQuestion | SequenceQuestion | MatchingQuestion | HotspotQuestion | BlocklyProgrammingQuestion | ScratchProgrammingQuestion | CodingQuestion;
152
-
153
- interface SCORMSettings {
154
- version: "1.2" | "2004";
155
- setCompletionOnFinish?: boolean;
156
- setSuccessOnPass?: boolean;
157
- autoCommit?: boolean;
158
- studentNameVar?: string;
159
- lessonStatusVar?: string;
160
- scoreRawVar?: string;
161
- scoreMaxVar?: string;
162
- scoreMinVar?: string;
163
- sessionTimeVar?: string;
164
- exitVar?: string;
165
- suspendDataVar?: string;
166
- lessonStatusVar_1_2?: string;
167
- scoreRawVar_1_2?: string;
168
- scoreMaxVar_1_2?: string;
169
- scoreMinVar_1_2?: string;
170
- completionStatusVar_2004?: string;
171
- successStatusVar_2004?: string;
172
- scoreScaledVar_2004?: string;
173
- scoreRawVar_2004?: string;
174
- scoreMaxVar_2004?: string;
175
- scoreMinVar_2004?: string;
176
- }
177
- interface QuizSettings {
178
- language?: string;
179
- shuffleQuestions?: boolean;
180
- shuffleOptions?: boolean;
181
- timeLimitMinutes?: number;
182
- showCorrectAnswers?: 'immediately' | 'end_of_quiz' | 'never';
183
- passingScorePercent?: number;
184
- webhookUrl?: string;
185
- scorm?: SCORMSettings;
186
- }
187
-
188
- interface QuizConfig {
189
- id: string;
190
- title: string;
191
- description?: RichContentString;
192
- questions: QuizQuestion[];
193
- settings?: QuizSettings;
194
- version?: number;
195
- }
196
-
197
- export type { BaseQuestion as B, CodingQuestion as C, DragAndDropQuestion as D, FillInTheBlanksQuestion as F, HotspotQuestion as H, MultipleChoiceQuestion as M, NumericQuestion as N, QuestionTypeStrings as Q, RichContentString as R, ShortAnswerQuestion as S, TrueFalseQuestion as T, MultipleResponseQuestion as a, SequenceQuestion as b, MatchingQuestion as c, BlocklyProgrammingQuestion as d, ScratchProgrammingQuestion as e, QuizQuestion as f, QuestionOption as g, SequenceItem as h, MatchPromptItem as i, MatchOptionItem as j, DraggableItem as k, DropZone as l, HotspotArea as m, TestCase as n, SupportedCodingLanguage as o, SCORMSettings as p, QuizSettings as q, QuizConfig as r };
@@ -1,207 +0,0 @@
1
- import { r as QuizConfig, f as QuizQuestion } from './quiz-config-1gNNhljP.cjs';
2
- export { B as BaseQuestion, d as BlocklyProgrammingQuestion, C as CodingQuestion, D as DragAndDropQuestion, k as DraggableItem, l as DropZone, F as FillInTheBlanksQuestion, m as HotspotArea, H as HotspotQuestion, j as MatchOptionItem, i as MatchPromptItem, c as MatchingQuestion, M as MultipleChoiceQuestion, a as MultipleResponseQuestion, N as NumericQuestion, g as QuestionOption, Q as QuestionTypeStrings, q as QuizSettings, R as RichContentString, p as SCORMSettings, e as ScratchProgrammingQuestion, h as SequenceItem, b as SequenceQuestion, S as ShortAnswerQuestion, o as SupportedCodingLanguage, n as TestCase, T as TrueFalseQuestion } from './quiz-config-1gNNhljP.cjs';
3
- export { APIKeyService, AchievementService, Approach, ApproachTableRawDifficulty, BloomLevelName, BloomLevelType, Category, CodeNamedEntity, Context, GEMINI_API_KEY_SERVICE_NAME, GradeLevel, KnowledgeCardService, KnowledgeDimension, LearningObjective, LearningObjectiveMetadata, MetadataService, PracticeHistoryService, QuestionBankService, QuestionImportService, QuestionInBank, QuestionTypeType, QuizEditorService, QuizEngine, QuizEngineCallbacks, QuizEngineConstructorOptions, QuoteService, SCORMService, StandardDifficulty, Subject, Topic, UserConfigService, cn, emptyQuiz, exportQuizAsSCORMZip, generateLauncherHTML, generateSCORMManifest, generateUniqueId, sampleQuiz } from './index.cjs';
4
- import { Q as QuizResultType, U as UserAnswerType, m as PracticeSuggestion, l as PracticeSuggestionTopic, i as Achievement, o as PracticeStats, p as PracticeSessionSummary, h as QuizReviewContent } from './ai-ecosystem-CL30v1Lg.cjs';
5
- export { j as AchievementDefinition, r as ActivityCalendarData, u as AnalysisReport, A as AnswerDetail, x as ChatContext, C as ChatMessage, v as DashboardCardConfig, D as DashboardCardId, w as DashboardLayout, y as Goal, G as GoalType, t as ImageContextItem, I as ImportError, K as KnowledgeCard, L as LearningAnalysis, e as PerformanceByBloomLevel, b as PerformanceByCategory, d as PerformanceByDifficulty, P as PerformanceByLearningObjective, c as PerformanceByTopic, f as PerformanceMetric, s as PerformanceSummary, k as PracticeDifficulty, n as PracticeSession, q as PracticeTopicSummary, g as QuestionReview, R as RoadmapItem, T as TestCaseResult, a as UserAnswers, W as WeeklyRoadmap } from './ai-ecosystem-CL30v1Lg.cjs';
6
- import * as React$1 from 'react';
7
- import React__default from 'react';
8
- export { a as AIFullQuizGeneratorModal, A as AIQuestionGeneratorModal, b as APIKeyManagerModal, i as ApproachManager, B as BloomLevelManager, C as CategoryManager, h as ContextManager, E as EditQuestionModal, G as GradeLevelManager, I as ImportQuestionsModal, L as LearningObjectiveManager, M as MetadataTabs, d as QuestionFilters, e as QuestionFormDialog, c as QuestionList, g as QuestionTypeManager, Q as QuizAuthoringTool, S as SCORMExportModal, f as SubjectManager, j as Toaster, T as TopicManager, t as toast, u as useToast } from './toaster-DUq851l_.cjs';
9
- import * as class_variance_authority_types from 'class-variance-authority/types';
10
- import { VariantProps } from 'class-variance-authority';
11
- import * as LabelPrimitive from '@radix-ui/react-label';
12
- import * as react_jsx_runtime from 'react/jsx-runtime';
13
- import * as DialogPrimitive from '@radix-ui/react-dialog';
14
- import * as SelectPrimitive from '@radix-ui/react-select';
15
- import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
16
- import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
17
- import * as ProgressPrimitive from '@radix-ui/react-progress';
18
- import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
19
- import * as AccordionPrimitive from '@radix-ui/react-accordion';
20
- import * as TooltipPrimitive from '@radix-ui/react-tooltip';
21
- import * as TabsPrimitive from '@radix-ui/react-tabs';
22
- import 'clsx';
23
- import '@radix-ui/react-toast';
24
-
25
- interface QuizPlayerProps {
26
- quizConfig: QuizConfig;
27
- onQuizComplete: (result: QuizResultType) => void;
28
- onExitQuiz?: () => void;
29
- }
30
- declare const QuizPlayer: React__default.FC<QuizPlayerProps>;
31
-
32
- interface QuizResultProps {
33
- result: QuizResultType;
34
- quizTitle: string;
35
- onExitQuiz?: () => void;
36
- onGenerateReview?: () => void;
37
- showReviewButton?: boolean;
38
- isReviewLoading?: boolean;
39
- }
40
- declare const QuizResult: React__default.FC<QuizResultProps>;
41
-
42
- interface QuizDataManagementProps {
43
- onQuizLoad: (quizData: QuizConfig) => void;
44
- currentQuiz: QuizConfig | null;
45
- }
46
- declare const QuizDataManagement: React__default.FC<QuizDataManagementProps>;
47
-
48
- interface BlocklyProgrammingQuestionUIRef {
49
- getWorkspaceXml: () => string | null;
50
- }
51
-
52
- interface ScratchProgrammingQuestionUIRef {
53
- getWorkspaceXml: () => string | null;
54
- }
55
-
56
- interface QuestionRendererProps {
57
- question: QuizQuestion;
58
- onAnswerChange: (answer: UserAnswerType) => void;
59
- userAnswer: UserAnswerType | null;
60
- showCorrectAnswer?: boolean;
61
- }
62
- type ProgrammingQuestionUIRef = BlocklyProgrammingQuestionUIRef | ScratchProgrammingQuestionUIRef;
63
- declare const QuestionRenderer: React__default.ForwardRefExoticComponent<QuestionRendererProps & React__default.RefAttributes<ProgrammingQuestionUIRef>>;
64
-
65
- declare const PersonalPracticeDashboard: React__default.FC;
66
-
67
- type SettingsTab = 'personal' | 'topics' | 'imageContexts' | 'layout' | 'apiKeys';
68
- interface SettingsModalProps {
69
- isOpen: boolean;
70
- onClose: () => void;
71
- defaultTab?: SettingsTab;
72
- }
73
- declare const SettingsModal: React__default.FC<SettingsModalProps>;
74
-
75
- declare const ManageTopics: React__default.FC;
76
-
77
- interface UploadResourceModalProps {
78
- isOpen: boolean;
79
- onClose: () => void;
80
- }
81
- declare const UploadResourceModal: React__default.FC<UploadResourceModalProps>;
82
-
83
- declare const PracticeModeController: React__default.FC;
84
-
85
- interface SuggestionDialogProps {
86
- isOpen: boolean;
87
- onClose: () => void;
88
- isLoading: boolean;
89
- suggestion: PracticeSuggestion | null;
90
- onStartSuggestedPractice: (suggestedTopic: PracticeSuggestionTopic) => void;
91
- }
92
- declare const SuggestionDialog: React__default.FC<SuggestionDialogProps>;
93
-
94
- declare const Cheatsheet: React__default.FC;
95
-
96
- interface AchievementsProps {
97
- achievements: Achievement[];
98
- }
99
- declare const Achievements: React__default.FC<AchievementsProps>;
100
-
101
- interface ActivityCalendarProps {
102
- stats: PracticeStats | null;
103
- }
104
- declare const ActivityCalendar: React__default.FC<ActivityCalendarProps>;
105
-
106
- interface PerformanceChartsProps {
107
- stats: PracticeStats | null;
108
- }
109
- declare const PerformanceCharts: React__default.FC<PerformanceChartsProps>;
110
-
111
- interface PracticeHistoryTableProps {
112
- history: PracticeSessionSummary[];
113
- maxHeight?: string;
114
- }
115
- declare const PracticeHistoryTable: React__default.FC<PracticeHistoryTableProps>;
116
-
117
- interface QuizReviewProps {
118
- quizResult: QuizResultType;
119
- reviewContent: QuizReviewContent;
120
- onBackToResults: () => void;
121
- onExit: () => void;
122
- }
123
- declare const QuizReview: React__default.FC<QuizReviewProps>;
124
-
125
- declare const GeneratedQuizzesCard: React__default.FC;
126
-
127
- declare const FreestyleQuizzesCard: React__default.FC;
128
-
129
- declare const buttonVariants: (props?: ({
130
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
131
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
132
- } & class_variance_authority_types.ClassProp) | undefined) => string;
133
- interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
134
- asChild?: boolean;
135
- }
136
- declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
137
-
138
- declare const Card: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
139
- declare const CardHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
140
- declare const CardTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
141
- declare const CardDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
142
- declare const CardContent: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
143
- declare const CardFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
144
-
145
- declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
146
-
147
- declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
148
-
149
- declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
150
- declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
151
- declare const DialogHeader: {
152
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
153
- displayName: string;
154
- };
155
- declare const DialogFooter: {
156
- ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
157
- displayName: string;
158
- };
159
- declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
160
- declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
161
-
162
- declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
163
- declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
164
- declare const SelectTrigger: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
165
- declare const SelectContent: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
166
- declare const SelectItem: React$1.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
167
-
168
- declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
169
-
170
- declare const RadioGroup: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
171
- declare const RadioGroupItem: React$1.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
172
-
173
- declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
174
-
175
- declare const Alert: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
176
- variant?: "default" | "destructive" | null | undefined;
177
- } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
178
- declare const AlertTitle: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLHeadingElement> & React$1.RefAttributes<HTMLParagraphElement>>;
179
- declare const AlertDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
180
-
181
- declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
182
-
183
- declare const badgeVariants: (props?: ({
184
- variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
185
- } & class_variance_authority_types.ClassProp) | undefined) => string;
186
- interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof badgeVariants> {
187
- }
188
- declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
189
-
190
- declare const Accordion: React$1.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React$1.RefAttributes<HTMLDivElement>>;
191
- declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
192
- declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
193
- declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
194
-
195
- declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
196
- declare const Tooltip: React$1.FC<TooltipPrimitive.TooltipProps>;
197
- declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
198
- declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
199
-
200
- declare function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
201
-
202
- declare const Tabs: React$1.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React$1.RefAttributes<HTMLDivElement>>;
203
- declare const TabsList: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
204
- declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
205
- declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
206
-
207
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Achievement, Achievements, ActivityCalendar, Alert, AlertDescription, AlertTitle, Badge, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Cheatsheet, Checkbox, Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, FreestyleQuizzesCard, GeneratedQuizzesCard, Input, Label, ManageTopics, PerformanceCharts, PersonalPracticeDashboard, PracticeHistoryTable, PracticeModeController, PracticeSessionSummary, PracticeStats, PracticeSuggestion, PracticeSuggestionTopic, Progress, QuestionRenderer, QuizConfig, QuizDataManagement, QuizPlayer, QuizQuestion, QuizResult, QuizResultType, QuizReview, QuizReviewContent, RadioGroup, RadioGroupItem, ScrollArea, Select, SelectContent, SelectItem, SelectTrigger, SelectValue, SettingsModal, Skeleton, SuggestionDialog, Tabs, TabsContent, TabsList, TabsTrigger, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UploadResourceModal, UserAnswerType };