lakelib 0.1.25 → 0.2.1
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 +2 -2
- package/dist/lake.css +6 -0
- package/dist/lake.min.js +13 -13
- package/dist/lake.min.js.map +1 -1
- package/lib/lake.css +6 -0
- package/lib/lake.js +79 -23
- package/lib/lake.js.map +1 -1
- package/lib/types/i18n/en-US/index.d.ts +1 -0
- package/lib/types/i18n/ja/index.d.ts +1 -0
- package/lib/types/i18n/ko/index.d.ts +1 -0
- package/lib/types/i18n/types.d.ts +8 -0
- package/lib/types/i18n/zh-CN/index.d.ts +1 -0
- package/lib/types/ui/slash-popup.d.ts +3 -1
- package/package.json +11 -10
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
-
Lake is a rich text editor for
|
|
9
|
+
Lake is a browser-based rich text editor designed for creating content such as blogs, comments, and emails. It tries to keep a balance between being feature-rich and lightweight, and also provides an easy-to-use programming interface that supports further extension.
|
|
10
10
|
|
|
11
11
|
[Examples](https://lakejs.org/examples/) · [Getting started](https://lakejs.org/guide/) · [Reference](https://lakejs.org/reference/)
|
|
12
12
|
|
|
@@ -31,7 +31,7 @@ Lake depends on a lot of browser APIs, so running its test cases needs a real br
|
|
|
31
31
|
|
|
32
32
|
## License
|
|
33
33
|
|
|
34
|
-
Lake is released under the [MIT](https://github.com/lakejs/lake/blob/main/LICENSE) license. The following table
|
|
34
|
+
Lake is released under the [MIT](https://github.com/lakejs/lake/blob/main/LICENSE) license. The following table shows the licenses of the packages that Lake depends on.
|
|
35
35
|
|
|
36
36
|
| Dependency | License |
|
|
37
37
|
| ------------- | ------------- |
|
package/dist/lake.css
CHANGED
|
@@ -1271,6 +1271,12 @@ lake-box[name="equation"] .lake-box-activated .lake-equation-form {
|
|
|
1271
1271
|
.lake-equation .lake-equation-form textarea:focus-visible {
|
|
1272
1272
|
outline: 0;
|
|
1273
1273
|
}
|
|
1274
|
+
.lake-equation .lake-equation-form .lake-button-row {
|
|
1275
|
+
display: flex;
|
|
1276
|
+
flex-direction: column;
|
|
1277
|
+
justify-content: space-between;
|
|
1278
|
+
align-items: flex-end;
|
|
1279
|
+
}
|
|
1274
1280
|
/* error status */
|
|
1275
1281
|
.lake-equation-error {
|
|
1276
1282
|
padding: 0 6px;
|