@powerduck/md-editor 0.8.4 → 0.9.0
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 +5 -0
- package/dist/index.cjs +10 -10
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +362 -342
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -128,3 +128,5 @@ export { icons, type IconName } from './icons.js';
|
|
|
128
128
|
export { Popup, type PopupConfig, type PopupField } from './plugins/popup.js';
|
|
129
129
|
export { extractYouTubeId, youTubeEmbedMarkdown, imageMarkdown, videoMarkdown, isVideoFile } from './plugins/media.js';
|
|
130
130
|
export { DEFAULT_SHORTCUTS, matchShortcut, formatShortcut, formatShortcutHtml, type ShortcutDef } from './plugins/keyboard.js';
|
|
131
|
+
export { type MentionItem, type MentionOptions } from './plugins/mention.js';
|
|
132
|
+
export { type DocItem, type DocMeta, type DocLinkOptions } from './plugins/doclink.js';
|