deckjsx 0.8.2 → 0.8.3

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.
@@ -1,2 +1,2 @@
1
- import { a as WriterRenderContext, i as WriterAdapterResult, n as RenderOptions, o as pptx, r as WriterAdapter, t as PptxRenderOptions } from "./adapter-B0PALTZN.mjs";
1
+ import { a as WriterRenderContext, i as WriterAdapterResult, n as RenderOptions, o as pptx, r as WriterAdapter, t as PptxRenderOptions } from "./adapter-C8BoybUB.mjs";
2
2
  export { PptxRenderOptions, RenderOptions, WriterAdapter, WriterAdapterResult, WriterRenderContext, pptx };
package/dist/adapter.mjs CHANGED
@@ -1,2 +1,2 @@
1
- import { t as pptx } from "./adapter-B3Efckbf.mjs";
1
+ import { t as pptx } from "./adapter-CGOiv9ip.mjs";
2
2
  export { pptx };
@@ -1,5 +1,5 @@
1
1
  //#region src/authoring/tags.d.ts
2
- type AuthoredTag = "article" | "aside" | "div" | "figure" | "footer" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "header" | "img" | "main" | "nav" | "p" | "section" | "shape" | "span";
2
+ type AuthoredTag = "article" | "aside" | "div" | "figure" | "footer" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "header" | "img" | "main" | "nav" | "p" | "section" | "shape" | "span" | "video";
3
3
  type SectioningTag = "article" | "aside" | "footer" | "header" | "main" | "nav" | "section";
4
4
  //#endregion
5
5
  //#region src/style/types.d.ts
@@ -246,6 +246,20 @@ type ImageStyle = FrameAuthorProps & {
246
246
  marginBottom?: DeckLength;
247
247
  marginLeft?: DeckLength;
248
248
  };
249
+ type VideoStyle = FrameAuthorProps & {
250
+ fit?: ImageFit;
251
+ objectFit?: ImageFit;
252
+ objectPosition?: CssObjectPosition;
253
+ transparency?: number;
254
+ rounding?: boolean;
255
+ borderRadius?: DeckLength;
256
+ boxShadow?: string;
257
+ margin?: Spacing;
258
+ marginTop?: DeckLength;
259
+ marginRight?: DeckLength;
260
+ marginBottom?: DeckLength;
261
+ marginLeft?: DeckLength;
262
+ };
249
263
  type ShapeStyle = FrameAuthorProps & Omit<BoxStyleAuthorProps, "backgroundColor" | "backgroundTransparency" | "borderRadius"> & {
250
264
  background?: string;
251
265
  backgroundColor?: string;
@@ -262,13 +276,13 @@ type ShapeStyle = FrameAuthorProps & Omit<BoxStyleAuthorProps, "backgroundColor"
262
276
  radius?: DeckLength;
263
277
  };
264
278
  type TextRunStyle = Pick<TextStyle, "fontFamily" | "fontSize" | "fontWeight" | "italic" | "fontStyle" | "underline" | "strike" | "textDecoration" | "textDecorationLine" | "textDecorationStyle" | "textDecorationColor" | "textTransform" | "direction" | "writingMode" | "color" | "verticalAlign" | "charSpacing" | "letterSpacing" | "href" | "tooltip" | "superscript" | "subscript" | "textShadow">;
265
- type KnownStyleDeclarationSource = SlideStyle | ViewStyle | TextStyle | TextRunStyle | ImageStyle | ShapeStyle;
279
+ type KnownStyleDeclarationSource = SlideStyle | ViewStyle | TextStyle | TextRunStyle | ImageStyle | VideoStyle | ShapeStyle;
266
280
  type KeysOfUnion<T> = T extends T ? keyof T : never;
267
281
  type ValueOfUnion<T, TKey extends PropertyKey> = T extends T ? TKey extends keyof T ? T[TKey] : never : never;
268
282
  type KnownStyleDeclarationKey = KeysOfUnion<KnownStyleDeclarationSource>;
269
283
  type StyleDeclarationValue = ValueOfUnion<KnownStyleDeclarationSource, KnownStyleDeclarationKey>;
