@office-open/core 0.7.0 → 0.8.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.
@@ -1,4 +1,5 @@
1
- import { a as BuilderElement, b as XmlComponent } from "./index-Borh69Zs.mjs";
1
+ import { a as BuilderElement, b as XmlComponent, w as IXmlableObject } from "./index-CoTp4wVf.mjs";
2
+ import { Buffer } from "\u0000polyfill-node.buffer";
2
3
 
3
4
  //#region src/drawingml/color/color-transform.d.ts
4
5
  /**
@@ -3124,4 +3125,1637 @@ interface MediaTransformation {
3124
3125
  */
3125
3126
  declare const createTransformation: (options: MediaTransformation) => MediaDataTransformation;
3126
3127
  //#endregion
3127
- export { RectAlignment as $, createSolidFill as $t, createBevel as A, FillOptions as At, createSoftEdgeEffect as B, RelativeRect as Bt, GeometryGuide as C, createGroupFill as Ct, createShape3D as D, createNoFill as Dt, Shape3DOptions as E, createPatternFill as Et, Point3D as F, GradientShadeOptions as Ft, EffectListOptions as G, TileOptions as Gt, EffectDagOptions as H, createGradientFill as Ht, Scene3DOptions as I, GradientStop as It, createReflectionEffect as J, createSourceRectangle as Jt, createEffectList as K, createTileInfo as Kt, SphereCoords as L, LinearShadeOptions as Lt, BackdropOptions as M, buildFill as Mt, CameraOptions as N, extractBlipFillMedia as Nt, BevelOptions as O, BlipFillConfigOptions as Ot, LightRigOptions as P, GradientFillOptions as Pt, OuterShadowEffectOptions as Q, createColorElement as Qt, Vector3D as R, PathShadeOptions as Rt, PresetGeometryOptions as S, createCustomDash as St, PresetMaterialType as T, PresetPattern as Tt, createEffectDag as U, createGradientStop as Ut, EffectContainerType as V, TileFlipMode as Vt, BlurEffectOptions as W, TileAlignment as Wt, PresetShadowVal as X, createBlipEffects as Xt, PresetShadowEffectOptions as Y, BlipEffectsOptions as Yt, createPresetShadowEffect as Z, SolidFillOptions as Zt, PathCommand as _, LineEndOptions as _t, Transform2DOptions as a, createSchemeColor as an, BlendMode as at, createCustomGeometry as b, createLineEnd as bt, Stretch as c, RgbColorOptions as cn, CompoundLine as ct, createBlipFill as d, PresetColorOptions as dn, OutlineFillProperties as dt, SystemColor as en, createOuterShadowEffect as et, BlipOptions as f, createPresetColor as fn, OutlineOptions as ft, GeomRect as g, createColorTransforms as gn, LineEndLength as gt, CustomGeometryOptions as h, ColorTransformOptions as hn, createOutline as ht, GroupTransform2DOptions as i, SchemeColorOptions as in, createGlowEffect as it, createBottomBevel as j, GradientStopOptions as jt, BevelPresetType as k, BlipFillMediaData as kt, createExtentionList as l, createRgbColor as ln, LineCap as lt, ConnectionSite as m, createHslColor as mn, PresetDash as mt, MediaTransformation as n, createSystemColor as nn, createInnerShadowEffect as nt, createGroupTransform2D as o, ScRgbColorOptions as on, FillOverlayEffectOptions as ot, createBlip as p, HslColorOptions as pn, PenAlignment as pt, ReflectionEffectOptions as q, SourceRectangleOptions as qt, createTransformation as r, SchemeColor as rn, GlowEffectOptions as rt, createTransform2D as s, createScRgbColor as sn, createFillOverlayEffect as st, MediaDataTransformation as t, SystemColorOptions as tn, InnerShadowEffectOptions as tt, BlipFillOptions as u, PresetColor as un, LineJoin as ut, PathFillMode as v, LineEndType as vt, createAdjustmentValues as w, PatternFillOptions as wt, PresetGeometry as x, DashStop as xt, PathOptions as y, LineEndWidth as yt, createScene3D as z, PathShadeType as zt };
3128
+ //#region src/drawingml/table-style/table-style.d.ts
3129
+ type TableStyleRegion = "tblBg" | "wholeTbl" | "band1H" | "band2H" | "band1V" | "band2V" | "lastCol" | "firstCol" | "lastRow" | "seCell" | "swCell" | "firstRow" | "neCell" | "nwCell";
3130
+ type OnOffStyleType = "on" | "off" | "def";
3131
+ interface TablePartStyleOptions {
3132
+ /** Cell text style */
3133
+ readonly text?: TableTextStyleOptions;
3134
+ /** Cell style (fill, borders, 3D) */
3135
+ readonly cell?: TableCellStyleOptions;
3136
+ }
3137
+ interface TableTextStyleOptions {
3138
+ /** Bold style */
3139
+ readonly bold?: OnOffStyleType;
3140
+ /** Italic style */
3141
+ readonly italic?: OnOffStyleType;
3142
+ /** Font reference (themeable) */
3143
+ readonly fontRef?: StyleMatrixReferenceOptions;
3144
+ /** Color element */
3145
+ readonly color?: XmlComponent;
3146
+ }
3147
+ interface TableCellStyleOptions {
3148
+ /** Cell borders */
3149
+ readonly borders?: TableCellBorderOptions;
3150
+ /** Fill reference (themeable) */
3151
+ readonly fillRef?: StyleMatrixReferenceOptions;
3152
+ /** Direct fill */
3153
+ readonly fill?: XmlComponent;
3154
+ }
3155
+ interface TableCellBorderOptions {
3156
+ readonly left?: ThemeableLineStyleOptions;
3157
+ readonly right?: ThemeableLineStyleOptions;
3158
+ readonly top?: ThemeableLineStyleOptions;
3159
+ readonly bottom?: ThemeableLineStyleOptions;
3160
+ readonly insideH?: ThemeableLineStyleOptions;
3161
+ readonly insideV?: ThemeableLineStyleOptions;
3162
+ }
3163
+ interface ThemeableLineStyleOptions {
3164
+ /** Line width in EMUs */
3165
+ readonly width?: number;
3166
+ /** Fill color component */
3167
+ readonly color?: XmlComponent;
3168
+ /** Line reference index into theme style matrix */
3169
+ readonly lineRefIdx?: number;
3170
+ }
3171
+ interface StyleMatrixReferenceOptions {
3172
+ /** Index into the theme style matrix */
3173
+ readonly idx: number;
3174
+ /** Color component */
3175
+ readonly color?: XmlComponent;
3176
+ }
3177
+ interface TableStyleOptions {
3178
+ /** Unique GUID for this style */
3179
+ readonly styleId: string;
3180
+ /** Display name */
3181
+ readonly styleName: string;
3182
+ /** Style regions */
3183
+ readonly regions?: Partial<Record<TableStyleRegion, TablePartStyleOptions>>;
3184
+ }
3185
+ interface TableStyleListOptions {
3186
+ /** Default style GUID */
3187
+ readonly defaultStyleId: string;
3188
+ /** Custom table styles */
3189
+ readonly styles?: readonly TableStyleOptions[];
3190
+ }
3191
+ /** Create a single table style (CT_TableStyle) */
3192
+ declare function createTableStyle(opts: TableStyleOptions): BuilderElement;
3193
+ /** Create table style list (CT_TableStyleList) */
3194
+ declare function createTableStyleList(opts: TableStyleListOptions): BuilderElement;
3195
+ //#endregion
3196
+ //#region src/drawingml/locking/locking.d.ts
3197
+ interface BaseLockingOptions {
3198
+ /** Prevent grouping */
3199
+ readonly noGrp?: boolean;
3200
+ /** Prevent selection */
3201
+ readonly noSelect?: boolean;
3202
+ /** Prevent rotation */
3203
+ readonly noRot?: boolean;
3204
+ /** Prevent aspect ratio change */
3205
+ readonly noChangeAspect?: boolean;
3206
+ /** Prevent moving */
3207
+ readonly noMove?: boolean;
3208
+ /** Prevent resizing */
3209
+ readonly noResize?: boolean;
3210
+ /** Prevent edit points */
3211
+ readonly noEditPoints?: boolean;
3212
+ /** Prevent adjust handles */
3213
+ readonly noAdjustHandles?: boolean;
3214
+ /** Prevent changing arrowheads */
3215
+ readonly noChangeArrowheads?: boolean;
3216
+ /** Prevent changing shape type */
3217
+ readonly noChangeShapeType?: boolean;
3218
+ }
3219
+ interface ShapeLockingOptions extends BaseLockingOptions {
3220
+ /** Prevent text editing */
3221
+ readonly noTextEdit?: boolean;
3222
+ }
3223
+ interface PictureLockingOptions extends BaseLockingOptions {
3224
+ /** Prevent cropping */
3225
+ readonly noCrop?: boolean;
3226
+ }
3227
+ interface GroupLockingOptions {
3228
+ readonly noGrp?: boolean;
3229
+ readonly noUngrp?: boolean;
3230
+ readonly noSelect?: boolean;
3231
+ readonly noRot?: boolean;
3232
+ readonly noChangeAspect?: boolean;
3233
+ readonly noMove?: boolean;
3234
+ readonly noResize?: boolean;
3235
+ }
3236
+ interface GraphicFrameLockingOptions {
3237
+ readonly noGrp?: boolean;
3238
+ readonly noDrilldown?: boolean;
3239
+ readonly noSelect?: boolean;
3240
+ readonly noChangeAspect?: boolean;
3241
+ readonly noMove?: boolean;
3242
+ readonly noResize?: boolean;
3243
+ }
3244
+ declare function createShapeLocking(opts: ShapeLockingOptions): BuilderElement;
3245
+ declare function createPictureLocking(opts: PictureLockingOptions): BuilderElement;
3246
+ declare function createGroupLocking(opts: GroupLockingOptions): BuilderElement;
3247
+ declare function createGraphicFrameLocking(opts: GraphicFrameLockingOptions): BuilderElement;
3248
+ //#endregion
3249
+ //#region src/drawingml/locked-canvas/locked-canvas.d.ts
3250
+ /**
3251
+ * Options for creating a locked canvas element.
3252
+ */
3253
+ interface LockedCanvasOptions {
3254
+ /** Child elements of the locked canvas */
3255
+ readonly children?: readonly (IXmlableObject | XmlComponent)[];
3256
+ }
3257
+ /**
3258
+ * Represents a locked canvas element (lc:lockedCanvas).
3259
+ *
3260
+ * A locked canvas contains shapes that are rendered but cannot be
3261
+ * individually selected, moved, or edited.
3262
+ *
3263
+ * Reference: http://www.datypic.com/sc/ooxml/e-lc_lockedCanvas-1.html
3264
+ *
3265
+ * ## XSD Schema
3266
+ * ```xml
3267
+ * <xsd:element name="lockedCanvas" type="a:CT_GvmlGroupShape"/>
3268
+ * ```
3269
+ */
3270
+ declare class LockedCanvas extends XmlComponent {
3271
+ constructor(options?: LockedCanvasOptions);
3272
+ }
3273
+ //#endregion
3274
+ //#region src/drawingml/chart-drawing/chart-drawing.d.ts
3275
+ /**
3276
+ * Creates a cdr:x element (Marker X Coordinate).
3277
+ *
3278
+ * ## XSD Schema
3279
+ * ```xml
3280
+ * <xsd:element name="x" type="ST_MarkerCoordinate"/>
3281
+ * ```
3282
+ */
3283
+ declare const createCdrX: (value: number) => XmlComponent;
3284
+ /**
3285
+ * Creates a cdr:y element (Marker Y Coordinate).
3286
+ *
3287
+ * ## XSD Schema
3288
+ * ```xml
3289
+ * <xsd:element name="y" type="ST_MarkerCoordinate"/>
3290
+ * ```
3291
+ */
3292
+ declare const createCdrY: (value: number) => XmlComponent;
3293
+ /**
3294
+ * Creates a cdr:from element (Marker - top-left corner).
3295
+ *
3296
+ * ## XSD Schema
3297
+ * ```xml
3298
+ * <xsd:element name="from" type="CT_Marker"/>
3299
+ * ```
3300
+ */
3301
+ declare const createCdrFrom: (x: number, y: number) => XmlComponent;
3302
+ /**
3303
+ * Creates a cdr:to element (Marker - bottom-right corner).
3304
+ *
3305
+ * ## XSD Schema
3306
+ * ```xml
3307
+ * <xsd:element name="to" type="CT_Marker"/>
3308
+ * ```
3309
+ */
3310
+ declare const createCdrTo: (x: number, y: number) => XmlComponent;
3311
+ /**
3312
+ * Creates a cdr:ext element (Positive Size 2D).
3313
+ *
3314
+ * ## XSD Schema
3315
+ * ```xml
3316
+ * <xsd:element name="ext" type="a:CT_PositiveSize2D"/>
3317
+ * ```
3318
+ */
3319
+ declare const createCdrExt: (options: {
3320
+ readonly cx: number;
3321
+ readonly cy: number;
3322
+ }) => XmlComponent;
3323
+ /**
3324
+ * Creates a cdr:cNvPr element (Non-Visual Drawing Properties).
3325
+ *
3326
+ * ## XSD Schema
3327
+ * ```xml
3328
+ * <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps"/>
3329
+ * ```
3330
+ */
3331
+ declare const createCdrCNvPr: (options: {
3332
+ readonly id?: number;
3333
+ readonly name?: string;
3334
+ }) => XmlComponent;
3335
+ /**
3336
+ * Creates a cdr:cNvSpPr element (Non-Visual Drawing Shape Properties).
3337
+ *
3338
+ * ## XSD Schema
3339
+ * ```xml
3340
+ * <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps"/>
3341
+ * ```
3342
+ */
3343
+ declare const createCdrCNvSpPr: () => XmlComponent;
3344
+ /**
3345
+ * Creates a cdr:cNvCxnSpPr element (Non-Visual Connector Properties).
3346
+ *
3347
+ * ## XSD Schema
3348
+ * ```xml
3349
+ * <xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties"/>
3350
+ * ```
3351
+ */
3352
+ declare const createCdrCNvCxnSpPr: () => XmlComponent;
3353
+ /**
3354
+ * Creates a cdr:cNvPicPr element (Non-Visual Picture Properties).
3355
+ *
3356
+ * ## XSD Schema
3357
+ * ```xml
3358
+ * <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties"/>
3359
+ * ```
3360
+ */
3361
+ declare const createCdrCNvPicPr: () => XmlComponent;
3362
+ /**
3363
+ * Creates a cdr:cNvGrpSpPr element (Non-Visual Group Shape Properties).
3364
+ *
3365
+ * ## XSD Schema
3366
+ * ```xml
3367
+ * <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps"/>
3368
+ * ```
3369
+ */
3370
+ declare const createCdrCNvGrpSpPr: () => XmlComponent;
3371
+ /**
3372
+ * Creates a cdr:cNvGraphicFramePr element (Non-Visual Graphic Frame Properties).
3373
+ *
3374
+ * ## XSD Schema
3375
+ * ```xml
3376
+ * <xsd:element name="cNvGraphicFramePr" type="a:CT_NonVisualGraphicFrameProperties"/>
3377
+ * ```
3378
+ */
3379
+ declare const createCdrCNvGraphicFramePr: () => XmlComponent;
3380
+ /**
3381
+ * Creates a cdr:nvSpPr element (Shape Non-Visual Properties).
3382
+ *
3383
+ * ## XSD Schema
3384
+ * ```xml
3385
+ * <xsd:element name="nvSpPr" type="CT_ShapeNonVisual"/>
3386
+ * ```
3387
+ */
3388
+ declare const createCdrNvSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3389
+ /**
3390
+ * Creates a cdr:nvCxnSpPr element (Connector Non-Visual Properties).
3391
+ *
3392
+ * ## XSD Schema
3393
+ * ```xml
3394
+ * <xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual"/>
3395
+ * ```
3396
+ */
3397
+ declare const createCdrNvCxnSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3398
+ /**
3399
+ * Creates a cdr:nvPicPr element (Picture Non-Visual Properties).
3400
+ *
3401
+ * ## XSD Schema
3402
+ * ```xml
3403
+ * <xsd:element name="nvPicPr" type="CT_PictureNonVisual"/>
3404
+ * ```
3405
+ */
3406
+ declare const createCdrNvPicPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3407
+ /**
3408
+ * Creates a cdr:nvGrpSpPr element (Group Shape Non-Visual Properties).
3409
+ *
3410
+ * ## XSD Schema
3411
+ * ```xml
3412
+ * <xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual"/>
3413
+ * ```
3414
+ */
3415
+ declare const createCdrNvGrpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3416
+ /**
3417
+ * Creates a cdr:nvGraphicFramePr element (Graphic Frame Non-Visual Properties).
3418
+ *
3419
+ * ## XSD Schema
3420
+ * ```xml
3421
+ * <xsd:element name="nvGraphicFramePr" type="CT_GraphicFrameNonVisual"/>
3422
+ * ```
3423
+ */
3424
+ declare const createCdrNvGraphicFramePr: (children?: readonly IXmlableObject[]) => XmlComponent;
3425
+ /**
3426
+ * Creates a cdr:sp element (Shape).
3427
+ *
3428
+ * ## XSD Schema
3429
+ * ```xml
3430
+ * <xsd:element name="sp" type="CT_Shape"/>
3431
+ * ```
3432
+ */
3433
+ declare const createCdrSp: (children?: readonly IXmlableObject[]) => XmlComponent;
3434
+ /**
3435
+ * Creates a cdr:cxnSp element (Connector Shape).
3436
+ *
3437
+ * ## XSD Schema
3438
+ * ```xml
3439
+ * <xsd:element name="cxnSp" type="CT_Connector"/>
3440
+ * ```
3441
+ */
3442
+ declare const createCdrCxnSp: (children?: readonly IXmlableObject[]) => XmlComponent;
3443
+ /**
3444
+ * Creates a cdr:pic element (Picture).
3445
+ *
3446
+ * ## XSD Schema
3447
+ * ```xml
3448
+ * <xsd:element name="pic" type="CT_Picture"/>
3449
+ * ```
3450
+ */
3451
+ declare const createCdrPic: (children?: readonly IXmlableObject[]) => XmlComponent;
3452
+ /**
3453
+ * Creates a cdr:grpSp element (Group Shape).
3454
+ *
3455
+ * ## XSD Schema
3456
+ * ```xml
3457
+ * <xsd:element name="grpSp" type="CT_GroupShape"/>
3458
+ * ```
3459
+ */
3460
+ declare const createCdrGrpSp: (children?: readonly IXmlableObject[]) => XmlComponent;
3461
+ /**
3462
+ * Creates a cdr:graphicFrame element (Graphic Frame).
3463
+ *
3464
+ * ## XSD Schema
3465
+ * ```xml
3466
+ * <xsd:element name="graphicFrame" type="CT_GraphicFrame"/>
3467
+ * ```
3468
+ */
3469
+ declare const createCdrGraphicFrame: (children?: readonly IXmlableObject[]) => XmlComponent;
3470
+ /**
3471
+ * Creates a cdr:spPr element (Shape Properties).
3472
+ *
3473
+ * ## XSD Schema
3474
+ * ```xml
3475
+ * <xsd:element name="spPr" type="a:CT_ShapeProperties"/>
3476
+ * ```
3477
+ */
3478
+ declare const createCdrSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3479
+ /**
3480
+ * Creates a cdr:grpSpPr element (Group Shape Properties).
3481
+ *
3482
+ * ## XSD Schema
3483
+ * ```xml
3484
+ * <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties"/>
3485
+ * ```
3486
+ */
3487
+ declare const createCdrGrpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3488
+ /**
3489
+ * Creates a cdr:style element (Shape Style).
3490
+ *
3491
+ * ## XSD Schema
3492
+ * ```xml
3493
+ * <xsd:element name="style" type="a:CT_ShapeStyle"/>
3494
+ * ```
3495
+ */
3496
+ declare const createCdrStyle: () => XmlComponent;
3497
+ /**
3498
+ * Creates a cdr:txBody element (Text Body).
3499
+ *
3500
+ * ## XSD Schema
3501
+ * ```xml
3502
+ * <xsd:element name="txBody" type="a:CT_TextBody"/>
3503
+ * ```
3504
+ */
3505
+ declare const createCdrTxBody: (children?: readonly IXmlableObject[]) => XmlComponent;
3506
+ /**
3507
+ * Creates a cdr:blipFill element (Blip Fill).
3508
+ *
3509
+ * ## XSD Schema
3510
+ * ```xml
3511
+ * <xsd:element name="blipFill" type="a:CT_BlipFillProperties"/>
3512
+ * ```
3513
+ */
3514
+ declare const createCdrBlipFill: (children?: readonly IXmlableObject[]) => XmlComponent;
3515
+ /**
3516
+ * Creates a cdr:xfrm element (2D Transform).
3517
+ *
3518
+ * ## XSD Schema
3519
+ * ```xml
3520
+ * <xsd:element name="xfrm" type="a:CT_Transform2D"/>
3521
+ * ```
3522
+ */
3523
+ declare const createCdrXfrm: (children?: readonly IXmlableObject[]) => XmlComponent;
3524
+ /**
3525
+ * Creates a cdr:relSizeAnchor element (Relative Size Anchor).
3526
+ *
3527
+ * ## XSD Schema
3528
+ * ```xml
3529
+ * <xsd:element name="relSizeAnchor" type="CT_RelSizeAnchor"/>
3530
+ * ```
3531
+ */
3532
+ declare const createCdrRelSizeAnchor: (children?: readonly IXmlableObject[]) => XmlComponent;
3533
+ /**
3534
+ * Creates a cdr:absSizeAnchor element (Absolute Size Anchor).
3535
+ *
3536
+ * ## XSD Schema
3537
+ * ```xml
3538
+ * <xsd:element name="absSizeAnchor" type="CT_AbsSizeAnchor"/>
3539
+ * ```
3540
+ */
3541
+ declare const createCdrAbsSizeAnchor: (children?: readonly IXmlableObject[]) => XmlComponent;
3542
+ //#endregion
3543
+ //#region src/drawingml/chart/dml-chart-elements.d.ts
3544
+ declare const createApplyToEnd: () => XmlComponent;
3545
+ declare const createApplyToFront: () => XmlComponent;
3546
+ declare const createApplyToSides: () => XmlComponent;
3547
+ declare const createAutoUpdate: () => XmlComponent;
3548
+ declare const createBubble3D: () => XmlComponent;
3549
+ declare const createInvertIfNegative: () => XmlComponent;
3550
+ declare const createPlotVisOnly: () => XmlComponent;
3551
+ declare const createShowDLblsOverMax: () => XmlComponent;
3552
+ declare const createShowNegBubbles: () => XmlComponent;
3553
+ declare const createShowLeaderLines: () => XmlComponent;
3554
+ declare const createSmooth: () => XmlComponent;
3555
+ declare const createExplosion: (val: number) => XmlComponent;
3556
+ declare const createFmtId: (val: number) => XmlComponent;
3557
+ declare const createSize: (val: number) => XmlComponent;
3558
+ declare const createBubbleScale: (val: number | string) => XmlComponent;
3559
+ declare const createCrossesAt: (val: number) => XmlComponent;
3560
+ declare const createCustUnit: (val: number) => XmlComponent;
3561
+ declare const createGapDepth: (val: number | string) => XmlComponent;
3562
+ declare const createGapWidth: (val: number | string) => XmlComponent;
3563
+ declare const createH: (val: number) => XmlComponent;
3564
+ declare const createHoleSize: (val: number | string) => XmlComponent;
3565
+ declare const createLogBase: (val: number) => XmlComponent;
3566
+ declare const createMajorUnit: (val: number) => XmlComponent;
3567
+ declare const createMax: (val: number) => XmlComponent;
3568
+ declare const createMin: (val: number) => XmlComponent;
3569
+ declare const createMinorUnit: (val: number) => XmlComponent;
3570
+ declare const createOverlap: (val: number | string) => XmlComponent;
3571
+ declare const createSecondPieSize: (val: number | string) => XmlComponent;
3572
+ declare const createSplitPos: (val: number) => XmlComponent;
3573
+ declare const createW: (val: number) => XmlComponent;
3574
+ declare const createX: (val: number) => XmlComponent;
3575
+ declare const createY: (val: number) => XmlComponent;
3576
+ declare const createBaseTimeUnit: (val: string) => XmlComponent;
3577
+ declare const createBuiltInUnit: (val: string) => XmlComponent;
3578
+ declare const createCrossBetween: (val: string) => XmlComponent;
3579
+ declare const createDispBlanksAs: (val: string) => XmlComponent;
3580
+ declare const createHMode: (val: string) => XmlComponent;
3581
+ declare const createLayoutTarget: (val: string) => XmlComponent;
3582
+ declare const createLblAlgn: (val: string) => XmlComponent;
3583
+ declare const createMajorTickMark: (val: string) => XmlComponent;
3584
+ declare const createMajorTimeUnit: (val: string) => XmlComponent;
3585
+ declare const createMinorTickMark: (val: string) => XmlComponent;
3586
+ declare const createMinorTimeUnit: (val: string) => XmlComponent;
3587
+ declare const createOfPieType: (val: string) => XmlComponent;
3588
+ declare const createPictureFormat: (val: string) => XmlComponent;
3589
+ declare const createPictureStackUnit: (val: number) => XmlComponent;
3590
+ declare const createShape: (val: string) => XmlComponent;
3591
+ declare const createSizeRepresents: (val: string) => XmlComponent;
3592
+ declare const createSplitType: (val: string) => XmlComponent;
3593
+ declare const createSymbol: (val: string) => XmlComponent;
3594
+ declare const createTickLblPos: (val: string) => XmlComponent;
3595
+ declare const createTickMarkSkip: (val: number) => XmlComponent;
3596
+ declare const createThickness: (val: number | string) => XmlComponent;
3597
+ declare const createWMode: (val: string) => XmlComponent;
3598
+ declare const createXMode: (val: string) => XmlComponent;
3599
+ declare const createYMode: (val: string) => XmlComponent;
3600
+ declare const createName: (val: string) => XmlComponent;
3601
+ declare const createBackWall: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3602
+ declare const createBandFmt: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3603
+ declare const createBandFmts: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3604
+ declare const createChartObject: () => XmlComponent;
3605
+ declare const createClrMapOvr: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3606
+ declare const createCustSplit: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3607
+ declare const createDLbl: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3608
+ declare const createDPt: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3609
+ declare const createDTable: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3610
+ declare const createData: () => XmlComponent;
3611
+ declare const createDispUnits: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3612
+ declare const createDispUnitsLbl: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3613
+ declare const createDownBars: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3614
+ declare const createEvenFooter: (val: string) => XmlComponent;
3615
+ declare const createEvenHeader: (val: string) => XmlComponent;
3616
+ declare const createExt: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3617
+ declare const createExtLst: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3618
+ declare const createExternalData: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3619
+ declare const createFirstFooter: (val: string) => XmlComponent;
3620
+ declare const createFirstHeader: (val: string) => XmlComponent;
3621
+ declare const createFloor: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3622
+ declare const createFormatting: () => XmlComponent;
3623
+ interface HeaderFooterOptions {
3624
+ readonly alignWithMargins?: boolean;
3625
+ readonly differentOddEven?: boolean;
3626
+ readonly differentFirst?: boolean;
3627
+ }
3628
+ declare const createHeaderFooter: (children?: readonly (IXmlableObject | XmlComponent)[], options?: HeaderFooterOptions) => XmlComponent;
3629
+ declare const createHiLowLines: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3630
+ declare const createLeaderLines: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3631
+ declare const createLegacyDrawingHF: () => XmlComponent;
3632
+ declare const createLegendEntry: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3633
+ declare const createLvl: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3634
+ declare const createMajorGridlines: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3635
+ declare const createManualLayout: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3636
+ declare const createMarker: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3637
+ declare const createMinorGridlines: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3638
+ declare const createMinus: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3639
+ declare const createMultiLvlStrCache: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3640
+ declare const createMultiLvlStrRef: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3641
+ declare const createNumLit: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3642
+ declare const createOddFooter: (val: string) => XmlComponent;
3643
+ declare const createOddHeader: (val: string) => XmlComponent;
3644
+ declare const createOfPieChart: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3645
+ interface PageMarginsOptions {
3646
+ readonly l: number;
3647
+ readonly r: number;
3648
+ readonly t: number;
3649
+ readonly b: number;
3650
+ readonly header: number;
3651
+ readonly footer: number;
3652
+ }
3653
+ declare const createPageMargins: (options: PageMarginsOptions) => XmlComponent;
3654
+ interface PageSetupOptions {
3655
+ readonly paperSize?: number;
3656
+ readonly paperHeight?: string;
3657
+ readonly paperWidth?: string;
3658
+ readonly firstPageNumber?: number;
3659
+ readonly orientation?: string;
3660
+ readonly blackAndWhite?: boolean;
3661
+ readonly draft?: boolean;
3662
+ readonly useFirstPageNumber?: boolean;
3663
+ readonly horizontalDpi?: number;
3664
+ readonly verticalDpi?: number;
3665
+ readonly copies?: number;
3666
+ }
3667
+ declare const createPageSetup: (options?: PageSetupOptions) => XmlComponent;
3668
+ declare const createPictureOptions: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3669
+ declare const createPivotFmt: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3670
+ declare const createPivotFmts: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3671
+ declare const createPivotSource: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3672
+ declare const createPlus: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3673
+ declare const createPrintSettings: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3674
+ declare const createProtection: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3675
+ declare const createSecondPiePt: (val: number) => XmlComponent;
3676
+ declare const createSelection: () => XmlComponent;
3677
+ declare const createSerLines: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3678
+ declare const createShowHorzBorder: () => XmlComponent;
3679
+ declare const createShowKeys: () => XmlComponent;
3680
+ declare const createShowOutline: () => XmlComponent;
3681
+ declare const createShowVertBorder: () => XmlComponent;
3682
+ declare const createSideWall: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3683
+ declare const createStrLit: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3684
+ declare const createSurface3DChart: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3685
+ declare const createTrendlineLbl: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3686
+ declare const createUpBars: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3687
+ declare const createUpDownBars: (children?: readonly (IXmlableObject | XmlComponent)[]) => XmlComponent;
3688
+ declare const createUserInterface: () => XmlComponent;
3689
+ declare const createUserShapes: () => XmlComponent;
3690
+ //#endregion
3691
+ //#region src/drawingml/spreadsheet-drawing/spreadsheet-drawing.d.ts
3692
+ interface XdrMarkerOptions {
3693
+ readonly col: number;
3694
+ readonly colOff: number;
3695
+ readonly row: number;
3696
+ readonly rowOff: number;
3697
+ }
3698
+ /**
3699
+ * Creates an xdr:col element (Column ID).
3700
+ *
3701
+ * ## XSD Schema
3702
+ * ```xml
3703
+ * <xsd:element name="col" type="ST_ColID"/>
3704
+ * ```
3705
+ */
3706
+ declare const createXdrCol: (value: number) => XmlComponent;
3707
+ /**
3708
+ * Creates an xdr:colOff element (Column Offset).
3709
+ *
3710
+ * ## XSD Schema
3711
+ * ```xml
3712
+ * <xsd:element name="colOff" type="a:ST_Coordinate"/>
3713
+ * ```
3714
+ */
3715
+ declare const createXdrColOff: (value: number) => XmlComponent;
3716
+ /**
3717
+ * Creates an xdr:row element (Row ID).
3718
+ *
3719
+ * ## XSD Schema
3720
+ * ```xml
3721
+ * <xsd:element name="row" type="ST_RowID"/>
3722
+ * ```
3723
+ */
3724
+ declare const createXdrRow: (value: number) => XmlComponent;
3725
+ /**
3726
+ * Creates an xdr:rowOff element (Row Offset).
3727
+ *
3728
+ * ## XSD Schema
3729
+ * ```xml
3730
+ * <xsd:element name="rowOff" type="a:ST_Coordinate"/>
3731
+ * ```
3732
+ */
3733
+ declare const createXdrRowOff: (value: number) => XmlComponent;
3734
+ /**
3735
+ * Creates an xdr:from element (Marker - top-left corner).
3736
+ *
3737
+ * ## XSD Schema
3738
+ * ```xml
3739
+ * <xsd:element name="from" type="CT_Marker"/>
3740
+ * ```
3741
+ */
3742
+ declare const createXdrFrom: (options: XdrMarkerOptions) => XmlComponent;
3743
+ /**
3744
+ * Creates an xdr:to element (Marker - bottom-right corner).
3745
+ *
3746
+ * ## XSD Schema
3747
+ * ```xml
3748
+ * <xsd:element name="to" type="CT_Marker"/>
3749
+ * ```
3750
+ */
3751
+ declare const createXdrTo: (options: XdrMarkerOptions) => XmlComponent;
3752
+ /**
3753
+ * Creates an xdr:cNvPr element (Non-Visual Drawing Properties).
3754
+ *
3755
+ * ## XSD Schema
3756
+ * ```xml
3757
+ * <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps"/>
3758
+ * ```
3759
+ */
3760
+ declare const createXdrCNvPr: (options: {
3761
+ readonly id?: number;
3762
+ readonly name?: string;
3763
+ }) => XmlComponent;
3764
+ /**
3765
+ * Creates an xdr:cNvSpPr element (Non-Visual Drawing Shape Properties).
3766
+ *
3767
+ * ## XSD Schema
3768
+ * ```xml
3769
+ * <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps"/>
3770
+ * ```
3771
+ */
3772
+ declare const createXdrCNvSpPr: () => XmlComponent;
3773
+ /**
3774
+ * Creates an xdr:cNvCxnSpPr element (Non-Visual Connector Properties).
3775
+ *
3776
+ * ## XSD Schema
3777
+ * ```xml
3778
+ * <xsd:element name="cNvCxnSpPr" type="a:CT_NonVisualConnectorProperties"/>
3779
+ * ```
3780
+ */
3781
+ declare const createXdrCNvCxnSpPr: () => XmlComponent;
3782
+ /**
3783
+ * Creates an xdr:cNvPicPr element (Non-Visual Picture Properties).
3784
+ *
3785
+ * ## XSD Schema
3786
+ * ```xml
3787
+ * <xsd:element name="cNvPicPr" type="a:CT_NonVisualPictureProperties"/>
3788
+ * ```
3789
+ */
3790
+ declare const createXdrCNvPicPr: (options?: {
3791
+ readonly preferRelativeResize?: boolean;
3792
+ }) => XmlComponent;
3793
+ /**
3794
+ * Creates an xdr:cNvGrpSpPr element (Non-Visual Group Shape Properties).
3795
+ *
3796
+ * ## XSD Schema
3797
+ * ```xml
3798
+ * <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps"/>
3799
+ * ```
3800
+ */
3801
+ declare const createXdrCNvGrpSpPr: () => XmlComponent;
3802
+ /**
3803
+ * Creates an xdr:nvSpPr element (Shape Non-Visual Properties).
3804
+ *
3805
+ * ## XSD Schema
3806
+ * ```xml
3807
+ * <xsd:element name="nvSpPr" type="CT_ShapeNonVisual"/>
3808
+ * ```
3809
+ */
3810
+ declare const createXdrNvSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3811
+ /**
3812
+ * Creates an xdr:nvCxnSpPr element (Connector Non-Visual Properties).
3813
+ *
3814
+ * ## XSD Schema
3815
+ * ```xml
3816
+ * <xsd:element name="nvCxnSpPr" type="CT_ConnectorNonVisual"/>
3817
+ * ```
3818
+ */
3819
+ declare const createXdrNvCxnSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3820
+ /**
3821
+ * Creates an xdr:nvPicPr element (Picture Non-Visual Properties).
3822
+ *
3823
+ * ## XSD Schema
3824
+ * ```xml
3825
+ * <xsd:element name="nvPicPr" type="CT_PictureNonVisual"/>
3826
+ * ```
3827
+ */
3828
+ declare const createXdrNvPicPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3829
+ /**
3830
+ * Creates an xdr:nvGrpSpPr element (Group Shape Non-Visual Properties).
3831
+ *
3832
+ * ## XSD Schema
3833
+ * ```xml
3834
+ * <xsd:element name="nvGrpSpPr" type="CT_GroupShapeNonVisual"/>
3835
+ * ```
3836
+ */
3837
+ declare const createXdrNvGrpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3838
+ interface XdrShapeAttributes {
3839
+ readonly macro?: string;
3840
+ readonly textlink?: string;
3841
+ readonly fLocksText?: boolean;
3842
+ readonly fPublished?: boolean;
3843
+ }
3844
+ /**
3845
+ * Creates an xdr:sp element (Shape).
3846
+ *
3847
+ * ## XSD Schema
3848
+ * ```xml
3849
+ * <xsd:element name="sp" type="CT_Shape"/>
3850
+ * ```
3851
+ */
3852
+ declare const createXdrSp: (options?: {
3853
+ readonly attributes?: XdrShapeAttributes;
3854
+ readonly children?: readonly IXmlableObject[];
3855
+ }) => XmlComponent;
3856
+ /**
3857
+ * Creates an xdr:cxnSp element (Connector Shape).
3858
+ *
3859
+ * ## XSD Schema
3860
+ * ```xml
3861
+ * <xsd:element name="cxnSp" type="CT_Connector"/>
3862
+ * ```
3863
+ */
3864
+ declare const createXdrCxnSp: (children?: readonly IXmlableObject[]) => XmlComponent;
3865
+ /**
3866
+ * Creates an xdr:pic element (Picture).
3867
+ *
3868
+ * ## XSD Schema
3869
+ * ```xml
3870
+ * <xsd:element name="pic" type="CT_Picture"/>
3871
+ * ```
3872
+ */
3873
+ declare const createXdrPic: (children?: readonly IXmlableObject[]) => XmlComponent;
3874
+ /**
3875
+ * Creates an xdr:grpSp element (Group Shape).
3876
+ *
3877
+ * ## XSD Schema
3878
+ * ```xml
3879
+ * <xsd:element name="grpSp" type="CT_GroupShape"/>
3880
+ * ```
3881
+ */
3882
+ declare const createXdrGrpSp: (children?: readonly IXmlableObject[]) => XmlComponent;
3883
+ /**
3884
+ * Creates an xdr:spPr element (Shape Properties).
3885
+ *
3886
+ * ## XSD Schema
3887
+ * ```xml
3888
+ * <xsd:element name="spPr" type="a:CT_ShapeProperties"/>
3889
+ * ```
3890
+ */
3891
+ declare const createXdrSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3892
+ /**
3893
+ * Creates an xdr:grpSpPr element (Group Shape Properties).
3894
+ *
3895
+ * ## XSD Schema
3896
+ * ```xml
3897
+ * <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties"/>
3898
+ * ```
3899
+ */
3900
+ declare const createXdrGrpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
3901
+ /**
3902
+ * Creates an xdr:style element (Shape Style).
3903
+ *
3904
+ * ## XSD Schema
3905
+ * ```xml
3906
+ * <xsd:element name="style" type="a:CT_ShapeStyle"/>
3907
+ * ```
3908
+ */
3909
+ declare const createXdrStyle: () => XmlComponent;
3910
+ /**
3911
+ * Creates an xdr:txBody element (Text Body).
3912
+ *
3913
+ * ## XSD Schema
3914
+ * ```xml
3915
+ * <xsd:element name="txBody" type="a:CT_TextBody"/>
3916
+ * ```
3917
+ */
3918
+ declare const createXdrTxBody: (children?: readonly IXmlableObject[]) => XmlComponent;
3919
+ /**
3920
+ * Creates an xdr:blipFill element (Blip Fill).
3921
+ *
3922
+ * ## XSD Schema
3923
+ * ```xml
3924
+ * <xsd:element name="blipFill" type="a:CT_BlipFillProperties"/>
3925
+ * ```
3926
+ */
3927
+ declare const createXdrBlipFill: (children?: readonly IXmlableObject[]) => XmlComponent;
3928
+ /**
3929
+ * Creates an xdr:contentPart element (Content Part).
3930
+ *
3931
+ * ## XSD Schema
3932
+ * ```xml
3933
+ * <xsd:element name="contentPart" type="CT_Rel"/>
3934
+ * ```
3935
+ */
3936
+ declare const createXdrContentPart: (rId?: string) => XmlComponent;
3937
+ interface XdrTwoCellAnchorOptions {
3938
+ readonly editAs?: "twoCell" | "oneCell" | "absolute";
3939
+ readonly children?: readonly IXmlableObject[];
3940
+ }
3941
+ /**
3942
+ * Creates an xdr:twoCellAnchor element (Two Cell Anchor).
3943
+ *
3944
+ * ## XSD Schema
3945
+ * ```xml
3946
+ * <xsd:element name="twoCellAnchor" type="CT_TwoCellAnchor"/>
3947
+ * ```
3948
+ */
3949
+ declare const createXdrTwoCellAnchor: (options?: XdrTwoCellAnchorOptions) => XmlComponent;
3950
+ /**
3951
+ * Creates an xdr:oneCellAnchor element (One Cell Anchor).
3952
+ *
3953
+ * ## XSD Schema
3954
+ * ```xml
3955
+ * <xsd:element name="oneCellAnchor" type="CT_OneCellAnchor"/>
3956
+ * ```
3957
+ */
3958
+ declare const createXdrOneCellAnchor: (children?: readonly IXmlableObject[]) => XmlComponent;
3959
+ //#endregion
3960
+ //#region src/drawingml/wordprocessing-drawing/wordprocessing-drawing.d.ts
3961
+ interface WpNonVisualDrawingPropsOptions {
3962
+ readonly id?: number;
3963
+ readonly name?: string;
3964
+ readonly descr?: string;
3965
+ readonly hidden?: boolean;
3966
+ }
3967
+ /**
3968
+ * Creates a wp:cNvPr element (Non-Visual Drawing Properties).
3969
+ *
3970
+ * ## XSD Schema
3971
+ * ```xml
3972
+ * <xsd:element name="cNvPr" type="a:CT_NonVisualDrawingProps"/>
3973
+ * ```
3974
+ */
3975
+ declare const createWpCNvPr: (options?: WpNonVisualDrawingPropsOptions) => XmlComponent;
3976
+ /**
3977
+ * Creates a wp:cNvSpPr element (Non-Visual Drawing Shape Properties).
3978
+ *
3979
+ * ## XSD Schema
3980
+ * ```xml
3981
+ * <xsd:element name="cNvSpPr" type="a:CT_NonVisualDrawingShapeProps"/>
3982
+ * ```
3983
+ */
3984
+ declare const createWpCNvSpPr: (options?: {
3985
+ readonly txSp?: boolean;
3986
+ }) => XmlComponent;
3987
+ /**
3988
+ * Creates a wp:cNvCnPr element (Non-Visual Connector Properties).
3989
+ *
3990
+ * ## XSD Schema
3991
+ * ```xml
3992
+ * <xsd:element name="cNvCnPr" type="a:CT_NonVisualConnectorProperties"/>
3993
+ * ```
3994
+ */
3995
+ declare const createWpCNvCnPr: () => XmlComponent;
3996
+ /**
3997
+ * Creates a wp:cNvFrPr element (Non-Visual Graphic Frame Properties).
3998
+ *
3999
+ * ## XSD Schema
4000
+ * ```xml
4001
+ * <xsd:element name="cNvFrPr" type="a:CT_NonVisualGraphicFrameProperties"/>
4002
+ * ```
4003
+ */
4004
+ declare const createWpCNvFrPr: () => XmlComponent;
4005
+ /**
4006
+ * Creates a wp:cNvGrpSpPr element (Non-Visual Group Shape Properties).
4007
+ *
4008
+ * ## XSD Schema
4009
+ * ```xml
4010
+ * <xsd:element name="cNvGrpSpPr" type="a:CT_NonVisualGroupDrawingShapeProps"/>
4011
+ * ```
4012
+ */
4013
+ declare const createWpCNvGrpSpPr: () => XmlComponent;
4014
+ /**
4015
+ * Creates a wp:cNvContentPartPr element (Non-Visual Content Part Properties).
4016
+ *
4017
+ * ## XSD Schema
4018
+ * ```xml
4019
+ * <xsd:element name="cNvContentPartPr" type="a:CT_NonVisualContentPartProperties"/>
4020
+ * ```
4021
+ */
4022
+ interface ContentPartPropertiesOptions {
4023
+ readonly isComment?: boolean;
4024
+ }
4025
+ declare const createWpCNvContentPartPr: (options?: ContentPartPropertiesOptions) => XmlComponent;
4026
+ interface WpShapeOptions {
4027
+ readonly cNvPr?: WpNonVisualDrawingPropsOptions;
4028
+ readonly normalEastAsianFlow?: boolean;
4029
+ readonly children?: readonly IXmlableObject[];
4030
+ }
4031
+ /**
4032
+ * Creates a wp:wsp element (Wordprocessing Shape).
4033
+ *
4034
+ * ## XSD Schema
4035
+ * ```xml
4036
+ * <xsd:element name="wsp" type="CT_WordprocessingShape"/>
4037
+ * ```
4038
+ */
4039
+ declare const createWpSp: (options?: WpShapeOptions) => XmlComponent;
4040
+ /**
4041
+ * Creates a wp:spPr element (Shape Properties within wp namespace).
4042
+ *
4043
+ * ## XSD Schema
4044
+ * ```xml
4045
+ * <xsd:element name="spPr" type="a:CT_ShapeProperties"/>
4046
+ * ```
4047
+ */
4048
+ declare const createWpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4049
+ /**
4050
+ * Creates a wp:grpSpPr element (Group Shape Properties within wp namespace).
4051
+ *
4052
+ * ## XSD Schema
4053
+ * ```xml
4054
+ * <xsd:element name="grpSpPr" type="a:CT_GroupShapeProperties"/>
4055
+ * ```
4056
+ */
4057
+ declare const createWpGrpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4058
+ /**
4059
+ * Creates a wp:style element (Shape Style).
4060
+ *
4061
+ * ## XSD Schema
4062
+ * ```xml
4063
+ * <xsd:element name="style" type="a:CT_ShapeStyle"/>
4064
+ * ```
4065
+ */
4066
+ declare const createWpStyle: () => XmlComponent;
4067
+ /**
4068
+ * Creates a wp:xfrm element (2D Transform).
4069
+ *
4070
+ * ## XSD Schema
4071
+ * ```xml
4072
+ * <xsd:element name="xfrm" type="a:CT_Transform2D"/>
4073
+ * ```
4074
+ */
4075
+ declare const createWpXfrm: (children?: readonly IXmlableObject[]) => XmlComponent;
4076
+ /**
4077
+ * Creates a wp:bodyPr element (Text Body Properties).
4078
+ *
4079
+ * ## XSD Schema
4080
+ * ```xml
4081
+ * <xsd:element name="bodyPr" type="a:CT_TextBodyProperties"/>
4082
+ * ```
4083
+ */
4084
+ declare const createWpBodyPr: () => XmlComponent;
4085
+ interface WpTextboxOptions {
4086
+ readonly id?: number;
4087
+ readonly children?: readonly IXmlableObject[];
4088
+ }
4089
+ /**
4090
+ * Creates a wp:txbx element (Textbox Info).
4091
+ *
4092
+ * ## XSD Schema
4093
+ * ```xml
4094
+ * <xsd:element name="txbx" type="CT_TextboxInfo"/>
4095
+ * ```
4096
+ */
4097
+ declare const createWpTxbx: (options?: WpTextboxOptions) => XmlComponent;
4098
+ /**
4099
+ * Creates a wp:txbxContent element (Textbox Content).
4100
+ *
4101
+ * ## XSD Schema
4102
+ * ```xml
4103
+ * <xsd:element name="txbxContent" type="CT_TxbxContent"/>
4104
+ * ```
4105
+ */
4106
+ declare const createWpTxbxContent: (children?: readonly IXmlableObject[]) => XmlComponent;
4107
+ interface WpLinkedTextboxOptions {
4108
+ readonly id: number;
4109
+ readonly seq: number;
4110
+ }
4111
+ /**
4112
+ * Creates a wp:linkedTxbx element (Linked Textbox Information).
4113
+ *
4114
+ * ## XSD Schema
4115
+ * ```xml
4116
+ * <xsd:element name="linkedTxbx" type="CT_LinkedTextboxInformation"/>
4117
+ * ```
4118
+ */
4119
+ declare const createWpLinkedTxbx: (options: WpLinkedTextboxOptions) => XmlComponent;
4120
+ /**
4121
+ * Creates a wp:extLst element (Extension List).
4122
+ *
4123
+ * ## XSD Schema
4124
+ * ```xml
4125
+ * <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList"/>
4126
+ * ```
4127
+ */
4128
+ declare const createWpExtLst: (children?: readonly IXmlableObject[]) => XmlComponent;
4129
+ interface WpGraphicFrameOptions {
4130
+ readonly children?: readonly IXmlableObject[];
4131
+ }
4132
+ /**
4133
+ * Creates a wp:graphicFrame element (Graphic Frame).
4134
+ *
4135
+ * ## XSD Schema
4136
+ * ```xml
4137
+ * <xsd:element name="graphicFrame" type="CT_GraphicFrame"/>
4138
+ * ```
4139
+ */
4140
+ declare const createWpGraphicFrame: (options?: WpGraphicFrameOptions) => XmlComponent;
4141
+ interface WpContentPartOptions {
4142
+ readonly bwMode?: string;
4143
+ readonly rId?: string;
4144
+ }
4145
+ /**
4146
+ * Creates a wp:contentPart element (Content Part).
4147
+ *
4148
+ * ## XSD Schema
4149
+ * ```xml
4150
+ * <xsd:element name="contentPart" type="CT_WordprocessingContentPart"/>
4151
+ * ```
4152
+ */
4153
+ declare const createWpContentPart: (options?: WpContentPartOptions) => XmlComponent;
4154
+ /**
4155
+ * Creates a wp:nvContentPartPr element (Non-Visual Content Part Properties).
4156
+ *
4157
+ * ## XSD Schema
4158
+ * ```xml
4159
+ * <xsd:element name="nvContentPartPr" type="CT_WordprocessingContentPartNonVisual"/>
4160
+ * ```
4161
+ */
4162
+ declare const createWpNvContentPartPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4163
+ interface WpGroupOptions {
4164
+ readonly children?: readonly IXmlableObject[];
4165
+ }
4166
+ /**
4167
+ * Creates a wp:wgp element (Wordprocessing Group).
4168
+ *
4169
+ * ## XSD Schema
4170
+ * ```xml
4171
+ * <xsd:element name="wgp" type="CT_WordprocessingGroup"/>
4172
+ * ```
4173
+ */
4174
+ declare const createWpGrpSp: (options?: WpGroupOptions) => XmlComponent;
4175
+ /**
4176
+ * Creates a wp:grpSp element (Nested Group Shape within Wordprocessing Group).
4177
+ *
4178
+ * ## XSD Schema
4179
+ * ```xml
4180
+ * <xsd:element name="grpSp" type="CT_WordprocessingGroup"/>
4181
+ * ```
4182
+ */
4183
+ declare const createWpNestedGrpSp: (options?: WpGroupOptions) => XmlComponent;
4184
+ interface WpCanvasOptions {
4185
+ readonly children?: readonly IXmlableObject[];
4186
+ }
4187
+ /**
4188
+ * Creates a wp:wpc element (Wordprocessing Canvas).
4189
+ *
4190
+ * ## XSD Schema
4191
+ * ```xml
4192
+ * <xsd:element name="wpc" type="CT_WordprocessingCanvas"/>
4193
+ * ```
4194
+ */
4195
+ declare const createWpCanvas: (options?: WpCanvasOptions) => XmlComponent;
4196
+ /**
4197
+ * Creates a wp:bg element (Background Formatting).
4198
+ *
4199
+ * ## XSD Schema
4200
+ * ```xml
4201
+ * <xsd:element name="bg" type="a:CT_BackgroundFormatting"/>
4202
+ * ```
4203
+ */
4204
+ declare const createWpBg: () => XmlComponent;
4205
+ /**
4206
+ * Creates a wp:whole element (Whole E2O Formatting).
4207
+ *
4208
+ * ## XSD Schema
4209
+ * ```xml
4210
+ * <xsd:element name="whole" type="a:CT_WholeE2oFormatting"/>
4211
+ * ```
4212
+ */
4213
+ declare const createWpWhole: () => XmlComponent;
4214
+ //#endregion
4215
+ //#region src/drawingml/diagram/layout-vars.d.ts
4216
+ interface AdjOptions {
4217
+ /** 1-based index (required) */
4218
+ readonly idx: number;
4219
+ /** Adjustment value (required) */
4220
+ readonly val: number;
4221
+ }
4222
+ /** Creates a dgm:adj element. */
4223
+ declare const createAdj: (options: AdjOptions) => XmlComponent;
4224
+ declare const AnimLevelValue: {
4225
+ readonly NONE: "none";
4226
+ readonly LEVEL: "lvl";
4227
+ readonly CENTER: "ctr";
4228
+ };
4229
+ interface AnimLvlOptions {
4230
+ readonly val?: (typeof AnimLevelValue)[keyof typeof AnimLevelValue];
4231
+ }
4232
+ /** Creates a dgm:animLvl element. */
4233
+ declare const createAnimLvl: (options?: AnimLvlOptions) => XmlComponent;
4234
+ declare const AnimOneValue: {
4235
+ readonly NONE: "none";
4236
+ readonly ONE: "one";
4237
+ readonly BRANCH: "branch";
4238
+ };
4239
+ interface AnimOneOptions {
4240
+ readonly val?: (typeof AnimOneValue)[keyof typeof AnimOneValue];
4241
+ }
4242
+ /** Creates a dgm:animOne element. */
4243
+ declare const createAnimOne: (options?: AnimOneOptions) => XmlComponent;
4244
+ interface ChMaxOptions {
4245
+ readonly val?: number;
4246
+ }
4247
+ /** Creates a dgm:chMax element. */
4248
+ declare const createChMax: (options?: ChMaxOptions) => XmlComponent;
4249
+ interface ChPrefOptions {
4250
+ readonly val?: number;
4251
+ }
4252
+ /** Creates a dgm:chPref element. */
4253
+ declare const createChPref: (options?: ChPrefOptions) => XmlComponent;
4254
+ interface OrgChartOptions {
4255
+ readonly val?: boolean;
4256
+ }
4257
+ /** Creates a dgm:orgChart element. */
4258
+ declare const createOrgChart: (options?: OrgChartOptions) => XmlComponent;
4259
+ declare const HierBranchStyle: {
4260
+ readonly LEFT: "l";
4261
+ readonly RIGHT: "r";
4262
+ readonly HANGING: "hang";
4263
+ readonly STANDARD: "std";
4264
+ readonly INITIAL: "init";
4265
+ };
4266
+ interface HierBranchOptions {
4267
+ readonly val?: (typeof HierBranchStyle)[keyof typeof HierBranchStyle];
4268
+ }
4269
+ /** Creates a dgm:hierBranch element. */
4270
+ declare const createHierBranch: (options?: HierBranchOptions) => XmlComponent;
4271
+ interface PresLayoutVarsOptions {
4272
+ readonly orgChart?: OrgChartOptions;
4273
+ readonly chMax?: ChMaxOptions;
4274
+ readonly chPref?: ChPrefOptions;
4275
+ readonly animOne?: AnimOneOptions;
4276
+ readonly animLvl?: AnimLvlOptions;
4277
+ readonly hierBranch?: HierBranchOptions;
4278
+ }
4279
+ /**
4280
+ * Creates a dgm:presLayoutVars element (CT_LayoutVariablePropertySet).
4281
+ *
4282
+ * ## XSD Schema
4283
+ * ```xml
4284
+ * <xsd:complexType name="CT_LayoutVariablePropertySet">
4285
+ * <xsd:sequence>
4286
+ * <xsd:element name="orgChart" type="CT_OrgChart" minOccurs="0"/>
4287
+ * <xsd:element name="chMax" type="CT_ChildMax" minOccurs="0"/>
4288
+ * <xsd:element name="chPref" type="CT_ChildPref" minOccurs="0"/>
4289
+ * <xsd:element name="bulletEnabled" type="CT_BulletEnabled" minOccurs="0"/>
4290
+ * <xsd:element name="dir" type="CT_Direction" minOccurs="0"/>
4291
+ * <xsd:element name="hierBranch" type="CT_HierBranchStyle" minOccurs="0"/>
4292
+ * <xsd:element name="animOne" type="CT_AnimOne" minOccurs="0"/>
4293
+ * <xsd:element name="animLvl" type="CT_AnimLvl" minOccurs="0"/>
4294
+ * <xsd:element name="resizeHandles" type="CT_ResizeHandles" minOccurs="0"/>
4295
+ * </xsd:sequence>
4296
+ * </xsd:complexType>
4297
+ * ```
4298
+ */
4299
+ declare const createPresLayoutVars: (options?: PresLayoutVarsOptions) => XmlComponent;
4300
+ interface AdjLstOptions {
4301
+ readonly adj?: readonly AdjOptions[];
4302
+ }
4303
+ /** Creates a dgm:adjLst element containing dgm:adj children. */
4304
+ declare const createAdjLst: (options?: AdjLstOptions) => XmlComponent;
4305
+ //#endregion
4306
+ //#region src/drawingml/diagram/headers.d.ts
4307
+ interface DiagramNameOptions {
4308
+ readonly lang?: string;
4309
+ readonly val: string;
4310
+ }
4311
+ interface DiagramDescriptionOptions {
4312
+ readonly lang?: string;
4313
+ readonly val: string;
4314
+ }
4315
+ interface DiagramCategoryOptions {
4316
+ readonly type: string;
4317
+ readonly pri: number;
4318
+ }
4319
+ interface ColorsDefHdrOptions {
4320
+ readonly uniqueId: string;
4321
+ readonly minVer?: string;
4322
+ readonly resId?: number;
4323
+ readonly title: readonly DiagramNameOptions[];
4324
+ readonly desc: readonly DiagramDescriptionOptions[];
4325
+ readonly categories?: readonly DiagramCategoryOptions[];
4326
+ }
4327
+ /**
4328
+ * Creates a dgm:colorsDefHdr element (CT_ColorTransformHeader).
4329
+ *
4330
+ * ## XSD Schema
4331
+ * ```xml
4332
+ * <xsd:complexType name="CT_ColorTransformHeader">
4333
+ * <xsd:sequence>
4334
+ * <xsd:element name="title" type="CT_CTName" minOccurs="1" maxOccurs="unbounded"/>
4335
+ * <xsd:element name="desc" type="CT_CTDescription" minOccurs="1" maxOccurs="unbounded"/>
4336
+ * <xsd:element name="catLst" type="CT_CTCategories" minOccurs="0"/>
4337
+ * <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0"/>
4338
+ * </xsd:sequence>
4339
+ * <xsd:attribute name="uniqueId" type="xsd:string" use="required"/>
4340
+ * <xsd:attribute name="minVer" type="xsd:string" use="optional"/>
4341
+ * <xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/>
4342
+ * </xsd:complexType>
4343
+ * ```
4344
+ */
4345
+ declare const createColorsDefHdr: (options: ColorsDefHdrOptions) => XmlComponent;
4346
+ interface ColorsDefHdrLstOptions {
4347
+ readonly headers?: readonly ColorsDefHdrOptions[];
4348
+ }
4349
+ /** Creates a dgm:colorsDefHdrLst element. */
4350
+ declare const createColorsDefHdrLst: (options?: ColorsDefHdrLstOptions) => XmlComponent;
4351
+ interface LayoutDefHdrOptions {
4352
+ readonly uniqueId: string;
4353
+ readonly minVer?: string;
4354
+ readonly defStyle?: string;
4355
+ readonly resId?: number;
4356
+ readonly title: readonly DiagramNameOptions[];
4357
+ readonly desc: readonly DiagramDescriptionOptions[];
4358
+ readonly categories?: readonly DiagramCategoryOptions[];
4359
+ }
4360
+ /**
4361
+ * Creates a dgm:layoutDefHdr element (CT_DiagramDefinitionHeader).
4362
+ *
4363
+ * ## XSD Schema
4364
+ * ```xml
4365
+ * <xsd:complexType name="CT_DiagramDefinitionHeader">
4366
+ * <xsd:sequence>
4367
+ * <xsd:element name="title" type="CT_Name" minOccurs="1" maxOccurs="unbounded"/>
4368
+ * <xsd:element name="desc" type="CT_Description" minOccurs="1" maxOccurs="unbounded"/>
4369
+ * <xsd:element name="catLst" type="CT_Categories" minOccurs="0"/>
4370
+ * <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0"/>
4371
+ * </xsd:sequence>
4372
+ * <xsd:attribute name="uniqueId" type="xsd:string" use="required"/>
4373
+ * <xsd:attribute name="minVer" type="xsd:string" use="optional"/>
4374
+ * <xsd:attribute name="defStyle" type="xsd:string" use="optional" default=""/>
4375
+ * <xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/>
4376
+ * </xsd:complexType>
4377
+ * ```
4378
+ */
4379
+ declare const createLayoutDefHdr: (options: LayoutDefHdrOptions) => XmlComponent;
4380
+ interface LayoutDefHdrLstOptions {
4381
+ readonly headers?: readonly LayoutDefHdrOptions[];
4382
+ }
4383
+ /** Creates a dgm:layoutDefHdrLst element. */
4384
+ declare const createLayoutDefHdrLst: (options?: LayoutDefHdrLstOptions) => XmlComponent;
4385
+ interface StyleDefHdrOptions {
4386
+ readonly uniqueId: string;
4387
+ readonly minVer?: string;
4388
+ readonly resId?: number;
4389
+ readonly title: readonly DiagramNameOptions[];
4390
+ readonly desc: readonly DiagramDescriptionOptions[];
4391
+ readonly categories?: readonly DiagramCategoryOptions[];
4392
+ }
4393
+ /**
4394
+ * Creates a dgm:styleDefHdr element (CT_StyleDefinitionHeader).
4395
+ *
4396
+ * ## XSD Schema
4397
+ * ```xml
4398
+ * <xsd:complexType name="CT_StyleDefinitionHeader">
4399
+ * <xsd:sequence>
4400
+ * <xsd:element name="title" type="CT_SDName" minOccurs="1" maxOccurs="unbounded"/>
4401
+ * <xsd:element name="desc" type="CT_SDDescription" minOccurs="1" maxOccurs="unbounded"/>
4402
+ * <xsd:element name="catLst" type="CT_SDCategories" minOccurs="0"/>
4403
+ * <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0"/>
4404
+ * </xsd:sequence>
4405
+ * <xsd:attribute name="uniqueId" type="xsd:string" use="required"/>
4406
+ * <xsd:attribute name="minVer" type="xsd:string" use="optional"/>
4407
+ * <xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/>
4408
+ * </xsd:complexType>
4409
+ * ```
4410
+ */
4411
+ declare const createStyleDefHdr: (options: StyleDefHdrOptions) => XmlComponent;
4412
+ interface StyleDefHdrLstOptions {
4413
+ readonly headers?: readonly StyleDefHdrOptions[];
4414
+ }
4415
+ /** Creates a dgm:styleDefHdrLst element. */
4416
+ declare const createStyleDefHdrLst: (options?: StyleDefHdrLstOptions) => XmlComponent;
4417
+ //#endregion
4418
+ //#region src/drawingml/diagram/diagram-style.d.ts
4419
+ declare const StyleMatrixIndex: {
4420
+ readonly SUBTLE: "subtle";
4421
+ readonly MODERATE: "moderate";
4422
+ readonly INTENSE: "intense";
4423
+ };
4424
+ declare const FontCollectionIndex: {
4425
+ readonly MAJOR: "major";
4426
+ readonly MINOR: "minor";
4427
+ readonly NONE: "none";
4428
+ };
4429
+ interface DiagramStyleOptions {
4430
+ /** Line style matrix reference index */
4431
+ readonly lnIdx?: number;
4432
+ /** Fill style matrix reference index */
4433
+ readonly fillIdx?: number;
4434
+ /** Effect style matrix reference index */
4435
+ readonly effectIdx?: number;
4436
+ /** Font reference collection index */
4437
+ readonly fontIdx?: string;
4438
+ }
4439
+ /**
4440
+ * Creates a dgm:style element (a:CT_ShapeStyle).
4441
+ *
4442
+ * ## XSD Schema
4443
+ * ```xml
4444
+ * <xsd:complexType name="CT_ShapeStyle">
4445
+ * <xsd:sequence>
4446
+ * <xsd:element name="lnRef" type="CT_StyleMatrixReference"/>
4447
+ * <xsd:element name="fillRef" type="CT_StyleMatrixReference"/>
4448
+ * <xsd:element name="effectRef" type="CT_StyleMatrixReference"/>
4449
+ * <xsd:element name="fontRef" type="CT_FontReference"/>
4450
+ * </xsd:sequence>
4451
+ * </xsd:complexType>
4452
+ * ```
4453
+ */
4454
+ declare const createDiagramStyle: (options?: DiagramStyleOptions) => XmlComponent;
4455
+ declare const ColorMethod: {
4456
+ readonly SPAN: "span";
4457
+ readonly CYCLE: "cycle";
4458
+ readonly REPEAT: "repeat";
4459
+ };
4460
+ declare const HueDirection: {
4461
+ readonly CLOCKWISE: "cw";
4462
+ readonly COUNTER_CLOCKWISE: "ccw";
4463
+ };
4464
+ interface ColorListOptions {
4465
+ /** Color method (default: span) */
4466
+ readonly meth?: (typeof ColorMethod)[keyof typeof ColorMethod];
4467
+ /** Hue direction (default: cw) */
4468
+ readonly hueDir?: (typeof HueDirection)[keyof typeof HueDirection];
4469
+ /** Colors (EG_ColorChoice items) */
4470
+ readonly colors?: readonly SolidFillOptions[];
4471
+ }
4472
+ declare const createFillClrLst: (options?: ColorListOptions) => XmlComponent;
4473
+ declare const createLinClrLst: (options?: ColorListOptions) => XmlComponent;
4474
+ declare const createEffectClrLst: (options?: ColorListOptions) => XmlComponent;
4475
+ declare const createTxFillClrLst: (options?: ColorListOptions) => XmlComponent;
4476
+ declare const createTxLinClrLst: (options?: ColorListOptions) => XmlComponent;
4477
+ declare const createTxEffectClrLst: (options?: ColorListOptions) => XmlComponent;
4478
+ interface DiagramStyleLblOptions {
4479
+ /** Label name (required) */
4480
+ readonly name: string;
4481
+ readonly fillClrLst?: ColorListOptions;
4482
+ readonly linClrLst?: ColorListOptions;
4483
+ readonly effectClrLst?: ColorListOptions;
4484
+ readonly txFillClrLst?: ColorListOptions;
4485
+ readonly txLinClrLst?: ColorListOptions;
4486
+ readonly txEffectClrLst?: ColorListOptions;
4487
+ }
4488
+ /**
4489
+ * Creates a dgm:styleLbl element (CT_StyleLabel or CT_CTStyleLabel).
4490
+ *
4491
+ * ## XSD Schema (CT_CTStyleLabel, for color transforms)
4492
+ * ```xml
4493
+ * <xsd:complexType name="CT_CTStyleLabel">
4494
+ * <xsd:sequence>
4495
+ * <xsd:element name="fillClrLst" type="CT_Colors" minOccurs="0"/>
4496
+ * <xsd:element name="linClrLst" type="CT_Colors" minOccurs="0"/>
4497
+ * <xsd:element name="effectClrLst" type="CT_Colors" minOccurs="0"/>
4498
+ * <xsd:element name="txLinClrLst" type="CT_Colors" minOccurs="0"/>
4499
+ * <xsd:element name="txFillClrLst" type="CT_Colors" minOccurs="0"/>
4500
+ * <xsd:element name="txEffectClrLst" type="CT_Colors" minOccurs="0"/>
4501
+ * <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0"/>
4502
+ * </xsd:sequence>
4503
+ * <xsd:attribute name="name" type="xsd:string" use="required"/>
4504
+ * </xsd:complexType>
4505
+ * ```
4506
+ *
4507
+ * ## XSD Schema (CT_StyleLabel, for quick styles)
4508
+ * ```xml
4509
+ * <xsd:complexType name="CT_StyleLabel">
4510
+ * <xsd:sequence>
4511
+ * <xsd:element name="scene3d" type="a:CT_Scene3D" minOccurs="0"/>
4512
+ * <xsd:element name="sp3d" type="a:CT_Shape3D" minOccurs="0"/>
4513
+ * <xsd:element name="txPr" type="CT_TextProps" minOccurs="0"/>
4514
+ * <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0"/>
4515
+ * <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0"/>
4516
+ * </xsd:sequence>
4517
+ * <xsd:attribute name="name" type="xsd:string" use="required"/>
4518
+ * </xsd:complexType>
4519
+ * ```
4520
+ */
4521
+ declare const createStyleLbl: (options: DiagramStyleLblOptions) => XmlComponent;
4522
+ //#endregion
4523
+ //#region src/drawingml/diagram/diagram-rel.d.ts
4524
+ interface DiagramRelIdsOptions {
4525
+ /** Relationship to data model part */
4526
+ readonly dm: string;
4527
+ /** Relationship to layout definition part */
4528
+ readonly lo: string;
4529
+ /** Relationship to quick style part */
4530
+ readonly qs: string;
4531
+ /** Relationship to color transform part */
4532
+ readonly cs: string;
4533
+ }
4534
+ /**
4535
+ * Creates a dgm:relIds element (CT_RelIds).
4536
+ *
4537
+ * ## XSD Schema
4538
+ * ```xml
4539
+ * <xsd:complexType name="CT_RelIds">
4540
+ * <xsd:attribute ref="r:dm" use="required"/>
4541
+ * <xsd:attribute ref="r:lo" use="required"/>
4542
+ * <xsd:attribute ref="r:qs" use="required"/>
4543
+ * <xsd:attribute ref="r:cs" use="required"/>
4544
+ * </xsd:complexType>
4545
+ * ```
4546
+ */
4547
+ declare const createDiagramRelIds: (options: DiagramRelIdsOptions) => XmlComponent;
4548
+ //#endregion
4549
+ //#region src/drawingml/diagram/diagram-props.d.ts
4550
+ interface DiagramExtLstOptions {
4551
+ /** Extension URIs */
4552
+ readonly extensions?: readonly DiagramExtensionOptions[];
4553
+ }
4554
+ interface DiagramExtensionOptions {
4555
+ readonly uri: string;
4556
+ readonly content?: string;
4557
+ }
4558
+ /**
4559
+ * Creates a dgm:extLst element (a:CT_OfficeArtExtensionList).
4560
+ *
4561
+ * Generic extension list pattern used across OOXML.
4562
+ */
4563
+ declare const createDiagramExtLst: (options?: DiagramExtLstOptions) => XmlComponent;
4564
+ /**
4565
+ * Creates a dgm:sp3d element wrapping a:CT_Shape3D.
4566
+ *
4567
+ * Delegates to the shared createShape3D factory but wraps in dgm: namespace context.
4568
+ */
4569
+ declare const createDiagramSp3d: (options: Shape3DOptions) => XmlComponent;
4570
+ interface DiagramTextPropsOptions {
4571
+ /** 3D text properties (flat text, no 3D) — empty element */
4572
+ readonly flat?: boolean;
4573
+ }
4574
+ /**
4575
+ * Creates a dgm:txPr element (CT_TextProps).
4576
+ *
4577
+ * ## XSD Schema
4578
+ * ```xml
4579
+ * <xsd:complexType name="CT_TextProps">
4580
+ * <xsd:sequence>
4581
+ * <xsd:group ref="a:EG_Text3D" minOccurs="0" maxOccurs="1"/>
4582
+ * </xsd:sequence>
4583
+ * </xsd:complexType>
4584
+ * ```
4585
+ */
4586
+ declare const createDiagramTxPr: (_options?: DiagramTextPropsOptions) => XmlComponent;
4587
+ //#endregion
4588
+ //#region src/drawingml/dml-main-elements.d.ts
4589
+ /** Creates an a:sp element (Shape). */
4590
+ declare const createSp: (children?: readonly IXmlableObject[]) => XmlComponent;
4591
+ /** Creates an a:cxnSp element (Connector Shape). */
4592
+ declare const createCxnSp: (children?: readonly IXmlableObject[]) => XmlComponent;
4593
+ /** Creates an a:grpSp element (Group Shape). */
4594
+ declare const createGrpSp: (children?: readonly IXmlableObject[]) => XmlComponent;
4595
+ /** Creates an a:pic element (Picture). */
4596
+ declare const createPic: (children?: readonly IXmlableObject[]) => XmlComponent;
4597
+ /** Creates an a:graphicFrame element (Graphic Frame). */
4598
+ declare const createGraphicFrame: (children?: readonly IXmlableObject[]) => XmlComponent;
4599
+ /** Creates an a:txSp element (Text Shape). */
4600
+ declare const createTxSp: (children?: readonly IXmlableObject[]) => XmlComponent;
4601
+ /** Creates an a:cNvSpPr element (Non-Visual Drawing Shape Properties). */
4602
+ declare const createCNvSpPr: () => XmlComponent;
4603
+ /** Creates an a:cNvCxnSpPr element (Non-Visual Connector Properties). */
4604
+ declare const createCNvCxnSpPr: () => XmlComponent;
4605
+ /** Creates an a:cNvGrpSpPr element (Non-Visual Group Shape Properties). */
4606
+ declare const createCNvGrpSpPr: () => XmlComponent;
4607
+ /** Creates an a:cNvGraphicFramePr element (Non-Visual Graphic Frame Properties). */
4608
+ declare const createCNvGraphicFramePr: () => XmlComponent;
4609
+ /** Creates an a:nvSpPr element (Shape Non-Visual Properties). */
4610
+ declare const createNvSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4611
+ /** Creates an a:nvCxnSpPr element (Connector Non-Visual Properties). */
4612
+ declare const createNvCxnSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4613
+ /** Creates an a:nvGrpSpPr element (Group Shape Non-Visual Properties). */
4614
+ declare const createNvGrpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4615
+ /** Creates an a:nvGraphicFramePr element (Graphic Frame Non-Visual Properties). */
4616
+ declare const createNvGraphicFramePr: (children?: readonly IXmlableObject[]) => XmlComponent;
4617
+ /** Creates an a:nvPicPr element (Picture Non-Visual Properties). */
4618
+ declare const createNvPicPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4619
+ /** Creates an a:grpSpPr element (Group Shape Properties). */
4620
+ declare const createGrpSpPr: (children?: readonly IXmlableObject[]) => XmlComponent;
4621
+ /** Creates an a:cpLocks element (Content Part Locking). */
4622
+ declare const createCpLocks: () => XmlComponent;
4623
+ /** Creates an a:cxnSpLocks element (Connector Locking). */
4624
+ declare const createCxnSpLocks: () => XmlComponent;
4625
+ /** Creates an a:useSpRect element (Use Shape Rectangle). */
4626
+ declare const createUseSpRect: () => XmlComponent;
4627
+ /** Creates an a:tableStyle element (Table Style). */
4628
+ declare const createTableStyleElement: (children?: readonly IXmlableObject[]) => XmlComponent;
4629
+ /** Creates an a:cell3D element (Cell 3-D Properties). */
4630
+ declare const createCell3D: (children?: readonly IXmlableObject[]) => XmlComponent;
4631
+ /** Creates an a:insideH element (Inside Horizontal Border). */
4632
+ declare const createInsideH: (children?: readonly IXmlableObject[]) => XmlComponent;
4633
+ /** Creates an a:insideV element (Inside Vertical Border). */
4634
+ declare const createInsideV: (children?: readonly IXmlableObject[]) => XmlComponent;
4635
+ /** Creates an a:top element (Top Border). */
4636
+ declare const createTop: (children?: readonly IXmlableObject[]) => XmlComponent;
4637
+ /** Creates an a:bottom element (Bottom Border). */
4638
+ declare const createBottom: (children?: readonly IXmlableObject[]) => XmlComponent;
4639
+ /** Creates an a:left element (Left Border). */
4640
+ declare const createLeft: (children?: readonly IXmlableObject[]) => XmlComponent;
4641
+ /** Creates an a:right element (Right Border). */
4642
+ declare const createRight: (children?: readonly IXmlableObject[]) => XmlComponent;
4643
+ /** Creates an a:tl2br element (Top-Left to Bottom-Right Border). */
4644
+ declare const createTl2br: (children?: readonly IXmlableObject[]) => XmlComponent;
4645
+ /** Creates an a:tr2bl element (Top-Right to Bottom-Left Border). */
4646
+ declare const createTr2bl: (children?: readonly IXmlableObject[]) => XmlComponent;
4647
+ /** Creates an a:lnTlToBr element (Top-Left to Bottom-Right Line). */
4648
+ declare const createLnTlToBr: (children?: readonly IXmlableObject[]) => XmlComponent;
4649
+ /** Creates an a:lnBlToTr element (Bottom-Left to Top-Right Line). */
4650
+ declare const createLnBlToTr: (children?: readonly IXmlableObject[]) => XmlComponent;
4651
+ /** Creates an a:round element (Round Line Join). */
4652
+ declare const createRound: () => XmlComponent;
4653
+ /** Creates an a:start element (Connection Start Time). */
4654
+ declare const createStart: (children?: readonly IXmlableObject[]) => XmlComponent;
4655
+ /** Creates an a:end element (Audio CD End Time). */
4656
+ declare const createEnd: (options?: AudioCdTimeOptions) => XmlComponent;
4657
+ /** Creates an a:stCxn element (Start Connection). */
4658
+ declare const createStCxn: (children?: readonly IXmlableObject[]) => XmlComponent;
4659
+ /** Creates an a:endCxn element (End Connection). */
4660
+ declare const createEndCxn: (children?: readonly IXmlableObject[]) => XmlComponent;
4661
+ /** Creates an a:clrMap element (Color Map). */
4662
+ declare const createClrMap: (children?: readonly IXmlableObject[]) => XmlComponent;
4663
+ /** Creates an a:overrideClrMapping element (Override Color Mapping). */
4664
+ declare const createOverrideClrMapping: (children?: readonly IXmlableObject[]) => XmlComponent;
4665
+ /** Creates an a:extraClrScheme element (Extra Color Scheme). */
4666
+ declare const createExtraClrScheme: (children?: readonly IXmlableObject[]) => XmlComponent;
4667
+ /** Creates an a:custClr element (Custom Color). */
4668
+ declare const createCustClr: (children?: readonly IXmlableObject[]) => XmlComponent;
4669
+ /** Creates an a:custClrLst element (Custom Color List). */
4670
+ declare const createCustClrLst: (children?: readonly IXmlableObject[]) => XmlComponent;
4671
+ /** Creates an a:themeManager element (Theme Manager). */
4672
+ declare const createThemeManager: () => XmlComponent;
4673
+ /** Creates an a:themeOverride element (Theme Override). */
4674
+ declare const createThemeOverride: (children?: readonly IXmlableObject[]) => XmlComponent;
4675
+ /** Creates an a:font element (Supplemental Font / Font Collection). */
4676
+ declare const createFontElement: (children?: readonly IXmlableObject[]) => XmlComponent;
4677
+ /** Creates an a:spDef element (Shape Default). */
4678
+ declare const createSpDef: (children?: readonly IXmlableObject[]) => XmlComponent;
4679
+ /** Creates an a:lnDef element (Line Default). */
4680
+ declare const createLnDef: (children?: readonly IXmlableObject[]) => XmlComponent;
4681
+ /** Creates an a:txDef element (Text Default). */
4682
+ declare const createTxDef: (children?: readonly IXmlableObject[]) => XmlComponent;
4683
+ /** Creates an a:br element (Text Line Break). */
4684
+ declare const createBr: (children?: readonly IXmlableObject[]) => XmlComponent;
4685
+ /** Creates an a:tab element (Text Tab Stop). */
4686
+ declare const createTab: (children?: readonly IXmlableObject[]) => XmlComponent;
4687
+ /** Creates an a:tabLst element (Text Tab Stop List). */
4688
+ declare const createTabLst: (children?: readonly IXmlableObject[]) => XmlComponent;
4689
+ /** Creates an a:sym element (Symbol Font). */
4690
+ declare const createSym: (children?: readonly IXmlableObject[]) => XmlComponent;
4691
+ /** Creates an a:highlight element (Text Highlight). */
4692
+ declare const createHighlight: (children?: readonly IXmlableObject[]) => XmlComponent;
4693
+ /** Creates an a:buBlip element (Bullet Blip). */
4694
+ declare const createBuBlip: (children?: readonly IXmlableObject[]) => XmlComponent;
4695
+ /** Creates an a:buClrTx element (Bullet Color - Follow Text). */
4696
+ declare const createBuClrTx: () => XmlComponent;
4697
+ /** Creates an a:buFontTx element (Bullet Font - Follow Text). */
4698
+ declare const createBuFontTx: () => XmlComponent;
4699
+ /** Creates an a:buSzPts element (Bullet Size - Points). */
4700
+ declare const createBuSzPts: (children?: readonly IXmlableObject[]) => XmlComponent;
4701
+ /** Creates an a:buSzTx element (Bullet Size - Follow Text). */
4702
+ declare const createBuSzTx: () => XmlComponent;
4703
+ /** Creates an a:uFill element (Underline Fill). */
4704
+ declare const createUFill: (children?: readonly IXmlableObject[]) => XmlComponent;
4705
+ /** Creates an a:uFillTx element (Underline Fill - Follow Text). */
4706
+ declare const createUFillTx: () => XmlComponent;
4707
+ /** Creates an a:uLn element (Underline Line Properties). */
4708
+ declare const createULn: (children?: readonly IXmlableObject[]) => XmlComponent;
4709
+ /** Creates an a:uLnTx element (Underline Line - Follow Text). */
4710
+ declare const createULnTx: () => XmlComponent;
4711
+ /** Creates an a:audioCd element (Audio CD). */
4712
+ declare const createAudioCd: (children?: readonly IXmlableObject[]) => XmlComponent;
4713
+ /** Creates an a:quickTimeFile element (QuickTime File). */
4714
+ declare const createQuickTimeFile: (children?: readonly IXmlableObject[]) => XmlComponent;
4715
+ /** Creates an a:snd element (Sound / Embedded WAV Audio). */
4716
+ declare const createSnd: (children?: readonly IXmlableObject[]) => XmlComponent;
4717
+ /** Creates an a:wavAudioFile element (WAV Audio File). */
4718
+ declare const createWavAudioFile: (children?: readonly IXmlableObject[]) => XmlComponent;
4719
+ interface BuildChartOptions {
4720
+ readonly build?: string;
4721
+ readonly animateBackground?: boolean;
4722
+ }
4723
+ /** Creates an a:bldChart element (Build Chart). */
4724
+ declare const createBldChart: (options?: BuildChartOptions) => XmlComponent;
4725
+ interface BuildDiagramOptions {
4726
+ readonly build?: string;
4727
+ readonly reverse?: boolean;
4728
+ }
4729
+ /** Creates an a:bldDgm element (Build Diagram). */
4730
+ declare const createBldDgm: (options?: BuildDiagramOptions) => XmlComponent;
4731
+ /** Creates an a:bevel element (Line Join Bevel). */
4732
+ declare const createBevelElement: (children?: readonly IXmlableObject[]) => XmlComponent;
4733
+ interface ChartAnimationOptions {
4734
+ readonly seriesIndex?: number;
4735
+ readonly categoryIndex?: number;
4736
+ readonly buildStep?: string;
4737
+ }
4738
+ /** Creates an a:chart element (Animation Chart Element). */
4739
+ declare const createChart: (options?: ChartAnimationOptions) => XmlComponent;
4740
+ interface DiagramAnimationOptions {
4741
+ readonly id?: string;
4742
+ readonly buildStep?: string;
4743
+ }
4744
+ /** Creates an a:dgm element (Animation Diagram Element). */
4745
+ declare const createDgm: (options?: DiagramAnimationOptions) => XmlComponent;
4746
+ /** Creates an a:headers element (Headers). */
4747
+ declare const createHeaders: (children?: readonly IXmlableObject[]) => XmlComponent;
4748
+ /** Creates an a:header element (Header). */
4749
+ declare const createHeader: (children?: readonly IXmlableObject[]) => XmlComponent;
4750
+ /** Creates an a:hlinkMouseOver element (Hyperlink Mouse Over). */
4751
+ declare const createHlinkMouseOver: (children?: readonly IXmlableObject[]) => XmlComponent;
4752
+ interface AudioCdTimeOptions {
4753
+ readonly track?: number;
4754
+ readonly time?: number;
4755
+ }
4756
+ /** Creates an a:st element (Audio CD Start Time). */
4757
+ declare const createSt: (options?: AudioCdTimeOptions) => XmlComponent;
4758
+ /** Creates an a:style element (Shape Style). */
4759
+ declare const createStyleElement: (children?: readonly IXmlableObject[]) => XmlComponent;
4760
+ //#endregion
4761
+ export { createSp as $, createCdrCNvGrpSpPr as $a, RgbColorOptions as $c, createOfPieChart as $i, createWpSpPr as $n, Stretch as $o, createCustUnit as $r, CompoundLine as $s, StyleDefHdrOptions as $t, createGrpSp as A, createSplitPos as Aa, PathShadeType as Ac, createLegacyDrawingHF as Ai, WpGroupOptions as An, createGraphicFrameLocking as Ao, createXdrSpPr as Ar, createScene3D as As, ColorListOptions as At, createLnDef as B, createUpDownBars as Ba, BlipEffectsOptions as Bc, createMax as Bi, createWpCNvGrpSpPr as Bn, TableStyleOptions as Bo, createAutoUpdate as Br, PresetShadowEffectOptions as Bs, createLinClrLst as Bt, createCxnSpLocks as C, createShowNegBubbles as Ca, buildFill as Cc, createHeaderFooter as Ci, createChPref as Cn, createCdrY as Co, createXdrNvPicPr as Cr, BackdropOptions as Cs, DiagramExtensionOptions as Ct, createExtraClrScheme as D, createSize as Da, GradientStop as Dc, createLayoutTarget as Di, WpCanvasOptions as Dn, GroupLockingOptions as Do, createXdrRow as Dr, Scene3DOptions as Ds, createDiagramTxPr as Dt, createEndCxn as E, createSideWall as Ea, GradientShadeOptions as Ec, createInvertIfNegative as Ei, createPresLayoutVars as En, GraphicFrameLockingOptions as Eo, createXdrPic as Er, Point3D as Es, createDiagramSp3d as Et, createHlinkMouseOver as F, createThickness as Fa, TileAlignment as Fc, createMajorTickMark as Fi, createWpBg as Fn, StyleMatrixReferenceOptions as Fo, PageMarginsOptions as Fr, BlurEffectOptions as Fs, HueDirection as Ft, createNvPicPr as G, createX as Ga, SystemColor as Gc, createMinorUnit as Gi, createWpExtLst as Gn, createTableStyleList as Go, createBubble3D as Gr, createOuterShadowEffect as Gs, ColorsDefHdrLstOptions as Gt, createNvCxnSpPr as H, createUserShapes as Ha, SolidFillOptions as Hc, createMinorGridlines as Hi, createWpCNvSpPr as Hn, TableTextStyleOptions as Ho, createBandFmt as Hr, createPresetShadowEffect as Hs, createTxEffectClrLst as Ht, createInsideH as I, createTickLblPos as Ia, TileOptions as Ic, createMajorTimeUnit as Ii, createWpBodyPr as In, TableCellBorderOptions as Io, PageSetupOptions as Ir, EffectListOptions as Is, StyleMatrixIndex as It, createPic as J, createYMode as Ja, SchemeColor as Jc, createMultiLvlStrRef as Ji, createWpGrpSpPr as Jn, createTransformation as Jo, createChartObject as Jr, GlowEffectOptions as Js, DiagramDescriptionOptions as Jt, createNvSpPr as K, createXMode as Ka, SystemColorOptions as Kc, createMinus as Ki, createWpGraphicFrame as Kn, MediaDataTransformation as Ko, createBubbleScale as Kr, InnerShadowEffectOptions as Ks, ColorsDefHdrOptions as Kt, createInsideV as L, createTickMarkSkip as La, createTileInfo as Lc, createMajorUnit as Li, createWpCNvCnPr as Ln, TableCellStyleOptions as Lo, createApplyToEnd as Lr, createEffectList as Ls, createDiagramStyle as Lt, createHeader as M, createStrLit as Ma, TileFlipMode as Mc, createLogBase as Mi, WpNonVisualDrawingPropsOptions as Mn, createPictureLocking as Mo, createXdrTo as Mr, EffectContainerType as Ms, DiagramStyleLblOptions as Mt, createHeaders as N, createSurface3DChart as Na, createGradientFill as Nc, createLvl as Ni, WpShapeOptions as Nn, createShapeLocking as No, createXdrTwoCellAnchor as Nr, EffectDagOptions as Ns, DiagramStyleOptions as Nt, createFontElement as O, createSizeRepresents as Oa, LinearShadeOptions as Oc, createLblAlgn as Oi, WpContentPartOptions as On, PictureLockingOptions as Oo, createXdrRowOff as Or, SphereCoords as Os, DiagramRelIdsOptions as Ot, createHighlight as P, createSymbol as Pa, createGradientStop as Pc, createMajorGridlines as Pi, WpTextboxOptions as Pn, OnOffStyleType as Po, createXdrTxBody as Pr, createEffectDag as Ps, FontCollectionIndex as Pt, createSnd as Q, createCdrCNvGraphicFramePr as Qa, createScRgbColor as Qc, createOddHeader as Qi, createWpSp as Qn, createTransform2D as Qo, createCustSplit as Qr, createFillOverlayEffect as Qs, StyleDefHdrLstOptions as Qt, createLeft as R, createTrendlineLbl as Ra, SourceRectangleOptions as Rc, createManualLayout as Ri, createWpCNvContentPartPr as Rn, TablePartStyleOptions as Ro, createApplyToFront as Rr, ReflectionEffectOptions as Rs, createEffectClrLst as Rt, createCxnSp as S, createShowLeaderLines as Sa, GradientStopOptions as Sc, createHMode as Si, createChMax as Sn, createCdrXfrm as So, createXdrNvGrpSpPr as Sr, createBottomBevel as Ss, DiagramExtLstOptions as St, createEnd as T, createShowVertBorder as Ta, GradientFillOptions as Tc, createHoleSize as Ti, createOrgChart as Tn, LockedCanvasOptions as To, createXdrOneCellAnchor as Tr, LightRigOptions as Ts, createDiagramExtLst as Tt, createNvGraphicFramePr as U, createW as Ua, createColorElement as Uc, createMinorTickMark as Ui, createWpCanvas as Un, ThemeableLineStyleOptions as Uo, createBandFmts as Ur, OuterShadowEffectOptions as Us, createTxFillClrLst as Ut, createLnTlToBr as V, createUserInterface as Va, createBlipEffects as Vc, createMin as Vi, createWpCNvPr as Vn, TableStyleRegion as Vo, createBackWall as Vr, PresetShadowVal as Vs, createStyleLbl as Vt, createNvGrpSpPr as W, createWMode as Wa, createSolidFill as Wc, createMinorTimeUnit as Wi, createWpContentPart as Wn, createTableStyle as Wo, createBaseTimeUnit as Wr, RectAlignment as Ws, createTxLinClrLst as Wt, createRight as X, createCdrBlipFill as Xa, createSchemeColor as Xc, createNumLit as Xi, createWpNestedGrpSp as Xn, Transform2DOptions as Xo, createCrossBetween as Xr, BlendMode as Xs, LayoutDefHdrLstOptions as Xt, createQuickTimeFile as Y, createCdrAbsSizeAnchor as Ya, SchemeColorOptions as Yc, createName as Yi, createWpLinkedTxbx as Yn, GroupTransform2DOptions as Yo, createClrMapOvr as Yr, createGlowEffect as Ys, DiagramNameOptions as Yt, createRound as Z, createCdrCNvCxnSpPr as Za, ScRgbColorOptions as Zc, createOddFooter as Zi, createWpNvContentPartPr as Zn, createGroupTransform2D as Zo, createCrossesAt as Zr, FillOverlayEffectOptions as Zs, LayoutDefHdrOptions as Zt, createChart as _, createSerLines as _a, createPatternFill as _c, createFmtId as _i, PresLayoutVarsOptions as _n, createCdrSpPr as _o, createXdrCxnSp as _r, Shape3DOptions as _s, createUFillTx as _t, createBottom as a, createPictureOptions as aa, PresetDash as ac, createDispUnits as ai, createHslColor as al, createStyleDefHdrLst as an, createCdrFrom as ao, XdrMarkerOptions as ar, ConnectionSite as as, createSym as at, createCustClr as b, createShowHorzBorder as ba, BlipFillMediaData as bc, createGapWidth as bi, createAnimLvl as bn, createCdrTxBody as bo, createXdrGrpSpPr as br, BevelPresetType as bs, createUseSpRect as bt, createBuClrTx as c, createPivotFmts as ca, LineEndOptions as cc, createEvenFooter as ci, AnimLevelValue as cn, createCdrGrpSpPr as co, createXdrBlipFill as cr, PathCommand as cs, createTableStyleElement as ct, createBuSzTx as d, createPlus as da, createLineEnd as dc, createExt as di, AnimOneValue as dn, createCdrNvGrpSpPr as do, createXdrCNvPicPr as dr, createCustomGeometry as ds, createTl2br as dt, createOfPieType as ea, LineCap as ec, createDLbl as ei, createRgbColor as el, createColorsDefHdr as en, createCdrCNvPicPr as eo, createWpStyle as er, createExtentionList as es, createSpDef as et, createCNvCxnSpPr as f, createPrintSettings as fa, DashStop as fc, createExtLst as fi, ChMaxOptions as fn, createCdrNvPicPr as fo, createXdrCNvPr as fr, PresetGeometry as fs, createTop as ft, createCell3D as g, createSelection as ga, PresetPattern as gc, createFloor as gi, OrgChartOptions as gn, createCdrSp as go, createXdrContentPart as gr, PresetMaterialType as gs, createUFill as gt, createCNvSpPr as h, createSecondPieSize as ha, PatternFillOptions as hc, createFirstHeader as hi, HierBranchStyle as hn, createCdrRelSizeAnchor as ho, createXdrColOff as hr, createAdjustmentValues as hs, createTxSp as ht, createBldDgm as i, createPictureFormat as ia, PenAlignment as ic, createDispBlanksAs as ii, HslColorOptions as il, createStyleDefHdr as in, createCdrExt as io, createWpXfrm as ir, createBlip as is, createStyleElement as it, createGrpSpPr as j, createSplitType as ja, RelativeRect as jc, createLegendEntry as ji, WpLinkedTextboxOptions as jn, createGroupLocking as jo, createXdrStyle as jr, createSoftEdgeEffect as js, ColorMethod as jt, createGraphicFrame as k, createSmooth as ka, PathShadeOptions as kc, createLeaderLines as ki, WpGraphicFrameOptions as kn, ShapeLockingOptions as ko, createXdrSp as kr, Vector3D as ks, createDiagramRelIds as kt, createBuFontTx as l, createPivotSource as la, LineEndType as lc, createEvenHeader as li, AnimLvlOptions as ln, createCdrNvCxnSpPr as lo, createXdrCNvCxnSpPr as lr, PathFillMode as ls, createThemeManager as lt, createCNvGrpSpPr as m, createSecondPiePt as ma, createGroupFill as mc, createFirstFooter as mi, HierBranchOptions as mn, createCdrPic as mo, createXdrCol as mr, GeometryGuide as ms, createTxDef as mt, createBevelElement as n, createPageMargins as na, OutlineFillProperties as nc, createDTable as ni, PresetColorOptions as nl, createLayoutDefHdr as nn, createCdrCNvSpPr as no, createWpTxbxContent as nr, createBlipFill as ns, createStCxn as nt, createBr as o, createPictureStackUnit as oa, createOutline as oc, createDispUnitsLbl as oi, ColorTransformOptions as ol, AdjLstOptions as on, createCdrGraphicFrame as oo, XdrShapeAttributes as or, CustomGeometryOptions as os, createTab as ot, createCNvGraphicFramePr as p, createProtection as pa, createCustomDash as pc, createExternalData as pi, ChPrefOptions as pn, createCdrNvSpPr as po, createXdrCNvSpPr as pr, PresetGeometryOptions as ps, createTr2bl as pt, createOverrideClrMapping as q, createY as qa, createSystemColor as qc, createMultiLvlStrCache as qi, createWpGrpSp as qn, MediaTransformation as qo, createBuiltInUnit as qr, createInnerShadowEffect as qs, DiagramCategoryOptions as qt, createBldChart as r, createPageSetup as ra, OutlineOptions as rc, createData as ri, createPresetColor as rl, createLayoutDefHdrLst as rn, createCdrCxnSp as ro, createWpWhole as rr, BlipOptions as rs, createStart as rt, createBuBlip as s, createPivotFmt as sa, LineEndLength as sc, createDownBars as si, createColorTransforms as sl, AdjOptions as sn, createCdrGrpSp as so, XdrTwoCellAnchorOptions as sr, GeomRect as ss, createTabLst as st, createAudioCd as t, createOverlap as ta, LineJoin as tc, createDPt as ti, PresetColor as tl, createColorsDefHdrLst as tn, createCdrCNvPr as to, createWpTxbx as tr, BlipFillOptions as ts, createSt as tt, createBuSzPts as u, createPlotVisOnly as ua, LineEndWidth as uc, createExplosion as ui, AnimOneOptions as un, createCdrNvGraphicFramePr as uo, createXdrCNvGrpSpPr as ur, PathOptions as us, createThemeOverride as ut, createClrMap as v, createShape as va, createNoFill as vc, createFormatting as vi, createAdj as vn, createCdrStyle as vo, createXdrFrom as vr, createShape3D as vs, createULn as vt, createDgm as w, createShowOutline as wa, extractBlipFillMedia as wc, createHiLowLines as wi, createHierBranch as wn, LockedCanvas as wo, createXdrNvSpPr as wr, CameraOptions as ws, DiagramTextPropsOptions as wt, createCustClrLst as x, createShowKeys as xa, FillOptions as xc, createH as xi, createAnimOne as xn, createCdrX as xo, createXdrNvCxnSpPr as xr, createBevel as xs, createWavAudioFile as xt, createCpLocks as y, createShowDLblsOverMax as ya, BlipFillConfigOptions as yc, createGapDepth as yi, createAdjLst as yn, createCdrTo as yo, createXdrGrpSp as yr, BevelOptions as ys, createULnTx as yt, createLnBlToTr as z, createUpBars as za, createSourceRectangle as zc, createMarker as zi, createWpCNvFrPr as zn, TableStyleListOptions as zo, createApplyToSides as zr, createReflectionEffect as zs, createFillClrLst as zt };