@magmamath/frontend-config 1.0.24-rc.78 → 1.0.24-rc.8
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 +100 -1081
- package/dist/index.d.ts +100 -1081
- package/dist/index.js +917 -5408
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +844 -5260
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ComponentType
|
|
1
|
+
import { ComponentType } from 'react';
|
|
2
2
|
import * as effector from 'effector';
|
|
3
3
|
|
|
4
4
|
declare enum DateFormat {
|
|
@@ -116,223 +116,50 @@ declare enum MatrixMode {
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
declare enum Grade {
|
|
119
|
-
OTHER = -1,
|
|
120
|
-
ZERO = 0,
|
|
121
|
-
ONE = 1,
|
|
122
|
-
TWO = 2,
|
|
123
|
-
THREE = 3,
|
|
124
|
-
FOUR = 4,
|
|
125
|
-
FIVE = 5,
|
|
126
|
-
SIX = 6,
|
|
127
|
-
SEVEN = 7,
|
|
128
|
-
EIGHT = 8,
|
|
129
|
-
NINE = 9,
|
|
130
|
-
TEN = 10,
|
|
131
|
-
ELEVEN = 11,
|
|
132
|
-
TWELVE = 12,
|
|
133
|
-
THIRTEEN = 13,
|
|
134
|
-
ALGEBRA_1 = 21,
|
|
135
|
-
GEOMETRY = 22,
|
|
136
|
-
ALGEBRA_2 = 23,
|
|
137
|
-
INTEGRATED_MATH_I = 24,
|
|
138
|
-
INTEGRATED_MATH_II = 25,
|
|
139
|
-
INTEGRATED_MATH_III = 26,
|
|
140
|
-
PRECALCULUS = 27,
|
|
119
|
+
OTHER = "-1",
|
|
120
|
+
ZERO = "0",
|
|
121
|
+
ONE = "1",
|
|
122
|
+
TWO = "2",
|
|
123
|
+
THREE = "3",
|
|
124
|
+
FOUR = "4",
|
|
125
|
+
FIVE = "5",
|
|
126
|
+
SIX = "6",
|
|
127
|
+
SEVEN = "7",
|
|
128
|
+
EIGHT = "8",
|
|
129
|
+
NINE = "9",
|
|
130
|
+
TEN = "10",
|
|
131
|
+
ELEVEN = "11",
|
|
132
|
+
TWELVE = "12",
|
|
133
|
+
THIRTEEN = "13",
|
|
134
|
+
ALGEBRA_1 = "21",
|
|
135
|
+
GEOMETRY = "22",
|
|
136
|
+
ALGEBRA_2 = "23",
|
|
137
|
+
INTEGRATED_MATH_I = "24",
|
|
138
|
+
INTEGRATED_MATH_II = "25",
|
|
139
|
+
INTEGRATED_MATH_III = "26",
|
|
140
|
+
PRECALCULUS = "27",
|
|
141
141
|
HS = "HS",
|
|
142
142
|
HSG = "HSG",
|
|
143
143
|
HSA = "HSA",
|
|
144
144
|
HSS = "HSS",
|
|
145
145
|
HSF = "HSF",
|
|
146
146
|
HSN = "HSN",
|
|
147
|
+
ALL = "all",
|
|
147
148
|
K = "K"
|
|
148
149
|
}
|
|
149
150
|
|
|
150
|
-
declare enum NumberDecimalSeparator {
|
|
151
|
-
DOT = ".",
|
|
152
|
-
COMMA = ","
|
|
153
|
-
}
|
|
154
|
-
declare enum NumberGroupingSeparator {
|
|
155
|
-
SPACE = "space",
|
|
156
|
-
COMMA = "comma",
|
|
157
|
-
DOT = "dot",
|
|
158
|
-
APOSTROPHE = "apostrophe"
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
declare enum Language {
|
|
162
|
-
AFRIKAANS = "Afrikaans",
|
|
163
|
-
ALBANIAN = "Albanian",
|
|
164
|
-
AMHARIC = "Amharic",
|
|
165
|
-
ARABIC = "Arabic",
|
|
166
|
-
ARMENIAN = "Armenian",
|
|
167
|
-
ASSAMESE = "Assamese",
|
|
168
|
-
AYMARA = "Aymara",
|
|
169
|
-
AZERBAIJANI = "Azerbaijani",
|
|
170
|
-
BAMBARA = "Bambara",
|
|
171
|
-
BASQUE = "Basque",
|
|
172
|
-
BELARUSIAN = "Belarusian",
|
|
173
|
-
BENGALI = "Bengali",
|
|
174
|
-
BHOJPURI = "Bhojpuri",
|
|
175
|
-
BOSNIAN = "Bosnian",
|
|
176
|
-
BULGARIAN = "Bulgarian",
|
|
177
|
-
CATALAN = "Catalan",
|
|
178
|
-
CEBUANO = "Cebuano",
|
|
179
|
-
CHINESE_SIMPLIFIED = "Chinese (Simplified)",
|
|
180
|
-
CHINESE_TRADITIONAL = "Chinese (Traditional)",
|
|
181
|
-
CORSICAN = "Corsican",
|
|
182
|
-
CROATIAN = "Croatian",
|
|
183
|
-
CZECH = "Czech",
|
|
184
|
-
DANISH = "Danish",
|
|
185
|
-
DHIVEHI = "Dhivehi",
|
|
186
|
-
DOGRI = "Dogri",
|
|
187
|
-
DUTCH = "Dutch",
|
|
188
|
-
ENGLISH = "English",
|
|
189
|
-
BRITISH_ENGLISH = "British English",
|
|
190
|
-
ESPERANTO = "Esperanto",
|
|
191
|
-
ESTONIAN = "Estonian",
|
|
192
|
-
EWE = "Ewe",
|
|
193
|
-
FINNISH = "Finnish",
|
|
194
|
-
FRENCH = "French",
|
|
195
|
-
FRISIAN = "Frisian",
|
|
196
|
-
GALICIAN = "Galician",
|
|
197
|
-
GEORGIAN = "Georgian",
|
|
198
|
-
GERMAN = "German",
|
|
199
|
-
GREEK = "Greek",
|
|
200
|
-
GUARANI = "Guarani",
|
|
201
|
-
GUJARATI = "Gujarati",
|
|
202
|
-
HAITIAN_CREOLE = "Haitian Creole",
|
|
203
|
-
HAUSA = "Hausa",
|
|
204
|
-
HAWAIIAN = "Hawaiian",
|
|
205
|
-
HEBREW = "Hebrew",
|
|
206
|
-
HINDI = "Hindi",
|
|
207
|
-
HMONG = "Hmong",
|
|
208
|
-
HUNGARIAN = "Hungarian",
|
|
209
|
-
ICELANDIC = "Icelandic",
|
|
210
|
-
IGBO = "Igbo",
|
|
211
|
-
ILOCANO = "Ilocano",
|
|
212
|
-
INDONESIAN = "Indonesian",
|
|
213
|
-
IRISH = "Irish",
|
|
214
|
-
ITALIAN = "Italian",
|
|
215
|
-
JAPANESE = "Japanese",
|
|
216
|
-
JAVANESE = "Javanese",
|
|
217
|
-
KANNADA = "Kannada",
|
|
218
|
-
KAZAKH = "Kazakh",
|
|
219
|
-
KHMER = "Khmer",
|
|
220
|
-
KINYARWANDA = "Kinyarwanda",
|
|
221
|
-
KONKANI = "Konkani",
|
|
222
|
-
KOREAN = "Korean",
|
|
223
|
-
KRIO = "Krio",
|
|
224
|
-
KURDISH = "Kurdish",
|
|
225
|
-
KURDISH_SORANI = "Kurdish (Sorani)",
|
|
226
|
-
KYRGYZ = "Kyrgyz",
|
|
227
|
-
LAO = "Lao",
|
|
228
|
-
LATVIAN = "Latvian",
|
|
229
|
-
LINGALA = "Lingala",
|
|
230
|
-
LITHUANIAN = "Lithuanian",
|
|
231
|
-
LUGANDA = "Luganda",
|
|
232
|
-
LUXEMBOURGISH = "Luxembourgish",
|
|
233
|
-
MACEDONIAN = "Macedonian",
|
|
234
|
-
MAITHILI = "Maithili",
|
|
235
|
-
MALAGASY = "Malagasy",
|
|
236
|
-
MALAY = "Malay",
|
|
237
|
-
MALAYALAM = "Malayalam",
|
|
238
|
-
MALTESE = "Maltese",
|
|
239
|
-
MAORI = "Maori",
|
|
240
|
-
MARATHI = "Marathi",
|
|
241
|
-
MEITEILON_MANIPURI = "Meiteilon (Manipuri)",
|
|
242
|
-
MIZO = "Mizo",
|
|
243
|
-
MONGOLIAN = "Mongolian",
|
|
244
|
-
MYANMAR_BURMESE = "Myanmar (Burmese)",
|
|
245
|
-
NEPALI = "Nepali",
|
|
246
|
-
NORWEGIAN = "Norwegian",
|
|
247
|
-
NYANJA_CHICHEWA = "Nyanja (Chichewa)",
|
|
248
|
-
ODIA_ORIYA = "Odia (Oriya)",
|
|
249
|
-
OROMO = "Oromo",
|
|
250
|
-
PASHTO = "Pashto",
|
|
251
|
-
PERSIAN = "Persian (Farsi)",
|
|
252
|
-
POLISH = "Polish",
|
|
253
|
-
PORTUGUESE_PORTUGAL_BRAZIL = "Portuguese (Portugal, Brazil)",
|
|
254
|
-
PUNJABI = "Punjabi",
|
|
255
|
-
QUECHUA = "Quechua",
|
|
256
|
-
ROMANIAN = "Romanian",
|
|
257
|
-
RUSSIAN = "Russian",
|
|
258
|
-
SAMOAN = "Samoan",
|
|
259
|
-
SANSKRIT = "Sanskrit",
|
|
260
|
-
SCOTS_GAELIC = "Scots Gaelic",
|
|
261
|
-
SEPEDI = "Sepedi",
|
|
262
|
-
SERBIAN = "Serbian",
|
|
263
|
-
SESOTHO = "Sesotho",
|
|
264
|
-
SHONA = "Shona",
|
|
265
|
-
SINDHI = "Sindhi",
|
|
266
|
-
SINHALA_SINHALESE = "Sinhala (Sinhalese)",
|
|
267
|
-
SLOVAK = "Slovak",
|
|
268
|
-
SLOVENIAN = "Slovenian",
|
|
269
|
-
SOMALI = "Somali",
|
|
270
|
-
SPANISH = "Spanish",
|
|
271
|
-
SUNDANESE = "Sundanese",
|
|
272
|
-
SWAHILI = "Swahili",
|
|
273
|
-
SWEDISH = "Swedish",
|
|
274
|
-
TAGALOG_FILIPINO = "Tagalog (Filipino)",
|
|
275
|
-
TAJIK = "Tajik",
|
|
276
|
-
TAMIL = "Tamil",
|
|
277
|
-
TATAR = "Tatar",
|
|
278
|
-
TELUGU = "Telugu",
|
|
279
|
-
THAI = "Thai",
|
|
280
|
-
TIGRINYA = "Tigrinya",
|
|
281
|
-
TSONGA = "Tsonga",
|
|
282
|
-
TURKISH = "Turkish",
|
|
283
|
-
TURKMEN = "Turkmen",
|
|
284
|
-
TWI_AKAN = "Twi (Akan)",
|
|
285
|
-
UKRAINIAN = "Ukrainian",
|
|
286
|
-
URDU = "Urdu",
|
|
287
|
-
UYGHUR = "Uyghur",
|
|
288
|
-
UZBEK = "Uzbek",
|
|
289
|
-
VIETNAMESE = "Vietnamese",
|
|
290
|
-
WELSH = "Welsh",
|
|
291
|
-
XHOSA = "Xhosa",
|
|
292
|
-
YIDDISH = "Yiddish",
|
|
293
|
-
YORUBA = "Yoruba",
|
|
294
|
-
ZULU = "Zulu"
|
|
295
|
-
}
|
|
296
|
-
declare const LANGUAGES_DATA: Record<Language, LanguageData>;
|
|
297
|
-
declare const MOST_USED_LANGUAGES: Language[];
|
|
298
|
-
declare const LANGUAGES_LIST: string[];
|
|
299
|
-
|
|
300
|
-
type LanguageData = {
|
|
301
|
-
code: string;
|
|
302
|
-
baseName?: Language;
|
|
303
|
-
isMostUsed?: boolean;
|
|
304
|
-
voice?: {
|
|
305
|
-
code: string;
|
|
306
|
-
name: string;
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
|
-
|
|
310
|
-
declare enum TreeLevel {
|
|
311
|
-
DOMAIN = 0,
|
|
312
|
-
STANDARD = 1,
|
|
313
|
-
SKILL = 2
|
|
314
|
-
}
|
|
315
|
-
|
|
316
151
|
type GradeData = {
|
|
317
152
|
name: string;
|
|
318
153
|
displayOnly?: boolean;
|
|
319
154
|
noPrefix?: boolean;
|
|
320
155
|
};
|
|
321
|
-
type CommonGrades = Grade.OTHER | Grade.ZERO | Grade.K;
|
|
156
|
+
type CommonGrades = Grade.ALL | Grade.OTHER | Grade.ZERO | Grade.K;
|
|
322
157
|
type PrimaryGrades = CommonGrades | Grade.ONE | Grade.TWO | Grade.THREE | Grade.FOUR | Grade.FIVE | Grade.SIX | Grade.SEVEN | Grade.EIGHT | Grade.NINE | Grade.TEN | Grade.ELEVEN | Grade.TWELVE | Grade.THIRTEEN;
|
|
323
|
-
type HighSchoolGrades = Grade.
|
|
324
|
-
|
|
325
|
-
declare class PlatformDetection {
|
|
326
|
-
private static cachedPlatform;
|
|
327
|
-
private static get IS_REACT_NATIVE();
|
|
328
|
-
static get IS_WEB(): boolean;
|
|
329
|
-
static get IS_MOBILE(): boolean;
|
|
330
|
-
}
|
|
158
|
+
type HighSchoolGrades = Grade.ALGEBRA_1 | Grade.GEOMETRY | Grade.ALGEBRA_2 | Grade.INTEGRATED_MATH_I | Grade.INTEGRATED_MATH_II | Grade.INTEGRATED_MATH_III | Grade.PRECALCULUS;
|
|
159
|
+
type TreeNodeGrades = Grade.HS | Grade.HSG | Grade.HSA | Grade.HSS | Grade.HSF | Grade.HSN;
|
|
331
160
|
|
|
332
161
|
type IconProps = {
|
|
333
162
|
size?: number;
|
|
334
|
-
color?: string;
|
|
335
|
-
extraColor?: string;
|
|
336
163
|
};
|
|
337
164
|
|
|
338
165
|
type SSOConfig<E> = Readonly<{
|
|
@@ -479,7 +306,6 @@ type MobileCommon = {
|
|
|
479
306
|
GOOGLE_API_KEY: string;
|
|
480
307
|
GOOGLE_TEXT_TO_SPEECH_URL: string;
|
|
481
308
|
GOOGLE_TRANSLATE_URL: string;
|
|
482
|
-
SIGN_UP_BOOKING_ONBOARDING: string;
|
|
483
309
|
};
|
|
484
310
|
type MobileBaseVars = {
|
|
485
311
|
TEACHERS_WEB_URL: string;
|
|
@@ -488,7 +314,6 @@ type MobileBaseVars = {
|
|
|
488
314
|
CDN_HOST: string;
|
|
489
315
|
SOCKET_URL: string;
|
|
490
316
|
LOGGLY_TAG: string;
|
|
491
|
-
PROBLEM_CREATOR_URL: string;
|
|
492
317
|
} & MobileCommon;
|
|
493
318
|
type MobileVars<T extends SSOVariant> = Prettify<MobileBaseVars & T>;
|
|
494
319
|
type MobileVarsPreset = {
|
|
@@ -542,236 +367,107 @@ type EnvironmentVars<P extends Platform> = EnvPreset[P][Locale][Environment];
|
|
|
542
367
|
|
|
543
368
|
declare function buildTargetToEnvironment(buildTarget: PlatformBuildTarget): Environment;
|
|
544
369
|
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
BasicPlus = "BasicPlus",
|
|
549
|
-
BasicPlusMobile = "BasicPlusMobile",
|
|
550
|
-
BasicTime = "BasicTime",
|
|
551
|
-
BasicCurrency = "BasicCurrency",
|
|
552
|
-
BasicUnits = "BasicUnits",
|
|
553
|
-
BasicPlusPlus = "BasicPlusPlus",
|
|
554
|
-
BasicPlusPlusMobile = "BasicPlusPlusMobile",
|
|
555
|
-
Numpad = "Numpad",
|
|
556
|
-
Underlined = "Underlined"
|
|
557
|
-
}
|
|
558
|
-
declare enum DrawboardKeyboardUnitsGroupType {
|
|
559
|
-
LENGTH = "length",
|
|
560
|
-
AREA = "area",
|
|
561
|
-
VOLUME = "volume",
|
|
562
|
-
WEIGHT = "weight",
|
|
563
|
-
TIME = "time"
|
|
564
|
-
}
|
|
565
|
-
declare const DRAWBOARD_DEFAULT_KEY_ICON_PROPS: {
|
|
566
|
-
readonly size: 16;
|
|
567
|
-
readonly color: "#4d4d63";
|
|
568
|
-
};
|
|
569
|
-
declare const DRAWBOARD_DEFAULT_TEXT_STYLE: {
|
|
570
|
-
readonly fontSize: 14;
|
|
571
|
-
readonly fontWeight: 700;
|
|
572
|
-
};
|
|
573
|
-
declare const DRAWBOARD_STYLE_PRESETS: {
|
|
574
|
-
SMALL: {
|
|
575
|
-
button: {
|
|
576
|
-
width: number;
|
|
577
|
-
};
|
|
578
|
-
container: {
|
|
579
|
-
flexBasis: number;
|
|
580
|
-
} | undefined;
|
|
581
|
-
text: {
|
|
582
|
-
readonly fontSize: 14;
|
|
583
|
-
readonly fontWeight: 700;
|
|
584
|
-
};
|
|
370
|
+
type StudentsLocaleConfig = CommonLocaleConfig & {
|
|
371
|
+
textFormatting: {
|
|
372
|
+
replaceCommaWithSpace: boolean;
|
|
585
373
|
};
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
width: number;
|
|
589
|
-
};
|
|
590
|
-
container: {
|
|
591
|
-
flexBasis: number;
|
|
592
|
-
} | undefined;
|
|
593
|
-
text: {
|
|
594
|
-
readonly fontSize: 14;
|
|
595
|
-
readonly fontWeight: 700;
|
|
596
|
-
};
|
|
374
|
+
symbols: {
|
|
375
|
+
numberDecimalSeparator: string;
|
|
597
376
|
};
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
};
|
|
602
|
-
container: {
|
|
603
|
-
flexBasis: number;
|
|
604
|
-
} | undefined;
|
|
605
|
-
text: {
|
|
606
|
-
readonly fontSize: 14;
|
|
607
|
-
readonly fontWeight: 700;
|
|
608
|
-
};
|
|
377
|
+
practiceMode: {
|
|
378
|
+
languageCode: Locale;
|
|
379
|
+
defaultPracticeTreeId: string;
|
|
609
380
|
};
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
flexBasis: number;
|
|
616
|
-
} | undefined;
|
|
617
|
-
text: {
|
|
618
|
-
readonly fontSize: 14;
|
|
619
|
-
readonly fontWeight: 700;
|
|
381
|
+
chatbot: {
|
|
382
|
+
languageName: string;
|
|
383
|
+
tts: {
|
|
384
|
+
languageCodeFallback: string;
|
|
385
|
+
voiceNameFallback: string;
|
|
620
386
|
};
|
|
621
387
|
};
|
|
622
|
-
};
|
|
623
|
-
|
|
624
|
-
type DrawboardMathOperatorsGroup = Record<string, DrawboardKeyboardKey>;
|
|
625
|
-
type DrawboardKeyboardKey = {
|
|
626
|
-
icon?: ReactNode;
|
|
627
|
-
mathliveValue: string;
|
|
628
|
-
katexValue: string;
|
|
629
|
-
isSpecialSymbol?: boolean;
|
|
630
|
-
mathQuillValue?: string;
|
|
631
|
-
spreadsheetValue?: string;
|
|
632
|
-
label?: string;
|
|
633
|
-
style?: Record<string, any>;
|
|
634
|
-
};
|
|
635
|
-
type DrawboardKeyboardGroup = {
|
|
636
|
-
keys: DrawboardKeyboardKey[];
|
|
637
|
-
numOfRows?: number;
|
|
638
|
-
};
|
|
639
|
-
type DrawboardKeyboardGroups = Record<string, DrawboardKeyboardGroup>;
|
|
640
|
-
type DrawboardKeyboardRowsGroup = {
|
|
641
|
-
keys: DrawboardKeyboardKey[][];
|
|
642
|
-
};
|
|
643
|
-
type DrawboardKeyboardRowsGroups = Record<string, DrawboardKeyboardRowsGroup>;
|
|
644
|
-
|
|
645
|
-
type DrawboardKeyboardConfig = {
|
|
646
|
-
operators: Record<DrawboardKeyboardType, DrawboardKeyboardGroup>;
|
|
647
|
-
units: Record<DrawboardKeyboardUnitsGroupType, DrawboardKeyboardRowsGroup>;
|
|
648
|
-
};
|
|
649
|
-
type LocaleLanguageData = LanguageData & {
|
|
650
|
-
name: Language;
|
|
651
|
-
};
|
|
652
|
-
type StudentsLocaleConfig = CommonLocaleConfig & {
|
|
653
|
-
numberFormatting: {
|
|
654
|
-
decimalSeparator: NumberDecimalSeparator;
|
|
655
|
-
groupingSeparator: NumberGroupingSeparator;
|
|
656
|
-
};
|
|
657
|
-
language: LocaleLanguageData;
|
|
658
388
|
tts: {
|
|
659
389
|
replaceCommaWithSpace: boolean;
|
|
660
|
-
overrides: {
|
|
661
|
-
power: string;
|
|
662
|
-
};
|
|
663
390
|
};
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
defaultPracticeTreeId: string;
|
|
667
|
-
alwaysShowNavigationTab?: boolean;
|
|
391
|
+
translate: {
|
|
392
|
+
languageCodeFallback: string;
|
|
668
393
|
};
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
394
|
+
problem: {
|
|
395
|
+
choiceInputSelector: {
|
|
396
|
+
useSmallText: boolean;
|
|
397
|
+
};
|
|
398
|
+
choiceAnswerFeedback: {
|
|
399
|
+
useSlimLayout: boolean;
|
|
400
|
+
};
|
|
401
|
+
answer: {
|
|
402
|
+
shortButton: boolean;
|
|
403
|
+
};
|
|
672
404
|
};
|
|
673
405
|
exampleSolutions: {
|
|
674
406
|
languageName: string;
|
|
675
407
|
};
|
|
676
|
-
|
|
677
|
-
|
|
408
|
+
statsTab: {
|
|
409
|
+
buttonWithMinWidth: boolean;
|
|
678
410
|
};
|
|
679
|
-
|
|
680
|
-
|
|
411
|
+
smartEval: {
|
|
412
|
+
language: string;
|
|
681
413
|
};
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
declare const PROBLEM_CREATOR_DEFAULT_KEY_ICON_PROPS: {
|
|
685
|
-
readonly size: 16;
|
|
686
|
-
readonly color: "#4d4d63";
|
|
687
|
-
};
|
|
688
|
-
declare enum ProblemCreatorGroup {
|
|
689
|
-
BASIC = "basic",
|
|
690
|
-
DESCRIPTION = "description",
|
|
691
|
-
ADVANCED = "advanced",
|
|
692
|
-
ALGEBRA_TEXT = "algebraText",
|
|
693
|
-
ALGEBRA_SYMBOLS = "algebraSymbols",
|
|
694
|
-
MATH_ENTRY = "mathEntry"
|
|
695
|
-
}
|
|
696
|
-
declare enum ProblemCreatorUnitGroup {
|
|
697
|
-
LENGTH = "length",
|
|
698
|
-
AREA = "area",
|
|
699
|
-
VOLUME = "volume",
|
|
700
|
-
WEIGHT = "weight",
|
|
701
|
-
TIME = "time"
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
type ProblemCreatorKeyboardKey = {
|
|
705
|
-
value: string;
|
|
706
|
-
label?: string;
|
|
707
|
-
icon?: ReactElement;
|
|
708
|
-
};
|
|
709
|
-
type ProblemCreatorKeyboardGroup = {
|
|
710
|
-
id: string;
|
|
711
|
-
keys: ProblemCreatorKeyboardKey[];
|
|
712
|
-
className?: string;
|
|
713
|
-
};
|
|
714
|
-
type ProblemCreatorKeyboardGroups = Record<string, ProblemCreatorKeyboardGroup>;
|
|
715
|
-
type ProblemCreatorMathKeysGroup<T extends Record<string, string>> = {
|
|
716
|
-
[K in keyof T as T[K]]: ProblemCreatorKeyboardKey;
|
|
717
|
-
};
|
|
718
|
-
type ProblemCreatorKeyboardPreset = {
|
|
719
|
-
operators: {
|
|
720
|
-
[K in Exclude<ProblemCreatorGroup, ProblemCreatorGroup.MATH_ENTRY>]: ProblemCreatorKeyboardGroup;
|
|
721
|
-
};
|
|
722
|
-
units: {
|
|
723
|
-
[K in ProblemCreatorUnitGroup]: ProblemCreatorKeyboardGroup;
|
|
724
|
-
};
|
|
725
|
-
};
|
|
726
|
-
|
|
727
|
-
type ProblemCreatorKeyboardConfig = {
|
|
728
|
-
operators: {
|
|
729
|
-
[K in ProblemCreatorGroup]: ProblemCreatorKeyboardGroup;
|
|
730
|
-
};
|
|
731
|
-
units: {
|
|
732
|
-
[K in ProblemCreatorUnitGroup]: ProblemCreatorKeyboardGroup;
|
|
414
|
+
drawboard: {
|
|
415
|
+
basicManipulativesMaxGrade: number;
|
|
733
416
|
};
|
|
734
417
|
};
|
|
735
|
-
type ProblemCreatorConfig = {
|
|
736
|
-
useCommaForDecimal: boolean;
|
|
737
|
-
useDotForMultiplication: boolean;
|
|
738
|
-
savedProblemLocale: Locale;
|
|
739
|
-
keyboard: ProblemCreatorKeyboardConfig;
|
|
740
|
-
};
|
|
741
418
|
|
|
742
419
|
type TeachersLocaleConfig = CommonLocaleConfig & {
|
|
420
|
+
country: string;
|
|
743
421
|
emails: {
|
|
744
422
|
studentsList: string;
|
|
745
423
|
};
|
|
424
|
+
symbols: {
|
|
425
|
+
decimalSeparator: string;
|
|
426
|
+
};
|
|
427
|
+
date: {
|
|
428
|
+
use24HourFormat: boolean;
|
|
429
|
+
locale: DateLocale;
|
|
430
|
+
formats: {
|
|
431
|
+
full: DateFormat;
|
|
432
|
+
dayMonth: DateFormat;
|
|
433
|
+
hoursMinutes: DateFormat;
|
|
434
|
+
fullWithSeconds: DateFormat;
|
|
435
|
+
};
|
|
436
|
+
};
|
|
746
437
|
urls: {
|
|
747
438
|
specialBook: string;
|
|
748
439
|
helpCenter: string;
|
|
749
440
|
about: string;
|
|
750
441
|
};
|
|
442
|
+
bookshelf: {
|
|
443
|
+
limitSharedExercisesTooltipWidth: boolean;
|
|
444
|
+
};
|
|
751
445
|
problemsList: {
|
|
752
446
|
showProblemComplexity: boolean;
|
|
753
447
|
};
|
|
754
448
|
practiceMode: {
|
|
755
|
-
|
|
756
|
-
alwaysEnabled: boolean;
|
|
449
|
+
defaultTreeIdFallback: string;
|
|
757
450
|
};
|
|
758
451
|
matrix: {
|
|
759
452
|
forceShowRecommendations: boolean;
|
|
760
|
-
filterStandardsByGradeLevel: boolean;
|
|
761
453
|
forceMatrixMode?: MatrixMode;
|
|
762
454
|
};
|
|
763
455
|
pieChart: {
|
|
764
456
|
showExtraTreeDataContent: boolean;
|
|
765
457
|
};
|
|
458
|
+
problem: {
|
|
459
|
+
allowCommaDecimal: boolean;
|
|
460
|
+
};
|
|
461
|
+
getStarted: {
|
|
462
|
+
showSentEmailInfo: boolean;
|
|
463
|
+
};
|
|
766
464
|
firstLoginBooks: {
|
|
767
465
|
isLargeGrade: ((grade: number) => boolean) | null;
|
|
768
|
-
useHighSchoolGrades: boolean;
|
|
769
|
-
withGradeZero: boolean;
|
|
770
466
|
};
|
|
771
|
-
|
|
772
|
-
|
|
467
|
+
grades: {
|
|
468
|
+
showPrefix: boolean;
|
|
469
|
+
showOtherGrade: boolean;
|
|
773
470
|
};
|
|
774
|
-
problemCreator: ProblemCreatorConfig;
|
|
775
471
|
};
|
|
776
472
|
|
|
777
473
|
type AuthLocaleConfig<E> = {
|
|
@@ -803,35 +499,12 @@ type WebAdminLocaleConfig = {
|
|
|
803
499
|
apiRegion: ApiRegion;
|
|
804
500
|
};
|
|
805
501
|
|
|
806
|
-
type DateConfig = Readonly<{
|
|
807
|
-
use24HourFormat: boolean;
|
|
808
|
-
locale: string;
|
|
809
|
-
formats: {
|
|
810
|
-
dayMonth: string;
|
|
811
|
-
dayMonthYear: string;
|
|
812
|
-
hoursMinutes: string;
|
|
813
|
-
full: string;
|
|
814
|
-
fullWithSeconds: string;
|
|
815
|
-
};
|
|
816
|
-
}>;
|
|
817
|
-
|
|
818
|
-
type GradesConfig = Readonly<{
|
|
819
|
-
primary: Partial<Record<PrimaryGrades, GradeData>>;
|
|
820
|
-
highSchool: Partial<Record<HighSchoolGrades, GradeData>>;
|
|
821
|
-
treeGradeOffset?: number;
|
|
822
|
-
}>;
|
|
823
|
-
|
|
824
|
-
type MobileLocaleConfig<E> = StudentsLocaleConfig & TeachersLocaleConfig & AuthLocaleConfig<E>;
|
|
825
|
-
|
|
826
502
|
type CommonLocaleConfig = Readonly<{
|
|
827
503
|
name: string;
|
|
828
504
|
languageName: string;
|
|
829
|
-
country: string;
|
|
830
505
|
languageHeader: string;
|
|
831
506
|
contentLocale: Locale;
|
|
832
507
|
shortCode: string;
|
|
833
|
-
date: DateConfig;
|
|
834
|
-
grades: GradesConfig;
|
|
835
508
|
}>;
|
|
836
509
|
type LocalePreset = {
|
|
837
510
|
[Platform.STUDENTS_WEB]: {
|
|
@@ -850,684 +523,30 @@ type LocalePreset = {
|
|
|
850
523
|
[key in Locale]: WebAdminLocaleConfig;
|
|
851
524
|
};
|
|
852
525
|
[Platform.MOBILE]: {
|
|
853
|
-
[key in Locale]:
|
|
526
|
+
[key in Locale]: AuthLocaleConfig<MobileVars<SSOByLocale[key]>>;
|
|
854
527
|
};
|
|
855
528
|
};
|
|
856
529
|
type LocaleConfig<P extends Platform, L extends Locale> = LocalePreset[P][L];
|
|
857
530
|
|
|
858
531
|
type DistrictLocaleConfig = CommonLocaleConfig & {
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
declare const DRAWBOARD_BASIC_PLUS: DrawboardKeyboardGroups;
|
|
870
|
-
|
|
871
|
-
declare const DRAWBOARD_BASIC_PLUS_PLUS: DrawboardKeyboardGroups;
|
|
872
|
-
|
|
873
|
-
declare const DRAWBOARD_CURRENCY: Record<string, DrawboardKeyboardGroup>;
|
|
874
|
-
|
|
875
|
-
declare const DRAWBOARD_NUMPAD: DrawboardKeyboardGroups;
|
|
876
|
-
|
|
877
|
-
declare const DRAWBOARD_TIME: DrawboardKeyboardGroups;
|
|
878
|
-
|
|
879
|
-
declare const DRAWBOARD_UNDERLINED: DrawboardKeyboardGroup;
|
|
880
|
-
|
|
881
|
-
declare const DRAWBOARD_LENGTH: DrawboardKeyboardRowsGroups;
|
|
882
|
-
declare const DRAWBOARD_AREA: DrawboardKeyboardRowsGroups;
|
|
883
|
-
declare const DRAWBOARD_VOLUME: DrawboardKeyboardRowsGroups;
|
|
884
|
-
declare const DRAWBOARD_WEIGHT: DrawboardKeyboardRowsGroups;
|
|
885
|
-
declare const DRAWBOARD_TIME_UNITS: DrawboardKeyboardRowsGroups;
|
|
886
|
-
|
|
887
|
-
declare const DRAWBOARD_MATH_BASIC_OPERATORS: DrawboardMathOperatorsGroup;
|
|
888
|
-
|
|
889
|
-
declare const DRAWBOARD_MATH_INTEGRALS_AND_DERIVATIVES: DrawboardMathOperatorsGroup;
|
|
890
|
-
|
|
891
|
-
declare const DRAWBOARD_MATH_GEOMETRY_SYMBOLS: DrawboardMathOperatorsGroup;
|
|
892
|
-
|
|
893
|
-
declare const DRAWBOARD_MATH_SPECIAL_OPERATORS: DrawboardMathOperatorsGroup;
|
|
894
|
-
|
|
895
|
-
declare const DRAWBOARD_MATH_SYMBOLS: DrawboardMathOperatorsGroup;
|
|
896
|
-
|
|
897
|
-
declare const DRAWBOARD_MATH_TEXT_SYMBOLS: DrawboardMathOperatorsGroup;
|
|
898
|
-
|
|
899
|
-
declare const DRAWBOARD_MATH_BASIC_TRIGONOMETRIC_FUNCTIONS: DrawboardMathOperatorsGroup;
|
|
900
|
-
declare const DRAWBOARD_MATH_INVERSE_TRIGONOMETRIC_FUNCTIONS: DrawboardMathOperatorsGroup;
|
|
901
|
-
|
|
902
|
-
declare const DRAWBOARD_MATH_CURRENCY_UNITS: DrawboardMathOperatorsGroup;
|
|
903
|
-
declare const DRAWBOARD_MATH_LENGTH_UNITS: DrawboardMathOperatorsGroup;
|
|
904
|
-
declare const DRAWBOARD_MATH_AREA_UNITS: DrawboardMathOperatorsGroup;
|
|
905
|
-
declare const DRAWBOARD_MATH_VOLUME_UNITS: {
|
|
906
|
-
readonly CUBIC_KILOMETER: {
|
|
907
|
-
readonly label: "km³";
|
|
908
|
-
readonly mathliveValue: "\\mathrm{km}^3";
|
|
909
|
-
readonly katexValue: "km^3";
|
|
910
|
-
readonly mathQuillValue: "km^{3}";
|
|
911
|
-
readonly style: {
|
|
912
|
-
button: {
|
|
913
|
-
width: number;
|
|
914
|
-
};
|
|
915
|
-
container: {
|
|
916
|
-
flexBasis: number;
|
|
917
|
-
} | undefined;
|
|
918
|
-
text: {
|
|
919
|
-
readonly fontSize: 14;
|
|
920
|
-
readonly fontWeight: 700;
|
|
921
|
-
};
|
|
922
|
-
};
|
|
923
|
-
};
|
|
924
|
-
readonly CUBIC_METER: {
|
|
925
|
-
readonly label: "m³";
|
|
926
|
-
readonly mathliveValue: "\\mathrm{m}^3";
|
|
927
|
-
readonly katexValue: "m^3";
|
|
928
|
-
readonly mathQuillValue: "m^{3}";
|
|
929
|
-
readonly style: {
|
|
930
|
-
button: {
|
|
931
|
-
width: number;
|
|
932
|
-
};
|
|
933
|
-
container: {
|
|
934
|
-
flexBasis: number;
|
|
935
|
-
} | undefined;
|
|
936
|
-
text: {
|
|
937
|
-
readonly fontSize: 14;
|
|
938
|
-
readonly fontWeight: 700;
|
|
939
|
-
};
|
|
940
|
-
};
|
|
941
|
-
};
|
|
942
|
-
readonly CUBIC_DECIMETER: {
|
|
943
|
-
readonly label: "dm³";
|
|
944
|
-
readonly mathliveValue: "\\mathrm{dm}^3";
|
|
945
|
-
readonly katexValue: "dm^3";
|
|
946
|
-
readonly mathQuillValue: "dm^{3}";
|
|
947
|
-
readonly style: {
|
|
948
|
-
button: {
|
|
949
|
-
width: number;
|
|
950
|
-
};
|
|
951
|
-
container: {
|
|
952
|
-
flexBasis: number;
|
|
953
|
-
} | undefined;
|
|
954
|
-
text: {
|
|
955
|
-
readonly fontSize: 14;
|
|
956
|
-
readonly fontWeight: 700;
|
|
957
|
-
};
|
|
958
|
-
};
|
|
959
|
-
};
|
|
960
|
-
readonly CUBIC_CENTIMETER: {
|
|
961
|
-
readonly label: "cm³";
|
|
962
|
-
readonly mathliveValue: "\\mathrm{cm}^3";
|
|
963
|
-
readonly katexValue: "cm^3";
|
|
964
|
-
readonly mathQuillValue: "cm^{3}";
|
|
965
|
-
readonly style: {
|
|
966
|
-
button: {
|
|
967
|
-
width: number;
|
|
968
|
-
};
|
|
969
|
-
container: {
|
|
970
|
-
flexBasis: number;
|
|
971
|
-
} | undefined;
|
|
972
|
-
text: {
|
|
973
|
-
readonly fontSize: 14;
|
|
974
|
-
readonly fontWeight: 700;
|
|
975
|
-
};
|
|
976
|
-
};
|
|
977
|
-
};
|
|
978
|
-
readonly CUBIC_MILLIMETER: {
|
|
979
|
-
readonly label: "mm³";
|
|
980
|
-
readonly mathliveValue: "\\mathrm{mm}^3";
|
|
981
|
-
readonly katexValue: "mm^3";
|
|
982
|
-
readonly mathQuillValue: "mm^{3}";
|
|
983
|
-
readonly style: {
|
|
984
|
-
button: {
|
|
985
|
-
width: number;
|
|
986
|
-
};
|
|
987
|
-
container: {
|
|
988
|
-
flexBasis: number;
|
|
989
|
-
} | undefined;
|
|
990
|
-
text: {
|
|
991
|
-
readonly fontSize: 14;
|
|
992
|
-
readonly fontWeight: 700;
|
|
993
|
-
};
|
|
994
|
-
};
|
|
995
|
-
};
|
|
996
|
-
readonly CUBIC_INCH: {
|
|
997
|
-
readonly label: "in³";
|
|
998
|
-
readonly mathliveValue: "\\mathrm{in}^3";
|
|
999
|
-
readonly katexValue: "in^3";
|
|
1000
|
-
readonly mathQuillValue: "in^{3}";
|
|
1001
|
-
readonly style: {
|
|
1002
|
-
button: {
|
|
1003
|
-
width: number;
|
|
1004
|
-
};
|
|
1005
|
-
container: {
|
|
1006
|
-
flexBasis: number;
|
|
1007
|
-
} | undefined;
|
|
1008
|
-
text: {
|
|
1009
|
-
readonly fontSize: 14;
|
|
1010
|
-
readonly fontWeight: 700;
|
|
1011
|
-
};
|
|
1012
|
-
};
|
|
1013
|
-
};
|
|
1014
|
-
readonly CUBIC_FOOT: {
|
|
1015
|
-
readonly label: "ft³";
|
|
1016
|
-
readonly mathliveValue: "\\mathrm{ft}^3";
|
|
1017
|
-
readonly katexValue: "ft^3";
|
|
1018
|
-
readonly mathQuillValue: "ft^{3}";
|
|
1019
|
-
readonly style: {
|
|
1020
|
-
button: {
|
|
1021
|
-
width: number;
|
|
1022
|
-
};
|
|
1023
|
-
container: {
|
|
1024
|
-
flexBasis: number;
|
|
1025
|
-
} | undefined;
|
|
1026
|
-
text: {
|
|
1027
|
-
readonly fontSize: 14;
|
|
1028
|
-
readonly fontWeight: 700;
|
|
1029
|
-
};
|
|
1030
|
-
};
|
|
1031
|
-
};
|
|
1032
|
-
readonly CUBIC_MILE: {
|
|
1033
|
-
readonly label: "mi³";
|
|
1034
|
-
readonly mathliveValue: "\\mathrm{mi}^3";
|
|
1035
|
-
readonly katexValue: "mi^3";
|
|
1036
|
-
readonly mathQuillValue: "mi^{3}";
|
|
1037
|
-
readonly style: {
|
|
1038
|
-
button: {
|
|
1039
|
-
width: number;
|
|
1040
|
-
};
|
|
1041
|
-
container: {
|
|
1042
|
-
flexBasis: number;
|
|
1043
|
-
} | undefined;
|
|
1044
|
-
text: {
|
|
1045
|
-
readonly fontSize: 14;
|
|
1046
|
-
readonly fontWeight: 700;
|
|
1047
|
-
};
|
|
1048
|
-
};
|
|
1049
|
-
};
|
|
1050
|
-
readonly CUBIC_YARD: {
|
|
1051
|
-
readonly label: "yd³";
|
|
1052
|
-
readonly mathliveValue: "\\mathrm{yd}^3";
|
|
1053
|
-
readonly katexValue: "yd^3";
|
|
1054
|
-
readonly mathQuillValue: "yd^{3}";
|
|
1055
|
-
readonly style: {
|
|
1056
|
-
button: {
|
|
1057
|
-
width: number;
|
|
1058
|
-
};
|
|
1059
|
-
container: {
|
|
1060
|
-
flexBasis: number;
|
|
1061
|
-
} | undefined;
|
|
1062
|
-
text: {
|
|
1063
|
-
readonly fontSize: 14;
|
|
1064
|
-
readonly fontWeight: 700;
|
|
1065
|
-
};
|
|
1066
|
-
};
|
|
1067
|
-
};
|
|
1068
|
-
readonly MILLILITER: {
|
|
1069
|
-
readonly label: "ml";
|
|
1070
|
-
readonly mathliveValue: "\\mathrm{mL}";
|
|
1071
|
-
readonly katexValue: "ml";
|
|
1072
|
-
readonly style: {
|
|
1073
|
-
button: {
|
|
1074
|
-
width: number;
|
|
1075
|
-
};
|
|
1076
|
-
container: {
|
|
1077
|
-
flexBasis: number;
|
|
1078
|
-
} | undefined;
|
|
1079
|
-
text: {
|
|
1080
|
-
readonly fontSize: 14;
|
|
1081
|
-
readonly fontWeight: 700;
|
|
1082
|
-
};
|
|
532
|
+
date: {
|
|
533
|
+
use24HourFormat: boolean;
|
|
534
|
+
locale: DateLocale;
|
|
535
|
+
formats: {
|
|
536
|
+
full: DateFormat;
|
|
537
|
+
dayMonthYear: DateFormat;
|
|
538
|
+
dayMonth: DateFormat;
|
|
539
|
+
hoursMinutes: DateFormat;
|
|
540
|
+
fullWithSeconds: DateFormat;
|
|
1083
541
|
};
|
|
1084
542
|
};
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
readonly style: {
|
|
1090
|
-
button: {
|
|
1091
|
-
width: number;
|
|
1092
|
-
};
|
|
1093
|
-
container: {
|
|
1094
|
-
flexBasis: number;
|
|
1095
|
-
} | undefined;
|
|
1096
|
-
text: {
|
|
1097
|
-
readonly fontSize: 14;
|
|
1098
|
-
readonly fontWeight: 700;
|
|
1099
|
-
};
|
|
1100
|
-
};
|
|
1101
|
-
};
|
|
1102
|
-
readonly MILLILITER_SE: {
|
|
1103
|
-
readonly label: "ml";
|
|
1104
|
-
readonly mathliveValue: "\\mathrm{ml}";
|
|
1105
|
-
readonly katexValue: "ml";
|
|
1106
|
-
readonly style: {
|
|
1107
|
-
button: {
|
|
1108
|
-
width: number;
|
|
1109
|
-
};
|
|
1110
|
-
container: {
|
|
1111
|
-
flexBasis: number;
|
|
1112
|
-
} | undefined;
|
|
1113
|
-
text: {
|
|
1114
|
-
readonly fontSize: 14;
|
|
1115
|
-
readonly fontWeight: 700;
|
|
1116
|
-
};
|
|
1117
|
-
};
|
|
1118
|
-
};
|
|
1119
|
-
readonly LITER_SE: {
|
|
1120
|
-
readonly label: "l";
|
|
1121
|
-
readonly mathliveValue: "\\mathrm{l}";
|
|
1122
|
-
readonly katexValue: "l";
|
|
1123
|
-
readonly style: {
|
|
1124
|
-
button: {
|
|
1125
|
-
width: number;
|
|
1126
|
-
};
|
|
1127
|
-
container: {
|
|
1128
|
-
flexBasis: number;
|
|
1129
|
-
} | undefined;
|
|
1130
|
-
text: {
|
|
1131
|
-
readonly fontSize: 14;
|
|
1132
|
-
readonly fontWeight: 700;
|
|
1133
|
-
};
|
|
1134
|
-
};
|
|
1135
|
-
};
|
|
1136
|
-
readonly DL: {
|
|
1137
|
-
readonly label: "dl";
|
|
1138
|
-
readonly mathliveValue: "\\mathrm{dl}";
|
|
1139
|
-
readonly katexValue: "dl";
|
|
1140
|
-
readonly style: {
|
|
1141
|
-
button: {
|
|
1142
|
-
width: number;
|
|
1143
|
-
};
|
|
1144
|
-
container: {
|
|
1145
|
-
flexBasis: number;
|
|
1146
|
-
} | undefined;
|
|
1147
|
-
text: {
|
|
1148
|
-
readonly fontSize: 14;
|
|
1149
|
-
readonly fontWeight: 700;
|
|
1150
|
-
};
|
|
1151
|
-
};
|
|
1152
|
-
};
|
|
1153
|
-
readonly CUP: {
|
|
1154
|
-
readonly label: "cup";
|
|
1155
|
-
readonly mathliveValue: "\\mathrm{cup}";
|
|
1156
|
-
readonly katexValue: "cup";
|
|
1157
|
-
readonly mathQuillValue: "\\cup";
|
|
1158
|
-
readonly style: {
|
|
1159
|
-
button: {
|
|
1160
|
-
width: number;
|
|
1161
|
-
};
|
|
1162
|
-
container: {
|
|
1163
|
-
flexBasis: number;
|
|
1164
|
-
} | undefined;
|
|
1165
|
-
text: {
|
|
1166
|
-
readonly fontSize: 14;
|
|
1167
|
-
readonly fontWeight: 700;
|
|
1168
|
-
};
|
|
1169
|
-
};
|
|
1170
|
-
};
|
|
1171
|
-
readonly GAL: {
|
|
1172
|
-
readonly label: "gal";
|
|
1173
|
-
readonly mathliveValue: "\\mathrm{gal}";
|
|
1174
|
-
readonly katexValue: "gal";
|
|
1175
|
-
readonly style: {
|
|
1176
|
-
button: {
|
|
1177
|
-
width: number;
|
|
1178
|
-
};
|
|
1179
|
-
container: {
|
|
1180
|
-
flexBasis: number;
|
|
1181
|
-
} | undefined;
|
|
1182
|
-
text: {
|
|
1183
|
-
readonly fontSize: 14;
|
|
1184
|
-
readonly fontWeight: 700;
|
|
1185
|
-
};
|
|
1186
|
-
};
|
|
1187
|
-
};
|
|
1188
|
-
readonly PINT: {
|
|
1189
|
-
readonly label: "pt";
|
|
1190
|
-
readonly mathliveValue: "\\mathrm{pt}";
|
|
1191
|
-
readonly katexValue: "pt";
|
|
1192
|
-
readonly style: {
|
|
1193
|
-
button: {
|
|
1194
|
-
width: number;
|
|
1195
|
-
};
|
|
1196
|
-
container: {
|
|
1197
|
-
flexBasis: number;
|
|
1198
|
-
} | undefined;
|
|
1199
|
-
text: {
|
|
1200
|
-
readonly fontSize: 14;
|
|
1201
|
-
readonly fontWeight: 700;
|
|
1202
|
-
};
|
|
1203
|
-
};
|
|
1204
|
-
};
|
|
1205
|
-
readonly QUART: {
|
|
1206
|
-
readonly label: "qt";
|
|
1207
|
-
readonly mathliveValue: "\\mathrm{qt}";
|
|
1208
|
-
readonly katexValue: "qt";
|
|
1209
|
-
readonly style: {
|
|
1210
|
-
button: {
|
|
1211
|
-
width: number;
|
|
1212
|
-
};
|
|
1213
|
-
container: {
|
|
1214
|
-
flexBasis: number;
|
|
1215
|
-
} | undefined;
|
|
1216
|
-
text: {
|
|
1217
|
-
readonly fontSize: 14;
|
|
1218
|
-
readonly fontWeight: 700;
|
|
1219
|
-
};
|
|
1220
|
-
};
|
|
1221
|
-
};
|
|
1222
|
-
readonly FLOZ: {
|
|
1223
|
-
readonly label: "floz";
|
|
1224
|
-
readonly mathliveValue: "\\mathrm{floz}";
|
|
1225
|
-
readonly katexValue: "floz";
|
|
1226
|
-
readonly style: {
|
|
1227
|
-
button: {
|
|
1228
|
-
width: number;
|
|
1229
|
-
};
|
|
1230
|
-
container: {
|
|
1231
|
-
flexBasis: number;
|
|
1232
|
-
} | undefined;
|
|
1233
|
-
text: {
|
|
1234
|
-
readonly fontSize: 14;
|
|
1235
|
-
readonly fontWeight: 700;
|
|
1236
|
-
};
|
|
1237
|
-
};
|
|
1238
|
-
};
|
|
1239
|
-
readonly CL: {
|
|
1240
|
-
readonly label: "cl";
|
|
1241
|
-
readonly mathliveValue: "\\mathrm{cl}";
|
|
1242
|
-
readonly katexValue: "cl";
|
|
1243
|
-
readonly style: {
|
|
1244
|
-
button: {
|
|
1245
|
-
width: number;
|
|
1246
|
-
};
|
|
1247
|
-
container: {
|
|
1248
|
-
flexBasis: number;
|
|
1249
|
-
} | undefined;
|
|
1250
|
-
text: {
|
|
1251
|
-
readonly fontSize: 14;
|
|
1252
|
-
readonly fontWeight: 700;
|
|
1253
|
-
};
|
|
1254
|
-
};
|
|
1255
|
-
};
|
|
1256
|
-
};
|
|
1257
|
-
declare const DRAWBOARD_MATH_WEIGHT_UNITS: DrawboardMathOperatorsGroup;
|
|
1258
|
-
declare const DRAWBOARD_MATH_TIME_UNITS: DrawboardMathOperatorsGroup;
|
|
1259
|
-
|
|
1260
|
-
declare const PROBLEM_CREATOR_ADVANCED: ProblemCreatorKeyboardGroup;
|
|
1261
|
-
|
|
1262
|
-
declare const PROBLEM_CREATOR_ALGEBRA_TEXT: ProblemCreatorKeyboardGroup;
|
|
1263
|
-
declare const PROBLEM_CREATOR_ALGEBRA_SYMBOLS: ProblemCreatorKeyboardGroup;
|
|
1264
|
-
|
|
1265
|
-
declare const PROBLEM_CREATOR_BASIC: {
|
|
1266
|
-
readonly DOT: {
|
|
1267
|
-
readonly id: "basic";
|
|
1268
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1269
|
-
};
|
|
1270
|
-
readonly COMMA: {
|
|
1271
|
-
readonly id: "basic";
|
|
1272
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1273
|
-
};
|
|
1274
|
-
};
|
|
1275
|
-
|
|
1276
|
-
declare const PROBLEM_CREATOR_DESCRIPTION: {
|
|
1277
|
-
readonly EXTENDED_MULT_BASIC_ROOTS: {
|
|
1278
|
-
readonly id: "description";
|
|
1279
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1280
|
-
};
|
|
1281
|
-
readonly DOT_EXTENDED_ROOTS: {
|
|
1282
|
-
readonly id: "description";
|
|
1283
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1284
|
-
};
|
|
1285
|
-
readonly DOT_BASIC_ROOTS: {
|
|
1286
|
-
readonly id: "description";
|
|
1287
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
543
|
+
grades: {
|
|
544
|
+
primary: Partial<Record<PrimaryGrades, GradeData>>;
|
|
545
|
+
highSchool: Partial<Record<HighSchoolGrades, GradeData>>;
|
|
546
|
+
treeNode: Partial<Record<TreeNodeGrades, GradeData>>;
|
|
1288
547
|
};
|
|
1289
548
|
};
|
|
1290
549
|
|
|
1291
|
-
declare const PROBLEM_CREATOR_MATH_ENTRY_BASIC: {
|
|
1292
|
-
readonly id: "math-entry-basic";
|
|
1293
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1294
|
-
};
|
|
1295
|
-
declare const PROBLEM_CREATOR_MATH_ENTRY_UNITS: {
|
|
1296
|
-
readonly SE: {
|
|
1297
|
-
readonly id: "math-entry-units";
|
|
1298
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1299
|
-
};
|
|
1300
|
-
readonly DE: {
|
|
1301
|
-
readonly id: "math-entry-units";
|
|
1302
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1303
|
-
};
|
|
1304
|
-
readonly GB: {
|
|
1305
|
-
readonly id: "math-entry-units";
|
|
1306
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1307
|
-
};
|
|
1308
|
-
readonly US: {
|
|
1309
|
-
readonly id: "math-entry-units";
|
|
1310
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1311
|
-
};
|
|
1312
|
-
};
|
|
1313
|
-
|
|
1314
|
-
declare const PROBLEM_CREATOR_LENGTH: {
|
|
1315
|
-
readonly METRIC: {
|
|
1316
|
-
readonly id: "length-units";
|
|
1317
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1318
|
-
};
|
|
1319
|
-
readonly MIXED: {
|
|
1320
|
-
readonly id: "length-units";
|
|
1321
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1322
|
-
};
|
|
1323
|
-
};
|
|
1324
|
-
declare const PROBLEM_CREATOR_AREA: {
|
|
1325
|
-
readonly METRIC: {
|
|
1326
|
-
readonly id: "area-units";
|
|
1327
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1328
|
-
};
|
|
1329
|
-
readonly MIXED: {
|
|
1330
|
-
readonly id: "area-units";
|
|
1331
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1332
|
-
};
|
|
1333
|
-
};
|
|
1334
|
-
declare const PROBLEM_CREATOR_VOLUME: {
|
|
1335
|
-
readonly METRIC: {
|
|
1336
|
-
readonly id: "volume-units";
|
|
1337
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1338
|
-
};
|
|
1339
|
-
readonly MIXED: {
|
|
1340
|
-
readonly id: "volume-units";
|
|
1341
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1342
|
-
};
|
|
1343
|
-
};
|
|
1344
|
-
declare const PROBLEM_CREATOR_WEIGHT: {
|
|
1345
|
-
readonly METRIC: {
|
|
1346
|
-
readonly id: "weight-units";
|
|
1347
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1348
|
-
};
|
|
1349
|
-
readonly MIXED: {
|
|
1350
|
-
readonly id: "weight-units";
|
|
1351
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1352
|
-
};
|
|
1353
|
-
};
|
|
1354
|
-
declare const PROBLEM_CREATOR_TIME: {
|
|
1355
|
-
readonly H24: {
|
|
1356
|
-
readonly id: "time-units";
|
|
1357
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1358
|
-
};
|
|
1359
|
-
readonly H24_DAYS: {
|
|
1360
|
-
readonly id: "time-units";
|
|
1361
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1362
|
-
};
|
|
1363
|
-
};
|
|
1364
|
-
|
|
1365
|
-
declare enum ProblemCreatorMathBasicOperator {
|
|
1366
|
-
ADDITION = "ADDITION",
|
|
1367
|
-
SUBTRACTION = "SUBTRACTION",
|
|
1368
|
-
MULTIPLICATION = "MULTIPLICATION",
|
|
1369
|
-
DIVISION = "DIVISION",
|
|
1370
|
-
LESS_THAN = "LESS_THAN",
|
|
1371
|
-
GREATER_THAN = "GREATER_THAN",
|
|
1372
|
-
LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
|
|
1373
|
-
GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
|
|
1374
|
-
EQUALS = "EQUALS",
|
|
1375
|
-
NOT_EQUAL = "NOT_EQUAL",
|
|
1376
|
-
APPROXIMATELY_EQUAL = "APPROXIMATELY_EQUAL",
|
|
1377
|
-
DECIMAL_POINT = "DECIMAL_POINT",
|
|
1378
|
-
COMMA = "COMMA",
|
|
1379
|
-
COLON = "COLON",
|
|
1380
|
-
DOT = "DOT",
|
|
1381
|
-
PERCENT = "PERCENT",
|
|
1382
|
-
PREMILE = "PREMILE",
|
|
1383
|
-
SLASH = "SLASH",
|
|
1384
|
-
NTH_POWER = "NTH_POWER",
|
|
1385
|
-
SQUARE_POWER = "SQUARE_POWER",
|
|
1386
|
-
CUBE_POWER = "CUBE_POWER",
|
|
1387
|
-
FRACTION = "FRACTION",
|
|
1388
|
-
SQUARE_ROOT = "SQUARE_ROOT",
|
|
1389
|
-
CUBE_ROOT = "CUBE_ROOT",
|
|
1390
|
-
NTH_ROOT = "NTH_ROOT",
|
|
1391
|
-
SIMILARITY = "SIMILARITY",
|
|
1392
|
-
CONGRUENT = "CONGRUENT",
|
|
1393
|
-
ELEMENT_OF = "ELEMENT_OF",
|
|
1394
|
-
NOT_ELEMENT_OF = "NOT_ELEMENT_OF",
|
|
1395
|
-
SUBSET = "SUBSET",
|
|
1396
|
-
INTERSECTION = "INTERSECTION",
|
|
1397
|
-
UNION = "UNION",
|
|
1398
|
-
INFINITY = "INFINITY",
|
|
1399
|
-
EMPTY = "EMPTY",
|
|
1400
|
-
PLUS_MINUS = "PLUS_MINUS",
|
|
1401
|
-
SUBSCRIPT_VARIABLE = "SUBSCRIPT_VARIABLE",
|
|
1402
|
-
SUM = "SUM",
|
|
1403
|
-
PARENTHESES = "PARENTHESES",
|
|
1404
|
-
ORDERED_PAIR = "ORDERED_PAIR"
|
|
1405
|
-
}
|
|
1406
|
-
declare const PROBLEM_CREATOR_MATH_BASIC_OPERATORS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathBasicOperator>;
|
|
1407
|
-
|
|
1408
|
-
declare enum ProblemCreatorMathSegmentSymbols {
|
|
1409
|
-
BIDIRECTIONAL_SEGMENT = "BIDIRECTIONAL_SEGMENT",
|
|
1410
|
-
LEFT_DIRECTED_SEGMENT = "LEFT_DIRECTED_SEGMENT",
|
|
1411
|
-
RIGHT_DIRECTED_SEGMENT = "RIGHT_DIRECTED_SEGMENT",
|
|
1412
|
-
LINE_SEGMENT = "LINE_SEGMENT"
|
|
1413
|
-
}
|
|
1414
|
-
declare enum ProblemCreatorMathGeometrySymbols {
|
|
1415
|
-
DEGREE = "DEGREE",
|
|
1416
|
-
ANGLE = "ANGLE",
|
|
1417
|
-
PARALLEL = "PARALLEL",
|
|
1418
|
-
PERPENDICULAR = "PERPENDICULAR"
|
|
1419
|
-
}
|
|
1420
|
-
declare const PROBLEM_CREATOR_MATH_GEOMETRY_SYMBOLS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathGeometrySymbols>;
|
|
1421
|
-
declare const PROBLEM_CREATOR_MATH_SEGMENT_SYMBOLS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathSegmentSymbols>;
|
|
1422
|
-
|
|
1423
|
-
declare enum ProblemCreatorMathSymbol {
|
|
1424
|
-
ALPHA = "ALPHA",
|
|
1425
|
-
BETA = "BETA",
|
|
1426
|
-
GAMMA = "GAMMA",
|
|
1427
|
-
LAMBDA = "LAMBDA",
|
|
1428
|
-
DELTA = "DELTA",
|
|
1429
|
-
THETA = "THETA",
|
|
1430
|
-
OMEGA_UPPERCASE = "OMEGAUPPERCASE",
|
|
1431
|
-
OMEGA_LOWERCASE = "OMEGALOWERCASE",
|
|
1432
|
-
MU = "MU",
|
|
1433
|
-
ETA = "ETA",
|
|
1434
|
-
EPSILON = "EPSILON",
|
|
1435
|
-
SIGMA = "SIGMA",
|
|
1436
|
-
SIGMA_SUM = "SIGMA_SUM",
|
|
1437
|
-
RHO = "RHO",
|
|
1438
|
-
PI = "PI",
|
|
1439
|
-
PHI = "PHI"
|
|
1440
|
-
}
|
|
1441
|
-
declare const PROBLEM_CREATOR_MATH_SYMBOLS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathSymbol>;
|
|
1442
|
-
|
|
1443
|
-
declare enum ProblemCreatorMathCurrencyUnit {
|
|
1444
|
-
KRONE = "KRONE",
|
|
1445
|
-
DOLLAR = "DOLLAR",
|
|
1446
|
-
EURO = "EURO",
|
|
1447
|
-
POUND = "POUND",
|
|
1448
|
-
PESO = "PESO",
|
|
1449
|
-
YEN = "YEN",
|
|
1450
|
-
CENT = "CENT"
|
|
1451
|
-
}
|
|
1452
|
-
declare enum ProblemCreatorMathLengthUnit {
|
|
1453
|
-
KILOMETER = "KILOMETER",
|
|
1454
|
-
METER = "METER",
|
|
1455
|
-
DECIMETER = "DECIMETER",
|
|
1456
|
-
CENTIMETER = "CENTIMETER",
|
|
1457
|
-
MILLIMETER = "MILLIMETER",
|
|
1458
|
-
HECTARE = "HECTARE",
|
|
1459
|
-
INCH = "INCH",
|
|
1460
|
-
FOOT = "FOOT",
|
|
1461
|
-
YARD = "YARD",
|
|
1462
|
-
YARDS = "YARDS",
|
|
1463
|
-
MILE = "MILE",
|
|
1464
|
-
MILE_SE = "MILE_SE"
|
|
1465
|
-
}
|
|
1466
|
-
declare enum ProblemCreatorMathAreaUnit {
|
|
1467
|
-
SQUARE_KILOMETER = "SQUARE_KILOMETER",
|
|
1468
|
-
SQUARE_METER = "SQUARE_METER",
|
|
1469
|
-
SQUARE_DECIMETER = "SQUARE_DECIMETER",
|
|
1470
|
-
SQUARE_CENTIMETER = "SQUARE_CENTIMETER",
|
|
1471
|
-
SQUARE_MILLIMETER = "SQUARE_MILLIMETER",
|
|
1472
|
-
SQUARE_INCH = "SQUARE_INCH",
|
|
1473
|
-
SQUARE_FOOT = "SQUARE_FOOT",
|
|
1474
|
-
SQUARE_MILE = "SQUARE_MILE",
|
|
1475
|
-
SQUARE_YARD = "SQUARE_YARD"
|
|
1476
|
-
}
|
|
1477
|
-
declare enum ProblemCreatorMathVolumeUnit {
|
|
1478
|
-
CUBIC_KILOMETER = "CUBIC_KILOMETER",
|
|
1479
|
-
CUBIC_METER = "CUBIC_METER",
|
|
1480
|
-
CUBIC_DECIMETER = "CUBIC_DECIMETER",
|
|
1481
|
-
CUBIC_CENTIMETER = "CUBIC_CENTIMETER",
|
|
1482
|
-
CUBIC_MILLIMETER = "CUBIC_MILLIMETER",
|
|
1483
|
-
CUBIC_INCH = "CUBIC_INCH",
|
|
1484
|
-
CUBIC_FOOT = "CUBIC_FOOT",
|
|
1485
|
-
CUBIC_MILE = "CUBIC_MILE",
|
|
1486
|
-
CUBIC_YARD = "CUBIC_YARD",
|
|
1487
|
-
MILLILITER = "MILLILITER",
|
|
1488
|
-
LITER = "LITER",
|
|
1489
|
-
MILLILITER_SE = "MILLILITER_SE",
|
|
1490
|
-
LITER_SE = "LITER_SE",
|
|
1491
|
-
DL = "DL",
|
|
1492
|
-
CUP = "CUP",
|
|
1493
|
-
GAL = "GAL",
|
|
1494
|
-
PINT = "PINT",
|
|
1495
|
-
QUART = "QUART",
|
|
1496
|
-
FLOZ = "FLOZ",
|
|
1497
|
-
CL = "CL"
|
|
1498
|
-
}
|
|
1499
|
-
declare enum ProblemCreatorMathWeightUnit {
|
|
1500
|
-
KG = "KG",
|
|
1501
|
-
G = "G",
|
|
1502
|
-
MG = "MG",
|
|
1503
|
-
TON_SE = "TON_SE",
|
|
1504
|
-
TON = "TON",
|
|
1505
|
-
T = "T",
|
|
1506
|
-
LB = "LB",
|
|
1507
|
-
OZ = "OZ",
|
|
1508
|
-
GAL = "GAL",
|
|
1509
|
-
HG = "HG"
|
|
1510
|
-
}
|
|
1511
|
-
declare enum ProblemCreatorMathTimeUnit {
|
|
1512
|
-
S = "S",
|
|
1513
|
-
M = "M",
|
|
1514
|
-
H = "H",
|
|
1515
|
-
DAY = "DAY",
|
|
1516
|
-
WEEK = "WEEK",
|
|
1517
|
-
MONTH = "MONTH",
|
|
1518
|
-
YEAR = "YEAR",
|
|
1519
|
-
DAYS = "DAYS",
|
|
1520
|
-
WEEKS = "WEEKS",
|
|
1521
|
-
MONTHS = "MONTHS",
|
|
1522
|
-
YEARS = "YEARS"
|
|
1523
|
-
}
|
|
1524
|
-
declare const PROBLEM_CREATOR_MATH_CURRENCY_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathCurrencyUnit>;
|
|
1525
|
-
declare const PROBLEM_CREATOR_MATH_LENGTH_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathLengthUnit>;
|
|
1526
|
-
declare const PROBLEM_CREATOR_MATH_AREA_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathAreaUnit>;
|
|
1527
|
-
declare const PROBLEM_CREATOR_MATH_VOLUME_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathVolumeUnit>;
|
|
1528
|
-
declare const PROBLEM_CREATOR_MATH_WEIGHT_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathWeightUnit>;
|
|
1529
|
-
declare const PROBLEM_CREATOR_MATH_TIME_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathTimeUnit>;
|
|
1530
|
-
|
|
1531
550
|
type DevOverrides<P extends Platform> = {
|
|
1532
551
|
[K in Locale]?: Partial<EnvironmentVars<P>>;
|
|
1533
552
|
};
|
|
@@ -1566,4 +585,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1566
585
|
};
|
|
1567
586
|
}
|
|
1568
587
|
|
|
1569
|
-
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CommonGrades,
|
|
588
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CommonGrades, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, Locale, LoginSource, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileVars, type MobileVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, QRCodeSize, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, Source, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, type TreeNodeGrades, buildTargetToEnvironment };
|