@khanacademy/perseus-core 19.1.0 → 19.3.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/es/index.js +4 -2
- package/dist/es/index.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/utils/get-divide-symbol.d.ts +8 -0
- package/package.json +2 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Get the character used for dividing numbers depending on the locale.
|
|
3
|
+
*/
|
|
4
|
+
export declare const getDivideSymbol: (locale: string) => string;
|
|
5
|
+
/**
|
|
6
|
+
* Get the TeX command used for dividing numbers depending on the locale.
|
|
7
|
+
*/
|
|
8
|
+
export declare const getDivideSymbolForTex: (locale: string) => string;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Shared Perseus infrastructure",
|
|
4
4
|
"author": "Khan Academy",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "19.
|
|
6
|
+
"version": "19.3.0",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"access": "public"
|
|
9
9
|
},
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"tiny-invariant": "1.3.1",
|
|
40
|
-
"@khanacademy/kas": "2.1.
|
|
40
|
+
"@khanacademy/kas": "2.1.2",
|
|
41
41
|
"@khanacademy/perseus-utils": "2.1.0",
|
|
42
42
|
"@khanacademy/pure-markdown": "2.2.0"
|
|
43
43
|
},
|