pptx-viewer-core 1.6.8 → 1.6.10
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 +4 -0
- package/dist/cli/index.d.ts +1 -1
- package/dist/cli/index.js +2209 -376
- package/dist/cli/index.mjs +2209 -376
- package/dist/converter/index.d.ts +1 -1
- package/dist/{index-BZzE92Uh.d.ts → index-C-lG9FUB.d.ts} +185 -30
- package/dist/index-C-lG9FUB.d.ts.map +1 -0
- package/dist/index.d.ts +3 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2311 -488
- package/dist/index.mjs +2308 -488
- package/dist/{text-operations-DnyNBsGN.d.ts → text-operations-XE73CjX0.d.ts} +332 -4
- package/dist/text-operations-XE73CjX0.d.ts.map +1 -0
- package/package.json +1 -1
- package/dist/index-BZzE92Uh.d.ts.map +0 -1
- package/dist/text-operations-DnyNBsGN.d.ts.map +0 -1
|
@@ -282,6 +282,13 @@ interface PptxShapeLocks {
|
|
|
282
282
|
noAdjustHandles?: boolean;
|
|
283
283
|
noChangeArrowheads?: boolean;
|
|
284
284
|
noChangeShapeType?: boolean;
|
|
285
|
+
/**
|
|
286
|
+
* Text-box flag from `p:cNvSpPr/@txBox`. Not a lock in the strict sense,
|
|
287
|
+
* but it lives on the same non-visual-properties node as `a:spLocks`, so
|
|
288
|
+
* it is captured here to round-trip through the model. When `true` the
|
|
289
|
+
* shape is a plain text box (no fill/line by default).
|
|
290
|
+
*/
|
|
291
|
+
txBox?: boolean;
|
|
285
292
|
}
|
|
286
293
|
/**
|
|
287
294
|
* A drawing guide parsed from OOXML extension lists.
|
|
@@ -871,6 +878,15 @@ interface ShapeStyle {
|
|
|
871
878
|
r: number;
|
|
872
879
|
b: number;
|
|
873
880
|
};
|
|
881
|
+
/** Raw tileRect LTRB values (0..1 fractions, may be negative) from
|
|
882
|
+
* `a:gradFill/a:tileRect`. Defines the rectangle the gradient tile occupies
|
|
883
|
+
* before any flip/tiling is applied. */
|
|
884
|
+
fillGradientTileRect?: {
|
|
885
|
+
l: number;
|
|
886
|
+
t: number;
|
|
887
|
+
r: number;
|
|
888
|
+
b: number;
|
|
889
|
+
};
|
|
874
890
|
/** Gradient tile flip mode (`a:gradFill/@flip`).
|
|
875
891
|
* `none` = no tiling flip (default), `x|y|xy` = mirror in the named axis. */
|
|
876
892
|
fillGradientFlip?: 'none' | 'x' | 'y' | 'xy';
|
|
@@ -888,6 +904,20 @@ interface ShapeStyle {
|
|
|
888
904
|
* round-trip serialisation. See {@link fillColorXml} for the rationale.
|
|
889
905
|
*/
|
|
890
906
|
strokeColorXml?: XmlObject;
|
|
907
|
+
/**
|
|
908
|
+
* Kind of fill painted on the outline (`a:ln` child). Distinguishes a solid
|
|
909
|
+
* outline from a gradient/pattern/none outline so save can emit the correct
|
|
910
|
+
* single line fill instead of collapsing every outline to `a:solidFill`
|
|
911
|
+
* (which, alongside a preserved `a:gradFill`/`a:pattFill`, produces an
|
|
912
|
+
* invalid dual-fill `<a:ln>`).
|
|
913
|
+
*/
|
|
914
|
+
strokeFillMode?: 'solid' | 'gradient' | 'pattern' | 'none';
|
|
915
|
+
/** Raw `a:ln/a:gradFill` XML preserved for round-trip when the outline is
|
|
916
|
+
* gradient-filled. Re-emitted verbatim as the line's single fill on save. */
|
|
917
|
+
strokeGradientXml?: XmlObject;
|
|
918
|
+
/** Raw `a:ln/a:pattFill` XML preserved for round-trip when the outline is
|
|
919
|
+
* pattern-filled. Re-emitted verbatim as the line's single fill on save. */
|
|
920
|
+
strokePatternXml?: XmlObject;
|
|
891
921
|
strokeWidth?: number;
|
|
892
922
|
strokeOpacity?: number;
|
|
893
923
|
strokeDash?: StrokeDashType;
|
|
@@ -1196,6 +1226,13 @@ interface TextStyle {
|
|
|
1196
1226
|
kerning?: number;
|
|
1197
1227
|
/** Text highlight colour as hex string (`a:highlight`). */
|
|
1198
1228
|
highlightColor?: string;
|
|
1229
|
+
/**
|
|
1230
|
+
* Raw colour-choice XML preserved from `a:highlight` so a themed highlight
|
|
1231
|
+
* (`a:schemeClr` / `a:sysClr` / `a:prstClr`) re-emits with its original
|
|
1232
|
+
* identity rather than being flattened to `<a:srgbClr/>` on save. On save we
|
|
1233
|
+
* re-emit verbatim when the resolved {@link highlightColor} still matches.
|
|
1234
|
+
*/
|
|
1235
|
+
highlightColorXml?: XmlObject;
|
|
1199
1236
|
/** Text-level gradient fill CSS string (from `a:rPr > a:gradFill`). */
|
|
1200
1237
|
textFillGradient?: string;
|
|
1201
1238
|
/** Structured gradient stops for text fill round-trip serialization. */
|
|
@@ -1307,10 +1344,36 @@ interface TextStyle {
|
|
|
1307
1344
|
eastAsiaFont?: string;
|
|
1308
1345
|
/** Complex Script font family from `a:cs`. */
|
|
1309
1346
|
complexScriptFont?: string;
|
|
1347
|
+
/**
|
|
1348
|
+
* Theme-font token (`+mj-lt` / `+mn-lt` / ...) authored on `a:latin`, when
|
|
1349
|
+
* present. {@link fontFamily} holds the resolved concrete face for
|
|
1350
|
+
* rendering; this preserves the token linkage so the writer re-emits the
|
|
1351
|
+
* token rather than the flattened face (see #84).
|
|
1352
|
+
*/
|
|
1353
|
+
latinFontThemeToken?: string;
|
|
1354
|
+
/** Theme-font token authored on `a:ea` (e.g. `+mn-ea`), when present. */
|
|
1355
|
+
eastAsiaFontThemeToken?: string;
|
|
1356
|
+
/** Theme-font token authored on `a:cs` (e.g. `+mn-cs`), when present. */
|
|
1357
|
+
complexScriptFontThemeToken?: string;
|
|
1358
|
+
/**
|
|
1359
|
+
* Automatic per-script fallback face resolved from the theme's
|
|
1360
|
+
* `<a:font script="...">` overrides for a run whose text is dominantly
|
|
1361
|
+
* CJK / Arabic / Hebrew / Thai (see #83). A rendering hint only: it is not
|
|
1362
|
+
* serialised back on save, so it never disturbs the round-trip typefaces.
|
|
1363
|
+
*/
|
|
1364
|
+
scriptFallbackFont?: string;
|
|
1310
1365
|
/** Text language from `a:rPr/@lang`. */
|
|
1311
1366
|
language?: string;
|
|
1312
1367
|
/** Hyperlink mouse-over target from `a:hlinkMouseOver`. */
|
|
1313
1368
|
hyperlinkMouseOver?: string;
|
|
1369
|
+
/**
|
|
1370
|
+
* Raw `a:snd` (embedded WAV audio) child of `a:hlinkClick`, preserved
|
|
1371
|
+
* verbatim (carries `@r:embed` + `@name`). Round-tripped on save so the
|
|
1372
|
+
* click sound survives instead of being dropped.
|
|
1373
|
+
*/
|
|
1374
|
+
hyperlinkSoundXml?: XmlObject;
|
|
1375
|
+
/** Raw `a:snd` child of `a:hlinkMouseOver`, preserved verbatim for round-trip. */
|
|
1376
|
+
hyperlinkMouseOverSoundXml?: XmlObject;
|
|
1314
1377
|
/** Hyperlink invalidUrl attribute (`a:hlinkClick/@invalidUrl`). */
|
|
1315
1378
|
hyperlinkInvalidUrl?: string;
|
|
1316
1379
|
/** Hyperlink target frame (`a:hlinkClick/@tgtFrame`). */
|
|
@@ -1654,6 +1717,15 @@ interface TextSegment {
|
|
|
1654
1717
|
* on the first segment of a paragraph.
|
|
1655
1718
|
*/
|
|
1656
1719
|
endParaRunProperties?: Record<string, unknown>;
|
|
1720
|
+
/**
|
|
1721
|
+
* Per-paragraph properties (alignment, spacing, margins, indent, tab stops,
|
|
1722
|
+
* rtl) authored on this paragraph's own `a:pPr` (#69). Only meaningful on
|
|
1723
|
+
* the first segment of a paragraph. When present, the writer emits these
|
|
1724
|
+
* per paragraph instead of collapsing one shape-level pPr onto every
|
|
1725
|
+
* paragraph. Only the paragraph-geometry keys of {@link TextStyle} are
|
|
1726
|
+
* populated; unrelated fields fall back to the shape-level style.
|
|
1727
|
+
*/
|
|
1728
|
+
paragraphProperties?: TextStyle;
|
|
1657
1729
|
/**
|
|
1658
1730
|
* Phonetic annotation text from `a:ruby > a:rt` (e.g. furigana, pinyin).
|
|
1659
1731
|
* When present, the renderer should wrap the base text with an HTML `<ruby>` tag.
|
|
@@ -2340,6 +2412,18 @@ interface PptxChartSeries {
|
|
|
2340
2412
|
marker?: PptxChartMarker;
|
|
2341
2413
|
dataLabels?: PptxChartDataLabel[];
|
|
2342
2414
|
explosion?: number;
|
|
2415
|
+
/**
|
|
2416
|
+
* Series-level `c:invertIfNegative`: when true, bar/column data points with a
|
|
2417
|
+
* negative value are drawn with an inverted (lightened) fill. A per-point
|
|
2418
|
+
* `c:dPt/c:invertIfNegative` overrides this for that point. Absent when the
|
|
2419
|
+
* source XML omits the flag.
|
|
2420
|
+
*/
|
|
2421
|
+
invertIfNegative?: boolean;
|
|
2422
|
+
/**
|
|
2423
|
+
* Whether this line/scatter series is drawn with bezier smoothing
|
|
2424
|
+
* (`c:ser/c:smooth/@val`). Absent when the source XML omits `c:smooth`.
|
|
2425
|
+
*/
|
|
2426
|
+
smooth?: boolean;
|
|
2343
2427
|
/** Axis ID this series is plotted against (links to PptxChartAxisFormatting.axisId). */
|
|
2344
2428
|
axisId?: number;
|
|
2345
2429
|
/**
|
|
@@ -2606,6 +2690,33 @@ interface PptxChartData {
|
|
|
2606
2690
|
style?: PptxChartStyle;
|
|
2607
2691
|
/** Grouping mode for bar/area/line charts: 'clustered' | 'stacked' | 'percentStacked' */
|
|
2608
2692
|
grouping?: 'clustered' | 'stacked' | 'percentStacked';
|
|
2693
|
+
/**
|
|
2694
|
+
* Whether the first (or only) series varies its point colours
|
|
2695
|
+
* (`c:varyColors/@val`). Pie/doughnut default this on; single-series
|
|
2696
|
+
* bar/column honour it by giving each point a distinct palette colour.
|
|
2697
|
+
* Absent when the source XML omits `c:varyColors`.
|
|
2698
|
+
*/
|
|
2699
|
+
varyColors?: boolean;
|
|
2700
|
+
/**
|
|
2701
|
+
* Pie/doughnut start angle in degrees clockwise from 12 o'clock
|
|
2702
|
+
* (`c:firstSliceAng/@val`, 0 through 360). Absent uses the default 0.
|
|
2703
|
+
*/
|
|
2704
|
+
firstSliceAngle?: number;
|
|
2705
|
+
/**
|
|
2706
|
+
* Doughnut hole diameter as a percentage of the outer diameter
|
|
2707
|
+
* (`c:holeSize/@val`, 10 through 90). Absent uses the renderer default.
|
|
2708
|
+
*/
|
|
2709
|
+
doughnutHoleSize?: number;
|
|
2710
|
+
/**
|
|
2711
|
+
* Bar/column gap between category clusters as a percentage of bar width
|
|
2712
|
+
* (`c:gapWidth/@val`, 0 through 500). Absent uses the renderer default.
|
|
2713
|
+
*/
|
|
2714
|
+
barGapWidth?: number;
|
|
2715
|
+
/**
|
|
2716
|
+
* Clustered bar/column overlap between series within a category as a
|
|
2717
|
+
* percentage (`c:overlap/@val`, -100 through 100). Absent uses 0.
|
|
2718
|
+
*/
|
|
2719
|
+
barOverlap?: number;
|
|
2609
2720
|
/** Internal: path to the chart XML part in the PPTX archive (for round-trip save). */
|
|
2610
2721
|
chartPartPath?: string;
|
|
2611
2722
|
/** Internal: relationship ID linking the graphic frame to the chart part. */
|
|
@@ -3413,6 +3524,18 @@ interface PptxSmartArtColorTransform extends PptxSmartArtDefinitionMetadata {
|
|
|
3413
3524
|
fillColors: string[];
|
|
3414
3525
|
/** Ordered resolved line colors for rendering. */
|
|
3415
3526
|
lineColors: string[];
|
|
3527
|
+
/** Ordered resolved text-fill colors (primary styleLbl `txFillClrLst`). */
|
|
3528
|
+
textFillColors?: string[];
|
|
3529
|
+
/** Ordered resolved text-line colors (primary styleLbl `txLinClrLst`). */
|
|
3530
|
+
textLineColors?: string[];
|
|
3531
|
+
/** Ordered resolved effect colors (primary styleLbl `effectClrLst`). */
|
|
3532
|
+
effectColors?: string[];
|
|
3533
|
+
/** Ordered resolved text-effect colors (primary styleLbl `txEffectClrLst`). */
|
|
3534
|
+
textEffectColors?: string[];
|
|
3535
|
+
/** Fill-list span/cycle + hue-direction interpolation of the primary styleLbl. */
|
|
3536
|
+
fillInterpolation?: PptxSmartArtColorListMetadata;
|
|
3537
|
+
/** Line-list span/cycle + hue-direction interpolation of the primary styleLbl. */
|
|
3538
|
+
lineInterpolation?: PptxSmartArtColorListMetadata;
|
|
3416
3539
|
/** Ordered CT_CTStyleLabel metadata. */
|
|
3417
3540
|
labels?: PptxSmartArtColorStyleLabel[];
|
|
3418
3541
|
}
|
|
@@ -3533,6 +3656,40 @@ interface PptxSmartArtDrawingShape extends PptxCustomPathProperties {
|
|
|
3533
3656
|
skewY?: number;
|
|
3534
3657
|
/** Solid fill colour (hex). */
|
|
3535
3658
|
fillColor?: string;
|
|
3659
|
+
/**
|
|
3660
|
+
* Gradient fill stops when the cached shape uses `a:gradFill`. Positions are
|
|
3661
|
+
* 0..100 (percent). Renderers emit an SVG/CSS gradient instead of a flat box.
|
|
3662
|
+
*/
|
|
3663
|
+
fillGradientStops?: Array<{
|
|
3664
|
+
color: string;
|
|
3665
|
+
position: number;
|
|
3666
|
+
opacity?: number;
|
|
3667
|
+
}>;
|
|
3668
|
+
/** Gradient geometry type (`linear` for `a:lin`, `radial` for `a:path`). */
|
|
3669
|
+
fillGradientType?: 'linear' | 'radial';
|
|
3670
|
+
/** Linear gradient angle in degrees (0..360). */
|
|
3671
|
+
fillGradientAngle?: number;
|
|
3672
|
+
/** Pattern fill preset name from `a:pattFill/@prst` (e.g. "pct50", "cross"). */
|
|
3673
|
+
fillPatternPreset?: string;
|
|
3674
|
+
/** Pattern fill foreground colour (hex) from `a:pattFill/a:fgClr`. */
|
|
3675
|
+
fillPatternForegroundColor?: string;
|
|
3676
|
+
/** Pattern fill background colour (hex) from `a:pattFill/a:bgClr`. */
|
|
3677
|
+
fillPatternBackgroundColor?: string;
|
|
3678
|
+
/**
|
|
3679
|
+
* Relationship id of a picture (blip) fill's embedded image, from
|
|
3680
|
+
* `a:blipFill/a:blip/@r:embed`. The image bytes are resolved separately; see
|
|
3681
|
+
* {@link fillImageUrl}.
|
|
3682
|
+
*/
|
|
3683
|
+
fillBlipEmbedId?: string;
|
|
3684
|
+
/**
|
|
3685
|
+
* Resolved data-URI/URL for a picture (blip) fill, when the embedded image
|
|
3686
|
+
* part could be resolved. Absent when only {@link fillBlipEmbedId} is known.
|
|
3687
|
+
*/
|
|
3688
|
+
fillImageUrl?: string;
|
|
3689
|
+
/** Whether the cached shape carries an outer-shadow effect (`a:effectLst`). */
|
|
3690
|
+
hasShadow?: boolean;
|
|
3691
|
+
/** Resolved outer-shadow colour (hex), when present. */
|
|
3692
|
+
shadowColor?: string;
|
|
3536
3693
|
/** Stroke colour (hex). */
|
|
3537
3694
|
strokeColor?: string;
|
|
3538
3695
|
/** Stroke width in points. */
|
|
@@ -3567,6 +3724,40 @@ interface PptxSmartArtChrome {
|
|
|
3567
3724
|
/** Outline stroke width in points. */
|
|
3568
3725
|
outlineWidth?: number;
|
|
3569
3726
|
}
|
|
3727
|
+
/**
|
|
3728
|
+
* Presentation layout variables from `dgm:prSet/dgm:presLayoutVars` (data model)
|
|
3729
|
+
* or `dgm:varLst` (layout definition defaults).
|
|
3730
|
+
*
|
|
3731
|
+
* These drive how the DiagramML layout interpreter arranges points: flow
|
|
3732
|
+
* direction, hierarchy branch style, org-chart mode, and child count limits.
|
|
3733
|
+
* The fallback layout engine can consult them for direction/org-chart hints.
|
|
3734
|
+
*
|
|
3735
|
+
* @example
|
|
3736
|
+
* ```ts
|
|
3737
|
+
* const vars: PptxSmartArtPresLayoutVars = { direction: "rev", orgChart: true };
|
|
3738
|
+
* // => satisfies PptxSmartArtPresLayoutVars
|
|
3739
|
+
* ```
|
|
3740
|
+
*/
|
|
3741
|
+
interface PptxSmartArtPresLayoutVars {
|
|
3742
|
+
/** Flow direction (`dgm:dir`): "norm" (default) or "rev" (reversed/RTL). */
|
|
3743
|
+
direction?: 'norm' | 'rev';
|
|
3744
|
+
/** Hierarchy branch style (`dgm:hierBranch`): std/init/l/r/hang. */
|
|
3745
|
+
hierarchyBranch?: 'std' | 'init' | 'l' | 'r' | 'hang';
|
|
3746
|
+
/** Org-chart mode enabled (`dgm:orgChart`). */
|
|
3747
|
+
orgChart?: boolean;
|
|
3748
|
+
/** Maximum children per node (`dgm:chMax`, -1 = unbounded). */
|
|
3749
|
+
childMax?: number;
|
|
3750
|
+
/** Preferred children per node (`dgm:chPref`, -1 = unbounded). */
|
|
3751
|
+
childPreferred?: number;
|
|
3752
|
+
/** Whether bullets are enabled (`dgm:bulletEnabled`). */
|
|
3753
|
+
bulletEnabled?: boolean;
|
|
3754
|
+
/** Animation-by-level setting (`dgm:animLvl`). */
|
|
3755
|
+
animationLevel?: string;
|
|
3756
|
+
/** Animate-one setting (`dgm:animOne`). */
|
|
3757
|
+
animateOne?: string;
|
|
3758
|
+
/** Allowed resize handles (`dgm:resizeHandles`). */
|
|
3759
|
+
resizeHandles?: string;
|
|
3760
|
+
}
|
|
3570
3761
|
/**
|
|
3571
3762
|
* Complete parsed SmartArt data for a {@link SmartArtPptxElement}.
|
|
3572
3763
|
*
|
|
@@ -3608,6 +3799,12 @@ interface PptxSmartArtData {
|
|
|
3608
3799
|
quickStyle?: PptxSmartArtQuickStyle;
|
|
3609
3800
|
/** Editable metadata from the related DiagramML layout definition. */
|
|
3610
3801
|
layoutDefinition?: PptxSmartArtLayoutDefinition;
|
|
3802
|
+
/**
|
|
3803
|
+
* Presentation layout variables (direction, hierarchy branch, org-chart,
|
|
3804
|
+
* child limits, bullets) from `dgm:presLayoutVars` / layout `dgm:varLst`.
|
|
3805
|
+
* Consulted by the fallback layout engine for direction/org-chart hints.
|
|
3806
|
+
*/
|
|
3807
|
+
presLayoutVars?: PptxSmartArtPresLayoutVars;
|
|
3611
3808
|
/** Relationship ID for the diagram data part (for round-trip save). */
|
|
3612
3809
|
dataRelId?: string;
|
|
3613
3810
|
/** Relationship ID for the diagram layout part. */
|
|
@@ -3880,12 +4077,50 @@ interface PptxTableData {
|
|
|
3880
4077
|
* ```
|
|
3881
4078
|
*/
|
|
3882
4079
|
interface ParsedTableStyleFill {
|
|
3883
|
-
/**
|
|
4080
|
+
/**
|
|
4081
|
+
* Theme colour key (e.g. `accent1`, `dk1`). Empty string when the fill is a
|
|
4082
|
+
* non-scheme fill (explicit sRGB, gradient, pattern, or none) that carries
|
|
4083
|
+
* no theme colour reference; the renderer then resolves {@link color},
|
|
4084
|
+
* {@link gradient}, {@link pattern}, or {@link noFill} instead.
|
|
4085
|
+
*/
|
|
3884
4086
|
schemeColor: string;
|
|
3885
4087
|
/** Tint value (0-100 000). */
|
|
3886
4088
|
tint?: number;
|
|
3887
4089
|
/** Shade value (0-100 000). */
|
|
3888
4090
|
shade?: number;
|
|
4091
|
+
/** Explicit sRGB hex colour (e.g. `#FF8800`) from `a:srgbClr`. */
|
|
4092
|
+
color?: string;
|
|
4093
|
+
/** The fill was `a:noFill`: renders transparent and clears lower layers. */
|
|
4094
|
+
noFill?: boolean;
|
|
4095
|
+
/** Gradient fill parsed from `a:gradFill`. */
|
|
4096
|
+
gradient?: ParsedTableStyleGradient;
|
|
4097
|
+
/** Preset pattern fill parsed from `a:pattFill`. */
|
|
4098
|
+
pattern?: ParsedTableStylePattern;
|
|
4099
|
+
}
|
|
4100
|
+
/** A single colour stop within a {@link ParsedTableStyleGradient}. */
|
|
4101
|
+
interface ParsedTableStyleGradientStop {
|
|
4102
|
+
/** Stop position as a percentage (0-100). */
|
|
4103
|
+
position: number;
|
|
4104
|
+
/** Stop colour (scheme or explicit sRGB). */
|
|
4105
|
+
fill: ParsedTableStyleFill;
|
|
4106
|
+
}
|
|
4107
|
+
/** A gradient fill parsed from a table style section's `a:gradFill`. */
|
|
4108
|
+
interface ParsedTableStyleGradient {
|
|
4109
|
+
/** Ordered colour stops. */
|
|
4110
|
+
stops: ParsedTableStyleGradientStop[];
|
|
4111
|
+
/** Linear gradient angle in degrees (from `a:lin@ang`, 60000ths -> deg). */
|
|
4112
|
+
angle?: number;
|
|
4113
|
+
/** Gradient family: linear (`a:lin`) or radial (`a:path`). */
|
|
4114
|
+
type: 'linear' | 'radial';
|
|
4115
|
+
}
|
|
4116
|
+
/** A preset pattern fill parsed from a table style section's `a:pattFill`. */
|
|
4117
|
+
interface ParsedTableStylePattern {
|
|
4118
|
+
/** OOXML preset name (e.g. `ltDnDiag`) from `a:pattFill@prst`. */
|
|
4119
|
+
preset: string;
|
|
4120
|
+
/** Foreground colour (`a:fgClr`). */
|
|
4121
|
+
foreground?: ParsedTableStyleFill;
|
|
4122
|
+
/** Background colour (`a:bgClr`). */
|
|
4123
|
+
background?: ParsedTableStyleFill;
|
|
3889
4124
|
}
|
|
3890
4125
|
/**
|
|
3891
4126
|
* A single entry in the parsed table style map.
|
|
@@ -3912,12 +4147,67 @@ interface ParsedTableStyleText {
|
|
|
3912
4147
|
bold?: boolean;
|
|
3913
4148
|
/** Font italic. */
|
|
3914
4149
|
italic?: boolean;
|
|
4150
|
+
/** Font underline (from `a:tcTxStyle@u`, any value other than `none`). */
|
|
4151
|
+
underline?: boolean;
|
|
3915
4152
|
/** Font colour as theme scheme key. */
|
|
3916
4153
|
fontSchemeColor?: string;
|
|
3917
4154
|
/** Font colour tint (0-100 000). */
|
|
3918
4155
|
fontTint?: number;
|
|
3919
4156
|
/** Font colour shade (0-100 000). */
|
|
3920
4157
|
fontShade?: number;
|
|
4158
|
+
/** Explicit sRGB hex font colour (e.g. `#FF0000`) from `a:srgbClr`. */
|
|
4159
|
+
fontColor?: string;
|
|
4160
|
+
/** Typeface from `a:font@typeface` (latin font). */
|
|
4161
|
+
fontFace?: string;
|
|
4162
|
+
/** Font-collection index from `a:fontRef@idx` (`minor`, `major`, `none`). */
|
|
4163
|
+
fontRefIdx?: string;
|
|
4164
|
+
}
|
|
4165
|
+
/**
|
|
4166
|
+
* A single border side within a table style's `a:tcStyle/a:tcBdr`.
|
|
4167
|
+
*
|
|
4168
|
+
* Corresponds to one of `a:left`, `a:right`, `a:top`, `a:bottom`,
|
|
4169
|
+
* `a:insideH`, `a:insideV`, `a:tl2br`, `a:bl2tr` (each a
|
|
4170
|
+
* `CT_ThemeableLineStyle` wrapping an `a:ln`).
|
|
4171
|
+
*
|
|
4172
|
+
* @example
|
|
4173
|
+
* ```ts
|
|
4174
|
+
* const side: ParsedTableStyleBorder = {
|
|
4175
|
+
* width: 1,
|
|
4176
|
+
* dash: 'solid',
|
|
4177
|
+
* fill: { schemeColor: 'lt1' },
|
|
4178
|
+
* };
|
|
4179
|
+
* // => satisfies ParsedTableStyleBorder
|
|
4180
|
+
* ```
|
|
4181
|
+
*/
|
|
4182
|
+
interface ParsedTableStyleBorder {
|
|
4183
|
+
/** Line width in px (converted from the `a:ln@w` EMU value). */
|
|
4184
|
+
width?: number;
|
|
4185
|
+
/** OOXML `a:prstDash@val` (e.g. `solid`, `dash`, `sysDot`). */
|
|
4186
|
+
dash?: string;
|
|
4187
|
+
/** Border colour as a theme scheme fill (from `a:ln/a:solidFill/a:schemeClr`). */
|
|
4188
|
+
fill?: ParsedTableStyleFill;
|
|
4189
|
+
/** Explicit hex colour when the line used `a:srgbClr` (e.g. `#808080`). */
|
|
4190
|
+
color?: string;
|
|
4191
|
+
/** The line was `a:noFill` — an explicit "no border" that clears lower layers. */
|
|
4192
|
+
noFill?: boolean;
|
|
4193
|
+
}
|
|
4194
|
+
/**
|
|
4195
|
+
* The set of border sides parsed from a table style section's
|
|
4196
|
+
* `a:tcStyle/a:tcBdr` element.
|
|
4197
|
+
*/
|
|
4198
|
+
interface ParsedTableStyleBorders {
|
|
4199
|
+
left?: ParsedTableStyleBorder;
|
|
4200
|
+
right?: ParsedTableStyleBorder;
|
|
4201
|
+
top?: ParsedTableStyleBorder;
|
|
4202
|
+
bottom?: ParsedTableStyleBorder;
|
|
4203
|
+
/** Interior horizontal borders between rows in the region. */
|
|
4204
|
+
insideH?: ParsedTableStyleBorder;
|
|
4205
|
+
/** Interior vertical borders between columns in the region. */
|
|
4206
|
+
insideV?: ParsedTableStyleBorder;
|
|
4207
|
+
/** Top-left to bottom-right diagonal. */
|
|
4208
|
+
tl2br?: ParsedTableStyleBorder;
|
|
4209
|
+
/** Bottom-left to top-right diagonal. */
|
|
4210
|
+
bl2tr?: ParsedTableStyleBorder;
|
|
3921
4211
|
}
|
|
3922
4212
|
/**
|
|
3923
4213
|
* Table background style (CT_TableBackgroundStyle, ECMA-376 §21.1.3.7).
|
|
@@ -3953,6 +4243,24 @@ interface ParsedTableStyleEntry {
|
|
|
3953
4243
|
swCellFill?: ParsedTableStyleFill;
|
|
3954
4244
|
neCellFill?: ParsedTableStyleFill;
|
|
3955
4245
|
nwCellFill?: ParsedTableStyleFill;
|
|
4246
|
+
/**
|
|
4247
|
+
* Per-role border styling from `a:tcStyle/a:tcBdr`. These supply the
|
|
4248
|
+
* gridlines/edges a styled table inherits from its table style when the
|
|
4249
|
+
* cells carry no explicit per-cell `a:lnX` overrides.
|
|
4250
|
+
*/
|
|
4251
|
+
wholeTblBorders?: ParsedTableStyleBorders;
|
|
4252
|
+
firstRowBorders?: ParsedTableStyleBorders;
|
|
4253
|
+
lastRowBorders?: ParsedTableStyleBorders;
|
|
4254
|
+
firstColBorders?: ParsedTableStyleBorders;
|
|
4255
|
+
lastColBorders?: ParsedTableStyleBorders;
|
|
4256
|
+
band1HBorders?: ParsedTableStyleBorders;
|
|
4257
|
+
band2HBorders?: ParsedTableStyleBorders;
|
|
4258
|
+
band1VBorders?: ParsedTableStyleBorders;
|
|
4259
|
+
band2VBorders?: ParsedTableStyleBorders;
|
|
4260
|
+
seCellBorders?: ParsedTableStyleBorders;
|
|
4261
|
+
swCellBorders?: ParsedTableStyleBorders;
|
|
4262
|
+
neCellBorders?: ParsedTableStyleBorders;
|
|
4263
|
+
nwCellBorders?: ParsedTableStyleBorders;
|
|
3956
4264
|
/** Per-role text styling from a:tcTxStyle. */
|
|
3957
4265
|
wholeTblText?: ParsedTableStyleText;
|
|
3958
4266
|
firstRowText?: ParsedTableStyleText;
|
|
@@ -4766,10 +5074,30 @@ interface PptxNativeAnimation {
|
|
|
4766
5074
|
presetClass?: 'entr' | 'exit' | 'emph' | 'path';
|
|
4767
5075
|
/** Effect preset sub-type identifier. */
|
|
4768
5076
|
presetId?: number;
|
|
5077
|
+
/**
|
|
5078
|
+
* Effect preset direction/variant code from `p:cTn/@presetSubtype`
|
|
5079
|
+
* (ECMA-376 CT_TLCommonTimeNodeData). For Fly In/Out this encodes the
|
|
5080
|
+
* edge/corner the object travels from as a bitmask (1=top, 2=right,
|
|
5081
|
+
* 4=bottom, 8=left; corners combine bits). Absent means the preset default.
|
|
5082
|
+
*/
|
|
5083
|
+
presetSubtype?: number;
|
|
4769
5084
|
/** Duration in milliseconds. */
|
|
4770
5085
|
durationMs?: number;
|
|
4771
5086
|
/** Delay in milliseconds. */
|
|
4772
5087
|
delayMs?: number;
|
|
5088
|
+
/**
|
|
5089
|
+
* Acceleration fraction in the range 0..1, parsed from `p:cTn/@accel`
|
|
5090
|
+
* (ST_PositiveFixedPercentage, stored as 1000ths of a percent). A non-zero
|
|
5091
|
+
* value means the effect eases in (starts slow). Absent means no easing-in.
|
|
5092
|
+
*/
|
|
5093
|
+
accel?: number;
|
|
5094
|
+
/**
|
|
5095
|
+
* Deceleration fraction in the range 0..1, parsed from `p:cTn/@decel`.
|
|
5096
|
+
* A non-zero value means the effect eases out (ends slow). Absent means no
|
|
5097
|
+
* easing-out. When both {@link accel} and {@link decel} are set, the effect
|
|
5098
|
+
* eases in and out.
|
|
5099
|
+
*/
|
|
5100
|
+
decel?: number;
|
|
4773
5101
|
/** Trigger delay in milliseconds (for afterDelay). */
|
|
4774
5102
|
triggerDelayMs?: number;
|
|
4775
5103
|
/** SVG path string for motion path animations (`p:animMotion/@path`). */
|
|
@@ -5682,7 +6010,7 @@ interface PptxThemeObjectDefaults {
|
|
|
5682
6010
|
* // => "morph" — one of 40+ transition effects
|
|
5683
6011
|
* ```
|
|
5684
6012
|
*/
|
|
5685
|
-
type PptxTransitionType = 'none' | 'cut' | 'fade' | 'push' | 'wipe' | 'split' | 'randomBar' | 'blinds' | 'checker' | 'circle' | 'comb' | 'cover' | 'diamond' | 'dissolve' | 'plus' | 'pull' | 'random' | 'strips' | 'uncover' | 'wedge' | 'wheel' | 'zoom' | 'newsflash' | 'morph' | 'conveyor' | 'doors' | 'ferris' | 'flash' | 'flythrough' | 'gallery' | 'glitter' | 'honeycomb' | 'pan' | 'prism' | 'reveal' | 'ripple' | 'shred' | 'switch' | 'vortex' | 'warp' | 'wheelReverse' | 'window' | 'cube' | 'flip' | 'rotate' | 'orbit';
|
|
6013
|
+
type PptxTransitionType = 'none' | 'cut' | 'fade' | 'push' | 'wipe' | 'split' | 'randomBar' | 'blinds' | 'checker' | 'circle' | 'comb' | 'cover' | 'diamond' | 'dissolve' | 'plus' | 'pull' | 'random' | 'strips' | 'uncover' | 'wedge' | 'wheel' | 'zoom' | 'newsflash' | 'morph' | 'conveyor' | 'doors' | 'ferris' | 'flash' | 'flythrough' | 'gallery' | 'glitter' | 'honeycomb' | 'pan' | 'prism' | 'reveal' | 'ripple' | 'shred' | 'switch' | 'vortex' | 'warp' | 'wheelReverse' | 'window' | 'cube' | 'flip' | 'rotate' | 'orbit' | 'fallOver' | 'drape' | 'curtains' | 'wind' | 'prestige' | 'fracture' | 'crush' | 'peelOff' | 'pageCurlDouble' | 'pageCurlSingle' | 'airplane' | 'origami';
|
|
5686
6014
|
/** Cardinal direction tokens from OOXML transition `@_dir`. */
|
|
5687
6015
|
type PptxTransitionDirection4 = 'l' | 'r' | 'u' | 'd';
|
|
5688
6016
|
/** 8-way direction tokens (cardinal + diagonal) for cover/uncover. */
|
|
@@ -6610,5 +6938,5 @@ declare function replaceTextInSlide(slide: PptxSlide, search: string | RegExp, r
|
|
|
6610
6938
|
*/
|
|
6611
6939
|
declare function replaceText(slides: PptxSlide[], search: string | RegExp, replacement: string): number;
|
|
6612
6940
|
//#endregion
|
|
6613
|
-
export { PptxPresentationPrintProperties as $,
|
|
6614
|
-
//# sourceMappingURL=text-operations-
|
|
6941
|
+
export { PptxPresentationPrintProperties as $, CustomGeometrySegment as $i, PptxSmartArtForEach as $n, PptxChartLegendEntry as $r, OlePptxElement as $t, PptxViewGuide as A, PptxChartTickMark as Ai, PptxSmartArtDrawingShape as An, EffectDagRawLeaf as Ar, PptxNativeAnimation as At, PptxTransitionSpeed as B, ShapeStyle as Bi, PptxSmartArtDefinitionCategory as Bn, PptxChartDataLabel as Br, PptxSlideMaster as Bt, PptxSlide as C, PptxChartPageSetup as Ci, PptxTableCell as Cn, EffectDagBlend as Cr, PptxAnimationSequence as Ct, PptxGridSpacing as D, PptxChartPivotFormat as Di, PptxSmartArtChrome as Dn, EffectDagContainerType as Dr, PptxColorAnimation as Dt, PptxCommonSlideViewProperties as E, PptxChartPivotSource as Ei, PptxTableRow as En, EffectDagContainer as Er, PptxAnimationTrigger as Et, PptxSplitDirection as F, PptxTextProperties as Fi, SmartArtStyle as Fn, PptxChartAxisFormatting as Fr, PptxHandoutMaster as Ft, PptxThemeEffectStyle as G, PptxTextWarpPreset as Gi, PptxSmartArtQuickStyleLabel as Gn, PptxChartDateCategories as Gr, ContentPartInkStroke as Gt, TRANSITION_VALID_DIRECTIONS as H, MaterialPresetType as Hi, PptxSmartArtDefinitionText as Hn, PptxChartDataLabelPosition as Hr, PptxThemeOption as Ht, PptxSplitOrientation as I, BulletInfo as Ii, PptxSmartArtColorApplicationMethod as In, PptxChartAxisNumFmt as Ir, PptxHeaderFooterFlags as It, PptxThemeFontScheme as J, AdjustHandleXY as Ji, PptxSmartArtTextParagraph as Jn, PptxChartErrBarType as Jr, ImagePptxElement as Jt, PptxThemeFillStyle as K, Text3DStyle as Ki, PptxSmartArtNode as Kn, PptxChartDisplayUnitsLabel as Kr, ContentPartPptxElement as Kt, PptxStripDirection as L, TextSegment as Li, PptxSmartArtColorListMetadata as Ln, PptxChartBoxWhiskerOptions as Lr, PptxMasterTextStyles as Lt, PptxViewProperties as M, PlaceholderTextLevelStyle as Mi, SmartArtColorScheme as Mn, EffectDagXfrm as Mr, PptxTextAnimationTarget as Mt, PptxViewScale as N, PptxElementBase as Ni, SmartArtLayout as Nn, PptxBubbleChartOptions as Nr, PptxTextBuildType as Nt, PptxNormalViewProperties as O, PptxChartPivotFormats as Oi, PptxSmartArtConnection as On, EffectDagNode as Or, PptxElementAnimation as Ot, PptxSlideTransition as P, PptxShapeProperties as Pi, SmartArtLayoutType as Pn, PptxChart3DSurface as Pr, MasterViewTab as Pt, THEME_COLOR_SCHEME_KEYS as Q, CustomGeometryRawData as Qi, PptxSmartArtChoose as Qn, PptxChartLayouts as Qr, OleObjectType as Qt, PptxTransitionDirection4 as R, TextStyle as Ri, PptxSmartArtColorStyleLabel as Rn, PptxChartChrome as Rr, PptxNotesMaster as Rt, PptxSection as S, PptxChartPageMargins as Si, ParsedTableStyleText as Sn, EffectDagAlphaOutset as Sr, PptxAnimationRepeatMode as St, PptxSlideSyncProperties as T, PptxChartPrintSettings as Ti, PptxTableData as Tn, EffectDagBlur as Tr, PptxAnimationTimingCurve as Tt, PptxTheme as U, Pptx3DScene as Ui, PptxSmartArtHueDirection as Un, PptxChartDataPoint as Ur, ChartPptxElement as Ut, PptxTransitionType as V, BevelPresetType as Vi, PptxSmartArtDefinitionMetadata as Vn, PptxChartDataLabelOptions as Vr, PptxTextStyleLevels as Vt, PptxThemeColorScheme as W, Pptx3DShape as Wi, PptxSmartArtQuickStyle as Wn, PptxChartDataTable as Wr, ConnectorPptxElement as Wt, PptxThemeLineStyle as X, CustomGeometryPath as Xi, PptxSmartArtTextRun as Xn, PptxChartErrValType as Xr, MediaPptxElement as Xt, PptxThemeFormatScheme as Y, ConnectionSite as Yi, PptxSmartArtTextParagraphItem as Yn, PptxChartErrBars as Yr, InkPptxElement as Yt, PptxThemeObjectDefaults as Z, CustomGeometryPoint as Zi, PptxSmartArtAlgorithmParameter as Zn, PptxChartHistogramOptions as Zr, Model3DPptxElement as Zt, PptxLayoutOption as _, PptxChartView3D as _i, ParsedTableStyleFill as _n, PptxMediaReferenceKind as _r, PptxAfterAnimationAction as _t, MergeOptions as a, PptxDrawingGuide as aa, PptxChartOfPieOptions as ai, PptxImageLikeElement as an, PptxSmartArtLocalizedText as ar, PptxCompatibilityWarning as at, PptxPhotoAlbum as b, PptxExternalData as bi, ParsedTableStyleMap as bn, PptxImageEffects as br, PptxAnimationKeyframe as bt, PptxCustomShow as c, ShadowEffect as ca, PptxChartSeries as ci, SummaryZoomTarget as cn, PptxSmartArtConstraintOperator as cr, PptxModernCommentAuthor as ct, PptxData as d, XmlObject as da, PptxChartTreemapOptions as di, UnknownPptxElement as dn, PptxSmartArtConstraintTarget as dr, PptxEmbeddedFontDataId as dt, CustomGeometryTextRect as ea, PptxChartLegendTextStyle as ei, PicturePptxElement as en, PptxSmartArtIteratorAttributes as er, PptxPrintColorMode as et, PptxEmbeddedFont as f, ActionButtonPreset as fa, PptxChartTrendline as fi, ZoomPptxElement as fn, PptxSmartArtNumericRule as fr, PptxEmbeddedFontDescriptor as ft, PptxKinsoku as g, PptxChartUpDownBars as gi, ParsedTableStyleEntry as gn, PptxAudioCdPosition as gr, AnimationConditionEvent as gt, PptxHeaderFooter as h, PptxAction as ha, PptxChartType as hi, ParsedTableStyleBorders as hn, MediaMetadata as hr, AnimationCondition as ht, replaceTextInSlide as i, ConnectorConnectionPoint as ia, PptxChartMarkerSymbol as ii, PptxGraphicFrameExtension as in, PptxSmartArtLayoutNode as ir, PptxCommentAuthor as it, PptxViewOrigin as j, PlaceholderDefaults as ji, PptxSmartArtPresLayoutVars as jn, EffectDagRelOff as jr, PptxNativeAnimationKind as jt, PptxRestoredRegion as k, PptxChartAxisLabelFormatting as ki, PptxSmartArtData as kn, EffectDagPresetShadow as kr, PptxGraphicBuild as kt, PptxCustomXmlPart as l, StrokeDashType as la, PptxChartShapeProps as li, TablePptxElement as ln, PptxSmartArtConstraintPointType as lr, PptxTag as lt, PptxExportOptions as m, ElementActionType as ma, PptxChartTrendlineType as mi, ParsedTableStyleBorder as mn, MediaCaptionTrack as mr, PptxEmbeddedFontListEntry as mt, findText as n, PptxCustomPathProperties as na, PptxChartManualLayout as ni, PptxElementWithShapeStyle as nn, PptxSmartArtLayoutCategory as nr, PptxAppProperties as nt, mergePresentation as o, PptxElementType as oa, PptxChartParentLabelLayout as oi, ShapePptxElement as on, PptxSmartArtWhen as or, PptxCoreProperties as ot, PptxExportFormat as p, ElementAction as pa, PptxChartTrendlineLabel as pi, ParsedTableBackground as pn, MediaBookmark as pr, PptxEmbeddedFontList as pt, PptxThemeFontGroup as q, AdjustHandlePolar as qi, PptxSmartArtNodeStyle as qn, PptxChartErrBarDir as qr, GroupPptxElement as qt, replaceText as r, ConnectorArrowType as ra, PptxChartMarker as ri, PptxElementWithText as rn, PptxSmartArtLayoutDefinition as rr, PptxComment as rt, PptxActiveXControl as s, PptxShapeLocks as sa, PptxChartRegionMapOptions as si, SmartArtPptxElement as sn, PptxSmartArtConstraint as sr, PptxCustomProperty as st, FindResult as t, GeometryAdjustmentHandle as ta, PptxChartLineStyle as ti, PptxElement as tn, PptxSmartArtLayoutAlgorithm as tr, PptxPrintOutput as tt, PptxCustomerData as u, UnderlineStyle as ua, PptxChartStyle as ui, TextPptxElement as un, PptxSmartArtConstraintRelationship as ur, PptxTagCollection as ut, PptxModernCommentPart as v, PptxChartWaterfallOptions as vi, ParsedTableStyleGradient as vn, PptxMediaType as vr, PptxAnimationDirection as vt, PptxSlideBackgroundPattern as w, PptxChartPrintHeaderFooter as wi, PptxTableCellStyle as wn, EffectDagBlendMode as wr, PptxAnimationTarget as wt, PptxPresentationProperties as x, PptxChartProtection as xi, ParsedTableStylePattern as xn, PptxImageProperties as xr, PptxAnimationPreset as xt, PptxModifyVerifier as y, PptxEmbeddedWorkbookData as yi, ParsedTableStyleGradientStop as yn, PptxCropShape as yr, PptxAnimationIterate as yt, PptxTransitionDirection8 as z, PptxCustomDashSegment as zi, PptxSmartArtColorTransform as zn, PptxChartData as zr, PptxSlideLayout as zt };
|
|
6942
|
+
//# sourceMappingURL=text-operations-XE73CjX0.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"text-operations-XE73CjX0.d.ts","names":[],"sources":["../src/core/types/actions.ts","../src/core/types/common.ts","../src/core/types/geometry.ts","../src/core/types/three-d.ts","../src/core/types/shape-style.ts","../src/core/types/text.ts","../src/core/types/element-base.ts","../src/core/types/chart-axis.ts","../src/core/types/chart-pivot-format.ts","../src/core/types/chart-pivot-source.ts","../src/core/types/chart-print-settings.ts","../src/core/types/chart-protection.ts","../src/core/types/chart.ts","../src/core/types/effect-dag.ts","../src/core/types/image.ts","../src/core/types/media.ts","../src/core/types/smart-art-constraint-rules.ts","../src/core/types/smart-art-layout-definition.ts","../src/core/types/smart-art-node.ts","../src/core/types/smart-art-style-definition.ts","../src/core/types/smart-art.ts","../src/core/types/table.ts","../src/core/types/elements.ts","../src/core/types/masters.ts","../src/core/types/animation.ts","../src/core/types/embedded-font.ts","../src/core/types/metadata.ts","../src/core/types/presentation-print-properties.ts","../src/core/types/theme.ts","../src/core/types/transition.ts","../src/core/types/view-properties.ts","../src/core/types/presentation.ts","../src/core/builders/sdk/merge-operations.ts","../src/core/builders/sdk/text-operations.ts"],"mappings":"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"}
|