@mulmocast/deck 0.1.0 → 0.1.1

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/lib/index.d.ts CHANGED
@@ -2,6 +2,6 @@ export { generateSlideHTML } from "./render.js";
2
2
  export type { ResolvedBranding } from "./render.js";
3
3
  export { renderSlideContent } from "./layouts/index.js";
4
4
  export { renderContentBlock, renderContentBlocks } from "./blocks.js";
5
- export { escapeHtml } from "./utils.js";
5
+ export { escapeHtml, resetSlideIdCounter, renderInlineMarkup } from "./utils.js";
6
6
  export { mulmoSlideMediaSchema, slideLayoutSchema, slideThemeSchema, contentBlockSchema, imageRefBlockSchema, chartBlockSchema, mermaidBlockSchema, accentColorKeySchema, slideBrandingLogoSchema, slideBrandingSchema, } from "./schema.js";
7
7
  export type { MulmoSlideMedia, SlideLayout, SlideTheme, SlideThemeColors, SlideThemeFonts, ContentBlock, ImageRefBlock, ChartBlock, MermaidBlock, AccentColorKey, TitleSlide, ColumnsSlide, ComparisonSlide, GridSlide, BigQuoteSlide, StatsSlide, TimelineSlide, SplitSlide, MatrixSlide, TableSlide, FunnelSlide, Card, CalloutBar, SlideStyle, SlideBrandingLogo, SlideBranding, } from "./schema.js";
package/lib/index.js CHANGED
@@ -1,8 +1,8 @@
1
- // Public API for @mulmocast/slide
2
- // Self-contained slide DSL: SlideLayout JSON → Tailwind-based HTML string.
1
+ // Public API for @mulmocast/deck
2
+ // Self-contained deck DSL: SlideLayout JSON → Tailwind-based HTML string.
3
3
  export { generateSlideHTML } from "./render.js";
4
4
  export { renderSlideContent } from "./layouts/index.js";
5
5
  export { renderContentBlock, renderContentBlocks } from "./blocks.js";
6
- export { escapeHtml } from "./utils.js";
6
+ export { escapeHtml, resetSlideIdCounter, renderInlineMarkup } from "./utils.js";
7
7
  // Schemas
8
8
  export { mulmoSlideMediaSchema, slideLayoutSchema, slideThemeSchema, contentBlockSchema, imageRefBlockSchema, chartBlockSchema, mermaidBlockSchema, accentColorKeySchema, slideBrandingLogoSchema, slideBrandingSchema, } from "./schema.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mulmocast/deck",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MulmoCast deck DSL: JSON-described semantic slide layouts (stats, comparison, timeline, ...) rendered to Tailwind-based HTML",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -9,7 +9,7 @@
9
9
  "build": "tsc",
10
10
  "lint": "eslint src test",
11
11
  "format": "prettier --write '{src,test}/**/*.ts'",
12
- "test": "tsx --test ./test/test_*.ts",
12
+ "test": "tsx --test ./test/**/test_*.ts",
13
13
  "prepublishOnly": "yarn run build"
14
14
  },
15
15
  "files": [