@uiw/react-md-editor 3.9.4 → 3.9.7
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/README.md +4 -0
- package/dist/mdeditor.css +27 -8
- package/dist/mdeditor.js +62990 -61294
- package/dist/mdeditor.min.css +1 -1
- package/dist/mdeditor.min.js +1 -1
- package/esm/Editor.js +7 -6
- package/esm/Editor.js.map +3 -2
- package/lib/Editor.js +11 -8
- package/lib/Editor.js.map +3 -2
- package/package.json +28 -28
- package/src/Editor.tsx +14 -9
package/README.md
CHANGED
|
@@ -465,10 +465,14 @@ npm run start # Preview code example.
|
|
|
465
465
|
|
|
466
466
|
## Contributors
|
|
467
467
|
|
|
468
|
+
As always, thanks to our amazing contributors!
|
|
469
|
+
|
|
468
470
|
<a href="https://github.com/uiwjs/react-md-editor/graphs/contributors">
|
|
469
471
|
<img src="https://uiwjs.github.io/react-md-editor/CONTRIBUTORS.svg" />
|
|
470
472
|
</a>
|
|
471
473
|
|
|
474
|
+
Made with [github-action-contributors](https://github.com/jaywcjlove/github-action-contributors).
|
|
475
|
+
|
|
472
476
|
### License
|
|
473
477
|
|
|
474
478
|
Licensed under the MIT License.
|
package/dist/mdeditor.css
CHANGED
|
@@ -190,6 +190,25 @@
|
|
|
190
190
|
list-style: disc outside none;
|
|
191
191
|
list-style: initial;
|
|
192
192
|
}
|
|
193
|
+
.wmde-markdown li {
|
|
194
|
+
display: list-item;
|
|
195
|
+
}
|
|
196
|
+
.wmde-markdown ul ul,
|
|
197
|
+
.wmde-markdown ul ol,
|
|
198
|
+
.wmde-markdown ol ol,
|
|
199
|
+
.wmde-markdown ol ul {
|
|
200
|
+
margin-top: 0;
|
|
201
|
+
margin-bottom: 0;
|
|
202
|
+
}
|
|
203
|
+
.wmde-markdown ul ul ul {
|
|
204
|
+
list-style-type: square;
|
|
205
|
+
}
|
|
206
|
+
.wmde-markdown ul ul {
|
|
207
|
+
list-style-type: circle;
|
|
208
|
+
}
|
|
209
|
+
.wmde-markdown ul {
|
|
210
|
+
list-style-type: disc;
|
|
211
|
+
}
|
|
193
212
|
.wmde-markdown > blockquote,
|
|
194
213
|
.wmde-markdown > blockquote blockquote {
|
|
195
214
|
margin: 0;
|
|
@@ -369,9 +388,9 @@
|
|
|
369
388
|
margin: 0;
|
|
370
389
|
font-size: 14px;
|
|
371
390
|
line-height: 18px;
|
|
391
|
+
-webkit-font-feature-settings: "liga", "clig";
|
|
392
|
+
font-feature-settings: "liga", "clig";
|
|
372
393
|
-webkit-font-variant-ligatures: common-ligatures;
|
|
373
|
-
-webkit-font-feature-settings: "liga", "clig";
|
|
374
|
-
font-feature-settings: "liga", "clig";
|
|
375
394
|
font-variant-ligatures: common-ligatures;
|
|
376
395
|
}
|
|
377
396
|
.w-md-editor-text-pre,
|
|
@@ -385,9 +404,9 @@
|
|
|
385
404
|
font-family: inherit;
|
|
386
405
|
font-size: inherit;
|
|
387
406
|
font-style: inherit;
|
|
407
|
+
-webkit-font-feature-settings: inherit;
|
|
408
|
+
font-feature-settings: inherit;
|
|
388
409
|
-webkit-font-variant-ligatures: inherit;
|
|
389
|
-
-webkit-font-feature-settings: inherit;
|
|
390
|
-
font-feature-settings: inherit;
|
|
391
410
|
font-variant-ligatures: inherit;
|
|
392
411
|
font-weight: inherit;
|
|
393
412
|
letter-spacing: inherit;
|
|
@@ -526,8 +545,8 @@
|
|
|
526
545
|
align-items: center;
|
|
527
546
|
border-radius: 3px 3px 0 0;
|
|
528
547
|
-webkit-user-select: none;
|
|
529
|
-
|
|
530
|
-
|
|
548
|
+
-ms-user-select: none;
|
|
549
|
+
user-select: none;
|
|
531
550
|
}
|
|
532
551
|
.w-md-editor-toolbar ul,
|
|
533
552
|
.w-md-editor-toolbar li {
|
|
@@ -596,8 +615,8 @@
|
|
|
596
615
|
height: 10px;
|
|
597
616
|
border-radius: 0 0 3px 0;
|
|
598
617
|
-webkit-user-select: none;
|
|
599
|
-
|
|
600
|
-
|
|
618
|
+
-ms-user-select: none;
|
|
619
|
+
user-select: none;
|
|
601
620
|
}
|
|
602
621
|
.w-md-editor-bar svg {
|
|
603
622
|
display: block;
|