pptx-svelte-viewer 3.2.2 → 3.3.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 +18 -0
- package/dist/{AiChatPanel-Cp5trzd7.js → AiChatPanel-D1kCyNeI.js} +1 -1
- package/dist/{export-Cwm0F4Ug.js → export-CL58Fm_4.js} +27556 -25603
- package/dist/i18n.js +1 -1
- package/dist/index.d.ts +170 -17
- package/dist/index.js +2 -2
- package/dist/{translator-Cvwv7iQG.js → translator-i8zxb8S8.js} +47 -5
- package/dist/viewer/index.d.ts +186 -19
- package/dist/viewer/index.js +1 -1
- package/dist/viewer/state/google-webfonts.d.ts +23 -0
- package/dist/viewer/state/google-webfonts.d.ts.map +1 -0
- package/dist/viewer/state/viewer-effects.svelte.d.ts.map +1 -1
- package/package.json +4 -4
package/dist/i18n.js
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -221,6 +221,12 @@ interface PptxShapeLocks {
|
|
|
221
221
|
* `a:spLocks` / `a:picLocks` / `a:cxnSpLocks` / `a:grpSpLocks`.
|
|
222
222
|
*/
|
|
223
223
|
noDrilldown?: boolean;
|
|
224
|
+
/**
|
|
225
|
+
* `a:picLocks/@noCrop`: forbids cropping the picture. Declared ONLY by
|
|
226
|
+
* `CT_PictureLocking`, so it is written for pictures (and media authored as
|
|
227
|
+
* a `p:pic`) and never onto the other lock elements.
|
|
228
|
+
*/
|
|
229
|
+
noCrop?: boolean;
|
|
224
230
|
/**
|
|
225
231
|
* Text-box flag from `p:cNvSpPr/@txBox`. Not a lock in the strict sense,
|
|
226
232
|
* but it lives on the same non-visual-properties node as `a:spLocks`, so
|
|
@@ -2162,13 +2168,32 @@ interface PlaceholderTextLevelStyle {
|
|
|
2162
2168
|
bulletSizePercent?: number;
|
|
2163
2169
|
/** Bullet colour from `a:buClr` as hex string. */
|
|
2164
2170
|
bulletColor?: string;
|
|
2171
|
+
/**
|
|
2172
|
+
* The colour-choice node inside `a:buClr` this level's {@link bulletColor}
|
|
2173
|
+
* resolved from (`a:schemeClr` / `a:sysClr` / `a:prstClr` / `a:srgbClr`,
|
|
2174
|
+
* transforms included), mirroring `BulletInfo.colorXml`. Re-emitted
|
|
2175
|
+
* verbatim on save so a themed bullet is not downgraded to a literal
|
|
2176
|
+
* `a:srgbClr`. Absent when the level declares no bullet colour.
|
|
2177
|
+
*/
|
|
2178
|
+
bulletColorXml?: XmlObject;
|
|
2165
2179
|
/** Bullet size in points from `a:buSzPts`. */
|
|
2166
2180
|
bulletSizePts?: number;
|
|
2167
2181
|
/** True when `a:buNone` is present at this level. */
|
|
2168
2182
|
bulletNone?: boolean;
|
|
2169
2183
|
marginLeft?: number;
|
|
2184
|
+
/** Paragraph right margin in px (from `@_marR` EMU). */
|
|
2185
|
+
marginRight?: number;
|
|
2170
2186
|
indent?: number;
|
|
2187
|
+
/**
|
|
2188
|
+
* Paragraph alignment as a `TextStyle['align']` token (`left`, `center`,
|
|
2189
|
+
* `right`, `justify`, `justLow`, `dist`, `thaiDist`), never the raw OOXML
|
|
2190
|
+
* `@algn` value.
|
|
2191
|
+
*/
|
|
2171
2192
|
alignment?: string;
|
|
2193
|
+
/** Right-to-left paragraph direction (`@rtl`). */
|
|
2194
|
+
rtl?: boolean;
|
|
2195
|
+
/** Tab stops from `a:tabLst/a:tab` (positions in px). */
|
|
2196
|
+
tabStops?: TextStyle['tabStops'];
|
|
2172
2197
|
lineSpacing?: number;
|
|
2173
2198
|
lineSpacingExactPt?: number;
|
|
2174
2199
|
spaceBefore?: number;
|
|
@@ -2394,6 +2419,20 @@ type PptxChartType = 'bar' | 'line' | 'pie' | 'ofPie' | 'doughnut' | 'area' | 's
|
|
|
2394
2419
|
* ```
|
|
2395
2420
|
*/
|
|
2396
2421
|
type PptxChartBarDirection = 'col' | 'bar';
|
|
2422
|
+
/**
|
|
2423
|
+
* 3-D bar/column shape (OOXML `ST_Shape`, `c:bar3DChart/c:shape/@val` or a
|
|
2424
|
+
* per-series `c:ser/c:shape` override). `coneToMax` / `pyramidToMax` scale
|
|
2425
|
+
* the cone/pyramid so it reaches full height at the value axis maximum,
|
|
2426
|
+
* appearing truncated below it; the plain `cone`/`pyramid` always come to a
|
|
2427
|
+
* full point at the bar's own value.
|
|
2428
|
+
*
|
|
2429
|
+
* @example
|
|
2430
|
+
* ```ts
|
|
2431
|
+
* const shape: PptxBar3DShape = "cylinder";
|
|
2432
|
+
* // => "cylinder", one of: "box" | "cone" | "coneToMax" | "cylinder" | "pyramid" | "pyramidToMax"
|
|
2433
|
+
* ```
|
|
2434
|
+
*/
|
|
2435
|
+
type PptxBar3DShape = 'box' | 'cone' | 'coneToMax' | 'cylinder' | 'pyramid' | 'pyramidToMax';
|
|
2397
2436
|
/**
|
|
2398
2437
|
* Supported trendline regression types.
|
|
2399
2438
|
*
|
|
@@ -2822,6 +2861,12 @@ interface PptxChartSeries {
|
|
|
2822
2861
|
* series.
|
|
2823
2862
|
*/
|
|
2824
2863
|
seriesChartType?: PptxChartType;
|
|
2864
|
+
/**
|
|
2865
|
+
* Per-series 3-D bar/column shape override (`c:ser/c:shape`), legal only
|
|
2866
|
+
* inside a bar3D chart-type container. Overrides {@link PptxChartData.barShape}
|
|
2867
|
+
* for this series alone.
|
|
2868
|
+
*/
|
|
2869
|
+
shape?: PptxBar3DShape;
|
|
2825
2870
|
boxWhiskerOptions?: PptxChartBoxWhiskerOptions;
|
|
2826
2871
|
histogramOptions?: PptxChartHistogramOptions;
|
|
2827
2872
|
waterfallOptions?: PptxChartWaterfallOptions;
|
|
@@ -3123,6 +3168,28 @@ interface PptxChartData {
|
|
|
3123
3168
|
* default), so only horizontal bar charts need to carry the field.
|
|
3124
3169
|
*/
|
|
3125
3170
|
barDirection?: PptxChartBarDirection;
|
|
3171
|
+
/**
|
|
3172
|
+
* 3-D bar/column shape (`c:bar3DChart/c:shape/@val`). Bar3D only; a plain
|
|
3173
|
+
* bar chart has no `c:shape` element. A per-series `c:ser/c:shape`
|
|
3174
|
+
* ({@link PptxChartSeries.shape}) overrides this for that series.
|
|
3175
|
+
*/
|
|
3176
|
+
barShape?: PptxBar3DShape;
|
|
3177
|
+
/**
|
|
3178
|
+
* Radar chart drawing style (`c:radarChart/c:radarStyle/@val`). `standard`
|
|
3179
|
+
* draws an outline only, `marker` adds markers at each vertex (PowerPoint's
|
|
3180
|
+
* own default for every radar chart it authors), and `filled` paints the
|
|
3181
|
+
* enclosed polygon with the series fill and omits markers. Radar only.
|
|
3182
|
+
*/
|
|
3183
|
+
radarStyle?: 'standard' | 'marker' | 'filled';
|
|
3184
|
+
/**
|
|
3185
|
+
* Whether a surface chart renders as a wireframe grid rather than a solid
|
|
3186
|
+
* coloured surface (`c:surfaceChart/c:wireframe/@val` or
|
|
3187
|
+
* `c:surface3DChart/c:wireframe/@val`, both modeled as chart type
|
|
3188
|
+
* `"surface"`). A `CT_Boolean` element: absent from the source XML
|
|
3189
|
+
* defaults to `true` per schema, so `undefined` here means "not present in
|
|
3190
|
+
* the source" and callers should treat it as `true`. Surface only.
|
|
3191
|
+
*/
|
|
3192
|
+
wireframe?: boolean;
|
|
3126
3193
|
/**
|
|
3127
3194
|
* Scatter presentation mode (`c:scatterChart/c:scatterStyle/@val`).
|
|
3128
3195
|
*
|
|
@@ -3320,6 +3387,26 @@ interface PptxBackgroundRemovalMark {
|
|
|
3320
3387
|
* // => retains the middle of the image; the marks list stays empty
|
|
3321
3388
|
* ```
|
|
3322
3389
|
*/
|
|
3390
|
+
/**
|
|
3391
|
+
* Snapshot of the a14 Corrections / Color panel values as they were read from
|
|
3392
|
+
* the file, kept on {@link PptxImageEffects.prerenderedCorrections} so a
|
|
3393
|
+
* renderer can tell a baked-in value from one changed in this library.
|
|
3394
|
+
*/
|
|
3395
|
+
interface PptxImagePrerenderedCorrections {
|
|
3396
|
+
sharpenSoften?: {
|
|
3397
|
+
amount: number;
|
|
3398
|
+
};
|
|
3399
|
+
brightnessContrast?: {
|
|
3400
|
+
bright?: number;
|
|
3401
|
+
contrast?: number;
|
|
3402
|
+
};
|
|
3403
|
+
colorTemperature?: {
|
|
3404
|
+
colorTemp: number;
|
|
3405
|
+
};
|
|
3406
|
+
colorSaturation?: {
|
|
3407
|
+
sat: number;
|
|
3408
|
+
};
|
|
3409
|
+
}
|
|
3323
3410
|
interface PptxBackgroundRemoval {
|
|
3324
3411
|
/** Top edge of the retained rectangle (0..1 fraction of the image height). */
|
|
3325
3412
|
top: number;
|
|
@@ -3386,18 +3473,71 @@ interface PptxImageEffects {
|
|
|
3386
3473
|
*/
|
|
3387
3474
|
backgroundRemoval?: PptxBackgroundRemoval;
|
|
3388
3475
|
/**
|
|
3389
|
-
* `a14:imgLayer/@r:embed
|
|
3476
|
+
* `a14:imgLayer/@r:embed`: relationship id of the PRISTINE original image
|
|
3390
3477
|
* the baked effects were derived from (PowerPoint stores it as an HD Photo
|
|
3391
3478
|
* `.wdp` part, which browsers cannot decode).
|
|
3392
3479
|
*/
|
|
3393
3480
|
originalImageRelId?: string;
|
|
3481
|
+
/**
|
|
3482
|
+
* PowerPoint 2010+ Corrections panel "Sharpen/Soften"
|
|
3483
|
+
* (`a14:sharpenSoften/@amount`). Raw as the XML carries it: 1/1000ths of a
|
|
3484
|
+
* percent, `-100000` (fully softened) .. `100000` (fully sharpened).
|
|
3485
|
+
* Edit-time metadata like the artistic effects: PowerPoint bakes the result
|
|
3486
|
+
* into the stored bitmap.
|
|
3487
|
+
*/
|
|
3488
|
+
sharpenSoften?: {
|
|
3489
|
+
amount: number;
|
|
3490
|
+
};
|
|
3491
|
+
/**
|
|
3492
|
+
* PowerPoint 2010+ Corrections panel "Brightness/Contrast"
|
|
3493
|
+
* (`a14:brightnessContrast/@bright`, `@contrast`). Raw 1/1000ths of a
|
|
3494
|
+
* percent, `-100000` .. `100000`. Distinct from the legacy `a:blip/@bright`
|
|
3495
|
+
* + `@contrast` pair in {@link PptxImageEffects.brightness} /
|
|
3496
|
+
* {@link PptxImageEffects.contrast}, which PowerPoint 2007 wrote and which
|
|
3497
|
+
* a renderer still applies.
|
|
3498
|
+
*/
|
|
3499
|
+
brightnessContrast?: {
|
|
3500
|
+
bright?: number;
|
|
3501
|
+
contrast?: number;
|
|
3502
|
+
};
|
|
3503
|
+
/**
|
|
3504
|
+
* PowerPoint 2010+ Color panel "Color Tone"
|
|
3505
|
+
* (`a14:colorTemperature/@colorTemp`). Raw Kelvin value, `1500` .. `11500`;
|
|
3506
|
+
* `6500` is neutral.
|
|
3507
|
+
*/
|
|
3508
|
+
colorTemperature?: {
|
|
3509
|
+
colorTemp: number;
|
|
3510
|
+
};
|
|
3511
|
+
/**
|
|
3512
|
+
* PowerPoint 2010+ Color panel "Color Saturation" (`a14:saturation/@sat`).
|
|
3513
|
+
* Raw 1/1000ths of a percent: `100000` is unchanged, `0` is grayscale,
|
|
3514
|
+
* `400000` the maximum. Named `colorSaturation` because
|
|
3515
|
+
* {@link PptxImageEffects.saturation} is the viewer-side -100..100 knob
|
|
3516
|
+
* that has no OOXML counterpart.
|
|
3517
|
+
*/
|
|
3518
|
+
colorSaturation?: {
|
|
3519
|
+
sat: number;
|
|
3520
|
+
};
|
|
3521
|
+
/**
|
|
3522
|
+
* The Corrections / Color panel values ALREADY baked into the image data,
|
|
3523
|
+
* which a renderer must not apply a second time. The a14 counterpart of
|
|
3524
|
+
* {@link PptxImageEffects.artisticPrerenderedEffect}: PowerPoint writes the
|
|
3525
|
+
* corrected bitmap to the main `a:blip` and keeps the pristine original in
|
|
3526
|
+
* `a14:imgLayer` (measured on a real deck: the stored PNG is a monotone tonal
|
|
3527
|
+
* transform of the `.wdp` original, slope 0.7 for `contrast="-40000"`).
|
|
3528
|
+
*
|
|
3529
|
+
* Holds the VALUES rather than a boolean so that changing one of the four
|
|
3530
|
+
* fields in this library's inspector still renders: a field that differs
|
|
3531
|
+
* from its snapshot is applied, one that matches is skipped.
|
|
3532
|
+
*/
|
|
3533
|
+
prerenderedCorrections?: PptxImagePrerenderedCorrections;
|
|
3394
3534
|
/** Alpha modulation fixed: non-negative percentage (100 means unchanged opacity). */
|
|
3395
3535
|
alphaModFix?: number;
|
|
3396
3536
|
/** Original alpha modulation fixed node, including foreign attributes. */
|
|
3397
3537
|
alphaModFixRawXml?: XmlObject;
|
|
3398
|
-
/** Bi-level threshold
|
|
3538
|
+
/** Bi-level threshold: converts to 1-bit black/white (0-100). */
|
|
3399
3539
|
biLevel?: number;
|
|
3400
|
-
/** Colour change
|
|
3540
|
+
/** Colour change: swap one colour range for another (used for transparency keying). */
|
|
3401
3541
|
clrChange?: {
|
|
3402
3542
|
clrFrom: string;
|
|
3403
3543
|
clrTo: string;
|
|
@@ -3420,11 +3560,11 @@ interface PptxImageEffects {
|
|
|
3420
3560
|
/** Original effect XML, including colour transforms and foreign attributes. */
|
|
3421
3561
|
rawXml?: XmlObject;
|
|
3422
3562
|
};
|
|
3423
|
-
/** Alpha ceiling (`a:alphaCeiling`)
|
|
3563
|
+
/** Alpha ceiling (`a:alphaCeiling`): clamps any non-zero alpha to fully opaque. Boolean flag. */
|
|
3424
3564
|
alphaCeiling?: boolean;
|
|
3425
3565
|
/** Original alpha ceiling node, including foreign attributes. */
|
|
3426
3566
|
alphaCeilingRawXml?: XmlObject;
|
|
3427
|
-
/** Alpha floor (`a:alphaFloor`)
|
|
3567
|
+
/** Alpha floor (`a:alphaFloor`): clamps any non-fully-opaque alpha to fully transparent. Boolean flag. */
|
|
3428
3568
|
alphaFloor?: boolean;
|
|
3429
3569
|
/** Original alpha floor node, including foreign attributes. */
|
|
3430
3570
|
alphaFloorRawXml?: XmlObject;
|
|
@@ -3448,16 +3588,16 @@ interface PptxImageEffects {
|
|
|
3448
3588
|
*/
|
|
3449
3589
|
amt?: number;
|
|
3450
3590
|
};
|
|
3451
|
-
/** Alpha replace (`a:alphaRepl`)
|
|
3591
|
+
/** Alpha replace (`a:alphaRepl`): replaces alpha with the given fixed-percent value (0..100). */
|
|
3452
3592
|
alphaRepl?: number;
|
|
3453
3593
|
/** Original alpha replace node, including foreign attributes. */
|
|
3454
3594
|
alphaReplRawXml?: XmlObject;
|
|
3455
|
-
/** Alpha bi-level (`a:alphaBiLevel`)
|
|
3595
|
+
/** Alpha bi-level (`a:alphaBiLevel`): threshold (0..100) above which alpha becomes fully opaque. */
|
|
3456
3596
|
alphaBiLevel?: number;
|
|
3457
3597
|
/** Original alpha bi-level node, including foreign attributes. */
|
|
3458
3598
|
alphaBiLevelRawXml?: XmlObject;
|
|
3459
3599
|
/**
|
|
3460
|
-
* Colour replace (`a:clrRepl`)
|
|
3600
|
+
* Colour replace (`a:clrRepl`): replaces all colour information in an image
|
|
3461
3601
|
* with the given solid colour. Stores the raw colour child to preserve scheme
|
|
3462
3602
|
* colour references and modifiers.
|
|
3463
3603
|
*/
|
|
@@ -3467,24 +3607,24 @@ interface PptxImageEffects {
|
|
|
3467
3607
|
/** Raw opaque colour XML for round-trip. */
|
|
3468
3608
|
rawXml?: Record<string, unknown>;
|
|
3469
3609
|
};
|
|
3470
|
-
/** Luminance modulation (`a:lum`)
|
|
3610
|
+
/** Luminance modulation (`a:lum`): bright/contrast as fixed percentages (0..100). */
|
|
3471
3611
|
lum?: {
|
|
3472
3612
|
bright?: number;
|
|
3473
3613
|
contrast?: number;
|
|
3474
3614
|
};
|
|
3475
|
-
/** HSL modulation (`a:hsl`)
|
|
3615
|
+
/** HSL modulation (`a:hsl`): hue (0..360 degrees), saturation/luminance (-100..100). */
|
|
3476
3616
|
hsl?: {
|
|
3477
3617
|
hue?: number;
|
|
3478
3618
|
sat?: number;
|
|
3479
3619
|
lum?: number;
|
|
3480
3620
|
};
|
|
3481
|
-
/** Image-effect tint (`a:tint` inside blip)
|
|
3621
|
+
/** Image-effect tint (`a:tint` inside blip): hue (0..360), amount (-100..100). */
|
|
3482
3622
|
tint?: {
|
|
3483
3623
|
hue?: number;
|
|
3484
3624
|
amt?: number;
|
|
3485
3625
|
};
|
|
3486
3626
|
/**
|
|
3487
|
-
* Fill overlay (`a:fillOverlay`)
|
|
3627
|
+
* Fill overlay (`a:fillOverlay`): overlays a fill on top of the blip.
|
|
3488
3628
|
* Stores blend mode and the raw inner fill XML for round-trip.
|
|
3489
3629
|
*/
|
|
3490
3630
|
fillOverlay?: {
|
|
@@ -3526,7 +3666,7 @@ interface PptxImageEffects {
|
|
|
3526
3666
|
background?: string;
|
|
3527
3667
|
};
|
|
3528
3668
|
};
|
|
3529
|
-
/** Blur (`a:blur`)
|
|
3669
|
+
/** Blur (`a:blur`): radius in EMU and grow flag. */
|
|
3530
3670
|
blur?: {
|
|
3531
3671
|
rad?: number;
|
|
3532
3672
|
grow?: boolean;
|
|
@@ -3538,12 +3678,12 @@ interface PptxImageEffects {
|
|
|
3538
3678
|
* @example
|
|
3539
3679
|
* ```ts
|
|
3540
3680
|
* const shape: PptxCropShape = "ellipse";
|
|
3541
|
-
* // => "ellipse"
|
|
3681
|
+
* // => "ellipse": one of: none | ellipse | roundedRect | triangle | diamond | pentagon | hexagon | star
|
|
3542
3682
|
* ```
|
|
3543
3683
|
*/
|
|
3544
3684
|
type PptxCropShape = 'none' | 'ellipse' | 'roundedRect' | 'triangle' | 'diamond' | 'pentagon' | 'hexagon' | 'star';
|
|
3545
3685
|
/**
|
|
3546
|
-
* Image content mixin
|
|
3686
|
+
* Image content mixin: present on image and picture elements.
|
|
3547
3687
|
*
|
|
3548
3688
|
* Contains the decoded image data (base64 data URL or archive path),
|
|
3549
3689
|
* alt text, crop insets, tiling settings, and image effects.
|
|
@@ -3613,7 +3753,16 @@ interface PptxImageProperties {
|
|
|
3613
3753
|
dpi?: number;
|
|
3614
3754
|
/** Image recolour/artistic effect properties. */
|
|
3615
3755
|
imageEffects?: PptxImageEffects;
|
|
3616
|
-
/**
|
|
3756
|
+
/**
|
|
3757
|
+
* Crop-to-shape (CSS clip-path shape name).
|
|
3758
|
+
*
|
|
3759
|
+
* PowerPoint implements "Crop to Shape" by writing the picture's own
|
|
3760
|
+
* `a:prstGeom`, so this is a typed view over `shapeType`: on load it is
|
|
3761
|
+
* derived from the preset (`ellipse` -> `'ellipse'`, `roundRect` ->
|
|
3762
|
+
* `'roundedRect'`, `star5` -> `'star'`, ...; see
|
|
3763
|
+
* `utils/crop-shape-geometry`), and on save a changed value rewrites the
|
|
3764
|
+
* preset. `'none'` / `undefined` leaves the geometry alone.
|
|
3765
|
+
*/
|
|
3617
3766
|
cropShape?: PptxCropShape;
|
|
3618
3767
|
}
|
|
3619
3768
|
//#endregion
|
|
@@ -7530,7 +7679,11 @@ interface PptxSlide {
|
|
|
7530
7679
|
*/
|
|
7531
7680
|
slideId?: string;
|
|
7532
7681
|
sourceSlideId?: string;
|
|
7533
|
-
/**
|
|
7682
|
+
/**
|
|
7683
|
+
* The slide name, `p:cSld/@name`: loaded from the part, written back on
|
|
7684
|
+
* save (an empty string clears the attribute), and settable via
|
|
7685
|
+
* `SlideBuilder.setName`.
|
|
7686
|
+
*/
|
|
7534
7687
|
name?: string;
|
|
7535
7688
|
layoutPath?: string;
|
|
7536
7689
|
layoutName?: string;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { $ as e, G as a, J as t, K as o, Q as i, W as r, X as n, Y as l, Z as S, a as d, at as m, c as p, ct as T, dt as v, et as P, ft as g, it as u, l as h, lt as c, mt as A, nt as C, o as N, ot as f, pt as k, q as D, rt as E, s as x, st as b, t as B, tt as I, u as O, ut as _ } from "./export-
|
|
2
|
-
import { i as R } from "./translator-
|
|
1
|
+
import { $ as e, G as a, J as t, K as o, Q as i, W as r, X as n, Y as l, Z as S, a as d, at as m, c as p, ct as T, dt as v, et as P, ft as g, it as u, l as h, lt as c, mt as A, nt as C, o as N, ot as f, pt as k, q as D, rt as E, s as x, st as b, t as B, tt as I, u as O, ut as _ } from "./export-CL58Fm_4.js";
|
|
2
|
+
import { i as R } from "./translator-i8zxb8S8.js";
|
|
3
3
|
import "./i18n.js";
|
|
4
4
|
export {
|
|
5
5
|
r as PPTX_OPEN_ACCEPT,
|
|
@@ -3432,7 +3432,49 @@ Item 3`,
|
|
|
3432
3432
|
"pptx.transitionPresets.pageCurlDouble": "Page Curl Double",
|
|
3433
3433
|
"pptx.transitionPresets.pageCurlSingle": "Page Curl Single",
|
|
3434
3434
|
"pptx.transitionPresets.airplane": "Airplane",
|
|
3435
|
-
"pptx.transitionPresets.origami": "Origami"
|
|
3435
|
+
"pptx.transitionPresets.origami": "Origami",
|
|
3436
|
+
"pptx.readOnly.modifyVerifierRecommended": "This presentation is password-protected. Opened read-only until the password is provided.",
|
|
3437
|
+
"pptx.readOnly.markedFinal": "This presentation was marked as final by its author. Opened read-only to discourage editing.",
|
|
3438
|
+
"pptx.compatibility.generic": "This presentation contains a feature that may not be fully supported ({{code}}).",
|
|
3439
|
+
"pptx.compatibility.unmodelledPresentationMarkup": "Some presentation-level settings are preserved but not editable in this viewer.",
|
|
3440
|
+
"pptx.compatibility.unmodelledSlideMarkup": "Some slide-level settings are preserved but not editable in this viewer.",
|
|
3441
|
+
"pptx.compatibility.unmodelledShapeProperty": "Some shape properties are preserved but not editable in this viewer.",
|
|
3442
|
+
"pptx.compatibility.unmodelledTextBodyMarkup": "Some text formatting is preserved but not editable in this viewer.",
|
|
3443
|
+
"pptx.compatibility.unmodelledBlipFillMarkup": "Some picture fill settings are preserved but not editable in this viewer.",
|
|
3444
|
+
"pptx.compatibility.unmodelledImageEffect": "Some image effects are preserved but not rendered in this viewer.",
|
|
3445
|
+
"pptx.compatibility.externalImageReference": "This presentation links to an image outside the file, which may not load for other people.",
|
|
3446
|
+
"pptx.compatibility.slideSynchronizationMetadata": "This slide is linked to another presentation for synchronization; that link is preserved but not applied here.",
|
|
3447
|
+
"pptx.compatibility.unsupportedAlternateContentChoice": "This presentation uses a newer PowerPoint feature; a compatible fallback was used instead.",
|
|
3448
|
+
"pptx.compatibility.groupDepthExceeded": "A group of shapes is nested more deeply than this viewer supports and was flattened.",
|
|
3449
|
+
"pptx.compatibility.saveNotesRelationshipMissing": "Speaker notes could not be linked to this slide when saving.",
|
|
3450
|
+
"pptx.compatibility.saveNotesPartMissing": "Speaker notes could not be saved for this slide.",
|
|
3451
|
+
"pptx.compatibility.saveNotesUpdateSkipped": "Changes to speaker notes were not saved for this slide.",
|
|
3452
|
+
"pptx.compatibility.chartExternalDataWritebackUnsupported": "This chart uses external data that cannot be updated by this viewer.",
|
|
3453
|
+
"pptx.compatibility.chartEmbeddedWorkbookMissing": "This chart's embedded data workbook is missing, so its data could not be saved.",
|
|
3454
|
+
"pptx.compatibility.chartEmbeddedWorkbookUnreadable": "This chart's embedded data workbook could not be read, so its data could not be saved.",
|
|
3455
|
+
"pptx.compatibility.chartEmbeddedWorkbookPartialWriteback": "Only some of this chart's data changes could be saved to its embedded workbook.",
|
|
3456
|
+
"pptx.compatibility.saveImagePayloadUnsupported": "One image could not be saved in its original format and was skipped.",
|
|
3457
|
+
"pptx.compatibility.saveMediaPayloadUnsupported": "One audio or video clip could not be saved in its original format and was skipped.",
|
|
3458
|
+
"pptx.compatibility.saveElementSkipped": "One slide element could not be saved and was skipped.",
|
|
3459
|
+
"pptx.compatibility.saveSignaturesStripped": "This presentation had digital signatures, which are removed once the file is edited and saved.",
|
|
3460
|
+
"pptx.compatibility.saveGroupChildSkipped": "One shape inside a group could not be saved and was skipped.",
|
|
3461
|
+
"pptx.compatibility.saveAnimationSoundPayloadUnsupported": "One animation sound could not be saved and was skipped.",
|
|
3462
|
+
"pptx.compatibility.saveBackgroundImageUnsupported": "One slide background image could not be saved and was skipped.",
|
|
3463
|
+
"pptx.compatibility.shapeIdDeduplicated": "Two shapes shared the same internal id; one was reassigned automatically.",
|
|
3464
|
+
"pptx.compatibility.saveTransitionSoundPayloadUnsupported": "One slide transition sound could not be saved and was skipped.",
|
|
3465
|
+
"pptx.compatibility.diagramRelationshipIdsIncomplete": "This SmartArt diagram is missing some internal references, so it may not display exactly as authored.",
|
|
3466
|
+
"pptx.compatibility.exportBackendUnavailable": "Export to this format is not available in the current environment.",
|
|
3467
|
+
"pptx.chart.bar3DShapeBox": "Box",
|
|
3468
|
+
"pptx.chart.bar3DShapeCylinder": "Cylinder",
|
|
3469
|
+
"pptx.chart.bar3DShapeFullPyramid": "Full Pyramid",
|
|
3470
|
+
"pptx.chart.bar3DShapePartialPyramid": "Partial Pyramid",
|
|
3471
|
+
"pptx.chart.bar3DShapeFullCone": "Full Cone",
|
|
3472
|
+
"pptx.chart.bar3DShapePartialCone": "Partial Cone",
|
|
3473
|
+
"pptx.chart.radarStyleStandard": "Standard",
|
|
3474
|
+
"pptx.chart.radarStyleMarker": "Markers",
|
|
3475
|
+
"pptx.chart.radarStyleFilled": "Filled",
|
|
3476
|
+
"pptx.chart.wireframeOn": "Wireframe",
|
|
3477
|
+
"pptx.chart.wireframeOff": "Solid"
|
|
3436
3478
|
};
|
|
3437
3479
|
function r(e) {
|
|
3438
3480
|
return (e.split(".").pop() ?? e).replace(/(?<lower>[a-z])(?<upper>[A-Z])/gu, "$<lower> $<upper>").replace(/^./u, (t) => t.toUpperCase());
|
|
@@ -3459,14 +3501,14 @@ var x = [
|
|
|
3459
3501
|
nativeLabel: "Deutsch"
|
|
3460
3502
|
}
|
|
3461
3503
|
], a = /* @__PURE__ */ new Map([["en", n]]);
|
|
3462
|
-
function
|
|
3504
|
+
function d(e, t) {
|
|
3463
3505
|
const p = a.get(e);
|
|
3464
3506
|
a.set(e, p ? {
|
|
3465
3507
|
...p,
|
|
3466
3508
|
...t
|
|
3467
3509
|
} : { ...t });
|
|
3468
3510
|
}
|
|
3469
|
-
function
|
|
3511
|
+
function c() {
|
|
3470
3512
|
return [...a.keys()];
|
|
3471
3513
|
}
|
|
3472
3514
|
function s(e, t) {
|
|
@@ -3485,8 +3527,8 @@ function m(e) {
|
|
|
3485
3527
|
export {
|
|
3486
3528
|
l as a,
|
|
3487
3529
|
n as c,
|
|
3488
|
-
|
|
3489
|
-
|
|
3530
|
+
d as i,
|
|
3531
|
+
c as n,
|
|
3490
3532
|
x as o,
|
|
3491
3533
|
s as r,
|
|
3492
3534
|
r as s,
|