Skip to content

Commit 8ca679b

Browse files
committed
chore: updated dependencies
1 parent c9b0d4e commit 8ca679b

11 files changed

+620
-367
lines changed

.gitattributes

+107-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,107 @@
1-
* text=auto
1+
#
2+
# Normalize text files line ending to LF in the repository
3+
#
4+
* text=auto
5+
6+
#
7+
# Text files
8+
#
9+
10+
*.css text
11+
*.htm text diff=html
12+
*.html text diff=html
13+
*.js text
14+
*.json text
15+
*.map text -diff
16+
# Markdown
17+
*.md text
18+
*.sass text diff=css
19+
*.scss text diff=css
20+
# shell script, always LF
21+
*.sh text eol=lf
22+
*.svg text
23+
*.ts text
24+
*.yaml text
25+
*.yml text
26+
27+
#
28+
# Text files without extension
29+
#
30+
31+
AUTHORS* text
32+
CHANGELOG* text
33+
CHANGES text
34+
CONTRIBUTING* text
35+
COPYING text
36+
copyright text
37+
*COPYRIGHT* text
38+
INSTALL* text
39+
license text
40+
LICENSE* text
41+
NEWS text
42+
readme text
43+
*README* text
44+
TODO text
45+
46+
#
47+
# Configuration files
48+
#
49+
50+
*.bowerrc text
51+
*.cnf text
52+
*.conf text
53+
*.config text
54+
.babelrc text
55+
.browserslistrc text
56+
.editorconfig text
57+
.env text
58+
.gitattributes text
59+
.gitconfig text
60+
.htaccess text
61+
*.lock text -diff
62+
package-lock.json text -diff
63+
*.npmignore text
64+
*.yaml text
65+
*.yml text
66+
browserslist text
67+
Makefile text
68+
makefile text
69+
70+
71+
#
72+
# Configuration files without extension
73+
#
74+
75+
.csslintrc text
76+
.editorconfig text
77+
.eslintrc text
78+
.gitignore text
79+
.gitmodules text
80+
.htmlhintrc text
81+
.prettierignore text
82+
.jscsrc text
83+
.jshintrc text
84+
.jshintignore text
85+
.stylelintrc text
86+
87+
88+
#
89+
# Graphics
90+
#
91+
92+
*.gif binary
93+
*.ico binary
94+
*.jpg binary
95+
*.jpeg binary
96+
*.png binary
97+
98+
#
99+
# Exclude files from exporting
100+
# (used by the "download ZIP archive" option, for example)
101+
#
102+
103+
.gitattributes export-ignore
104+
.gitignore export-ignore
105+
.gitmodules export-ignore
106+
.prettierignore export-ignore
107+
.package-lock.json export-ignore

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,9 @@ script:
2929
notifications:
3030
slack:
3131
secure: dctz771vJCv6UdjBz65n8XkKx5q/LF5UIY+qSRAxLpqwFp9Y3i9trUNoSaDya4PH5sfAHbUHxsBvG8njIKDJY1pckcrCt2Ml2+9fRQ01cCMggNnSK5OlcuoL6lrnbMbaLz3XEUKJY8mfJnnHggUFNqT0IhCR4xgcxiyg90AtHhIGQcIpkFrpmwbW+ZXm7PMTP/svGkL3OMs4lDO6V8XzEGKXd+4rkcvINZwOtKDXbIf7Wm5MXQ2lf4o1DviAJeFqlIUPRRonAs2KPUAl86t+M22EWDExy6NOtmbdA68m+pDaBJ0mMN0OwxsoEJh5e7ml1/UAs82hCu+Kl3xW4emDrrF7k6C065NmWeRqLBVJxcfy+rdNsiBfJhPmBBGc0VTYLqnWR5PLxDBHgLyO7zAjG4n4G8WpCEY0j891Xaw3Cktz8tWWo336BxCmsd2zOUdoWr+aQsml25mlpLYuX2t4HR66jJdz8A7X+e5m4V3/BE+afMKhRYgeuwPVq03TBAtHZp5jLr0TCw9t3qyNrUEXGtqoAYdCThCP1zcpxTTYnxoYHgoEfiE8OVMkMf6R3JpCUQMk1+AbpyVIHeCxfaq7jCZjUG4exMGFNFhTSjl3ePoCLdwfP75uEIiQU/LOJGb2JrJWVjTEBs5P/atk71ijomygAU3D6BtYwoZm0Hqy+l8=
32+
webhooks:
33+
urls:
34+
- "$GITTER_URL"
35+
on_success: change # options: [always|never|change] default: always
36+
on_failure: always # options: [always|never|change] default: always
37+
on_start: never # options: [always|never|change] default: always

