@podlite/editor-react 0.0.39 → 0.0.41
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/CHANGELOG.podlite +172 -0
- package/esm/Editor.d.ts +7 -0
- package/esm/Editor.js +126 -4
- package/esm/Editor.js.map +1 -1
- package/esm/HighlightedCode.d.ts +12 -0
- package/esm/HighlightedCode.js +42 -0
- package/esm/HighlightedCode.js.map +1 -0
- package/esm/foldPodlite.d.ts +2 -0
- package/esm/foldPodlite.js +69 -0
- package/esm/foldPodlite.js.map +1 -0
- package/esm/index.d.ts +4 -0
- package/esm/index.js +2 -0
- package/esm/index.js.map +1 -1
- package/esm/listContinuation.d.ts +3 -0
- package/esm/listContinuation.js +124 -0
- package/esm/listContinuation.js.map +1 -0
- package/esm/shiki.d.ts +14 -0
- package/esm/shiki.js +143 -0
- package/esm/shiki.js.map +1 -0
- package/esm/types.d.ts +12 -0
- package/esm/types.js +2 -0
- package/esm/types.js.map +1 -0
- package/lib/Editor.d.ts +7 -0
- package/lib/Editor.js +126 -4
- package/lib/Editor.js.map +1 -1
- package/lib/HighlightedCode.d.ts +12 -0
- package/lib/HighlightedCode.js +45 -0
- package/lib/HighlightedCode.js.map +1 -0
- package/lib/foldPodlite.d.ts +2 -0
- package/lib/foldPodlite.js +72 -0
- package/lib/foldPodlite.js.map +1 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.js +3 -1
- package/lib/index.js.map +1 -1
- package/lib/listContinuation.d.ts +3 -0
- package/lib/listContinuation.js +127 -0
- package/lib/listContinuation.js.map +1 -0
- package/lib/shiki.d.ts +14 -0
- package/lib/shiki.js +151 -0
- package/lib/shiki.js.map +1 -0
- package/lib/types.d.ts +12 -0
- package/lib/types.js +3 -0
- package/lib/types.js.map +1 -0
- package/package.json +26 -3
- package/CHANGELOG.md +0 -160
package/CHANGELOG.md
DELETED
|
@@ -1,160 +0,0 @@
|
|
|
1
|
-
# @podlite/editor-react
|
|
2
|
-
|
|
3
|
-
## Upcoming
|
|
4
|
-
|
|
5
|
-
## 0.0.39
|
|
6
|
-
|
|
7
|
-
- enhanced link handling `L<>`
|
|
8
|
-
- fixed a redraw issue when resizing the application window
|
|
9
|
-
|
|
10
|
-
## 0.0.38
|
|
11
|
-
|
|
12
|
-
- allow handle links `L<>` (`onOpenLink`)
|
|
13
|
-
- add styles for `I<>`, `S<>`, `C<>`, `U<>` and fix heading styles
|
|
14
|
-
|
|
15
|
-
## 0.0.37
|
|
16
|
-
|
|
17
|
-
- added `enableAutocompletion` flag to toggle autocompletion
|
|
18
|
-
|
|
19
|
-
## 0.0.36
|
|
20
|
-
|
|
21
|
-
- added start line for scroll preview (startLinePreview)
|
|
22
|
-
|
|
23
|
-
## 0.0.35
|
|
24
|
-
|
|
25
|
-
- fix editor positionning
|
|
26
|
-
|
|
27
|
-
## 0.0.34
|
|
28
|
-
|
|
29
|
-
- fix build process
|
|
30
|
-
|
|
31
|
-
## 0.0.33
|
|
32
|
-
|
|
33
|
-
- fix build process
|
|
34
|
-
|
|
35
|
-
## 0.0.32
|
|
36
|
-
|
|
37
|
-
- add `Wrapper` component to decorate editor
|
|
38
|
-
- refactor styles
|
|
39
|
-
- adjust autocomplete
|
|
40
|
-
- upgrade base editor library
|
|
41
|
-
- add themes support
|
|
42
|
-
- upgrade syntax highlighting code
|
|
43
|
-
- speed up podite mode for editor
|
|
44
|
-
- added initial support for "Focus Write" mode
|
|
45
|
-
|
|
46
|
-
## 0.0.31
|
|
47
|
-
|
|
48
|
-
- fix `=table` caption position
|
|
49
|
-
- syntax highlighting for source code
|
|
50
|
-
|
|
51
|
-
## 0.0.25
|
|
52
|
-
|
|
53
|
-
- add formulas support
|
|
54
|
-
- fix scrolling
|
|
55
|
-
|
|
56
|
-
## 0.0.24
|
|
57
|
-
|
|
58
|
-
- add default cursor position for `code` snippet
|
|
59
|
-
- add support for notification blocks
|
|
60
|
-
|
|
61
|
-
## 0.0.22
|
|
62
|
-
|
|
63
|
-
- support for `=Mermaid` block
|
|
64
|
-
- add text search in document / cmd-F
|
|
65
|
-
- support for `=picture` block
|
|
66
|
-
- fix detect markdown context for suggestions
|
|
67
|
-
|
|
68
|
-
## 0.0.20
|
|
69
|
-
|
|
70
|
-
- support for `=toc` block
|
|
71
|
-
- support for `=markdown` block
|
|
72
|
-
|
|
73
|
-
## 0.0.19
|
|
74
|
-
|
|
75
|
-
- fix build
|
|
76
|
-
- refactor tests
|
|
77
|
-
|
|
78
|
-
## 0.0.18
|
|
79
|
-
|
|
80
|
-
- update deps
|
|
81
|
-
|
|
82
|
-
## 0.0.17
|
|
83
|
-
|
|
84
|
-
- update dep
|
|
85
|
-
|
|
86
|
-
## 0.0.16
|
|
87
|
-
|
|
88
|
-
- add Markdown block suggestion
|
|
89
|
-
- save virtual margin for suggestions
|
|
90
|
-
|
|
91
|
-
## 0.0.15
|
|
92
|
-
|
|
93
|
-
- update deps
|
|
94
|
-
- fix css for video
|
|
95
|
-
|
|
96
|
-
## 0.0.14
|
|
97
|
-
|
|
98
|
-
- fix Toc suggestion
|
|
99
|
-
|
|
100
|
-
## 0.0.13
|
|
101
|
-
|
|
102
|
-
- fix Toc suggestion
|
|
103
|
-
|
|
104
|
-
## 0.0.12
|
|
105
|
-
|
|
106
|
-
- add caption, toc styles support
|
|
107
|
-
- change search suggestions sorting
|
|
108
|
-
- add =Toc related suggestions
|
|
109
|
-
- add suggestions: code block with formatting
|
|
110
|
-
- fix snippets
|
|
111
|
-
- update build system
|
|
112
|
-
|
|
113
|
-
## 0.0.11
|
|
114
|
-
|
|
115
|
-
- minor fix
|
|
116
|
-
|
|
117
|
-
## 0.0.10
|
|
118
|
-
|
|
119
|
-
- implement autocomplete for directives
|
|
120
|
-
- update dep
|
|
121
|
-
|
|
122
|
-
## 0.0.9
|
|
123
|
-
|
|
124
|
-
- update deps
|
|
125
|
-
|
|
126
|
-
## 0.0.8
|
|
127
|
-
|
|
128
|
-
- fix package
|
|
129
|
-
|
|
130
|
-
## 0.0.7
|
|
131
|
-
|
|
132
|
-
- add additional build format
|
|
133
|
-
|
|
134
|
-
## 0.0.6
|
|
135
|
-
|
|
136
|
-
- update css
|
|
137
|
-
- update deps
|
|
138
|
-
|
|
139
|
-
## 0.0.5
|
|
140
|
-
|
|
141
|
-
- update deps
|
|
142
|
-
|
|
143
|
-
## 0.0.4
|
|
144
|
-
|
|
145
|
-
- fix parameters
|
|
146
|
-
- move out from editor key bindings
|
|
147
|
-
- add controlled editor support
|
|
148
|
-
- clean deps
|
|
149
|
-
|
|
150
|
-
## 0.0.3
|
|
151
|
-
|
|
152
|
-
- fix animation
|
|
153
|
-
|
|
154
|
-
## 0.0.2
|
|
155
|
-
|
|
156
|
-
- temporary fix external assets
|
|
157
|
-
|
|
158
|
-
## 0.0.1
|
|
159
|
-
|
|
160
|
-
- initial release
|