lakelib 0.1.17 → 0.1.19
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 +14 -9
- package/dist/lake.css +2 -2
- package/dist/lake.min.js +4 -4
- package/dist/lake.min.js.map +1 -1
- package/lib/lake.css +2 -2
- package/lib/lake.js +108 -85
- package/lib/lake.js.map +1 -1
- package/lib/types/models/range.d.ts +1 -0
- package/lib/types/utils/append-break.d.ts +2 -0
- package/lib/types/utils/get-deep-element.d.ts +2 -0
- package/lib/types/utils/index.d.ts +3 -3
- package/lib/types/utils/remove-break.d.ts +2 -0
- package/package.json +1 -1
- package/lib/types/utils/append-deepest.d.ts +0 -2
- package/lib/types/utils/get-deepest.d.ts +0 -2
- package/lib/types/utils/remove-br.d.ts +0 -2
package/README.md
CHANGED
|
@@ -33,12 +33,17 @@ Lake depends on a lot of browser APIs and so needs a real browser environment fo
|
|
|
33
33
|
|
|
34
34
|
Lake is released under the [MIT](https://github.com/lakejs/lake/blob/main/LICENSE) license. The licenses of its dependencies are:
|
|
35
35
|
|
|
36
|
-
|
|
|
37
|
-
| -------------
|
|
38
|
-
| [
|
|
39
|
-
| [
|
|
40
|
-
| [
|
|
41
|
-
| [
|
|
42
|
-
| [
|
|
43
|
-
| [
|
|
44
|
-
| [
|
|
36
|
+
| Dependency | License |
|
|
37
|
+
| ------------- | ------------- |
|
|
38
|
+
| [Phosphor Icons](https://phosphoricons.com/) | MIT |
|
|
39
|
+
| [Fluent Icons](https://fluenticons.co/) | MIT |
|
|
40
|
+
| [CodeMirror](https://codemirror.net/) | MIT |
|
|
41
|
+
| [debounce](https://github.com/sindresorhus/debounce) | MIT |
|
|
42
|
+
| [EventEmitter3](https://github.com/primus/eventemitter3) | MIT |
|
|
43
|
+
| [fast-deep-equal](https://github.com/epoberezkin/fast-deep-equal) | MIT |
|
|
44
|
+
| [Idiomorph](https://github.com/bigskysoftware/idiomorph) | BSD 2-Clause |
|
|
45
|
+
| [is-hotkey](https://github.com/ianstormtaylor/is-hotkey) | MIT |
|
|
46
|
+
| [KaTeX](https://katex.org/) | MIT |
|
|
47
|
+
| [rc-upload](https://github.com/react-component/upload) | MIT |
|
|
48
|
+
| [PhotoSwipe](https://photoswipe.com/) | MIT |
|
|
49
|
+
| [typesafe-i18n](https://github.com/ivanhofer/typesafe-i18n) | MIT |
|
package/dist/lake.css
CHANGED
|
@@ -126,13 +126,13 @@ lake-box {
|
|
|
126
126
|
margin: 0;
|
|
127
127
|
padding: 0;
|
|
128
128
|
text-indent: 0;
|
|
129
|
-
grid-template-columns: 1px 1fr 1px;
|
|
130
129
|
}
|
|
131
130
|
lake-box[type="inline"] {
|
|
132
|
-
display: inline
|
|
131
|
+
display: inline flex;
|
|
133
132
|
}
|
|
134
133
|
lake-box[type="block"] {
|
|
135
134
|
display: block grid;
|
|
135
|
+
grid-template-columns: 1px 1fr 1px;
|
|
136
136
|
}
|
|
137
137
|
lake-box .lake-box-strip {
|
|
138
138
|
display: block;
|