@magmamath/students-features 1.8.1 → 1.8.2-rc.0
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/commonjs/features/exampleSolution/ExampleSolutionModal.js +29 -0
- package/dist/commonjs/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/assets/grid.webp +0 -0
- package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js +97 -0
- package/dist/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/components/QuestionSection.js +70 -0
- package/dist/commonjs/features/exampleSolution/components/QuestionSection.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/components/SolutionSection.js +104 -0
- package/dist/commonjs/features/exampleSolution/components/SolutionSection.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/constants.js +13 -0
- package/dist/commonjs/features/exampleSolution/constants.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js +61 -0
- package/dist/commonjs/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/index.js +39 -0
- package/dist/commonjs/features/exampleSolution/index.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js +24 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js +28 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js +18 -0
- package/dist/commonjs/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
- package/dist/commonjs/features/exampleSolution/types.js +6 -0
- package/dist/commonjs/features/exampleSolution/types.js.map +1 -0
- package/dist/commonjs/features/uiMode/uiMode.helpers.js +6 -1
- package/dist/commonjs/features/uiMode/uiMode.helpers.js.map +1 -1
- package/dist/commonjs/i18n/i18n.js +3 -1
- package/dist/commonjs/i18n/i18n.js.map +1 -1
- package/dist/commonjs/index.js +22 -10
- package/dist/commonjs/index.js.map +1 -1
- package/dist/module/features/exampleSolution/ExampleSolutionModal.js +23 -0
- package/dist/module/features/exampleSolution/ExampleSolutionModal.js.map +1 -0
- package/dist/module/features/exampleSolution/assets/grid.webp +0 -0
- package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js +91 -0
- package/dist/module/features/exampleSolution/components/ExampleSolutionModalContent.js.map +1 -0
- package/dist/module/features/exampleSolution/components/QuestionSection.js +62 -0
- package/dist/module/features/exampleSolution/components/QuestionSection.js.map +1 -0
- package/dist/module/features/exampleSolution/components/SolutionSection.js +96 -0
- package/dist/module/features/exampleSolution/components/SolutionSection.js.map +1 -0
- package/dist/module/features/exampleSolution/constants.js +9 -0
- package/dist/module/features/exampleSolution/constants.js.map +1 -0
- package/dist/module/features/exampleSolution/hooks/useExampleSolution.js +56 -0
- package/dist/module/features/exampleSolution/hooks/useExampleSolution.js.map +1 -0
- package/dist/module/features/exampleSolution/index.js +6 -0
- package/dist/module/features/exampleSolution/index.js.map +1 -0
- package/dist/module/features/exampleSolution/model/ExampleSolution.model.js +19 -0
- package/dist/module/features/exampleSolution/model/ExampleSolution.model.js.map +1 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js +23 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionApi.js.map +1 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js +13 -0
- package/dist/module/features/exampleSolution/model/ExampleSolutionCache.js.map +1 -0
- package/dist/module/features/exampleSolution/types.js +4 -0
- package/dist/module/features/exampleSolution/types.js.map +1 -0
- package/dist/module/features/uiMode/uiMode.helpers.js +6 -1
- package/dist/module/features/uiMode/uiMode.helpers.js.map +1 -1
- package/dist/module/i18n/i18n.js +3 -1
- package/dist/module/i18n/i18n.js.map +1 -1
- package/dist/module/index.js +1 -0
- package/dist/module/index.js.map +1 -1
- package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
- package/dist/typescript/commonjs/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +8 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts +10 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts +9 -0
- package/dist/typescript/commonjs/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts +6 -0
- package/dist/typescript/commonjs/features/exampleSolution/constants.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
- package/dist/typescript/commonjs/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/index.d.ts +4 -0
- package/dist/typescript/commonjs/features/exampleSolution/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts +10 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
- package/dist/typescript/commonjs/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/exampleSolution/types.d.ts +27 -0
- package/dist/typescript/commonjs/features/exampleSolution/types.d.ts.map +1 -0
- package/dist/typescript/commonjs/features/fluency/hooks/useFluencyNumpad.d.ts +1 -2
- package/dist/typescript/commonjs/features/fluency/hooks/useFluencyNumpad.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/uiMode/uiMode.helpers.d.ts.map +1 -1
- package/dist/typescript/commonjs/features/voice/playing/hooks/useVoiceTranscriptionController.d.ts +1 -1
- package/dist/typescript/commonjs/i18n/i18n.d.ts.map +1 -1
- package/dist/typescript/commonjs/index.d.ts +1 -0
- package/dist/typescript/commonjs/index.d.ts.map +1 -1
- package/dist/typescript/commonjs/lib/helpers/helpers.d.ts +1 -1
- package/dist/typescript/commonjs/lib/helpers/helpers.d.ts.map +1 -1
- package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts +11 -0
- package/dist/typescript/module/features/exampleSolution/ExampleSolutionModal.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts +8 -0
- package/dist/typescript/module/features/exampleSolution/components/ExampleSolutionModalContent.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts +10 -0
- package/dist/typescript/module/features/exampleSolution/components/QuestionSection.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts +9 -0
- package/dist/typescript/module/features/exampleSolution/components/SolutionSection.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/constants.d.ts +6 -0
- package/dist/typescript/module/features/exampleSolution/constants.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts +9 -0
- package/dist/typescript/module/features/exampleSolution/hooks/useExampleSolution.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/index.d.ts +4 -0
- package/dist/typescript/module/features/exampleSolution/index.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts +10 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolution.model.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts +13 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionApi.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts +11 -0
- package/dist/typescript/module/features/exampleSolution/model/ExampleSolutionCache.d.ts.map +1 -0
- package/dist/typescript/module/features/exampleSolution/types.d.ts +27 -0
- package/dist/typescript/module/features/exampleSolution/types.d.ts.map +1 -0
- package/dist/typescript/module/features/fluency/hooks/useFluencyNumpad.d.ts +1 -2
- package/dist/typescript/module/features/fluency/hooks/useFluencyNumpad.d.ts.map +1 -1
- package/dist/typescript/module/features/uiMode/uiMode.helpers.d.ts.map +1 -1
- package/dist/typescript/module/features/voice/playing/hooks/useVoiceTranscriptionController.d.ts +1 -1
- package/dist/typescript/module/i18n/i18n.d.ts.map +1 -1
- package/dist/typescript/module/index.d.ts +1 -0
- package/dist/typescript/module/index.d.ts.map +1 -1
- package/dist/typescript/module/lib/helpers/helpers.d.ts +1 -1
- package/dist/typescript/module/lib/helpers/helpers.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/features/exampleSolution/ExampleSolutionModal.tsx +23 -0
- package/src/features/exampleSolution/assets/grid.webp +0 -0
- package/src/features/exampleSolution/components/ExampleSolutionModalContent.tsx +80 -0
- package/src/features/exampleSolution/components/QuestionSection.tsx +61 -0
- package/src/features/exampleSolution/components/SolutionSection.tsx +117 -0
- package/src/features/exampleSolution/constants.ts +5 -0
- package/src/features/exampleSolution/hooks/useExampleSolution.ts +66 -0
- package/src/features/exampleSolution/index.ts +3 -0
- package/src/features/exampleSolution/model/ExampleSolution.model.ts +15 -0
- package/src/features/exampleSolution/model/ExampleSolutionApi.ts +29 -0
- package/src/features/exampleSolution/model/ExampleSolutionCache.ts +20 -0
- package/src/features/exampleSolution/types.ts +27 -0
- package/src/features/uiMode/__tests__/getUIMode.test.ts +64 -0
- package/src/features/uiMode/uiMode.helpers.ts +16 -1
- package/src/i18n/i18n.ts +2 -1
- package/src/index.ts +1 -0
- package/src/i18n/.generated/schema.json +0 -154
|
@@ -1,154 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"chat": {
|
|
3
|
-
"anotherHint": "Give me another hint",
|
|
4
|
-
"answerAgain": "Answer again to get another hint!",
|
|
5
|
-
"errorMessage": "Something went wrong! Try again",
|
|
6
|
-
"getHint": "Get a hint",
|
|
7
|
-
"giveHint": "I need a hint",
|
|
8
|
-
"giveHintOpenChat": "I need a hint",
|
|
9
|
-
"howCanIHelp": "Hi! Do you want help?",
|
|
10
|
-
"inputPlaceholder": "Type...",
|
|
11
|
-
"needHint": "I need a hint",
|
|
12
|
-
"showError": "Show error"
|
|
13
|
-
},
|
|
14
|
-
"exampleSolution": {
|
|
15
|
-
"aha": "Aha!",
|
|
16
|
-
"errorMessage": "Something went wrong with generating an example solution",
|
|
17
|
-
"exampleSolution": "Example solution",
|
|
18
|
-
"letMeThink": "Let me think..."
|
|
19
|
-
},
|
|
20
|
-
"gifCelebrations": {
|
|
21
|
-
"almostThere": "Almost there",
|
|
22
|
-
"greatStart": "Great start!",
|
|
23
|
-
"onTheWay": "On the way!"
|
|
24
|
-
},
|
|
25
|
-
"keyboard": {
|
|
26
|
-
"area": "Area",
|
|
27
|
-
"length": "Length",
|
|
28
|
-
"time": "Time",
|
|
29
|
-
"volume": "Volume",
|
|
30
|
-
"weight": "Weight"
|
|
31
|
-
},
|
|
32
|
-
"locale": "en-SE",
|
|
33
|
-
"pmProgress": {
|
|
34
|
-
"allLockedSubtitle": "Your teacher has locked all grades.\nAsk them to unlock grades so you can start practicing.",
|
|
35
|
-
"allLockedTitle": "All grades are locked",
|
|
36
|
-
"allTime": "All time",
|
|
37
|
-
"andMore": "and {{ count }} more...",
|
|
38
|
-
"fluency": "Fact Fluency",
|
|
39
|
-
"grade": "Grade",
|
|
40
|
-
"gradeK": "K",
|
|
41
|
-
"gradeOther": "Other",
|
|
42
|
-
"initErrorSubtitle": "We couldn't load your progress.\nPlease try again later.",
|
|
43
|
-
"initErrorTitle": "Something went wrong",
|
|
44
|
-
"lastWeek": "Last week",
|
|
45
|
-
"loading": "Loading...",
|
|
46
|
-
"nextUp": "Next up!",
|
|
47
|
-
"practiceButton": "PRACTICE",
|
|
48
|
-
"skillLeft": "skill left",
|
|
49
|
-
"skillsLeft": "skills left",
|
|
50
|
-
"stars": "Practice stars",
|
|
51
|
-
"startButton": "START",
|
|
52
|
-
"teacherRecs": "Teacher recommendations",
|
|
53
|
-
"thisWeek": "This week",
|
|
54
|
-
"time": "Practice time",
|
|
55
|
-
"title": "Practice & Progress"
|
|
56
|
-
},
|
|
57
|
-
"student": {
|
|
58
|
-
"fluency": {
|
|
59
|
-
"addition": "Addition",
|
|
60
|
-
"cardsReady": "individualized facts ready",
|
|
61
|
-
"claimProgress": "Claim progress",
|
|
62
|
-
"correct": "Correct! ",
|
|
63
|
-
"dayFriday": "F",
|
|
64
|
-
"dayMonday": "M",
|
|
65
|
-
"dayThursday": "T",
|
|
66
|
-
"dayTuesday": "T",
|
|
67
|
-
"dayWednesday": "W",
|
|
68
|
-
"division": "Division",
|
|
69
|
-
"emptySubtitle": "Ask your teacher to unlock fluency for your grade",
|
|
70
|
-
"emptyTitle": "No facts available for your grade",
|
|
71
|
-
"enter": "Submit",
|
|
72
|
-
"errorSubtitle": "We couldn't load your exercises. Please try again later.",
|
|
73
|
-
"errorTitle": "Something went wrong",
|
|
74
|
-
"fast": "Fast!",
|
|
75
|
-
"incorrect": "INCORRECT — ANSWER: {{answer}}",
|
|
76
|
-
"masteryGrowing": "Familiar",
|
|
77
|
-
"masteryLearning": "New",
|
|
78
|
-
"masteryMastered": "Automatic",
|
|
79
|
-
"masteryStrong": "Strong",
|
|
80
|
-
"multiplication": "Multiplication",
|
|
81
|
-
"notStarted": "New",
|
|
82
|
-
"practice": "Practice",
|
|
83
|
-
"practiceThisWeek": "Practice this week",
|
|
84
|
-
"resultCorrectCardLabel": "Wow there! ",
|
|
85
|
-
"resultStreakCardLabel": "Nice streak!",
|
|
86
|
-
"resultSubtitle": "Nice job {{name}}!",
|
|
87
|
-
"resultTitle": "Checked and done",
|
|
88
|
-
"skipped": "Skipped",
|
|
89
|
-
"startPractice": "Start fluency practice",
|
|
90
|
-
"subtraction": "Subtraction",
|
|
91
|
-
"title": "Fluency practice",
|
|
92
|
-
"typeYourAnswer": "Type your answer"
|
|
93
|
-
}
|
|
94
|
-
},
|
|
95
|
-
"teacherFeedback": {
|
|
96
|
-
"noComments": "No comments yet"
|
|
97
|
-
},
|
|
98
|
-
"teacher": {
|
|
99
|
-
"fluency": {
|
|
100
|
-
"allPupils": "All students",
|
|
101
|
-
"average": "Progress",
|
|
102
|
-
"avgTimeTitle": "Avg Time / Student",
|
|
103
|
-
"factFluency": "Fact Fluency",
|
|
104
|
-
"factsGridLabel": "{{cols}}×{{rows}} facts",
|
|
105
|
-
"hardestFactsEmpty": "No hardest facts yet",
|
|
106
|
-
"hardestFactsTitle": "Top 3 Hardest Facts",
|
|
107
|
-
"minGoal": "/ {{goal}} min goal",
|
|
108
|
-
"noFactsPracticed": "No facts practiced yet",
|
|
109
|
-
"noStudents": "This class has no students",
|
|
110
|
-
"noStudentsFound": "No students match your search",
|
|
111
|
-
"overallMastery": "Automaticity progress",
|
|
112
|
-
"progressDeveloping": "Developing",
|
|
113
|
-
"progressFluent": "Fluent",
|
|
114
|
-
"progressLearning": "Learning",
|
|
115
|
-
"progressNotStarted": "Not started",
|
|
116
|
-
"progressProficient": "Proficient",
|
|
117
|
-
"rowClickHint": "Click a student row to see their full fluency breakdown.",
|
|
118
|
-
"search": "Search",
|
|
119
|
-
"studentFluency": "Student Fluency"
|
|
120
|
-
}
|
|
121
|
-
},
|
|
122
|
-
"time": {
|
|
123
|
-
"dayAgo": "day ago",
|
|
124
|
-
"daysAgo": "{{count}} days ago",
|
|
125
|
-
"hourAgo": "hour ago",
|
|
126
|
-
"hoursAgo": "{{count}} hours ago",
|
|
127
|
-
"justNow": "just now",
|
|
128
|
-
"minuteAgo": "minute ago",
|
|
129
|
-
"minutesAgo": "{{count}} minutes ago",
|
|
130
|
-
"monthAgo": "month ago",
|
|
131
|
-
"monthsAgo": "{{count}} months ago",
|
|
132
|
-
"yearAgo": "year ago",
|
|
133
|
-
"yearsAgo": "{{count}} years ago"
|
|
134
|
-
},
|
|
135
|
-
"voice": {
|
|
136
|
-
"attempt": "Attempt {{ number }}",
|
|
137
|
-
"cancel": "Cancel",
|
|
138
|
-
"delete": "Delete",
|
|
139
|
-
"deleteRecording": "Delete recording?",
|
|
140
|
-
"noMicrophoneAccess": "No microphone access.",
|
|
141
|
-
"noMicrophoneAccessBySystem": "Microphone access denied by system settings.",
|
|
142
|
-
"noMicrophoneFound": "No microphone found.",
|
|
143
|
-
"preparingTranscript": "Preparing transcript",
|
|
144
|
-
"recordingDeleted": "Recording successfully deleted.",
|
|
145
|
-
"redo": "Redo",
|
|
146
|
-
"redoRecording": "Redo recording?",
|
|
147
|
-
"thisWillRemoveRecording": "This will remove your previous recording.",
|
|
148
|
-
"transcriptionError": "Transcription request error",
|
|
149
|
-
"transcriptions": "Transcriptions",
|
|
150
|
-
"transcriptNotAvailable": "Transcript not available",
|
|
151
|
-
"uploadFailed": "Upload failed. Please try again.",
|
|
152
|
-
"youWontBeAbleToRecover": "You won't be able to recover this file once it's gone."
|
|
153
|
-
}
|
|
154
|
-
}
|