katex 0.15.2 → 0.15.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/katex.mjs CHANGED
@@ -4465,7 +4465,7 @@ defineSymbol(math, main, bin, "\u2293", "\\sqcap", true);
4465
4465
  defineSymbol(math, main, bin, "\u2217", "\\ast");
4466
4466
  defineSymbol(math, main, bin, "\u2294", "\\sqcup", true);
4467
4467
  defineSymbol(math, main, bin, "\u25ef", "\\bigcirc", true);
4468
- defineSymbol(math, main, bin, "\u2219", "\\bullet");
4468
+ defineSymbol(math, main, bin, "\u2219", "\\bullet", true);
4469
4469
  defineSymbol(math, main, bin, "\u2021", "\\ddagger");
4470
4470
  defineSymbol(math, main, bin, "\u2240", "\\wr", true);
4471
4471
  defineSymbol(math, main, bin, "\u2a3f", "\\amalg");
@@ -4824,13 +4824,13 @@ defineSymbol(math, main, bin, "\u2217", "*", true);
4824
4824
  defineSymbol(math, main, bin, "+", "+");
4825
4825
  defineSymbol(math, main, bin, "\u2212", "-", true);
4826
4826
  defineSymbol(math, main, bin, "\u22c5", "\\cdot", true);
4827
- defineSymbol(math, main, bin, "\u2218", "\\circ");
4827
+ defineSymbol(math, main, bin, "\u2218", "\\circ", true);
4828
4828
  defineSymbol(math, main, bin, "\u00f7", "\\div", true);
4829
4829
  defineSymbol(math, main, bin, "\u00b1", "\\pm", true);
4830
4830
  defineSymbol(math, main, bin, "\u00d7", "\\times", true);
4831
4831
  defineSymbol(math, main, bin, "\u2229", "\\cap", true);
4832
4832
  defineSymbol(math, main, bin, "\u222a", "\\cup", true);
4833
- defineSymbol(math, main, bin, "\u2216", "\\setminus");
4833
+ defineSymbol(math, main, bin, "\u2216", "\\setminus", true);
4834
4834
  defineSymbol(math, main, bin, "\u2227", "\\land");
4835
4835
  defineSymbol(math, main, bin, "\u2228", "\\lor");
4836
4836
  defineSymbol(math, main, bin, "\u2227", "\\wedge", true);
@@ -17959,7 +17959,7 @@ var katex = {
17959
17959
  /**
17960
17960
  * Current KaTeX version
17961
17961
  */
17962
- version: "0.15.2",
17962
+ version: "0.15.3",
17963
17963
 
17964
17964
  /**
17965
17965
  * Renders the given LaTeX into an HTML+MathML combination, and adds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "katex",
3
- "version": "0.15.2",
3
+ "version": "0.15.3",
4
4
  "description": "Fast math typesetting for the web.",
5
5
  "main": "dist/katex.js",
6
6
  "exports": {
@@ -47,7 +47,7 @@
47
47
  "dist/"
48
48
  ],
49
49
  "license": "MIT",
50
- "packageManager": "yarn@3.1.1",
50
+ "packageManager": "yarn@3.2.0",
51
51
  "devDependencies": {
52
52
  "@babel/core": "^7.10.4",
53
53
  "@babel/eslint-parser": "^7.15.0",
@@ -103,9 +103,9 @@
103
103
  "p-retry": "^4.6.1",
104
104
  "pako": "^2.0.0",
105
105
  "postcss": "^8.0.0",
106
- "postcss-less": "^5.0.0",
106
+ "postcss-less": "^6.0.0",
107
107
  "postcss-loader": "^6.0.0",
108
- "postcss-preset-env": "^6.7.0",
108
+ "postcss-preset-env": "^7.0.0",
109
109
  "prettier": "^2.0.5",
110
110
  "query-string": "^7.0.0",
111
111
  "rimraf": "^3.0.2",
package/src/symbols.js CHANGED
@@ -171,7 +171,7 @@ defineSymbol(math, main, bin, "\u2293", "\\sqcap", true);
171
171
  defineSymbol(math, main, bin, "\u2217", "\\ast");
172
172
  defineSymbol(math, main, bin, "\u2294", "\\sqcup", true);
173
173
  defineSymbol(math, main, bin, "\u25ef", "\\bigcirc", true);
174
- defineSymbol(math, main, bin, "\u2219", "\\bullet");
174
+ defineSymbol(math, main, bin, "\u2219", "\\bullet", true);
175
175
  defineSymbol(math, main, bin, "\u2021", "\\ddagger");
176
176
  defineSymbol(math, main, bin, "\u2240", "\\wr", true);
177
177
  defineSymbol(math, main, bin, "\u2a3f", "\\amalg");
@@ -538,13 +538,13 @@ defineSymbol(math, main, bin, "\u2217", "*", true);
538
538
  defineSymbol(math, main, bin, "+", "+");
539
539
  defineSymbol(math, main, bin, "\u2212", "-", true);
540
540
  defineSymbol(math, main, bin, "\u22c5", "\\cdot", true);
541
- defineSymbol(math, main, bin, "\u2218", "\\circ");
541
+ defineSymbol(math, main, bin, "\u2218", "\\circ", true);
542
542
  defineSymbol(math, main, bin, "\u00f7", "\\div", true);
543
543
  defineSymbol(math, main, bin, "\u00b1", "\\pm", true);
544
544
  defineSymbol(math, main, bin, "\u00d7", "\\times", true);
545
545
  defineSymbol(math, main, bin, "\u2229", "\\cap", true);
546
546
  defineSymbol(math, main, bin, "\u222a", "\\cup", true);
547
- defineSymbol(math, main, bin, "\u2216", "\\setminus");
547
+ defineSymbol(math, main, bin, "\u2216", "\\setminus", true);
548
548
  defineSymbol(math, main, bin, "\u2227", "\\land");
549
549
  defineSymbol(math, main, bin, "\u2228", "\\lor");
550
550
  defineSymbol(math, main, bin, "\u2227", "\\wedge", true);