@magmamath/frontend-config 1.6.1-rc.0 → 1.7.0-rc.2
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-C63VsNO4.d.mts → common.constants-Dd81SRrq.d.mts} +2 -1
- package/dist/{common.constants-C63VsNO4.d.ts → common.constants-Dd81SRrq.d.ts} +2 -1
- package/dist/index.d.mts +28 -22
- package/dist/index.d.ts +28 -22
- package/dist/index.js +467 -61
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +467 -60
- package/dist/index.mjs.map +1 -1
- package/dist/translation/index.d.mts +1 -1
- package/dist/translation/index.d.ts +1 -1
- package/package.json +2 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SSO, L as LoginSource, H as HomeRegion, E as Environment, a as Locale, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize } from './common.constants-
|
|
2
|
-
export { c as Source } from './common.constants-
|
|
1
|
+
import { S as SSO, L as LoginSource, H as HomeRegion, E as Environment, a as Locale, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize } from './common.constants-Dd81SRrq.mjs';
|
|
2
|
+
export { c as Source } from './common.constants-Dd81SRrq.mjs';
|
|
3
3
|
import { ComponentType } from 'react';
|
|
4
4
|
import * as effector from 'effector';
|
|
5
5
|
|
|
@@ -69,6 +69,8 @@ declare const DateLocale: {
|
|
|
69
69
|
readonly 'es-ES': "es";
|
|
70
70
|
readonly PT: "pt";
|
|
71
71
|
readonly 'pt-PT': "pt";
|
|
72
|
+
readonly IQ: "ckb";
|
|
73
|
+
readonly 'ckb-IQ': "ckb";
|
|
72
74
|
};
|
|
73
75
|
type DateLocale = (typeof DateLocale)[keyof typeof DateLocale];
|
|
74
76
|
declare const MomentDateLocale: {
|
|
@@ -90,6 +92,7 @@ declare const MomentDateLocale: {
|
|
|
90
92
|
CH: string;
|
|
91
93
|
ES: string;
|
|
92
94
|
PT: string;
|
|
95
|
+
IQ: string;
|
|
93
96
|
};
|
|
94
97
|
|
|
95
98
|
declare enum MatrixMode {
|
|
@@ -305,7 +308,8 @@ declare enum TreeLevel {
|
|
|
305
308
|
|
|
306
309
|
declare enum WeekStart {
|
|
307
310
|
SUNDAY = 0,
|
|
308
|
-
MONDAY = 1
|
|
311
|
+
MONDAY = 1,
|
|
312
|
+
SATURDAY = 6
|
|
309
313
|
}
|
|
310
314
|
declare enum CalendarLocale {
|
|
311
315
|
EN = "en",
|
|
@@ -322,7 +326,8 @@ declare enum CalendarLocale {
|
|
|
322
326
|
SV_FI = "sv-fi",
|
|
323
327
|
IS = "is",
|
|
324
328
|
ES = "es",
|
|
325
|
-
PT = "pt"
|
|
329
|
+
PT = "pt",
|
|
330
|
+
IQ = "ckb"
|
|
326
331
|
}
|
|
327
332
|
type CalendarConfig = {
|
|
328
333
|
locale: CalendarLocale;
|
|
@@ -350,6 +355,7 @@ declare const NL_BE_CALENDAR_CONFIG: CalendarConfig;
|
|
|
350
355
|
declare const SV_FI_CALENDAR_CONFIG: CalendarConfig;
|
|
351
356
|
declare const DK_CALENDAR_CONFIG: CalendarConfig;
|
|
352
357
|
declare const IS_CALENDAR_CONFIG: CalendarConfig;
|
|
358
|
+
declare const IQ_CALENDAR_CONFIG: CalendarConfig;
|
|
353
359
|
|
|
354
360
|
type GradeData = {
|
|
355
361
|
name: string;
|
|
@@ -554,7 +560,8 @@ type SSO_PT = {
|
|
|
554
560
|
GOOGLE_AUTH: string;
|
|
555
561
|
MICROSOFT_AUTH: string;
|
|
556
562
|
};
|
|
557
|
-
type
|
|
563
|
+
type SSO_IQ = {};
|
|
564
|
+
type SSOVariant = SSO_US | SSO_DE | SSO_UK | SSO_SE | SSO_PL | SSO_IT | SSO_FR | SSO_DK | SSO_NO | SSO_NL | SSO_FI | SSO_NL_BE | SSO_IE | SSO_IS | SSO_SV_FI | SSO_AT | SSO_CH | SSO_ES | SSO_PT | SSO_IQ;
|
|
558
565
|
type SSOByLocale = {
|
|
559
566
|
[Locale.US]: SSO_US;
|
|
560
567
|
[Locale.CA]: SSO_US;
|
|
@@ -577,6 +584,7 @@ type SSOByLocale = {
|
|
|
577
584
|
[Locale.CH]: SSO_CH;
|
|
578
585
|
[Locale.ES]: SSO_ES;
|
|
579
586
|
[Locale.PT]: SSO_PT;
|
|
587
|
+
[Locale.IQ]: SSO_IQ;
|
|
580
588
|
};
|
|
581
589
|
|
|
582
590
|
type Prettify<T> = T extends Function ? T : {
|
|
@@ -655,6 +663,9 @@ type AuthWebEuLocalePreset = {
|
|
|
655
663
|
[Locale.PT]: {
|
|
656
664
|
[key in Environment]: AuthWebVars<SSO_PT>;
|
|
657
665
|
};
|
|
666
|
+
[Locale.IQ]: {
|
|
667
|
+
[key in Environment]: AuthWebVars<SSO_IQ>;
|
|
668
|
+
};
|
|
658
669
|
};
|
|
659
670
|
type AuthWebVarsPreset = {
|
|
660
671
|
[HomeRegion.US_MAIN]: {
|
|
@@ -760,6 +771,9 @@ type MobileEuLocalePreset = {
|
|
|
760
771
|
[Locale.PT]: {
|
|
761
772
|
[key in Environment]: MobileVars<SSO_PT>;
|
|
762
773
|
};
|
|
774
|
+
[Locale.IQ]: {
|
|
775
|
+
[key in Environment]: MobileVars<SSO_IQ>;
|
|
776
|
+
};
|
|
763
777
|
};
|
|
764
778
|
type MobileVarsPreset = {
|
|
765
779
|
[HomeRegion.US_MAIN]: {
|
|
@@ -840,7 +854,8 @@ declare enum KeyboardCurrencyVariant {
|
|
|
840
854
|
KRONE_EURO_POUND = "KroneEuroPound",
|
|
841
855
|
EURO_DOLLAR_POUND = "EuroDollarPound",
|
|
842
856
|
ZLOTY_GROSZ = "ZlotyGrosz",
|
|
843
|
-
FRANC_RAPPEN = "FrancRappen"
|
|
857
|
+
FRANC_RAPPEN = "FrancRappen",
|
|
858
|
+
DINAR = "Dinar"
|
|
844
859
|
}
|
|
845
860
|
declare enum KeyboardTimeVariant {
|
|
846
861
|
H12 = "H12",
|
|
@@ -854,7 +869,9 @@ declare enum DrawboardCoinVariant {
|
|
|
854
869
|
CA = "ca",
|
|
855
870
|
UK = "uk",
|
|
856
871
|
SE = "se",
|
|
857
|
-
PL = "pl"
|
|
872
|
+
PL = "pl",
|
|
873
|
+
CH = "ch",
|
|
874
|
+
IQ = "iq"
|
|
858
875
|
}
|
|
859
876
|
|
|
860
877
|
type KeyboardConfig = {
|
|
@@ -898,7 +915,8 @@ declare enum ProblemCreatorMathEntryVariant {
|
|
|
898
915
|
POUND_PENCE = "PoundPence",
|
|
899
916
|
EURO = "Euro",
|
|
900
917
|
ZLOTY = "Zloty",
|
|
901
|
-
FRANC = "Franc"
|
|
918
|
+
FRANC = "Franc",
|
|
919
|
+
DINAR = "Dinar"
|
|
902
920
|
}
|
|
903
921
|
declare enum ProblemCreatorDescriptionVariant {
|
|
904
922
|
EXTENDED_MULT_BASIC_ROOTS = "ExtendedMultBasicRoots",
|
|
@@ -1019,15 +1037,6 @@ declare enum MultiplicationSymbol {
|
|
|
1019
1037
|
TIMES = "TIMES"
|
|
1020
1038
|
}
|
|
1021
1039
|
|
|
1022
|
-
type MultiplicationGradeRule = {
|
|
1023
|
-
fromGrade: Grade;
|
|
1024
|
-
symbol: MultiplicationSymbol;
|
|
1025
|
-
};
|
|
1026
|
-
type MultiplicationConfig = {
|
|
1027
|
-
default: MultiplicationSymbol;
|
|
1028
|
-
byGrade?: MultiplicationGradeRule[];
|
|
1029
|
-
};
|
|
1030
|
-
|
|
1031
1040
|
type CommonLocaleConfig = Readonly<{
|
|
1032
1041
|
name: string;
|
|
1033
1042
|
languageName: string;
|
|
@@ -1042,7 +1051,7 @@ type CommonLocaleConfig = Readonly<{
|
|
|
1042
1051
|
groupingSeparator: NumberGroupingSeparator;
|
|
1043
1052
|
};
|
|
1044
1053
|
mathSymbols: {
|
|
1045
|
-
multiplication:
|
|
1054
|
+
multiplication: MultiplicationSymbol;
|
|
1046
1055
|
};
|
|
1047
1056
|
}>;
|
|
1048
1057
|
type LocalePreset = {
|
|
@@ -1077,9 +1086,6 @@ type DistrictLocaleConfig = CommonLocaleConfig & {
|
|
|
1077
1086
|
problemCreator: ProblemCreatorConfig;
|
|
1078
1087
|
};
|
|
1079
1088
|
|
|
1080
|
-
declare const getGradeLevel: (grade: Grade | number | null) => number | null;
|
|
1081
|
-
declare const getMultiplicationSymbol: (config: MultiplicationConfig, grade: Grade | number | null) => MultiplicationSymbol;
|
|
1082
|
-
|
|
1083
1089
|
type DevOverrides<P extends Platform> = {
|
|
1084
1090
|
[K in Locale]?: Partial<EnvironmentVars<P>>;
|
|
1085
1091
|
};
|
|
@@ -1140,4 +1146,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1140
1146
|
};
|
|
1141
1147
|
}
|
|
1142
1148
|
|
|
1143
|
-
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, 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 MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale,
|
|
1149
|
+
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, 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 MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, 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_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SV_FI_CALENDAR_CONFIG, 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, H as HomeRegion, E as Environment, a as Locale, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize } from './common.constants-
|
|
2
|
-
export { c as Source } from './common.constants-
|
|
1
|
+
import { S as SSO, L as LoginSource, H as HomeRegion, E as Environment, a as Locale, P as Platform, b as PlatformBuildTarget, Q as QRCodeSize } from './common.constants-Dd81SRrq.js';
|
|
2
|
+
export { c as Source } from './common.constants-Dd81SRrq.js';
|
|
3
3
|
import { ComponentType } from 'react';
|
|
4
4
|
import * as effector from 'effector';
|
|
5
5
|
|
|
@@ -69,6 +69,8 @@ declare const DateLocale: {
|
|
|
69
69
|
readonly 'es-ES': "es";
|
|
70
70
|
readonly PT: "pt";
|
|
71
71
|
readonly 'pt-PT': "pt";
|
|
72
|
+
readonly IQ: "ckb";
|
|
73
|
+
readonly 'ckb-IQ': "ckb";
|
|
72
74
|
};
|
|
73
75
|
type DateLocale = (typeof DateLocale)[keyof typeof DateLocale];
|
|
74
76
|
declare const MomentDateLocale: {
|
|
@@ -90,6 +92,7 @@ declare const MomentDateLocale: {
|
|
|
90
92
|
CH: string;
|
|
91
93
|
ES: string;
|
|
92
94
|
PT: string;
|
|
95
|
+
IQ: string;
|
|
93
96
|
};
|
|
94
97
|
|
|
95
98
|
declare enum MatrixMode {
|
|
@@ -305,7 +308,8 @@ declare enum TreeLevel {
|
|
|
305
308
|
|
|
306
309
|
declare enum WeekStart {
|
|
307
310
|
SUNDAY = 0,
|
|
308
|
-
MONDAY = 1
|
|
311
|
+
MONDAY = 1,
|
|
312
|
+
SATURDAY = 6
|
|
309
313
|
}
|
|
310
314
|
declare enum CalendarLocale {
|
|
311
315
|
EN = "en",
|
|
@@ -322,7 +326,8 @@ declare enum CalendarLocale {
|
|
|
322
326
|
SV_FI = "sv-fi",
|
|
323
327
|
IS = "is",
|
|
324
328
|
ES = "es",
|
|
325
|
-
PT = "pt"
|
|
329
|
+
PT = "pt",
|
|
330
|
+
IQ = "ckb"
|
|
326
331
|
}
|
|
327
332
|
type CalendarConfig = {
|
|
328
333
|
locale: CalendarLocale;
|
|
@@ -350,6 +355,7 @@ declare const NL_BE_CALENDAR_CONFIG: CalendarConfig;
|
|
|
350
355
|
declare const SV_FI_CALENDAR_CONFIG: CalendarConfig;
|
|
351
356
|
declare const DK_CALENDAR_CONFIG: CalendarConfig;
|
|
352
357
|
declare const IS_CALENDAR_CONFIG: CalendarConfig;
|
|
358
|
+
declare const IQ_CALENDAR_CONFIG: CalendarConfig;
|
|
353
359
|
|
|
354
360
|
type GradeData = {
|
|
355
361
|
name: string;
|
|
@@ -554,7 +560,8 @@ type SSO_PT = {
|
|
|
554
560
|
GOOGLE_AUTH: string;
|
|
555
561
|
MICROSOFT_AUTH: string;
|
|
556
562
|
};
|
|
557
|
-
type
|
|
563
|
+
type SSO_IQ = {};
|
|
564
|
+
type SSOVariant = SSO_US | SSO_DE | SSO_UK | SSO_SE | SSO_PL | SSO_IT | SSO_FR | SSO_DK | SSO_NO | SSO_NL | SSO_FI | SSO_NL_BE | SSO_IE | SSO_IS | SSO_SV_FI | SSO_AT | SSO_CH | SSO_ES | SSO_PT | SSO_IQ;
|
|
558
565
|
type SSOByLocale = {
|
|
559
566
|
[Locale.US]: SSO_US;
|
|
560
567
|
[Locale.CA]: SSO_US;
|
|
@@ -577,6 +584,7 @@ type SSOByLocale = {
|
|
|
577
584
|
[Locale.CH]: SSO_CH;
|
|
578
585
|
[Locale.ES]: SSO_ES;
|
|
579
586
|
[Locale.PT]: SSO_PT;
|
|
587
|
+
[Locale.IQ]: SSO_IQ;
|
|
580
588
|
};
|
|
581
589
|
|
|
582
590
|
type Prettify<T> = T extends Function ? T : {
|
|
@@ -655,6 +663,9 @@ type AuthWebEuLocalePreset = {
|
|
|
655
663
|
[Locale.PT]: {
|
|
656
664
|
[key in Environment]: AuthWebVars<SSO_PT>;
|
|
657
665
|
};
|
|
666
|
+
[Locale.IQ]: {
|
|
667
|
+
[key in Environment]: AuthWebVars<SSO_IQ>;
|
|
668
|
+
};
|
|
658
669
|
};
|
|
659
670
|
type AuthWebVarsPreset = {
|
|
660
671
|
[HomeRegion.US_MAIN]: {
|
|
@@ -760,6 +771,9 @@ type MobileEuLocalePreset = {
|
|
|
760
771
|
[Locale.PT]: {
|
|
761
772
|
[key in Environment]: MobileVars<SSO_PT>;
|
|
762
773
|
};
|
|
774
|
+
[Locale.IQ]: {
|
|
775
|
+
[key in Environment]: MobileVars<SSO_IQ>;
|
|
776
|
+
};
|
|
763
777
|
};
|
|
764
778
|
type MobileVarsPreset = {
|
|
765
779
|
[HomeRegion.US_MAIN]: {
|
|
@@ -840,7 +854,8 @@ declare enum KeyboardCurrencyVariant {
|
|
|
840
854
|
KRONE_EURO_POUND = "KroneEuroPound",
|
|
841
855
|
EURO_DOLLAR_POUND = "EuroDollarPound",
|
|
842
856
|
ZLOTY_GROSZ = "ZlotyGrosz",
|
|
843
|
-
FRANC_RAPPEN = "FrancRappen"
|
|
857
|
+
FRANC_RAPPEN = "FrancRappen",
|
|
858
|
+
DINAR = "Dinar"
|
|
844
859
|
}
|
|
845
860
|
declare enum KeyboardTimeVariant {
|
|
846
861
|
H12 = "H12",
|
|
@@ -854,7 +869,9 @@ declare enum DrawboardCoinVariant {
|
|
|
854
869
|
CA = "ca",
|
|
855
870
|
UK = "uk",
|
|
856
871
|
SE = "se",
|
|
857
|
-
PL = "pl"
|
|
872
|
+
PL = "pl",
|
|
873
|
+
CH = "ch",
|
|
874
|
+
IQ = "iq"
|
|
858
875
|
}
|
|
859
876
|
|
|
860
877
|
type KeyboardConfig = {
|
|
@@ -898,7 +915,8 @@ declare enum ProblemCreatorMathEntryVariant {
|
|
|
898
915
|
POUND_PENCE = "PoundPence",
|
|
899
916
|
EURO = "Euro",
|
|
900
917
|
ZLOTY = "Zloty",
|
|
901
|
-
FRANC = "Franc"
|
|
918
|
+
FRANC = "Franc",
|
|
919
|
+
DINAR = "Dinar"
|
|
902
920
|
}
|
|
903
921
|
declare enum ProblemCreatorDescriptionVariant {
|
|
904
922
|
EXTENDED_MULT_BASIC_ROOTS = "ExtendedMultBasicRoots",
|
|
@@ -1019,15 +1037,6 @@ declare enum MultiplicationSymbol {
|
|
|
1019
1037
|
TIMES = "TIMES"
|
|
1020
1038
|
}
|
|
1021
1039
|
|
|
1022
|
-
type MultiplicationGradeRule = {
|
|
1023
|
-
fromGrade: Grade;
|
|
1024
|
-
symbol: MultiplicationSymbol;
|
|
1025
|
-
};
|
|
1026
|
-
type MultiplicationConfig = {
|
|
1027
|
-
default: MultiplicationSymbol;
|
|
1028
|
-
byGrade?: MultiplicationGradeRule[];
|
|
1029
|
-
};
|
|
1030
|
-
|
|
1031
1040
|
type CommonLocaleConfig = Readonly<{
|
|
1032
1041
|
name: string;
|
|
1033
1042
|
languageName: string;
|
|
@@ -1042,7 +1051,7 @@ type CommonLocaleConfig = Readonly<{
|
|
|
1042
1051
|
groupingSeparator: NumberGroupingSeparator;
|
|
1043
1052
|
};
|
|
1044
1053
|
mathSymbols: {
|
|
1045
|
-
multiplication:
|
|
1054
|
+
multiplication: MultiplicationSymbol;
|
|
1046
1055
|
};
|
|
1047
1056
|
}>;
|
|
1048
1057
|
type LocalePreset = {
|
|
@@ -1077,9 +1086,6 @@ type DistrictLocaleConfig = CommonLocaleConfig & {
|
|
|
1077
1086
|
problemCreator: ProblemCreatorConfig;
|
|
1078
1087
|
};
|
|
1079
1088
|
|
|
1080
|
-
declare const getGradeLevel: (grade: Grade | number | null) => number | null;
|
|
1081
|
-
declare const getMultiplicationSymbol: (config: MultiplicationConfig, grade: Grade | number | null) => MultiplicationSymbol;
|
|
1082
|
-
|
|
1083
1089
|
type DevOverrides<P extends Platform> = {
|
|
1084
1090
|
[K in Locale]?: Partial<EnvironmentVars<P>>;
|
|
1085
1091
|
};
|
|
@@ -1140,4 +1146,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1140
1146
|
};
|
|
1141
1147
|
}
|
|
1142
1148
|
|
|
1143
|
-
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, 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 MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale,
|
|
1149
|
+
export { AT_CALENDAR_CONFIG, AppConfigManager, type AuthWebBaseVars, type AuthWebEuLocalePreset, type AuthWebVars, type AuthWebVarsPreset, CH_CALENDAR_CONFIG, CalculatorType, type CalendarConfig, CalendarLocale, type CommonGrades, DE_CALENDAR_CONFIG, DK_CALENDAR_CONFIG, DateFormat, DateLocale, type DistrictCommon, type DistrictDashboardVars, type DistrictLocaleConfig, type DistrictWebVarsPreset, DrawboardCoinVariant, EN_CALENDAR_CONFIG, ES_CALENDAR_CONFIG, type EnvPreset, Environment, type EnvironmentVars, FI_CALENDAR_CONFIG, FR_CALENDAR_CONFIG, Grade, type GradeData, type HighSchoolGrades, HomeRegion, IQ_CALENDAR_CONFIG, IS_CALENDAR_CONFIG, IT_CALENDAR_CONFIG, 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 MobileEuLocalePreset, type MobileLocaleConfig, type MobileVars, type MobileVarsPreset, MomentDateLocale, MultiplicationSymbol, NL_BE_CALENDAR_CONFIG, NL_CALENDAR_CONFIG, NO_CALENDAR_CONFIG, NumberDecimalSeparator, NumberGroupingSeparator, PL_CALENDAR_CONFIG, PRIORITY_LANGUAGES, PT_CALENDAR_CONFIG, 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_AT, type SSO_CH, type SSO_DE, type SSO_DK, type SSO_ES, type SSO_FI, type SSO_FR, type SSO_IE, type SSO_IQ, type SSO_IS, type SSO_IT, type SSO_NL, type SSO_NL_BE, type SSO_NO, type SSO_PL, type SSO_PT, type SSO_SE, type SSO_SV_FI, type SSO_UK, type SSO_US, SV_FI_CALENDAR_CONFIG, type StudentsLocaleConfig, type StudentsWebCommon, type StudentsWebVars, type StudentsWebVarsPreset, TTSOverrideSymbol, type TeachersLocaleConfig, type TeachersWebCommon, type TeachersWebVars, type TeachersWebVarsPreset, TreeLevel, buildTargetToEnvironment };
|