deckjsx 0.8.1 → 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-B-bVXjv-.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-CNSvvD4i.mjs";
1
+ import { t as pptx } from "./adapter-CGOiv9ip.mjs";
2
2
  export { pptx };
@@ -1,13 +1,16 @@
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
6
- type DeckLength = number | `${number}${"in" | "pt" | "px" | "%" | "em" | "rem" | "vh" | "vw" | "ch"}`;
7
- type DeckPointLength = number | `${number}${"pt" | "in" | "px" | "em" | "rem" | "vh" | "vw" | "ch"}`;
8
- type CssAspectRatio = number | `${number}/${number}` | `${number} / ${number}`;
6
+ type CssWideKeyword = "initial" | "inherit" | "unset" | "revert" | "revert-layer";
7
+ type DeckLength = number | CssWideKeyword | `${number}${"in" | "cm" | "mm" | "q" | "pt" | "pc" | "px" | "%" | "em" | "rem" | "vh" | "vw" | "vmin" | "vmax" | "ch"}`;
8
+ type DeckPointLength = number | CssWideKeyword | `${number}${"in" | "cm" | "mm" | "q" | "pt" | "pc" | "px" | "em" | "rem" | "vh" | "vw" | "vmin" | "vmax" | "ch"}`;
9
+ type CssLetterSpacing = DeckPointLength | "normal";
10
+ type CssAspectRatio = number | "auto" | `${number}` | `${number}/${number}` | `${number} / ${number}`;
9
11
  type CssBoxSizing = "border-box" | "content-box";
10
- type Spacing = DeckLength | readonly [DeckLength, DeckLength, DeckLength, DeckLength];
12
+ type CssSpacingShorthand = `${string} ${string}`;
13
+ type Spacing = DeckLength | CssSpacingShorthand | readonly [DeckLength, DeckLength, DeckLength, DeckLength];
11
14
  type StackAxis = "horizontal" | "vertical";
12
15
  type StackAlignment = "start" | "center" | "end";
13
16
  type LayoutMode = "absolute" | "stack" | "grid";
@@ -18,7 +21,7 @@ type StrokeLineJoin = "miter" | "round" | "bevel";
18
21
  type VerticalAlign = "top" | "middle" | "bottom";
19
22
  type TextFit = "none" | "shrink" | "resize";
20
23
  type CssDisplay = "flex" | "block" | "grid" | "none";
21
- type CssPosition = "absolute" | "relative";
24
+ type CssPosition = "static" | "absolute" | "relative";
22
25
  type CssVisibility = "visible" | "hidden";
23
26
  type CssOverflow = "visible" | "hidden";
24
27
  type CssFlexDirection = "row" | "column";
