documint 0.0.19 → 0.0.20
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/dist/index.d.ts +14 -14
- package/dist/index.js +39 -45
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -136,54 +136,54 @@ export type EditorTheme = {
|
|
|
136
136
|
background: string;
|
|
137
137
|
blockquoteRule: string;
|
|
138
138
|
blockquoteRuleActive: string;
|
|
139
|
-
blockquoteText
|
|
140
|
-
caret
|
|
139
|
+
blockquoteText?: string;
|
|
140
|
+
caret?: string;
|
|
141
141
|
checkboxCheckmark: string;
|
|
142
142
|
checkboxCheckedFill: string;
|
|
143
143
|
checkboxCheckedStroke: string;
|
|
144
144
|
checkboxUncheckedFill: string;
|
|
145
145
|
checkboxUncheckedStroke: string;
|
|
146
146
|
codeBackground: string;
|
|
147
|
-
codeText
|
|
147
|
+
codeText?: string;
|
|
148
148
|
commentHighlight: string;
|
|
149
149
|
commentHighlightActive: string;
|
|
150
150
|
commentHighlightResolved: string;
|
|
151
151
|
commentHighlightResolvedActive: string;
|
|
152
152
|
dividerRule?: string;
|
|
153
153
|
headingRule: string;
|
|
154
|
-
headingText
|
|
154
|
+
headingText?: string;
|
|
155
155
|
imageLoadingOverlay: string;
|
|
156
156
|
imagePlaceholderIcon: string;
|
|
157
|
-
imagePlaceholderText
|
|
157
|
+
imagePlaceholderText?: string;
|
|
158
158
|
imageSurfaceBackground: string;
|
|
159
159
|
imageSurfaceBorder: string;
|
|
160
160
|
inlineCodeBackground: string;
|
|
161
|
-
inlineCodeText
|
|
162
|
-
insertHighlightText
|
|
161
|
+
inlineCodeText?: string;
|
|
162
|
+
insertHighlightText?: string;
|
|
163
163
|
leafAccent: string;
|
|
164
164
|
leafBackground: string;
|
|
165
165
|
leafBorder: string;
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
leafButtonText: string;
|
|
166
|
+
leafInputBackground: string;
|
|
167
|
+
leafButtonText?: string;
|
|
169
168
|
leafResolvedBackground: string;
|
|
170
169
|
leafResolvedBorder: string;
|
|
171
|
-
leafSecondaryText
|
|
170
|
+
leafSecondaryText?: string;
|
|
172
171
|
leafShadow?: string;
|
|
173
|
-
leafText
|
|
174
|
-
linkText
|
|
172
|
+
leafText?: string;
|
|
173
|
+
linkText?: string;
|
|
175
174
|
listMarkerText?: string;
|
|
176
175
|
mentionBackground?: string;
|
|
177
176
|
mentionText?: string;
|
|
178
177
|
paddingX?: number;
|
|
179
178
|
paddingY?: number;
|
|
180
|
-
paragraphText
|
|
179
|
+
paragraphText?: string;
|
|
181
180
|
selectionBackground: string;
|
|
182
181
|
selectionHandleBackground: string;
|
|
183
182
|
selectionHandleBorder: string;
|
|
184
183
|
tableBodyBackground: string;
|
|
185
184
|
tableBorder: string;
|
|
186
185
|
tableHeaderBackground: string;
|
|
186
|
+
text: string;
|
|
187
187
|
};
|
|
188
188
|
/**
|
|
189
189
|
* A user known to the host. The full set is the mention roster; the subset
|