dist/mathlive.d.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ declare class MathField {
620620
element: HTMLElement;
621621
/**
622622
* A set of key/value pairs that can
623-
* be used to customize the behavior of the mathfield
623+
be used to customize the behavior of the mathfield
624624
*/
625625
config: {
626626
[key: string]: any;
@@ -631,22 +631,22 @@ declare class MathField {
631631
id: string;
632632
/**
633633
* True if the keystroke caption
634-
* panel is visible
634+
panel is visible
635635
*/
636636
keystrokeCaptionVisible: boolean;
637637
/**
638638
* True if the virtual keyboard is
639-
* visible
639+
visible
640640
*/
641641
virtualKeyboardVisible: boolean;
642642
/**
643643
* The last few keystrokes, to look out
644-
* for inline shortcuts
644+
for inline shortcuts
645645
*/
646646
keystrokeBuffer: string;
647647
/**
648648
* The saved state for each of the
649-
* past keystrokes
649+
past keystrokes
650650
*/
651651
keystrokeBufferStates: object[];
652652
}

dist/mathlive.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mathlive.mjs

+1-1
Large diffs are not rendered by default.

docs/CNAME

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
docs.mathlive.io
1+
docs.mathlive.io

docs/EditableMathlist.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -7988,7 +7988,8 @@ <h4 class="name" id="toString">toString<span class="signature">()</span><span cl
79887988
<dt class="tag-todo">To Do:</dt>
79897989
<dd class="tag-todo">
79907990
<ul>
7991-
<li>This is a bad name for this function, since it doesn't returna representation of the content, which one might expect...</li>
7991+
<li>This is a bad name for this function, since it doesn't return
7992+
a representation of the content, which one might expect...</li>
79927993
</ul>
79937994
</dd>
79947995

docs/module-editor_keyboard.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,9 @@ <h4 class="name" id=".keyboardEventToString">keyboardEventToString<span class="s
608608
<dt class="tag-todo">To Do:</dt>
609609
<dd class="tag-todo">
610610
<ul>
611-
<li>See https://github.com/madrobby/keymaster/blob/master/keymaster.js- Doesn't work very well for command-<key>- Returns "Alt-Alt" when only the Alt key is pressed</li>
611+
<li>See https://github.com/madrobby/keymaster/blob/master/keymaster.js
612+
- Doesn't work very well for command-<key>
613+
- Returns "Alt-Alt" when only the Alt key is pressed</li>
612614
</ul>
613615
</dd>
614616

docs/module-mathlive.html

+11-3
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,11 @@ <h1 class="page-title">mathlive</h1>
156156

157157

158158

159-
<pre class="prettyprint"><code>// To invoke the functions in this module, import the `mathlive` module.import mathlive from 'dist/mathlive.mjs';console.log(mathlive.latexToMarkup('e^{i\\pi}+1=0'));</code></pre>
159+
<pre class="prettyprint"><code>// To invoke the functions in this module, import the `mathlive` module.
160+
161+
import mathlive from 'dist/mathlive.mjs';
162+
163+
console.log(mathlive.latexToMarkup('e^{i\\pi}+1=0'));</code></pre>
160164

161165

162166

@@ -1879,7 +1883,8 @@ <h4 class="name" id="latexToSpeakableText">latexToSpeakableText<span class="sign
18791883

18801884

18811885

1882-
<pre class="prettyprint"><code>console.log(MathLive.latexToSpeakableText('\\frac{1}{2}'));// ➡︎'half'</code></pre>
1886+
<pre class="prettyprint"><code>console.log(MathLive.latexToSpeakableText('\\frac{1}{2}'));
1887+
// ➡︎'half'</code></pre>
18831888

18841889

18851890

@@ -3890,7 +3895,10 @@ <h4 class="name" id="~renderMathInDocument">renderMathInDocument<span class="sig
38903895

38913896

38923897

3893-
<pre class="prettyprint"><code>import MathLive from 'dist/mathlive.mjs';document.addEventListener("load", () => { MathLive.renderMathInDocument();});</code></pre>
3898+
<pre class="prettyprint"><code>import MathLive from 'dist/mathlive.mjs';
3899+
document.addEventListener("load", () => {
3900+
MathLive.renderMathInDocument();
3901+
});</code></pre>
38943902

38953903

38963904

0 commit comments

Comments
 (0)