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.
- package/README.md +54 -1
- package/dist/{adapter-B-bVXjv-.d.mts → adapter-C8BoybUB.d.mts} +2 -2
- package/dist/{adapter-CNSvvD4i.mjs → adapter-CGOiv9ip.mjs} +534 -63
- package/dist/adapter.d.mts +1 -1
- package/dist/adapter.mjs +1 -1
- package/dist/{index-BlOsGMTm.d.mts → index-vl2Yas8y.d.mts} +59 -18
- package/dist/index.d.mts +5 -5
- package/dist/index.mjs +1677 -199
- package/dist/inspect.d.mts +3 -3
- package/dist/jsx-dev-runtime.d.mts +3 -2
- package/dist/jsx-dev-runtime.mjs +1 -1
- package/dist/{jsx-runtime-Dd6G09P7.d.mts → jsx-runtime-B94seTQQ.d.mts} +2 -1
- package/dist/{jsx-runtime-DzJLgS1w.mjs → jsx-runtime-pAHuQYMh.mjs} +15 -2
- package/dist/jsx-runtime.d.mts +2 -2
- package/dist/jsx-runtime.mjs +1 -1
- package/dist/{model-oqG9gKTq.d.mts → model-CbLfsOqw.d.mts} +33 -8
- package/dist/node-output-L2bV2_8g.mjs +136 -0
- package/dist/{resolve-CfjiMtv5.d.mts → resolve-PWa5z4mw.d.mts} +5 -2
- package/dist/{tree-DNsco0U3.mjs → tree-DY5XQegS.mjs} +9 -1
- package/package.json +1 -1
- package/dist/node-output-BXQOTLKj.mjs +0 -28
package/dist/adapter.d.mts
CHANGED
|
@@ -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-
|
|
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-
|
|
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
|
|
7
|
-
type
|
|
8
|
-
type
|
|
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
|
|
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?:
|
|
209
|
-
paragraphSpacingAfter?:
|
|
211
|
+
paragraphSpacingBefore?: DeckPointLength;
|
|
212
|
+
paragraphSpacingAfter?: DeckPointLength;
|
|
210
213
|
textIndent?: DeckPointLength;
|
|
211
214
|
tabStops?: readonly TextTabStopAuthoring[];
|
|
212
|
-
charSpacing?:
|
|
213
|
-
letterSpacing?:
|
|
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?:
|
|
230
|
-
objectFit?:
|
|
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 {
|
|
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
|
|
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-
|
|
3
|
-
import { n as RenderOptions, r as WriterAdapter } from "./adapter-
|
|
4
|
-
import { r as ResolvedStyleMap } from "./resolve-
|
|
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 };
|