@magmamath/frontend-config 1.0.24-rc.39 → 1.0.24-rc.4
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 +142 -988
- package/dist/index.d.ts +142 -988
- package/dist/index.js +1058 -5215
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1041 -5124
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -4
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 {
|
|
@@ -88,7 +88,6 @@ declare enum LoginSource {
|
|
|
88
88
|
MY_LOGIN = 9
|
|
89
89
|
}
|
|
90
90
|
declare enum SSO {
|
|
91
|
-
APPLE = "APPLE",
|
|
92
91
|
GOOGLE = "GOOGLE",
|
|
93
92
|
MICROSOFT = "MICROSOFT",
|
|
94
93
|
CLEVER = "CLEVER",
|
|
@@ -104,11 +103,6 @@ declare enum ApiRegion {
|
|
|
104
103
|
MAIN = "MAIN",
|
|
105
104
|
CANADA = "CANADA"
|
|
106
105
|
}
|
|
107
|
-
declare enum QRCodeSize {
|
|
108
|
-
DEFAULT = "default",
|
|
109
|
-
MEDIUM = "medium",
|
|
110
|
-
LARGE = "large"
|
|
111
|
-
}
|
|
112
106
|
|
|
113
107
|
declare enum MatrixMode {
|
|
114
108
|
SKILL = "SKILL",
|
|
@@ -116,117 +110,43 @@ declare enum MatrixMode {
|
|
|
116
110
|
}
|
|
117
111
|
|
|
118
112
|
declare enum Grade {
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
ALGEBRA_2 = 23,
|
|
137
|
-
INTEGRATED_MATH_I = 24,
|
|
138
|
-
INTEGRATED_MATH_II = 25,
|
|
139
|
-
INTEGRATED_MATH_III = 26,
|
|
140
|
-
PRECALCULUS = 27,
|
|
113
|
+
ALL = "all",
|
|
114
|
+
K = "K",
|
|
115
|
+
ZERO = "0",
|
|
116
|
+
ONE = "1",
|
|
117
|
+
TWO = "2",
|
|
118
|
+
THREE = "3",
|
|
119
|
+
FOUR = "4",
|
|
120
|
+
FIVE = "5",
|
|
121
|
+
SIX = "6",
|
|
122
|
+
SEVEN = "7",
|
|
123
|
+
EIGHT = "8",
|
|
124
|
+
NINE = "9",
|
|
125
|
+
TEN = "10",
|
|
126
|
+
ELEVEN = "11",
|
|
127
|
+
TWELVE = "12",
|
|
128
|
+
THIRTEEN = "13",
|
|
129
|
+
OTHER = "-1",
|
|
141
130
|
HS = "HS",
|
|
142
131
|
HSG = "HSG",
|
|
143
132
|
HSA = "HSA",
|
|
144
133
|
HSS = "HSS",
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
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"
|
|
148
141
|
}
|
|
149
142
|
|
|
150
|
-
type
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
noPrefix?: boolean;
|
|
143
|
+
type GradeLabel = {
|
|
144
|
+
short: string;
|
|
145
|
+
full: string;
|
|
154
146
|
};
|
|
155
|
-
type CommonGrades = Grade.OTHER | Grade.ZERO | Grade.K;
|
|
156
|
-
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;
|
|
157
|
-
type HighSchoolGrades = Grade.NINE | Grade.TEN | Grade.ELEVEN | Grade.TWELVE | Grade.ALGEBRA_1 | Grade.GEOMETRY | Grade.ALGEBRA_2 | Grade.INTEGRATED_MATH_I | Grade.INTEGRATED_MATH_II | Grade.INTEGRATED_MATH_III | Grade.PRECALCULUS | Grade.HS | Grade.HSG | Grade.HSA | Grade.HSS | Grade.HSF | Grade.HSN;
|
|
158
147
|
|
|
159
148
|
type IconProps = {
|
|
160
149
|
size?: number;
|
|
161
|
-
color?: string;
|
|
162
|
-
extraColor?: string;
|
|
163
|
-
};
|
|
164
|
-
|
|
165
|
-
type SSOConfig<E> = Readonly<{
|
|
166
|
-
name: string;
|
|
167
|
-
icon: ComponentType<IconProps>;
|
|
168
|
-
type: SSO;
|
|
169
|
-
loginSource: LoginSource;
|
|
170
|
-
ownUrl?: boolean;
|
|
171
|
-
getUrl: (envs: E) => string;
|
|
172
|
-
}>;
|
|
173
|
-
|
|
174
|
-
type RegionSpecificVars = {
|
|
175
|
-
API_URL: string;
|
|
176
|
-
AUTH_WEB_URL: string;
|
|
177
|
-
CDN_HOST: string;
|
|
178
|
-
DISTRICT_WEB_URL: string;
|
|
179
|
-
LOGGLY_TAG: string;
|
|
180
|
-
MAGMAMATH_URL: string;
|
|
181
|
-
SOCKET_URL: string;
|
|
182
|
-
STUDENTS_WEB_URL: string;
|
|
183
|
-
TEACHERS_WEB_URL: string;
|
|
184
|
-
};
|
|
185
|
-
|
|
186
|
-
type StudentsWebCommon = {
|
|
187
|
-
GOOGLE_API_KEY: string;
|
|
188
|
-
DESMOS_API_KEY: string;
|
|
189
|
-
LOGGLY_CUSTOMER_TOKEN: string;
|
|
190
|
-
MYSCRIPT_APPLICATION_KEY: string;
|
|
191
|
-
MYSCRIPT_HMAC_KEY: string;
|
|
192
|
-
MYSCRIPT_HOST: string;
|
|
193
|
-
MYSCRIPT_SOCKET_KEY: string;
|
|
194
|
-
MYSCRIPT_REST_APP_KEY: string;
|
|
195
|
-
MYSCRIPT_REST_HMAC_KEY: string;
|
|
196
|
-
};
|
|
197
|
-
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
198
|
-
type StudentsWebVarsPreset = {
|
|
199
|
-
[key in Locale]: {
|
|
200
|
-
[key in Environment]: StudentsWebVars;
|
|
201
|
-
};
|
|
202
|
-
};
|
|
203
|
-
|
|
204
|
-
type TeachersWebCommon = {
|
|
205
|
-
MYSCRIPT_HOST: string;
|
|
206
|
-
MYSCRIPT_REST_APP_KEY: string;
|
|
207
|
-
MYSCRIPT_REST_HMAC_KEY: string;
|
|
208
|
-
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
209
|
-
INTERCOM_APP_ID: string;
|
|
210
|
-
CLARITY_PROJECT_ID: string;
|
|
211
|
-
LOGGLY_CUSTOMER_TOKEN: string;
|
|
212
|
-
};
|
|
213
|
-
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
214
|
-
type TeachersWebVarsPreset = {
|
|
215
|
-
[key in Locale]: {
|
|
216
|
-
[key in Environment]: TeachersWebVars;
|
|
217
|
-
};
|
|
218
|
-
};
|
|
219
|
-
|
|
220
|
-
type DistrictCommon = {
|
|
221
|
-
INTERCOM_APP_ID: string;
|
|
222
|
-
CLARITY_PROJECT_ID: string;
|
|
223
|
-
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
224
|
-
};
|
|
225
|
-
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
226
|
-
type DistrictWebVarsPreset = {
|
|
227
|
-
[key in Locale]: {
|
|
228
|
-
[key in Environment]: DistrictDashboardVars;
|
|
229
|
-
};
|
|
230
150
|
};
|
|
231
151
|
|
|
232
152
|
type SSO_UK = {
|
|
@@ -266,6 +186,18 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
266
186
|
[K in keyof T]: T[K];
|
|
267
187
|
};
|
|
268
188
|
|
|
189
|
+
type RegionSpecificVars = {
|
|
190
|
+
API_URL: string;
|
|
191
|
+
AUTH_WEB_URL: string;
|
|
192
|
+
CDN_HOST: string;
|
|
193
|
+
DISTRICT_WEB_URL: string;
|
|
194
|
+
LOGGLY_TAG: string;
|
|
195
|
+
MAGMAMATH_URL: string;
|
|
196
|
+
SOCKET_URL: string;
|
|
197
|
+
STUDENTS_WEB_URL: string;
|
|
198
|
+
TEACHERS_WEB_URL: string;
|
|
199
|
+
};
|
|
200
|
+
|
|
269
201
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
270
202
|
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
271
203
|
TOS_URL: string;
|
|
@@ -293,6 +225,61 @@ type AuthWebVarsPreset = {
|
|
|
293
225
|
};
|
|
294
226
|
};
|
|
295
227
|
|
|
228
|
+
type SSOConfig<T extends SSOVariant> = Readonly<{
|
|
229
|
+
name: string;
|
|
230
|
+
icon: ComponentType<IconProps>;
|
|
231
|
+
type: SSO;
|
|
232
|
+
loginSource: LoginSource;
|
|
233
|
+
getUrl: (envs: AuthWebVars<T>) => string;
|
|
234
|
+
ownUrl?: boolean;
|
|
235
|
+
}>;
|
|
236
|
+
|
|
237
|
+
type StudentsWebCommon = {
|
|
238
|
+
GOOGLE_API_KEY: string;
|
|
239
|
+
DESMOS_API_KEY: string;
|
|
240
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
241
|
+
MYSCRIPT_APPLICATION_KEY: string;
|
|
242
|
+
MYSCRIPT_HMAC_KEY: string;
|
|
243
|
+
MYSCRIPT_HOST: string;
|
|
244
|
+
MYSCRIPT_SOCKET_KEY: string;
|
|
245
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
246
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
247
|
+
};
|
|
248
|
+
type StudentsWebVars = RegionSpecificVars & StudentsWebCommon;
|
|
249
|
+
type StudentsWebVarsPreset = {
|
|
250
|
+
[key in Locale]: {
|
|
251
|
+
[key in Environment]: StudentsWebVars;
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
|
|
255
|
+
type TeachersWebCommon = {
|
|
256
|
+
MYSCRIPT_HOST: string;
|
|
257
|
+
MYSCRIPT_REST_APP_KEY: string;
|
|
258
|
+
MYSCRIPT_REST_HMAC_KEY: string;
|
|
259
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
260
|
+
INTERCOM_APP_ID: string;
|
|
261
|
+
CLARITY_PROJECT_ID: string;
|
|
262
|
+
LOGGLY_CUSTOMER_TOKEN: string;
|
|
263
|
+
};
|
|
264
|
+
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
265
|
+
type TeachersWebVarsPreset = {
|
|
266
|
+
[key in Locale]: {
|
|
267
|
+
[key in Environment]: TeachersWebVars;
|
|
268
|
+
};
|
|
269
|
+
};
|
|
270
|
+
|
|
271
|
+
type DistrictCommon = {
|
|
272
|
+
INTERCOM_APP_ID: string;
|
|
273
|
+
CLARITY_PROJECT_ID: string;
|
|
274
|
+
PROBLEM_IMAGE_SIZE_LIMIT: number;
|
|
275
|
+
};
|
|
276
|
+
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
277
|
+
type DistrictWebVarsPreset = {
|
|
278
|
+
[key in Locale]: {
|
|
279
|
+
[key in Environment]: DistrictDashboardVars;
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
|
|
296
283
|
type MobileCommon = {
|
|
297
284
|
DESMOS_API_KEY: string;
|
|
298
285
|
USER_AGENT: string;
|
|
@@ -303,19 +290,13 @@ type MobileCommon = {
|
|
|
303
290
|
MYSCRIPT_SOCKET_KEY: string;
|
|
304
291
|
MYSCRIPT_REST_APP_KEY: string;
|
|
305
292
|
MYSCRIPT_REST_HMAC_KEY: string;
|
|
306
|
-
GOOGLE_API_KEY: string;
|
|
307
|
-
GOOGLE_TEXT_TO_SPEECH_URL: string;
|
|
308
|
-
GOOGLE_TRANSLATE_URL: string;
|
|
309
|
-
SIGN_UP_BOOKING_ONBOARDING: string;
|
|
310
293
|
};
|
|
311
294
|
type MobileBaseVars = {
|
|
312
295
|
TEACHERS_WEB_URL: string;
|
|
313
|
-
AUTH_WEB_URL: string;
|
|
314
296
|
API_URL: string;
|
|
315
297
|
CDN_HOST: string;
|
|
316
298
|
SOCKET_URL: string;
|
|
317
299
|
LOGGLY_TAG: string;
|
|
318
|
-
PROBLEM_CREATOR_URL: string;
|
|
319
300
|
} & MobileCommon;
|
|
320
301
|
type MobileVars<T extends SSOVariant> = Prettify<MobileBaseVars & T>;
|
|
321
302
|
type MobileVarsPreset = {
|
|
@@ -369,112 +350,6 @@ type EnvironmentVars<P extends Platform> = EnvPreset[P][Locale][Environment];
|
|
|
369
350
|
|
|
370
351
|
declare function buildTargetToEnvironment(buildTarget: PlatformBuildTarget): Environment;
|
|
371
352
|
|
|
372
|
-
declare enum DrawboardKeyboardType {
|
|
373
|
-
AlgebraAdvanced = "AlgebraAdvanced",
|
|
374
|
-
Basic = "Basic",
|
|
375
|
-
BasicPlus = "BasicPlus",
|
|
376
|
-
BasicPlusMobile = "BasicPlusMobile",
|
|
377
|
-
BasicTime = "BasicTime",
|
|
378
|
-
BasicCurrency = "BasicCurrency",
|
|
379
|
-
BasicUnits = "BasicUnits",
|
|
380
|
-
BasicPlusPlus = "BasicPlusPlus",
|
|
381
|
-
BasicPlusPlusMobile = "BasicPlusPlusMobile",
|
|
382
|
-
Numpad = "Numpad",
|
|
383
|
-
Underlined = "Underlined"
|
|
384
|
-
}
|
|
385
|
-
declare enum DrawboardKeyboardUnitsGroupType {
|
|
386
|
-
LENGTH = "length",
|
|
387
|
-
AREA = "area",
|
|
388
|
-
VOLUME = "volume",
|
|
389
|
-
WEIGHT = "weight",
|
|
390
|
-
TIME = "time"
|
|
391
|
-
}
|
|
392
|
-
declare const DRAWBOARD_DEFAULT_KEY_ICON_PROPS: {
|
|
393
|
-
readonly size: 16;
|
|
394
|
-
readonly color: "#4d4d63";
|
|
395
|
-
};
|
|
396
|
-
declare const DRAWBOARD_DEFAULT_TEXT_STYLE: {
|
|
397
|
-
readonly fontSize: 14;
|
|
398
|
-
readonly fontWeight: 700;
|
|
399
|
-
};
|
|
400
|
-
declare const DRAWBOARD_IS_WEB = true;
|
|
401
|
-
declare const DRAWBOARD_IS_MOBILE = false;
|
|
402
|
-
declare const DRAWBOARD_STYLE_PRESETS: {
|
|
403
|
-
SMALL: {
|
|
404
|
-
button: {
|
|
405
|
-
width: number;
|
|
406
|
-
};
|
|
407
|
-
container: {
|
|
408
|
-
flexBasis: number;
|
|
409
|
-
} | undefined;
|
|
410
|
-
text: {
|
|
411
|
-
readonly fontSize: 14;
|
|
412
|
-
readonly fontWeight: 700;
|
|
413
|
-
};
|
|
414
|
-
};
|
|
415
|
-
MEDIUM: {
|
|
416
|
-
button: {
|
|
417
|
-
width: number;
|
|
418
|
-
};
|
|
419
|
-
container: {
|
|
420
|
-
flexBasis: number;
|
|
421
|
-
} | undefined;
|
|
422
|
-
text: {
|
|
423
|
-
readonly fontSize: 14;
|
|
424
|
-
readonly fontWeight: 700;
|
|
425
|
-
};
|
|
426
|
-
};
|
|
427
|
-
LARGE: {
|
|
428
|
-
button: {
|
|
429
|
-
width: number;
|
|
430
|
-
};
|
|
431
|
-
container: {
|
|
432
|
-
flexBasis: number;
|
|
433
|
-
} | undefined;
|
|
434
|
-
text: {
|
|
435
|
-
readonly fontSize: 14;
|
|
436
|
-
readonly fontWeight: 700;
|
|
437
|
-
};
|
|
438
|
-
};
|
|
439
|
-
XL: {
|
|
440
|
-
button: {
|
|
441
|
-
width: number;
|
|
442
|
-
};
|
|
443
|
-
container: {
|
|
444
|
-
flexBasis: number;
|
|
445
|
-
} | undefined;
|
|
446
|
-
text: {
|
|
447
|
-
readonly fontSize: 14;
|
|
448
|
-
readonly fontWeight: 700;
|
|
449
|
-
};
|
|
450
|
-
};
|
|
451
|
-
};
|
|
452
|
-
|
|
453
|
-
type DrawboardMathOperatorsGroup = Record<string, DrawboardKeyboardKey>;
|
|
454
|
-
type DrawboardKeyboardKey = {
|
|
455
|
-
icon?: ReactNode;
|
|
456
|
-
mathliveValue: string;
|
|
457
|
-
katexValue: string;
|
|
458
|
-
isSpecialSymbol?: boolean;
|
|
459
|
-
mathQuillValue?: string;
|
|
460
|
-
spreadsheetValue?: string;
|
|
461
|
-
label?: string;
|
|
462
|
-
style?: Record<string, any>;
|
|
463
|
-
};
|
|
464
|
-
type DrawboardKeyboardGroup = {
|
|
465
|
-
keys: DrawboardKeyboardKey[];
|
|
466
|
-
numOfRows?: number;
|
|
467
|
-
};
|
|
468
|
-
type DrawboardKeyboardGroups = Record<string, DrawboardKeyboardGroup>;
|
|
469
|
-
type DrawboardKeyboardRowsGroup = {
|
|
470
|
-
keys: DrawboardKeyboardKey[][];
|
|
471
|
-
};
|
|
472
|
-
type DrawboardKeyboardRowsGroups = Record<string, DrawboardKeyboardRowsGroup>;
|
|
473
|
-
|
|
474
|
-
type DrawboardKeyboardConfig = {
|
|
475
|
-
operators: Record<DrawboardKeyboardType, DrawboardKeyboardGroup>;
|
|
476
|
-
units: Record<DrawboardKeyboardUnitsGroupType, DrawboardKeyboardRowsGroup>;
|
|
477
|
-
};
|
|
478
353
|
type StudentsLocaleConfig = CommonLocaleConfig & {
|
|
479
354
|
textFormatting: {
|
|
480
355
|
replaceCommaWithSpace: boolean;
|
|
@@ -519,74 +394,25 @@ type StudentsLocaleConfig = CommonLocaleConfig & {
|
|
|
519
394
|
smartEval: {
|
|
520
395
|
language: string;
|
|
521
396
|
};
|
|
522
|
-
drawboard: {
|
|
523
|
-
basicManipulativesMaxGrade: number;
|
|
524
|
-
keyboard: DrawboardKeyboardConfig;
|
|
525
|
-
};
|
|
526
|
-
};
|
|
527
|
-
|
|
528
|
-
declare const PROBLEM_CREATOR_DEFAULT_KEY_ICON_PROPS: {
|
|
529
|
-
readonly size: 16;
|
|
530
|
-
readonly color: "#4d4d63";
|
|
531
|
-
};
|
|
532
|
-
declare enum ProblemCreatorGroup {
|
|
533
|
-
BASIC = "basic",
|
|
534
|
-
DESCRIPTION = "description",
|
|
535
|
-
ADVANCED = "advanced",
|
|
536
|
-
ALGEBRA_TEXT = "algebraText",
|
|
537
|
-
ALGEBRA_SYMBOLS = "algebraSymbols",
|
|
538
|
-
MATH_ENTRY = "mathEntry"
|
|
539
|
-
}
|
|
540
|
-
declare enum ProblemCreatorUnitGroup {
|
|
541
|
-
LENGTH = "length",
|
|
542
|
-
AREA = "area",
|
|
543
|
-
VOLUME = "volume",
|
|
544
|
-
WEIGHT = "weight",
|
|
545
|
-
TIME = "time"
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
type ProblemCreatorKeyboardKey = {
|
|
549
|
-
value: string;
|
|
550
|
-
label?: string;
|
|
551
|
-
icon?: ReactElement;
|
|
552
|
-
};
|
|
553
|
-
type ProblemCreatorKeyboardGroup = {
|
|
554
|
-
id: string;
|
|
555
|
-
keys: ProblemCreatorKeyboardKey[];
|
|
556
|
-
className?: string;
|
|
557
|
-
};
|
|
558
|
-
type ProblemCreatorKeyboardGroups = Record<string, ProblemCreatorKeyboardGroup>;
|
|
559
|
-
type ProblemCreatorMathKeysGroup<T extends Record<string, string>> = {
|
|
560
|
-
[K in keyof T as T[K]]: ProblemCreatorKeyboardKey;
|
|
561
|
-
};
|
|
562
|
-
type ProblemCreatorKeyboardPreset = {
|
|
563
|
-
operators: {
|
|
564
|
-
[K in Exclude<ProblemCreatorGroup, ProblemCreatorGroup.MATH_ENTRY>]: ProblemCreatorKeyboardGroup;
|
|
565
|
-
};
|
|
566
|
-
units: {
|
|
567
|
-
[K in ProblemCreatorUnitGroup]: ProblemCreatorKeyboardGroup;
|
|
568
|
-
};
|
|
569
|
-
};
|
|
570
|
-
|
|
571
|
-
type ProblemCreatorKeyboardConfig = {
|
|
572
|
-
operators: {
|
|
573
|
-
[K in ProblemCreatorGroup]: ProblemCreatorKeyboardGroup;
|
|
574
|
-
};
|
|
575
|
-
units: {
|
|
576
|
-
[K in ProblemCreatorUnitGroup]: ProblemCreatorKeyboardGroup;
|
|
577
|
-
};
|
|
578
|
-
};
|
|
579
|
-
type ProblemCreatorConfig = {
|
|
580
|
-
savedProblemLocale: Locale;
|
|
581
|
-
keyboard: ProblemCreatorKeyboardConfig;
|
|
582
397
|
};
|
|
583
398
|
|
|
584
399
|
type TeachersLocaleConfig = CommonLocaleConfig & {
|
|
400
|
+
country: string;
|
|
401
|
+
emails: {
|
|
402
|
+
studentsList: string;
|
|
403
|
+
};
|
|
585
404
|
symbols: {
|
|
586
405
|
decimalSeparator: string;
|
|
587
406
|
};
|
|
588
|
-
|
|
589
|
-
|
|
407
|
+
date: {
|
|
408
|
+
use24HourFormat: boolean;
|
|
409
|
+
locale: DateLocale;
|
|
410
|
+
formats: {
|
|
411
|
+
full: DateFormat;
|
|
412
|
+
dayMonth: DateFormat;
|
|
413
|
+
hoursMinutes: DateFormat;
|
|
414
|
+
fullWithSeconds: DateFormat;
|
|
415
|
+
};
|
|
590
416
|
};
|
|
591
417
|
urls: {
|
|
592
418
|
specialBook: string;
|
|
@@ -617,36 +443,43 @@ type TeachersLocaleConfig = CommonLocaleConfig & {
|
|
|
617
443
|
};
|
|
618
444
|
firstLoginBooks: {
|
|
619
445
|
isLargeGrade: ((grade: number) => boolean) | null;
|
|
620
|
-
useHighSchoolGrades: boolean;
|
|
621
|
-
withGradeZero: boolean;
|
|
622
446
|
};
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
progressStats: {
|
|
627
|
-
forceHSGrades: boolean;
|
|
447
|
+
grades: {
|
|
448
|
+
showPrefix: boolean;
|
|
449
|
+
showOtherGrade: boolean;
|
|
628
450
|
};
|
|
629
|
-
|
|
630
|
-
|
|
451
|
+
};
|
|
452
|
+
|
|
453
|
+
type DistrictLocaleConfig = CommonLocaleConfig & {
|
|
454
|
+
date: {
|
|
455
|
+
use24HourFormat: boolean;
|
|
456
|
+
locale: DateLocale;
|
|
457
|
+
formats: {
|
|
458
|
+
full: DateFormat;
|
|
459
|
+
dayMonthYear: DateFormat;
|
|
460
|
+
dayMonth: DateFormat;
|
|
461
|
+
hoursMinutes: DateFormat;
|
|
462
|
+
fullWithSeconds: DateFormat;
|
|
463
|
+
};
|
|
631
464
|
};
|
|
632
|
-
|
|
633
|
-
|
|
465
|
+
grades: {
|
|
466
|
+
primary: Map<Grade, GradeLabel>;
|
|
467
|
+
highSchool: Map<Grade, GradeLabel>;
|
|
634
468
|
};
|
|
635
|
-
problemCreator: ProblemCreatorConfig;
|
|
636
469
|
};
|
|
637
470
|
|
|
638
|
-
type
|
|
471
|
+
type AuthWebLocaleConfig<T extends SSOVariant> = {
|
|
639
472
|
path: string;
|
|
640
473
|
shortCode: string;
|
|
641
474
|
icon: ComponentType<IconProps>;
|
|
642
475
|
sources: {
|
|
643
476
|
signUp: {
|
|
644
|
-
list: SSOConfig<
|
|
477
|
+
list: SSOConfig<T>[];
|
|
645
478
|
};
|
|
646
479
|
signIn: {
|
|
647
480
|
withOnboarding: boolean;
|
|
648
|
-
|
|
649
|
-
list: SSOConfig<
|
|
481
|
+
largeQRCode: boolean;
|
|
482
|
+
list: SSOConfig<T>[];
|
|
650
483
|
};
|
|
651
484
|
};
|
|
652
485
|
isPrimaryRegion: boolean;
|
|
@@ -667,25 +500,9 @@ type WebAdminLocaleConfig = {
|
|
|
667
500
|
type CommonLocaleConfig = Readonly<{
|
|
668
501
|
name: string;
|
|
669
502
|
languageName: string;
|
|
670
|
-
country: string;
|
|
671
503
|
languageHeader: string;
|
|
672
504
|
contentLocale: Locale;
|
|
673
505
|
shortCode: string;
|
|
674
|
-
date: {
|
|
675
|
-
use24HourFormat: boolean;
|
|
676
|
-
locale: string;
|
|
677
|
-
formats: {
|
|
678
|
-
dayMonth: string;
|
|
679
|
-
dayMonthYear: string;
|
|
680
|
-
hoursMinutes: string;
|
|
681
|
-
full: string;
|
|
682
|
-
fullWithSeconds: string;
|
|
683
|
-
};
|
|
684
|
-
};
|
|
685
|
-
grades: {
|
|
686
|
-
primary: Partial<Record<PrimaryGrades, GradeData>>;
|
|
687
|
-
highSchool: Partial<Record<HighSchoolGrades, GradeData>>;
|
|
688
|
-
};
|
|
689
506
|
}>;
|
|
690
507
|
type LocalePreset = {
|
|
691
508
|
[Platform.STUDENTS_WEB]: {
|
|
@@ -698,687 +515,17 @@ type LocalePreset = {
|
|
|
698
515
|
[key in Locale]: DistrictLocaleConfig;
|
|
699
516
|
};
|
|
700
517
|
[Platform.AUTH_WEB]: {
|
|
701
|
-
[key in Locale]:
|
|
518
|
+
[key in Locale]: AuthWebLocaleConfig<SSOByLocale[key]>;
|
|
702
519
|
};
|
|
703
520
|
[Platform.WEB_ADMIN]: {
|
|
704
521
|
[key in Locale]: WebAdminLocaleConfig;
|
|
705
522
|
};
|
|
706
523
|
[Platform.MOBILE]: {
|
|
707
|
-
[key in Locale]:
|
|
524
|
+
[key in Locale]: AuthWebLocaleConfig<SSOByLocale[key]>;
|
|
708
525
|
};
|
|
709
526
|
};
|
|
710
527
|
type LocaleConfig<P extends Platform, L extends Locale> = LocalePreset[P][L];
|
|
711
528
|
|
|
712
|
-
type DistrictLocaleConfig = CommonLocaleConfig & {
|
|
713
|
-
problemCreator: ProblemCreatorConfig;
|
|
714
|
-
};
|
|
715
|
-
|
|
716
|
-
declare const DRAWBOARD_ALGEBRA: DrawboardKeyboardGroup;
|
|
717
|
-
|
|
718
|
-
declare const DRAWBOARD_BASIC: DrawboardKeyboardGroups;
|
|
719
|
-
|
|
720
|
-
declare const DRAWBOARD_BASIC_PLUS: DrawboardKeyboardGroups;
|
|
721
|
-
|
|
722
|
-
declare const DRAWBOARD_BASIC_PLUS_PLUS: DrawboardKeyboardGroups;
|
|
723
|
-
|
|
724
|
-
declare const DRAWBOARD_CURRENCY: Record<string, DrawboardKeyboardGroup>;
|
|
725
|
-
|
|
726
|
-
declare const DRAWBOARD_NUMPAD: DrawboardKeyboardGroups;
|
|
727
|
-
|
|
728
|
-
declare const DRAWBOARD_TIME: DrawboardKeyboardGroups;
|
|
729
|
-
|
|
730
|
-
declare const DRAWBOARD_UNDERLINED: DrawboardKeyboardGroup;
|
|
731
|
-
|
|
732
|
-
declare const DRAWBOARD_LENGTH: DrawboardKeyboardRowsGroups;
|
|
733
|
-
declare const DRAWBOARD_AREA: DrawboardKeyboardRowsGroups;
|
|
734
|
-
declare const DRAWBOARD_VOLUME: DrawboardKeyboardRowsGroups;
|
|
735
|
-
declare const DRAWBOARD_WEIGHT: DrawboardKeyboardRowsGroups;
|
|
736
|
-
declare const DRAWBOARD_TIME_UNITS: DrawboardKeyboardRowsGroups;
|
|
737
|
-
|
|
738
|
-
declare const DRAWBOARD_MATH_BASIC_OPERATORS: DrawboardMathOperatorsGroup;
|
|
739
|
-
|
|
740
|
-
declare const DRAWBOARD_MATH_INTEGRALS_AND_DERIVATIVES: DrawboardMathOperatorsGroup;
|
|
741
|
-
|
|
742
|
-
declare const DRAWBOARD_MATH_GEOMETRY_SYMBOLS: DrawboardMathOperatorsGroup;
|
|
743
|
-
|
|
744
|
-
declare const DRAWBOARD_MATH_SPECIAL_OPERATORS: DrawboardMathOperatorsGroup;
|
|
745
|
-
|
|
746
|
-
declare const DRAWBOARD_MATH_SYMBOLS: DrawboardMathOperatorsGroup;
|
|
747
|
-
|
|
748
|
-
declare const DRAWBOARD_MATH_TEXT_SYMBOLS: DrawboardMathOperatorsGroup;
|
|
749
|
-
|
|
750
|
-
declare const DRAWBOARD_MATH_BASIC_TRIGONOMETRIC_FUNCTIONS: DrawboardMathOperatorsGroup;
|
|
751
|
-
declare const DRAWBOARD_MATH_INVERSE_TRIGONOMETRIC_FUNCTIONS: DrawboardMathOperatorsGroup;
|
|
752
|
-
|
|
753
|
-
declare const DRAWBOARD_MATH_CURRENCY_UNITS: DrawboardMathOperatorsGroup;
|
|
754
|
-
declare const DRAWBOARD_MATH_LENGTH_UNITS: DrawboardMathOperatorsGroup;
|
|
755
|
-
declare const DRAWBOARD_MATH_AREA_UNITS: DrawboardMathOperatorsGroup;
|
|
756
|
-
declare const DRAWBOARD_MATH_VOLUME_UNITS: {
|
|
757
|
-
readonly CUBIC_KILOMETER: {
|
|
758
|
-
readonly label: "km³";
|
|
759
|
-
readonly mathliveValue: "\\mathrm{km}^3";
|
|
760
|
-
readonly katexValue: "km^3";
|
|
761
|
-
readonly mathQuillValue: "km^{3}";
|
|
762
|
-
readonly style: {
|
|
763
|
-
button: {
|
|
764
|
-
width: number;
|
|
765
|
-
};
|
|
766
|
-
container: {
|
|
767
|
-
flexBasis: number;
|
|
768
|
-
} | undefined;
|
|
769
|
-
text: {
|
|
770
|
-
readonly fontSize: 14;
|
|
771
|
-
readonly fontWeight: 700;
|
|
772
|
-
};
|
|
773
|
-
};
|
|
774
|
-
};
|
|
775
|
-
readonly CUBIC_METER: {
|
|
776
|
-
readonly label: "m³";
|
|
777
|
-
readonly mathliveValue: "\\mathrm{m}^3";
|
|
778
|
-
readonly katexValue: "m^3";
|
|
779
|
-
readonly mathQuillValue: "m^{3}";
|
|
780
|
-
readonly style: {
|
|
781
|
-
button: {
|
|
782
|
-
width: number;
|
|
783
|
-
};
|
|
784
|
-
container: {
|
|
785
|
-
flexBasis: number;
|
|
786
|
-
} | undefined;
|
|
787
|
-
text: {
|
|
788
|
-
readonly fontSize: 14;
|
|
789
|
-
readonly fontWeight: 700;
|
|
790
|
-
};
|
|
791
|
-
};
|
|
792
|
-
};
|
|
793
|
-
readonly CUBIC_DECIMETER: {
|
|
794
|
-
readonly label: "dm³";
|
|
795
|
-
readonly mathliveValue: "\\mathrm{dm}^3";
|
|
796
|
-
readonly katexValue: "dm^3";
|
|
797
|
-
readonly mathQuillValue: "dm^{3}";
|
|
798
|
-
readonly style: {
|
|
799
|
-
button: {
|
|
800
|
-
width: number;
|
|
801
|
-
};
|
|
802
|
-
container: {
|
|
803
|
-
flexBasis: number;
|
|
804
|
-
} | undefined;
|
|
805
|
-
text: {
|
|
806
|
-
readonly fontSize: 14;
|
|
807
|
-
readonly fontWeight: 700;
|
|
808
|
-
};
|
|
809
|
-
};
|
|
810
|
-
};
|
|
811
|
-
readonly CUBIC_CENTIMETER: {
|
|
812
|
-
readonly label: "cm³";
|
|
813
|
-
readonly mathliveValue: "\\mathrm{cm}^3";
|
|
814
|
-
readonly katexValue: "cm^3";
|
|
815
|
-
readonly mathQuillValue: "cm^{3}";
|
|
816
|
-
readonly style: {
|
|
817
|
-
button: {
|
|
818
|
-
width: number;
|
|
819
|
-
};
|
|
820
|
-
container: {
|
|
821
|
-
flexBasis: number;
|
|
822
|
-
} | undefined;
|
|
823
|
-
text: {
|
|
824
|
-
readonly fontSize: 14;
|
|
825
|
-
readonly fontWeight: 700;
|
|
826
|
-
};
|
|
827
|
-
};
|
|
828
|
-
};
|
|
829
|
-
readonly CUBIC_MILLIMETER: {
|
|
830
|
-
readonly label: "mm³";
|
|
831
|
-
readonly mathliveValue: "\\mathrm{mm}^3";
|
|
832
|
-
readonly katexValue: "mm^3";
|
|
833
|
-
readonly mathQuillValue: "mm^{3}";
|
|
834
|
-
readonly style: {
|
|
835
|
-
button: {
|
|
836
|
-
width: number;
|
|
837
|
-
};
|
|
838
|
-
container: {
|
|
839
|
-
flexBasis: number;
|
|
840
|
-
} | undefined;
|
|
841
|
-
text: {
|
|
842
|
-
readonly fontSize: 14;
|
|
843
|
-
readonly fontWeight: 700;
|
|
844
|
-
};
|
|
845
|
-
};
|
|
846
|
-
};
|
|
847
|
-
readonly CUBIC_INCH: {
|
|
848
|
-
readonly label: "in³";
|
|
849
|
-
readonly mathliveValue: "\\mathrm{in}^3";
|
|
850
|
-
readonly katexValue: "in^3";
|
|
851
|
-
readonly mathQuillValue: "in^{3}";
|
|
852
|
-
readonly style: {
|
|
853
|
-
button: {
|
|
854
|
-
width: number;
|
|
855
|
-
};
|
|
856
|
-
container: {
|
|
857
|
-
flexBasis: number;
|
|
858
|
-
} | undefined;
|
|
859
|
-
text: {
|
|
860
|
-
readonly fontSize: 14;
|
|
861
|
-
readonly fontWeight: 700;
|
|
862
|
-
};
|
|
863
|
-
};
|
|
864
|
-
};
|
|
865
|
-
readonly CUBIC_FOOT: {
|
|
866
|
-
readonly label: "ft³";
|
|
867
|
-
readonly mathliveValue: "\\mathrm{ft}^3";
|
|
868
|
-
readonly katexValue: "ft^3";
|
|
869
|
-
readonly mathQuillValue: "ft^{3}";
|
|
870
|
-
readonly style: {
|
|
871
|
-
button: {
|
|
872
|
-
width: number;
|
|
873
|
-
};
|
|
874
|
-
container: {
|
|
875
|
-
flexBasis: number;
|
|
876
|
-
} | undefined;
|
|
877
|
-
text: {
|
|
878
|
-
readonly fontSize: 14;
|
|
879
|
-
readonly fontWeight: 700;
|
|
880
|
-
};
|
|
881
|
-
};
|
|
882
|
-
};
|
|
883
|
-
readonly CUBIC_MILE: {
|
|
884
|
-
readonly label: "mi³";
|
|
885
|
-
readonly mathliveValue: "\\mathrm{mi}^3";
|
|
886
|
-
readonly katexValue: "mi^3";
|
|
887
|
-
readonly mathQuillValue: "mi^{3}";
|
|
888
|
-
readonly style: {
|
|
889
|
-
button: {
|
|
890
|
-
width: number;
|
|
891
|
-
};
|
|
892
|
-
container: {
|
|
893
|
-
flexBasis: number;
|
|
894
|
-
} | undefined;
|
|
895
|
-
text: {
|
|
896
|
-
readonly fontSize: 14;
|
|
897
|
-
readonly fontWeight: 700;
|
|
898
|
-
};
|
|
899
|
-
};
|
|
900
|
-
};
|
|
901
|
-
readonly CUBIC_YARD: {
|
|
902
|
-
readonly label: "yd³";
|
|
903
|
-
readonly mathliveValue: "\\mathrm{yd}^3";
|
|
904
|
-
readonly katexValue: "yd^3";
|
|
905
|
-
readonly mathQuillValue: "yd^{3}";
|
|
906
|
-
readonly style: {
|
|
907
|
-
button: {
|
|
908
|
-
width: number;
|
|
909
|
-
};
|
|
910
|
-
container: {
|
|
911
|
-
flexBasis: number;
|
|
912
|
-
} | undefined;
|
|
913
|
-
text: {
|
|
914
|
-
readonly fontSize: 14;
|
|
915
|
-
readonly fontWeight: 700;
|
|
916
|
-
};
|
|
917
|
-
};
|
|
918
|
-
};
|
|
919
|
-
readonly MILLILITER: {
|
|
920
|
-
readonly label: "ml";
|
|
921
|
-
readonly mathliveValue: "\\mathrm{mL}";
|
|
922
|
-
readonly katexValue: "ml";
|
|
923
|
-
readonly style: {
|
|
924
|
-
button: {
|
|
925
|
-
width: number;
|
|
926
|
-
};
|
|
927
|
-
container: {
|
|
928
|
-
flexBasis: number;
|
|
929
|
-
} | undefined;
|
|
930
|
-
text: {
|
|
931
|
-
readonly fontSize: 14;
|
|
932
|
-
readonly fontWeight: 700;
|
|
933
|
-
};
|
|
934
|
-
};
|
|
935
|
-
};
|
|
936
|
-
readonly LITER: {
|
|
937
|
-
readonly label: "L";
|
|
938
|
-
readonly mathliveValue: "\\mathrm{L}";
|
|
939
|
-
readonly katexValue: "L";
|
|
940
|
-
readonly style: {
|
|
941
|
-
button: {
|
|
942
|
-
width: number;
|
|
943
|
-
};
|
|
944
|
-
container: {
|
|
945
|
-
flexBasis: number;
|
|
946
|
-
} | undefined;
|
|
947
|
-
text: {
|
|
948
|
-
readonly fontSize: 14;
|
|
949
|
-
readonly fontWeight: 700;
|
|
950
|
-
};
|
|
951
|
-
};
|
|
952
|
-
};
|
|
953
|
-
readonly MILLILITER_SE: {
|
|
954
|
-
readonly label: "ml";
|
|
955
|
-
readonly mathliveValue: "\\mathrm{ml}";
|
|
956
|
-
readonly katexValue: "ml";
|
|
957
|
-
readonly style: {
|
|
958
|
-
button: {
|
|
959
|
-
width: number;
|
|
960
|
-
};
|
|
961
|
-
container: {
|
|
962
|
-
flexBasis: number;
|
|
963
|
-
} | undefined;
|
|
964
|
-
text: {
|
|
965
|
-
readonly fontSize: 14;
|
|
966
|
-
readonly fontWeight: 700;
|
|
967
|
-
};
|
|
968
|
-
};
|
|
969
|
-
};
|
|
970
|
-
readonly LITER_SE: {
|
|
971
|
-
readonly label: "l";
|
|
972
|
-
readonly mathliveValue: "\\mathrm{l}";
|
|
973
|
-
readonly katexValue: "l";
|
|
974
|
-
readonly style: {
|
|
975
|
-
button: {
|
|
976
|
-
width: number;
|
|
977
|
-
};
|
|
978
|
-
container: {
|
|
979
|
-
flexBasis: number;
|
|
980
|
-
} | undefined;
|
|
981
|
-
text: {
|
|
982
|
-
readonly fontSize: 14;
|
|
983
|
-
readonly fontWeight: 700;
|
|
984
|
-
};
|
|
985
|
-
};
|
|
986
|
-
};
|
|
987
|
-
readonly DL: {
|
|
988
|
-
readonly label: "dl";
|
|
989
|
-
readonly mathliveValue: "\\mathrm{dl}";
|
|
990
|
-
readonly katexValue: "dl";
|
|
991
|
-
readonly style: {
|
|
992
|
-
button: {
|
|
993
|
-
width: number;
|
|
994
|
-
};
|
|
995
|
-
container: {
|
|
996
|
-
flexBasis: number;
|
|
997
|
-
} | undefined;
|
|
998
|
-
text: {
|
|
999
|
-
readonly fontSize: 14;
|
|
1000
|
-
readonly fontWeight: 700;
|
|
1001
|
-
};
|
|
1002
|
-
};
|
|
1003
|
-
};
|
|
1004
|
-
readonly CUP: {
|
|
1005
|
-
readonly label: "cup";
|
|
1006
|
-
readonly mathliveValue: "\\mathrm{cup}";
|
|
1007
|
-
readonly katexValue: "cup";
|
|
1008
|
-
readonly mathQuillValue: "\\cup";
|
|
1009
|
-
readonly style: {
|
|
1010
|
-
button: {
|
|
1011
|
-
width: number;
|
|
1012
|
-
};
|
|
1013
|
-
container: {
|
|
1014
|
-
flexBasis: number;
|
|
1015
|
-
} | undefined;
|
|
1016
|
-
text: {
|
|
1017
|
-
readonly fontSize: 14;
|
|
1018
|
-
readonly fontWeight: 700;
|
|
1019
|
-
};
|
|
1020
|
-
};
|
|
1021
|
-
};
|
|
1022
|
-
readonly GAL: {
|
|
1023
|
-
readonly label: "gal";
|
|
1024
|
-
readonly mathliveValue: "\\mathrm{gal}";
|
|
1025
|
-
readonly katexValue: "gal";
|
|
1026
|
-
readonly style: {
|
|
1027
|
-
button: {
|
|
1028
|
-
width: number;
|
|
1029
|
-
};
|
|
1030
|
-
container: {
|
|
1031
|
-
flexBasis: number;
|
|
1032
|
-
} | undefined;
|
|
1033
|
-
text: {
|
|
1034
|
-
readonly fontSize: 14;
|
|
1035
|
-
readonly fontWeight: 700;
|
|
1036
|
-
};
|
|
1037
|
-
};
|
|
1038
|
-
};
|
|
1039
|
-
readonly PINT: {
|
|
1040
|
-
readonly label: "pt";
|
|
1041
|
-
readonly mathliveValue: "\\mathrm{pt}";
|
|
1042
|
-
readonly katexValue: "pt";
|
|
1043
|
-
readonly style: {
|
|
1044
|
-
button: {
|
|
1045
|
-
width: number;
|
|
1046
|
-
};
|
|
1047
|
-
container: {
|
|
1048
|
-
flexBasis: number;
|
|
1049
|
-
} | undefined;
|
|
1050
|
-
text: {
|
|
1051
|
-
readonly fontSize: 14;
|
|
1052
|
-
readonly fontWeight: 700;
|
|
1053
|
-
};
|
|
1054
|
-
};
|
|
1055
|
-
};
|
|
1056
|
-
readonly QUART: {
|
|
1057
|
-
readonly label: "qt";
|
|
1058
|
-
readonly mathliveValue: "\\mathrm{qt}";
|
|
1059
|
-
readonly katexValue: "qt";
|
|
1060
|
-
readonly style: {
|
|
1061
|
-
button: {
|
|
1062
|
-
width: number;
|
|
1063
|
-
};
|
|
1064
|
-
container: {
|
|
1065
|
-
flexBasis: number;
|
|
1066
|
-
} | undefined;
|
|
1067
|
-
text: {
|
|
1068
|
-
readonly fontSize: 14;
|
|
1069
|
-
readonly fontWeight: 700;
|
|
1070
|
-
};
|
|
1071
|
-
};
|
|
1072
|
-
};
|
|
1073
|
-
readonly FLOZ: {
|
|
1074
|
-
readonly label: "floz";
|
|
1075
|
-
readonly mathliveValue: "\\mathrm{floz}";
|
|
1076
|
-
readonly katexValue: "floz";
|
|
1077
|
-
readonly style: {
|
|
1078
|
-
button: {
|
|
1079
|
-
width: number;
|
|
1080
|
-
};
|
|
1081
|
-
container: {
|
|
1082
|
-
flexBasis: number;
|
|
1083
|
-
} | undefined;
|
|
1084
|
-
text: {
|
|
1085
|
-
readonly fontSize: 14;
|
|
1086
|
-
readonly fontWeight: 700;
|
|
1087
|
-
};
|
|
1088
|
-
};
|
|
1089
|
-
};
|
|
1090
|
-
readonly CL: {
|
|
1091
|
-
readonly label: "cl";
|
|
1092
|
-
readonly mathliveValue: "\\mathrm{cl}";
|
|
1093
|
-
readonly katexValue: "cl";
|
|
1094
|
-
readonly style: {
|
|
1095
|
-
button: {
|
|
1096
|
-
width: number;
|
|
1097
|
-
};
|
|
1098
|
-
container: {
|
|
1099
|
-
flexBasis: number;
|
|
1100
|
-
} | undefined;
|
|
1101
|
-
text: {
|
|
1102
|
-
readonly fontSize: 14;
|
|
1103
|
-
readonly fontWeight: 700;
|
|
1104
|
-
};
|
|
1105
|
-
};
|
|
1106
|
-
};
|
|
1107
|
-
};
|
|
1108
|
-
declare const DRAWBOARD_MATH_WEIGHT_UNITS: DrawboardMathOperatorsGroup;
|
|
1109
|
-
declare const DRAWBOARD_MATH_TIME_UNITS: DrawboardMathOperatorsGroup;
|
|
1110
|
-
|
|
1111
|
-
declare const PROBLEM_CREATOR_ADVANCED: ProblemCreatorKeyboardGroup;
|
|
1112
|
-
|
|
1113
|
-
declare const PROBLEM_CREATOR_ALGEBRA_TEXT: ProblemCreatorKeyboardGroup;
|
|
1114
|
-
declare const PROBLEM_CREATOR_ALGEBRA_SYMBOLS: ProblemCreatorKeyboardGroup;
|
|
1115
|
-
|
|
1116
|
-
declare const PROBLEM_CREATOR_BASIC: {
|
|
1117
|
-
readonly DOT: {
|
|
1118
|
-
readonly id: "basic";
|
|
1119
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1120
|
-
};
|
|
1121
|
-
readonly COMMA: {
|
|
1122
|
-
readonly id: "basic";
|
|
1123
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1124
|
-
};
|
|
1125
|
-
};
|
|
1126
|
-
|
|
1127
|
-
declare const PROBLEM_CREATOR_DESCRIPTION: {
|
|
1128
|
-
readonly EXTENDED_MULT_BASIC_ROOTS: {
|
|
1129
|
-
readonly id: "description";
|
|
1130
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1131
|
-
};
|
|
1132
|
-
readonly DOT_EXTENDED_ROOTS: {
|
|
1133
|
-
readonly id: "description";
|
|
1134
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1135
|
-
};
|
|
1136
|
-
readonly DOT_BASIC_ROOTS: {
|
|
1137
|
-
readonly id: "description";
|
|
1138
|
-
readonly keys: ProblemCreatorKeyboardKey[];
|
|
1139
|
-
};
|
|
1140
|
-
};
|
|
1141
|
-
|
|
1142
|
-
declare const PROBLEM_CREATOR_MATH_ENTRY_BASIC: {
|
|
1143
|
-
readonly id: "math-entry-basic";
|
|
1144
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1145
|
-
};
|
|
1146
|
-
declare const PROBLEM_CREATOR_MATH_ENTRY_UNITS: {
|
|
1147
|
-
readonly SE: {
|
|
1148
|
-
readonly id: "math-entry-units";
|
|
1149
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1150
|
-
};
|
|
1151
|
-
readonly DE: {
|
|
1152
|
-
readonly id: "math-entry-units";
|
|
1153
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1154
|
-
};
|
|
1155
|
-
readonly GB: {
|
|
1156
|
-
readonly id: "math-entry-units";
|
|
1157
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1158
|
-
};
|
|
1159
|
-
readonly US: {
|
|
1160
|
-
readonly id: "math-entry-units";
|
|
1161
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1162
|
-
};
|
|
1163
|
-
};
|
|
1164
|
-
|
|
1165
|
-
declare const PROBLEM_CREATOR_LENGTH: {
|
|
1166
|
-
readonly METRIC: {
|
|
1167
|
-
readonly id: "length-units";
|
|
1168
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1169
|
-
};
|
|
1170
|
-
readonly MIXED: {
|
|
1171
|
-
readonly id: "length-units";
|
|
1172
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1173
|
-
};
|
|
1174
|
-
};
|
|
1175
|
-
declare const PROBLEM_CREATOR_AREA: {
|
|
1176
|
-
readonly METRIC: {
|
|
1177
|
-
readonly id: "area-units";
|
|
1178
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1179
|
-
};
|
|
1180
|
-
readonly MIXED: {
|
|
1181
|
-
readonly id: "area-units";
|
|
1182
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1183
|
-
};
|
|
1184
|
-
};
|
|
1185
|
-
declare const PROBLEM_CREATOR_VOLUME: {
|
|
1186
|
-
readonly METRIC: {
|
|
1187
|
-
readonly id: "volume-units";
|
|
1188
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1189
|
-
};
|
|
1190
|
-
readonly MIXED: {
|
|
1191
|
-
readonly id: "volume-units";
|
|
1192
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1193
|
-
};
|
|
1194
|
-
};
|
|
1195
|
-
declare const PROBLEM_CREATOR_WEIGHT: {
|
|
1196
|
-
readonly METRIC: {
|
|
1197
|
-
readonly id: "weight-units";
|
|
1198
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1199
|
-
};
|
|
1200
|
-
readonly MIXED: {
|
|
1201
|
-
readonly id: "weight-units";
|
|
1202
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1203
|
-
};
|
|
1204
|
-
};
|
|
1205
|
-
declare const PROBLEM_CREATOR_TIME: {
|
|
1206
|
-
readonly H24: {
|
|
1207
|
-
readonly id: "time-units";
|
|
1208
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1209
|
-
};
|
|
1210
|
-
readonly H24_DAYS: {
|
|
1211
|
-
readonly id: "time-units";
|
|
1212
|
-
readonly keys: [ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey, ProblemCreatorKeyboardKey];
|
|
1213
|
-
};
|
|
1214
|
-
};
|
|
1215
|
-
|
|
1216
|
-
declare enum ProblemCreatorMathBasicOperator {
|
|
1217
|
-
ADDITION = "ADDITION",
|
|
1218
|
-
SUBTRACTION = "SUBTRACTION",
|
|
1219
|
-
MULTIPLICATION = "MULTIPLICATION",
|
|
1220
|
-
DIVISION = "DIVISION",
|
|
1221
|
-
LESS_THAN = "LESS_THAN",
|
|
1222
|
-
GREATER_THAN = "GREATER_THAN",
|
|
1223
|
-
LESS_THAN_OR_EQUAL = "LESS_THAN_OR_EQUAL",
|
|
1224
|
-
GREATER_THAN_OR_EQUAL = "GREATER_THAN_OR_EQUAL",
|
|
1225
|
-
EQUALS = "EQUALS",
|
|
1226
|
-
NOT_EQUAL = "NOT_EQUAL",
|
|
1227
|
-
APPROXIMATELY_EQUAL = "APPROXIMATELY_EQUAL",
|
|
1228
|
-
DECIMAL_POINT = "DECIMAL_POINT",
|
|
1229
|
-
COMMA = "COMMA",
|
|
1230
|
-
COLON = "COLON",
|
|
1231
|
-
DOT = "DOT",
|
|
1232
|
-
PERCENT = "PERCENT",
|
|
1233
|
-
PREMILE = "PREMILE",
|
|
1234
|
-
SLASH = "SLASH",
|
|
1235
|
-
NTH_POWER = "NTH_POWER",
|
|
1236
|
-
SQUARE_POWER = "SQUARE_POWER",
|
|
1237
|
-
CUBE_POWER = "CUBE_POWER",
|
|
1238
|
-
FRACTION = "FRACTION",
|
|
1239
|
-
SQUARE_ROOT = "SQUARE_ROOT",
|
|
1240
|
-
CUBE_ROOT = "CUBE_ROOT",
|
|
1241
|
-
NTH_ROOT = "NTH_ROOT",
|
|
1242
|
-
SIMILARITY = "SIMILARITY",
|
|
1243
|
-
CONGRUENT = "CONGRUENT",
|
|
1244
|
-
ELEMENT_OF = "ELEMENT_OF",
|
|
1245
|
-
NOT_ELEMENT_OF = "NOT_ELEMENT_OF",
|
|
1246
|
-
SUBSET = "SUBSET",
|
|
1247
|
-
INTERSECTION = "INTERSECTION",
|
|
1248
|
-
UNION = "UNION",
|
|
1249
|
-
INFINITY = "INFINITY",
|
|
1250
|
-
EMPTY = "EMPTY",
|
|
1251
|
-
PLUS_MINUS = "PLUS_MINUS",
|
|
1252
|
-
SUBSCRIPT_VARIABLE = "SUBSCRIPT_VARIABLE",
|
|
1253
|
-
SUM = "SUM",
|
|
1254
|
-
PARENTHESES = "PARENTHESES",
|
|
1255
|
-
ORDERED_PAIR = "ORDERED_PAIR"
|
|
1256
|
-
}
|
|
1257
|
-
declare const PROBLEM_CREATOR_MATH_BASIC_OPERATORS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathBasicOperator>;
|
|
1258
|
-
|
|
1259
|
-
declare enum ProblemCreatorMathSegmentSymbols {
|
|
1260
|
-
BIDIRECTIONAL_SEGMENT = "BIDIRECTIONAL_SEGMENT",
|
|
1261
|
-
LEFT_DIRECTED_SEGMENT = "LEFT_DIRECTED_SEGMENT",
|
|
1262
|
-
RIGHT_DIRECTED_SEGMENT = "RIGHT_DIRECTED_SEGMENT",
|
|
1263
|
-
LINE_SEGMENT = "LINE_SEGMENT"
|
|
1264
|
-
}
|
|
1265
|
-
declare enum ProblemCreatorMathGeometrySymbols {
|
|
1266
|
-
DEGREE = "DEGREE",
|
|
1267
|
-
ANGLE = "ANGLE",
|
|
1268
|
-
PARALLEL = "PARALLEL",
|
|
1269
|
-
PERPENDICULAR = "PERPENDICULAR"
|
|
1270
|
-
}
|
|
1271
|
-
declare const PROBLEM_CREATOR_MATH_GEOMETRY_SYMBOLS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathGeometrySymbols>;
|
|
1272
|
-
declare const PROBLEM_CREATOR_MATH_SEGMENT_SYMBOLS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathSegmentSymbols>;
|
|
1273
|
-
|
|
1274
|
-
declare enum ProblemCreatorMathSymbol {
|
|
1275
|
-
ALPHA = "ALPHA",
|
|
1276
|
-
BETA = "BETA",
|
|
1277
|
-
GAMMA = "GAMMA",
|
|
1278
|
-
LAMBDA = "LAMBDA",
|
|
1279
|
-
DELTA = "DELTA",
|
|
1280
|
-
THETA = "THETA",
|
|
1281
|
-
OMEGA_UPPERCASE = "OMEGAUPPERCASE",
|
|
1282
|
-
OMEGA_LOWERCASE = "OMEGALOWERCASE",
|
|
1283
|
-
MU = "MU",
|
|
1284
|
-
ETA = "ETA",
|
|
1285
|
-
EPSILON = "EPSILON",
|
|
1286
|
-
SIGMA = "SIGMA",
|
|
1287
|
-
SIGMA_SUM = "SIGMA_SUM",
|
|
1288
|
-
RHO = "RHO",
|
|
1289
|
-
PI = "PI",
|
|
1290
|
-
PHI = "PHI"
|
|
1291
|
-
}
|
|
1292
|
-
declare const PROBLEM_CREATOR_MATH_SYMBOLS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathSymbol>;
|
|
1293
|
-
|
|
1294
|
-
declare enum ProblemCreatorMathCurrencyUnit {
|
|
1295
|
-
KRONE = "KRONE",
|
|
1296
|
-
DOLLAR = "DOLLAR",
|
|
1297
|
-
EURO = "EURO",
|
|
1298
|
-
POUND = "POUND",
|
|
1299
|
-
PESO = "PESO",
|
|
1300
|
-
YEN = "YEN",
|
|
1301
|
-
CENT = "CENT"
|
|
1302
|
-
}
|
|
1303
|
-
declare enum ProblemCreatorMathLengthUnit {
|
|
1304
|
-
KILOMETER = "KILOMETER",
|
|
1305
|
-
METER = "METER",
|
|
1306
|
-
DECIMETER = "DECIMETER",
|
|
1307
|
-
CENTIMETER = "CENTIMETER",
|
|
1308
|
-
MILLIMETER = "MILLIMETER",
|
|
1309
|
-
HECTARE = "HECTARE",
|
|
1310
|
-
INCH = "INCH",
|
|
1311
|
-
FOOT = "FOOT",
|
|
1312
|
-
YARD = "YARD",
|
|
1313
|
-
YARDS = "YARDS",
|
|
1314
|
-
MILE = "MILE",
|
|
1315
|
-
MILE_SE = "MILE_SE"
|
|
1316
|
-
}
|
|
1317
|
-
declare enum ProblemCreatorMathAreaUnit {
|
|
1318
|
-
SQUARE_KILOMETER = "SQUARE_KILOMETER",
|
|
1319
|
-
SQUARE_METER = "SQUARE_METER",
|
|
1320
|
-
SQUARE_DECIMETER = "SQUARE_DECIMETER",
|
|
1321
|
-
SQUARE_CENTIMETER = "SQUARE_CENTIMETER",
|
|
1322
|
-
SQUARE_MILLIMETER = "SQUARE_MILLIMETER",
|
|
1323
|
-
SQUARE_INCH = "SQUARE_INCH",
|
|
1324
|
-
SQUARE_FOOT = "SQUARE_FOOT",
|
|
1325
|
-
SQUARE_MILE = "SQUARE_MILE",
|
|
1326
|
-
SQUARE_YARD = "SQUARE_YARD"
|
|
1327
|
-
}
|
|
1328
|
-
declare enum ProblemCreatorMathVolumeUnit {
|
|
1329
|
-
CUBIC_KILOMETER = "CUBIC_KILOMETER",
|
|
1330
|
-
CUBIC_METER = "CUBIC_METER",
|
|
1331
|
-
CUBIC_DECIMETER = "CUBIC_DECIMETER",
|
|
1332
|
-
CUBIC_CENTIMETER = "CUBIC_CENTIMETER",
|
|
1333
|
-
CUBIC_MILLIMETER = "CUBIC_MILLIMETER",
|
|
1334
|
-
CUBIC_INCH = "CUBIC_INCH",
|
|
1335
|
-
CUBIC_FOOT = "CUBIC_FOOT",
|
|
1336
|
-
CUBIC_MILE = "CUBIC_MILE",
|
|
1337
|
-
CUBIC_YARD = "CUBIC_YARD",
|
|
1338
|
-
MILLILITER = "MILLILITER",
|
|
1339
|
-
LITER = "LITER",
|
|
1340
|
-
MILLILITER_SE = "MILLILITER_SE",
|
|
1341
|
-
LITER_SE = "LITER_SE",
|
|
1342
|
-
DL = "DL",
|
|
1343
|
-
CUP = "CUP",
|
|
1344
|
-
GAL = "GAL",
|
|
1345
|
-
PINT = "PINT",
|
|
1346
|
-
QUART = "QUART",
|
|
1347
|
-
FLOZ = "FLOZ",
|
|
1348
|
-
CL = "CL"
|
|
1349
|
-
}
|
|
1350
|
-
declare enum ProblemCreatorMathWeightUnit {
|
|
1351
|
-
KG = "KG",
|
|
1352
|
-
G = "G",
|
|
1353
|
-
MG = "MG",
|
|
1354
|
-
TON_SE = "TON_SE",
|
|
1355
|
-
TON = "TON",
|
|
1356
|
-
T = "T",
|
|
1357
|
-
LB = "LB",
|
|
1358
|
-
OZ = "OZ",
|
|
1359
|
-
GAL = "GAL",
|
|
1360
|
-
HG = "HG"
|
|
1361
|
-
}
|
|
1362
|
-
declare enum ProblemCreatorMathTimeUnit {
|
|
1363
|
-
S = "S",
|
|
1364
|
-
M = "M",
|
|
1365
|
-
H = "H",
|
|
1366
|
-
DAY = "DAY",
|
|
1367
|
-
WEEK = "WEEK",
|
|
1368
|
-
MONTH = "MONTH",
|
|
1369
|
-
YEAR = "YEAR",
|
|
1370
|
-
DAYS = "DAYS",
|
|
1371
|
-
WEEKS = "WEEKS",
|
|
1372
|
-
MONTHS = "MONTHS",
|
|
1373
|
-
YEARS = "YEARS"
|
|
1374
|
-
}
|
|
1375
|
-
declare const PROBLEM_CREATOR_MATH_CURRENCY_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathCurrencyUnit>;
|
|
1376
|
-
declare const PROBLEM_CREATOR_MATH_LENGTH_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathLengthUnit>;
|
|
1377
|
-
declare const PROBLEM_CREATOR_MATH_AREA_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathAreaUnit>;
|
|
1378
|
-
declare const PROBLEM_CREATOR_MATH_VOLUME_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathVolumeUnit>;
|
|
1379
|
-
declare const PROBLEM_CREATOR_MATH_WEIGHT_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathWeightUnit>;
|
|
1380
|
-
declare const PROBLEM_CREATOR_MATH_TIME_UNITS: ProblemCreatorMathKeysGroup<typeof ProblemCreatorMathTimeUnit>;
|
|
1381
|
-
|
|
1382
529
|
type DevOverrides<P extends Platform> = {
|
|
1383
530
|
[K in Locale]?: Partial<EnvironmentVars<P>>;
|
|
1384
531
|
};
|
|
@@ -1412,9 +559,16 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1412
559
|
readonly onEnvsChange: (cb: (cfg: EnvironmentVars<P>) => void) => effector.Subscription;
|
|
1413
560
|
readonly onLocaleChange: (cb: (cfg: LocaleConfig<P, L>) => void) => effector.Subscription;
|
|
1414
561
|
readonly getPresets: () => {
|
|
1415
|
-
envPreset:
|
|
562
|
+
envPreset: Readonly<{
|
|
563
|
+
STUDENTS: StudentsWebVarsPreset;
|
|
564
|
+
TEACHERS: TeachersWebVarsPreset;
|
|
565
|
+
DISTRICT: DistrictWebVarsPreset;
|
|
566
|
+
AUTH_WEB: AuthWebVarsPreset;
|
|
567
|
+
WEB_ADMIN: WebAdminVarsPreset;
|
|
568
|
+
MOBILE: MobileVarsPreset;
|
|
569
|
+
}>;
|
|
1416
570
|
localePreset: LocalePreset;
|
|
1417
571
|
};
|
|
1418
572
|
}
|
|
1419
573
|
|
|
1420
|
-
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset,
|
|
574
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictWebVarsPreset, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeLabel, Locale, LoginSource, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileVars, type MobileVarsPreset, Platform, PlatformBuildTarget, 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, buildTargetToEnvironment };
|