katex 0.15.6 → 0.16.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/katex.mjs CHANGED
@@ -18168,7 +18168,7 @@ var katex = {
18168
18168
  /**
18169
18169
  * Current KaTeX version
18170
18170
  */
18171
- version: "0.15.6",
18171
+ version: "0.16.0",
18172
18172
 
18173
18173
  /**
18174
18174
  * 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.6",
3
+ "version": "0.16.0",
4
4
  "description": "Fast math typesetting for the web.",
5
5
  "main": "dist/katex.js",
6
6
  "exports": {
@@ -127,7 +127,7 @@
127
127
  "test": "yarn test:lint && yarn test:flow && yarn test:jest",
128
128
  "test:lint": "yarn test:lint:js && yarn test:lint:css",
129
129
  "test:lint:js": "eslint .",
130
- "test:lint:css": "stylelint src/katex.less static/main.css contrib/**/*.css website/static/**/*.css",
130
+ "test:lint:css": "stylelint src/katex.less static/main.css website/static/**/*.css",
131
131
  "test:flow": "flow",
132
132
  "test:jest": "jest",
133
133
  "test:jest:watch": "jest --watch",
@@ -1,10 +0,0 @@
1
- /* Force selection of entire .katex/.katex-display blocks, so that we can
2
- * copy/paste the entire source code. If you omit this CSS, partial
3
- * selections of a formula will work, but will copy the ugly HTML
4
- * representation instead of the LaTeX source code. (Full selections will
5
- * still produce the LaTeX source code.)
6
- */
7
- .katex,
8
- .katex-display {
9
- user-select: all;
10
- }
@@ -1,6 +0,0 @@
1
- /**
2
- * This is the webpack entry point for KaTeX. As ECMAScript doesn't support
3
- * CSS modules natively, a separate entry point is used.
4
- */
5
- import './copy-tex.css';
6
- import './copy-tex.js';
@@ -1,13 +0,0 @@
1
- /* Force selection of entire .katex/.katex-display blocks, so that we can
2
- * copy/paste the entire source code. If you omit this CSS, partial
3
- * selections of a formula will work, but will copy the ugly HTML
4
- * representation instead of the LaTeX source code. (Full selections will
5
- * still produce the LaTeX source code.)
6
- */
7
- .katex,
8
- .katex-display {
9
- -webkit-user-select: all;
10
- -moz-user-select: all;
11
- user-select: all;
12
- }
13
-
@@ -1 +0,0 @@
1
- .katex,.katex-display{-webkit-user-select:all;-moz-user-select:all;user-select:all}