@pie-element/ebsr 6.6.3-next.1082 → 6.6.3-next.1089
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/configure/node_modules/@pie-framework/mathquill/CHANGELOG.md +218 -0
- package/configure/node_modules/@pie-framework/mathquill/README.md +43 -0
- package/configure/node_modules/@pie-framework/mathquill/build/fonts/Symbola.eot +0 -0
- package/configure/node_modules/@pie-framework/mathquill/build/fonts/Symbola.svg +2025 -0
- package/configure/node_modules/@pie-framework/mathquill/build/fonts/Symbola.ttf +0 -0
- package/configure/node_modules/@pie-framework/mathquill/build/fonts/Symbola.woff +0 -0
- package/configure/node_modules/@pie-framework/mathquill/build/fonts/Symbola.woff2 +0 -0
- package/configure/node_modules/@pie-framework/mathquill/build/index-dev.js +5 -0
- package/configure/node_modules/@pie-framework/mathquill/build/index.js +5 -0
- package/configure/node_modules/@pie-framework/mathquill/build/jquery.global.js +5 -0
- package/configure/node_modules/@pie-framework/mathquill/build/mathquill.css +847 -0
- package/configure/node_modules/@pie-framework/mathquill/build/mathquill.js +6396 -0
- package/configure/node_modules/@pie-framework/mathquill/build/mathquill.min.js +13 -0
- package/configure/node_modules/@pie-framework/mathquill/package.json +34 -0
- package/configure/package.json +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
## v0.10.1: Fix `font-size: 0` typing problems and more
|
|
2
|
+
|
|
3
|
+
_2016-03-21_
|
|
4
|
+
|
|
5
|
+
Important fix: remove `font-size: 0` on textarea (#585), fixing typing
|
|
6
|
+
in Chrome Canary (#540) as well as the Enter key not triggering the
|
|
7
|
+
`enter` handler in Webkit and Blink (#566). `transform: scale(0)` is
|
|
8
|
+
used instead and expected to be much more robust.
|
|
9
|
+
|
|
10
|
+
(Note: if you're coming from v0.9.x, there've been major API changes,
|
|
11
|
+
see the [v0.9.x → v0.10.0 Migration Guide][].)
|
|
12
|
+
|
|
13
|
+
[v0.9.x → v0.10.0 Migration Guide]: https://github.com/mathquill/mathquill/wiki/v0.9.x-%E2%86%92-v0.10.0-Migration-Guide
|
|
14
|
+
|
|
15
|
+
**new features:**
|
|
16
|
+
- (#544, #552, #558, #581) new symbols `\nparallel`, `\measuredangle`,
|
|
17
|
+
`\odot`, `\parallelogram` (nonstandard), `\nless`, `\ngtr`, `\square`
|
|
18
|
+
- (#544) new commands `\overleftarrow`, `\overrightarrow`
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
**bugfixes:**
|
|
22
|
+
- (#585) fix typing in Chrome Canary, Enter key in Webkit+Blink
|
|
23
|
+
- (#582) fix `\degree` symbol to round-trip (rather than exporting
|
|
24
|
+
`^\circ` which doesn't parse as one symbol)
|
|
25
|
+
- (#578) fix `.text()` to output `\cdot` as `*`
|
|
26
|
+
- (#529, #571, #574) fix `.text()` of fractions, spaces, variables followed
|
|
27
|
+
by exponents
|
|
28
|
+
- (#577) fix `\triangle` symbol to match LaTeX better
|
|
29
|
+
- (#568) hotfix #435 order-dependence breaking clean build on Linux
|
|
30
|
+
- (#560) fix florin spacing still too close
|
|
31
|
+
- (#546) fix parsing or pasting `×` (Unicode times symbol)
|
|
32
|
+
- (#519/#487) fix auto-horizontal-scroll/pan on API calls
|
|
33
|
+
- (#528) fix #429 can't move cursor out of `TextBlock`
|
|
34
|
+
- (#526) fix exponentiation to export `^` not `**`
|
|
35
|
+
- (#525) fix Tab while there's a selection
|
|
36
|
+
|
|
37
|
+
**build system fixes:**
|
|
38
|
+
- (#532) add console output to show URL of local test pages
|
|
39
|
+
|
|
40
|
+
## v0.10.0: Total API overhaul, new features galore
|
|
41
|
+
|
|
42
|
+
_2016-02-20_
|
|
43
|
+
|
|
44
|
+
Many major changes including a total overhaul of the API (no more
|
|
45
|
+
auto-MathQuill-ifying of `.mathquill-editable` etc, and no more jQuery
|
|
46
|
+
plugin, instead global `MathQuill()` returns API objects, like jQuery
|
|
47
|
+
itself): See the [v0.9.x → v0.10.0 Migration Guide]
|
|
48
|
+
(https://github.com/mathquill/mathquill/wiki/v0.9.x-%E2%86%92-v0.10.0-Migration-Guide).
|
|
49
|
+
|
|
50
|
+
(If you already use the new global `MathQuill()`-based API from the
|
|
51
|
+
`dev` branch, migrating to v0.10.0 should be just [one small change]
|
|
52
|
+
(https://github.com/mathquill/mathquill/wiki/%60dev%60-branch-(2014%E2%80%932015)-%E2%86%92-v0.10.0-Migration-Guide)
|
|
53
|
+
for you.)
|
|
54
|
+
|
|
55
|
+
**API-only changes:**
|
|
56
|
+
- (#336, #349, #351, #353) config options architecture
|
|
57
|
+
- (#308) don't auto-MathQuill-ify on jQuery `ready`
|
|
58
|
+
- (#297) prefix all CSS classes with `mq-`
|
|
59
|
+
- (#238, #272, #288, #337, #362, #459, #463, #495) kill jQuery plugin; new
|
|
60
|
+
global `MathQuill()` returns API objects
|
|
61
|
+
|
|
62
|
+
**typist-facing changes:**
|
|
63
|
+
- (#506) delete `\caret` and `\underscore`
|
|
64
|
+
- (#453) incremental backspace: backspacing into a compound command like
|
|
65
|
+
fraction or exponent goes left into it rather than selecting it
|
|
66
|
+
- (#285) render pasted text in math mode if cursor in math mode
|
|
67
|
+
- (5cf838d) LiveFraction (typing `/`) stops at space when expanding left
|
|
68
|
+
- (#264) intentional blur (like clicking outside field) clears selection
|
|
69
|
+
- (#262, #281, #391, #449, #509) auto-expanding, mis-matchable parens/pipes
|
|
70
|
+
- (#259) blue focus ring only around whole field not individual blocks
|
|
71
|
+
- (#258) `\sum` now comes with lower and upper limit blocks
|
|
72
|
+
- (#246, #248, #274, #434, #473) merge adjacent `SupSub`s into one
|
|
73
|
+
command
|
|
74
|
+
- (#187) delete `\vector`
|
|
75
|
+
- (#144) Shift-Left/Right unselects back into a thing after selecting
|
|
76
|
+
out of it
|
|
77
|
+
- (#157) stop fractions created by typing `/` at `,`/`;`/`:`
|
|
78
|
+
|
|
79
|
+
**new features:**
|
|
80
|
+
- (#468) add WOFF and WOFF2 font formats
|
|
81
|
+
- (#376, #398) add `autoSubscriptNumerals` option
|
|
82
|
+
- (#338) config option `sumStartsWithNEquals`
|
|
83
|
+
- (#321) static math instances may have `.innerFields`
|
|
84
|
+
- (#279) `leftRightIntoCmdGoes: 'up'/'down'`
|
|
85
|
+
- (#278, #407, #442) `SupSub` options to improve usability
|
|
86
|
+
- (#276, #410) anything focusable can be used to `substituteTextarea`
|
|
87
|
+
- (#263) typing `<=` and `>=` results in `\le` and `\ge`
|
|
88
|
+
- (#265) "autocommands": LaTeX control sequences that automatically
|
|
89
|
+
render when you type the letters, without typing backslash first
|
|
90
|
+
- (#261, #361, #387, #404) when the math is too wide to fit in the
|
|
91
|
+
field, pan/scroll horizontally
|
|
92
|
+
- (#247, #301, #255, #509) auto-unitalicize `sin`, `log` etc operator names
|
|
93
|
+
- (#245, #253) config option whether to Spacebar behaves like Tab
|
|
94
|
+
- (#241, #325, #425, #462) new API methods as used by Desmos
|
|
95
|
+
- (#191) `\class{classname}{math}` _a la_
|
|
96
|
+
[MathJax](http://docs.mathjax.org/en/v2.2-latest/tex.html#html)
|
|
97
|
+
- (#151) `\textcolor{color}{math}`
|
|
98
|
+
|
|
99
|
+
**new build system features:**
|
|
100
|
+
- (#377) `OMIT_FONT_FACE=true make` omits `@font-face {...}`
|
|
101
|
+
- (#319) `make basic` builds stripped-down MathQuill for basic math
|
|
102
|
+
|
|
103
|
+
**bugfixes:**
|
|
104
|
+
- (#452) fix blinking blue cursor and autocorrect on iOS
|
|
105
|
+
- (#448) fix `\ddots` to be downward-rightward not upward-rightward
|
|
106
|
+
- (#432) fix quadratic-time fragment construction
|
|
107
|
+
- (#379) fix `.text()` errors when currently typing backslash command
|
|
108
|
+
- (#364, #367, #363, #397, #402, #417, #472) fixes to spacing and
|
|
109
|
+
positioning
|
|
110
|
+
- (#323, #365, #409) fix LaTeX for `/`, `{`, `}` `^`, `_`, and `~`
|
|
111
|
+
- (99da82a) fix LaTeX parsing of `'`
|
|
112
|
+
- (#294, #355) fix `Cmd-Left` turns selection into typed text in Firefox
|
|
113
|
+
- (#296, #392) fix `f`/florin situation
|
|
114
|
+
- (#299) don't use reserved word `yield`
|
|
115
|
+
- (#284) escape non-ASCII Unicode characters in the JS source code
|
|
116
|
+
- (#272) fix API methods `.write()` on empty LaTeX and `.cmd()` erroring
|
|
117
|
+
- (#255) fix auto-spacing of `SupSub` and `PlusMinus`
|
|
118
|
+
- (#266) fix keyboard select after mouse select
|
|
119
|
+
- (#268) <code>\ </code> not `\:` as LaTeX for space
|
|
120
|
+
- (68c8f2b) fix resize gripper appearing sometimes in Chrome
|
|
121
|
+
- (6803077) fix Shift-Enter, Ctrl-Enter inputting newlines
|
|
122
|
+
- (f17fb95) fix potential Ctrl-C "copy" race condition
|
|
123
|
+
- (765dd70, #322) don't unnecessarily `stopPropagation()` mouse events
|
|
124
|
+
- (c1fe1ef, 9aef35f) fix up/down in an `\editable{}` in a fraction
|
|
125
|
+
|
|
126
|
+
**docs:**
|
|
127
|
+
- (#485) add more metadata to package.json
|
|
128
|
+
- (#484) fix links in README
|
|
129
|
+
- (#393) correctly credit co-creator @jneen
|
|
130
|
+
- (#283) use Mozilla Public License (MPL) instead of LGPL
|
|
131
|
+
|
|
132
|
+
**internal refactors:**
|
|
133
|
+
- (#303) remove STIX font files, never used them
|
|
134
|
+
- (#244) refactor focus/blur out into its own service
|
|
135
|
+
- (#240) simplify `saneKeyboardEvents()` handlers pattern
|
|
136
|
+
- (#233, #234, #236, #237, #239, #509) massive refactor of cursor and
|
|
137
|
+
- root block nonlocal responsibilities as controller and services instead
|
|
138
|
+
- (#195, #340) some LaTeX rendering performance fixes; separate out
|
|
139
|
+
root block DOM node from container DOM node
|
|
140
|
+
- (#183) `Cursor::notify` framework
|
|
141
|
+
- (#117, #142, #186, #287) massive refactor of cursor methods to not
|
|
142
|
+
assume the edit tree is double-layered
|
|
143
|
+
|
|
144
|
+
## v0.9.4: URGENT HOTFIX for cursor showing up as an ugly box in Chrome 40
|
|
145
|
+
|
|
146
|
+
_2014-1-22_
|
|
147
|
+
|
|
148
|
+
URGENT HOTFIX for cursor showing up as an ugly box in Chrome 40 (#371)
|
|
149
|
+
|
|
150
|
+
**bugfixes:**
|
|
151
|
+
- (#371) fix cursor showing up as an ugly box in Chrome 40
|
|
152
|
+
- (#230) fix selecting previously selected static math can't be copied
|
|
153
|
+
- (#217) fix no Array::indexOf in IE<9, use RegExp::test
|
|
154
|
+
- (#213) fix exception on up/down while something is selected
|
|
155
|
+
- (#211) fix CSS typo causing no italics when there should be
|
|
156
|
+
|
|
157
|
+
**build system changes:**
|
|
158
|
+
- (#222 and #228) `make server` auto-rebuilds without restarting server
|
|
159
|
+
- (#212) use empty target trick in Makefile
|
|
160
|
+
|
|
161
|
+
**docs:**
|
|
162
|
+
- (#283) change license from LGPL to Mozilla Public License
|
|
163
|
+
|
|
164
|
+
## v0.9.3: Fix `NZQRC` appearing double-struck/blackboard bold
|
|
165
|
+
|
|
166
|
+
_2013-11-11_
|
|
167
|
+
|
|
168
|
+
**new features:**
|
|
169
|
+
- (#185) add `\vec`
|
|
170
|
+
|
|
171
|
+
**bugfixes:**
|
|
172
|
+
- (#164) displaying `NZQRC` as `\mathbb{NZQRC}` (double-struck)
|
|
173
|
+
- (#180) can't type >1 spaces in `RootTextBlock`s
|
|
174
|
+
- (#190) `$` at the end of a `TextBlock` causes errors later
|
|
175
|
+
- (#152) when "Select All"-ed, `.mathquill('latex')` throws
|
|
176
|
+
|
|
177
|
+
**internal refactors:**
|
|
178
|
+
- rename `.end` and `.endChild` both to `.ends`
|
|
179
|
+
|
|
180
|
+
**build system changes:**
|
|
181
|
+
- fix `make publish` to work on BSD
|
|
182
|
+
- (#189) replace Connect with tiny handwritten static server
|
|
183
|
+
- upgrade to uglifyjs2
|
|
184
|
+
|
|
185
|
+
## v0.9.2: Fix bug in hotfix for typing over selections in Safari 5.1
|
|
186
|
+
|
|
187
|
+
_2013-04-02_
|
|
188
|
+
|
|
189
|
+
NOTE: The hotfix for typing over selections in Safari 5.1 (#135) from
|
|
190
|
+
v0.9.1 had a huge bug, fixed as #166.
|
|
191
|
+
|
|
192
|
+
**feature changes:**
|
|
193
|
+
- (#156) stop LiveFraction at commas/colons/semicolons
|
|
194
|
+
|
|
195
|
+
**bugfixes:**
|
|
196
|
+
- allow angle bracket as a VanillaSymbol (thanks @fpirsch!)
|
|
197
|
+
- (#166) fix selecting after paste
|
|
198
|
+
- (#121) editing `\text{...}` created from LaTeX
|
|
199
|
+
- (#122) spacebar was broken in TextBlocks
|
|
200
|
+
- (#125) `$` in TextBlock was jumping to the end
|
|
201
|
+
- stretched parens not being grayed
|
|
202
|
+
|
|
203
|
+
**internal refactors:**
|
|
204
|
+
- Massive renaming introducing direction constants `L` and `R`, and
|
|
205
|
+
directionalized methods
|
|
206
|
+
- Use a subclass of jQuery with directionalized methods (see `d5597e4`)
|
|
207
|
+
|
|
208
|
+
**build system changes:**
|
|
209
|
+
- New site-building system
|
|
210
|
+
- no more submodules, `npm` only
|
|
211
|
+
|
|
212
|
+
## v0.9.1: Hotfix for typing over selections in Safari 5.1
|
|
213
|
+
|
|
214
|
+
_2012-12-19_
|
|
215
|
+
|
|
216
|
+
* Started the changelog
|
|
217
|
+
* Added a `make publish` script
|
|
218
|
+
* Hotfix for typing over selections in Safari 5.1 (#135)
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# [MathQuill](http://mathquill.com)
|
|
2
|
+
|
|
3
|
+
by [Han](http://github.com/laughinghan), [Jeanine](http://github.com/jneen), and [Mary](http://github.com/stufflebear) (<maintainers@mathquill.com>) [<img alt="slackin.mathquill.com" src="http://slackin.mathquill.com/badge.svg" align="top">](http://slackin.mathquill.com)
|
|
4
|
+
|
|
5
|
+
MathQuill is a web formula editor designed to make typing math easy and beautiful.
|
|
6
|
+
|
|
7
|
+
[<img alt="homepage demo" src="https://cloud.githubusercontent.com/assets/225809/15163580/1bc048c4-16be-11e6-98a6-de467d00cff1.gif" width="260">](http://mathquill.com)
|
|
8
|
+
|
|
9
|
+
The MathQuill project is supported by its [partners](http://mathquill.com/partners.html). We hold ourselves to a compassionate [Code of Conduct](http://docs.mathquill.com/en/latest/Code_of_Conduct/).
|
|
10
|
+
|
|
11
|
+
MathQuill is resuming active development and we're committed to getting things running smoothly. Find a dusty corner? [Let us know in Slack.](http://slackin.mathquill.com) (Prefer IRC? We're `#mathquill` on Freenode.)
|
|
12
|
+
|
|
13
|
+
## Getting Started
|
|
14
|
+
|
|
15
|
+
MathQuill has a simple interface. This brief example creates a MathQuill element and renders, then reads a given input:
|
|
16
|
+
```javascript
|
|
17
|
+
var htmlElement = document.getElementById('some_id');
|
|
18
|
+
var config = {
|
|
19
|
+
handlers: { edit: function(){ ... } },
|
|
20
|
+
restrictMismatchedBrackets: true
|
|
21
|
+
};
|
|
22
|
+
var mathField = MQ.MathField(htmlElement, config);
|
|
23
|
+
|
|
24
|
+
mathField.latex('2^{\\frac{3}{2}}'); // Renders the given LaTeX in the MathQuill field
|
|
25
|
+
mathField.latex(); // => '2^{\\frac{3}{2}}'
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Check out our [Getting Started Guide](http://docs.mathquill.com/en/latest/Getting_Started/) for setup instructions and basic MathQuill usage.
|
|
29
|
+
|
|
30
|
+
## Docs
|
|
31
|
+
|
|
32
|
+
Most documentation for MathQuill is located on [ReadTheDocs](http://docs.mathquill.com/en/latest/).
|
|
33
|
+
|
|
34
|
+
Some older documentation still exists on the [Wiki](https://github.com/mathquill/mathquill/wiki).
|
|
35
|
+
|
|
36
|
+
## Open-Source License
|
|
37
|
+
|
|
38
|
+
The Source Code Form of MathQuill is subject to the terms of the Mozilla Public
|
|
39
|
+
License, v. 2.0: [http://mozilla.org/MPL/2.0/](http://mozilla.org/MPL/2.0/)
|
|
40
|
+
|
|
41
|
+
The quick-and-dirty is you can do whatever if modifications to MathQuill are in
|
|
42
|
+
public GitHub forks. (Other ways to publicize modifications are also fine, as
|
|
43
|
+
are private use modifications. See also: [MPL 2.0 FAQ](https://www.mozilla.org/en-US/MPL/2.0/FAQ/))
|