@linker-design-plus/tiny-peony 1.3.10 → 1.3.12
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 +6 -0
- package/dist/index.js +29 -29
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1445 -1432
- package/dist/index.mjs.map +1 -1
- package/dist/intersection/components/editor/editor.d.ts +2 -0
- package/dist/intersection/components/editor/index.d.ts +6 -0
- package/dist/intersection/hooks/use-editor.d.ts +1 -0
- package/dist/tiny-peony.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -91,6 +91,7 @@ declare const TinyPeony: {
|
|
|
91
91
|
innerIsAllMarkedByAnchor: () => boolean;
|
|
92
92
|
innerAddExtraAnchors: (data: import("./typings/index").IAnchor[]) => void;
|
|
93
93
|
innerClearContent: () => void;
|
|
94
|
+
innerInsertContentAtCursor: (_content: string | string[]) => void;
|
|
94
95
|
innerRenderHightlight: (matchingContent: string) => void;
|
|
95
96
|
innerUnrenderHightlight: () => void;
|
|
96
97
|
}, {}, {}, {
|
|
@@ -112,6 +113,7 @@ declare const TinyPeony: {
|
|
|
112
113
|
isAllMarkedByAnchor(): boolean;
|
|
113
114
|
addExtraAnchors(data: import("./typings/index").IAnchor[]): void;
|
|
114
115
|
clearContent(): void;
|
|
116
|
+
insertContentAtCursor(_content: string | string[]): void;
|
|
115
117
|
clear(): Promise<void>;
|
|
116
118
|
renderHighlight(matchingContent: string): void;
|
|
117
119
|
unrenderHighlight(): void;
|
|
@@ -233,6 +235,7 @@ declare const TinyPeony: {
|
|
|
233
235
|
innerIsAllMarkedByAnchor: () => boolean;
|
|
234
236
|
innerAddExtraAnchors: (data: import("./typings/index").IAnchor[]) => void;
|
|
235
237
|
innerClearContent: () => void;
|
|
238
|
+
innerInsertContentAtCursor: (_content: string | string[]) => void;
|
|
236
239
|
innerRenderHightlight: (matchingContent: string) => void;
|
|
237
240
|
innerUnrenderHightlight: () => void;
|
|
238
241
|
}, {}, {}, {
|
|
@@ -254,6 +257,7 @@ declare const TinyPeony: {
|
|
|
254
257
|
isAllMarkedByAnchor(): boolean;
|
|
255
258
|
addExtraAnchors(data: import("./typings/index").IAnchor[]): void;
|
|
256
259
|
clearContent(): void;
|
|
260
|
+
insertContentAtCursor(_content: string | string[]): void;
|
|
257
261
|
clear(): Promise<void>;
|
|
258
262
|
renderHighlight(matchingContent: string): void;
|
|
259
263
|
unrenderHighlight(): void;
|
|
@@ -366,6 +370,7 @@ declare const TinyPeony: {
|
|
|
366
370
|
innerIsAllMarkedByAnchor: () => boolean;
|
|
367
371
|
innerAddExtraAnchors: (data: import("./typings/index").IAnchor[]) => void;
|
|
368
372
|
innerClearContent: () => void;
|
|
373
|
+
innerInsertContentAtCursor: (_content: string | string[]) => void;
|
|
369
374
|
innerRenderHightlight: (matchingContent: string) => void;
|
|
370
375
|
innerUnrenderHightlight: () => void;
|
|
371
376
|
}, {}, {}, {
|
|
@@ -387,6 +392,7 @@ declare const TinyPeony: {
|
|
|
387
392
|
isAllMarkedByAnchor(): boolean;
|
|
388
393
|
addExtraAnchors(data: import("./typings/index").IAnchor[]): void;
|
|
389
394
|
clearContent(): void;
|
|
395
|
+
insertContentAtCursor(_content: string | string[]): void;
|
|
390
396
|
clear(): Promise<void>;
|
|
391
397
|
renderHighlight(matchingContent: string): void;
|
|
392
398
|
unrenderHighlight(): void;
|