@@ -205,12 +208,12 @@ type TextStyle = FrameAuthorProps & BoxStyleAuthorProps & {
205
208
  lineSpacing?: number;
206
209
  lineSpacingMultiple?: number;
207
210
  lineHeight?: DeckPointLength | "normal";
208
- paragraphSpacingBefore?: number;
209
- paragraphSpacingAfter?: number;
211
+ paragraphSpacingBefore?: DeckPointLength;
212
+ paragraphSpacingAfter?: DeckPointLength;
210
213
  textIndent?: DeckPointLength;
211
214
  tabStops?: readonly TextTabStopAuthoring[];
212
- charSpacing?: number;
213
- letterSpacing?: number;
215
+ charSpacing?: DeckPointLength;
216
+ letterSpacing?: CssLetterSpacing;
214
217
  whiteSpace?: "normal" | "nowrap" | "pre" | "pre-wrap" | "pre-line";
215
218
  wordBreak?: "normal" | "break-all" | "keep-all" | "break-word";
216
219
  overflowWrap?: "normal" | "break-word" | "anywhere";
@@ -225,9 +228,10 @@ type TextStyle = FrameAuthorProps & BoxStyleAuthorProps & {
225
228
  fit?: TextFit;
226
229
  wrap?: boolean;
227
230
  };
231
+ type ImageFit = "contain" | "cover" | "stretch" | "fill";
228
232
  type ImageStyle = FrameAuthorProps & {
229
- fit?: "contain" | "cover" | "stretch";
230
- objectFit?: "contain" | "cover" | "stretch";
233
+ fit?: ImageFit;
234
+ objectFit?: ImageFit;
231
235
  objectPosition?: CssObjectPosition;
232
236
  crop?: ImageCropAuthoring;
233
237
  href?: string;
@@ -242,6 +246,20 @@ type ImageStyle = FrameAuthorProps & {
242
246
  marginBottom?: DeckLength;
243
247
  marginLeft?: DeckLength;
244
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
+ };
245
263
  type ShapeStyle = FrameAuthorProps & Omit<BoxStyleAuthorProps, "backgroundColor" | "backgroundTransparency" | "borderRadius"> & {
246
264
  background?: string;
247
265
  backgroundColor?: string;
@@ -258,13 +276,13 @@ type ShapeStyle = FrameAuthorProps & Omit<BoxStyleAuthorProps, "backgroundColor"
258
276
  radius?: DeckLength;
259
277
  };
260
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">;
261
- type KnownStyleDeclarationSource = SlideStyle | ViewStyle | TextStyle | TextRunStyle | ImageStyle | ShapeStyle;
279
+ type KnownStyleDeclarationSource = SlideStyle | ViewStyle | TextStyle | TextRunStyle | ImageStyle | VideoStyle | ShapeStyle;
262
280
  type KeysOfUnion<T> = T extends T ? keyof T : never;
263
281
  type ValueOfUnion<T, TKey extends PropertyKey> = T extends T ? TKey extends keyof T ? T[TKey] : never : never;
264
282
  type KnownStyleDeclarationKey = KeysOfUnion<KnownStyleDeclarationSource>;
265
283
  type StyleDeclarationValue = ValueOfUnion<KnownStyleDeclarationSource, KnownStyleDeclarationKey>;
266
284
  type StyleDeclaration = { readonly [Key in KnownStyleDeclarationKey]?: ValueOfUnion<KnownStyleDeclarationSource, Key> };
267
- 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;
268
286
  //#endregion
269
287
  //#region src/templates.d.ts
270
288
  declare const TEMPLATE_AREA_KINDS: readonly ["body", "date", "footer", "generic", "picture", "slideNumber", "title"];
@@ -348,6 +366,17 @@ type ImageNodeProps = {
348
366
  src?: string;
349
367
  data: string;
350
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
+ });
351
380
  type ShapeNodeProps = {
352
381
  style?: ShapeStyle;
353
382
  shape?: "rect" | "ellipse" | "line";
@@ -411,7 +440,7 @@ type GraphNodeId = Brand<string, "GraphNodeId">;
411
440
  type StyleEntityId = Brand<string, "StyleEntityId">;
412
441
  type AssetEntityId = Brand<string, "AssetEntityId">;
413
442
  type SourceIdentity = Brand<string, "SourceIdentity">;
414
- type SemanticNodeKind = "container" | "document" | "image" | "shape" | "slide" | "text" | "textRun";
443
+ type SemanticNodeKind = "container" | "document" | "image" | "shape" | "slide" | "text" | "textRun" | "video";
415
444
  type SemanticRole = {
416
445
  readonly kind: "document";
417
446
  } | {
@@ -432,6 +461,8 @@ type SemanticRole = {
432
461
  readonly kind: "image";
433
462
  } | {
434
463
  readonly kind: "shape";
464
+ } | {
465
+ readonly kind: "video";
435
466
  };
436
467
  type SourceOrigin = {
437
468
  readonly kind: "root";
@@ -491,11 +522,16 @@ type SemanticImageNode = BaseSemanticNode & {
491
522
  readonly kind: "image";
492
523
  readonly assetRef?: AssetEntityId;
493
524
  };
525
+ type SemanticVideoNode = BaseSemanticNode & {
526
+ readonly kind: "video";
527
+ readonly assetRef?: AssetEntityId;
528
+ readonly posterAssetRef?: AssetEntityId;
529
+ };
494
530
  type SemanticShapeNode = BaseSemanticNode & {
495
531
  readonly kind: "shape";
496
532
  readonly shape: "rect" | "ellipse" | "line";
497
533
  };
498
- type SemanticNode = SemanticContainerNode | SemanticDocumentNode | SemanticImageNode | SemanticShapeNode | SemanticSlideNode | SemanticTextNode | SemanticTextRunNode;
534
+ type SemanticNode = SemanticContainerNode | SemanticDocumentNode | SemanticImageNode | SemanticVideoNode | SemanticShapeNode | SemanticSlideNode | SemanticTextNode | SemanticTextRunNode;
499
535
  type StyleClassRef = {
500
536
  readonly name: string;
501
537
  readonly index: number;
@@ -510,7 +546,7 @@ type StyleEntity = {
510
546
  };
511
547
  type AssetEntity = {
512
548
  readonly id: AssetEntityId;
513
- readonly kind: "image";
549
+ readonly kind: "image" | "video";
514
550
  readonly source: {
515
551
  readonly kind: "path";
516
552
  readonly path: string;
@@ -737,6 +773,9 @@ type DeckOptions<TTemplates extends SlideTemplateSet = EmptySlideTemplateSet> =
737
773
  type ImageProps = ImageNodeProps & {
738
774
  children?: never;
739
775
  };
776
+ type VideoProps = VideoNodeProps & {
777
+ children?: never;
778
+ };
740
779
  type ShapeProps = ShapeNodeProps & {
741
780
  children?: never;
742
781
  };
@@ -753,6 +792,7 @@ type IntrinsicSpanProps = TextRunNodeProps & IntrinsicKeyProps & {
753
792
  children?: TextJsxChild;
754
793
  };
755
794
  type IntrinsicImgProps = ImageProps & IntrinsicKeyProps;
795
+ type IntrinsicVideoProps = VideoProps & IntrinsicKeyProps;
756
796
  type IntrinsicShapeProps = ShapeProps & IntrinsicKeyProps;
757
797
  type IntrinsicViewTag = "article" | "aside" | "div" | "figure" | "footer" | "header" | "main" | "nav" | "section";
758
798
  type IntrinsicTextTag = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p";
@@ -760,6 +800,7 @@ type DeckJsxIntrinsicElements = {
760
800
  img: IntrinsicImgProps;
761
801
  shape: IntrinsicShapeProps;
762
802
  span: IntrinsicSpanProps;
803
+ video: IntrinsicVideoProps;
763
804
  } & { [Tag in IntrinsicViewTag]: IntrinsicDivProps } & { [Tag in IntrinsicTextTag]: IntrinsicPProps };
764
805
  //#endregion
765
- export { Diagnostics as $, StackAlignment as $t, BaseSemanticNode as A, CssGridAutoFlow as At, SemanticRole as B, CssObjectPosition 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, DeckPointLength as Gt, SemanticSlideNode as H, CssPosition as Ht, SemanticImageNode as I, CssGridTemplateShorthand as It, StyleEntity as J, ImageStyle as Jt, SourceOrigin as K, ImageCropAuthoring 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, Spacing as Qt, SemanticNodeKind as R, CssJustifyContent as Rt, SourceContextMapper as S, CssAlignItems as St, ThemeInput as T, CssBoxSizing as Tt, SemanticTextNode as U, CssVisibility as Ut, SemanticShapeNode as V, CssOverflow as Vt, SemanticTextRunNode as W, DeckLength as Wt, Diagnostic as X, ShapeStyle as Xt, StyleEntityId as Y, LayoutMode as Yt, DiagnosticLabel as Z, SlideStyle as Zt, SlideFactory as _, TemplateFrame as _t, IntrinsicDivProps as a, StyleDeclarationValue as an, StyleDiagnosticError as at, SlideOptions as b, BorderStyle as bt, IntrinsicShapeProps as c, TextStyle as cn, ClassNameObject as ct, JsxNode as d, TextTabStopLength as dn, EmptySlideTemplateSet as dt, StackAxis as en, formatDiagnostic as et, TextJsxChild as f, VerticalAlign as fn, SlideTemplate as ft, CompositionSourceInternals as g, TemplateAreaRef as gt, CompositionSource as h, TemplateAreaKind as ht, DeckOptions as i, StyleDeclaration as in, SemanticGraphDiagnosticError as it, Brand as j, CssGridLine as jt, AssetEntityId as k, CssFlexWrap as kt, IntrinsicTextTag as l, TextTabStopAlignment as ln, ClassNameValue as lt, CompositionContext as m, TemplateArea as mt, DeckJsxElement as n, StrokeLineCap as nn, CompositionDiagnosticError as nt, IntrinsicImgProps as o, TextFit as on, JsxKey as ot, COMPOSITION_SOURCE as p, ViewStyle as pn, SlideTemplateSet as pt, StyleClassRef as q, ImageCropValue as qt, DeckJsxIntrinsicElements as r, StrokeLineJoin as rn, DeckDiagnosticError as rt, IntrinsicPProps as s, TextRunStyle as sn, SourceSpan as st, ContentJsxChild as t, StrokeDashType as tn, formatDiagnostics as tt, IntrinsicViewTag as u, TextTabStopAuthoring 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 StackAlignment, At as CssGridAutoFlow, Bt as CssObjectPosition, C as SourceContextValue, Ct as CssAlignSelf, D as StyleSheet, Dt as CssFlexBasis, E as ThemeDefaults, Et as CssDisplay, Ft as CssGridTemplateAreas, Gt as DeckPointLength, Ht as CssPosition, It as CssGridTemplateShorthand, Jt as ImageStyle, Kt as ImageCropAuthoring, Lt as CssGridTrack, Mt as CssGridPlacement, N as SemanticAuthorGraph, Nt as CssGridShorthand, Ot as CssFlexDirection, Pt as CssGridTemplate, Q as DiagnosticSeverity, Qt as Spacing, Rt as CssJustifyContent, S as SourceContextMapper, St as CssAlignItems, T as ThemeInput, Tt as CssBoxSizing, Ut as CssVisibility, Vt as CssOverflow, Wt as DeckLength, X as Diagnostic, Xt as ShapeStyle, Yt as LayoutMode, Z as DiagnosticLabel, Zt as SlideStyle, _ as SlideFactory, _t as TemplateFrame, a as IntrinsicDivProps, at as StyleDiagnosticError, b as SlideOptions, bt as BorderStyle, c as IntrinsicShapeProps, cn as TextStyle, ct as ClassNameObject, dn as TextTabStopLength, dt as EmptySlideTemplateSet, en as StackAxis, et as formatDiagnostic, f as TextJsxChild, fn as VerticalAlign, ft as SlideTemplate, g as CompositionSourceInternals, gt as TemplateAreaRef, h as CompositionSource, ht as TemplateAreaKind, i as DeckOptions, it as SemanticGraphDiagnosticError, jt as CssGridLine, kt as CssFlexWrap, l as IntrinsicTextTag, ln as TextTabStopAlignment, lt as ClassNameValue, m as CompositionContext, mt as TemplateArea, n as DeckJsxElement, nn as StrokeLineCap, nt as CompositionDiagnosticError, o as IntrinsicImgProps, on as TextFit, ot as JsxKey, p as COMPOSITION_SOURCE, pn as ViewStyle, pt as SlideTemplateSet, qt as ImageCropValue, r as DeckJsxIntrinsicElements, rn as StrokeLineJoin, rt as DeckDiagnosticError, s as IntrinsicPProps, sn as TextRunStyle, st as SourceSpan, t as ContentJsxChild, tn as StrokeDashType, tt as formatDiagnostics, u as IntrinsicViewTag, un as TextTabStopAuthoring, 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-BlOsGMTm.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-oqG9gKTq.mjs";
3
- import { n as RenderOptions, r as WriterAdapter } from "./adapter-B-bVXjv-.mjs";
4
- import { r as ResolvedStyleMap } from "./resolve-CfjiMtv5.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 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 };