pptx-kit 0.9.0 → 0.10.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/CHANGELOG.md +26 -0
- package/dist/{api-Irqm9KrN.js → api-grq54JcQ.js} +429 -157
- package/dist/api-grq54JcQ.js.map +1 -0
- package/dist/{index-vTW90gao.d.ts → index-CXoXNgJm.d.ts} +88 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/node.d.ts +2 -2
- package/dist/node.js +2 -2
- package/package.json +1 -1
- package/dist/api-Irqm9KrN.js.map +0 -1
|
@@ -481,6 +481,13 @@ type ParagraphAlignment = 'left' | 'center' | 'right' | 'justify' | 'distribute'
|
|
|
481
481
|
interface TextFormat {
|
|
482
482
|
/** Latin font family (`Calibri`, `Arial`, ...). Sets `<a:latin>`. */
|
|
483
483
|
font?: string;
|
|
484
|
+
/**
|
|
485
|
+
* East Asian font family (`游明朝`, `メイリオ`, ...). Sets `<a:ea>`.
|
|
486
|
+
* Renderers pick this typeface for CJK glyphs independently of `font`
|
|
487
|
+
* (which only governs Latin glyphs) — set both when a run mixes Latin
|
|
488
|
+
* and CJK text and needs a consistent look across the whole run.
|
|
489
|
+
*/
|
|
490
|
+
fontEastAsian?: string;
|
|
484
491
|
/** Font size in points; fractional values allowed (`12`, `12.5`). */
|
|
485
492
|
size?: number;
|
|
486
493
|
/**
|
|
@@ -3827,6 +3834,47 @@ interface PresentationFonts {
|
|
|
3827
3834
|
* name); per-master font lookup will land if needed.
|
|
3828
3835
|
*/
|
|
3829
3836
|
declare const getPresentationFonts: (pres: PresentationData) => PresentationFonts | null;
|
|
3837
|
+
/**
|
|
3838
|
+
* Overwrites the named slots of the package's first theme's color
|
|
3839
|
+
* scheme (`<a:clrScheme>`), leaving every other slot untouched. Slot
|
|
3840
|
+
* values are `#RRGGBB` (or 3-digit `#RGB`) strings; every branded
|
|
3841
|
+
* `srgbClr`/`sysClr` slot is normalized to a plain `<a:srgbClr>` on
|
|
3842
|
+
* write, since a theme slot is never a scheme-color reference.
|
|
3843
|
+
*
|
|
3844
|
+
* As with `getPresentationTheme`, multi-master decks are branded via
|
|
3845
|
+
* their first theme part only — call this once per theme part if a
|
|
3846
|
+
* deck's masters carry different themes.
|
|
3847
|
+
*
|
|
3848
|
+
* Throws if the presentation has no theme part, or if a provided color
|
|
3849
|
+
* isn't a valid `#RRGGBB` string.
|
|
3850
|
+
*/
|
|
3851
|
+
declare const setPresentationTheme: (pres: PresentationData, theme: Partial<Omit<PresentationTheme, "name">> & {
|
|
3852
|
+
name?: string;
|
|
3853
|
+
}) => void;
|
|
3854
|
+
/**
|
|
3855
|
+
* Typeface overrides for {@link setPresentationFonts}. Unlike
|
|
3856
|
+
* `PresentationFonts` (the read side, where an empty typeface value
|
|
3857
|
+
* flattens to `null`), every field here is a plain string — the
|
|
3858
|
+
* underlying `<a:latin>` / `<a:ea>` / `<a:cs>` elements are mandatory on
|
|
3859
|
+
* a valid theme, so there's no "clear this typeface" operation.
|
|
3860
|
+
*/
|
|
3861
|
+
interface PresentationFontsInput {
|
|
3862
|
+
readonly majorLatin?: string;
|
|
3863
|
+
readonly majorEastAsian?: string;
|
|
3864
|
+
readonly majorComplexScript?: string;
|
|
3865
|
+
readonly minorLatin?: string;
|
|
3866
|
+
readonly minorEastAsian?: string;
|
|
3867
|
+
readonly minorComplexScript?: string;
|
|
3868
|
+
}
|
|
3869
|
+
/**
|
|
3870
|
+
* Overwrites the named typefaces of the package's first theme's font
|
|
3871
|
+
* scheme (major = headings, minor = body), leaving unset fields
|
|
3872
|
+
* untouched. As with `setPresentationTheme`, only the first theme part
|
|
3873
|
+
* is branded.
|
|
3874
|
+
*
|
|
3875
|
+
* Throws if the presentation has no theme part.
|
|
3876
|
+
*/
|
|
3877
|
+
declare const setPresentationFonts: (pres: PresentationData, fonts: PresentationFontsInput) => void;
|
|
3830
3878
|
//#endregion
|
|
3831
3879
|
//#region src/api/fn/shape-color.d.ts
|
|
3832
3880
|
/**
|
|
@@ -4732,6 +4780,44 @@ declare const importSlide: (targetPres: PresentationData, sourceSlide: SlideData
|
|
|
4732
4780
|
*/
|
|
4733
4781
|
declare const mergePresentations: (targetPres: PresentationData, sourcePres: PresentationData, targetLayout: SlideLayoutData | ((sourceSlide: SlideData, index: number) => SlideLayoutData)) => ReadonlyArray<SlideData>;
|
|
4734
4782
|
//#endregion
|
|
4783
|
+
//#region src/api/fn/shape-grouping.d.ts
|
|
4784
|
+
/**
|
|
4785
|
+
* Groups two or more top-level shapes into a single `<p:grpSp>`,
|
|
4786
|
+
* returning the new group as a `SlideShapeData`. The group's
|
|
4787
|
+
* slide-space bounds are the union of its members' bounds; the members
|
|
4788
|
+
* keep their own relative position/size (nothing is rescaled). The
|
|
4789
|
+
* target slide is taken from the first shape — every shape must belong
|
|
4790
|
+
* to the same slide.
|
|
4791
|
+
*
|
|
4792
|
+
* Every shape must:
|
|
4793
|
+
* - belong to the same slide as the others,
|
|
4794
|
+
* - be a direct child of the slide's shape tree (not already nested
|
|
4795
|
+
* inside another group — ungroup first, then re-group),
|
|
4796
|
+
* - have an explicit `<a:xfrm>` (placeholders that inherit position
|
|
4797
|
+
* from the layout have none and can't be grouped),
|
|
4798
|
+
* - appear at most once in `shapes` (grouping the same shape twice
|
|
4799
|
+
* would duplicate its id).
|
|
4800
|
+
*
|
|
4801
|
+
* The group replaces its members at the position of the earliest one in
|
|
4802
|
+
* z-order, so grouping doesn't change how the selection stacks against
|
|
4803
|
+
* shapes that weren't part of it.
|
|
4804
|
+
*/
|
|
4805
|
+
declare const groupShapes: (shapes: ReadonlyArray<SlideShapeData>, opts?: {
|
|
4806
|
+
name?: string;
|
|
4807
|
+
}) => SlideShapeData;
|
|
4808
|
+
/**
|
|
4809
|
+
* Reverses `groupShapes`: removes the `<p:grpSp>` and re-inserts its
|
|
4810
|
+
* immediate children as top-level shapes at the group's former position,
|
|
4811
|
+
* rescaling each child's own transform so it keeps its on-slide position
|
|
4812
|
+
* and size (matters when the group was moved/resized after creation, so
|
|
4813
|
+
* its `off`/`ext` diverged from its `chOff`/`chExt`). Returns the
|
|
4814
|
+
* children as fresh `SlideShapeData` handles, in their original order.
|
|
4815
|
+
*
|
|
4816
|
+
* Throws if `group` isn't a group shape, or its `<p:grpSpPr>` carries no
|
|
4817
|
+
* `<a:xfrm>` (malformed — every authored group has one).
|
|
4818
|
+
*/
|
|
4819
|
+
declare const ungroupShapes: (group: SlideShapeData) => ReadonlyArray<SlideShapeData>;
|
|
4820
|
+
//#endregion
|
|
4735
4821
|
//#region src/api/fn/slide-background.d.ts
|
|
4736
4822
|
/**
|
|
4737
4823
|
* Reads back the slide's current background. Returns a discriminated
|
|
@@ -5276,5 +5362,5 @@ declare const SLIDE_SIZE_16_10: SlideSize;
|
|
|
5276
5362
|
//#region src/api/index.d.ts
|
|
5277
5363
|
declare const VERSION: string;
|
|
5278
5364
|
//#endregion
|
|
5279
|
-
export { SlideBackground as $, getShapeClickAction as $a, GeomCommand as $c, getTableCellSpan as $i, getShapeZIndex as $n, getShapeEffect as $o, findShapesOutsideCanvas as $r, findSlidePlaceholderByIdx as $s, getSlideInfo as $t, getPresentationHyperlinkCountsBySlide as A, findChartByKind as Aa, getShapePlaceholderIdx as Ac, getPresentationSummary as Ai, CommentAuthor as Al, touchModified as An, getShapeTextAnchor as Ao, getShapeRunHyperlink as Ar, getShapeFillColor as As, moveSlide as At, getSlidesWithNotes as B, getShapeChartSpec as Ba, getSlideMasterUsageCounts as Bc, TableCellBorders as Bi, cm as Bl, getSlideLayoutUsageCounts as Bn, setShapeText as Bo, setShapeRunText as Br, getShapeStrokeWidth as Bs, findSlideByTitle as Bt, getAllHyperlinks as C, setTableCellTextFormat as Ca, getShapeCenter as Cc, PackagePartInfo as Ci, savePresentation as Cl, getCoreProperties as Cn, getSlideComments as Co, getParagraphLineSpacing as Cr, setShapeStrokeDash as Cs, addSlide as Ct, getDistinctHyperlinkUrls as D, setTableStyleId as Da, getShapeId as Dc, getMediaParts as Di, SlideLayoutData as Dl, incrementRevision as Dn, TextWrap as Do, getShapeParagraphElements as Dr, ShapeFill as Ds, duplicateSlideAt as Dt, getAllTables as E, setTableStyleFlags as Ea, getShapeFlip as Ec, compactPackage as Ei, SlideData as El, getPresentationModified as En, TextAutoFit as Eo, getShapeParagraphCount as Er, getShapeGradientFillEffective as Es, duplicateSlide as Et, getSlideNotesLength as F, getPresentationChartKindCounts as Fa, getShapeSize as Fc, slidesUsingMediaPart as Fi, TransitionEffect as Fl, findSlideLayoutByType as Fn, getShapeTextDirection as Fo, setParagraphBullet as Fr, getShapeStrokeColor as Fs, AllShapesEntry as Ft, removeSlideNotes as G, ChartDataLabels as Ga, pointInShape as Gc, getTableCell as Gi, addSlideLine as Gn, setShapeTextDirection as Go, setSlideTitle as Gr, findShapeInPresentation as Gs, getPresentationShapeCountsBySlide as Gt, getSlidesWithTables as H, setChartSpec as Ha, isShapeHidden as Hc, clearTableCellFill as Hi, inches as Hl, getSlideLayouts as Hn, setShapeTextAutoFit as Ho, getSlideTitle as Hr, findShapeById as Hs, findSlidesByText as Ht, getSlidesWithCharts as I, getShapeChartCategories as Ia, getShapeText as Ic, validatePresentation as Ii, TransitionOptions as Il, getSlideLayoutName as In, getShapeTextMargins as Io, setParagraphLevel as Ir, getShapeStrokeColorResolved as Is, SlideInfo as It, clearSlideTransition as J, ChartSeries as Ja, setShapeBounds as Jc, getTableCellBorders as Ji, addSlideTextBox as Jn, setShapeTextWrap as Jo, getShapeAnimation as Jr, findShapesByName as Js, getPresentationTextLengthsBySlide as Jt, replaceHyperlink as K, ChartGrouping as Ka, renameShape as Kc, getTableCellAlignment as Ki, addSlideShape as Kn, setShapeTextFormat as Ko, clearSlideAnimations as Kr, findShapesByHyperlink as Ks, getPresentationText as Kt, getSlidesWithComments as L, getShapeChartKind as La, getSlideMasterCount as Lc, IssueSeverity as Li, PresetShape as Ll, getSlideLayoutPartName as Ln, getShapeTextWrap as Lo, setParagraphLineSpacing as Lr, getShapeStrokeCompound as Ls, SlideOutlineEntry as Lt, getPresentationNotesLengthsBySlide as M, findChartsWithDataLabels as Ma, getShapePosition as Mc, listPackageParts as Mi, SlideComment as Ml, findLayoutsWithPlaceholderType as Mn, getShapeTextAutoFitParams as Mo, getShapeRunText as Mr, getShapeFillEffective as Ms, reverseSlides as Mt, getPresentationNotesText as N, findChartsWithTrendlines as Na, getShapePreset as Nc, readPackagePart as Ni, AnimationEffect as Nl, findSlideLayout as Nn, getShapeTextBodyRotationDeg as No, isParagraphBulletPicture as Nr, getShapeStroke as Ns, sortSlides as Nt, getEmptySlides as O, SlideChartData as Oa, getShapeKind as Oc, getOrphanMediaPartNames as Oi, SlideShapeData as Ol, setCoreProperties as On, appendShapeText as Oo, getShapeRunClickAction as Or, ShapeStroke as Os, importSlide as Ot, getSlideNotes as P, getPresentationChartCountsBySlide as Pa, getShapeRotation as Pc, setMediaPartBytes as Pi, AnimationOptions as Pl, findSlideLayoutByPartName as Pn, getShapeTextColumns as Po, setParagraphAlignment as Pr, getShapeStrokeCap as Ps, swapSlides as Pt, resolveDeckBodyTextColor as Q, ShapeClickAction as Qa, CustomGeometry as Qc, getTableCellPosition as Qi, copyShape as Qn, findShapesByEffect as Qo, findOverlappingShapePairs as Qr, findSlidePlaceholder as Qs, getSlideIndex as Qt, getSlidesWithHyperlinks as R, getShapeChartSeriesNames as Ra, getSlideMasterPartName as Rc, ValidationIssue as Ri, ImageFormat as Rl, getSlideLayoutPlaceholders as Rn, setShapeAlignment as Ro, setParagraphSpacing as Rr, getShapeStrokeEffective as Rs, findSlideByPartName as Rt, getAllComments as S, setTableCellTextDirection as Sa, getShapeBoundsResolved as Sc, MediaPart as Si, loadPresentation as Sl, ExtendedProperties as Sn, getSlideCommentAuthors as So, getParagraphLevel as Sr, setShapeStrokeCompound as Ss, addSectionHeaderSlide as St, getAllNotes as T, setTableRowHeight as Ta, getShapeDescription as Tc, _internalPackageOf as Ti, SlideCommentData as Tl, getPresentationCreated as Tn, TextAnchor as To, getShapeHyperlinkTooltip as Tr, getShapeGradientFill as Ts, addTitleSlide as Tt, getVisibleSlides as U, ChartAxisScaling as Ua, isShapePlaceholder as Uc, getPresentationTableCountsBySlide as Ui, mm as Ul, getUnusedSlideLayouts as Un, setShapeTextBodyRotationDeg as Uo, setSlideBody as Ur, findShapeByName as Us, getAllShapes as Ut, getSlidesWithOverlap as V, getSlideCharts as Va, getUnusedSlideMasters as Vc, TableCellParagraph as Vi, emu as Vl, getSlideLayoutUsageCountsByType as Vn, setShapeTextAnchor as Vo, getSlideBody as Vr, findEmptyPlaceholders as Vs, findSlidesByNotes as Vt, hasSlideNotes as W, ChartDataLabelPosition as Wa, isShapeTextBox as Wc, getSlideTables as Wi, pt as Wl, addSlideImage as Wn, setShapeTextColumns as Wo, setSlidePlaceholders as Wr, findShapeByText as Ws, getOutlineText as Wt, setSlideTransition as X, ChartTextStyle as Xa, setShapeHidden as Xc, getTableCellMargins as Xi, bringShapeToFront as Xn, ShapeEffectAny as Xo, ImageCrop as Xr, findShapesByText as Xs, getSlideAt as Xt, getSlideTransition as Y, ChartSpec as Ya, setShapeDescription as Yc, getTableCellFill as Yi, bringShapeForward as Yn, ShapeEffect as Yo, setShapeAnimation as Yr, findShapesByPreset as Ys, getShapeAt as Yt, getEffectiveColorMap as Z, ChartTrendline as Za, shapesOverlap as Zc, getTableCellParagraphs as Zi, clearSlideShapes as Zn, clearShapeEffects as Zo, findFlippedShapes as Zr, findShapesWithHyperlinks as Zs, getSlideCount as Zt, clearSlideHyperlinks as _, setTableCellAnchor as _a, getMaxShapeId as _c, isShapeImageGrayscale as _i, getSlideSections as _l, PresentationThumbnail as _n, getCommentText as _o, getParagraphAlignment as _r, setShapeRotation as _s, getSlideMasterShapes as _t, SlideSize as a, getTableRowHeights as aa, getSlideLayout as ac, getShapeImageBrightness as ai, LineEndSize as al, getSlideXmlString as an, clearSlideComments as ao, getParagraphPropertiesEffective as ar, clearShapeStroke as as, getSlideBackgroundPatternFill as at, findSlidesWithChartTrendlines as b, setTableCellMargins as ba, getShapeAltTitle as bc, setShapeImageCrop as bi, PresentationSize as bl, setThumbnail as bn, getPresentationCommentCountsBySlide as bo, getParagraphBulletStyle as br, setShapeStrokeArrow as bs, addBlankSlide as bt, PresentationChartEntry as c, getTableStyleId as ca, replaceTokensInSlide as cc, getShapeImageCrop as ci, ShadowOptions as cl, isSlideHidden as cn, findCommentsBefore as co, setShapeHyperlink as cr, getShapeStrokeDash as cs, getSlideLayoutBackgroundGradientFill as ct, PresentationImageEntry as d, isChartShape as da, ShapeBounds as dc, getShapeImageFormat as di, PatternFillOptions as dl, replaceTextInSlide as dn, findSlidesWithCommentsByAuthor as do, resolveDrawingColor as dr, setShapeGradientFill as ds, getSlideLayoutBackgroundShapes as dt, getTableCellText as ea, findSlidePlaceholders as ec, findSlidesByLayoutName as ei, GeomPath as el, getSlideLayoutCount as en, setShapeClickAction as eo, removeShape as er, getShapeEffects as es, SlideLayoutBackgroundShape as et, PresentationNotesEntry as f, isTableShape as fa, centerShapeOnSlide as fc, getShapeImageLinkUrl as fi, PatternPreset as fl, replaceTextInSlideNotes as fn, getCommentAuthor as fo, PresentationFonts as fr, setShapeImageFill as fs, getSlideLayoutShapes as ft, clearAllSlideNotes as g, setTableCellAlignment as ga, getGroupTransform as gc, hasShapeText as gi, SlideSection as gl, slideHasAnimations as gn, getCommentSlide as go, ShapeParagraphElement as gr, setShapePosition as gs, getSlideMasterBackgroundPatternFill as gt, clearAllHyperlinks as h, removeTableRow as ha, getGroupChildren as hc, hasShapeImage as hi, ParagraphAlignment as hl, setSlideHidden as hn, getCommentPosition as ho, getPresentationTheme as hr, setShapePatternFill as hs, getSlideMasterBackgroundImageBytes as ht, SLIDE_SIZE_4_3 as i, getTableDimensions as ia, getShapesBounds as ic, getShapeImageBiLevelThreshold as ii, LineDash as il, getSlideTextLength as in, clearAllSlideComments as io, ParagraphProperties as ir, clearShapeFill as is, getSlideBackgroundImageBytes as it, getPresentationNotesLength as j, findChartsBySeriesName as ja, getShapePlaceholderType as jc, getSlideMediaPartNames as ji, CommentPosition as jl, SlideLayoutPlaceholder as jn, getShapeTextAutoFit as jo, getShapeRunHyperlinkTooltip as jr, getShapeFillColorResolved as js, removeSlide as jt, getHiddenSlides as k, addSlideChart as ka, getShapeName as kc, getPackageSize as ki, TableCellData as kl, setExtendedProperties as kn, getShapeBodyPrEffective as ko, getShapeRunCount as kr, getShapeFill as ks, mergePresentations as kt, PresentationCommentEntry as l, insertTableColumn as la, setSlideLayout as lc, getShapeImageDuotone as li, GradientFillOptions as ll, replaceTextInNotes as ln, findCommentsByAuthor as lo, setShapeRunFormat as lr, setShapeFill as ls, getSlideLayoutBackgroundImageBytes as lt, appendSlideNotes as m, removeTableColumn as ma, findShapesInRect as mc, getShapeImagePartName as mi, BulletStyle as ml, searchSlides as mn, getCommentDate as mo, getPresentationFonts as mr, setShapeNoStroke as ms, getSlideMasterBackgroundGradientFill as mt, SLIDE_SIZE_16_10 as n, getTableCells as na, getShapeSlide as nc, findSlidesByLayoutType as ni, PathFillMode as nl, getSlidePartName as nn, setShapeImage as no, sendShapeToBack as nr, setShapeGlow as ns, getSlideBackground as nt, getSlideSize as o, getTableSize as oa, getSlideShapes as oc, getShapeImageBytes as oi, LineEndType as ol, getSlides as on, findCommentAuthorByName as oo, getShapeHyperlink as or, getShapePatternFill as os, getSlideColorMapOverride as ot, PresentationTableEntry as p, mergeTableCells as pa, findShapesAtPoint as pc, getShapeImageOpacity as pi, TextFormat as pl, replaceTokensInPresentation as pn, getCommentAuthors as po, PresentationTheme as pr, setShapeNoFill as ps, getSlideMasterBackground as pt, setSlideNotes as q, ChartKind as qa, setShapeAltTitle as qc, getTableCellAnchor as qi, addSlideTable as qn, setShapeTextMargins as qo, findShapesWithAnimation as qr, findShapesByKind as qs, getPresentationTextLength as qt, SLIDE_SIZE_16_9 as r, getTableColumnWidths as ra, getShapeXmlString as rc, getPresentationImageCountsBySlide as ri, ArrowOptions as rl, getSlideText as rn, addSlideComment as ro, setShapeZIndex as rr, setShapeShadow as rs, getSlideBackgroundGradientFill as rt, setSlideSize as s, getTableStyleFlags as sa, getSlidesWithEmptyPlaceholders as sc, getShapeImageContrast as si, GlowOptions as sl, getSlidesByLayout as sn, findCommentsAfter as so, getShapeRunFormatEffective as sr, getShapeStrokeArrow as ss, getSlideLayoutBackground as st, VERSION as t, getTableCellTextDirection as ta, getShapeIndex as tc, findSlidesByLayoutPartName as ti, GeomPoint as tl, getSlideOutline as tn, ImageFit as to, sendShapeBackward as tr, getShapeEffectsEffective as ts, clearSlideBackground as tt, PresentationHyperlinkEntry as u, insertTableRow as ua, translateShapes as uc, getShapeImageFillBytes as ui, GradientStop as ul, replaceTextInPresentation as un, findCommentsByText as uo, getShapeRunFormat as ur, setShapeFlip as us, getSlideLayoutBackgroundPatternFill as ut, findSlidesByHyperlink as v, setTableCellBorders as va, getMaxShapeIdInPresentation as vc, setShapeImageBrightness as vi, setSlideSections as vl, getThumbnail as vn, getCommentsSortedByDate as vo, getParagraphBullet as vr, setShapeSize as vs, setSlideBackground as vt, getAllImages as w, setTableColumnWidth as wa, getShapeCustomGeometry as wc, PresentationSummary as wi, PresentationData as wl, getExtendedProperties as wn, removeSlideComment as wo, getParagraphSpacing as wr, setShapeStrokeJoin as ws, addSlideAt as wt, getAllCharts as x, setTableCellText as xa, getShapeBounds as xc, setShapeImageOpacity as xi, createPresentation as xl, CoreProperties as xn, getPresentationCommenters as xo, getParagraphIndent as xr, setShapeStrokeCap as xs, addContentSlide as xt, findSlidesWithChartKind as y, setTableCellFill as ya, getShapeAdjustValues as yc, setShapeImageContrast as yi, PresentationInput as yl, removeThumbnail as yn, getPresentationCommentCountsByAuthor as yo, getParagraphBulletImageBytes as yr, setShapeStroke as ys, setSlideBackgroundImage as yt, getSlidesWithImages as z, getShapeChartSeriesValues as za, getSlideMasterPartNames as zc, TableCellBorder as zi, Emu as zl, getSlideLayoutType as zn, setShapeBullets as zo, setShapeRunHyperlink as zr, getShapeStrokeJoin as zs, findSlideByText as zt };
|
|
5280
|
-
//# sourceMappingURL=index-
|
|
5365
|
+
export { SlideBackground as $, ChartSeries as $a, setShapeBounds as $c, getTableCellBorders as $i, clearSlideShapes as $n, setShapeTextWrap as $o, getShapeAnimation as $r, findShapesByName as $s, getSlideCount as $t, getPresentationHyperlinkCountsBySlide as A, setTableRowHeight as Aa, getShapeDescription as Ac, _internalPackageOf as Ai, SlideCommentData as Al, setCoreProperties as An, TextAnchor as Ao, getShapeHyperlinkTooltip as Ar, getShapeGradientFill as As, importSlide as At, getSlidesWithNotes as B, getPresentationChartKindCounts as Ba, getShapeSize as Bc, slidesUsingMediaPart as Bi, TransitionEffect as Bl, getSlideLayoutPlaceholders as Bn, getShapeTextDirection as Bo, setParagraphBullet as Br, getShapeStrokeColor as Bs, findSlideByPartName as Bt, getAllHyperlinks as C, setTableCellBorders as Ca, getMaxShapeIdInPresentation as Cc, setShapeImageBrightness as Ci, setSlideSections as Cl, CoreProperties as Cn, getCommentsSortedByDate as Co, getParagraphBullet as Cr, setShapeSize as Cs, addContentSlide as Ct, getDistinctHyperlinkUrls as D, setTableCellTextDirection as Da, getShapeBoundsResolved as Dc, MediaPart as Di, loadPresentation as Dl, getPresentationCreated as Dn, getSlideCommentAuthors as Do, getParagraphLevel as Dr, setShapeStrokeCompound as Ds, addTitleSlide as Dt, getAllTables as E, setTableCellText as Ea, getShapeBounds as Ec, setShapeImageOpacity as Ei, createPresentation as El, getExtendedProperties as En, getPresentationCommenters as Eo, getParagraphIndent as Er, setShapeStrokeCap as Es, addSlideAt as Et, getSlideNotesLength as F, findChartByKind as Fa, getShapePlaceholderIdx as Fc, getPresentationSummary as Fi, CommentAuthor as Fl, findSlideLayout as Fn, getShapeTextAnchor as Fo, getShapeRunHyperlink as Fr, getShapeFillColor as Fs, sortSlides as Ft, removeSlideNotes as G, getShapeChartSpec as Ga, getSlideMasterUsageCounts as Gc, TableCellBorders as Gi, cm as Gl, getUnusedSlideLayouts as Gn, setShapeText as Go, setShapeRunText as Gr, getShapeStrokeWidth as Gs, getAllShapes as Gt, getSlidesWithTables as H, getShapeChartKind as Ha, getSlideMasterCount as Hc, IssueSeverity as Hi, PresetShape as Hl, getSlideLayoutUsageCounts as Hn, getShapeTextWrap as Ho, setParagraphLineSpacing as Hr, getShapeStrokeCompound as Hs, findSlideByTitle as Ht, getSlidesWithCharts as I, findChartsBySeriesName as Ia, getShapePlaceholderType as Ic, getSlideMediaPartNames as Ii, CommentPosition as Il, findSlideLayoutByPartName as In, getShapeTextAutoFit as Io, getShapeRunHyperlinkTooltip as Ir, getShapeFillColorResolved as Is, swapSlides as It, clearSlideTransition as J, ChartAxisScaling as Ja, isShapePlaceholder as Jc, getPresentationTableCountsBySlide as Ji, mm as Jl, addSlideShape as Jn, setShapeTextBodyRotationDeg as Jo, setSlideBody as Jr, findShapeByName as Js, getPresentationText as Jt, replaceHyperlink as K, getSlideCharts as Ka, getUnusedSlideMasters as Kc, TableCellParagraph as Ki, emu as Kl, addSlideImage as Kn, setShapeTextAnchor as Ko, getSlideBody as Kr, findEmptyPlaceholders as Ks, getOutlineText as Kt, getSlidesWithComments as L, findChartsWithDataLabels as La, getShapePosition as Lc, listPackageParts as Li, SlideComment as Ll, findSlideLayoutByType as Ln, getShapeTextAutoFitParams as Lo, getShapeRunText as Lr, getShapeFillEffective as Ls, AllShapesEntry as Lt, getPresentationNotesLengthsBySlide as M, setTableStyleId as Ma, getShapeId as Mc, getMediaParts as Mi, SlideLayoutData as Ml, touchModified as Mn, TextWrap as Mo, getShapeParagraphElements as Mr, ShapeFill as Ms, moveSlide as Mt, getPresentationNotesText as N, SlideChartData as Na, getShapeKind as Nc, getOrphanMediaPartNames as Ni, SlideShapeData as Nl, SlideLayoutPlaceholder as Nn, appendShapeText as No, getShapeRunClickAction as Nr, ShapeStroke as Ns, removeSlide as Nt, getEmptySlides as O, setTableCellTextFormat as Oa, getShapeCenter as Oc, PackagePartInfo as Oi, savePresentation as Ol, getPresentationModified as On, getSlideComments as Oo, getParagraphLineSpacing as Or, setShapeStrokeDash as Os, duplicateSlide as Ot, getSlideNotes as P, addSlideChart as Pa, getShapeName as Pc, getPackageSize as Pi, TableCellData as Pl, findLayoutsWithPlaceholderType as Pn, getShapeBodyPrEffective as Po, getShapeRunCount as Pr, getShapeFill as Ps, reverseSlides as Pt, resolveDeckBodyTextColor as Q, ChartKind as Qa, setShapeAltTitle as Qc, getTableCellAnchor as Qi, bringShapeToFront as Qn, setShapeTextMargins as Qo, findShapesWithAnimation as Qr, findShapesByKind as Qs, getSlideAt as Qt, getSlidesWithHyperlinks as R, findChartsWithTrendlines as Ra, getShapePreset as Rc, readPackagePart as Ri, AnimationEffect as Rl, getSlideLayoutName as Rn, getShapeTextBodyRotationDeg as Ro, isParagraphBulletPicture as Rr, getShapeStroke as Rs, SlideInfo as Rt, getAllComments as S, setTableCellAnchor as Sa, getMaxShapeId as Sc, isShapeImageGrayscale as Si, getSlideSections as Sl, setThumbnail as Sn, getCommentText as So, getParagraphAlignment as Sr, setShapeRotation as Ss, addBlankSlide as St, getAllNotes as T, setTableCellMargins as Ta, getShapeAltTitle as Tc, setShapeImageCrop as Ti, PresentationSize as Tl, getCoreProperties as Tn, getPresentationCommentCountsBySlide as To, getParagraphBulletStyle as Tr, setShapeStrokeArrow as Ts, addSlide as Tt, getVisibleSlides as U, getShapeChartSeriesNames as Ua, getSlideMasterPartName as Uc, ValidationIssue as Ui, ImageFormat as Ul, getSlideLayoutUsageCountsByType as Un, setShapeAlignment as Uo, setParagraphSpacing as Ur, getShapeStrokeEffective as Us, findSlidesByNotes as Ut, getSlidesWithOverlap as V, getShapeChartCategories as Va, getShapeText as Vc, validatePresentation as Vi, TransitionOptions as Vl, getSlideLayoutType as Vn, getShapeTextMargins as Vo, setParagraphLevel as Vr, getShapeStrokeColorResolved as Vs, findSlideByText as Vt, hasSlideNotes as W, getShapeChartSeriesValues as Wa, getSlideMasterPartNames as Wc, TableCellBorder as Wi, Emu as Wl, getSlideLayouts as Wn, setShapeBullets as Wo, setShapeRunHyperlink as Wr, getShapeStrokeJoin as Ws, findSlidesByText as Wt, setSlideTransition as X, ChartDataLabels as Xa, pointInShape as Xc, getTableCell as Xi, addSlideTextBox as Xn, setShapeTextDirection as Xo, setSlideTitle as Xr, findShapeInPresentation as Xs, getPresentationTextLengthsBySlide as Xt, getSlideTransition as Y, ChartDataLabelPosition as Ya, isShapeTextBox as Yc, getSlideTables as Yi, pt as Yl, addSlideTable as Yn, setShapeTextColumns as Yo, setSlidePlaceholders as Yr, findShapeByText as Ys, getPresentationTextLength as Yt, getEffectiveColorMap as Z, ChartGrouping as Za, renameShape as Zc, getTableCellAlignment as Zi, bringShapeForward as Zn, setShapeTextFormat as Zo, clearSlideAnimations as Zr, findShapesByHyperlink as Zs, getShapeAt as Zt, clearSlideHyperlinks as _, isTableShape as _a, centerShapeOnSlide as _c, getShapeImageLinkUrl as _i, PatternPreset as _l, setSlideHidden as _n, getCommentAuthor as _o, getPresentationFonts as _r, setShapeImageFill as _s, getSlideMasterShapes as _t, SlideSize as a, getTableCellText as aa, findSlidePlaceholders as ac, findSlidesByLayoutName as ai, GeomPath as al, getSlideText as an, setShapeClickAction as ao, setShapeZIndex as ar, getShapeEffects as as, getSlideBackgroundPatternFill as at, findSlidesWithChartTrendlines as b, removeTableRow as ba, getGroupChildren as bc, hasShapeImage as bi, ParagraphAlignment as bl, getThumbnail as bn, getCommentPosition as bo, setPresentationTheme as br, setShapePatternFill as bs, groupShapes as bt, PresentationChartEntry as c, getTableColumnWidths as ca, getShapeXmlString as cc, getPresentationImageCountsBySlide as ci, ArrowOptions as cl, getSlides as cn, addSlideComment as co, getShapeHyperlink as cr, setShapeShadow as cs, getSlideLayoutBackgroundGradientFill as ct, PresentationImageEntry as d, getTableSize as da, getSlideShapes as dc, getShapeImageBytes as di, LineEndType as dl, replaceTextInNotes as dn, findCommentAuthorByName as do, setShapeRunFormat as dr, getShapePatternFill as ds, getSlideLayoutBackgroundShapes as dt, getTableCellFill as ea, findShapesByPreset as ec, setShapeAnimation as ei, setShapeDescription as el, getSlideIndex as en, ChartSpec as eo, copyShape as er, ShapeEffect as es, SlideLayoutBackgroundShape as et, PresentationNotesEntry as f, getTableStyleFlags as fa, getSlidesWithEmptyPlaceholders as fc, getShapeImageContrast as fi, GlowOptions as fl, replaceTextInPresentation as fn, findCommentsAfter as fo, getShapeRunFormat as fr, getShapeStrokeArrow as fs, getSlideLayoutShapes as ft, clearAllSlideNotes as g, isChartShape as ga, ShapeBounds as gc, getShapeImageFormat as gi, PatternFillOptions as gl, searchSlides as gn, findSlidesWithCommentsByAuthor as go, PresentationTheme as gr, setShapeGradientFill as gs, getSlideMasterBackgroundPatternFill as gt, clearAllHyperlinks as h, insertTableRow as ha, translateShapes as hc, getShapeImageFillBytes as hi, GradientStop as hl, replaceTokensInPresentation as hn, findCommentsByText as ho, PresentationFontsInput as hr, setShapeFlip as hs, getSlideMasterBackgroundImageBytes as ht, SLIDE_SIZE_4_3 as i, getTableCellSpan as ia, findSlidePlaceholderByIdx as ic, findShapesOutsideCanvas as ii, GeomCommand as il, getSlidePartName as in, getShapeClickAction as io, sendShapeToBack as ir, getShapeEffect as is, getSlideBackgroundImageBytes as it, getPresentationNotesLength as j, setTableStyleFlags as ja, getShapeFlip as jc, compactPackage as ji, SlideData as jl, setExtendedProperties as jn, TextAutoFit as jo, getShapeParagraphCount as jr, getShapeGradientFillEffective as js, mergePresentations as jt, getHiddenSlides as k, setTableColumnWidth as ka, getShapeCustomGeometry as kc, PresentationSummary as ki, PresentationData as kl, incrementRevision as kn, removeSlideComment as ko, getParagraphSpacing as kr, setShapeStrokeJoin as ks, duplicateSlideAt as kt, PresentationCommentEntry as l, getTableDimensions as la, getShapesBounds as lc, getShapeImageBiLevelThreshold as li, LineDash as ll, getSlidesByLayout as ln, clearAllSlideComments as lo, getShapeRunFormatEffective as lr, clearShapeFill as ls, getSlideLayoutBackgroundImageBytes as lt, appendSlideNotes as m, insertTableColumn as ma, setSlideLayout as mc, getShapeImageDuotone as mi, GradientFillOptions as ml, replaceTextInSlideNotes as mn, findCommentsByAuthor as mo, PresentationFonts as mr, setShapeFill as ms, getSlideMasterBackgroundGradientFill as mt, SLIDE_SIZE_16_10 as n, getTableCellParagraphs as na, findShapesWithHyperlinks as nc, findFlippedShapes as ni, shapesOverlap as nl, getSlideLayoutCount as nn, ChartTrendline as no, removeShape as nr, clearShapeEffects as ns, getSlideBackground as nt, getSlideSize as o, getTableCellTextDirection as oa, getShapeIndex as oc, findSlidesByLayoutPartName as oi, GeomPoint as ol, getSlideTextLength as on, ImageFit as oo, ParagraphProperties as or, getShapeEffectsEffective as os, getSlideColorMapOverride as ot, PresentationTableEntry as p, getTableStyleId as pa, replaceTokensInSlide as pc, getShapeImageCrop as pi, ShadowOptions as pl, replaceTextInSlide as pn, findCommentsBefore as po, resolveDrawingColor as pr, getShapeStrokeDash as ps, getSlideMasterBackground as pt, setSlideNotes as q, setChartSpec as qa, isShapeHidden as qc, clearTableCellFill as qi, inches as ql, addSlideLine as qn, setShapeTextAutoFit as qo, getSlideTitle as qr, findShapeById as qs, getPresentationShapeCountsBySlide as qt, SLIDE_SIZE_16_9 as r, getTableCellPosition as ra, findSlidePlaceholder as rc, findOverlappingShapePairs as ri, CustomGeometry as rl, getSlideOutline as rn, ShapeClickAction as ro, sendShapeBackward as rr, findShapesByEffect as rs, getSlideBackgroundGradientFill as rt, setSlideSize as s, getTableCells as sa, getShapeSlide as sc, findSlidesByLayoutType as si, PathFillMode as sl, getSlideXmlString as sn, setShapeImage as so, getParagraphPropertiesEffective as sr, setShapeGlow as ss, getSlideLayoutBackground as st, VERSION as t, getTableCellMargins as ta, findShapesByText as tc, ImageCrop as ti, setShapeHidden as tl, getSlideInfo as tn, ChartTextStyle as to, getShapeZIndex as tr, ShapeEffectAny as ts, clearSlideBackground as tt, PresentationHyperlinkEntry as u, getTableRowHeights as ua, getSlideLayout as uc, getShapeImageBrightness as ui, LineEndSize as ul, isSlideHidden as un, clearSlideComments as uo, setShapeHyperlink as ur, clearShapeStroke as us, getSlideLayoutBackgroundPatternFill as ut, findSlidesByHyperlink as v, mergeTableCells as va, findShapesAtPoint as vc, getShapeImageOpacity as vi, TextFormat as vl, slideHasAnimations as vn, getCommentAuthors as vo, getPresentationTheme as vr, setShapeNoFill as vs, setSlideBackground as vt, getAllImages as w, setTableCellFill as wa, getShapeAdjustValues as wc, setShapeImageContrast as wi, PresentationInput as wl, ExtendedProperties as wn, getPresentationCommentCountsByAuthor as wo, getParagraphBulletImageBytes as wr, setShapeStroke as ws, addSectionHeaderSlide as wt, getAllCharts as x, setTableCellAlignment as xa, getGroupTransform as xc, hasShapeText as xi, SlideSection as xl, removeThumbnail as xn, getCommentSlide as xo, ShapeParagraphElement as xr, setShapePosition as xs, ungroupShapes as xt, findSlidesWithChartKind as y, removeTableColumn as ya, findShapesInRect as yc, getShapeImagePartName as yi, BulletStyle as yl, PresentationThumbnail as yn, getCommentDate as yo, setPresentationFonts as yr, setShapeNoStroke as ys, setSlideBackgroundImage as yt, getSlidesWithImages as z, getPresentationChartCountsBySlide as za, getShapeRotation as zc, setMediaPartBytes as zi, AnimationOptions as zl, getSlideLayoutPartName as zn, getShapeTextColumns as zo, setParagraphAlignment as zr, getShapeStrokeCap as zs, SlideOutlineEntry as zt };
|
|
5366
|
+
//# sourceMappingURL=index-CXoXNgJm.d.ts.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as SlideBackground, $a as getShapeClickAction, $c as GeomCommand, $i as getTableCellSpan, $n as getShapeZIndex, $o as getShapeEffect, $r as findShapesOutsideCanvas, $s as findSlidePlaceholderByIdx, $t as getSlideInfo, A as getPresentationHyperlinkCountsBySlide, Aa as findChartByKind, Ac as getShapePlaceholderIdx, Ai as getPresentationSummary, Al as CommentAuthor, An as touchModified, Ao as getShapeTextAnchor, Ar as getShapeRunHyperlink, As as getShapeFillColor, At as moveSlide, B as getSlidesWithNotes, Ba as getShapeChartSpec, Bc as getSlideMasterUsageCounts, Bi as TableCellBorders, Bl as cm, Bn as getSlideLayoutUsageCounts, Bo as setShapeText, Br as setShapeRunText, Bs as getShapeStrokeWidth, Bt as findSlideByTitle, C as getAllHyperlinks, Ca as setTableCellTextFormat, Cc as getShapeCenter, Ci as PackagePartInfo, Cl as savePresentation, Cn as getCoreProperties, Co as getSlideComments, Cr as getParagraphLineSpacing, Cs as setShapeStrokeDash, Ct as addSlide, D as getDistinctHyperlinkUrls, Da as setTableStyleId, Dc as getShapeId, Di as getMediaParts, Dl as SlideLayoutData, Dn as incrementRevision, Do as TextWrap, Dr as getShapeParagraphElements, Ds as ShapeFill, Dt as duplicateSlideAt, E as getAllTables, Ea as setTableStyleFlags, Ec as getShapeFlip, Ei as compactPackage, El as SlideData, En as getPresentationModified, Eo as TextAutoFit, Er as getShapeParagraphCount, Es as getShapeGradientFillEffective, Et as duplicateSlide, F as getSlideNotesLength, Fa as getPresentationChartKindCounts, Fc as getShapeSize, Fi as slidesUsingMediaPart, Fl as TransitionEffect, Fn as findSlideLayoutByType, Fo as getShapeTextDirection, Fr as setParagraphBullet, Fs as getShapeStrokeColor, Ft as AllShapesEntry, G as removeSlideNotes, Ga as ChartDataLabels, Gc as pointInShape, Gi as getTableCell, Gn as addSlideLine, Go as setShapeTextDirection, Gr as setSlideTitle, Gs as findShapeInPresentation, Gt as getPresentationShapeCountsBySlide, H as getSlidesWithTables, Ha as setChartSpec, Hc as isShapeHidden, Hi as clearTableCellFill, Hl as inches, Hn as getSlideLayouts, Ho as setShapeTextAutoFit, Hr as getSlideTitle, Hs as findShapeById, Ht as findSlidesByText, I as getSlidesWithCharts, Ia as getShapeChartCategories, Ic as getShapeText, Ii as validatePresentation, Il as TransitionOptions, In as getSlideLayoutName, Io as getShapeTextMargins, Ir as setParagraphLevel, Is as getShapeStrokeColorResolved, It as SlideInfo, J as clearSlideTransition, Ja as ChartSeries, Jc as setShapeBounds, Ji as getTableCellBorders, Jn as addSlideTextBox, Jo as setShapeTextWrap, Jr as getShapeAnimation, Js as findShapesByName, Jt as getPresentationTextLengthsBySlide, K as replaceHyperlink, Ka as ChartGrouping, Kc as renameShape, Ki as getTableCellAlignment, Kn as addSlideShape, Ko as setShapeTextFormat, Kr as clearSlideAnimations, Ks as findShapesByHyperlink, Kt as getPresentationText, L as getSlidesWithComments, La as getShapeChartKind, Lc as getSlideMasterCount, Li as IssueSeverity, Ll as PresetShape, Ln as getSlideLayoutPartName, Lo as getShapeTextWrap, Lr as setParagraphLineSpacing, Ls as getShapeStrokeCompound, Lt as SlideOutlineEntry, M as getPresentationNotesLengthsBySlide, Ma as findChartsWithDataLabels, Mc as getShapePosition, Mi as listPackageParts, Ml as SlideComment, Mn as findLayoutsWithPlaceholderType, Mo as getShapeTextAutoFitParams, Mr as getShapeRunText, Ms as getShapeFillEffective, Mt as reverseSlides, N as getPresentationNotesText, Na as findChartsWithTrendlines, Nc as getShapePreset, Ni as readPackagePart, Nl as AnimationEffect, Nn as findSlideLayout, No as getShapeTextBodyRotationDeg, Nr as isParagraphBulletPicture, Ns as getShapeStroke, Nt as sortSlides, O as getEmptySlides, Oa as SlideChartData, Oc as getShapeKind, Oi as getOrphanMediaPartNames, Ol as SlideShapeData, On as setCoreProperties, Oo as appendShapeText, Or as getShapeRunClickAction, Os as ShapeStroke, Ot as importSlide, P as getSlideNotes, Pa as getPresentationChartCountsBySlide, Pc as getShapeRotation, Pi as setMediaPartBytes, Pl as AnimationOptions, Pn as findSlideLayoutByPartName, Po as getShapeTextColumns, Pr as setParagraphAlignment, Ps as getShapeStrokeCap, Pt as swapSlides, Q as resolveDeckBodyTextColor, Qa as ShapeClickAction, Qc as CustomGeometry, Qi as getTableCellPosition, Qn as copyShape, Qo as findShapesByEffect, Qr as findOverlappingShapePairs, Qs as findSlidePlaceholder, Qt as getSlideIndex, R as getSlidesWithHyperlinks, Ra as getShapeChartSeriesNames, Rc as getSlideMasterPartName, Ri as ValidationIssue, Rl as ImageFormat, Rn as getSlideLayoutPlaceholders, Ro as setShapeAlignment, Rr as setParagraphSpacing, Rs as getShapeStrokeEffective, Rt as findSlideByPartName, S as getAllComments, Sa as setTableCellTextDirection, Sc as getShapeBoundsResolved, Si as MediaPart, Sl as loadPresentation, Sn as ExtendedProperties, So as getSlideCommentAuthors, Sr as getParagraphLevel, Ss as setShapeStrokeCompound, St as addSectionHeaderSlide, T as getAllNotes, Ta as setTableRowHeight, Tc as getShapeDescription, Ti as _internalPackageOf, Tl as SlideCommentData, Tn as getPresentationCreated, To as TextAnchor, Tr as getShapeHyperlinkTooltip, Ts as getShapeGradientFill, Tt as addTitleSlide, U as getVisibleSlides, Ua as ChartAxisScaling, Uc as isShapePlaceholder, Ui as getPresentationTableCountsBySlide, Ul as mm, Un as getUnusedSlideLayouts, Uo as setShapeTextBodyRotationDeg, Ur as setSlideBody, Us as findShapeByName, Ut as getAllShapes, V as getSlidesWithOverlap, Va as getSlideCharts, Vc as getUnusedSlideMasters, Vi as TableCellParagraph, Vl as emu, Vn as getSlideLayoutUsageCountsByType, Vo as setShapeTextAnchor, Vr as getSlideBody, Vs as findEmptyPlaceholders, Vt as findSlidesByNotes, W as hasSlideNotes, Wa as ChartDataLabelPosition, Wc as isShapeTextBox, Wi as getSlideTables, Wl as pt, Wn as addSlideImage, Wo as setShapeTextColumns, Wr as setSlidePlaceholders, Ws as findShapeByText, Wt as getOutlineText, X as setSlideTransition, Xa as ChartTextStyle, Xc as setShapeHidden, Xi as getTableCellMargins, Xn as bringShapeToFront, Xo as ShapeEffectAny, Xr as ImageCrop, Xs as findShapesByText, Xt as getSlideAt, Y as getSlideTransition, Ya as ChartSpec, Yc as setShapeDescription, Yi as getTableCellFill, Yn as bringShapeForward, Yo as ShapeEffect, Yr as setShapeAnimation, Ys as findShapesByPreset, Yt as getShapeAt, Z as getEffectiveColorMap, Za as ChartTrendline, Zc as shapesOverlap, Zi as getTableCellParagraphs, Zn as clearSlideShapes, Zo as clearShapeEffects, Zr as findFlippedShapes, Zs as findShapesWithHyperlinks, Zt as getSlideCount, _ as clearSlideHyperlinks, _a as setTableCellAnchor, _c as getMaxShapeId, _i as isShapeImageGrayscale, _l as getSlideSections, _n as PresentationThumbnail, _o as getCommentText, _r as getParagraphAlignment, _s as setShapeRotation, _t as getSlideMasterShapes, a as SlideSize, aa as getTableRowHeights, ac as getSlideLayout, ai as getShapeImageBrightness, al as LineEndSize, an as getSlideXmlString, ao as clearSlideComments, ar as getParagraphPropertiesEffective, as as clearShapeStroke, at as getSlideBackgroundPatternFill, b as findSlidesWithChartTrendlines, ba as setTableCellMargins, bc as getShapeAltTitle, bi as setShapeImageCrop, bl as PresentationSize, bn as setThumbnail, bo as getPresentationCommentCountsBySlide, br as getParagraphBulletStyle, bs as setShapeStrokeArrow, bt as addBlankSlide, c as PresentationChartEntry, ca as getTableStyleId, cc as replaceTokensInSlide, ci as getShapeImageCrop, cl as ShadowOptions, cn as isSlideHidden, co as findCommentsBefore, cr as setShapeHyperlink, cs as getShapeStrokeDash, ct as getSlideLayoutBackgroundGradientFill, d as PresentationImageEntry, da as isChartShape, dc as ShapeBounds, di as getShapeImageFormat, dl as PatternFillOptions, dn as replaceTextInSlide, do as findSlidesWithCommentsByAuthor, dr as resolveDrawingColor, ds as setShapeGradientFill, dt as getSlideLayoutBackgroundShapes, ea as getTableCellText, ec as findSlidePlaceholders, ei as findSlidesByLayoutName, el as GeomPath, en as getSlideLayoutCount, eo as setShapeClickAction, er as removeShape, es as getShapeEffects, et as SlideLayoutBackgroundShape, f as PresentationNotesEntry, fa as isTableShape, fc as centerShapeOnSlide, fi as getShapeImageLinkUrl, fl as PatternPreset, fn as replaceTextInSlideNotes, fo as getCommentAuthor, fr as PresentationFonts, fs as setShapeImageFill, ft as getSlideLayoutShapes, g as clearAllSlideNotes, ga as setTableCellAlignment, gc as getGroupTransform, gi as hasShapeText, gl as SlideSection, gn as slideHasAnimations, go as getCommentSlide, gr as ShapeParagraphElement, gs as setShapePosition, gt as getSlideMasterBackgroundPatternFill, h as clearAllHyperlinks, ha as removeTableRow, hc as getGroupChildren, hi as hasShapeImage, hl as ParagraphAlignment, hn as setSlideHidden, ho as getCommentPosition, hr as getPresentationTheme, hs as setShapePatternFill, ht as getSlideMasterBackgroundImageBytes, i as SLIDE_SIZE_4_3, ia as getTableDimensions, ic as getShapesBounds, ii as getShapeImageBiLevelThreshold, il as LineDash, in as getSlideTextLength, io as clearAllSlideComments, ir as ParagraphProperties, is as clearShapeFill, it as getSlideBackgroundImageBytes, j as getPresentationNotesLength, ja as findChartsBySeriesName, jc as getShapePlaceholderType, ji as getSlideMediaPartNames, jl as CommentPosition, jn as SlideLayoutPlaceholder, jo as getShapeTextAutoFit, jr as getShapeRunHyperlinkTooltip, js as getShapeFillColorResolved, jt as removeSlide, k as getHiddenSlides, ka as addSlideChart, kc as getShapeName, ki as getPackageSize, kl as TableCellData, kn as setExtendedProperties, ko as getShapeBodyPrEffective, kr as getShapeRunCount, ks as getShapeFill, kt as mergePresentations, l as PresentationCommentEntry, la as insertTableColumn, lc as setSlideLayout, li as getShapeImageDuotone, ll as GradientFillOptions, ln as replaceTextInNotes, lo as findCommentsByAuthor, lr as setShapeRunFormat, ls as setShapeFill, lt as getSlideLayoutBackgroundImageBytes, m as appendSlideNotes, ma as removeTableColumn, mc as findShapesInRect, mi as getShapeImagePartName, ml as BulletStyle, mn as searchSlides, mo as getCommentDate, mr as getPresentationFonts, ms as setShapeNoStroke, mt as getSlideMasterBackgroundGradientFill, n as SLIDE_SIZE_16_10, na as getTableCells, nc as getShapeSlide, ni as findSlidesByLayoutType, nl as PathFillMode, nn as getSlidePartName, no as setShapeImage, nr as sendShapeToBack, ns as setShapeGlow, nt as getSlideBackground, o as getSlideSize, oa as getTableSize, oc as getSlideShapes, oi as getShapeImageBytes, ol as LineEndType, on as getSlides, oo as findCommentAuthorByName, or as getShapeHyperlink, os as getShapePatternFill, ot as getSlideColorMapOverride, p as PresentationTableEntry, pa as mergeTableCells, pc as findShapesAtPoint, pi as getShapeImageOpacity, pl as TextFormat, pn as replaceTokensInPresentation, po as getCommentAuthors, pr as PresentationTheme, ps as setShapeNoFill, pt as getSlideMasterBackground, q as setSlideNotes, qa as ChartKind, qc as setShapeAltTitle, qi as getTableCellAnchor, qn as addSlideTable, qo as setShapeTextMargins, qr as findShapesWithAnimation, qs as findShapesByKind, qt as getPresentationTextLength, r as SLIDE_SIZE_16_9, ra as getTableColumnWidths, rc as getShapeXmlString, ri as getPresentationImageCountsBySlide, rl as ArrowOptions, rn as getSlideText, ro as addSlideComment, rr as setShapeZIndex, rs as setShapeShadow, rt as getSlideBackgroundGradientFill, s as setSlideSize, sa as getTableStyleFlags, sc as getSlidesWithEmptyPlaceholders, si as getShapeImageContrast, sl as GlowOptions, sn as getSlidesByLayout, so as findCommentsAfter, sr as getShapeRunFormatEffective, ss as getShapeStrokeArrow, st as getSlideLayoutBackground, t as VERSION, ta as getTableCellTextDirection, tc as getShapeIndex, ti as findSlidesByLayoutPartName, tl as GeomPoint, tn as getSlideOutline, to as ImageFit, tr as sendShapeBackward, ts as getShapeEffectsEffective, tt as clearSlideBackground, u as PresentationHyperlinkEntry, ua as insertTableRow, uc as translateShapes, ui as getShapeImageFillBytes, ul as GradientStop, un as replaceTextInPresentation, uo as findCommentsByText, ur as getShapeRunFormat, us as setShapeFlip, ut as getSlideLayoutBackgroundPatternFill, v as findSlidesByHyperlink, va as setTableCellBorders, vc as getMaxShapeIdInPresentation, vi as setShapeImageBrightness, vl as setSlideSections, vn as getThumbnail, vo as getCommentsSortedByDate, vr as getParagraphBullet, vs as setShapeSize, vt as setSlideBackground, w as getAllImages, wa as setTableColumnWidth, wc as getShapeCustomGeometry, wi as PresentationSummary, wl as PresentationData, wn as getExtendedProperties, wo as removeSlideComment, wr as getParagraphSpacing, ws as setShapeStrokeJoin, wt as addSlideAt, x as getAllCharts, xa as setTableCellText, xc as getShapeBounds, xi as setShapeImageOpacity, xl as createPresentation, xn as CoreProperties, xo as getPresentationCommenters, xr as getParagraphIndent, xs as setShapeStrokeCap, xt as addContentSlide, y as findSlidesWithChartKind, ya as setTableCellFill, yc as getShapeAdjustValues, yi as setShapeImageContrast, yl as PresentationInput, yn as removeThumbnail, yo as getPresentationCommentCountsByAuthor, yr as getParagraphBulletImageBytes, ys as setShapeStroke, yt as setSlideBackgroundImage, z as getSlidesWithImages, za as getShapeChartSeriesValues, zc as getSlideMasterPartNames, zi as TableCellBorder, zl as Emu, zn as getSlideLayoutType, zo as setShapeBullets, zr as setShapeRunHyperlink, zs as getShapeStrokeJoin, zt as findSlideByText } from "./index-vTW90gao.js";
|
|
2
|
-
export { type AllShapesEntry, type AnimationEffect, type AnimationOptions, type ArrowOptions, type BulletStyle, type ChartAxisScaling, type ChartDataLabelPosition, type ChartDataLabels, type ChartGrouping, type ChartKind, type ChartSeries, type ChartSpec, type ChartTextStyle, type ChartTrendline, type CommentAuthor, type CommentPosition, type CoreProperties, type CustomGeometry, type Emu, type ExtendedProperties, type GeomCommand, type GeomPath, type GeomPoint, type GlowOptions, type GradientFillOptions, type GradientStop, type ImageCrop, type ImageFit, type ImageFormat, type IssueSeverity, type LineDash, type LineEndSize, type LineEndType, type MediaPart, type PackagePartInfo, type ParagraphAlignment, type ParagraphProperties, type PathFillMode, type PatternFillOptions, type PatternPreset, type PresentationChartEntry, type PresentationCommentEntry, type PresentationData, type PresentationFonts, type PresentationHyperlinkEntry, type PresentationImageEntry, type PresentationInput, type PresentationNotesEntry, type PresentationSize, type PresentationSummary, type PresentationTableEntry, type PresentationTheme, type PresentationThumbnail, type PresetShape, SLIDE_SIZE_16_10, SLIDE_SIZE_16_9, SLIDE_SIZE_4_3, type ShadowOptions, type ShapeBounds, type ShapeClickAction, type ShapeEffect, type ShapeEffectAny, type ShapeFill, type ShapeParagraphElement, type ShapeStroke, type SlideBackground, type SlideChartData, type SlideComment, type SlideCommentData, type SlideData, type SlideInfo, type SlideLayoutBackgroundShape, type SlideLayoutData, type SlideLayoutPlaceholder, type SlideOutlineEntry, type SlideSection, type SlideShapeData, type SlideSize, type TableCellBorder, type TableCellBorders, type TableCellData, type TableCellParagraph, type TextAnchor, type TextAutoFit, type TextFormat, type TextWrap, type TransitionEffect, type TransitionOptions, VERSION, type ValidationIssue, _internalPackageOf, addBlankSlide, addContentSlide, addSectionHeaderSlide, addSlide, addSlideAt, addSlideChart, addSlideComment, addSlideImage, addSlideLine, addSlideShape, addSlideTable, addSlideTextBox, addTitleSlide, appendShapeText, appendSlideNotes, bringShapeForward, bringShapeToFront, centerShapeOnSlide, clearAllHyperlinks, clearAllSlideComments, clearAllSlideNotes, clearShapeEffects, clearShapeFill, clearShapeStroke, clearSlideAnimations, clearSlideBackground, clearSlideComments, clearSlideHyperlinks, clearSlideShapes, clearSlideTransition, clearTableCellFill, cm, compactPackage, copyShape, createPresentation, duplicateSlide, duplicateSlideAt, emu, findChartByKind, findChartsBySeriesName, findChartsWithDataLabels, findChartsWithTrendlines, findCommentAuthorByName, findCommentsAfter, findCommentsBefore, findCommentsByAuthor, findCommentsByText, findEmptyPlaceholders, findFlippedShapes, findLayoutsWithPlaceholderType, findOverlappingShapePairs, findShapeById, findShapeByName, findShapeByText, findShapeInPresentation, findShapesAtPoint, findShapesByEffect, findShapesByHyperlink, findShapesByKind, findShapesByName, findShapesByPreset, findShapesByText, findShapesInRect, findShapesOutsideCanvas, findShapesWithAnimation, findShapesWithHyperlinks, findSlideByPartName, findSlideByText, findSlideByTitle, findSlideLayout, findSlideLayoutByPartName, findSlideLayoutByType, findSlidePlaceholder, findSlidePlaceholderByIdx, findSlidePlaceholders, findSlidesByHyperlink, findSlidesByLayoutName, findSlidesByLayoutPartName, findSlidesByLayoutType, findSlidesByNotes, findSlidesByText, findSlidesWithChartKind, findSlidesWithChartTrendlines, findSlidesWithCommentsByAuthor, getAllCharts, getAllComments, getAllHyperlinks, getAllImages, getAllNotes, getAllShapes, getAllTables, getCommentAuthor, getCommentAuthors, getCommentDate, getCommentPosition, getCommentSlide, getCommentText, getCommentsSortedByDate, getCoreProperties, getDistinctHyperlinkUrls, getEffectiveColorMap, getEmptySlides, getExtendedProperties, getGroupChildren, getGroupTransform, getHiddenSlides, getMaxShapeId, getMaxShapeIdInPresentation, getMediaParts, getOrphanMediaPartNames, getOutlineText, getPackageSize, getParagraphAlignment, getParagraphBullet, getParagraphBulletImageBytes, getParagraphBulletStyle, getParagraphIndent, getParagraphLevel, getParagraphLineSpacing, getParagraphPropertiesEffective, getParagraphSpacing, getPresentationChartCountsBySlide, getPresentationChartKindCounts, getPresentationCommentCountsByAuthor, getPresentationCommentCountsBySlide, getPresentationCommenters, getPresentationCreated, getPresentationFonts, getPresentationHyperlinkCountsBySlide, getPresentationImageCountsBySlide, getPresentationModified, getPresentationNotesLength, getPresentationNotesLengthsBySlide, getPresentationNotesText, getPresentationShapeCountsBySlide, getPresentationSummary, getPresentationTableCountsBySlide, getPresentationText, getPresentationTextLength, getPresentationTextLengthsBySlide, getPresentationTheme, getShapeAdjustValues, getShapeAltTitle, getShapeAnimation, getShapeAt, getShapeBodyPrEffective, getShapeBounds, getShapeBoundsResolved, getShapeCenter, getShapeChartCategories, getShapeChartKind, getShapeChartSeriesNames, getShapeChartSeriesValues, getShapeChartSpec, getShapeClickAction, getShapeCustomGeometry, getShapeDescription, getShapeEffect, getShapeEffects, getShapeEffectsEffective, getShapeFill, getShapeFillColor, getShapeFillColorResolved, getShapeFillEffective, getShapeFlip, getShapeGradientFill, getShapeGradientFillEffective, getShapeHyperlink, getShapeHyperlinkTooltip, getShapeId, getShapeImageBiLevelThreshold, getShapeImageBrightness, getShapeImageBytes, getShapeImageContrast, getShapeImageCrop, getShapeImageDuotone, getShapeImageFillBytes, getShapeImageFormat, getShapeImageLinkUrl, getShapeImageOpacity, getShapeImagePartName, getShapeIndex, getShapeKind, getShapeName, getShapeParagraphCount, getShapeParagraphElements, getShapePatternFill, getShapePlaceholderIdx, getShapePlaceholderType, getShapePosition, getShapePreset, getShapeRotation, getShapeRunClickAction, getShapeRunCount, getShapeRunFormat, getShapeRunFormatEffective, getShapeRunHyperlink, getShapeRunHyperlinkTooltip, getShapeRunText, getShapeSize, getShapeSlide, getShapeStroke, getShapeStrokeArrow, getShapeStrokeCap, getShapeStrokeColor, getShapeStrokeColorResolved, getShapeStrokeCompound, getShapeStrokeDash, getShapeStrokeEffective, getShapeStrokeJoin, getShapeStrokeWidth, getShapeText, getShapeTextAnchor, getShapeTextAutoFit, getShapeTextAutoFitParams, getShapeTextBodyRotationDeg, getShapeTextColumns, getShapeTextDirection, getShapeTextMargins, getShapeTextWrap, getShapeXmlString, getShapeZIndex, getShapesBounds, getSlideAt, getSlideBackground, getSlideBackgroundGradientFill, getSlideBackgroundImageBytes, getSlideBackgroundPatternFill, getSlideBody, getSlideCharts, getSlideColorMapOverride, getSlideCommentAuthors, getSlideComments, getSlideCount, getSlideIndex, getSlideInfo, getSlideLayout, getSlideLayoutBackground, getSlideLayoutBackgroundGradientFill, getSlideLayoutBackgroundImageBytes, getSlideLayoutBackgroundPatternFill, getSlideLayoutBackgroundShapes, getSlideLayoutCount, getSlideLayoutName, getSlideLayoutPartName, getSlideLayoutPlaceholders, getSlideLayoutShapes, getSlideLayoutType, getSlideLayoutUsageCounts, getSlideLayoutUsageCountsByType, getSlideLayouts, getSlideMasterBackground, getSlideMasterBackgroundGradientFill, getSlideMasterBackgroundImageBytes, getSlideMasterBackgroundPatternFill, getSlideMasterCount, getSlideMasterPartName, getSlideMasterPartNames, getSlideMasterShapes, getSlideMasterUsageCounts, getSlideMediaPartNames, getSlideNotes, getSlideNotesLength, getSlideOutline, getSlidePartName, getSlideSections, getSlideShapes, getSlideSize, getSlideTables, getSlideText, getSlideTextLength, getSlideTitle, getSlideTransition, getSlideXmlString, getSlides, getSlidesByLayout, getSlidesWithCharts, getSlidesWithComments, getSlidesWithEmptyPlaceholders, getSlidesWithHyperlinks, getSlidesWithImages, getSlidesWithNotes, getSlidesWithOverlap, getSlidesWithTables, getTableCell, getTableCellAlignment, getTableCellAnchor, getTableCellBorders, getTableCellFill, getTableCellMargins, getTableCellParagraphs, getTableCellPosition, getTableCellSpan, getTableCellText, getTableCellTextDirection, getTableCells, getTableColumnWidths, getTableDimensions, getTableRowHeights, getTableSize, getTableStyleFlags, getTableStyleId, getThumbnail, getUnusedSlideLayouts, getUnusedSlideMasters, getVisibleSlides, hasShapeImage, hasShapeText, hasSlideNotes, importSlide, inches, incrementRevision, insertTableColumn, insertTableRow, isChartShape, isParagraphBulletPicture, isShapeHidden, isShapeImageGrayscale, isShapePlaceholder, isShapeTextBox, isSlideHidden, isTableShape, listPackageParts, loadPresentation, mergePresentations, mergeTableCells, mm, moveSlide, pointInShape, pt, readPackagePart, removeShape, removeSlide, removeSlideComment, removeSlideNotes, removeTableColumn, removeTableRow, removeThumbnail, renameShape, replaceHyperlink, replaceTextInNotes, replaceTextInPresentation, replaceTextInSlide, replaceTextInSlideNotes, replaceTokensInPresentation, replaceTokensInSlide, resolveDeckBodyTextColor, resolveDrawingColor, reverseSlides, savePresentation, searchSlides, sendShapeBackward, sendShapeToBack, setChartSpec, setCoreProperties, setExtendedProperties, setMediaPartBytes, setParagraphAlignment, setParagraphBullet, setParagraphLevel, setParagraphLineSpacing, setParagraphSpacing, setShapeAlignment, setShapeAltTitle, setShapeAnimation, setShapeBounds, setShapeBullets, setShapeClickAction, setShapeDescription, setShapeFill, setShapeFlip, setShapeGlow, setShapeGradientFill, setShapeHidden, setShapeHyperlink, setShapeImage, setShapeImageBrightness, setShapeImageContrast, setShapeImageCrop, setShapeImageFill, setShapeImageOpacity, setShapeNoFill, setShapeNoStroke, setShapePatternFill, setShapePosition, setShapeRotation, setShapeRunFormat, setShapeRunHyperlink, setShapeRunText, setShapeShadow, setShapeSize, setShapeStroke, setShapeStrokeArrow, setShapeStrokeCap, setShapeStrokeCompound, setShapeStrokeDash, setShapeStrokeJoin, setShapeText, setShapeTextAnchor, setShapeTextAutoFit, setShapeTextBodyRotationDeg, setShapeTextColumns, setShapeTextDirection, setShapeTextFormat, setShapeTextMargins, setShapeTextWrap, setShapeZIndex, setSlideBackground, setSlideBackgroundImage, setSlideBody, setSlideHidden, setSlideLayout, setSlideNotes, setSlidePlaceholders, setSlideSections, setSlideSize, setSlideTitle, setSlideTransition, setTableCellAlignment, setTableCellAnchor, setTableCellBorders, setTableCellFill, setTableCellMargins, setTableCellText, setTableCellTextDirection, setTableCellTextFormat, setTableColumnWidth, setTableRowHeight, setTableStyleFlags, setTableStyleId, setThumbnail, shapesOverlap, slideHasAnimations, slidesUsingMediaPart, sortSlides, swapSlides, touchModified, translateShapes, validatePresentation };
|
|
1
|
+
import { $ as SlideBackground, $a as ChartSeries, $c as setShapeBounds, $i as getTableCellBorders, $n as clearSlideShapes, $o as setShapeTextWrap, $r as getShapeAnimation, $s as findShapesByName, $t as getSlideCount, A as getPresentationHyperlinkCountsBySlide, Aa as setTableRowHeight, Ac as getShapeDescription, Ai as _internalPackageOf, Al as SlideCommentData, An as setCoreProperties, Ao as TextAnchor, Ar as getShapeHyperlinkTooltip, As as getShapeGradientFill, At as importSlide, B as getSlidesWithNotes, Ba as getPresentationChartKindCounts, Bc as getShapeSize, Bi as slidesUsingMediaPart, Bl as TransitionEffect, Bn as getSlideLayoutPlaceholders, Bo as getShapeTextDirection, Br as setParagraphBullet, Bs as getShapeStrokeColor, Bt as findSlideByPartName, C as getAllHyperlinks, Ca as setTableCellBorders, Cc as getMaxShapeIdInPresentation, Ci as setShapeImageBrightness, Cl as setSlideSections, Cn as CoreProperties, Co as getCommentsSortedByDate, Cr as getParagraphBullet, Cs as setShapeSize, Ct as addContentSlide, D as getDistinctHyperlinkUrls, Da as setTableCellTextDirection, Dc as getShapeBoundsResolved, Di as MediaPart, Dl as loadPresentation, Dn as getPresentationCreated, Do as getSlideCommentAuthors, Dr as getParagraphLevel, Ds as setShapeStrokeCompound, Dt as addTitleSlide, E as getAllTables, Ea as setTableCellText, Ec as getShapeBounds, Ei as setShapeImageOpacity, El as createPresentation, En as getExtendedProperties, Eo as getPresentationCommenters, Er as getParagraphIndent, Es as setShapeStrokeCap, Et as addSlideAt, F as getSlideNotesLength, Fa as findChartByKind, Fc as getShapePlaceholderIdx, Fi as getPresentationSummary, Fl as CommentAuthor, Fn as findSlideLayout, Fo as getShapeTextAnchor, Fr as getShapeRunHyperlink, Fs as getShapeFillColor, Ft as sortSlides, G as removeSlideNotes, Ga as getShapeChartSpec, Gc as getSlideMasterUsageCounts, Gi as TableCellBorders, Gl as cm, Gn as getUnusedSlideLayouts, Go as setShapeText, Gr as setShapeRunText, Gs as getShapeStrokeWidth, Gt as getAllShapes, H as getSlidesWithTables, Ha as getShapeChartKind, Hc as getSlideMasterCount, Hi as IssueSeverity, Hl as PresetShape, Hn as getSlideLayoutUsageCounts, Ho as getShapeTextWrap, Hr as setParagraphLineSpacing, Hs as getShapeStrokeCompound, Ht as findSlideByTitle, I as getSlidesWithCharts, Ia as findChartsBySeriesName, Ic as getShapePlaceholderType, Ii as getSlideMediaPartNames, Il as CommentPosition, In as findSlideLayoutByPartName, Io as getShapeTextAutoFit, Ir as getShapeRunHyperlinkTooltip, Is as getShapeFillColorResolved, It as swapSlides, J as clearSlideTransition, Ja as ChartAxisScaling, Jc as isShapePlaceholder, Ji as getPresentationTableCountsBySlide, Jl as mm, Jn as addSlideShape, Jo as setShapeTextBodyRotationDeg, Jr as setSlideBody, Js as findShapeByName, Jt as getPresentationText, K as replaceHyperlink, Ka as getSlideCharts, Kc as getUnusedSlideMasters, Ki as TableCellParagraph, Kl as emu, Kn as addSlideImage, Ko as setShapeTextAnchor, Kr as getSlideBody, Ks as findEmptyPlaceholders, Kt as getOutlineText, L as getSlidesWithComments, La as findChartsWithDataLabels, Lc as getShapePosition, Li as listPackageParts, Ll as SlideComment, Ln as findSlideLayoutByType, Lo as getShapeTextAutoFitParams, Lr as getShapeRunText, Ls as getShapeFillEffective, Lt as AllShapesEntry, M as getPresentationNotesLengthsBySlide, Ma as setTableStyleId, Mc as getShapeId, Mi as getMediaParts, Ml as SlideLayoutData, Mn as touchModified, Mo as TextWrap, Mr as getShapeParagraphElements, Ms as ShapeFill, Mt as moveSlide, N as getPresentationNotesText, Na as SlideChartData, Nc as getShapeKind, Ni as getOrphanMediaPartNames, Nl as SlideShapeData, Nn as SlideLayoutPlaceholder, No as appendShapeText, Nr as getShapeRunClickAction, Ns as ShapeStroke, Nt as removeSlide, O as getEmptySlides, Oa as setTableCellTextFormat, Oc as getShapeCenter, Oi as PackagePartInfo, Ol as savePresentation, On as getPresentationModified, Oo as getSlideComments, Or as getParagraphLineSpacing, Os as setShapeStrokeDash, Ot as duplicateSlide, P as getSlideNotes, Pa as addSlideChart, Pc as getShapeName, Pi as getPackageSize, Pl as TableCellData, Pn as findLayoutsWithPlaceholderType, Po as getShapeBodyPrEffective, Pr as getShapeRunCount, Ps as getShapeFill, Pt as reverseSlides, Q as resolveDeckBodyTextColor, Qa as ChartKind, Qc as setShapeAltTitle, Qi as getTableCellAnchor, Qn as bringShapeToFront, Qo as setShapeTextMargins, Qr as findShapesWithAnimation, Qs as findShapesByKind, Qt as getSlideAt, R as getSlidesWithHyperlinks, Ra as findChartsWithTrendlines, Rc as getShapePreset, Ri as readPackagePart, Rl as AnimationEffect, Rn as getSlideLayoutName, Ro as getShapeTextBodyRotationDeg, Rr as isParagraphBulletPicture, Rs as getShapeStroke, Rt as SlideInfo, S as getAllComments, Sa as setTableCellAnchor, Sc as getMaxShapeId, Si as isShapeImageGrayscale, Sl as getSlideSections, Sn as setThumbnail, So as getCommentText, Sr as getParagraphAlignment, Ss as setShapeRotation, St as addBlankSlide, T as getAllNotes, Ta as setTableCellMargins, Tc as getShapeAltTitle, Ti as setShapeImageCrop, Tl as PresentationSize, Tn as getCoreProperties, To as getPresentationCommentCountsBySlide, Tr as getParagraphBulletStyle, Ts as setShapeStrokeArrow, Tt as addSlide, U as getVisibleSlides, Ua as getShapeChartSeriesNames, Uc as getSlideMasterPartName, Ui as ValidationIssue, Ul as ImageFormat, Un as getSlideLayoutUsageCountsByType, Uo as setShapeAlignment, Ur as setParagraphSpacing, Us as getShapeStrokeEffective, Ut as findSlidesByNotes, V as getSlidesWithOverlap, Va as getShapeChartCategories, Vc as getShapeText, Vi as validatePresentation, Vl as TransitionOptions, Vn as getSlideLayoutType, Vo as getShapeTextMargins, Vr as setParagraphLevel, Vs as getShapeStrokeColorResolved, Vt as findSlideByText, W as hasSlideNotes, Wa as getShapeChartSeriesValues, Wc as getSlideMasterPartNames, Wi as TableCellBorder, Wl as Emu, Wn as getSlideLayouts, Wo as setShapeBullets, Wr as setShapeRunHyperlink, Ws as getShapeStrokeJoin, Wt as findSlidesByText, X as setSlideTransition, Xa as ChartDataLabels, Xc as pointInShape, Xi as getTableCell, Xn as addSlideTextBox, Xo as setShapeTextDirection, Xr as setSlideTitle, Xs as findShapeInPresentation, Xt as getPresentationTextLengthsBySlide, Y as getSlideTransition, Ya as ChartDataLabelPosition, Yc as isShapeTextBox, Yi as getSlideTables, Yl as pt, Yn as addSlideTable, Yo as setShapeTextColumns, Yr as setSlidePlaceholders, Ys as findShapeByText, Yt as getPresentationTextLength, Z as getEffectiveColorMap, Za as ChartGrouping, Zc as renameShape, Zi as getTableCellAlignment, Zn as bringShapeForward, Zo as setShapeTextFormat, Zr as clearSlideAnimations, Zs as findShapesByHyperlink, Zt as getShapeAt, _ as clearSlideHyperlinks, _a as isTableShape, _c as centerShapeOnSlide, _i as getShapeImageLinkUrl, _l as PatternPreset, _n as setSlideHidden, _o as getCommentAuthor, _r as getPresentationFonts, _s as setShapeImageFill, _t as getSlideMasterShapes, a as SlideSize, aa as getTableCellText, ac as findSlidePlaceholders, ai as findSlidesByLayoutName, al as GeomPath, an as getSlideText, ao as setShapeClickAction, ar as setShapeZIndex, as as getShapeEffects, at as getSlideBackgroundPatternFill, b as findSlidesWithChartTrendlines, ba as removeTableRow, bc as getGroupChildren, bi as hasShapeImage, bl as ParagraphAlignment, bn as getThumbnail, bo as getCommentPosition, br as setPresentationTheme, bs as setShapePatternFill, bt as groupShapes, c as PresentationChartEntry, ca as getTableColumnWidths, cc as getShapeXmlString, ci as getPresentationImageCountsBySlide, cl as ArrowOptions, cn as getSlides, co as addSlideComment, cr as getShapeHyperlink, cs as setShapeShadow, ct as getSlideLayoutBackgroundGradientFill, d as PresentationImageEntry, da as getTableSize, dc as getSlideShapes, di as getShapeImageBytes, dl as LineEndType, dn as replaceTextInNotes, do as findCommentAuthorByName, dr as setShapeRunFormat, ds as getShapePatternFill, dt as getSlideLayoutBackgroundShapes, ea as getTableCellFill, ec as findShapesByPreset, ei as setShapeAnimation, el as setShapeDescription, en as getSlideIndex, eo as ChartSpec, er as copyShape, es as ShapeEffect, et as SlideLayoutBackgroundShape, f as PresentationNotesEntry, fa as getTableStyleFlags, fc as getSlidesWithEmptyPlaceholders, fi as getShapeImageContrast, fl as GlowOptions, fn as replaceTextInPresentation, fo as findCommentsAfter, fr as getShapeRunFormat, fs as getShapeStrokeArrow, ft as getSlideLayoutShapes, g as clearAllSlideNotes, ga as isChartShape, gc as ShapeBounds, gi as getShapeImageFormat, gl as PatternFillOptions, gn as searchSlides, go as findSlidesWithCommentsByAuthor, gr as PresentationTheme, gs as setShapeGradientFill, gt as getSlideMasterBackgroundPatternFill, h as clearAllHyperlinks, ha as insertTableRow, hc as translateShapes, hi as getShapeImageFillBytes, hl as GradientStop, hn as replaceTokensInPresentation, ho as findCommentsByText, hr as PresentationFontsInput, hs as setShapeFlip, ht as getSlideMasterBackgroundImageBytes, i as SLIDE_SIZE_4_3, ia as getTableCellSpan, ic as findSlidePlaceholderByIdx, ii as findShapesOutsideCanvas, il as GeomCommand, in as getSlidePartName, io as getShapeClickAction, ir as sendShapeToBack, is as getShapeEffect, it as getSlideBackgroundImageBytes, j as getPresentationNotesLength, ja as setTableStyleFlags, jc as getShapeFlip, ji as compactPackage, jl as SlideData, jn as setExtendedProperties, jo as TextAutoFit, jr as getShapeParagraphCount, js as getShapeGradientFillEffective, jt as mergePresentations, k as getHiddenSlides, ka as setTableColumnWidth, kc as getShapeCustomGeometry, ki as PresentationSummary, kl as PresentationData, kn as incrementRevision, ko as removeSlideComment, kr as getParagraphSpacing, ks as setShapeStrokeJoin, kt as duplicateSlideAt, l as PresentationCommentEntry, la as getTableDimensions, lc as getShapesBounds, li as getShapeImageBiLevelThreshold, ll as LineDash, ln as getSlidesByLayout, lo as clearAllSlideComments, lr as getShapeRunFormatEffective, ls as clearShapeFill, lt as getSlideLayoutBackgroundImageBytes, m as appendSlideNotes, ma as insertTableColumn, mc as setSlideLayout, mi as getShapeImageDuotone, ml as GradientFillOptions, mn as replaceTextInSlideNotes, mo as findCommentsByAuthor, mr as PresentationFonts, ms as setShapeFill, mt as getSlideMasterBackgroundGradientFill, n as SLIDE_SIZE_16_10, na as getTableCellParagraphs, nc as findShapesWithHyperlinks, ni as findFlippedShapes, nl as shapesOverlap, nn as getSlideLayoutCount, no as ChartTrendline, nr as removeShape, ns as clearShapeEffects, nt as getSlideBackground, o as getSlideSize, oa as getTableCellTextDirection, oc as getShapeIndex, oi as findSlidesByLayoutPartName, ol as GeomPoint, on as getSlideTextLength, oo as ImageFit, or as ParagraphProperties, os as getShapeEffectsEffective, ot as getSlideColorMapOverride, p as PresentationTableEntry, pa as getTableStyleId, pc as replaceTokensInSlide, pi as getShapeImageCrop, pl as ShadowOptions, pn as replaceTextInSlide, po as findCommentsBefore, pr as resolveDrawingColor, ps as getShapeStrokeDash, pt as getSlideMasterBackground, q as setSlideNotes, qa as setChartSpec, qc as isShapeHidden, qi as clearTableCellFill, ql as inches, qn as addSlideLine, qo as setShapeTextAutoFit, qr as getSlideTitle, qs as findShapeById, qt as getPresentationShapeCountsBySlide, r as SLIDE_SIZE_16_9, ra as getTableCellPosition, rc as findSlidePlaceholder, ri as findOverlappingShapePairs, rl as CustomGeometry, rn as getSlideOutline, ro as ShapeClickAction, rr as sendShapeBackward, rs as findShapesByEffect, rt as getSlideBackgroundGradientFill, s as setSlideSize, sa as getTableCells, sc as getShapeSlide, si as findSlidesByLayoutType, sl as PathFillMode, sn as getSlideXmlString, so as setShapeImage, sr as getParagraphPropertiesEffective, ss as setShapeGlow, st as getSlideLayoutBackground, t as VERSION, ta as getTableCellMargins, tc as findShapesByText, ti as ImageCrop, tl as setShapeHidden, tn as getSlideInfo, to as ChartTextStyle, tr as getShapeZIndex, ts as ShapeEffectAny, tt as clearSlideBackground, u as PresentationHyperlinkEntry, ua as getTableRowHeights, uc as getSlideLayout, ui as getShapeImageBrightness, ul as LineEndSize, un as isSlideHidden, uo as clearSlideComments, ur as setShapeHyperlink, us as clearShapeStroke, ut as getSlideLayoutBackgroundPatternFill, v as findSlidesByHyperlink, va as mergeTableCells, vc as findShapesAtPoint, vi as getShapeImageOpacity, vl as TextFormat, vn as slideHasAnimations, vo as getCommentAuthors, vr as getPresentationTheme, vs as setShapeNoFill, vt as setSlideBackground, w as getAllImages, wa as setTableCellFill, wc as getShapeAdjustValues, wi as setShapeImageContrast, wl as PresentationInput, wn as ExtendedProperties, wo as getPresentationCommentCountsByAuthor, wr as getParagraphBulletImageBytes, ws as setShapeStroke, wt as addSectionHeaderSlide, x as getAllCharts, xa as setTableCellAlignment, xc as getGroupTransform, xi as hasShapeText, xl as SlideSection, xn as removeThumbnail, xo as getCommentSlide, xr as ShapeParagraphElement, xs as setShapePosition, xt as ungroupShapes, y as findSlidesWithChartKind, ya as removeTableColumn, yc as findShapesInRect, yi as getShapeImagePartName, yl as BulletStyle, yn as PresentationThumbnail, yo as getCommentDate, yr as setPresentationFonts, ys as setShapeNoStroke, yt as setSlideBackgroundImage, z as getSlidesWithImages, za as getPresentationChartCountsBySlide, zc as getShapeRotation, zi as setMediaPartBytes, zl as AnimationOptions, zn as getSlideLayoutPartName, zo as getShapeTextColumns, zr as setParagraphAlignment, zs as getShapeStrokeCap, zt as SlideOutlineEntry } from "./index-CXoXNgJm.js";
|
|
2
|
+
export { type AllShapesEntry, type AnimationEffect, type AnimationOptions, type ArrowOptions, type BulletStyle, type ChartAxisScaling, type ChartDataLabelPosition, type ChartDataLabels, type ChartGrouping, type ChartKind, type ChartSeries, type ChartSpec, type ChartTextStyle, type ChartTrendline, type CommentAuthor, type CommentPosition, type CoreProperties, type CustomGeometry, type Emu, type ExtendedProperties, type GeomCommand, type GeomPath, type GeomPoint, type GlowOptions, type GradientFillOptions, type GradientStop, type ImageCrop, type ImageFit, type ImageFormat, type IssueSeverity, type LineDash, type LineEndSize, type LineEndType, type MediaPart, type PackagePartInfo, type ParagraphAlignment, type ParagraphProperties, type PathFillMode, type PatternFillOptions, type PatternPreset, type PresentationChartEntry, type PresentationCommentEntry, type PresentationData, type PresentationFonts, type PresentationFontsInput, type PresentationHyperlinkEntry, type PresentationImageEntry, type PresentationInput, type PresentationNotesEntry, type PresentationSize, type PresentationSummary, type PresentationTableEntry, type PresentationTheme, type PresentationThumbnail, type PresetShape, SLIDE_SIZE_16_10, SLIDE_SIZE_16_9, SLIDE_SIZE_4_3, type ShadowOptions, type ShapeBounds, type ShapeClickAction, type ShapeEffect, type ShapeEffectAny, type ShapeFill, type ShapeParagraphElement, type ShapeStroke, type SlideBackground, type SlideChartData, type SlideComment, type SlideCommentData, type SlideData, type SlideInfo, type SlideLayoutBackgroundShape, type SlideLayoutData, type SlideLayoutPlaceholder, type SlideOutlineEntry, type SlideSection, type SlideShapeData, type SlideSize, type TableCellBorder, type TableCellBorders, type TableCellData, type TableCellParagraph, type TextAnchor, type TextAutoFit, type TextFormat, type TextWrap, type TransitionEffect, type TransitionOptions, VERSION, type ValidationIssue, _internalPackageOf, addBlankSlide, addContentSlide, addSectionHeaderSlide, addSlide, addSlideAt, addSlideChart, addSlideComment, addSlideImage, addSlideLine, addSlideShape, addSlideTable, addSlideTextBox, addTitleSlide, appendShapeText, appendSlideNotes, bringShapeForward, bringShapeToFront, centerShapeOnSlide, clearAllHyperlinks, clearAllSlideComments, clearAllSlideNotes, clearShapeEffects, clearShapeFill, clearShapeStroke, clearSlideAnimations, clearSlideBackground, clearSlideComments, clearSlideHyperlinks, clearSlideShapes, clearSlideTransition, clearTableCellFill, cm, compactPackage, copyShape, createPresentation, duplicateSlide, duplicateSlideAt, emu, findChartByKind, findChartsBySeriesName, findChartsWithDataLabels, findChartsWithTrendlines, findCommentAuthorByName, findCommentsAfter, findCommentsBefore, findCommentsByAuthor, findCommentsByText, findEmptyPlaceholders, findFlippedShapes, findLayoutsWithPlaceholderType, findOverlappingShapePairs, findShapeById, findShapeByName, findShapeByText, findShapeInPresentation, findShapesAtPoint, findShapesByEffect, findShapesByHyperlink, findShapesByKind, findShapesByName, findShapesByPreset, findShapesByText, findShapesInRect, findShapesOutsideCanvas, findShapesWithAnimation, findShapesWithHyperlinks, findSlideByPartName, findSlideByText, findSlideByTitle, findSlideLayout, findSlideLayoutByPartName, findSlideLayoutByType, findSlidePlaceholder, findSlidePlaceholderByIdx, findSlidePlaceholders, findSlidesByHyperlink, findSlidesByLayoutName, findSlidesByLayoutPartName, findSlidesByLayoutType, findSlidesByNotes, findSlidesByText, findSlidesWithChartKind, findSlidesWithChartTrendlines, findSlidesWithCommentsByAuthor, getAllCharts, getAllComments, getAllHyperlinks, getAllImages, getAllNotes, getAllShapes, getAllTables, getCommentAuthor, getCommentAuthors, getCommentDate, getCommentPosition, getCommentSlide, getCommentText, getCommentsSortedByDate, getCoreProperties, getDistinctHyperlinkUrls, getEffectiveColorMap, getEmptySlides, getExtendedProperties, getGroupChildren, getGroupTransform, getHiddenSlides, getMaxShapeId, getMaxShapeIdInPresentation, getMediaParts, getOrphanMediaPartNames, getOutlineText, getPackageSize, getParagraphAlignment, getParagraphBullet, getParagraphBulletImageBytes, getParagraphBulletStyle, getParagraphIndent, getParagraphLevel, getParagraphLineSpacing, getParagraphPropertiesEffective, getParagraphSpacing, getPresentationChartCountsBySlide, getPresentationChartKindCounts, getPresentationCommentCountsByAuthor, getPresentationCommentCountsBySlide, getPresentationCommenters, getPresentationCreated, getPresentationFonts, getPresentationHyperlinkCountsBySlide, getPresentationImageCountsBySlide, getPresentationModified, getPresentationNotesLength, getPresentationNotesLengthsBySlide, getPresentationNotesText, getPresentationShapeCountsBySlide, getPresentationSummary, getPresentationTableCountsBySlide, getPresentationText, getPresentationTextLength, getPresentationTextLengthsBySlide, getPresentationTheme, getShapeAdjustValues, getShapeAltTitle, getShapeAnimation, getShapeAt, getShapeBodyPrEffective, getShapeBounds, getShapeBoundsResolved, getShapeCenter, getShapeChartCategories, getShapeChartKind, getShapeChartSeriesNames, getShapeChartSeriesValues, getShapeChartSpec, getShapeClickAction, getShapeCustomGeometry, getShapeDescription, getShapeEffect, getShapeEffects, getShapeEffectsEffective, getShapeFill, getShapeFillColor, getShapeFillColorResolved, getShapeFillEffective, getShapeFlip, getShapeGradientFill, getShapeGradientFillEffective, getShapeHyperlink, getShapeHyperlinkTooltip, getShapeId, getShapeImageBiLevelThreshold, getShapeImageBrightness, getShapeImageBytes, getShapeImageContrast, getShapeImageCrop, getShapeImageDuotone, getShapeImageFillBytes, getShapeImageFormat, getShapeImageLinkUrl, getShapeImageOpacity, getShapeImagePartName, getShapeIndex, getShapeKind, getShapeName, getShapeParagraphCount, getShapeParagraphElements, getShapePatternFill, getShapePlaceholderIdx, getShapePlaceholderType, getShapePosition, getShapePreset, getShapeRotation, getShapeRunClickAction, getShapeRunCount, getShapeRunFormat, getShapeRunFormatEffective, getShapeRunHyperlink, getShapeRunHyperlinkTooltip, getShapeRunText, getShapeSize, getShapeSlide, getShapeStroke, getShapeStrokeArrow, getShapeStrokeCap, getShapeStrokeColor, getShapeStrokeColorResolved, getShapeStrokeCompound, getShapeStrokeDash, getShapeStrokeEffective, getShapeStrokeJoin, getShapeStrokeWidth, getShapeText, getShapeTextAnchor, getShapeTextAutoFit, getShapeTextAutoFitParams, getShapeTextBodyRotationDeg, getShapeTextColumns, getShapeTextDirection, getShapeTextMargins, getShapeTextWrap, getShapeXmlString, getShapeZIndex, getShapesBounds, getSlideAt, getSlideBackground, getSlideBackgroundGradientFill, getSlideBackgroundImageBytes, getSlideBackgroundPatternFill, getSlideBody, getSlideCharts, getSlideColorMapOverride, getSlideCommentAuthors, getSlideComments, getSlideCount, getSlideIndex, getSlideInfo, getSlideLayout, getSlideLayoutBackground, getSlideLayoutBackgroundGradientFill, getSlideLayoutBackgroundImageBytes, getSlideLayoutBackgroundPatternFill, getSlideLayoutBackgroundShapes, getSlideLayoutCount, getSlideLayoutName, getSlideLayoutPartName, getSlideLayoutPlaceholders, getSlideLayoutShapes, getSlideLayoutType, getSlideLayoutUsageCounts, getSlideLayoutUsageCountsByType, getSlideLayouts, getSlideMasterBackground, getSlideMasterBackgroundGradientFill, getSlideMasterBackgroundImageBytes, getSlideMasterBackgroundPatternFill, getSlideMasterCount, getSlideMasterPartName, getSlideMasterPartNames, getSlideMasterShapes, getSlideMasterUsageCounts, getSlideMediaPartNames, getSlideNotes, getSlideNotesLength, getSlideOutline, getSlidePartName, getSlideSections, getSlideShapes, getSlideSize, getSlideTables, getSlideText, getSlideTextLength, getSlideTitle, getSlideTransition, getSlideXmlString, getSlides, getSlidesByLayout, getSlidesWithCharts, getSlidesWithComments, getSlidesWithEmptyPlaceholders, getSlidesWithHyperlinks, getSlidesWithImages, getSlidesWithNotes, getSlidesWithOverlap, getSlidesWithTables, getTableCell, getTableCellAlignment, getTableCellAnchor, getTableCellBorders, getTableCellFill, getTableCellMargins, getTableCellParagraphs, getTableCellPosition, getTableCellSpan, getTableCellText, getTableCellTextDirection, getTableCells, getTableColumnWidths, getTableDimensions, getTableRowHeights, getTableSize, getTableStyleFlags, getTableStyleId, getThumbnail, getUnusedSlideLayouts, getUnusedSlideMasters, getVisibleSlides, groupShapes, hasShapeImage, hasShapeText, hasSlideNotes, importSlide, inches, incrementRevision, insertTableColumn, insertTableRow, isChartShape, isParagraphBulletPicture, isShapeHidden, isShapeImageGrayscale, isShapePlaceholder, isShapeTextBox, isSlideHidden, isTableShape, listPackageParts, loadPresentation, mergePresentations, mergeTableCells, mm, moveSlide, pointInShape, pt, readPackagePart, removeShape, removeSlide, removeSlideComment, removeSlideNotes, removeTableColumn, removeTableRow, removeThumbnail, renameShape, replaceHyperlink, replaceTextInNotes, replaceTextInPresentation, replaceTextInSlide, replaceTextInSlideNotes, replaceTokensInPresentation, replaceTokensInSlide, resolveDeckBodyTextColor, resolveDrawingColor, reverseSlides, savePresentation, searchSlides, sendShapeBackward, sendShapeToBack, setChartSpec, setCoreProperties, setExtendedProperties, setMediaPartBytes, setParagraphAlignment, setParagraphBullet, setParagraphLevel, setParagraphLineSpacing, setParagraphSpacing, setPresentationFonts, setPresentationTheme, setShapeAlignment, setShapeAltTitle, setShapeAnimation, setShapeBounds, setShapeBullets, setShapeClickAction, setShapeDescription, setShapeFill, setShapeFlip, setShapeGlow, setShapeGradientFill, setShapeHidden, setShapeHyperlink, setShapeImage, setShapeImageBrightness, setShapeImageContrast, setShapeImageCrop, setShapeImageFill, setShapeImageOpacity, setShapeNoFill, setShapeNoStroke, setShapePatternFill, setShapePosition, setShapeRotation, setShapeRunFormat, setShapeRunHyperlink, setShapeRunText, setShapeShadow, setShapeSize, setShapeStroke, setShapeStrokeArrow, setShapeStrokeCap, setShapeStrokeCompound, setShapeStrokeDash, setShapeStrokeJoin, setShapeText, setShapeTextAnchor, setShapeTextAutoFit, setShapeTextBodyRotationDeg, setShapeTextColumns, setShapeTextDirection, setShapeTextFormat, setShapeTextMargins, setShapeTextWrap, setShapeZIndex, setSlideBackground, setSlideBackgroundImage, setSlideBody, setSlideHidden, setSlideLayout, setSlideNotes, setSlidePlaceholders, setSlideSections, setSlideSize, setSlideTitle, setSlideTransition, setTableCellAlignment, setTableCellAnchor, setTableCellBorders, setTableCellFill, setTableCellMargins, setTableCellText, setTableCellTextDirection, setTableCellTextFormat, setTableColumnWidth, setTableRowHeight, setTableStyleFlags, setTableStyleId, setThumbnail, shapesOverlap, slideHasAnimations, slidesUsingMediaPart, sortSlides, swapSlides, touchModified, translateShapes, ungroupShapes, validatePresentation };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $ as addSlideLine, $a as getTableDimensions, $i as getAllNotes, $n as getUnusedSlideMasters, $o as findChartsBySeriesName, $r as setParagraphLineSpacing, $s as getPresentationCommenters, $t as getShapeStrokeWidth, A as getShapeAt, Aa as getPresentationSummary, Ai as hasShapeImage, An as getMaxShapeIdInPresentation, Ao as incrementRevision, Ar as setShapeStrokeJoin, As as setSlideBackground, At as setShapeTextFormat, B as getSlideXmlString, Ba as getTableCell, Bi as getSlideSize, Bn as getShapeKind, Bo as getSlideLayoutPlaceholders, Br as getParagraphSpacing, Bs as findCommentsBefore, Bt as getShapeGradientFill, C as findSlidesByText, Ca as getSlideTransition, Ci as getShapeImageCrop, Cn as translateShapes, Co as getThumbnail, Cr as setShapeRotation, Cs as getSlideLayoutBackgroundShapes, Ct as setShapeBullets, D as getPresentationText, Da as getMediaParts, Di as getShapeImageLinkUrl, Dn as getGroupChildren, Do as getExtendedProperties, Dr as setShapeStrokeCap, Ds as getSlideMasterBackgroundImageBytes, Dt as setShapeTextBodyRotationDeg, E as getPresentationShapeCountsBySlide, Ea as compactPackage, Ei as getShapeImageFormat, En as findShapesInRect, Eo as getCoreProperties, Er as setShapeStrokeArrow, Es as getSlideMasterBackgroundGradientFill, Et as setShapeTextAutoFit, F as getSlideLayoutCount, Fa as slidesUsingMediaPart, Fi as setShapeImageCrop, Fn as getShapeCenter, Fo as findSlideLayout, Fr as getParagraphBulletImageBytes, Fs as addSlideComment, Ft as getShapeEffect, G as replaceTextInPresentation, Ga as getTableCellMargins, Gi as clearSlideHyperlinks, Gn as getShapePreset, Go as getUnusedSlideLayouts, Gr as getShapeRunCount, Gs as getCommentAuthors, Gt as getShapeFillEffective, H as getSlidesByLayout, Ha as getTableCellAnchor, Hi as appendSlideNotes, Hn as getShapePlaceholderIdx, Ho as getSlideLayoutUsageCounts, Hr as getShapeParagraphCount, Hs as findCommentsByText, Ht as getShapeFill, I as getSlideOutline, Ia as validatePresentation, Ii as setShapeImageOpacity, In as getShapeCustomGeometry, Io as findSlideLayoutByPartName, Ir as getParagraphBulletStyle, Is as clearAllSlideComments, It as getShapeEffects, J as replaceTokensInPresentation, Ja as getTableCellSpan, Ji as findSlidesWithChartTrendlines, Jn as getShapeText, Jo as getShapeRunFormatEffective, Jr as getShapeRunText, Js as getCommentSlide, Jt as getShapeStrokeColor, K as replaceTextInSlide, Ka as getTableCellParagraphs, Ki as findSlidesByHyperlink, Kn as getShapeRotation, Ko as getParagraphPropertiesEffective, Kr as getShapeRunHyperlink, Ks as getCommentDate, Kt as getShapeStroke, L as getSlidePartName, La as clearTableCellFill, Li as SLIDE_SIZE_16_10, Ln as getShapeDescription, Lo as findSlideLayoutByType, Lr as getParagraphIndent, Ls as clearSlideComments, Lt as getShapeEffectsEffective, M as getSlideCount, Ma as listPackageParts, Mi as isShapeImageGrayscale, Mn as getShapeAltTitle, Mo as setExtendedProperties, Mr as resolveDrawingColor, Ms as getShapeClickAction, Mt as setShapeTextWrap, N as getSlideIndex, Na as readPackagePart, Ni as setShapeImageBrightness, Nn as getShapeBounds, No as touchModified, Nr as getParagraphAlignment, Ns as setShapeClickAction, Nt as clearShapeEffects, O as getPresentationTextLength, Oa as getOrphanMediaPartNames, Oi as getShapeImageOpacity, On as getGroupTransform, Oo as getPresentationCreated, Or as setShapeStrokeCompound, Os as getSlideMasterBackgroundPatternFill, Ot as setShapeTextColumns, P as getSlideInfo, Pa as setMediaPartBytes, Pi as setShapeImageContrast, Pn as getShapeBoundsResolved, Po as findLayoutsWithPlaceholderType, Pr as getParagraphBullet, Ps as setShapeImage, Pt as findShapesByEffect, Q as addSlideImage, Qa as getTableColumnWidths, Qi as getAllImages, Qn as getSlideMasterUsageCounts, Qo as findChartByKind, Qr as setParagraphLevel, Qs as getPresentationCommentCountsBySlide, Qt as getShapeStrokeJoin, R as getSlideText, Ra as getPresentationTableCountsBySlide, Ri as SLIDE_SIZE_16_9, Rn as getShapeFlip, Ro as getSlideLayoutName, Rr as getParagraphLevel, Rs as findCommentAuthorByName, Rt as setShapeGlow, S as findSlidesByNotes, Sa as clearSlideTransition, Si as getShapeImageContrast, Sn as setSlideLayout, So as setTableStyleId, Sr as setShapePosition, Ss as getSlideLayoutBackgroundPatternFill, St as setShapeAlignment, T as getOutlineText, Ta as _internalPackageOf, Ti as getShapeImageFillBytes, Tn as findShapesAtPoint, To as setThumbnail, Tr as setShapeStroke, Ts as getSlideMasterBackground, Tt as setShapeTextAnchor, U as isSlideHidden, Ua as getTableCellBorders, Ui as clearAllHyperlinks, Un as getShapePlaceholderType, Uo as getSlideLayoutUsageCountsByType, Ur as getShapeParagraphElements, Us as findSlidesWithCommentsByAuthor, Ut as getShapeFillColor, V as getSlides, Va as getTableCellAlignment, Vi as setSlideSize, Vn as getShapeName, Vo as getSlideLayoutType, Vr as getShapeHyperlinkTooltip, Vs as findCommentsByAuthor, Vt as getShapeGradientFillEffective, W as replaceTextInNotes, Wa as getTableCellFill, Wi as clearAllSlideNotes, Wn as getShapePosition, Wo as getSlideLayouts, Wr as getShapeRunClickAction, Ws as getCommentAuthor, Wt as getShapeFillColorResolved, X as setSlideHidden, Xa as getTableCellTextDirection, Xi as getAllComments, Xn as getSlideMasterPartName, Xo as setShapeRunFormat, Xr as setParagraphAlignment, Xs as getCommentsSortedByDate, Xt as getShapeStrokeCompound, Y as searchSlides, Ya as getTableCellText, Yi as getAllCharts, Yn as getSlideMasterCount, Yo as setShapeHyperlink, Yr as isParagraphBulletPicture, Ys as getCommentText, Yt as getShapeStrokeColorResolved, Z as slideHasAnimations, Za as getTableCells, Zi as getAllHyperlinks, Zn as getSlideMasterPartNames, Zo as addSlideChart, Zr as setParagraphBullet, Zs as getPresentationCommentCountsByAuthor, Zt as getShapeStrokeEffective, _ as getSlideSections, _a as getVisibleSlides, _i as findSlidesByLayoutType, _n as getShapesBounds, _o as setTableCellTextDirection, _r as setShapeGradientFill, _s as getSlideBackgroundPatternFill, _t as getShapeTextBodyRotationDeg, a as addSlide, aa as getPresentationNotesLength, ac as createPresentation, ai as setSlideBody, an as findShapesByHyperlink, ao as insertTableRow, ar as setShapeAltTitle, as as getShapeChartKind, at as clearSlideShapes, b as findSlideByText, ba as replaceHyperlink, bi as getShapeImageBrightness, bn as getSlidesWithEmptyPlaceholders, bo as setTableRowHeight, br as setShapeNoStroke, bs as getSlideLayoutBackgroundGradientFill, bt as getShapeTextMargins, c as duplicateSlide, ca as getSlideNotes, cc as cm, ci as clearSlideAnimations, cn as findShapesByPreset, co as mergeTableCells, cr as setShapeHidden, cs as getShapeChartSpec, ct as removeShape, d as mergePresentations, da as getSlidesWithComments, dc as mm, di as setShapeAnimation, dn as findSlidePlaceholder, do as setTableCellAlignment, dr as clearShapeStroke, ds as getEffectiveColorMap, dt as setShapeZIndex, ea as getAllTables, ec as getSlideCommentAuthors, ei as setParagraphSpacing, en as findEmptyPlaceholders, eo as getTableRowHeights, er as isShapeHidden, es as findChartsWithDataLabels, et as addSlideShape, f as moveSlide, fa as getSlidesWithHyperlinks, fc as pt, fi as findFlippedShapes, fn as findSlidePlaceholderByIdx, fo as setTableCellAnchor, fr as getShapePatternFill, fs as resolveDeckBodyTextColor, ft as appendShapeText, g as swapSlides, ga as getSlidesWithTables, gi as findSlidesByLayoutPartName, gn as getShapeXmlString, go as setTableCellText, gr as setShapeFlip, gs as getSlideBackgroundImageBytes, gt as getShapeTextAutoFitParams, h as sortSlides, ha as getSlidesWithOverlap, hi as findSlidesByLayoutName, hn as getShapeSlide, ho as setTableCellMargins, hr as setShapeFill, hs as getSlideBackgroundGradientFill, ht as getShapeTextAutoFit, i as addSectionHeaderSlide, ia as getPresentationHyperlinkCountsBySlide, ic as getPresentationTheme, ii as getSlideTitle, in as findShapeInPresentation, io as insertTableColumn, ir as renameShape, is as getShapeChartCategories, it as bringShapeToFront, j as getSlideAt, ja as getSlideMediaPartNames, ji as hasShapeText, jn as getShapeAdjustValues, jo as setCoreProperties, jr as getShapeRunFormat, js as setSlideBackgroundImage, jt as setShapeTextMargins, k as getPresentationTextLengthsBySlide, ka as getPackageSize, ki as getShapeImagePartName, kn as getMaxShapeId, ko as getPresentationModified, kr as setShapeStrokeDash, ks as getSlideMasterShapes, kt as setShapeTextDirection, l as duplicateSlideAt, la as getSlideNotesLength, lc as emu, li as findShapesWithAnimation, ln as findShapesByText, lo as removeTableColumn, lr as shapesOverlap, ls as getSlideCharts, lt as sendShapeBackward, m as reverseSlides, ma as getSlidesWithNotes, mi as findShapesOutsideCanvas, mn as getShapeIndex, mo as setTableCellFill, mr as getShapeStrokeDash, ms as getSlideBackground, mt as getShapeTextAnchor, n as addBlankSlide, na as getEmptySlides, nc as removeSlideComment, ni as setShapeRunText, nn as findShapeByName, no as getTableStyleFlags, nr as isShapeTextBox, ns as getPresentationChartCountsBySlide, nt as addSlideTextBox, o as addSlideAt, oa as getPresentationNotesLengthsBySlide, oc as loadPresentation, oi as setSlidePlaceholders, on as findShapesByKind, oo as isChartShape, or as setShapeBounds, os as getShapeChartSeriesNames, ot as copyShape, p as removeSlide, pa as getSlidesWithImages, pi as findOverlappingShapePairs, pn as findSlidePlaceholders, po as setTableCellBorders, pr as getShapeStrokeArrow, ps as clearSlideBackground, pt as getShapeBodyPrEffective, q as replaceTextInSlideNotes, qa as getTableCellPosition, qi as findSlidesWithChartKind, qn as getShapeSize, qo as getShapeHyperlink, qr as getShapeRunHyperlinkTooltip, qs as getCommentPosition, qt as getShapeStrokeCap, r as addContentSlide, ra as getHiddenSlides, rc as getPresentationFonts, ri as getSlideBody, rn as findShapeByText, ro as getTableStyleId, rr as pointInShape, rs as getPresentationChartKindCounts, rt as bringShapeForward, s as addTitleSlide, sa as getPresentationNotesText, sc as savePresentation, si as setSlideTitle, sn as findShapesByName, so as isTableShape, sr as setShapeDescription, ss as getShapeChartSeriesValues, st as getShapeZIndex, t as VERSION, ta as getDistinctHyperlinkUrls, tc as getSlideComments, ti as setShapeRunHyperlink, tn as findShapeById, to as getTableSize, tr as isShapePlaceholder, ts as findChartsWithTrendlines, tt as addSlideTable, u as importSlide, ua as getSlidesWithCharts, uc as inches, ui as getShapeAnimation, un as findShapesWithHyperlinks, uo as removeTableRow, ur as clearShapeFill, us as setChartSpec, ut as sendShapeToBack, v as setSlideSections, va as hasSlideNotes, vi as getPresentationImageCountsBySlide, vn as getSlideLayout, vo as setTableCellTextFormat, vr as setShapeImageFill, vs as getSlideColorMapOverride, vt as getShapeTextColumns, w as getAllShapes, wa as setSlideTransition, wi as getShapeImageDuotone, wn as centerShapeOnSlide, wo as removeThumbnail, wr as setShapeSize, ws as getSlideLayoutShapes, wt as setShapeText, x as findSlideByTitle, xa as setSlideNotes, xi as getShapeImageBytes, xn as replaceTokensInSlide, xo as setTableStyleFlags, xr as setShapePatternFill, xs as getSlideLayoutBackgroundImageBytes, xt as getShapeTextWrap, y as findSlideByPartName, ya as removeSlideNotes, yi as getShapeImageBiLevelThreshold, yn as getSlideShapes, yo as setTableColumnWidth, yr as setShapeNoFill, ys as getSlideLayoutBackground, yt as getShapeTextDirection, z as getSlideTextLength, za as getSlideTables, zi as SLIDE_SIZE_4_3, zn as getShapeId, zo as getSlideLayoutPartName, zr as getParagraphLineSpacing, zs as findCommentsAfter, zt as setShapeShadow } from "./api-Irqm9KrN.js";
|
|
2
|
-
export { SLIDE_SIZE_16_10, SLIDE_SIZE_16_9, SLIDE_SIZE_4_3, VERSION, _internalPackageOf, addBlankSlide, addContentSlide, addSectionHeaderSlide, addSlide, addSlideAt, addSlideChart, addSlideComment, addSlideImage, addSlideLine, addSlideShape, addSlideTable, addSlideTextBox, addTitleSlide, appendShapeText, appendSlideNotes, bringShapeForward, bringShapeToFront, centerShapeOnSlide, clearAllHyperlinks, clearAllSlideComments, clearAllSlideNotes, clearShapeEffects, clearShapeFill, clearShapeStroke, clearSlideAnimations, clearSlideBackground, clearSlideComments, clearSlideHyperlinks, clearSlideShapes, clearSlideTransition, clearTableCellFill, cm, compactPackage, copyShape, createPresentation, duplicateSlide, duplicateSlideAt, emu, findChartByKind, findChartsBySeriesName, findChartsWithDataLabels, findChartsWithTrendlines, findCommentAuthorByName, findCommentsAfter, findCommentsBefore, findCommentsByAuthor, findCommentsByText, findEmptyPlaceholders, findFlippedShapes, findLayoutsWithPlaceholderType, findOverlappingShapePairs, findShapeById, findShapeByName, findShapeByText, findShapeInPresentation, findShapesAtPoint, findShapesByEffect, findShapesByHyperlink, findShapesByKind, findShapesByName, findShapesByPreset, findShapesByText, findShapesInRect, findShapesOutsideCanvas, findShapesWithAnimation, findShapesWithHyperlinks, findSlideByPartName, findSlideByText, findSlideByTitle, findSlideLayout, findSlideLayoutByPartName, findSlideLayoutByType, findSlidePlaceholder, findSlidePlaceholderByIdx, findSlidePlaceholders, findSlidesByHyperlink, findSlidesByLayoutName, findSlidesByLayoutPartName, findSlidesByLayoutType, findSlidesByNotes, findSlidesByText, findSlidesWithChartKind, findSlidesWithChartTrendlines, findSlidesWithCommentsByAuthor, getAllCharts, getAllComments, getAllHyperlinks, getAllImages, getAllNotes, getAllShapes, getAllTables, getCommentAuthor, getCommentAuthors, getCommentDate, getCommentPosition, getCommentSlide, getCommentText, getCommentsSortedByDate, getCoreProperties, getDistinctHyperlinkUrls, getEffectiveColorMap, getEmptySlides, getExtendedProperties, getGroupChildren, getGroupTransform, getHiddenSlides, getMaxShapeId, getMaxShapeIdInPresentation, getMediaParts, getOrphanMediaPartNames, getOutlineText, getPackageSize, getParagraphAlignment, getParagraphBullet, getParagraphBulletImageBytes, getParagraphBulletStyle, getParagraphIndent, getParagraphLevel, getParagraphLineSpacing, getParagraphPropertiesEffective, getParagraphSpacing, getPresentationChartCountsBySlide, getPresentationChartKindCounts, getPresentationCommentCountsByAuthor, getPresentationCommentCountsBySlide, getPresentationCommenters, getPresentationCreated, getPresentationFonts, getPresentationHyperlinkCountsBySlide, getPresentationImageCountsBySlide, getPresentationModified, getPresentationNotesLength, getPresentationNotesLengthsBySlide, getPresentationNotesText, getPresentationShapeCountsBySlide, getPresentationSummary, getPresentationTableCountsBySlide, getPresentationText, getPresentationTextLength, getPresentationTextLengthsBySlide, getPresentationTheme, getShapeAdjustValues, getShapeAltTitle, getShapeAnimation, getShapeAt, getShapeBodyPrEffective, getShapeBounds, getShapeBoundsResolved, getShapeCenter, getShapeChartCategories, getShapeChartKind, getShapeChartSeriesNames, getShapeChartSeriesValues, getShapeChartSpec, getShapeClickAction, getShapeCustomGeometry, getShapeDescription, getShapeEffect, getShapeEffects, getShapeEffectsEffective, getShapeFill, getShapeFillColor, getShapeFillColorResolved, getShapeFillEffective, getShapeFlip, getShapeGradientFill, getShapeGradientFillEffective, getShapeHyperlink, getShapeHyperlinkTooltip, getShapeId, getShapeImageBiLevelThreshold, getShapeImageBrightness, getShapeImageBytes, getShapeImageContrast, getShapeImageCrop, getShapeImageDuotone, getShapeImageFillBytes, getShapeImageFormat, getShapeImageLinkUrl, getShapeImageOpacity, getShapeImagePartName, getShapeIndex, getShapeKind, getShapeName, getShapeParagraphCount, getShapeParagraphElements, getShapePatternFill, getShapePlaceholderIdx, getShapePlaceholderType, getShapePosition, getShapePreset, getShapeRotation, getShapeRunClickAction, getShapeRunCount, getShapeRunFormat, getShapeRunFormatEffective, getShapeRunHyperlink, getShapeRunHyperlinkTooltip, getShapeRunText, getShapeSize, getShapeSlide, getShapeStroke, getShapeStrokeArrow, getShapeStrokeCap, getShapeStrokeColor, getShapeStrokeColorResolved, getShapeStrokeCompound, getShapeStrokeDash, getShapeStrokeEffective, getShapeStrokeJoin, getShapeStrokeWidth, getShapeText, getShapeTextAnchor, getShapeTextAutoFit, getShapeTextAutoFitParams, getShapeTextBodyRotationDeg, getShapeTextColumns, getShapeTextDirection, getShapeTextMargins, getShapeTextWrap, getShapeXmlString, getShapeZIndex, getShapesBounds, getSlideAt, getSlideBackground, getSlideBackgroundGradientFill, getSlideBackgroundImageBytes, getSlideBackgroundPatternFill, getSlideBody, getSlideCharts, getSlideColorMapOverride, getSlideCommentAuthors, getSlideComments, getSlideCount, getSlideIndex, getSlideInfo, getSlideLayout, getSlideLayoutBackground, getSlideLayoutBackgroundGradientFill, getSlideLayoutBackgroundImageBytes, getSlideLayoutBackgroundPatternFill, getSlideLayoutBackgroundShapes, getSlideLayoutCount, getSlideLayoutName, getSlideLayoutPartName, getSlideLayoutPlaceholders, getSlideLayoutShapes, getSlideLayoutType, getSlideLayoutUsageCounts, getSlideLayoutUsageCountsByType, getSlideLayouts, getSlideMasterBackground, getSlideMasterBackgroundGradientFill, getSlideMasterBackgroundImageBytes, getSlideMasterBackgroundPatternFill, getSlideMasterCount, getSlideMasterPartName, getSlideMasterPartNames, getSlideMasterShapes, getSlideMasterUsageCounts, getSlideMediaPartNames, getSlideNotes, getSlideNotesLength, getSlideOutline, getSlidePartName, getSlideSections, getSlideShapes, getSlideSize, getSlideTables, getSlideText, getSlideTextLength, getSlideTitle, getSlideTransition, getSlideXmlString, getSlides, getSlidesByLayout, getSlidesWithCharts, getSlidesWithComments, getSlidesWithEmptyPlaceholders, getSlidesWithHyperlinks, getSlidesWithImages, getSlidesWithNotes, getSlidesWithOverlap, getSlidesWithTables, getTableCell, getTableCellAlignment, getTableCellAnchor, getTableCellBorders, getTableCellFill, getTableCellMargins, getTableCellParagraphs, getTableCellPosition, getTableCellSpan, getTableCellText, getTableCellTextDirection, getTableCells, getTableColumnWidths, getTableDimensions, getTableRowHeights, getTableSize, getTableStyleFlags, getTableStyleId, getThumbnail, getUnusedSlideLayouts, getUnusedSlideMasters, getVisibleSlides, hasShapeImage, hasShapeText, hasSlideNotes, importSlide, inches, incrementRevision, insertTableColumn, insertTableRow, isChartShape, isParagraphBulletPicture, isShapeHidden, isShapeImageGrayscale, isShapePlaceholder, isShapeTextBox, isSlideHidden, isTableShape, listPackageParts, loadPresentation, mergePresentations, mergeTableCells, mm, moveSlide, pointInShape, pt, readPackagePart, removeShape, removeSlide, removeSlideComment, removeSlideNotes, removeTableColumn, removeTableRow, removeThumbnail, renameShape, replaceHyperlink, replaceTextInNotes, replaceTextInPresentation, replaceTextInSlide, replaceTextInSlideNotes, replaceTokensInPresentation, replaceTokensInSlide, resolveDeckBodyTextColor, resolveDrawingColor, reverseSlides, savePresentation, searchSlides, sendShapeBackward, sendShapeToBack, setChartSpec, setCoreProperties, setExtendedProperties, setMediaPartBytes, setParagraphAlignment, setParagraphBullet, setParagraphLevel, setParagraphLineSpacing, setParagraphSpacing, setShapeAlignment, setShapeAltTitle, setShapeAnimation, setShapeBounds, setShapeBullets, setShapeClickAction, setShapeDescription, setShapeFill, setShapeFlip, setShapeGlow, setShapeGradientFill, setShapeHidden, setShapeHyperlink, setShapeImage, setShapeImageBrightness, setShapeImageContrast, setShapeImageCrop, setShapeImageFill, setShapeImageOpacity, setShapeNoFill, setShapeNoStroke, setShapePatternFill, setShapePosition, setShapeRotation, setShapeRunFormat, setShapeRunHyperlink, setShapeRunText, setShapeShadow, setShapeSize, setShapeStroke, setShapeStrokeArrow, setShapeStrokeCap, setShapeStrokeCompound, setShapeStrokeDash, setShapeStrokeJoin, setShapeText, setShapeTextAnchor, setShapeTextAutoFit, setShapeTextBodyRotationDeg, setShapeTextColumns, setShapeTextDirection, setShapeTextFormat, setShapeTextMargins, setShapeTextWrap, setShapeZIndex, setSlideBackground, setSlideBackgroundImage, setSlideBody, setSlideHidden, setSlideLayout, setSlideNotes, setSlidePlaceholders, setSlideSections, setSlideSize, setSlideTitle, setSlideTransition, setTableCellAlignment, setTableCellAnchor, setTableCellBorders, setTableCellFill, setTableCellMargins, setTableCellText, setTableCellTextDirection, setTableCellTextFormat, setTableColumnWidth, setTableRowHeight, setTableStyleFlags, setTableStyleId, setThumbnail, shapesOverlap, slideHasAnimations, slidesUsingMediaPart, sortSlides, swapSlides, touchModified, translateShapes, validatePresentation };
|
|
1
|
+
import { $ as slideHasAnimations, $a as getTableCells, $i as getAllHyperlinks, $n as getSlideMasterPartNames, $o as addSlideChart, $r as setParagraphBullet, $s as getPresentationCommentCountsByAuthor, $t as getShapeStrokeEffective, A as getPresentationTextLength, Aa as getOrphanMediaPartNames, Ai as getShapeImageOpacity, An as getGroupTransform, Ao as getPresentationCreated, Ar as setShapeStrokeCompound, As as getSlideMasterBackgroundPatternFill, At as setShapeTextColumns, B as getSlideText, Ba as getPresentationTableCountsBySlide, Bi as SLIDE_SIZE_16_9, Bn as getShapeFlip, Bo as getSlideLayoutName, Br as getParagraphLevel, Bs as findCommentAuthorByName, Bt as setShapeGlow, C as findSlideByTitle, Ca as setSlideNotes, Ci as getShapeImageBytes, Cn as replaceTokensInSlide, Co as setTableStyleFlags, Cr as setShapePatternFill, Cs as getSlideLayoutBackgroundImageBytes, Ct as getShapeTextWrap, D as getOutlineText, Da as _internalPackageOf, Di as getShapeImageFillBytes, Dn as findShapesAtPoint, Do as setThumbnail, Dr as setShapeStroke, Ds as getSlideMasterBackground, Dt as setShapeTextAnchor, E as getAllShapes, Ea as setSlideTransition, Ei as getShapeImageDuotone, En as centerShapeOnSlide, Eo as removeThumbnail, Er as setShapeSize, Es as getSlideLayoutShapes, Et as setShapeText, F as getSlideIndex, Fa as readPackagePart, Fi as setShapeImageBrightness, Fn as getShapeBounds, Fo as touchModified, Fr as getParagraphAlignment, Fs as setShapeClickAction, Ft as clearShapeEffects, G as isSlideHidden, Ga as getTableCellBorders, Gi as clearAllHyperlinks, Gn as getShapePlaceholderType, Go as getSlideLayoutUsageCountsByType, Gr as getShapeParagraphElements, Gs as findSlidesWithCommentsByAuthor, Gt as getShapeFillColor, H as getSlideXmlString, Ha as getTableCell, Hi as getSlideSize, Hn as getShapeKind, Ho as getSlideLayoutPlaceholders, Hr as getParagraphSpacing, Hs as findCommentsBefore, Ht as getShapeGradientFill, I as getSlideInfo, Ia as setMediaPartBytes, Ii as setShapeImageContrast, In as getShapeBoundsResolved, Io as findLayoutsWithPlaceholderType, Ir as getParagraphBullet, Is as setShapeImage, It as findShapesByEffect, J as replaceTextInSlide, Ja as getTableCellParagraphs, Ji as findSlidesByHyperlink, Jn as getShapeRotation, Jo as getParagraphPropertiesEffective, Jr as getShapeRunHyperlink, Js as getCommentDate, Jt as getShapeStroke, K as replaceTextInNotes, Ka as getTableCellFill, Ki as clearAllSlideNotes, Kn as getShapePosition, Ko as getSlideLayouts, Kr as getShapeRunClickAction, Ks as getCommentAuthor, Kt as getShapeFillColorResolved, L as getSlideLayoutCount, La as slidesUsingMediaPart, Li as setShapeImageCrop, Ln as getShapeCenter, Lo as findSlideLayout, Lr as getParagraphBulletImageBytes, Ls as addSlideComment, Lt as getShapeEffect, M as getShapeAt, Ma as getPresentationSummary, Mi as hasShapeImage, Mn as getMaxShapeIdInPresentation, Mo as incrementRevision, Mr as setShapeStrokeJoin, Ms as setSlideBackground, Mt as setShapeTextFormat, N as getSlideAt, Na as getSlideMediaPartNames, Ni as hasShapeText, Nn as getShapeAdjustValues, No as setCoreProperties, Nr as getShapeRunFormat, Ns as setSlideBackgroundImage, Nt as setShapeTextMargins, O as getPresentationShapeCountsBySlide, Oa as compactPackage, Oi as getShapeImageFormat, On as findShapesInRect, Oo as getCoreProperties, Or as setShapeStrokeArrow, Os as getSlideMasterBackgroundGradientFill, Ot as setShapeTextAutoFit, P as getSlideCount, Pa as listPackageParts, Pi as isShapeImageGrayscale, Pn as getShapeAltTitle, Po as setExtendedProperties, Pr as resolveDrawingColor, Ps as getShapeClickAction, Pt as setShapeTextWrap, Q as setSlideHidden, Qa as getTableCellTextDirection, Qi as getAllComments, Qn as getSlideMasterPartName, Qo as setShapeRunFormat, Qr as setParagraphAlignment, Qs as getCommentsSortedByDate, Qt as getShapeStrokeCompound, R as getSlideOutline, Ra as validatePresentation, Ri as setShapeImageOpacity, Rn as getShapeCustomGeometry, Ro as findSlideLayoutByPartName, Rr as getParagraphBulletStyle, Rs as clearAllSlideComments, Rt as getShapeEffects, S as findSlideByText, Sa as replaceHyperlink, Si as getShapeImageBrightness, Sn as getSlidesWithEmptyPlaceholders, So as setTableRowHeight, Sr as setShapeNoStroke, Ss as getSlideLayoutBackgroundGradientFill, St as getShapeTextMargins, T as findSlidesByText, Ta as getSlideTransition, Ti as getShapeImageCrop, Tn as translateShapes, To as getThumbnail, Tr as setShapeRotation, Ts as getSlideLayoutBackgroundShapes, Tt as setShapeBullets, U as getSlides, Ua as getTableCellAlignment, Ui as setSlideSize, Un as getShapeName, Uo as getSlideLayoutType, Ur as getShapeHyperlinkTooltip, Us as findCommentsByAuthor, Ut as getShapeGradientFillEffective, V as getSlideTextLength, Va as getSlideTables, Vi as SLIDE_SIZE_4_3, Vn as getShapeId, Vo as getSlideLayoutPartName, Vr as getParagraphLineSpacing, Vs as findCommentsAfter, Vt as setShapeShadow, W as getSlidesByLayout, Wa as getTableCellAnchor, Wi as appendSlideNotes, Wn as getShapePlaceholderIdx, Wo as getSlideLayoutUsageCounts, Wr as getShapeParagraphCount, Ws as findCommentsByText, Wt as getShapeFill, X as replaceTokensInPresentation, Xa as getTableCellSpan, Xi as findSlidesWithChartTrendlines, Xn as getShapeText, Xo as getShapeRunFormatEffective, Xr as getShapeRunText, Xs as getCommentSlide, Xt as getShapeStrokeColor, Y as replaceTextInSlideNotes, Ya as getTableCellPosition, Yi as findSlidesWithChartKind, Yn as getShapeSize, Yo as getShapeHyperlink, Yr as getShapeRunHyperlinkTooltip, Ys as getCommentPosition, Yt as getShapeStrokeCap, Z as searchSlides, Za as getTableCellText, Zi as getAllCharts, Zn as getSlideMasterCount, Zo as setShapeHyperlink, Zr as isParagraphBulletPicture, Zs as getCommentText, Zt as getShapeStrokeColorResolved, _ as sortSlides, _a as getSlidesWithOverlap, _i as findSlidesByLayoutName, _n as getShapeSlide, _o as setTableCellMargins, _r as setShapeFill, _s as getSlideBackgroundGradientFill, _t as getShapeTextAutoFit, a as addContentSlide, aa as getHiddenSlides, ac as getPresentationFonts, ai as getSlideBody, an as findShapeByText, ao as getTableStyleId, ar as pointInShape, as as getPresentationChartKindCounts, at as bringShapeForward, b as setSlideSections, ba as hasSlideNotes, bi as getPresentationImageCountsBySlide, bn as getSlideLayout, bo as setTableCellTextFormat, br as setShapeImageFill, bs as getSlideColorMapOverride, bt as getShapeTextColumns, c as addSlideAt, ca as getPresentationNotesLengthsBySlide, cc as setPresentationTheme, ci as setSlidePlaceholders, cn as findShapesByKind, co as isChartShape, cr as setShapeBounds, cs as getShapeChartSeriesNames, ct as copyShape, d as duplicateSlideAt, da as getSlideNotesLength, dc as savePresentation, di as findShapesWithAnimation, dn as findShapesByText, do as removeTableColumn, dr as shapesOverlap, ds as getSlideCharts, dt as sendShapeBackward, ea as getAllImages, ec as getPresentationCommentCountsBySlide, ei as setParagraphLevel, en as getShapeStrokeJoin, eo as getTableColumnWidths, er as getSlideMasterUsageCounts, es as findChartByKind, et as addSlideImage, f as importSlide, fa as getSlidesWithCharts, fc as cm, fi as getShapeAnimation, fn as findShapesWithHyperlinks, fo as removeTableRow, fr as clearShapeFill, fs as setChartSpec, ft as sendShapeToBack, g as reverseSlides, ga as getSlidesWithNotes, gc as pt, gi as findShapesOutsideCanvas, gn as getShapeIndex, go as setTableCellFill, gr as getShapeStrokeDash, gs as getSlideBackground, gt as getShapeTextAnchor, h as removeSlide, ha as getSlidesWithImages, hc as mm, hi as findOverlappingShapePairs, hn as findSlidePlaceholders, ho as setTableCellBorders, hr as getShapeStrokeArrow, hs as clearSlideBackground, ht as getShapeBodyPrEffective, i as addBlankSlide, ia as getEmptySlides, ic as removeSlideComment, ii as setShapeRunText, in as findShapeByName, io as getTableStyleFlags, ir as isShapeTextBox, is as getPresentationChartCountsBySlide, it as addSlideTextBox, j as getPresentationTextLengthsBySlide, ja as getPackageSize, ji as getShapeImagePartName, jn as getMaxShapeId, jo as getPresentationModified, jr as setShapeStrokeDash, js as getSlideMasterShapes, jt as setShapeTextDirection, k as getPresentationText, ka as getMediaParts, ki as getShapeImageLinkUrl, kn as getGroupChildren, ko as getExtendedProperties, kr as setShapeStrokeCap, ks as getSlideMasterBackgroundImageBytes, kt as setShapeTextBodyRotationDeg, l as addTitleSlide, la as getPresentationNotesText, lc as createPresentation, li as setSlideTitle, ln as findShapesByName, lo as isTableShape, lr as setShapeDescription, ls as getShapeChartSeriesValues, lt as getShapeZIndex, m as moveSlide, ma as getSlidesWithHyperlinks, mc as inches, mi as findFlippedShapes, mn as findSlidePlaceholderByIdx, mo as setTableCellAnchor, mr as getShapePatternFill, ms as resolveDeckBodyTextColor, mt as appendShapeText, n as groupShapes, na as getAllTables, nc as getSlideCommentAuthors, ni as setParagraphSpacing, nn as findEmptyPlaceholders, no as getTableRowHeights, nr as isShapeHidden, ns as findChartsWithDataLabels, nt as addSlideShape, o as addSectionHeaderSlide, oa as getPresentationHyperlinkCountsBySlide, oc as getPresentationTheme, oi as getSlideTitle, on as findShapeInPresentation, oo as insertTableColumn, or as renameShape, os as getShapeChartCategories, ot as bringShapeToFront, p as mergePresentations, pa as getSlidesWithComments, pc as emu, pi as setShapeAnimation, pn as findSlidePlaceholder, po as setTableCellAlignment, pr as clearShapeStroke, ps as getEffectiveColorMap, pt as setShapeZIndex, q as replaceTextInPresentation, qa as getTableCellMargins, qi as clearSlideHyperlinks, qn as getShapePreset, qo as getUnusedSlideLayouts, qr as getShapeRunCount, qs as getCommentAuthors, qt as getShapeFillEffective, r as ungroupShapes, ra as getDistinctHyperlinkUrls, rc as getSlideComments, ri as setShapeRunHyperlink, rn as findShapeById, ro as getTableSize, rr as isShapePlaceholder, rs as findChartsWithTrendlines, rt as addSlideTable, s as addSlide, sa as getPresentationNotesLength, sc as setPresentationFonts, si as setSlideBody, sn as findShapesByHyperlink, so as insertTableRow, sr as setShapeAltTitle, ss as getShapeChartKind, st as clearSlideShapes, t as VERSION, ta as getAllNotes, tc as getPresentationCommenters, ti as setParagraphLineSpacing, tn as getShapeStrokeWidth, to as getTableDimensions, tr as getUnusedSlideMasters, ts as findChartsBySeriesName, tt as addSlideLine, u as duplicateSlide, ua as getSlideNotes, uc as loadPresentation, ui as clearSlideAnimations, un as findShapesByPreset, uo as mergeTableCells, ur as setShapeHidden, us as getShapeChartSpec, ut as removeShape, v as swapSlides, va as getSlidesWithTables, vi as findSlidesByLayoutPartName, vn as getShapeXmlString, vo as setTableCellText, vr as setShapeFlip, vs as getSlideBackgroundImageBytes, vt as getShapeTextAutoFitParams, w as findSlidesByNotes, wa as clearSlideTransition, wi as getShapeImageContrast, wn as setSlideLayout, wo as setTableStyleId, wr as setShapePosition, ws as getSlideLayoutBackgroundPatternFill, wt as setShapeAlignment, x as findSlideByPartName, xa as removeSlideNotes, xi as getShapeImageBiLevelThreshold, xn as getSlideShapes, xo as setTableColumnWidth, xr as setShapeNoFill, xs as getSlideLayoutBackground, xt as getShapeTextDirection, y as getSlideSections, ya as getVisibleSlides, yi as findSlidesByLayoutType, yn as getShapesBounds, yo as setTableCellTextDirection, yr as setShapeGradientFill, ys as getSlideBackgroundPatternFill, yt as getShapeTextBodyRotationDeg, z as getSlidePartName, za as clearTableCellFill, zi as SLIDE_SIZE_16_10, zn as getShapeDescription, zo as findSlideLayoutByType, zr as getParagraphIndent, zs as clearSlideComments, zt as getShapeEffectsEffective } from "./api-grq54JcQ.js";
|
|
2
|
+
export { SLIDE_SIZE_16_10, SLIDE_SIZE_16_9, SLIDE_SIZE_4_3, VERSION, _internalPackageOf, addBlankSlide, addContentSlide, addSectionHeaderSlide, addSlide, addSlideAt, addSlideChart, addSlideComment, addSlideImage, addSlideLine, addSlideShape, addSlideTable, addSlideTextBox, addTitleSlide, appendShapeText, appendSlideNotes, bringShapeForward, bringShapeToFront, centerShapeOnSlide, clearAllHyperlinks, clearAllSlideComments, clearAllSlideNotes, clearShapeEffects, clearShapeFill, clearShapeStroke, clearSlideAnimations, clearSlideBackground, clearSlideComments, clearSlideHyperlinks, clearSlideShapes, clearSlideTransition, clearTableCellFill, cm, compactPackage, copyShape, createPresentation, duplicateSlide, duplicateSlideAt, emu, findChartByKind, findChartsBySeriesName, findChartsWithDataLabels, findChartsWithTrendlines, findCommentAuthorByName, findCommentsAfter, findCommentsBefore, findCommentsByAuthor, findCommentsByText, findEmptyPlaceholders, findFlippedShapes, findLayoutsWithPlaceholderType, findOverlappingShapePairs, findShapeById, findShapeByName, findShapeByText, findShapeInPresentation, findShapesAtPoint, findShapesByEffect, findShapesByHyperlink, findShapesByKind, findShapesByName, findShapesByPreset, findShapesByText, findShapesInRect, findShapesOutsideCanvas, findShapesWithAnimation, findShapesWithHyperlinks, findSlideByPartName, findSlideByText, findSlideByTitle, findSlideLayout, findSlideLayoutByPartName, findSlideLayoutByType, findSlidePlaceholder, findSlidePlaceholderByIdx, findSlidePlaceholders, findSlidesByHyperlink, findSlidesByLayoutName, findSlidesByLayoutPartName, findSlidesByLayoutType, findSlidesByNotes, findSlidesByText, findSlidesWithChartKind, findSlidesWithChartTrendlines, findSlidesWithCommentsByAuthor, getAllCharts, getAllComments, getAllHyperlinks, getAllImages, getAllNotes, getAllShapes, getAllTables, getCommentAuthor, getCommentAuthors, getCommentDate, getCommentPosition, getCommentSlide, getCommentText, getCommentsSortedByDate, getCoreProperties, getDistinctHyperlinkUrls, getEffectiveColorMap, getEmptySlides, getExtendedProperties, getGroupChildren, getGroupTransform, getHiddenSlides, getMaxShapeId, getMaxShapeIdInPresentation, getMediaParts, getOrphanMediaPartNames, getOutlineText, getPackageSize, getParagraphAlignment, getParagraphBullet, getParagraphBulletImageBytes, getParagraphBulletStyle, getParagraphIndent, getParagraphLevel, getParagraphLineSpacing, getParagraphPropertiesEffective, getParagraphSpacing, getPresentationChartCountsBySlide, getPresentationChartKindCounts, getPresentationCommentCountsByAuthor, getPresentationCommentCountsBySlide, getPresentationCommenters, getPresentationCreated, getPresentationFonts, getPresentationHyperlinkCountsBySlide, getPresentationImageCountsBySlide, getPresentationModified, getPresentationNotesLength, getPresentationNotesLengthsBySlide, getPresentationNotesText, getPresentationShapeCountsBySlide, getPresentationSummary, getPresentationTableCountsBySlide, getPresentationText, getPresentationTextLength, getPresentationTextLengthsBySlide, getPresentationTheme, getShapeAdjustValues, getShapeAltTitle, getShapeAnimation, getShapeAt, getShapeBodyPrEffective, getShapeBounds, getShapeBoundsResolved, getShapeCenter, getShapeChartCategories, getShapeChartKind, getShapeChartSeriesNames, getShapeChartSeriesValues, getShapeChartSpec, getShapeClickAction, getShapeCustomGeometry, getShapeDescription, getShapeEffect, getShapeEffects, getShapeEffectsEffective, getShapeFill, getShapeFillColor, getShapeFillColorResolved, getShapeFillEffective, getShapeFlip, getShapeGradientFill, getShapeGradientFillEffective, getShapeHyperlink, getShapeHyperlinkTooltip, getShapeId, getShapeImageBiLevelThreshold, getShapeImageBrightness, getShapeImageBytes, getShapeImageContrast, getShapeImageCrop, getShapeImageDuotone, getShapeImageFillBytes, getShapeImageFormat, getShapeImageLinkUrl, getShapeImageOpacity, getShapeImagePartName, getShapeIndex, getShapeKind, getShapeName, getShapeParagraphCount, getShapeParagraphElements, getShapePatternFill, getShapePlaceholderIdx, getShapePlaceholderType, getShapePosition, getShapePreset, getShapeRotation, getShapeRunClickAction, getShapeRunCount, getShapeRunFormat, getShapeRunFormatEffective, getShapeRunHyperlink, getShapeRunHyperlinkTooltip, getShapeRunText, getShapeSize, getShapeSlide, getShapeStroke, getShapeStrokeArrow, getShapeStrokeCap, getShapeStrokeColor, getShapeStrokeColorResolved, getShapeStrokeCompound, getShapeStrokeDash, getShapeStrokeEffective, getShapeStrokeJoin, getShapeStrokeWidth, getShapeText, getShapeTextAnchor, getShapeTextAutoFit, getShapeTextAutoFitParams, getShapeTextBodyRotationDeg, getShapeTextColumns, getShapeTextDirection, getShapeTextMargins, getShapeTextWrap, getShapeXmlString, getShapeZIndex, getShapesBounds, getSlideAt, getSlideBackground, getSlideBackgroundGradientFill, getSlideBackgroundImageBytes, getSlideBackgroundPatternFill, getSlideBody, getSlideCharts, getSlideColorMapOverride, getSlideCommentAuthors, getSlideComments, getSlideCount, getSlideIndex, getSlideInfo, getSlideLayout, getSlideLayoutBackground, getSlideLayoutBackgroundGradientFill, getSlideLayoutBackgroundImageBytes, getSlideLayoutBackgroundPatternFill, getSlideLayoutBackgroundShapes, getSlideLayoutCount, getSlideLayoutName, getSlideLayoutPartName, getSlideLayoutPlaceholders, getSlideLayoutShapes, getSlideLayoutType, getSlideLayoutUsageCounts, getSlideLayoutUsageCountsByType, getSlideLayouts, getSlideMasterBackground, getSlideMasterBackgroundGradientFill, getSlideMasterBackgroundImageBytes, getSlideMasterBackgroundPatternFill, getSlideMasterCount, getSlideMasterPartName, getSlideMasterPartNames, getSlideMasterShapes, getSlideMasterUsageCounts, getSlideMediaPartNames, getSlideNotes, getSlideNotesLength, getSlideOutline, getSlidePartName, getSlideSections, getSlideShapes, getSlideSize, getSlideTables, getSlideText, getSlideTextLength, getSlideTitle, getSlideTransition, getSlideXmlString, getSlides, getSlidesByLayout, getSlidesWithCharts, getSlidesWithComments, getSlidesWithEmptyPlaceholders, getSlidesWithHyperlinks, getSlidesWithImages, getSlidesWithNotes, getSlidesWithOverlap, getSlidesWithTables, getTableCell, getTableCellAlignment, getTableCellAnchor, getTableCellBorders, getTableCellFill, getTableCellMargins, getTableCellParagraphs, getTableCellPosition, getTableCellSpan, getTableCellText, getTableCellTextDirection, getTableCells, getTableColumnWidths, getTableDimensions, getTableRowHeights, getTableSize, getTableStyleFlags, getTableStyleId, getThumbnail, getUnusedSlideLayouts, getUnusedSlideMasters, getVisibleSlides, groupShapes, hasShapeImage, hasShapeText, hasSlideNotes, importSlide, inches, incrementRevision, insertTableColumn, insertTableRow, isChartShape, isParagraphBulletPicture, isShapeHidden, isShapeImageGrayscale, isShapePlaceholder, isShapeTextBox, isSlideHidden, isTableShape, listPackageParts, loadPresentation, mergePresentations, mergeTableCells, mm, moveSlide, pointInShape, pt, readPackagePart, removeShape, removeSlide, removeSlideComment, removeSlideNotes, removeTableColumn, removeTableRow, removeThumbnail, renameShape, replaceHyperlink, replaceTextInNotes, replaceTextInPresentation, replaceTextInSlide, replaceTextInSlideNotes, replaceTokensInPresentation, replaceTokensInSlide, resolveDeckBodyTextColor, resolveDrawingColor, reverseSlides, savePresentation, searchSlides, sendShapeBackward, sendShapeToBack, setChartSpec, setCoreProperties, setExtendedProperties, setMediaPartBytes, setParagraphAlignment, setParagraphBullet, setParagraphLevel, setParagraphLineSpacing, setParagraphSpacing, setPresentationFonts, setPresentationTheme, setShapeAlignment, setShapeAltTitle, setShapeAnimation, setShapeBounds, setShapeBullets, setShapeClickAction, setShapeDescription, setShapeFill, setShapeFlip, setShapeGlow, setShapeGradientFill, setShapeHidden, setShapeHyperlink, setShapeImage, setShapeImageBrightness, setShapeImageContrast, setShapeImageCrop, setShapeImageFill, setShapeImageOpacity, setShapeNoFill, setShapeNoStroke, setShapePatternFill, setShapePosition, setShapeRotation, setShapeRunFormat, setShapeRunHyperlink, setShapeRunText, setShapeShadow, setShapeSize, setShapeStroke, setShapeStrokeArrow, setShapeStrokeCap, setShapeStrokeCompound, setShapeStrokeDash, setShapeStrokeJoin, setShapeText, setShapeTextAnchor, setShapeTextAutoFit, setShapeTextBodyRotationDeg, setShapeTextColumns, setShapeTextDirection, setShapeTextFormat, setShapeTextMargins, setShapeTextWrap, setShapeZIndex, setSlideBackground, setSlideBackgroundImage, setSlideBody, setSlideHidden, setSlideLayout, setSlideNotes, setSlidePlaceholders, setSlideSections, setSlideSize, setSlideTitle, setSlideTransition, setTableCellAlignment, setTableCellAnchor, setTableCellBorders, setTableCellFill, setTableCellMargins, setTableCellText, setTableCellTextDirection, setTableCellTextFormat, setTableColumnWidth, setTableRowHeight, setTableStyleFlags, setTableStyleId, setThumbnail, shapesOverlap, slideHasAnimations, slidesUsingMediaPart, sortSlides, swapSlides, touchModified, translateShapes, ungroupShapes, validatePresentation };
|
package/dist/node.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as SlideBackground, $a as getShapeClickAction, $c as GeomCommand, $i as getTableCellSpan, $n as getShapeZIndex, $o as getShapeEffect, $r as findShapesOutsideCanvas, $s as findSlidePlaceholderByIdx, $t as getSlideInfo, A as getPresentationHyperlinkCountsBySlide, Aa as findChartByKind, Ac as getShapePlaceholderIdx, Ai as getPresentationSummary, Al as CommentAuthor, An as touchModified, Ao as getShapeTextAnchor, Ar as getShapeRunHyperlink, As as getShapeFillColor, At as moveSlide, B as getSlidesWithNotes, Ba as getShapeChartSpec, Bc as getSlideMasterUsageCounts, Bi as TableCellBorders, Bl as cm, Bn as getSlideLayoutUsageCounts, Bo as setShapeText, Br as setShapeRunText, Bs as getShapeStrokeWidth, Bt as findSlideByTitle, C as getAllHyperlinks, Ca as setTableCellTextFormat, Cc as getShapeCenter, Ci as PackagePartInfo, Cl as savePresentation, Cn as getCoreProperties, Co as getSlideComments, Cr as getParagraphLineSpacing, Cs as setShapeStrokeDash, Ct as addSlide, D as getDistinctHyperlinkUrls, Da as setTableStyleId, Dc as getShapeId, Di as getMediaParts, Dl as SlideLayoutData, Dn as incrementRevision, Do as TextWrap, Dr as getShapeParagraphElements, Ds as ShapeFill, Dt as duplicateSlideAt, E as getAllTables, Ea as setTableStyleFlags, Ec as getShapeFlip, Ei as compactPackage, El as SlideData, En as getPresentationModified, Eo as TextAutoFit, Er as getShapeParagraphCount, Es as getShapeGradientFillEffective, Et as duplicateSlide, F as getSlideNotesLength, Fa as getPresentationChartKindCounts, Fc as getShapeSize, Fi as slidesUsingMediaPart, Fl as TransitionEffect, Fn as findSlideLayoutByType, Fo as getShapeTextDirection, Fr as setParagraphBullet, Fs as getShapeStrokeColor, Ft as AllShapesEntry, G as removeSlideNotes, Ga as ChartDataLabels, Gc as pointInShape, Gi as getTableCell, Gn as addSlideLine, Go as setShapeTextDirection, Gr as setSlideTitle, Gs as findShapeInPresentation, Gt as getPresentationShapeCountsBySlide, H as getSlidesWithTables, Ha as setChartSpec, Hc as isShapeHidden, Hi as clearTableCellFill, Hl as inches, Hn as getSlideLayouts, Ho as setShapeTextAutoFit, Hr as getSlideTitle, Hs as findShapeById, Ht as findSlidesByText, I as getSlidesWithCharts, Ia as getShapeChartCategories, Ic as getShapeText, Ii as validatePresentation, Il as TransitionOptions, In as getSlideLayoutName, Io as getShapeTextMargins, Ir as setParagraphLevel, Is as getShapeStrokeColorResolved, It as SlideInfo, J as clearSlideTransition, Ja as ChartSeries, Jc as setShapeBounds, Ji as getTableCellBorders, Jn as addSlideTextBox, Jo as setShapeTextWrap, Jr as getShapeAnimation, Js as findShapesByName, Jt as getPresentationTextLengthsBySlide, K as replaceHyperlink, Ka as ChartGrouping, Kc as renameShape, Ki as getTableCellAlignment, Kn as addSlideShape, Ko as setShapeTextFormat, Kr as clearSlideAnimations, Ks as findShapesByHyperlink, Kt as getPresentationText, L as getSlidesWithComments, La as getShapeChartKind, Lc as getSlideMasterCount, Li as IssueSeverity, Ll as PresetShape, Ln as getSlideLayoutPartName, Lo as getShapeTextWrap, Lr as setParagraphLineSpacing, Ls as getShapeStrokeCompound, Lt as SlideOutlineEntry, M as getPresentationNotesLengthsBySlide, Ma as findChartsWithDataLabels, Mc as getShapePosition, Mi as listPackageParts, Ml as SlideComment, Mn as findLayoutsWithPlaceholderType, Mo as getShapeTextAutoFitParams, Mr as getShapeRunText, Ms as getShapeFillEffective, Mt as reverseSlides, N as getPresentationNotesText, Na as findChartsWithTrendlines, Nc as getShapePreset, Ni as readPackagePart, Nl as AnimationEffect, Nn as findSlideLayout, No as getShapeTextBodyRotationDeg, Nr as isParagraphBulletPicture, Ns as getShapeStroke, Nt as sortSlides, O as getEmptySlides, Oa as SlideChartData, Oc as getShapeKind, Oi as getOrphanMediaPartNames, Ol as SlideShapeData, On as setCoreProperties, Oo as appendShapeText, Or as getShapeRunClickAction, Os as ShapeStroke, Ot as importSlide, P as getSlideNotes, Pa as getPresentationChartCountsBySlide, Pc as getShapeRotation, Pi as setMediaPartBytes, Pl as AnimationOptions, Pn as findSlideLayoutByPartName, Po as getShapeTextColumns, Pr as setParagraphAlignment, Ps as getShapeStrokeCap, Pt as swapSlides, Q as resolveDeckBodyTextColor, Qa as ShapeClickAction, Qc as CustomGeometry, Qi as getTableCellPosition, Qn as copyShape, Qo as findShapesByEffect, Qr as findOverlappingShapePairs, Qs as findSlidePlaceholder, Qt as getSlideIndex, R as getSlidesWithHyperlinks, Ra as getShapeChartSeriesNames, Rc as getSlideMasterPartName, Ri as ValidationIssue, Rl as ImageFormat, Rn as getSlideLayoutPlaceholders, Ro as setShapeAlignment, Rr as setParagraphSpacing, Rs as getShapeStrokeEffective, Rt as findSlideByPartName, S as getAllComments, Sa as setTableCellTextDirection, Sc as getShapeBoundsResolved, Si as MediaPart, Sl as loadPresentation, Sn as ExtendedProperties, So as getSlideCommentAuthors, Sr as getParagraphLevel, Ss as setShapeStrokeCompound, St as addSectionHeaderSlide, T as getAllNotes, Ta as setTableRowHeight, Tc as getShapeDescription, Ti as _internalPackageOf, Tl as SlideCommentData, Tn as getPresentationCreated, To as TextAnchor, Tr as getShapeHyperlinkTooltip, Ts as getShapeGradientFill, Tt as addTitleSlide, U as getVisibleSlides, Ua as ChartAxisScaling, Uc as isShapePlaceholder, Ui as getPresentationTableCountsBySlide, Ul as mm, Un as getUnusedSlideLayouts, Uo as setShapeTextBodyRotationDeg, Ur as setSlideBody, Us as findShapeByName, Ut as getAllShapes, V as getSlidesWithOverlap, Va as getSlideCharts, Vc as getUnusedSlideMasters, Vi as TableCellParagraph, Vl as emu, Vn as getSlideLayoutUsageCountsByType, Vo as setShapeTextAnchor, Vr as getSlideBody, Vs as findEmptyPlaceholders, Vt as findSlidesByNotes, W as hasSlideNotes, Wa as ChartDataLabelPosition, Wc as isShapeTextBox, Wi as getSlideTables, Wl as pt, Wn as addSlideImage, Wo as setShapeTextColumns, Wr as setSlidePlaceholders, Ws as findShapeByText, Wt as getOutlineText, X as setSlideTransition, Xa as ChartTextStyle, Xc as setShapeHidden, Xi as getTableCellMargins, Xn as bringShapeToFront, Xo as ShapeEffectAny, Xr as ImageCrop, Xs as findShapesByText, Xt as getSlideAt, Y as getSlideTransition, Ya as ChartSpec, Yc as setShapeDescription, Yi as getTableCellFill, Yn as bringShapeForward, Yo as ShapeEffect, Yr as setShapeAnimation, Ys as findShapesByPreset, Yt as getShapeAt, Z as getEffectiveColorMap, Za as ChartTrendline, Zc as shapesOverlap, Zi as getTableCellParagraphs, Zn as clearSlideShapes, Zo as clearShapeEffects, Zr as findFlippedShapes, Zs as findShapesWithHyperlinks, Zt as getSlideCount, _ as clearSlideHyperlinks, _a as setTableCellAnchor, _c as getMaxShapeId, _i as isShapeImageGrayscale, _l as getSlideSections, _n as PresentationThumbnail, _o as getCommentText, _r as getParagraphAlignment, _s as setShapeRotation, _t as getSlideMasterShapes, a as SlideSize, aa as getTableRowHeights, ac as getSlideLayout, ai as getShapeImageBrightness, al as LineEndSize, an as getSlideXmlString, ao as clearSlideComments, ar as getParagraphPropertiesEffective, as as clearShapeStroke, at as getSlideBackgroundPatternFill, b as findSlidesWithChartTrendlines, ba as setTableCellMargins, bc as getShapeAltTitle, bi as setShapeImageCrop, bl as PresentationSize, bn as setThumbnail, bo as getPresentationCommentCountsBySlide, br as getParagraphBulletStyle, bs as setShapeStrokeArrow, bt as addBlankSlide, c as PresentationChartEntry, ca as getTableStyleId, cc as replaceTokensInSlide, ci as getShapeImageCrop, cl as ShadowOptions, cn as isSlideHidden, co as findCommentsBefore, cr as setShapeHyperlink, cs as getShapeStrokeDash, ct as getSlideLayoutBackgroundGradientFill, d as PresentationImageEntry, da as isChartShape, dc as ShapeBounds, di as getShapeImageFormat, dl as PatternFillOptions, dn as replaceTextInSlide, do as findSlidesWithCommentsByAuthor, dr as resolveDrawingColor, ds as setShapeGradientFill, dt as getSlideLayoutBackgroundShapes, ea as getTableCellText, ec as findSlidePlaceholders, ei as findSlidesByLayoutName, el as GeomPath, en as getSlideLayoutCount, eo as setShapeClickAction, er as removeShape, es as getShapeEffects, et as SlideLayoutBackgroundShape, f as PresentationNotesEntry, fa as isTableShape, fc as centerShapeOnSlide, fi as getShapeImageLinkUrl, fl as PatternPreset, fn as replaceTextInSlideNotes, fo as getCommentAuthor, fr as PresentationFonts, fs as setShapeImageFill, ft as getSlideLayoutShapes, g as clearAllSlideNotes, ga as setTableCellAlignment, gc as getGroupTransform, gi as hasShapeText, gl as SlideSection, gn as slideHasAnimations, go as getCommentSlide, gr as ShapeParagraphElement, gs as setShapePosition, gt as getSlideMasterBackgroundPatternFill, h as clearAllHyperlinks, ha as removeTableRow, hc as getGroupChildren, hi as hasShapeImage, hl as ParagraphAlignment, hn as setSlideHidden, ho as getCommentPosition, hr as getPresentationTheme, hs as setShapePatternFill, ht as getSlideMasterBackgroundImageBytes, i as SLIDE_SIZE_4_3, ia as getTableDimensions, ic as getShapesBounds, ii as getShapeImageBiLevelThreshold, il as LineDash, in as getSlideTextLength, io as clearAllSlideComments, ir as ParagraphProperties, is as clearShapeFill, it as getSlideBackgroundImageBytes, j as getPresentationNotesLength, ja as findChartsBySeriesName, jc as getShapePlaceholderType, ji as getSlideMediaPartNames, jl as CommentPosition, jn as SlideLayoutPlaceholder, jo as getShapeTextAutoFit, jr as getShapeRunHyperlinkTooltip, js as getShapeFillColorResolved, jt as removeSlide, k as getHiddenSlides, ka as addSlideChart, kc as getShapeName, ki as getPackageSize, kl as TableCellData, kn as setExtendedProperties, ko as getShapeBodyPrEffective, kr as getShapeRunCount, ks as getShapeFill, kt as mergePresentations, l as PresentationCommentEntry, la as insertTableColumn, lc as setSlideLayout, li as getShapeImageDuotone, ll as GradientFillOptions, ln as replaceTextInNotes, lo as findCommentsByAuthor, lr as setShapeRunFormat, ls as setShapeFill, lt as getSlideLayoutBackgroundImageBytes, m as appendSlideNotes, ma as removeTableColumn, mc as findShapesInRect, mi as getShapeImagePartName, ml as BulletStyle, mn as searchSlides, mo as getCommentDate, mr as getPresentationFonts, ms as setShapeNoStroke, mt as getSlideMasterBackgroundGradientFill, n as SLIDE_SIZE_16_10, na as getTableCells, nc as getShapeSlide, ni as findSlidesByLayoutType, nl as PathFillMode, nn as getSlidePartName, no as setShapeImage, nr as sendShapeToBack, ns as setShapeGlow, nt as getSlideBackground, o as getSlideSize, oa as getTableSize, oc as getSlideShapes, oi as getShapeImageBytes, ol as LineEndType, on as getSlides, oo as findCommentAuthorByName, or as getShapeHyperlink, os as getShapePatternFill, ot as getSlideColorMapOverride, p as PresentationTableEntry, pa as mergeTableCells, pc as findShapesAtPoint, pi as getShapeImageOpacity, pl as TextFormat, pn as replaceTokensInPresentation, po as getCommentAuthors, pr as PresentationTheme, ps as setShapeNoFill, pt as getSlideMasterBackground, q as setSlideNotes, qa as ChartKind, qc as setShapeAltTitle, qi as getTableCellAnchor, qn as addSlideTable, qo as setShapeTextMargins, qr as findShapesWithAnimation, qs as findShapesByKind, qt as getPresentationTextLength, r as SLIDE_SIZE_16_9, ra as getTableColumnWidths, rc as getShapeXmlString, ri as getPresentationImageCountsBySlide, rl as ArrowOptions, rn as getSlideText, ro as addSlideComment, rr as setShapeZIndex, rs as setShapeShadow, rt as getSlideBackgroundGradientFill, s as setSlideSize, sa as getTableStyleFlags, sc as getSlidesWithEmptyPlaceholders, si as getShapeImageContrast, sl as GlowOptions, sn as getSlidesByLayout, so as findCommentsAfter, sr as getShapeRunFormatEffective, ss as getShapeStrokeArrow, st as getSlideLayoutBackground, t as VERSION, ta as getTableCellTextDirection, tc as getShapeIndex, ti as findSlidesByLayoutPartName, tl as GeomPoint, tn as getSlideOutline, to as ImageFit, tr as sendShapeBackward, ts as getShapeEffectsEffective, tt as clearSlideBackground, u as PresentationHyperlinkEntry, ua as insertTableRow, uc as translateShapes, ui as getShapeImageFillBytes, ul as GradientStop, un as replaceTextInPresentation, uo as findCommentsByText, ur as getShapeRunFormat, us as setShapeFlip, ut as getSlideLayoutBackgroundPatternFill, v as findSlidesByHyperlink, va as setTableCellBorders, vc as getMaxShapeIdInPresentation, vi as setShapeImageBrightness, vl as setSlideSections, vn as getThumbnail, vo as getCommentsSortedByDate, vr as getParagraphBullet, vs as setShapeSize, vt as setSlideBackground, w as getAllImages, wa as setTableColumnWidth, wc as getShapeCustomGeometry, wi as PresentationSummary, wl as PresentationData, wn as getExtendedProperties, wo as removeSlideComment, wr as getParagraphSpacing, ws as setShapeStrokeJoin, wt as addSlideAt, x as getAllCharts, xa as setTableCellText, xc as getShapeBounds, xi as setShapeImageOpacity, xl as createPresentation, xn as CoreProperties, xo as getPresentationCommenters, xr as getParagraphIndent, xs as setShapeStrokeCap, xt as addContentSlide, y as findSlidesWithChartKind, ya as setTableCellFill, yc as getShapeAdjustValues, yi as setShapeImageContrast, yl as PresentationInput, yn as removeThumbnail, yo as getPresentationCommentCountsByAuthor, yr as getParagraphBulletImageBytes, ys as setShapeStroke, yt as setSlideBackgroundImage, z as getSlidesWithImages, za as getShapeChartSeriesValues, zc as getSlideMasterPartNames, zi as TableCellBorder, zl as Emu, zn as getSlideLayoutType, zo as setShapeBullets, zr as setShapeRunHyperlink, zs as getShapeStrokeJoin, zt as findSlideByText } from "./index-vTW90gao.js";
|
|
1
|
+
import { $ as SlideBackground, $a as ChartSeries, $c as setShapeBounds, $i as getTableCellBorders, $n as clearSlideShapes, $o as setShapeTextWrap, $r as getShapeAnimation, $s as findShapesByName, $t as getSlideCount, A as getPresentationHyperlinkCountsBySlide, Aa as setTableRowHeight, Ac as getShapeDescription, Ai as _internalPackageOf, Al as SlideCommentData, An as setCoreProperties, Ao as TextAnchor, Ar as getShapeHyperlinkTooltip, As as getShapeGradientFill, At as importSlide, B as getSlidesWithNotes, Ba as getPresentationChartKindCounts, Bc as getShapeSize, Bi as slidesUsingMediaPart, Bl as TransitionEffect, Bn as getSlideLayoutPlaceholders, Bo as getShapeTextDirection, Br as setParagraphBullet, Bs as getShapeStrokeColor, Bt as findSlideByPartName, C as getAllHyperlinks, Ca as setTableCellBorders, Cc as getMaxShapeIdInPresentation, Ci as setShapeImageBrightness, Cl as setSlideSections, Cn as CoreProperties, Co as getCommentsSortedByDate, Cr as getParagraphBullet, Cs as setShapeSize, Ct as addContentSlide, D as getDistinctHyperlinkUrls, Da as setTableCellTextDirection, Dc as getShapeBoundsResolved, Di as MediaPart, Dl as loadPresentation, Dn as getPresentationCreated, Do as getSlideCommentAuthors, Dr as getParagraphLevel, Ds as setShapeStrokeCompound, Dt as addTitleSlide, E as getAllTables, Ea as setTableCellText, Ec as getShapeBounds, Ei as setShapeImageOpacity, El as createPresentation, En as getExtendedProperties, Eo as getPresentationCommenters, Er as getParagraphIndent, Es as setShapeStrokeCap, Et as addSlideAt, F as getSlideNotesLength, Fa as findChartByKind, Fc as getShapePlaceholderIdx, Fi as getPresentationSummary, Fl as CommentAuthor, Fn as findSlideLayout, Fo as getShapeTextAnchor, Fr as getShapeRunHyperlink, Fs as getShapeFillColor, Ft as sortSlides, G as removeSlideNotes, Ga as getShapeChartSpec, Gc as getSlideMasterUsageCounts, Gi as TableCellBorders, Gl as cm, Gn as getUnusedSlideLayouts, Go as setShapeText, Gr as setShapeRunText, Gs as getShapeStrokeWidth, Gt as getAllShapes, H as getSlidesWithTables, Ha as getShapeChartKind, Hc as getSlideMasterCount, Hi as IssueSeverity, Hl as PresetShape, Hn as getSlideLayoutUsageCounts, Ho as getShapeTextWrap, Hr as setParagraphLineSpacing, Hs as getShapeStrokeCompound, Ht as findSlideByTitle, I as getSlidesWithCharts, Ia as findChartsBySeriesName, Ic as getShapePlaceholderType, Ii as getSlideMediaPartNames, Il as CommentPosition, In as findSlideLayoutByPartName, Io as getShapeTextAutoFit, Ir as getShapeRunHyperlinkTooltip, Is as getShapeFillColorResolved, It as swapSlides, J as clearSlideTransition, Ja as ChartAxisScaling, Jc as isShapePlaceholder, Ji as getPresentationTableCountsBySlide, Jl as mm, Jn as addSlideShape, Jo as setShapeTextBodyRotationDeg, Jr as setSlideBody, Js as findShapeByName, Jt as getPresentationText, K as replaceHyperlink, Ka as getSlideCharts, Kc as getUnusedSlideMasters, Ki as TableCellParagraph, Kl as emu, Kn as addSlideImage, Ko as setShapeTextAnchor, Kr as getSlideBody, Ks as findEmptyPlaceholders, Kt as getOutlineText, L as getSlidesWithComments, La as findChartsWithDataLabels, Lc as getShapePosition, Li as listPackageParts, Ll as SlideComment, Ln as findSlideLayoutByType, Lo as getShapeTextAutoFitParams, Lr as getShapeRunText, Ls as getShapeFillEffective, Lt as AllShapesEntry, M as getPresentationNotesLengthsBySlide, Ma as setTableStyleId, Mc as getShapeId, Mi as getMediaParts, Ml as SlideLayoutData, Mn as touchModified, Mo as TextWrap, Mr as getShapeParagraphElements, Ms as ShapeFill, Mt as moveSlide, N as getPresentationNotesText, Na as SlideChartData, Nc as getShapeKind, Ni as getOrphanMediaPartNames, Nl as SlideShapeData, Nn as SlideLayoutPlaceholder, No as appendShapeText, Nr as getShapeRunClickAction, Ns as ShapeStroke, Nt as removeSlide, O as getEmptySlides, Oa as setTableCellTextFormat, Oc as getShapeCenter, Oi as PackagePartInfo, Ol as savePresentation, On as getPresentationModified, Oo as getSlideComments, Or as getParagraphLineSpacing, Os as setShapeStrokeDash, Ot as duplicateSlide, P as getSlideNotes, Pa as addSlideChart, Pc as getShapeName, Pi as getPackageSize, Pl as TableCellData, Pn as findLayoutsWithPlaceholderType, Po as getShapeBodyPrEffective, Pr as getShapeRunCount, Ps as getShapeFill, Pt as reverseSlides, Q as resolveDeckBodyTextColor, Qa as ChartKind, Qc as setShapeAltTitle, Qi as getTableCellAnchor, Qn as bringShapeToFront, Qo as setShapeTextMargins, Qr as findShapesWithAnimation, Qs as findShapesByKind, Qt as getSlideAt, R as getSlidesWithHyperlinks, Ra as findChartsWithTrendlines, Rc as getShapePreset, Ri as readPackagePart, Rl as AnimationEffect, Rn as getSlideLayoutName, Ro as getShapeTextBodyRotationDeg, Rr as isParagraphBulletPicture, Rs as getShapeStroke, Rt as SlideInfo, S as getAllComments, Sa as setTableCellAnchor, Sc as getMaxShapeId, Si as isShapeImageGrayscale, Sl as getSlideSections, Sn as setThumbnail, So as getCommentText, Sr as getParagraphAlignment, Ss as setShapeRotation, St as addBlankSlide, T as getAllNotes, Ta as setTableCellMargins, Tc as getShapeAltTitle, Ti as setShapeImageCrop, Tl as PresentationSize, Tn as getCoreProperties, To as getPresentationCommentCountsBySlide, Tr as getParagraphBulletStyle, Ts as setShapeStrokeArrow, Tt as addSlide, U as getVisibleSlides, Ua as getShapeChartSeriesNames, Uc as getSlideMasterPartName, Ui as ValidationIssue, Ul as ImageFormat, Un as getSlideLayoutUsageCountsByType, Uo as setShapeAlignment, Ur as setParagraphSpacing, Us as getShapeStrokeEffective, Ut as findSlidesByNotes, V as getSlidesWithOverlap, Va as getShapeChartCategories, Vc as getShapeText, Vi as validatePresentation, Vl as TransitionOptions, Vn as getSlideLayoutType, Vo as getShapeTextMargins, Vr as setParagraphLevel, Vs as getShapeStrokeColorResolved, Vt as findSlideByText, W as hasSlideNotes, Wa as getShapeChartSeriesValues, Wc as getSlideMasterPartNames, Wi as TableCellBorder, Wl as Emu, Wn as getSlideLayouts, Wo as setShapeBullets, Wr as setShapeRunHyperlink, Ws as getShapeStrokeJoin, Wt as findSlidesByText, X as setSlideTransition, Xa as ChartDataLabels, Xc as pointInShape, Xi as getTableCell, Xn as addSlideTextBox, Xo as setShapeTextDirection, Xr as setSlideTitle, Xs as findShapeInPresentation, Xt as getPresentationTextLengthsBySlide, Y as getSlideTransition, Ya as ChartDataLabelPosition, Yc as isShapeTextBox, Yi as getSlideTables, Yl as pt, Yn as addSlideTable, Yo as setShapeTextColumns, Yr as setSlidePlaceholders, Ys as findShapeByText, Yt as getPresentationTextLength, Z as getEffectiveColorMap, Za as ChartGrouping, Zc as renameShape, Zi as getTableCellAlignment, Zn as bringShapeForward, Zo as setShapeTextFormat, Zr as clearSlideAnimations, Zs as findShapesByHyperlink, Zt as getShapeAt, _ as clearSlideHyperlinks, _a as isTableShape, _c as centerShapeOnSlide, _i as getShapeImageLinkUrl, _l as PatternPreset, _n as setSlideHidden, _o as getCommentAuthor, _r as getPresentationFonts, _s as setShapeImageFill, _t as getSlideMasterShapes, a as SlideSize, aa as getTableCellText, ac as findSlidePlaceholders, ai as findSlidesByLayoutName, al as GeomPath, an as getSlideText, ao as setShapeClickAction, ar as setShapeZIndex, as as getShapeEffects, at as getSlideBackgroundPatternFill, b as findSlidesWithChartTrendlines, ba as removeTableRow, bc as getGroupChildren, bi as hasShapeImage, bl as ParagraphAlignment, bn as getThumbnail, bo as getCommentPosition, br as setPresentationTheme, bs as setShapePatternFill, bt as groupShapes, c as PresentationChartEntry, ca as getTableColumnWidths, cc as getShapeXmlString, ci as getPresentationImageCountsBySlide, cl as ArrowOptions, cn as getSlides, co as addSlideComment, cr as getShapeHyperlink, cs as setShapeShadow, ct as getSlideLayoutBackgroundGradientFill, d as PresentationImageEntry, da as getTableSize, dc as getSlideShapes, di as getShapeImageBytes, dl as LineEndType, dn as replaceTextInNotes, do as findCommentAuthorByName, dr as setShapeRunFormat, ds as getShapePatternFill, dt as getSlideLayoutBackgroundShapes, ea as getTableCellFill, ec as findShapesByPreset, ei as setShapeAnimation, el as setShapeDescription, en as getSlideIndex, eo as ChartSpec, er as copyShape, es as ShapeEffect, et as SlideLayoutBackgroundShape, f as PresentationNotesEntry, fa as getTableStyleFlags, fc as getSlidesWithEmptyPlaceholders, fi as getShapeImageContrast, fl as GlowOptions, fn as replaceTextInPresentation, fo as findCommentsAfter, fr as getShapeRunFormat, fs as getShapeStrokeArrow, ft as getSlideLayoutShapes, g as clearAllSlideNotes, ga as isChartShape, gc as ShapeBounds, gi as getShapeImageFormat, gl as PatternFillOptions, gn as searchSlides, go as findSlidesWithCommentsByAuthor, gr as PresentationTheme, gs as setShapeGradientFill, gt as getSlideMasterBackgroundPatternFill, h as clearAllHyperlinks, ha as insertTableRow, hc as translateShapes, hi as getShapeImageFillBytes, hl as GradientStop, hn as replaceTokensInPresentation, ho as findCommentsByText, hr as PresentationFontsInput, hs as setShapeFlip, ht as getSlideMasterBackgroundImageBytes, i as SLIDE_SIZE_4_3, ia as getTableCellSpan, ic as findSlidePlaceholderByIdx, ii as findShapesOutsideCanvas, il as GeomCommand, in as getSlidePartName, io as getShapeClickAction, ir as sendShapeToBack, is as getShapeEffect, it as getSlideBackgroundImageBytes, j as getPresentationNotesLength, ja as setTableStyleFlags, jc as getShapeFlip, ji as compactPackage, jl as SlideData, jn as setExtendedProperties, jo as TextAutoFit, jr as getShapeParagraphCount, js as getShapeGradientFillEffective, jt as mergePresentations, k as getHiddenSlides, ka as setTableColumnWidth, kc as getShapeCustomGeometry, ki as PresentationSummary, kl as PresentationData, kn as incrementRevision, ko as removeSlideComment, kr as getParagraphSpacing, ks as setShapeStrokeJoin, kt as duplicateSlideAt, l as PresentationCommentEntry, la as getTableDimensions, lc as getShapesBounds, li as getShapeImageBiLevelThreshold, ll as LineDash, ln as getSlidesByLayout, lo as clearAllSlideComments, lr as getShapeRunFormatEffective, ls as clearShapeFill, lt as getSlideLayoutBackgroundImageBytes, m as appendSlideNotes, ma as insertTableColumn, mc as setSlideLayout, mi as getShapeImageDuotone, ml as GradientFillOptions, mn as replaceTextInSlideNotes, mo as findCommentsByAuthor, mr as PresentationFonts, ms as setShapeFill, mt as getSlideMasterBackgroundGradientFill, n as SLIDE_SIZE_16_10, na as getTableCellParagraphs, nc as findShapesWithHyperlinks, ni as findFlippedShapes, nl as shapesOverlap, nn as getSlideLayoutCount, no as ChartTrendline, nr as removeShape, ns as clearShapeEffects, nt as getSlideBackground, o as getSlideSize, oa as getTableCellTextDirection, oc as getShapeIndex, oi as findSlidesByLayoutPartName, ol as GeomPoint, on as getSlideTextLength, oo as ImageFit, or as ParagraphProperties, os as getShapeEffectsEffective, ot as getSlideColorMapOverride, p as PresentationTableEntry, pa as getTableStyleId, pc as replaceTokensInSlide, pi as getShapeImageCrop, pl as ShadowOptions, pn as replaceTextInSlide, po as findCommentsBefore, pr as resolveDrawingColor, ps as getShapeStrokeDash, pt as getSlideMasterBackground, q as setSlideNotes, qa as setChartSpec, qc as isShapeHidden, qi as clearTableCellFill, ql as inches, qn as addSlideLine, qo as setShapeTextAutoFit, qr as getSlideTitle, qs as findShapeById, qt as getPresentationShapeCountsBySlide, r as SLIDE_SIZE_16_9, ra as getTableCellPosition, rc as findSlidePlaceholder, ri as findOverlappingShapePairs, rl as CustomGeometry, rn as getSlideOutline, ro as ShapeClickAction, rr as sendShapeBackward, rs as findShapesByEffect, rt as getSlideBackgroundGradientFill, s as setSlideSize, sa as getTableCells, sc as getShapeSlide, si as findSlidesByLayoutType, sl as PathFillMode, sn as getSlideXmlString, so as setShapeImage, sr as getParagraphPropertiesEffective, ss as setShapeGlow, st as getSlideLayoutBackground, t as VERSION, ta as getTableCellMargins, tc as findShapesByText, ti as ImageCrop, tl as setShapeHidden, tn as getSlideInfo, to as ChartTextStyle, tr as getShapeZIndex, ts as ShapeEffectAny, tt as clearSlideBackground, u as PresentationHyperlinkEntry, ua as getTableRowHeights, uc as getSlideLayout, ui as getShapeImageBrightness, ul as LineEndSize, un as isSlideHidden, uo as clearSlideComments, ur as setShapeHyperlink, us as clearShapeStroke, ut as getSlideLayoutBackgroundPatternFill, v as findSlidesByHyperlink, va as mergeTableCells, vc as findShapesAtPoint, vi as getShapeImageOpacity, vl as TextFormat, vn as slideHasAnimations, vo as getCommentAuthors, vr as getPresentationTheme, vs as setShapeNoFill, vt as setSlideBackground, w as getAllImages, wa as setTableCellFill, wc as getShapeAdjustValues, wi as setShapeImageContrast, wl as PresentationInput, wn as ExtendedProperties, wo as getPresentationCommentCountsByAuthor, wr as getParagraphBulletImageBytes, ws as setShapeStroke, wt as addSectionHeaderSlide, x as getAllCharts, xa as setTableCellAlignment, xc as getGroupTransform, xi as hasShapeText, xl as SlideSection, xn as removeThumbnail, xo as getCommentSlide, xr as ShapeParagraphElement, xs as setShapePosition, xt as ungroupShapes, y as findSlidesWithChartKind, ya as removeTableColumn, yc as findShapesInRect, yi as getShapeImagePartName, yl as BulletStyle, yn as PresentationThumbnail, yo as getCommentDate, yr as setPresentationFonts, ys as setShapeNoStroke, yt as setSlideBackgroundImage, z as getSlidesWithImages, za as getPresentationChartCountsBySlide, zc as getShapeRotation, zi as setMediaPartBytes, zl as AnimationOptions, zn as getSlideLayoutPartName, zo as getShapeTextColumns, zr as setParagraphAlignment, zs as getShapeStrokeCap, zt as SlideOutlineEntry } from "./index-CXoXNgJm.js";
|
|
2
2
|
|
|
3
3
|
//#region src/node.d.ts
|
|
4
4
|
/**
|
|
@@ -11,5 +11,5 @@ declare const loadPresentationFile: (path: string) => Promise<PresentationData>;
|
|
|
11
11
|
*/
|
|
12
12
|
declare const savePresentationToFile: (pres: PresentationData, path: string) => Promise<void>;
|
|
13
13
|
//#endregion
|
|
14
|
-
export { type AllShapesEntry, type AnimationEffect, type AnimationOptions, type ArrowOptions, type BulletStyle, type ChartAxisScaling, type ChartDataLabelPosition, type ChartDataLabels, type ChartGrouping, type ChartKind, type ChartSeries, type ChartSpec, type ChartTextStyle, type ChartTrendline, type CommentAuthor, type CommentPosition, type CoreProperties, type CustomGeometry, type Emu, type ExtendedProperties, type GeomCommand, type GeomPath, type GeomPoint, type GlowOptions, type GradientFillOptions, type GradientStop, type ImageCrop, type ImageFit, type ImageFormat, type IssueSeverity, type LineDash, type LineEndSize, type LineEndType, type MediaPart, type PackagePartInfo, type ParagraphAlignment, type ParagraphProperties, type PathFillMode, type PatternFillOptions, type PatternPreset, type PresentationChartEntry, type PresentationCommentEntry, type PresentationData, type PresentationFonts, type PresentationHyperlinkEntry, type PresentationImageEntry, type PresentationInput, type PresentationNotesEntry, type PresentationSize, type PresentationSummary, type PresentationTableEntry, type PresentationTheme, type PresentationThumbnail, type PresetShape, SLIDE_SIZE_16_10, SLIDE_SIZE_16_9, SLIDE_SIZE_4_3, type ShadowOptions, type ShapeBounds, type ShapeClickAction, type ShapeEffect, type ShapeEffectAny, type ShapeFill, type ShapeParagraphElement, type ShapeStroke, type SlideBackground, type SlideChartData, type SlideComment, type SlideCommentData, type SlideData, type SlideInfo, type SlideLayoutBackgroundShape, type SlideLayoutData, type SlideLayoutPlaceholder, type SlideOutlineEntry, type SlideSection, type SlideShapeData, type SlideSize, type TableCellBorder, type TableCellBorders, type TableCellData, type TableCellParagraph, type TextAnchor, type TextAutoFit, type TextFormat, type TextWrap, type TransitionEffect, type TransitionOptions, VERSION, type ValidationIssue, _internalPackageOf, addBlankSlide, addContentSlide, addSectionHeaderSlide, addSlide, addSlideAt, addSlideChart, addSlideComment, addSlideImage, addSlideLine, addSlideShape, addSlideTable, addSlideTextBox, addTitleSlide, appendShapeText, appendSlideNotes, bringShapeForward, bringShapeToFront, centerShapeOnSlide, clearAllHyperlinks, clearAllSlideComments, clearAllSlideNotes, clearShapeEffects, clearShapeFill, clearShapeStroke, clearSlideAnimations, clearSlideBackground, clearSlideComments, clearSlideHyperlinks, clearSlideShapes, clearSlideTransition, clearTableCellFill, cm, compactPackage, copyShape, createPresentation, duplicateSlide, duplicateSlideAt, emu, findChartByKind, findChartsBySeriesName, findChartsWithDataLabels, findChartsWithTrendlines, findCommentAuthorByName, findCommentsAfter, findCommentsBefore, findCommentsByAuthor, findCommentsByText, findEmptyPlaceholders, findFlippedShapes, findLayoutsWithPlaceholderType, findOverlappingShapePairs, findShapeById, findShapeByName, findShapeByText, findShapeInPresentation, findShapesAtPoint, findShapesByEffect, findShapesByHyperlink, findShapesByKind, findShapesByName, findShapesByPreset, findShapesByText, findShapesInRect, findShapesOutsideCanvas, findShapesWithAnimation, findShapesWithHyperlinks, findSlideByPartName, findSlideByText, findSlideByTitle, findSlideLayout, findSlideLayoutByPartName, findSlideLayoutByType, findSlidePlaceholder, findSlidePlaceholderByIdx, findSlidePlaceholders, findSlidesByHyperlink, findSlidesByLayoutName, findSlidesByLayoutPartName, findSlidesByLayoutType, findSlidesByNotes, findSlidesByText, findSlidesWithChartKind, findSlidesWithChartTrendlines, findSlidesWithCommentsByAuthor, getAllCharts, getAllComments, getAllHyperlinks, getAllImages, getAllNotes, getAllShapes, getAllTables, getCommentAuthor, getCommentAuthors, getCommentDate, getCommentPosition, getCommentSlide, getCommentText, getCommentsSortedByDate, getCoreProperties, getDistinctHyperlinkUrls, getEffectiveColorMap, getEmptySlides, getExtendedProperties, getGroupChildren, getGroupTransform, getHiddenSlides, getMaxShapeId, getMaxShapeIdInPresentation, getMediaParts, getOrphanMediaPartNames, getOutlineText, getPackageSize, getParagraphAlignment, getParagraphBullet, getParagraphBulletImageBytes, getParagraphBulletStyle, getParagraphIndent, getParagraphLevel, getParagraphLineSpacing, getParagraphPropertiesEffective, getParagraphSpacing, getPresentationChartCountsBySlide, getPresentationChartKindCounts, getPresentationCommentCountsByAuthor, getPresentationCommentCountsBySlide, getPresentationCommenters, getPresentationCreated, getPresentationFonts, getPresentationHyperlinkCountsBySlide, getPresentationImageCountsBySlide, getPresentationModified, getPresentationNotesLength, getPresentationNotesLengthsBySlide, getPresentationNotesText, getPresentationShapeCountsBySlide, getPresentationSummary, getPresentationTableCountsBySlide, getPresentationText, getPresentationTextLength, getPresentationTextLengthsBySlide, getPresentationTheme, getShapeAdjustValues, getShapeAltTitle, getShapeAnimation, getShapeAt, getShapeBodyPrEffective, getShapeBounds, getShapeBoundsResolved, getShapeCenter, getShapeChartCategories, getShapeChartKind, getShapeChartSeriesNames, getShapeChartSeriesValues, getShapeChartSpec, getShapeClickAction, getShapeCustomGeometry, getShapeDescription, getShapeEffect, getShapeEffects, getShapeEffectsEffective, getShapeFill, getShapeFillColor, getShapeFillColorResolved, getShapeFillEffective, getShapeFlip, getShapeGradientFill, getShapeGradientFillEffective, getShapeHyperlink, getShapeHyperlinkTooltip, getShapeId, getShapeImageBiLevelThreshold, getShapeImageBrightness, getShapeImageBytes, getShapeImageContrast, getShapeImageCrop, getShapeImageDuotone, getShapeImageFillBytes, getShapeImageFormat, getShapeImageLinkUrl, getShapeImageOpacity, getShapeImagePartName, getShapeIndex, getShapeKind, getShapeName, getShapeParagraphCount, getShapeParagraphElements, getShapePatternFill, getShapePlaceholderIdx, getShapePlaceholderType, getShapePosition, getShapePreset, getShapeRotation, getShapeRunClickAction, getShapeRunCount, getShapeRunFormat, getShapeRunFormatEffective, getShapeRunHyperlink, getShapeRunHyperlinkTooltip, getShapeRunText, getShapeSize, getShapeSlide, getShapeStroke, getShapeStrokeArrow, getShapeStrokeCap, getShapeStrokeColor, getShapeStrokeColorResolved, getShapeStrokeCompound, getShapeStrokeDash, getShapeStrokeEffective, getShapeStrokeJoin, getShapeStrokeWidth, getShapeText, getShapeTextAnchor, getShapeTextAutoFit, getShapeTextAutoFitParams, getShapeTextBodyRotationDeg, getShapeTextColumns, getShapeTextDirection, getShapeTextMargins, getShapeTextWrap, getShapeXmlString, getShapeZIndex, getShapesBounds, getSlideAt, getSlideBackground, getSlideBackgroundGradientFill, getSlideBackgroundImageBytes, getSlideBackgroundPatternFill, getSlideBody, getSlideCharts, getSlideColorMapOverride, getSlideCommentAuthors, getSlideComments, getSlideCount, getSlideIndex, getSlideInfo, getSlideLayout, getSlideLayoutBackground, getSlideLayoutBackgroundGradientFill, getSlideLayoutBackgroundImageBytes, getSlideLayoutBackgroundPatternFill, getSlideLayoutBackgroundShapes, getSlideLayoutCount, getSlideLayoutName, getSlideLayoutPartName, getSlideLayoutPlaceholders, getSlideLayoutShapes, getSlideLayoutType, getSlideLayoutUsageCounts, getSlideLayoutUsageCountsByType, getSlideLayouts, getSlideMasterBackground, getSlideMasterBackgroundGradientFill, getSlideMasterBackgroundImageBytes, getSlideMasterBackgroundPatternFill, getSlideMasterCount, getSlideMasterPartName, getSlideMasterPartNames, getSlideMasterShapes, getSlideMasterUsageCounts, getSlideMediaPartNames, getSlideNotes, getSlideNotesLength, getSlideOutline, getSlidePartName, getSlideSections, getSlideShapes, getSlideSize, getSlideTables, getSlideText, getSlideTextLength, getSlideTitle, getSlideTransition, getSlideXmlString, getSlides, getSlidesByLayout, getSlidesWithCharts, getSlidesWithComments, getSlidesWithEmptyPlaceholders, getSlidesWithHyperlinks, getSlidesWithImages, getSlidesWithNotes, getSlidesWithOverlap, getSlidesWithTables, getTableCell, getTableCellAlignment, getTableCellAnchor, getTableCellBorders, getTableCellFill, getTableCellMargins, getTableCellParagraphs, getTableCellPosition, getTableCellSpan, getTableCellText, getTableCellTextDirection, getTableCells, getTableColumnWidths, getTableDimensions, getTableRowHeights, getTableSize, getTableStyleFlags, getTableStyleId, getThumbnail, getUnusedSlideLayouts, getUnusedSlideMasters, getVisibleSlides, hasShapeImage, hasShapeText, hasSlideNotes, importSlide, inches, incrementRevision, insertTableColumn, insertTableRow, isChartShape, isParagraphBulletPicture, isShapeHidden, isShapeImageGrayscale, isShapePlaceholder, isShapeTextBox, isSlideHidden, isTableShape, listPackageParts, loadPresentation, loadPresentationFile, mergePresentations, mergeTableCells, mm, moveSlide, pointInShape, pt, readPackagePart, removeShape, removeSlide, removeSlideComment, removeSlideNotes, removeTableColumn, removeTableRow, removeThumbnail, renameShape, replaceHyperlink, replaceTextInNotes, replaceTextInPresentation, replaceTextInSlide, replaceTextInSlideNotes, replaceTokensInPresentation, replaceTokensInSlide, resolveDeckBodyTextColor, resolveDrawingColor, reverseSlides, savePresentation, savePresentationToFile, searchSlides, sendShapeBackward, sendShapeToBack, setChartSpec, setCoreProperties, setExtendedProperties, setMediaPartBytes, setParagraphAlignment, setParagraphBullet, setParagraphLevel, setParagraphLineSpacing, setParagraphSpacing, setShapeAlignment, setShapeAltTitle, setShapeAnimation, setShapeBounds, setShapeBullets, setShapeClickAction, setShapeDescription, setShapeFill, setShapeFlip, setShapeGlow, setShapeGradientFill, setShapeHidden, setShapeHyperlink, setShapeImage, setShapeImageBrightness, setShapeImageContrast, setShapeImageCrop, setShapeImageFill, setShapeImageOpacity, setShapeNoFill, setShapeNoStroke, setShapePatternFill, setShapePosition, setShapeRotation, setShapeRunFormat, setShapeRunHyperlink, setShapeRunText, setShapeShadow, setShapeSize, setShapeStroke, setShapeStrokeArrow, setShapeStrokeCap, setShapeStrokeCompound, setShapeStrokeDash, setShapeStrokeJoin, setShapeText, setShapeTextAnchor, setShapeTextAutoFit, setShapeTextBodyRotationDeg, setShapeTextColumns, setShapeTextDirection, setShapeTextFormat, setShapeTextMargins, setShapeTextWrap, setShapeZIndex, setSlideBackground, setSlideBackgroundImage, setSlideBody, setSlideHidden, setSlideLayout, setSlideNotes, setSlidePlaceholders, setSlideSections, setSlideSize, setSlideTitle, setSlideTransition, setTableCellAlignment, setTableCellAnchor, setTableCellBorders, setTableCellFill, setTableCellMargins, setTableCellText, setTableCellTextDirection, setTableCellTextFormat, setTableColumnWidth, setTableRowHeight, setTableStyleFlags, setTableStyleId, setThumbnail, shapesOverlap, slideHasAnimations, slidesUsingMediaPart, sortSlides, swapSlides, touchModified, translateShapes, validatePresentation };
|
|
14
|
+
export { type AllShapesEntry, type AnimationEffect, type AnimationOptions, type ArrowOptions, type BulletStyle, type ChartAxisScaling, type ChartDataLabelPosition, type ChartDataLabels, type ChartGrouping, type ChartKind, type ChartSeries, type ChartSpec, type ChartTextStyle, type ChartTrendline, type CommentAuthor, type CommentPosition, type CoreProperties, type CustomGeometry, type Emu, type ExtendedProperties, type GeomCommand, type GeomPath, type GeomPoint, type GlowOptions, type GradientFillOptions, type GradientStop, type ImageCrop, type ImageFit, type ImageFormat, type IssueSeverity, type LineDash, type LineEndSize, type LineEndType, type MediaPart, type PackagePartInfo, type ParagraphAlignment, type ParagraphProperties, type PathFillMode, type PatternFillOptions, type PatternPreset, type PresentationChartEntry, type PresentationCommentEntry, type PresentationData, type PresentationFonts, type PresentationFontsInput, type PresentationHyperlinkEntry, type PresentationImageEntry, type PresentationInput, type PresentationNotesEntry, type PresentationSize, type PresentationSummary, type PresentationTableEntry, type PresentationTheme, type PresentationThumbnail, type PresetShape, SLIDE_SIZE_16_10, SLIDE_SIZE_16_9, SLIDE_SIZE_4_3, type ShadowOptions, type ShapeBounds, type ShapeClickAction, type ShapeEffect, type ShapeEffectAny, type ShapeFill, type ShapeParagraphElement, type ShapeStroke, type SlideBackground, type SlideChartData, type SlideComment, type SlideCommentData, type SlideData, type SlideInfo, type SlideLayoutBackgroundShape, type SlideLayoutData, type SlideLayoutPlaceholder, type SlideOutlineEntry, type SlideSection, type SlideShapeData, type SlideSize, type TableCellBorder, type TableCellBorders, type TableCellData, type TableCellParagraph, type TextAnchor, type TextAutoFit, type TextFormat, type TextWrap, type TransitionEffect, type TransitionOptions, VERSION, type ValidationIssue, _internalPackageOf, addBlankSlide, addContentSlide, addSectionHeaderSlide, addSlide, addSlideAt, addSlideChart, addSlideComment, addSlideImage, addSlideLine, addSlideShape, addSlideTable, addSlideTextBox, addTitleSlide, appendShapeText, appendSlideNotes, bringShapeForward, bringShapeToFront, centerShapeOnSlide, clearAllHyperlinks, clearAllSlideComments, clearAllSlideNotes, clearShapeEffects, clearShapeFill, clearShapeStroke, clearSlideAnimations, clearSlideBackground, clearSlideComments, clearSlideHyperlinks, clearSlideShapes, clearSlideTransition, clearTableCellFill, cm, compactPackage, copyShape, createPresentation, duplicateSlide, duplicateSlideAt, emu, findChartByKind, findChartsBySeriesName, findChartsWithDataLabels, findChartsWithTrendlines, findCommentAuthorByName, findCommentsAfter, findCommentsBefore, findCommentsByAuthor, findCommentsByText, findEmptyPlaceholders, findFlippedShapes, findLayoutsWithPlaceholderType, findOverlappingShapePairs, findShapeById, findShapeByName, findShapeByText, findShapeInPresentation, findShapesAtPoint, findShapesByEffect, findShapesByHyperlink, findShapesByKind, findShapesByName, findShapesByPreset, findShapesByText, findShapesInRect, findShapesOutsideCanvas, findShapesWithAnimation, findShapesWithHyperlinks, findSlideByPartName, findSlideByText, findSlideByTitle, findSlideLayout, findSlideLayoutByPartName, findSlideLayoutByType, findSlidePlaceholder, findSlidePlaceholderByIdx, findSlidePlaceholders, findSlidesByHyperlink, findSlidesByLayoutName, findSlidesByLayoutPartName, findSlidesByLayoutType, findSlidesByNotes, findSlidesByText, findSlidesWithChartKind, findSlidesWithChartTrendlines, findSlidesWithCommentsByAuthor, getAllCharts, getAllComments, getAllHyperlinks, getAllImages, getAllNotes, getAllShapes, getAllTables, getCommentAuthor, getCommentAuthors, getCommentDate, getCommentPosition, getCommentSlide, getCommentText, getCommentsSortedByDate, getCoreProperties, getDistinctHyperlinkUrls, getEffectiveColorMap, getEmptySlides, getExtendedProperties, getGroupChildren, getGroupTransform, getHiddenSlides, getMaxShapeId, getMaxShapeIdInPresentation, getMediaParts, getOrphanMediaPartNames, getOutlineText, getPackageSize, getParagraphAlignment, getParagraphBullet, getParagraphBulletImageBytes, getParagraphBulletStyle, getParagraphIndent, getParagraphLevel, getParagraphLineSpacing, getParagraphPropertiesEffective, getParagraphSpacing, getPresentationChartCountsBySlide, getPresentationChartKindCounts, getPresentationCommentCountsByAuthor, getPresentationCommentCountsBySlide, getPresentationCommenters, getPresentationCreated, getPresentationFonts, getPresentationHyperlinkCountsBySlide, getPresentationImageCountsBySlide, getPresentationModified, getPresentationNotesLength, getPresentationNotesLengthsBySlide, getPresentationNotesText, getPresentationShapeCountsBySlide, getPresentationSummary, getPresentationTableCountsBySlide, getPresentationText, getPresentationTextLength, getPresentationTextLengthsBySlide, getPresentationTheme, getShapeAdjustValues, getShapeAltTitle, getShapeAnimation, getShapeAt, getShapeBodyPrEffective, getShapeBounds, getShapeBoundsResolved, getShapeCenter, getShapeChartCategories, getShapeChartKind, getShapeChartSeriesNames, getShapeChartSeriesValues, getShapeChartSpec, getShapeClickAction, getShapeCustomGeometry, getShapeDescription, getShapeEffect, getShapeEffects, getShapeEffectsEffective, getShapeFill, getShapeFillColor, getShapeFillColorResolved, getShapeFillEffective, getShapeFlip, getShapeGradientFill, getShapeGradientFillEffective, getShapeHyperlink, getShapeHyperlinkTooltip, getShapeId, getShapeImageBiLevelThreshold, getShapeImageBrightness, getShapeImageBytes, getShapeImageContrast, getShapeImageCrop, getShapeImageDuotone, getShapeImageFillBytes, getShapeImageFormat, getShapeImageLinkUrl, getShapeImageOpacity, getShapeImagePartName, getShapeIndex, getShapeKind, getShapeName, getShapeParagraphCount, getShapeParagraphElements, getShapePatternFill, getShapePlaceholderIdx, getShapePlaceholderType, getShapePosition, getShapePreset, getShapeRotation, getShapeRunClickAction, getShapeRunCount, getShapeRunFormat, getShapeRunFormatEffective, getShapeRunHyperlink, getShapeRunHyperlinkTooltip, getShapeRunText, getShapeSize, getShapeSlide, getShapeStroke, getShapeStrokeArrow, getShapeStrokeCap, getShapeStrokeColor, getShapeStrokeColorResolved, getShapeStrokeCompound, getShapeStrokeDash, getShapeStrokeEffective, getShapeStrokeJoin, getShapeStrokeWidth, getShapeText, getShapeTextAnchor, getShapeTextAutoFit, getShapeTextAutoFitParams, getShapeTextBodyRotationDeg, getShapeTextColumns, getShapeTextDirection, getShapeTextMargins, getShapeTextWrap, getShapeXmlString, getShapeZIndex, getShapesBounds, getSlideAt, getSlideBackground, getSlideBackgroundGradientFill, getSlideBackgroundImageBytes, getSlideBackgroundPatternFill, getSlideBody, getSlideCharts, getSlideColorMapOverride, getSlideCommentAuthors, getSlideComments, getSlideCount, getSlideIndex, getSlideInfo, getSlideLayout, getSlideLayoutBackground, getSlideLayoutBackgroundGradientFill, getSlideLayoutBackgroundImageBytes, getSlideLayoutBackgroundPatternFill, getSlideLayoutBackgroundShapes, getSlideLayoutCount, getSlideLayoutName, getSlideLayoutPartName, getSlideLayoutPlaceholders, getSlideLayoutShapes, getSlideLayoutType, getSlideLayoutUsageCounts, getSlideLayoutUsageCountsByType, getSlideLayouts, getSlideMasterBackground, getSlideMasterBackgroundGradientFill, getSlideMasterBackgroundImageBytes, getSlideMasterBackgroundPatternFill, getSlideMasterCount, getSlideMasterPartName, getSlideMasterPartNames, getSlideMasterShapes, getSlideMasterUsageCounts, getSlideMediaPartNames, getSlideNotes, getSlideNotesLength, getSlideOutline, getSlidePartName, getSlideSections, getSlideShapes, getSlideSize, getSlideTables, getSlideText, getSlideTextLength, getSlideTitle, getSlideTransition, getSlideXmlString, getSlides, getSlidesByLayout, getSlidesWithCharts, getSlidesWithComments, getSlidesWithEmptyPlaceholders, getSlidesWithHyperlinks, getSlidesWithImages, getSlidesWithNotes, getSlidesWithOverlap, getSlidesWithTables, getTableCell, getTableCellAlignment, getTableCellAnchor, getTableCellBorders, getTableCellFill, getTableCellMargins, getTableCellParagraphs, getTableCellPosition, getTableCellSpan, getTableCellText, getTableCellTextDirection, getTableCells, getTableColumnWidths, getTableDimensions, getTableRowHeights, getTableSize, getTableStyleFlags, getTableStyleId, getThumbnail, getUnusedSlideLayouts, getUnusedSlideMasters, getVisibleSlides, groupShapes, hasShapeImage, hasShapeText, hasSlideNotes, importSlide, inches, incrementRevision, insertTableColumn, insertTableRow, isChartShape, isParagraphBulletPicture, isShapeHidden, isShapeImageGrayscale, isShapePlaceholder, isShapeTextBox, isSlideHidden, isTableShape, listPackageParts, loadPresentation, loadPresentationFile, mergePresentations, mergeTableCells, mm, moveSlide, pointInShape, pt, readPackagePart, removeShape, removeSlide, removeSlideComment, removeSlideNotes, removeTableColumn, removeTableRow, removeThumbnail, renameShape, replaceHyperlink, replaceTextInNotes, replaceTextInPresentation, replaceTextInSlide, replaceTextInSlideNotes, replaceTokensInPresentation, replaceTokensInSlide, resolveDeckBodyTextColor, resolveDrawingColor, reverseSlides, savePresentation, savePresentationToFile, searchSlides, sendShapeBackward, sendShapeToBack, setChartSpec, setCoreProperties, setExtendedProperties, setMediaPartBytes, setParagraphAlignment, setParagraphBullet, setParagraphLevel, setParagraphLineSpacing, setParagraphSpacing, setPresentationFonts, setPresentationTheme, setShapeAlignment, setShapeAltTitle, setShapeAnimation, setShapeBounds, setShapeBullets, setShapeClickAction, setShapeDescription, setShapeFill, setShapeFlip, setShapeGlow, setShapeGradientFill, setShapeHidden, setShapeHyperlink, setShapeImage, setShapeImageBrightness, setShapeImageContrast, setShapeImageCrop, setShapeImageFill, setShapeImageOpacity, setShapeNoFill, setShapeNoStroke, setShapePatternFill, setShapePosition, setShapeRotation, setShapeRunFormat, setShapeRunHyperlink, setShapeRunText, setShapeShadow, setShapeSize, setShapeStroke, setShapeStrokeArrow, setShapeStrokeCap, setShapeStrokeCompound, setShapeStrokeDash, setShapeStrokeJoin, setShapeText, setShapeTextAnchor, setShapeTextAutoFit, setShapeTextBodyRotationDeg, setShapeTextColumns, setShapeTextDirection, setShapeTextFormat, setShapeTextMargins, setShapeTextWrap, setShapeZIndex, setSlideBackground, setSlideBackgroundImage, setSlideBody, setSlideHidden, setSlideLayout, setSlideNotes, setSlidePlaceholders, setSlideSections, setSlideSize, setSlideTitle, setSlideTransition, setTableCellAlignment, setTableCellAnchor, setTableCellBorders, setTableCellFill, setTableCellMargins, setTableCellText, setTableCellTextDirection, setTableCellTextFormat, setTableColumnWidth, setTableRowHeight, setTableStyleFlags, setTableStyleId, setThumbnail, shapesOverlap, slideHasAnimations, slidesUsingMediaPart, sortSlides, swapSlides, touchModified, translateShapes, ungroupShapes, validatePresentation };
|
|
15
15
|
//# sourceMappingURL=node.d.ts.map
|