@miliastry/quasar 1.1.0 → 1.2.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/src/index.ts CHANGED
@@ -117,7 +117,7 @@ export { Visitor, type VisitorContext } from './Visitors/Visitor'
117
117
  export { BBCodeExporter, MILIASTRY_ONLY_TAGS, LYNE_ONLY_TAGS, type ExportTarget, type BBCodeExporterOptions, type BBCodeExportOptions } from './Visitors/BBCodeExporter'
118
118
  export { BBBlocksExporter, type UIBBBlock } from './Visitors/BBBlocksExporter'
119
119
  export { HTMLRenderer, type HTMLRendererOptions } from './Visitors/HTMLRenderer'
120
- export { morphHTML } from './Visitors/DOMMorpher'
120
+ export { morphHTML, morphElement } from './Visitors/DOMMorpher'
121
121
  export { patchBlocksInto, clearPatchCache, type PatchBlocksOptions, type PatchBlocksStats } from './Visitors/BlockPatcher'
122
122
  export { SVGRenderer } from './Visitors/SVGRenderer'
123
123
  export { MarkdownExporter } from './Visitors/MarkdownExporter'
@@ -169,7 +169,7 @@ export { reconcileVisualDOMToBBCode, computeTextDelta, type SurgicalEdit as Quas
169
169
  export * from './Edits'
170
170
 
171
171
  // ── BBCode Bridge ──
172
- export { BBCodeDocumentModel } from './BBCode/BBCodeDocumentModel'
172
+ export { BBCodeDocumentModel, renderForumBBCode } from './BBCode/BBCodeDocumentModel'
173
173
  export type { BBCodeDocumentModelOptions } from './BBCode/BBCodeDocumentModel'
174
174
  export {
175
175
  bbBlocksToRedTree,
@@ -194,7 +194,7 @@ export { transformOffset, transformRange, type TransformBias } from './Collab/po
194
194
  // ── Visuals ──
195
195
  export { visualThemes } from './Visuals/index'
196
196
  export type { VisualThemeId } from './Visuals/index'
197
- export { bindBoxDrawer, toggleBoxWithDrawer } from './Visuals/BoxDrawer'
197
+ export { bindBoxDrawer, toggleBoxWithDrawer, toggleSpoilerboxWithDrawer } from './Visuals/BoxDrawer'
198
198
  export type { BoxDrawerOptions } from './Visuals/BoxDrawer'
199
199
 
200
200
  // ── Tree Transformers (document-wide effects) ──
@@ -362,3 +362,6 @@ export type {
362
362
  TokenSource,
363
363
  } from './Tokens/index'
364
364
 
365
+ // ── Audio Runtime ──
366
+ export { setupLyneAudioRuntime, bindLyneAudio } from './Visuals/LyneAudio'
367
+