@powerduck/md-editor 0.9.1 → 0.9.2
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.cjs +5 -5
- package/dist/index.mjs +513 -469
- package/dist/plugins/doclink.d.ts +2 -0
- package/dist/plugins/mention.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -87,6 +87,8 @@ export declare class DocLinkController {
|
|
|
87
87
|
private runSearch;
|
|
88
88
|
private show;
|
|
89
89
|
private renderDropdown;
|
|
90
|
+
/** Update the active-item CSS class without rebuilding the DOM. */
|
|
91
|
+
private updateActiveClass;
|
|
90
92
|
private positionDropdown;
|
|
91
93
|
private selectItem;
|
|
92
94
|
/**
|
|
@@ -66,6 +66,8 @@ export declare class MentionController {
|
|
|
66
66
|
private runSearch;
|
|
67
67
|
private show;
|
|
68
68
|
private renderDropdown;
|
|
69
|
+
/** Update the active-item CSS class without rebuilding the DOM. */
|
|
70
|
+
private updateActiveClass;
|
|
69
71
|
private positionDropdown;
|
|
70
72
|
private selectItem;
|
|
71
73
|
hide(): void;
|