270
284
  type StyleDeclaration = { readonly [Key in KnownStyleDeclarationKey]?: ValueOfUnion<KnownStyleDeclarationSource, Key> };
271
- type StyleForAuthoredTag<TTag extends string> = TTag extends "span" ? TextRunStyle : TTag extends "img" ? ImageStyle : TTag extends "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" ? TextStyle : ViewStyle;
285
+ type StyleForAuthoredTag<TTag extends string> = TTag extends "span" ? TextRunStyle : TTag extends "img" ? ImageStyle : TTag extends "video" ? VideoStyle : TTag extends "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" ? TextStyle : ViewStyle;
272
286
  //#endregion
273
287
  //#region src/templates.d.ts
274
288
  declare const TEMPLATE_AREA_KINDS: readonly ["body", "date", "footer", "generic", "picture", "slideNumber", "title"];
@@ -352,6 +366,17 @@ type ImageNodeProps = {
352
366
  src?: string;
353
367
  data: string;
354
368
  });
369
+ type VideoNodeProps = {
370
+ style?: VideoStyle;
371
+ poster?: string;
372
+ posterData?: string;
373
+ } & ClassNameAuthorProps & TemplateAreaAuthorProps & ({
374
+ src: string;
375
+ data?: string;
376
+ } | {
377
+ src?: string;
378
+ data: string;
379
+ });
355
380
  type ShapeNodeProps = {
356
381
  style?: ShapeStyle;
357
382
  shape?: "rect" | "ellipse" | "line";
@@ -415,7 +440,7 @@ type GraphNodeId = Brand<string, "GraphNodeId">;
415
440
  type StyleEntityId = Brand<string, "StyleEntityId">;
416
441
  type AssetEntityId = Brand<string, "AssetEntityId">;
417
442
  type SourceIdentity = Brand<string, "SourceIdentity">;
418
- type SemanticNodeKind = "container" | "document" | "image" | "shape" | "slide" | "text" | "textRun";
443
+ type SemanticNodeKind = "container" | "document" | "image" | "shape" | "slide" | "text" | "textRun" | "video";
419
444
  type SemanticRole = {
420
445
  readonly kind: "document";
421
446
  } | {
@@ -436,6 +461,8 @@ type SemanticRole = {
436
461
  readonly kind: "image";
437
462
  } | {
438
463
  readonly kind: "shape";
464
+ } | {
465
+ readonly kind: "video";
439
466
  };
440
467
  type SourceOrigin = {
441
468
  readonly kind: "root";
@@ -495,11 +522,16 @@ type SemanticImageNode = BaseSemanticNode & {
495
522
  readonly kind: "image";
496
523
  readonly assetRef?: AssetEntityId;
497
524
  };
525
+ type SemanticVideoNode = BaseSemanticNode & {
526
+ readonly kind: "video";
527
+ readonly assetRef?: AssetEntityId;
528
+ readonly posterAssetRef?: AssetEntityId;
529
+ };
498
530
  type SemanticShapeNode = BaseSemanticNode & {
499
531
  readonly kind: "shape";
500
532
  readonly shape: "rect" | "ellipse" | "line";
501
533
  };
502
- type SemanticNode = SemanticContainerNode | SemanticDocumentNode | SemanticImageNode | SemanticShapeNode | SemanticSlideNode | SemanticTextNode | SemanticTextRunNode;
534
+ type SemanticNode = SemanticContainerNode | SemanticDocumentNode | SemanticImageNode | SemanticVideoNode | SemanticShapeNode | SemanticSlideNode | SemanticTextNode | SemanticTextRunNode;
503
535
  type StyleClassRef = {
504
536
  readonly name: string;
505
537
  readonly index: number;
@@ -514,7 +546,7 @@ type StyleEntity = {
514
546
  };
515
547
  type AssetEntity = {
516
548
  readonly id: AssetEntityId;
517
- readonly kind: "image";
549
+ readonly kind: "image" | "video";
518
550
  readonly source: {
519
551
  readonly kind: "path";
520
552
  readonly path: string;
@@ -741,6 +773,9 @@ type DeckOptions<TTemplates extends SlideTemplateSet = EmptySlideTemplateSet> =
741
773
  type ImageProps = ImageNodeProps & {
742
774
  children?: never;
743
775
  };
776
+ type VideoProps = VideoNodeProps & {
777
+ children?: never;
778
+ };
744
779
  type ShapeProps = ShapeNodeProps & {
745
780
  children?: never;
746
781
  };
@@ -757,6 +792,7 @@ type IntrinsicSpanProps = TextRunNodeProps & IntrinsicKeyProps & {
757
792
  children?: TextJsxChild;
758
793
  };
759
794
  type IntrinsicImgProps = ImageProps & IntrinsicKeyProps;
795
+ type IntrinsicVideoProps = VideoProps & IntrinsicKeyProps;
760
796
  type IntrinsicShapeProps = ShapeProps & IntrinsicKeyProps;
761
797
  type IntrinsicViewTag = "article" | "aside" | "div" | "figure" | "footer" | "header" | "main" | "nav" | "section";
762
798
  type IntrinsicTextTag = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p";
@@ -764,6 +800,7 @@ type DeckJsxIntrinsicElements = {
764
800
  img: IntrinsicImgProps;
765
801
  shape: IntrinsicShapeProps;
766
802
  span: IntrinsicSpanProps;
803
+ video: IntrinsicVideoProps;
767
804
  } & { [Tag in IntrinsicViewTag]: IntrinsicDivProps } & { [Tag in IntrinsicTextTag]: IntrinsicPProps };
768
805
  //#endregion
769
- export { Diagnostics as $, Spacing as $t, BaseSemanticNode as A, CssGridAutoFlow as At, SemanticRole as B, CssLetterSpacing as Bt, SourceContextValue as C, CssAlignSelf as Ct, StyleSheet as D, CssFlexBasis as Dt, ThemeDefaults as E, CssDisplay as Et, SemanticDocumentNode as F, CssGridTemplateAreas as Ft, SourceIdentity as G, DeckLength as Gt, SemanticSlideNode as H, CssOverflow as Ht, SemanticImageNode as I, CssGridTemplateShorthand as It, StyleEntity as J, ImageCropValue as Jt, SourceOrigin as K, DeckPointLength as Kt, SemanticNode as L, CssGridTrack as Lt, GraphNodeId as M, CssGridPlacement as Mt, SemanticAuthorGraph as N, CssGridShorthand as Nt, AssetEntity as O, CssFlexDirection as Ot, SemanticContainerNode as P, CssGridTemplate as Pt, DiagnosticSeverity as Q, SlideStyle as Qt, SemanticNodeKind as R, CssJustifyContent as Rt, SourceContextMapper as S, CssAlignItems as St, ThemeInput as T, CssBoxSizing as Tt, SemanticTextNode as U, CssPosition as Ut, SemanticShapeNode as V, CssObjectPosition as Vt, SemanticTextRunNode as W, CssVisibility as Wt, Diagnostic as X, LayoutMode as Xt, StyleEntityId as Y, ImageStyle as Yt, DiagnosticLabel as Z, ShapeStyle as Zt, SlideFactory as _, TemplateFrame as _t, IntrinsicDivProps as a, StyleDeclaration as an, StyleDiagnosticError as at, SlideOptions as b, BorderStyle as bt, IntrinsicShapeProps as c, TextRunStyle as cn, ClassNameObject as ct, JsxNode as d, TextTabStopAuthoring as dn, EmptySlideTemplateSet as dt, StackAlignment as en, formatDiagnostic as et, TextJsxChild as f, TextTabStopLength as fn, SlideTemplate as ft, CompositionSourceInternals as g, TemplateAreaRef as gt, CompositionSource as h, TemplateAreaKind as ht, DeckOptions as i, StrokeLineJoin as in, SemanticGraphDiagnosticError as it, Brand as j, CssGridLine as jt, AssetEntityId as k, CssFlexWrap as kt, IntrinsicTextTag as l, TextStyle as ln, ClassNameValue as lt, CompositionContext as m, ViewStyle as mn, TemplateArea as mt, DeckJsxElement as n, StrokeDashType as nn, CompositionDiagnosticError as nt, IntrinsicImgProps as o, StyleDeclarationValue as on, JsxKey as ot, COMPOSITION_SOURCE as p, VerticalAlign as pn, SlideTemplateSet as pt, StyleClassRef as q, ImageCropAuthoring as qt, DeckJsxIntrinsicElements as r, StrokeLineCap as rn, DeckDiagnosticError as rt, IntrinsicPProps as s, TextFit as sn, SourceSpan as st, ContentJsxChild as t, StackAxis as tn, formatDiagnostics as tt, IntrinsicViewTag as u, TextTabStopAlignment as un, ClassNameValueArray as ut, SlideFactoryInput as v, TemplateHandle as vt, Theme as w, CssAspectRatio as wt, SourceContextInput as x, CssAlignContent as xt, SlideFactoryInputWithTemplate as y, TemplateName as yt, SemanticOrigin as z, CssJustifySelf as zt };
806
+ export { DiagnosticSeverity as $, ShapeStyle as $t, AssetEntityId as A, CssFlexDirection as At, SemanticOrigin as B, CssJustifyContent as Bt, SourceContextMapper as C, CssAlignContent as Ct, ThemeDefaults as D, CssBoxSizing as Dt, ThemeInput as E, CssAspectRatio as Et, SemanticContainerNode as F, CssGridShorthand as Ft, SemanticTextRunNode as G, CssPosition as Gt, SemanticShapeNode as H, CssLetterSpacing as Ht, SemanticDocumentNode as I, CssGridTemplate as It, StyleClassRef as J, DeckPointLength as Jt, SourceIdentity as K, CssVisibility as Kt, SemanticImageNode as L, CssGridTemplateAreas as Lt, Brand as M, CssGridAutoFlow as Mt, GraphNodeId as N, CssGridLine as Nt, StyleSheet as O, CssDisplay as Ot, SemanticAuthorGraph as P, CssGridPlacement as Pt, DiagnosticLabel as Q, LayoutMode as Qt, SemanticNode as R, CssGridTemplateShorthand as Rt, SourceContextInput as S, BorderStyle as St, Theme as T, CssAlignSelf as Tt, SemanticSlideNode as U, CssObjectPosition as Ut, SemanticRole as V, CssJustifySelf as Vt, SemanticTextNode as W, CssOverflow as Wt, StyleEntityId as X, ImageCropValue as Xt, StyleEntity as Y, ImageCropAuthoring as Yt, Diagnostic as Z, ImageStyle as Zt, CompositionSourceInternals as _, ViewStyle as _n, TemplateAreaKind as _t, IntrinsicDivProps as a, StrokeLineCap as an, SemanticGraphDiagnosticError as at, SlideFactoryInputWithTemplate as b, TemplateHandle as bt, IntrinsicShapeProps as c, StyleDeclarationValue as cn, SourceSpan as ct, IntrinsicViewTag as d, TextStyle as dn, ClassNameValueArray as dt, SlideStyle as en, Diagnostics as et, JsxNode as f, TextTabStopAlignment as fn, VideoNodeProps as ft, CompositionSource as g, VideoStyle as gn, TemplateArea as gt, CompositionContext as h, VerticalAlign as hn, SlideTemplateSet as ht, DeckOptions as i, StrokeDashType as in, DeckDiagnosticError as it, BaseSemanticNode as j, CssFlexWrap as jt, AssetEntity as k, CssFlexBasis as kt, IntrinsicTextTag as l, TextFit as ln, ClassNameObject as lt, COMPOSITION_SOURCE as m, TextTabStopLength as mn, SlideTemplate as mt, DeckJsxElement as n, StackAlignment as nn, formatDiagnostics as nt, IntrinsicImgProps as o, StrokeLineJoin as on, StyleDiagnosticError as ot, TextJsxChild as p, TextTabStopAuthoring as pn, EmptySlideTemplateSet as pt, SourceOrigin as q, DeckLength as qt, DeckJsxIntrinsicElements as r, StackAxis as rn, CompositionDiagnosticError as rt, IntrinsicPProps as s, StyleDeclaration as sn, JsxKey as st, ContentJsxChild as t, Spacing as tn, formatDiagnostic as tt, IntrinsicVideoProps as u, TextRunStyle as un, ClassNameValue as ut, SlideFactory as v, TemplateAreaRef as vt, SourceContextValue as w, CssAlignItems as wt, SlideOptions as x, TemplateName as xt, SlideFactoryInput as y, TemplateFrame as yt, SemanticNodeKind as z, CssGridTrack as zt };
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
- import { $ as Diagnostics, $t as Spacing, At as CssGridAutoFlow, Bt as CssLetterSpacing, C as SourceContextValue, Ct as CssAlignSelf, D as StyleSheet, Dt as CssFlexBasis, E as ThemeDefaults, Et as CssDisplay, Ft as CssGridTemplateAreas, Gt as DeckLength, Ht as CssOverflow, It as CssGridTemplateShorthand, Jt as ImageCropValue, Kt as DeckPointLength, Lt as CssGridTrack, Mt as CssGridPlacement, N as SemanticAuthorGraph, Nt as CssGridShorthand, Ot as CssFlexDirection, Pt as CssGridTemplate, Q as DiagnosticSeverity, Qt as SlideStyle, Rt as CssJustifyContent, S as SourceContextMapper, St as CssAlignItems, T as ThemeInput, Tt as CssBoxSizing, Ut as CssPosition, Vt as CssObjectPosition, Wt as CssVisibility, X as Diagnostic, Xt as LayoutMode, Yt as ImageStyle, Z as DiagnosticLabel, Zt as ShapeStyle, _ as SlideFactory, _t as TemplateFrame, a as IntrinsicDivProps, at as StyleDiagnosticError, b as SlideOptions, bt as BorderStyle, c as IntrinsicShapeProps, cn as TextRunStyle, ct as ClassNameObject, dn as TextTabStopAuthoring, dt as EmptySlideTemplateSet, en as StackAlignment, et as formatDiagnostic, f as TextJsxChild, fn as TextTabStopLength, ft as SlideTemplate, g as CompositionSourceInternals, gt as TemplateAreaRef, h as CompositionSource, ht as TemplateAreaKind, i as DeckOptions, in as StrokeLineJoin, it as SemanticGraphDiagnosticError, jt as CssGridLine, kt as CssFlexWrap, l as IntrinsicTextTag, ln as TextStyle, lt as ClassNameValue, m as CompositionContext, mn as ViewStyle, mt as TemplateArea, n as DeckJsxElement, nn as StrokeDashType, nt as CompositionDiagnosticError, o as IntrinsicImgProps, ot as JsxKey, p as COMPOSITION_SOURCE, pn as VerticalAlign, pt as SlideTemplateSet, qt as ImageCropAuthoring, r as DeckJsxIntrinsicElements, rn as StrokeLineCap, rt as DeckDiagnosticError, s as IntrinsicPProps, sn as TextFit, st as SourceSpan, t as ContentJsxChild, tn as StackAxis, tt as formatDiagnostics, u as IntrinsicViewTag, un as TextTabStopAlignment, ut as ClassNameValueArray, v as SlideFactoryInput, vt as TemplateHandle, w as Theme, wt as CssAspectRatio, x as SourceContextInput, xt as CssAlignContent, y as SlideFactoryInputWithTemplate, yt as TemplateName, zt as CssJustifySelf } from "./index-DOxigSfK.mjs";
2
- import { An as AssetSource, Cn as StageSummary, Dn as AssetLoaderContext, En as AssetLoader, Gt as ProjectInspectionSummary, On as AssetMediaType, Sn as StageName, T as PptxPackageModelCandidate, Tn as AssetLoadResult, _n as RenderOutputSideEffectStatus, an as ProjectOptions, bn as RenderedArtifact, cn as RenderAssemblyBuildSummary, dn as RenderAssemblyFingerprintDelta, fn as RenderAssemblyPlanEntrySummary, gn as RenderOutputSideEffectReason, hn as RenderInspectionSummary, in as OutputFormat, kn as AssetProbeResult, ln as RenderAssemblyExpectedEntrySummary, mn as RenderAssemblyReasonDetails, nn as CompileStages, on as ProjectStages, pn as RenderAssemblyPlanSummary, rn as InspectionDetailLevel, sn as ProjectionFormat, un as RenderAssemblyFinalEntrySummary, vn as RenderOutputSideEffectSummary, w as PptxPackageModel, wn as WrittenOutput, xn as StageArtifactStatus, yn as RenderStages } from "./model-C82_FI4k.mjs";
3
- import { n as RenderOptions, r as WriterAdapter } from "./adapter-B0PALTZN.mjs";
4
- import { r as ResolvedStyleMap } from "./resolve-DH0cI2C3.mjs";
1
+ import { $ as DiagnosticSeverity, $t as ShapeStyle, At as CssFlexDirection, Bt as CssJustifyContent, C as SourceContextMapper, Ct as CssAlignContent, D as ThemeDefaults, Dt as CssBoxSizing, E as ThemeInput, Et as CssAspectRatio, Ft as CssGridShorthand, Gt as CssPosition, Ht as CssLetterSpacing, It as CssGridTemplate, Jt as DeckPointLength, Kt as CssVisibility, Lt as CssGridTemplateAreas, Mt as CssGridAutoFlow, Nt as CssGridLine, O as StyleSheet, Ot as CssDisplay, P as SemanticAuthorGraph, Pt as CssGridPlacement, Q as DiagnosticLabel, Qt as LayoutMode, Rt as CssGridTemplateShorthand, S as SourceContextInput, St as BorderStyle, T as Theme, Tt as CssAlignSelf, Ut as CssObjectPosition, Vt as CssJustifySelf, Wt as CssOverflow, Xt as ImageCropValue, Yt as ImageCropAuthoring, Z as Diagnostic, Zt as ImageStyle, _ as CompositionSourceInternals, _n as ViewStyle, _t as TemplateAreaKind, a as IntrinsicDivProps, an as StrokeLineCap, at as SemanticGraphDiagnosticError, b as SlideFactoryInputWithTemplate, bt as TemplateHandle, c as IntrinsicShapeProps, ct as SourceSpan, d as IntrinsicViewTag, dn as TextStyle, dt as ClassNameValueArray, en as SlideStyle, et as Diagnostics, fn as TextTabStopAlignment, ft as VideoNodeProps, g as CompositionSource, gn as VideoStyle, gt as TemplateArea, h as CompositionContext, hn as VerticalAlign, ht as SlideTemplateSet, i as DeckOptions, in as StrokeDashType, it as DeckDiagnosticError, jt as CssFlexWrap, kt as CssFlexBasis, l as IntrinsicTextTag, ln as TextFit, lt as ClassNameObject, m as COMPOSITION_SOURCE, mn as TextTabStopLength, mt as SlideTemplate, n as DeckJsxElement, nn as StackAlignment, nt as formatDiagnostics, o as IntrinsicImgProps, on as StrokeLineJoin, ot as StyleDiagnosticError, p as TextJsxChild, pn as TextTabStopAuthoring, pt as EmptySlideTemplateSet, qt as DeckLength, r as DeckJsxIntrinsicElements, rn as StackAxis, rt as CompositionDiagnosticError, s as IntrinsicPProps, st as JsxKey, t as ContentJsxChild, tn as Spacing, tt as formatDiagnostic, u as IntrinsicVideoProps, un as TextRunStyle, ut as ClassNameValue, v as SlideFactory, vt as TemplateAreaRef, w as SourceContextValue, wt as CssAlignItems, x as SlideOptions, xt as TemplateName, y as SlideFactoryInput, yt as TemplateFrame, zt as CssGridTrack } from "./index-vl2Yas8y.mjs";
2
+ import { An as AssetSource, Cn as StageSummary, Dn as AssetLoaderContext, En as AssetLoader, Gt as ProjectInspectionSummary, On as AssetMediaType, Sn as StageName, T as PptxPackageModelCandidate, Tn as AssetLoadResult, _n as RenderOutputSideEffectStatus, an as ProjectOptions, bn as RenderedArtifact, cn as RenderAssemblyBuildSummary, dn as RenderAssemblyFingerprintDelta, fn as RenderAssemblyPlanEntrySummary, gn as RenderOutputSideEffectReason, hn as RenderInspectionSummary, in as OutputFormat, kn as AssetProbeResult, ln as RenderAssemblyExpectedEntrySummary, mn as RenderAssemblyReasonDetails, nn as CompileStages, on as ProjectStages, pn as RenderAssemblyPlanSummary, rn as InspectionDetailLevel, sn as ProjectionFormat, un as RenderAssemblyFinalEntrySummary, vn as RenderOutputSideEffectSummary, w as PptxPackageModel, wn as WrittenOutput, xn as StageArtifactStatus, yn as RenderStages } from "./model-CbLfsOqw.mjs";
3
+ import { n as RenderOptions, r as WriterAdapter } from "./adapter-C8BoybUB.mjs";
4
+ import { r as ResolvedStyleMap } from "./resolve-PWa5z4mw.mjs";
5
5
 
6
6
  //#region src/pipeline-runner.d.ts
7
7
  type PresentStageArtifactStatus = Exclude<StageArtifactStatus, "missing">;
@@ -243,4 +243,4 @@ declare global {
243
243
  }
244
244
  }
245
245
  //#endregion
246
- export { type AssetLoadResult, type AssetLoader, type AssetLoaderContext, type AssetMediaType, type AssetProbeResult, type AssetSource, type BorderStyle, type BoundSource, type ClassNameObject, type ClassNameValue, type ClassNameValueArray, type CompileResult, type CompositionContext, CompositionDiagnosticError, type ContentJsxChild, type CssAlignContent, type CssAlignItems, type CssAlignSelf, type CssAspectRatio, type CssBoxSizing, type CssDisplay, type CssFlexBasis, type CssFlexDirection, type CssFlexWrap, type CssGridAutoFlow, type CssGridLine, type CssGridPlacement, type CssGridShorthand, type CssGridTemplate, type CssGridTemplateAreas, type CssGridTemplateShorthand, type CssGridTrack, type CssJustifyContent, type CssJustifySelf, type CssLetterSpacing, type CssObjectPosition, type CssOverflow, type CssPosition, type CssVisibility, Deck, DeckDiagnosticError, type DeckJsxElement, type DeckJsxIntrinsicElements, type DeckLength, type DeckOptions, type DeckPointLength, type Diagnostic, type DiagnosticLabel, type DiagnosticSeverity, type Diagnostics, EMU_PER_INCH, type ImageCropAuthoring, type ImageCropValue, type ImageStyle, type InspectionDetailLevel, type IntrinsicDivProps, type IntrinsicImgProps, type IntrinsicPProps, type IntrinsicShapeProps, type IntrinsicTextTag, type IntrinsicViewTag, type JsxKey, type LayoutMode, type OutputFormat, POINTS_PER_INCH, type ProjectOptions, type ProjectResult, type ProjectionFormat, type RenderAssemblyBuildSummary, type RenderAssemblyExpectedEntrySummary, type RenderAssemblyFinalEntrySummary, type RenderAssemblyFingerprintDelta, type RenderAssemblyPlanEntrySummary, type RenderAssemblyPlanSummary, type RenderAssemblyReasonDetails, type RenderInspectionSummary, type RenderOutputSideEffectReason, type RenderOutputSideEffectStatus, type RenderOutputSideEffectSummary, type RenderResult, type RenderedArtifact, SemanticGraphDiagnosticError, type ShapeStyle, type SlideFactory, type SlideFactoryInput, type SlideFactoryInputWithTemplate, type SlideOptions, type SlideStyle, type SlideTemplate, type SlideTemplateSet, type SourceContextMapper, type SourceSpan, type Spacing, type StackAlignment, type StackAxis, type StageArtifactStatus, type StageName, type StageSummary, type StrokeDashType, type StrokeLineCap, type StrokeLineJoin, StyleDiagnosticError, StyleSheet, type TemplateArea, type TemplateAreaKind, type TemplateAreaRef, type TemplateFrame, type TemplateHandle, type TextFit, type TextJsxChild, type TextRunStyle, type TextStyle, type TextTabStopAlignment, type TextTabStopAuthoring, type TextTabStopLength, Theme, type ThemeDefaults, type ThemeInput, type VerticalAlign, type ViewStyle, type WrittenOutput, formatDiagnostic, formatDiagnostics };
246
+ export { type AssetLoadResult, type AssetLoader, type AssetLoaderContext, type AssetMediaType, type AssetProbeResult, type AssetSource, type BorderStyle, type BoundSource, type ClassNameObject, type ClassNameValue, type ClassNameValueArray, type CompileResult, type CompositionContext, CompositionDiagnosticError, type ContentJsxChild, type CssAlignContent, type CssAlignItems, type CssAlignSelf, type CssAspectRatio, type CssBoxSizing, type CssDisplay, type CssFlexBasis, type CssFlexDirection, type CssFlexWrap, type CssGridAutoFlow, type CssGridLine, type CssGridPlacement, type CssGridShorthand, type CssGridTemplate, type CssGridTemplateAreas, type CssGridTemplateShorthand, type CssGridTrack, type CssJustifyContent, type CssJustifySelf, type CssLetterSpacing, type CssObjectPosition, type CssOverflow, type CssPosition, type CssVisibility, Deck, DeckDiagnosticError, type DeckJsxElement, type DeckJsxIntrinsicElements, type DeckLength, type DeckOptions, type DeckPointLength, type Diagnostic, type DiagnosticLabel, type DiagnosticSeverity, type Diagnostics, EMU_PER_INCH, type ImageCropAuthoring, type ImageCropValue, type ImageStyle, type InspectionDetailLevel, type IntrinsicDivProps, type IntrinsicImgProps, type IntrinsicPProps, type IntrinsicShapeProps, type IntrinsicTextTag, type IntrinsicVideoProps, type IntrinsicViewTag, type JsxKey, type LayoutMode, type OutputFormat, POINTS_PER_INCH, type ProjectOptions, type ProjectResult, type ProjectionFormat, type RenderAssemblyBuildSummary, type RenderAssemblyExpectedEntrySummary, type RenderAssemblyFinalEntrySummary, type RenderAssemblyFingerprintDelta, type RenderAssemblyPlanEntrySummary, type RenderAssemblyPlanSummary, type RenderAssemblyReasonDetails, type RenderInspectionSummary, type RenderOutputSideEffectReason, type RenderOutputSideEffectStatus, type RenderOutputSideEffectSummary, type RenderResult, type RenderedArtifact, SemanticGraphDiagnosticError, type ShapeStyle, type SlideFactory, type SlideFactoryInput, type SlideFactoryInputWithTemplate, type SlideOptions, type SlideStyle, type SlideTemplate, type SlideTemplateSet, type SourceContextMapper, type SourceSpan, type Spacing, type StackAlignment, type StackAxis, type StageArtifactStatus, type StageName, type StageSummary, type StrokeDashType, type StrokeLineCap, type StrokeLineJoin, StyleDiagnosticError, StyleSheet, type TemplateArea, type TemplateAreaKind, type TemplateAreaRef, type TemplateFrame, type TemplateHandle, type TextFit, type TextJsxChild, type TextRunStyle, type TextStyle, type TextTabStopAlignment, type TextTabStopAuthoring, type TextTabStopLength, Theme, type ThemeDefaults, type ThemeInput, type VerticalAlign, type VideoNodeProps, type VideoStyle, type ViewStyle, type WrittenOutput, formatDiagnostic, formatDiagnostics };