@magmamath/frontend-config 1.3.4-rc.102 → 1.3.4-rc.3
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/{common.constants-DM-Bg4xS.d.mts → common.constants-Dy4DFaEM.d.mts} +1 -2
- package/dist/{common.constants-DM-Bg4xS.d.ts → common.constants-Dy4DFaEM.d.ts} +1 -2
- package/dist/index.d.mts +10 -35
- package/dist/index.d.ts +10 -35
- package/dist/index.js +12 -554
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -554
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.d.mts +3 -1
- package/dist/translation/index.d.ts +3 -1
- package/dist/translation/index.js +41 -5
- package/dist/translation/index.js.map +1 -1
- package/dist/translation/index.mjs +41 -5
- package/dist/translation/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SSO, L as LoginSource, a as Locale, E as Environment, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize, A as ApiRegion } from './common.constants-
|
|
2
|
-
export { c as Source } from './common.constants-
|
|
1
|
+
import { S as SSO, L as LoginSource, a as Locale, E as Environment, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize, A as ApiRegion } from './common.constants-Dy4DFaEM.mjs';
|
|
2
|
+
export { c as Source } from './common.constants-Dy4DFaEM.mjs';
|
|
3
3
|
import { ComponentType } from 'react';
|
|
4
4
|
import * as effector from 'effector';
|
|
5
5
|
|
|
@@ -31,15 +31,12 @@ declare const DateLocale: {
|
|
|
31
31
|
readonly 'en-SCT': "en";
|
|
32
32
|
readonly DE: "de";
|
|
33
33
|
readonly 'de-DE': "de";
|
|
34
|
-
readonly PL: "pl";
|
|
35
|
-
readonly 'pl-PL': "pl";
|
|
36
34
|
};
|
|
37
35
|
type DateLocale = (typeof DateLocale)[keyof typeof DateLocale];
|
|
38
36
|
declare const MomentDateLocale: {
|
|
39
37
|
GB: string;
|
|
40
38
|
SE: string;
|
|
41
39
|
DE: string;
|
|
42
|
-
PL: string;
|
|
43
40
|
};
|
|
44
41
|
|
|
45
42
|
declare enum MatrixMode {
|
|
@@ -260,8 +257,7 @@ declare enum WeekStart {
|
|
|
260
257
|
declare enum CalendarLocale {
|
|
261
258
|
EN = "en",
|
|
262
259
|
SE = "sv",
|
|
263
|
-
DE = "de"
|
|
264
|
-
PL = "pl"
|
|
260
|
+
DE = "de"
|
|
265
261
|
}
|
|
266
262
|
type CalendarConfig = {
|
|
267
263
|
locale: CalendarLocale;
|
|
@@ -275,7 +271,6 @@ type CalendarConfig = {
|
|
|
275
271
|
declare const EN_CALENDAR_CONFIG: CalendarConfig;
|
|
276
272
|
declare const SE_CALENDAR_CONFIG: CalendarConfig;
|
|
277
273
|
declare const DE_CALENDAR_CONFIG: CalendarConfig;
|
|
278
|
-
declare const PL_CALENDAR_CONFIG: CalendarConfig;
|
|
279
274
|
|
|
280
275
|
type GradeData = {
|
|
281
276
|
name: string;
|
|
@@ -313,7 +308,6 @@ type RegionSpecificVars = {
|
|
|
313
308
|
PARENT_WEB_URL: string;
|
|
314
309
|
SOCKET_URL: string;
|
|
315
310
|
STUDENTS_WEB_URL: string;
|
|
316
|
-
WEBSOCKETS_URL: string;
|
|
317
311
|
TEACHERS_WEB_URL: string;
|
|
318
312
|
};
|
|
319
313
|
|
|
@@ -349,8 +343,6 @@ type TeachersWebCommon = {
|
|
|
349
343
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
350
344
|
TOLGEE_API_URL?: string;
|
|
351
345
|
TOLGEE_API_KEY?: string;
|
|
352
|
-
GOOGLE_TRANSLATE_URL: string;
|
|
353
|
-
GOOGLE_API_KEY: string;
|
|
354
346
|
};
|
|
355
347
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
356
348
|
type TeachersWebVarsPreset = {
|
|
@@ -367,7 +359,7 @@ type DistrictCommon = {
|
|
|
367
359
|
TOLGEE_API_URL?: string;
|
|
368
360
|
TOLGEE_API_KEY?: string;
|
|
369
361
|
};
|
|
370
|
-
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
362
|
+
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
371
363
|
type DistrictWebVarsPreset = {
|
|
372
364
|
[key in Locale]: {
|
|
373
365
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -397,11 +389,7 @@ type SSO_DE = {
|
|
|
397
389
|
GOOGLE_AUTH: string;
|
|
398
390
|
MICROSOFT_AUTH: string;
|
|
399
391
|
};
|
|
400
|
-
type
|
|
401
|
-
GOOGLE_AUTH: string;
|
|
402
|
-
MICROSOFT_AUTH: string;
|
|
403
|
-
};
|
|
404
|
-
type SSOVariant = SSO_US | SSO_DE | SSO_UK | SSO_SE | SSO_PL;
|
|
392
|
+
type SSOVariant = SSO_US | SSO_DE | SSO_UK | SSO_SE;
|
|
405
393
|
type SSOByLocale = {
|
|
406
394
|
[Locale.US]: SSO_US;
|
|
407
395
|
[Locale.CA]: SSO_US;
|
|
@@ -409,7 +397,6 @@ type SSOByLocale = {
|
|
|
409
397
|
[Locale.SCT]: SSO_UK;
|
|
410
398
|
[Locale.SE]: SSO_SE;
|
|
411
399
|
[Locale.DE]: SSO_DE;
|
|
412
|
-
[Locale.PL]: SSO_PL;
|
|
413
400
|
};
|
|
414
401
|
|
|
415
402
|
type Prettify<T> = T extends Function ? T : {
|
|
@@ -417,7 +404,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
417
404
|
};
|
|
418
405
|
|
|
419
406
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
420
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'
|
|
407
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
421
408
|
TOS_URL: string;
|
|
422
409
|
CLARITY_PROJECT_ID: string;
|
|
423
410
|
INTERCOM_APP_ID: string;
|
|
@@ -443,9 +430,6 @@ type AuthWebVarsPreset = {
|
|
|
443
430
|
[Locale.US]: {
|
|
444
431
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
445
432
|
};
|
|
446
|
-
[Locale.PL]: {
|
|
447
|
-
[key in Environment]: AuthWebVars<SSO_PL>;
|
|
448
|
-
};
|
|
449
433
|
};
|
|
450
434
|
|
|
451
435
|
type MobileCommon = {
|
|
@@ -473,7 +457,6 @@ type MobileBaseVars = {
|
|
|
473
457
|
API_URL: string;
|
|
474
458
|
CDN_HOST: string;
|
|
475
459
|
SOCKET_URL: string;
|
|
476
|
-
WEBSOCKETS_URL: string;
|
|
477
460
|
LOGGLY_TAG: string;
|
|
478
461
|
PROBLEM_CREATOR_URL: string;
|
|
479
462
|
} & MobileCommon;
|
|
@@ -497,9 +480,6 @@ type MobileVarsPreset = {
|
|
|
497
480
|
[Locale.US]: {
|
|
498
481
|
[key in Environment]: MobileVars<SSO_US>;
|
|
499
482
|
};
|
|
500
|
-
[Locale.PL]: {
|
|
501
|
-
[key in Environment]: MobileVars<SSO_PL>;
|
|
502
|
-
};
|
|
503
483
|
};
|
|
504
484
|
|
|
505
485
|
type RegionSpecificWebAdminVars = {
|
|
@@ -553,8 +533,7 @@ declare enum KeyboardCurrencyVariant {
|
|
|
553
533
|
DOLLAR_CENT = "DollarCent",
|
|
554
534
|
POUND_PENCE = "PoundPence",
|
|
555
535
|
KRONE_EURO_POUND = "KroneEuroPound",
|
|
556
|
-
EURO_DOLLAR_POUND = "EuroDollarPound"
|
|
557
|
-
ZLOTY_GROSZ = "ZlotyGrosz"
|
|
536
|
+
EURO_DOLLAR_POUND = "EuroDollarPound"
|
|
558
537
|
}
|
|
559
538
|
declare enum KeyboardTimeVariant {
|
|
560
539
|
H12 = "H12",
|
|
@@ -567,8 +546,7 @@ declare enum DrawboardCoinVariant {
|
|
|
567
546
|
EURO = "euro",
|
|
568
547
|
CA = "ca",
|
|
569
548
|
UK = "uk",
|
|
570
|
-
SE = "se"
|
|
571
|
-
PL = "pl"
|
|
549
|
+
SE = "se"
|
|
572
550
|
}
|
|
573
551
|
|
|
574
552
|
type KeyboardConfig = {
|
|
@@ -610,8 +588,7 @@ declare enum ProblemCreatorMathEntryVariant {
|
|
|
610
588
|
DOLLAR = "Dollar",
|
|
611
589
|
KRONE = "Krone",
|
|
612
590
|
POUND_PENCE = "PoundPence",
|
|
613
|
-
EURO = "Euro"
|
|
614
|
-
ZLOTY = "Zloty"
|
|
591
|
+
EURO = "Euro"
|
|
615
592
|
}
|
|
616
593
|
declare enum ProblemCreatorDescriptionVariant {
|
|
617
594
|
EXTENDED_MULT_BASIC_ROOTS = "ExtendedMultBasicRoots",
|
|
@@ -810,7 +787,6 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
810
787
|
isCanadian: boolean;
|
|
811
788
|
isScottish: boolean;
|
|
812
789
|
isGerman: boolean;
|
|
813
|
-
isPolish: boolean;
|
|
814
790
|
}>;
|
|
815
791
|
constructor(opts: ConfigOptions<P>);
|
|
816
792
|
private readonly syncConfigsStores;
|
|
@@ -826,7 +802,6 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
826
802
|
isCanadian: boolean;
|
|
827
803
|
isScottish: boolean;
|
|
828
804
|
isGerman: boolean;
|
|
829
|
-
isPolish: boolean;
|
|
830
805
|
};
|
|
831
806
|
readonly onEnvsChange: (cb: (cfg: EnvironmentVars<P>) => void) => effector.Subscription;
|
|
832
807
|
readonly onLocaleChange: (cb: (cfg: LocaleConfig<P, L>) => void) => effector.Subscription;
|
|
@@ -836,4 +811,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
836
811
|
};
|
|
837
812
|
}
|
|
838
813
|
|
|
839
|
-
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator,
|
|
814
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator, PRIORITY_LANGUAGES, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SSO, L as LoginSource, a as Locale, E as Environment, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize, A as ApiRegion } from './common.constants-
|
|
2
|
-
export { c as Source } from './common.constants-
|
|
1
|
+
import { S as SSO, L as LoginSource, a as Locale, E as Environment, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize, A as ApiRegion } from './common.constants-Dy4DFaEM.js';
|
|
2
|
+
export { c as Source } from './common.constants-Dy4DFaEM.js';
|
|
3
3
|
import { ComponentType } from 'react';
|
|
4
4
|
import * as effector from 'effector';
|
|
5
5
|
|
|
@@ -31,15 +31,12 @@ declare const DateLocale: {
|
|
|
31
31
|
readonly 'en-SCT': "en";
|
|
32
32
|
readonly DE: "de";
|
|
33
33
|
readonly 'de-DE': "de";
|
|
34
|
-
readonly PL: "pl";
|
|
35
|
-
readonly 'pl-PL': "pl";
|
|
36
34
|
};
|
|
37
35
|
type DateLocale = (typeof DateLocale)[keyof typeof DateLocale];
|
|
38
36
|
declare const MomentDateLocale: {
|
|
39
37
|
GB: string;
|
|
40
38
|
SE: string;
|
|
41
39
|
DE: string;
|
|
42
|
-
PL: string;
|
|
43
40
|
};
|
|
44
41
|
|
|
45
42
|
declare enum MatrixMode {
|
|
@@ -260,8 +257,7 @@ declare enum WeekStart {
|
|
|
260
257
|
declare enum CalendarLocale {
|
|
261
258
|
EN = "en",
|
|
262
259
|
SE = "sv",
|
|
263
|
-
DE = "de"
|
|
264
|
-
PL = "pl"
|
|
260
|
+
DE = "de"
|
|
265
261
|
}
|
|
266
262
|
type CalendarConfig = {
|
|
267
263
|
locale: CalendarLocale;
|
|
@@ -275,7 +271,6 @@ type CalendarConfig = {
|
|
|
275
271
|
declare const EN_CALENDAR_CONFIG: CalendarConfig;
|
|
276
272
|
declare const SE_CALENDAR_CONFIG: CalendarConfig;
|
|
277
273
|
declare const DE_CALENDAR_CONFIG: CalendarConfig;
|
|
278
|
-
declare const PL_CALENDAR_CONFIG: CalendarConfig;
|
|
279
274
|
|
|
280
275
|
type GradeData = {
|
|
281
276
|
name: string;
|
|
@@ -313,7 +308,6 @@ type RegionSpecificVars = {
|
|
|
313
308
|
PARENT_WEB_URL: string;
|
|
314
309
|
SOCKET_URL: string;
|
|
315
310
|
STUDENTS_WEB_URL: string;
|
|
316
|
-
WEBSOCKETS_URL: string;
|
|
317
311
|
TEACHERS_WEB_URL: string;
|
|
318
312
|
};
|
|
319
313
|
|
|
@@ -349,8 +343,6 @@ type TeachersWebCommon = {
|
|
|
349
343
|
LOGGLY_CUSTOMER_TOKEN: string;
|
|
350
344
|
TOLGEE_API_URL?: string;
|
|
351
345
|
TOLGEE_API_KEY?: string;
|
|
352
|
-
GOOGLE_TRANSLATE_URL: string;
|
|
353
|
-
GOOGLE_API_KEY: string;
|
|
354
346
|
};
|
|
355
347
|
type TeachersWebVars = RegionSpecificVars & TeachersWebCommon;
|
|
356
348
|
type TeachersWebVarsPreset = {
|
|
@@ -367,7 +359,7 @@ type DistrictCommon = {
|
|
|
367
359
|
TOLGEE_API_URL?: string;
|
|
368
360
|
TOLGEE_API_KEY?: string;
|
|
369
361
|
};
|
|
370
|
-
type DistrictDashboardVars = RegionSpecificVars & DistrictCommon;
|
|
362
|
+
type DistrictDashboardVars = Omit<RegionSpecificVars, 'SOCKET_URL'> & DistrictCommon;
|
|
371
363
|
type DistrictWebVarsPreset = {
|
|
372
364
|
[key in Locale]: {
|
|
373
365
|
[key in Environment]: DistrictDashboardVars;
|
|
@@ -397,11 +389,7 @@ type SSO_DE = {
|
|
|
397
389
|
GOOGLE_AUTH: string;
|
|
398
390
|
MICROSOFT_AUTH: string;
|
|
399
391
|
};
|
|
400
|
-
type
|
|
401
|
-
GOOGLE_AUTH: string;
|
|
402
|
-
MICROSOFT_AUTH: string;
|
|
403
|
-
};
|
|
404
|
-
type SSOVariant = SSO_US | SSO_DE | SSO_UK | SSO_SE | SSO_PL;
|
|
392
|
+
type SSOVariant = SSO_US | SSO_DE | SSO_UK | SSO_SE;
|
|
405
393
|
type SSOByLocale = {
|
|
406
394
|
[Locale.US]: SSO_US;
|
|
407
395
|
[Locale.CA]: SSO_US;
|
|
@@ -409,7 +397,6 @@ type SSOByLocale = {
|
|
|
409
397
|
[Locale.SCT]: SSO_UK;
|
|
410
398
|
[Locale.SE]: SSO_SE;
|
|
411
399
|
[Locale.DE]: SSO_DE;
|
|
412
|
-
[Locale.PL]: SSO_PL;
|
|
413
400
|
};
|
|
414
401
|
|
|
415
402
|
type Prettify<T> = T extends Function ? T : {
|
|
@@ -417,7 +404,7 @@ type Prettify<T> = T extends Function ? T : {
|
|
|
417
404
|
};
|
|
418
405
|
|
|
419
406
|
type AuthWebVars<T extends SSOVariant> = Prettify<AuthWebBaseVars & T>;
|
|
420
|
-
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'
|
|
407
|
+
type AuthWebBaseVars = Omit<RegionSpecificVars, 'CDN_HOST' | 'LOGGLY_TAG' | 'SOCKET_URL'> & {
|
|
421
408
|
TOS_URL: string;
|
|
422
409
|
CLARITY_PROJECT_ID: string;
|
|
423
410
|
INTERCOM_APP_ID: string;
|
|
@@ -443,9 +430,6 @@ type AuthWebVarsPreset = {
|
|
|
443
430
|
[Locale.US]: {
|
|
444
431
|
[key in Environment]: AuthWebVars<SSO_US>;
|
|
445
432
|
};
|
|
446
|
-
[Locale.PL]: {
|
|
447
|
-
[key in Environment]: AuthWebVars<SSO_PL>;
|
|
448
|
-
};
|
|
449
433
|
};
|
|
450
434
|
|
|
451
435
|
type MobileCommon = {
|
|
@@ -473,7 +457,6 @@ type MobileBaseVars = {
|
|
|
473
457
|
API_URL: string;
|
|
474
458
|
CDN_HOST: string;
|
|
475
459
|
SOCKET_URL: string;
|
|
476
|
-
WEBSOCKETS_URL: string;
|
|
477
460
|
LOGGLY_TAG: string;
|
|
478
461
|
PROBLEM_CREATOR_URL: string;
|
|
479
462
|
} & MobileCommon;
|
|
@@ -497,9 +480,6 @@ type MobileVarsPreset = {
|
|
|
497
480
|
[Locale.US]: {
|
|
498
481
|
[key in Environment]: MobileVars<SSO_US>;
|
|
499
482
|
};
|
|
500
|
-
[Locale.PL]: {
|
|
501
|
-
[key in Environment]: MobileVars<SSO_PL>;
|
|
502
|
-
};
|
|
503
483
|
};
|
|
504
484
|
|
|
505
485
|
type RegionSpecificWebAdminVars = {
|
|
@@ -553,8 +533,7 @@ declare enum KeyboardCurrencyVariant {
|
|
|
553
533
|
DOLLAR_CENT = "DollarCent",
|
|
554
534
|
POUND_PENCE = "PoundPence",
|
|
555
535
|
KRONE_EURO_POUND = "KroneEuroPound",
|
|
556
|
-
EURO_DOLLAR_POUND = "EuroDollarPound"
|
|
557
|
-
ZLOTY_GROSZ = "ZlotyGrosz"
|
|
536
|
+
EURO_DOLLAR_POUND = "EuroDollarPound"
|
|
558
537
|
}
|
|
559
538
|
declare enum KeyboardTimeVariant {
|
|
560
539
|
H12 = "H12",
|
|
@@ -567,8 +546,7 @@ declare enum DrawboardCoinVariant {
|
|
|
567
546
|
EURO = "euro",
|
|
568
547
|
CA = "ca",
|
|
569
548
|
UK = "uk",
|
|
570
|
-
SE = "se"
|
|
571
|
-
PL = "pl"
|
|
549
|
+
SE = "se"
|
|
572
550
|
}
|
|
573
551
|
|
|
574
552
|
type KeyboardConfig = {
|
|
@@ -610,8 +588,7 @@ declare enum ProblemCreatorMathEntryVariant {
|
|
|
610
588
|
DOLLAR = "Dollar",
|
|
611
589
|
KRONE = "Krone",
|
|
612
590
|
POUND_PENCE = "PoundPence",
|
|
613
|
-
EURO = "Euro"
|
|
614
|
-
ZLOTY = "Zloty"
|
|
591
|
+
EURO = "Euro"
|
|
615
592
|
}
|
|
616
593
|
declare enum ProblemCreatorDescriptionVariant {
|
|
617
594
|
EXTENDED_MULT_BASIC_ROOTS = "ExtendedMultBasicRoots",
|
|
@@ -810,7 +787,6 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
810
787
|
isCanadian: boolean;
|
|
811
788
|
isScottish: boolean;
|
|
812
789
|
isGerman: boolean;
|
|
813
|
-
isPolish: boolean;
|
|
814
790
|
}>;
|
|
815
791
|
constructor(opts: ConfigOptions<P>);
|
|
816
792
|
private readonly syncConfigsStores;
|
|
@@ -826,7 +802,6 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
826
802
|
isCanadian: boolean;
|
|
827
803
|
isScottish: boolean;
|
|
828
804
|
isGerman: boolean;
|
|
829
|
-
isPolish: boolean;
|
|
830
805
|
};
|
|
831
806
|
readonly onEnvsChange: (cb: (cfg: EnvironmentVars<P>) => void) => effector.Subscription;
|
|
832
807
|
readonly onLocaleChange: (cb: (cfg: LocaleConfig<P, L>) => void) => effector.Subscription;
|
|
@@ -836,4 +811,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
836
811
|
};
|
|
837
812
|
}
|
|
838
813
|
|
|
839
|
-
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator,
|
|
814
|
+
export { ApiRegion, AppConfigManager, type AuthWebBaseVars, type AuthWebVars, type AuthWebVarsPreset, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, Grade, type GradeData, type HighSchoolGrades, type KeyboardConfig, KeyboardCurrencyVariant, KeyboardPreset, KeyboardTimeVariant, LANGUAGES_CONFIG, LANGUAGES_LIST, Language, type LanguageConfig, Locale, type LocaleLanguageData, LoginSource, MOST_USED_LANGUAGES, MatrixMode, type MobileBaseVars, type MobileCommon, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NumberDecimalSeparator, NumberGroupingSeparator, PRIORITY_LANGUAGES, type ParentWebLocaleConfig, type ParentWebVars, type ParentWebVarsPreset, Platform, PlatformBuildTarget, type PrimaryGrades, type ProblemCreatorConfig, ProblemCreatorDescriptionVariant, type ProblemCreatorKeyboardConfig, ProblemCreatorKeyboardPreset, ProblemCreatorMathEntryVariant, QRCodeSize, SE_CALENDAR_CONFIG, SSO, type SSOByLocale, type SSOConfig, type SSOVariant, type SSO_DE, type SSO_SE, type SSO_UK, type SSO_US, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|