@magmamath/frontend-config 1.6.0 → 1.6.1-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +14 -2
- package/dist/index.d.ts +14 -2
- package/dist/index.js +52 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +51 -22
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -1019,6 +1019,15 @@ declare enum MultiplicationSymbol {
|
|
|
1019
1019
|
TIMES = "TIMES"
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
1022
|
+
type MultiplicationGradeRule = {
|
|
1023
|
+
fromGrade: Grade;
|
|
1024
|
+
symbol: MultiplicationSymbol;
|
|
1025
|
+
};
|
|
1026
|
+
type MultiplicationConfig = {
|
|
1027
|
+
default: MultiplicationSymbol;
|
|
1028
|
+
byGrade?: MultiplicationGradeRule[];
|
|
1029
|
+
};
|
|
1030
|
+
|
|
1022
1031
|
type CommonLocaleConfig = Readonly<{
|
|
1023
1032
|
name: string;
|
|
1024
1033
|
languageName: string;
|
|
@@ -1033,7 +1042,7 @@ type CommonLocaleConfig = Readonly<{
|
|
|
1033
1042
|
groupingSeparator: NumberGroupingSeparator;
|
|
1034
1043
|
};
|
|
1035
1044
|
mathSymbols: {
|
|
1036
|
-
multiplication:
|
|
1045
|
+
multiplication: MultiplicationConfig;
|
|
1037
1046
|
};
|
|
1038
1047
|
}>;
|
|
1039
1048
|
type LocalePreset = {
|
|
@@ -1068,6 +1077,9 @@ type DistrictLocaleConfig = CommonLocaleConfig & {
|
|
|
1068
1077
|
problemCreator: ProblemCreatorConfig;
|
|
1069
1078
|
};
|
|
1070
1079
|
|
|
1080
|
+
declare const getGradeLevel: (grade: Grade | number | null) => number | null;
|
|
1081
|
+
declare const getMultiplicationSymbol: (config: MultiplicationConfig, grade: Grade | number | null) => MultiplicationSymbol;
|
|
1082
|
+
|
|
1071
1083
|
type DevOverrides<P extends Platform> = {
|
|
1072
1084
|
[K in Locale]?: Partial<EnvironmentVars<P>>;
|
|
1073
1085
|
};
|
|
@@ -1128,4 +1140,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1128
1140
|
};
|
|
1129
1141
|
}
|
|
1130
1142
|
|
|
1131
|
-
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, 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_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 };
|
|
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, type MultiplicationConfig, type MultiplicationGradeRule, 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_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, getGradeLevel, getMultiplicationSymbol };
|
package/dist/index.d.ts
CHANGED
|
@@ -1019,6 +1019,15 @@ declare enum MultiplicationSymbol {
|
|
|
1019
1019
|
TIMES = "TIMES"
|
|
1020
1020
|
}
|
|
1021
1021
|
|
|
1022
|
+
type MultiplicationGradeRule = {
|
|
1023
|
+
fromGrade: Grade;
|
|
1024
|
+
symbol: MultiplicationSymbol;
|
|
1025
|
+
};
|
|
1026
|
+
type MultiplicationConfig = {
|
|
1027
|
+
default: MultiplicationSymbol;
|
|
1028
|
+
byGrade?: MultiplicationGradeRule[];
|
|
1029
|
+
};
|
|
1030
|
+
|
|
1022
1031
|
type CommonLocaleConfig = Readonly<{
|
|
1023
1032
|
name: string;
|
|
1024
1033
|
languageName: string;
|
|
@@ -1033,7 +1042,7 @@ type CommonLocaleConfig = Readonly<{
|
|
|
1033
1042
|
groupingSeparator: NumberGroupingSeparator;
|
|
1034
1043
|
};
|
|
1035
1044
|
mathSymbols: {
|
|
1036
|
-
multiplication:
|
|
1045
|
+
multiplication: MultiplicationConfig;
|
|
1037
1046
|
};
|
|
1038
1047
|
}>;
|
|
1039
1048
|
type LocalePreset = {
|
|
@@ -1068,6 +1077,9 @@ type DistrictLocaleConfig = CommonLocaleConfig & {
|
|
|
1068
1077
|
problemCreator: ProblemCreatorConfig;
|
|
1069
1078
|
};
|
|
1070
1079
|
|
|
1080
|
+
declare const getGradeLevel: (grade: Grade | number | null) => number | null;
|
|
1081
|
+
declare const getMultiplicationSymbol: (config: MultiplicationConfig, grade: Grade | number | null) => MultiplicationSymbol;
|
|
1082
|
+
|
|
1071
1083
|
type DevOverrides<P extends Platform> = {
|
|
1072
1084
|
[K in Locale]?: Partial<EnvironmentVars<P>>;
|
|
1073
1085
|
};
|
|
@@ -1128,4 +1140,4 @@ declare class AppConfigManager<P extends Platform, L extends Locale> {
|
|
|
1128
1140
|
};
|
|
1129
1141
|
}
|
|
1130
1142
|
|
|
1131
|
-
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, 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_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 };
|
|
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, type MultiplicationConfig, type MultiplicationGradeRule, 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_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, getGradeLevel, getMultiplicationSymbol };
|
package/dist/index.js
CHANGED
|
@@ -1373,6 +1373,32 @@ var MultiplicationSymbol = /* @__PURE__ */ ((MultiplicationSymbol2) => {
|
|
|
1373
1373
|
return MultiplicationSymbol2;
|
|
1374
1374
|
})(MultiplicationSymbol || {});
|
|
1375
1375
|
|
|
1376
|
+
// src/shared/helpers/mathSymbols.helpers.ts
|
|
1377
|
+
var HIGH_SCHOOL_GRADE_LEVEL = 9;
|
|
1378
|
+
var STRING_GRADE_LEVELS = {
|
|
1379
|
+
["K" /* K */]: 0,
|
|
1380
|
+
["HS" /* HS */]: HIGH_SCHOOL_GRADE_LEVEL,
|
|
1381
|
+
["HSG" /* HSG */]: HIGH_SCHOOL_GRADE_LEVEL,
|
|
1382
|
+
["HSA" /* HSA */]: HIGH_SCHOOL_GRADE_LEVEL,
|
|
1383
|
+
["HSS" /* HSS */]: HIGH_SCHOOL_GRADE_LEVEL,
|
|
1384
|
+
["HSF" /* HSF */]: HIGH_SCHOOL_GRADE_LEVEL,
|
|
1385
|
+
["HSN" /* HSN */]: HIGH_SCHOOL_GRADE_LEVEL
|
|
1386
|
+
};
|
|
1387
|
+
var getGradeLevel = (grade) => {
|
|
1388
|
+
if (grade === null) return null;
|
|
1389
|
+
if (typeof grade === "number") return grade;
|
|
1390
|
+
return STRING_GRADE_LEVELS[grade] ?? null;
|
|
1391
|
+
};
|
|
1392
|
+
var getMultiplicationSymbol = (config, grade) => {
|
|
1393
|
+
const gradeLevel = getGradeLevel(grade);
|
|
1394
|
+
if (gradeLevel === null || !config.byGrade?.length) return config.default;
|
|
1395
|
+
const matchedRule = config.byGrade.filter((rule) => {
|
|
1396
|
+
const fromLevel = getGradeLevel(rule.fromGrade);
|
|
1397
|
+
return fromLevel !== null && gradeLevel >= fromLevel;
|
|
1398
|
+
}).sort((a, b) => (getGradeLevel(b.fromGrade) ?? 0) - (getGradeLevel(a.fromGrade) ?? 0))[0];
|
|
1399
|
+
return matchedRule?.symbol ?? config.default;
|
|
1400
|
+
};
|
|
1401
|
+
|
|
1376
1402
|
// src/configs/env/platform.urls.ts
|
|
1377
1403
|
var PLATFORM_URLS = {
|
|
1378
1404
|
MARS: {
|
|
@@ -7538,7 +7564,10 @@ var LOCALE_COMMON_US = {
|
|
|
7538
7564
|
decimalSeparator: "." /* DOT */
|
|
7539
7565
|
},
|
|
7540
7566
|
mathSymbols: {
|
|
7541
|
-
multiplication:
|
|
7567
|
+
multiplication: {
|
|
7568
|
+
default: "TIMES" /* TIMES */,
|
|
7569
|
+
byGrade: [{ fromGrade: 6 /* SIX */, symbol: "CDOT" /* CDOT */ }]
|
|
7570
|
+
}
|
|
7542
7571
|
}
|
|
7543
7572
|
};
|
|
7544
7573
|
|
|
@@ -7594,7 +7623,7 @@ var LOCALE_COMMON_SE = {
|
|
|
7594
7623
|
decimalSeparator: "," /* COMMA */
|
|
7595
7624
|
},
|
|
7596
7625
|
mathSymbols: {
|
|
7597
|
-
multiplication: "CDOT" /* CDOT */
|
|
7626
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
7598
7627
|
}
|
|
7599
7628
|
};
|
|
7600
7629
|
|
|
@@ -7642,7 +7671,7 @@ var LOCALE_COMMON_GB = {
|
|
|
7642
7671
|
decimalSeparator: "." /* DOT */
|
|
7643
7672
|
},
|
|
7644
7673
|
mathSymbols: {
|
|
7645
|
-
multiplication: "TIMES" /* TIMES */
|
|
7674
|
+
multiplication: { default: "TIMES" /* TIMES */ }
|
|
7646
7675
|
}
|
|
7647
7676
|
};
|
|
7648
7677
|
|
|
@@ -7689,7 +7718,7 @@ var LOCALE_COMMON_CA = {
|
|
|
7689
7718
|
decimalSeparator: "." /* DOT */
|
|
7690
7719
|
},
|
|
7691
7720
|
mathSymbols: {
|
|
7692
|
-
multiplication: "TIMES" /* TIMES */
|
|
7721
|
+
multiplication: { default: "TIMES" /* TIMES */ }
|
|
7693
7722
|
}
|
|
7694
7723
|
};
|
|
7695
7724
|
|
|
@@ -7722,7 +7751,7 @@ var LOCALE_COMMON_SCT = {
|
|
|
7722
7751
|
decimalSeparator: "." /* DOT */
|
|
7723
7752
|
},
|
|
7724
7753
|
mathSymbols: {
|
|
7725
|
-
multiplication: "TIMES" /* TIMES */
|
|
7754
|
+
multiplication: { default: "TIMES" /* TIMES */ }
|
|
7726
7755
|
}
|
|
7727
7756
|
};
|
|
7728
7757
|
|
|
@@ -7751,7 +7780,7 @@ var LOCALE_COMMON_DE = {
|
|
|
7751
7780
|
decimalSeparator: "," /* COMMA */
|
|
7752
7781
|
},
|
|
7753
7782
|
mathSymbols: {
|
|
7754
|
-
multiplication: "
|
|
7783
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
7755
7784
|
}
|
|
7756
7785
|
};
|
|
7757
7786
|
|
|
@@ -9119,7 +9148,7 @@ var LOCALE_COMMON_PL = {
|
|
|
9119
9148
|
decimalSeparator: "," /* COMMA */
|
|
9120
9149
|
},
|
|
9121
9150
|
mathSymbols: {
|
|
9122
|
-
multiplication: "
|
|
9151
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
9123
9152
|
}
|
|
9124
9153
|
};
|
|
9125
9154
|
|
|
@@ -9283,7 +9312,7 @@ var LOCALE_COMMON_IT = {
|
|
|
9283
9312
|
decimalSeparator: "," /* COMMA */
|
|
9284
9313
|
},
|
|
9285
9314
|
mathSymbols: {
|
|
9286
|
-
multiplication: "
|
|
9315
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
9287
9316
|
}
|
|
9288
9317
|
};
|
|
9289
9318
|
|
|
@@ -9449,7 +9478,7 @@ var LOCALE_COMMON_FR = {
|
|
|
9449
9478
|
decimalSeparator: "," /* COMMA */
|
|
9450
9479
|
},
|
|
9451
9480
|
mathSymbols: {
|
|
9452
|
-
multiplication: "
|
|
9481
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
9453
9482
|
}
|
|
9454
9483
|
};
|
|
9455
9484
|
|
|
@@ -9615,7 +9644,7 @@ var LOCALE_COMMON_DK = {
|
|
|
9615
9644
|
decimalSeparator: "," /* COMMA */
|
|
9616
9645
|
},
|
|
9617
9646
|
mathSymbols: {
|
|
9618
|
-
multiplication: "CDOT" /* CDOT */
|
|
9647
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
9619
9648
|
}
|
|
9620
9649
|
};
|
|
9621
9650
|
|
|
@@ -9783,7 +9812,7 @@ var LOCALE_COMMON_NO = {
|
|
|
9783
9812
|
decimalSeparator: "," /* COMMA */
|
|
9784
9813
|
},
|
|
9785
9814
|
mathSymbols: {
|
|
9786
|
-
multiplication: "CDOT" /* CDOT */
|
|
9815
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
9787
9816
|
}
|
|
9788
9817
|
};
|
|
9789
9818
|
|
|
@@ -9953,7 +9982,7 @@ var LOCALE_COMMON_NL = {
|
|
|
9953
9982
|
decimalSeparator: "," /* COMMA */
|
|
9954
9983
|
},
|
|
9955
9984
|
mathSymbols: {
|
|
9956
|
-
multiplication: "
|
|
9985
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
9957
9986
|
}
|
|
9958
9987
|
};
|
|
9959
9988
|
|
|
@@ -10121,7 +10150,7 @@ var LOCALE_COMMON_FI = {
|
|
|
10121
10150
|
decimalSeparator: "," /* COMMA */
|
|
10122
10151
|
},
|
|
10123
10152
|
mathSymbols: {
|
|
10124
|
-
multiplication: "CDOT" /* CDOT */
|
|
10153
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
10125
10154
|
}
|
|
10126
10155
|
};
|
|
10127
10156
|
|
|
@@ -10289,7 +10318,7 @@ var LOCALE_COMMON_NL_BE = {
|
|
|
10289
10318
|
decimalSeparator: "," /* COMMA */
|
|
10290
10319
|
},
|
|
10291
10320
|
mathSymbols: {
|
|
10292
|
-
multiplication: "
|
|
10321
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
10293
10322
|
}
|
|
10294
10323
|
};
|
|
10295
10324
|
|
|
@@ -10455,7 +10484,7 @@ var LOCALE_COMMON_IE = {
|
|
|
10455
10484
|
decimalSeparator: "." /* DOT */
|
|
10456
10485
|
},
|
|
10457
10486
|
mathSymbols: {
|
|
10458
|
-
multiplication: "TIMES" /* TIMES */
|
|
10487
|
+
multiplication: { default: "TIMES" /* TIMES */ }
|
|
10459
10488
|
}
|
|
10460
10489
|
};
|
|
10461
10490
|
|
|
@@ -10621,7 +10650,7 @@ var LOCALE_COMMON_IS = {
|
|
|
10621
10650
|
decimalSeparator: "," /* COMMA */
|
|
10622
10651
|
},
|
|
10623
10652
|
mathSymbols: {
|
|
10624
|
-
multiplication: "CDOT" /* CDOT */
|
|
10653
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
10625
10654
|
}
|
|
10626
10655
|
};
|
|
10627
10656
|
|
|
@@ -10791,7 +10820,7 @@ var LOCALE_COMMON_SV_FI = {
|
|
|
10791
10820
|
decimalSeparator: "," /* COMMA */
|
|
10792
10821
|
},
|
|
10793
10822
|
mathSymbols: {
|
|
10794
|
-
multiplication: "CDOT" /* CDOT */
|
|
10823
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
10795
10824
|
}
|
|
10796
10825
|
};
|
|
10797
10826
|
|
|
@@ -10951,7 +10980,7 @@ var LOCALE_COMMON_AT = {
|
|
|
10951
10980
|
decimalSeparator: "," /* COMMA */
|
|
10952
10981
|
},
|
|
10953
10982
|
mathSymbols: {
|
|
10954
|
-
multiplication: "
|
|
10983
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
10955
10984
|
}
|
|
10956
10985
|
};
|
|
10957
10986
|
|
|
@@ -11131,7 +11160,7 @@ var LOCALE_COMMON_CH = {
|
|
|
11131
11160
|
decimalSeparator: "." /* DOT */
|
|
11132
11161
|
},
|
|
11133
11162
|
mathSymbols: {
|
|
11134
|
-
multiplication: "CDOT" /* CDOT */
|
|
11163
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
11135
11164
|
}
|
|
11136
11165
|
};
|
|
11137
11166
|
|
|
@@ -11292,7 +11321,7 @@ var LOCALE_COMMON_ES = {
|
|
|
11292
11321
|
decimalSeparator: "," /* COMMA */
|
|
11293
11322
|
},
|
|
11294
11323
|
mathSymbols: {
|
|
11295
|
-
multiplication: "CDOT" /* CDOT */
|
|
11324
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
11296
11325
|
}
|
|
11297
11326
|
};
|
|
11298
11327
|
|
|
@@ -11472,7 +11501,7 @@ var LOCALE_COMMON_PT = {
|
|
|
11472
11501
|
decimalSeparator: "," /* COMMA */
|
|
11473
11502
|
},
|
|
11474
11503
|
mathSymbols: {
|
|
11475
|
-
multiplication: "CDOT" /* CDOT */
|
|
11504
|
+
multiplication: { default: "CDOT" /* CDOT */ }
|
|
11476
11505
|
}
|
|
11477
11506
|
};
|
|
11478
11507
|
|
|
@@ -11940,5 +11969,7 @@ exports.Source = Source;
|
|
|
11940
11969
|
exports.TTSOverrideSymbol = TTSOverrideSymbol;
|
|
11941
11970
|
exports.TreeLevel = TreeLevel;
|
|
11942
11971
|
exports.buildTargetToEnvironment = buildTargetToEnvironment;
|
|
11972
|
+
exports.getGradeLevel = getGradeLevel;
|
|
11973
|
+
exports.getMultiplicationSymbol = getMultiplicationSymbol;
|
|
11943
11974
|
//# sourceMappingURL=index.js.map
|
|
11944
11975
|
//# sourceMappingURL=index.js.map
|