docx-plus 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/index.cjs +1674 -183
- package/dist/index.d.cts +493 -39
- package/dist/index.d.mts +493 -39
- package/dist/index.iife.js +1674 -183
- package/dist/index.mjs +1674 -183
- package/dist/index.umd.js +1674 -183
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -354,7 +354,7 @@ declare const CombineBracketsType: {
|
|
|
354
354
|
readonly ANGLE: "angle";
|
|
355
355
|
readonly CURLY: "curly";
|
|
356
356
|
};
|
|
357
|
-
interface
|
|
357
|
+
interface EastAsianLayoutOptions {
|
|
358
358
|
readonly id?: number;
|
|
359
359
|
readonly combine?: boolean;
|
|
360
360
|
readonly combineBrackets?: (typeof CombineBracketsType)[keyof typeof CombineBracketsType];
|
|
@@ -374,7 +374,7 @@ declare const createEmphasisMark: (emphasisMarkType?: (typeof EmphasisMarkType)[
|
|
|
374
374
|
declare const createDotEmphasisMark: () => XmlComponent;
|
|
375
375
|
//#endregion
|
|
376
376
|
//#region src/file/paragraph/run/formatting.d.ts
|
|
377
|
-
interface
|
|
377
|
+
interface ColorOptions {
|
|
378
378
|
readonly val?: string;
|
|
379
379
|
readonly themeColor?: (typeof ThemeColor)[keyof typeof ThemeColor];
|
|
380
380
|
readonly themeTint?: string;
|
|
@@ -458,7 +458,7 @@ declare const HighlightColor: {
|
|
|
458
458
|
readonly WHITE: "white";
|
|
459
459
|
readonly YELLOW: "yellow";
|
|
460
460
|
};
|
|
461
|
-
interface
|
|
461
|
+
interface RunStylePropertiesOptions {
|
|
462
462
|
readonly noProof?: boolean;
|
|
463
463
|
readonly bold?: boolean;
|
|
464
464
|
readonly boldComplexScript?: boolean;
|
|
@@ -472,7 +472,7 @@ interface IRunStylePropertiesOptions {
|
|
|
472
472
|
readonly emphasisMark?: {
|
|
473
473
|
readonly type?: (typeof EmphasisMarkType)[keyof typeof EmphasisMarkType];
|
|
474
474
|
};
|
|
475
|
-
readonly color?: string |
|
|
475
|
+
readonly color?: string | ColorOptions;
|
|
476
476
|
readonly kern?: number | PositiveUniversalMeasure;
|
|
477
477
|
readonly position?: UniversalMeasure;
|
|
478
478
|
readonly size?: number | PositiveUniversalMeasure;
|
|
@@ -504,11 +504,11 @@ interface IRunStylePropertiesOptions {
|
|
|
504
504
|
readonly webHidden?: boolean;
|
|
505
505
|
readonly fitText?: number;
|
|
506
506
|
readonly complexScript?: boolean;
|
|
507
|
-
readonly eastAsianLayout?:
|
|
507
|
+
readonly eastAsianLayout?: EastAsianLayoutOptions;
|
|
508
508
|
}
|
|
509
509
|
type IRunPropertiesOptions = {
|
|
510
510
|
readonly style?: string;
|
|
511
|
-
} &
|
|
511
|
+
} & RunStylePropertiesOptions;
|
|
512
512
|
type IRunPropertiesChangeOptions = {} & IRunPropertiesOptions & IChangedAttributesProperties;
|
|
513
513
|
type IParagraphRunPropertiesOptions = {
|
|
514
514
|
readonly insertion?: IChangedAttributesProperties;
|
|
@@ -547,7 +547,220 @@ interface DocPropertiesOptions {
|
|
|
547
547
|
readonly id?: string;
|
|
548
548
|
}
|
|
549
549
|
//#endregion
|
|
550
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.d.ts
|
|
551
|
+
interface SourceRectangleOptions {
|
|
552
|
+
readonly l?: number;
|
|
553
|
+
readonly t?: number;
|
|
554
|
+
readonly r?: number;
|
|
555
|
+
readonly b?: number;
|
|
556
|
+
}
|
|
557
|
+
//#endregion
|
|
558
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/color-transform.d.ts
|
|
559
|
+
interface ColorTransformOptions {
|
|
560
|
+
readonly tint?: number;
|
|
561
|
+
readonly shade?: number;
|
|
562
|
+
readonly comp?: boolean;
|
|
563
|
+
readonly inv?: boolean;
|
|
564
|
+
readonly gray?: boolean;
|
|
565
|
+
readonly alpha?: number;
|
|
566
|
+
readonly alphaOff?: number;
|
|
567
|
+
readonly alphaMod?: number;
|
|
568
|
+
readonly hue?: number;
|
|
569
|
+
readonly hueOff?: number;
|
|
570
|
+
readonly hueMod?: number;
|
|
571
|
+
readonly sat?: number;
|
|
572
|
+
readonly satOff?: number;
|
|
573
|
+
readonly satMod?: number;
|
|
574
|
+
readonly lum?: number;
|
|
575
|
+
readonly lumOff?: number;
|
|
576
|
+
readonly lumMod?: number;
|
|
577
|
+
readonly red?: number;
|
|
578
|
+
readonly redOff?: number;
|
|
579
|
+
readonly redMod?: number;
|
|
580
|
+
readonly green?: number;
|
|
581
|
+
readonly greenOff?: number;
|
|
582
|
+
readonly greenMod?: number;
|
|
583
|
+
readonly blue?: number;
|
|
584
|
+
readonly blueOff?: number;
|
|
585
|
+
readonly blueMod?: number;
|
|
586
|
+
readonly gamma?: boolean;
|
|
587
|
+
readonly invGamma?: boolean;
|
|
588
|
+
}
|
|
589
|
+
//#endregion
|
|
590
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/hsl-color.d.ts
|
|
591
|
+
interface HslColorOptions {
|
|
592
|
+
readonly hue: number;
|
|
593
|
+
readonly sat: number;
|
|
594
|
+
readonly lum: number;
|
|
595
|
+
readonly transforms?: ColorTransformOptions;
|
|
596
|
+
}
|
|
597
|
+
//#endregion
|
|
598
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/preset-color.d.ts
|
|
599
|
+
declare const PresetColor: {
|
|
600
|
+
readonly ALICE_BLUE: "aliceBlue";
|
|
601
|
+
readonly ANTIQUE_WHITE: "antiqueWhite";
|
|
602
|
+
readonly AQUA: "aqua";
|
|
603
|
+
readonly AQUAMARINE: "aquamarine";
|
|
604
|
+
readonly AZURE: "azure";
|
|
605
|
+
readonly BEIGE: "beige";
|
|
606
|
+
readonly BISQUE: "bisque";
|
|
607
|
+
readonly BLACK: "black";
|
|
608
|
+
readonly BLANCHED_ALMOND: "blanchedAlmond";
|
|
609
|
+
readonly BLUE: "blue";
|
|
610
|
+
readonly BLUE_VIOLET: "blueViolet";
|
|
611
|
+
readonly BROWN: "brown";
|
|
612
|
+
readonly BURLY_WOOD: "burlyWood";
|
|
613
|
+
readonly CADET_BLUE: "cadetBlue";
|
|
614
|
+
readonly CHARTREUSE: "chartreuse";
|
|
615
|
+
readonly CHOCOLATE: "chocolate";
|
|
616
|
+
readonly CORAL: "coral";
|
|
617
|
+
readonly CORNFLOWER_BLUE: "cornflowerBlue";
|
|
618
|
+
readonly CORNSILK: "cornsilk";
|
|
619
|
+
readonly CRIMSON: "crimson";
|
|
620
|
+
readonly CYAN: "cyan";
|
|
621
|
+
readonly DARK_BLUE: "darkBlue";
|
|
622
|
+
readonly DARK_CYAN: "darkCyan";
|
|
623
|
+
readonly DARK_GOLDENROD: "darkGoldenrod";
|
|
624
|
+
readonly DARK_GRAY: "darkGray";
|
|
625
|
+
readonly DARK_GREY: "darkGrey";
|
|
626
|
+
readonly DARK_GREEN: "darkGreen";
|
|
627
|
+
readonly DARK_KHAKI: "darkKhaki";
|
|
628
|
+
readonly DARK_MAGENTA: "darkMagenta";
|
|
629
|
+
readonly DARK_OLIVE_GREEN: "darkOliveGreen";
|
|
630
|
+
readonly DARK_ORANGE: "darkOrange";
|
|
631
|
+
readonly DARK_ORCHID: "darkOrchid";
|
|
632
|
+
readonly DARK_RED: "darkRed";
|
|
633
|
+
readonly DARK_SALMON: "darkSalmon";
|
|
634
|
+
readonly DARK_SEA_GREEN: "darkSeaGreen";
|
|
635
|
+
readonly DARK_SLATE_BLUE: "darkSlateBlue";
|
|
636
|
+
readonly DARK_SLATE_GRAY: "darkSlateGray";
|
|
637
|
+
readonly DARK_SLATE_GREY: "darkSlateGrey";
|
|
638
|
+
readonly DARK_TURQUOISE: "darkTurquoise";
|
|
639
|
+
readonly DARK_VIOLET: "darkViolet";
|
|
640
|
+
readonly DEEP_PINK: "deepPink";
|
|
641
|
+
readonly DEEP_SKY_BLUE: "deepSkyBlue";
|
|
642
|
+
readonly DIM_GRAY: "dimGray";
|
|
643
|
+
readonly DIM_GREY: "dimGrey";
|
|
644
|
+
readonly DODGER_BLUE: "dodgerBlue";
|
|
645
|
+
readonly FIREBRICK: "firebrick";
|
|
646
|
+
readonly FLORAL_WHITE: "floralWhite";
|
|
647
|
+
readonly FOREST_GREEN: "forestGreen";
|
|
648
|
+
readonly FUCHSIA: "fuchsia";
|
|
649
|
+
readonly GAINSBORO: "gainsboro";
|
|
650
|
+
readonly GHOST_WHITE: "ghostWhite";
|
|
651
|
+
readonly GOLD: "gold";
|
|
652
|
+
readonly GOLDENROD: "goldenrod";
|
|
653
|
+
readonly GRAY: "gray";
|
|
654
|
+
readonly GREY: "grey";
|
|
655
|
+
readonly GREEN: "green";
|
|
656
|
+
readonly GREEN_YELLOW: "greenYellow";
|
|
657
|
+
readonly HONEYDEW: "honeydew";
|
|
658
|
+
readonly HOT_PINK: "hotPink";
|
|
659
|
+
readonly INDIAN_RED: "indianRed";
|
|
660
|
+
readonly INDIGO: "indigo";
|
|
661
|
+
readonly IVORY: "ivory";
|
|
662
|
+
readonly KHAKI: "khaki";
|
|
663
|
+
readonly LAVENDER: "lavender";
|
|
664
|
+
readonly LAVENDER_BLUSH: "lavenderBlush";
|
|
665
|
+
readonly LAWN_GREEN: "lawnGreen";
|
|
666
|
+
readonly LEMON_CHIFFON: "lemonChiffon";
|
|
667
|
+
readonly LIGHT_BLUE: "lightBlue";
|
|
668
|
+
readonly LIGHT_CORAL: "lightCoral";
|
|
669
|
+
readonly LIGHT_CYAN: "lightCyan";
|
|
670
|
+
readonly LIGHT_GOLDENROD_YELLOW: "lightGoldenrodYellow";
|
|
671
|
+
readonly LIGHT_GRAY: "lightGray";
|
|
672
|
+
readonly LIGHT_GREY: "lightGrey";
|
|
673
|
+
readonly LIGHT_GREEN: "lightGreen";
|
|
674
|
+
readonly LIGHT_PINK: "lightPink";
|
|
675
|
+
readonly LIGHT_SALMON: "lightSalmon";
|
|
676
|
+
readonly LIGHT_SEA_GREEN: "lightSeaGreen";
|
|
677
|
+
readonly LIGHT_SKY_BLUE: "lightSkyBlue";
|
|
678
|
+
readonly LIGHT_SLATE_GRAY: "lightSlateGray";
|
|
679
|
+
readonly LIGHT_SLATE_GREY: "lightSlateGrey";
|
|
680
|
+
readonly LIGHT_STEEL_BLUE: "lightSteelBlue";
|
|
681
|
+
readonly LIGHT_YELLOW: "lightYellow";
|
|
682
|
+
readonly LIME: "lime";
|
|
683
|
+
readonly LIME_GREEN: "limeGreen";
|
|
684
|
+
readonly LINEN: "linen";
|
|
685
|
+
readonly MAGENTA: "magenta";
|
|
686
|
+
readonly MAROON: "maroon";
|
|
687
|
+
readonly MEDIUM_AQUAMARINE: "mediumAquamarine";
|
|
688
|
+
readonly MEDIUM_BLUE: "mediumBlue";
|
|
689
|
+
readonly MEDIUM_ORCHID: "mediumOrchid";
|
|
690
|
+
readonly MEDIUM_PURPLE: "mediumPurple";
|
|
691
|
+
readonly MEDIUM_SEA_GREEN: "mediumSeaGreen";
|
|
692
|
+
readonly MEDIUM_SLATE_BLUE: "mediumSlateBlue";
|
|
693
|
+
readonly MEDIUM_SPRING_GREEN: "mediumSpringGreen";
|
|
694
|
+
readonly MEDIUM_TURQUOISE: "mediumTurquoise";
|
|
695
|
+
readonly MEDIUM_VIOLET_RED: "mediumVioletRed";
|
|
696
|
+
readonly MIDNIGHT_BLUE: "midnightBlue";
|
|
697
|
+
readonly MINT_CREAM: "mintCream";
|
|
698
|
+
readonly MISTY_ROSE: "mistyRose";
|
|
699
|
+
readonly MOCCASIN: "moccasin";
|
|
700
|
+
readonly NAVAJO_WHITE: "navajoWhite";
|
|
701
|
+
readonly NAVY: "navy";
|
|
702
|
+
readonly OLD_LACE: "oldLace";
|
|
703
|
+
readonly OLIVE: "olive";
|
|
704
|
+
readonly OLIVE_DRAB: "oliveDrab";
|
|
705
|
+
readonly ORANGE: "orange";
|
|
706
|
+
readonly ORANGE_RED: "orangeRed";
|
|
707
|
+
readonly ORCHID: "orchid";
|
|
708
|
+
readonly PALE_GOLDENROD: "paleGoldenrod";
|
|
709
|
+
readonly PALE_GREEN: "paleGreen";
|
|
710
|
+
readonly PALE_TURQUOISE: "paleTurquoise";
|
|
711
|
+
readonly PALE_VIOLET_RED: "paleVioletRed";
|
|
712
|
+
readonly PAPAYA_WHIP: "papayaWhip";
|
|
713
|
+
readonly PEACH_PUFF: "peachPuff";
|
|
714
|
+
readonly PERU: "peru";
|
|
715
|
+
readonly PINK: "pink";
|
|
716
|
+
readonly PLUM: "plum";
|
|
717
|
+
readonly POWDER_BLUE: "powderBlue";
|
|
718
|
+
readonly PURPLE: "purple";
|
|
719
|
+
readonly RED: "red";
|
|
720
|
+
readonly ROSY_BROWN: "rosyBrown";
|
|
721
|
+
readonly ROYAL_BLUE: "royalBlue";
|
|
722
|
+
readonly SADDLE_BROWN: "saddleBrown";
|
|
723
|
+
readonly SALMON: "salmon";
|
|
724
|
+
readonly SANDY_BROWN: "sandyBrown";
|
|
725
|
+
readonly SEA_GREEN: "seaGreen";
|
|
726
|
+
readonly SEA_SHELL: "seaShell";
|
|
727
|
+
readonly SIENNA: "sienna";
|
|
728
|
+
readonly SILVER: "silver";
|
|
729
|
+
readonly SKY_BLUE: "skyBlue";
|
|
730
|
+
readonly SLATE_BLUE: "slateBlue";
|
|
731
|
+
readonly SLATE_GRAY: "slateGray";
|
|
732
|
+
readonly SLATE_GREY: "slateGrey";
|
|
733
|
+
readonly SNOW: "snow";
|
|
734
|
+
readonly SPRING_GREEN: "springGreen";
|
|
735
|
+
readonly STEEL_BLUE: "steelBlue";
|
|
736
|
+
readonly TAN: "tan";
|
|
737
|
+
readonly TEAL: "teal";
|
|
738
|
+
readonly THISTLE: "thistle";
|
|
739
|
+
readonly TOMATO: "tomato";
|
|
740
|
+
readonly TURQUOISE: "turquoise";
|
|
741
|
+
readonly VIOLET: "violet";
|
|
742
|
+
readonly WHEAT: "wheat";
|
|
743
|
+
readonly WHITE: "white";
|
|
744
|
+
readonly WHITE_SMOKE: "whiteSmoke";
|
|
745
|
+
readonly YELLOW: "yellow";
|
|
746
|
+
readonly YELLOW_GREEN: "yellowGreen";
|
|
747
|
+
};
|
|
748
|
+
interface PresetColorOptions {
|
|
749
|
+
readonly value: (typeof PresetColor)[keyof typeof PresetColor];
|
|
750
|
+
readonly transforms?: ColorTransformOptions;
|
|
751
|
+
}
|
|
752
|
+
//#endregion
|
|
753
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/rgb-color.d.ts
|
|
754
|
+
interface RgbColorOptions {
|
|
755
|
+
readonly value: string;
|
|
756
|
+
readonly transforms?: ColorTransformOptions;
|
|
757
|
+
}
|
|
758
|
+
//#endregion
|
|
550
759
|
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/scheme-color.d.ts
|
|
760
|
+
interface SchemeColorOptions {
|
|
761
|
+
readonly value: (typeof SchemeColor)[keyof typeof SchemeColor];
|
|
762
|
+
readonly transforms?: ColorTransformOptions;
|
|
763
|
+
}
|
|
551
764
|
declare const SchemeColor: {
|
|
552
765
|
readonly BG1: "bg1";
|
|
553
766
|
readonly TX1: "tx1";
|
|
@@ -568,6 +781,150 @@ declare const SchemeColor: {
|
|
|
568
781
|
readonly PHCLR: "phClr";
|
|
569
782
|
};
|
|
570
783
|
//#endregion
|
|
784
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/system-color.d.ts
|
|
785
|
+
declare const SystemColor: {
|
|
786
|
+
readonly SCROLL_BAR: "scrollBar";
|
|
787
|
+
readonly BACKGROUND: "background";
|
|
788
|
+
readonly ACTIVE_CAPTION: "activeCaption";
|
|
789
|
+
readonly INACTIVE_CAPTION: "inactiveCaption";
|
|
790
|
+
readonly MENU: "menu";
|
|
791
|
+
readonly WINDOW: "window";
|
|
792
|
+
readonly WINDOW_FRAME: "windowFrame";
|
|
793
|
+
readonly MENU_TEXT: "menuText";
|
|
794
|
+
readonly WINDOW_TEXT: "windowText";
|
|
795
|
+
readonly CAPTION_TEXT: "captionText";
|
|
796
|
+
readonly ACTIVE_BORDER: "activeBorder";
|
|
797
|
+
readonly INACTIVE_BORDER: "inactiveBorder";
|
|
798
|
+
readonly APP_WORKSPACE: "appWorkspace";
|
|
799
|
+
readonly HIGHLIGHT: "highlight";
|
|
800
|
+
readonly HIGHLIGHT_TEXT: "highlightText";
|
|
801
|
+
readonly BTN_FACE: "btnFace";
|
|
802
|
+
readonly BTN_SHADOW: "btnShadow";
|
|
803
|
+
readonly GRAY_TEXT: "grayText";
|
|
804
|
+
readonly BTN_TEXT: "btnText";
|
|
805
|
+
readonly INACTIVE_CAPTION_TEXT: "inactiveCaptionText";
|
|
806
|
+
readonly BTN_HIGHLIGHT: "btnHighlight";
|
|
807
|
+
readonly THREE_D_DK_SHADOW: "3dDkShadow";
|
|
808
|
+
readonly THREE_D_LIGHT: "3dLight";
|
|
809
|
+
readonly INFO_TEXT: "infoText";
|
|
810
|
+
readonly INFO_BK: "infoBk";
|
|
811
|
+
readonly HOT_LIGHT: "hotLight";
|
|
812
|
+
readonly GRADIENT_ACTIVE_CAPTION: "gradientActiveCaption";
|
|
813
|
+
readonly GRADIENT_INACTIVE_CAPTION: "gradientInactiveCaption";
|
|
814
|
+
readonly MENU_HIGHLIGHT: "menuHighlight";
|
|
815
|
+
readonly MENU_BAR: "menuBar";
|
|
816
|
+
};
|
|
817
|
+
interface SystemColorOptions {
|
|
818
|
+
readonly value: (typeof SystemColor)[keyof typeof SystemColor];
|
|
819
|
+
readonly lastClr?: string;
|
|
820
|
+
readonly transforms?: ColorTransformOptions;
|
|
821
|
+
}
|
|
822
|
+
//#endregion
|
|
823
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/solid-fill.d.ts
|
|
824
|
+
type SolidFillOptions = RgbColorOptions | SchemeColorOptions | HslColorOptions | SystemColorOptions | PresetColorOptions;
|
|
825
|
+
//#endregion
|
|
826
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/glow.d.ts
|
|
827
|
+
interface GlowEffectOptions {
|
|
828
|
+
readonly rad?: number;
|
|
829
|
+
readonly color: SolidFillOptions;
|
|
830
|
+
}
|
|
831
|
+
//#endregion
|
|
832
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/inner-shdw.d.ts
|
|
833
|
+
interface InnerShadowEffectOptions {
|
|
834
|
+
readonly blurRad?: number;
|
|
835
|
+
readonly dist?: number;
|
|
836
|
+
readonly dir?: number;
|
|
837
|
+
readonly color: SolidFillOptions;
|
|
838
|
+
}
|
|
839
|
+
//#endregion
|
|
840
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/outer-shdw.d.ts
|
|
841
|
+
declare const RectAlignment: {
|
|
842
|
+
readonly TOP_LEFT: "tl";
|
|
843
|
+
readonly TOP: "t";
|
|
844
|
+
readonly TOP_RIGHT: "tr";
|
|
845
|
+
readonly LEFT: "l";
|
|
846
|
+
readonly CENTER: "ctr";
|
|
847
|
+
readonly RIGHT: "r";
|
|
848
|
+
readonly BOTTOM_LEFT: "bl";
|
|
849
|
+
readonly BOTTOM: "b";
|
|
850
|
+
readonly BOTTOM_RIGHT: "br";
|
|
851
|
+
};
|
|
852
|
+
interface OuterShadowEffectOptions {
|
|
853
|
+
readonly blurRad?: number;
|
|
854
|
+
readonly dist?: number;
|
|
855
|
+
readonly dir?: number;
|
|
856
|
+
readonly sx?: number;
|
|
857
|
+
readonly sy?: number;
|
|
858
|
+
readonly kx?: number;
|
|
859
|
+
readonly ky?: number;
|
|
860
|
+
readonly algn?: keyof typeof RectAlignment;
|
|
861
|
+
readonly rotWithShape?: boolean;
|
|
862
|
+
readonly color: SolidFillOptions;
|
|
863
|
+
}
|
|
864
|
+
//#endregion
|
|
865
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/prst-shdw.d.ts
|
|
866
|
+
declare const PresetShadowVal: {
|
|
867
|
+
readonly SHDW1: "shdw1";
|
|
868
|
+
readonly SHDW2: "shdw2";
|
|
869
|
+
readonly SHDW3: "shdw3";
|
|
870
|
+
readonly SHDW4: "shdw4";
|
|
871
|
+
readonly SHDW5: "shdw5";
|
|
872
|
+
readonly SHDW6: "shdw6";
|
|
873
|
+
readonly SHDW7: "shdw7";
|
|
874
|
+
readonly SHDW8: "shdw8";
|
|
875
|
+
readonly SHDW9: "shdw9";
|
|
876
|
+
readonly SHDW10: "shdw10";
|
|
877
|
+
readonly SHDW11: "shdw11";
|
|
878
|
+
readonly SHDW12: "shdw12";
|
|
879
|
+
readonly SHDW13: "shdw13";
|
|
880
|
+
readonly SHDW14: "shdw14";
|
|
881
|
+
readonly SHDW15: "shdw15";
|
|
882
|
+
readonly SHDW16: "shdw16";
|
|
883
|
+
readonly SHDW17: "shdw17";
|
|
884
|
+
readonly SHDW18: "shdw18";
|
|
885
|
+
readonly SHDW19: "shdw19";
|
|
886
|
+
readonly SHDW20: "shdw20";
|
|
887
|
+
};
|
|
888
|
+
interface PresetShadowEffectOptions {
|
|
889
|
+
readonly prst: keyof typeof PresetShadowVal;
|
|
890
|
+
readonly dist?: number;
|
|
891
|
+
readonly dir?: number;
|
|
892
|
+
readonly color: SolidFillOptions;
|
|
893
|
+
}
|
|
894
|
+
//#endregion
|
|
895
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/reflection.d.ts
|
|
896
|
+
interface ReflectionEffectOptions {
|
|
897
|
+
readonly blurRad?: number;
|
|
898
|
+
readonly stA?: number;
|
|
899
|
+
readonly stPos?: number;
|
|
900
|
+
readonly endA?: number;
|
|
901
|
+
readonly endPos?: number;
|
|
902
|
+
readonly dist?: number;
|
|
903
|
+
readonly dir?: number;
|
|
904
|
+
readonly fadeDir?: number;
|
|
905
|
+
readonly sx?: number;
|
|
906
|
+
readonly sy?: number;
|
|
907
|
+
readonly kx?: number;
|
|
908
|
+
readonly ky?: number;
|
|
909
|
+
readonly algn?: string;
|
|
910
|
+
readonly rotWithShape?: boolean;
|
|
911
|
+
}
|
|
912
|
+
//#endregion
|
|
913
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/effect-list.d.ts
|
|
914
|
+
interface BlurEffectOptions {
|
|
915
|
+
readonly rad?: number;
|
|
916
|
+
readonly grow?: boolean;
|
|
917
|
+
}
|
|
918
|
+
interface EffectListOptions {
|
|
919
|
+
readonly blur?: BlurEffectOptions;
|
|
920
|
+
readonly glow?: GlowEffectOptions;
|
|
921
|
+
readonly innerShdw?: InnerShadowEffectOptions;
|
|
922
|
+
readonly outerShdw?: OuterShadowEffectOptions;
|
|
923
|
+
readonly prstShdw?: PresetShadowEffectOptions;
|
|
924
|
+
readonly reflection?: ReflectionEffectOptions | true;
|
|
925
|
+
readonly softEdge?: number;
|
|
926
|
+
}
|
|
927
|
+
//#endregion
|
|
571
928
|
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/outline.d.ts
|
|
572
929
|
declare const LineCap: {
|
|
573
930
|
readonly ROUND: "rnd";
|
|
@@ -585,39 +942,126 @@ declare const PenAlignment: {
|
|
|
585
942
|
readonly CENTER: "ctr";
|
|
586
943
|
readonly INSET: "in";
|
|
587
944
|
};
|
|
945
|
+
declare const PresetDash: {
|
|
946
|
+
readonly SOLID: "solid";
|
|
947
|
+
readonly DOT: "dot";
|
|
948
|
+
readonly DASH: "dash";
|
|
949
|
+
readonly LG_DASH: "lgDash";
|
|
950
|
+
readonly DASH_DOT: "dashDot";
|
|
951
|
+
readonly LG_DASH_DOT: "lgDashDot";
|
|
952
|
+
readonly LG_DASH_DOT_DOT: "lgDashDotDot";
|
|
953
|
+
readonly SYS_DASH: "sysDash";
|
|
954
|
+
readonly SYS_DOT: "sysDot";
|
|
955
|
+
readonly SYS_DASH_DOT: "sysDashDot";
|
|
956
|
+
readonly SYS_DASH_DOT_DOT: "sysDashDotDot";
|
|
957
|
+
};
|
|
958
|
+
declare const LineJoin: {
|
|
959
|
+
readonly ROUND: "round";
|
|
960
|
+
readonly BEVEL: "bevel";
|
|
961
|
+
readonly MITER: "miter";
|
|
962
|
+
};
|
|
588
963
|
interface OutlineAttributes {
|
|
589
964
|
readonly width?: number;
|
|
590
965
|
readonly cap?: keyof typeof LineCap;
|
|
591
966
|
readonly compoundLine?: keyof typeof CompoundLine;
|
|
592
967
|
readonly align?: keyof typeof PenAlignment;
|
|
968
|
+
readonly dash?: keyof typeof PresetDash;
|
|
969
|
+
readonly join?: keyof typeof LineJoin;
|
|
970
|
+
readonly miterLimit?: number;
|
|
593
971
|
}
|
|
594
972
|
interface OutlineNoFill {
|
|
595
973
|
readonly type: "noFill";
|
|
596
974
|
}
|
|
597
|
-
interface
|
|
975
|
+
interface OutlineSolidFill {
|
|
598
976
|
readonly type: "solidFill";
|
|
599
|
-
readonly
|
|
600
|
-
readonly value: string;
|
|
977
|
+
readonly color: SolidFillOptions;
|
|
601
978
|
}
|
|
602
|
-
interface OutlineSchemeSolidFill {
|
|
603
|
-
readonly type: "solidFill";
|
|
604
|
-
readonly solidFillType: "scheme";
|
|
605
|
-
readonly value: (typeof SchemeColor)[keyof typeof SchemeColor];
|
|
606
|
-
}
|
|
607
|
-
type OutlineSolidFill = OutlineRgbSolidFill | OutlineSchemeSolidFill;
|
|
608
979
|
type OutlineFillProperties = OutlineNoFill | OutlineSolidFill;
|
|
609
980
|
type OutlineOptions = OutlineAttributes & OutlineFillProperties;
|
|
610
981
|
//#endregion
|
|
611
|
-
//#region src/file/drawing/inline/graphic/graphic-data/
|
|
612
|
-
interface
|
|
613
|
-
readonly
|
|
614
|
-
readonly
|
|
982
|
+
//#region src/file/drawing/inline/graphic/graphic-data/wpg/wpg-group.d.ts
|
|
983
|
+
interface IChildOffset {
|
|
984
|
+
readonly x: number;
|
|
985
|
+
readonly y: number;
|
|
615
986
|
}
|
|
616
|
-
interface
|
|
617
|
-
readonly
|
|
618
|
-
readonly
|
|
987
|
+
interface IChildExtent {
|
|
988
|
+
readonly cx: number;
|
|
989
|
+
readonly cy: number;
|
|
990
|
+
}
|
|
991
|
+
//#endregion
|
|
992
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/fill/gradient-fill.d.ts
|
|
993
|
+
interface IGradientStop {
|
|
994
|
+
readonly position: number;
|
|
995
|
+
readonly color: SolidFillOptions;
|
|
996
|
+
}
|
|
997
|
+
declare const PathShadeType: {
|
|
998
|
+
readonly SHAPE: "shape";
|
|
999
|
+
readonly CIRCLE: "circle";
|
|
1000
|
+
readonly RECT: "rect";
|
|
1001
|
+
};
|
|
1002
|
+
interface LinearShadeOptions {
|
|
1003
|
+
readonly angle?: number;
|
|
1004
|
+
readonly scaled?: boolean;
|
|
1005
|
+
}
|
|
1006
|
+
interface PathShadeOptions {
|
|
1007
|
+
readonly path?: keyof typeof PathShadeType;
|
|
1008
|
+
}
|
|
1009
|
+
type GradientShadeOptions = LinearShadeOptions | PathShadeOptions;
|
|
1010
|
+
interface GradientFillOptions {
|
|
1011
|
+
readonly stops: readonly IGradientStop[];
|
|
1012
|
+
readonly shade?: GradientShadeOptions;
|
|
1013
|
+
readonly rotateWithShape?: boolean;
|
|
1014
|
+
}
|
|
1015
|
+
//#endregion
|
|
1016
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/three-d/bevel.d.ts
|
|
1017
|
+
declare const BevelPresetType: {
|
|
1018
|
+
readonly RELAXED_INSET: "relaxedInset";
|
|
1019
|
+
readonly CIRCLE: "circle";
|
|
1020
|
+
readonly SLOPE: "slope";
|
|
1021
|
+
readonly CROSS: "cross";
|
|
1022
|
+
readonly ANGLE: "angle";
|
|
1023
|
+
readonly SOFT_ROUND: "softRound";
|
|
1024
|
+
readonly CONVEX: "convex";
|
|
1025
|
+
readonly COOL_SLANT: "coolSlant";
|
|
1026
|
+
readonly DIVOT: "divot";
|
|
1027
|
+
readonly RIBLET: "riblet";
|
|
1028
|
+
readonly HARD_EDGE: "hardEdge";
|
|
1029
|
+
readonly ART_DECO: "artDeco";
|
|
1030
|
+
};
|
|
1031
|
+
interface BevelOptions {
|
|
1032
|
+
readonly w?: number;
|
|
1033
|
+
readonly h?: number;
|
|
1034
|
+
readonly prst?: keyof typeof BevelPresetType;
|
|
1035
|
+
}
|
|
1036
|
+
//#endregion
|
|
1037
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/three-d/shape-3d.d.ts
|
|
1038
|
+
declare const PresetMaterialType: {
|
|
1039
|
+
readonly LEGACY_MATTE: "legacyMatte";
|
|
1040
|
+
readonly LEGACY_PLASTIC: "legacyPlastic";
|
|
1041
|
+
readonly LEGACY_METAL: "legacyMetal";
|
|
1042
|
+
readonly LEGACY_WIREFRAME: "legacyWireframe";
|
|
1043
|
+
readonly MATTE: "matte";
|
|
1044
|
+
readonly PLASTIC: "plastic";
|
|
1045
|
+
readonly METAL: "metal";
|
|
1046
|
+
readonly WARM_MATTE: "warmMatte";
|
|
1047
|
+
readonly TRANSLUCENT_POWDER: "translucentPowder";
|
|
1048
|
+
readonly POWDER: "powder";
|
|
1049
|
+
readonly DK_EDGE: "dkEdge";
|
|
1050
|
+
readonly SOFT_EDGE: "softEdge";
|
|
1051
|
+
readonly CLEAR: "clear";
|
|
1052
|
+
readonly FLAT: "flat";
|
|
1053
|
+
readonly SOFT_METAL: "softmetal";
|
|
1054
|
+
};
|
|
1055
|
+
interface Shape3DOptions {
|
|
1056
|
+
readonly bevelT?: BevelOptions;
|
|
1057
|
+
readonly bevelB?: BevelOptions;
|
|
1058
|
+
readonly extrusionClr?: SolidFillOptions;
|
|
1059
|
+
readonly contourClr?: SolidFillOptions;
|
|
1060
|
+
readonly z?: number;
|
|
1061
|
+
readonly extrusionH?: number;
|
|
1062
|
+
readonly contourW?: number;
|
|
1063
|
+
readonly prstMaterial?: keyof typeof PresetMaterialType;
|
|
619
1064
|
}
|
|
620
|
-
type SolidFillOptions = RgbColorOptions | SchemeColorOptions;
|
|
621
1065
|
//#endregion
|
|
622
1066
|
//#region src/file/drawing/text-wrap/text-wrapping.d.ts
|
|
623
1067
|
declare const TextWrappingType: {
|
|
@@ -761,6 +1205,12 @@ interface WpsShapeCoreOptions {
|
|
|
761
1205
|
readonly children: readonly Paragraph[];
|
|
762
1206
|
readonly nonVisualProperties?: INonVisualShapePropertiesOptions;
|
|
763
1207
|
readonly bodyProperties?: IBodyPropertiesOptions;
|
|
1208
|
+
readonly outline?: OutlineOptions;
|
|
1209
|
+
readonly solidFill?: SolidFillOptions;
|
|
1210
|
+
readonly gradientFill?: GradientFillOptions;
|
|
1211
|
+
readonly noFill?: boolean;
|
|
1212
|
+
readonly effects?: EffectListOptions;
|
|
1213
|
+
readonly shape3d?: Shape3DOptions;
|
|
764
1214
|
}
|
|
765
1215
|
//#endregion
|
|
766
1216
|
//#region src/file/media/data.d.ts
|
|
@@ -793,6 +1243,7 @@ interface CoreMediaData {
|
|
|
793
1243
|
readonly fileName: string;
|
|
794
1244
|
readonly transformation: IMediaDataTransformation;
|
|
795
1245
|
readonly data: Uint8Array;
|
|
1246
|
+
readonly srcRect?: SourceRectangleOptions;
|
|
796
1247
|
}
|
|
797
1248
|
interface RegularMediaData {
|
|
798
1249
|
readonly type: "jpg" | "png" | "gif" | "bmp";
|
|
@@ -815,6 +1266,10 @@ interface WpgMediaData {
|
|
|
815
1266
|
readonly type: "wpg";
|
|
816
1267
|
readonly transformation: IMediaDataTransformation;
|
|
817
1268
|
readonly children: readonly IGroupChildMediaData[];
|
|
1269
|
+
readonly chOff?: IChildOffset;
|
|
1270
|
+
readonly chExt?: IChildExtent;
|
|
1271
|
+
readonly solidFill?: SolidFillOptions;
|
|
1272
|
+
readonly effects?: EffectListOptions;
|
|
818
1273
|
}
|
|
819
1274
|
type IExtendedMediaData = IMediaData | WpsMediaData | WpgMediaData;
|
|
820
1275
|
type IMediaData = (RegularMediaData | SvgMediaData) & CoreMediaData;
|
|
@@ -865,6 +1320,7 @@ interface CoreImageOptions {
|
|
|
865
1320
|
readonly altText?: DocPropertiesOptions;
|
|
866
1321
|
readonly outline?: OutlineOptions;
|
|
867
1322
|
readonly solidFill?: SolidFillOptions;
|
|
1323
|
+
readonly srcRect?: SourceRectangleOptions;
|
|
868
1324
|
}
|
|
869
1325
|
interface RegularImageOptions {
|
|
870
1326
|
readonly type: "jpg" | "png" | "gif" | "bmp";
|
|
@@ -887,8 +1343,6 @@ interface CoreShapeOptions {
|
|
|
887
1343
|
readonly transformation: IMediaTransformation;
|
|
888
1344
|
readonly floating?: IFloating;
|
|
889
1345
|
readonly altText?: DocPropertiesOptions;
|
|
890
|
-
readonly outline?: OutlineOptions;
|
|
891
|
-
readonly solidFill?: SolidFillOptions;
|
|
892
1346
|
}
|
|
893
1347
|
type IWpsShapeOptions = WpsShapeCoreOptions & {
|
|
894
1348
|
readonly type: "wps";
|
|
@@ -1542,16 +1996,16 @@ declare const NumberRestartType: {
|
|
|
1542
1996
|
readonly EACH_SECT: "eachSect";
|
|
1543
1997
|
readonly EACH_PAGE: "eachPage";
|
|
1544
1998
|
};
|
|
1545
|
-
interface
|
|
1999
|
+
interface NumberPropertiesOptions {
|
|
1546
2000
|
readonly formatType?: (typeof NumberFormat)[keyof typeof NumberFormat];
|
|
1547
2001
|
readonly format?: string;
|
|
1548
2002
|
readonly numStart?: number;
|
|
1549
2003
|
readonly numRestart?: (typeof NumberRestartType)[keyof typeof NumberRestartType];
|
|
1550
2004
|
}
|
|
1551
|
-
interface
|
|
2005
|
+
interface FootnotePropertiesOptions extends NumberPropertiesOptions {
|
|
1552
2006
|
readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
|
|
1553
2007
|
}
|
|
1554
|
-
interface
|
|
2008
|
+
interface EndnotePropertiesOptions extends NumberPropertiesOptions {
|
|
1555
2009
|
readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
|
|
1556
2010
|
}
|
|
1557
2011
|
//#endregion
|
|
@@ -1703,8 +2157,8 @@ interface ISectionPropertiesOptionsBase {
|
|
|
1703
2157
|
readonly first?: number;
|
|
1704
2158
|
readonly other?: number;
|
|
1705
2159
|
};
|
|
1706
|
-
readonly footnotePr?:
|
|
1707
|
-
readonly endnotePr?:
|
|
2160
|
+
readonly footnotePr?: FootnotePropertiesOptions;
|
|
2161
|
+
readonly endnotePr?: EndnotePropertiesOptions;
|
|
1708
2162
|
}
|
|
1709
2163
|
type ISectionPropertiesChangeOptions = IChangedAttributesProperties & ISectionPropertiesOptionsBase;
|
|
1710
2164
|
type ISectionPropertiesOptions = {
|
|
@@ -2266,7 +2720,7 @@ declare const TextboxTightWrapType: {
|
|
|
2266
2720
|
readonly FIRST_LINE_ONLY: "firstLineOnly";
|
|
2267
2721
|
readonly LAST_LINE_ONLY: "lastLineOnly";
|
|
2268
2722
|
};
|
|
2269
|
-
interface
|
|
2723
|
+
interface LevelParagraphStylePropertiesOptions {
|
|
2270
2724
|
readonly alignment?: (typeof AlignmentType)[keyof typeof AlignmentType];
|
|
2271
2725
|
readonly thematicBreak?: boolean;
|
|
2272
2726
|
readonly contextualSpacing?: boolean;
|
|
@@ -2287,7 +2741,7 @@ type IParagraphStylePropertiesOptions = {
|
|
|
2287
2741
|
readonly instance?: number;
|
|
2288
2742
|
readonly custom?: boolean;
|
|
2289
2743
|
} | false;
|
|
2290
|
-
} &
|
|
2744
|
+
} & LevelParagraphStylePropertiesOptions;
|
|
2291
2745
|
type IParagraphPropertiesOptionsBase = {
|
|
2292
2746
|
readonly heading?: (typeof HeadingLevel)[keyof typeof HeadingLevel];
|
|
2293
2747
|
readonly bidirectional?: boolean;
|
|
@@ -2410,8 +2864,8 @@ interface ILevelsOptions {
|
|
|
2410
2864
|
readonly suffix?: (typeof LevelSuffix)[keyof typeof LevelSuffix];
|
|
2411
2865
|
readonly isLegalNumberingStyle?: boolean;
|
|
2412
2866
|
readonly style?: {
|
|
2413
|
-
readonly run?:
|
|
2414
|
-
readonly paragraph?:
|
|
2867
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2868
|
+
readonly paragraph?: LevelParagraphStylePropertiesOptions;
|
|
2415
2869
|
};
|
|
2416
2870
|
}
|
|
2417
2871
|
declare class LevelBase extends XmlComponent {
|
|
@@ -2486,13 +2940,13 @@ declare class ParagraphPropertiesDefaults extends XmlComponent {
|
|
|
2486
2940
|
//#endregion
|
|
2487
2941
|
//#region src/file/styles/defaults/run-properties.d.ts
|
|
2488
2942
|
declare class RunPropertiesDefaults extends XmlComponent {
|
|
2489
|
-
constructor(options?:
|
|
2943
|
+
constructor(options?: RunStylePropertiesOptions);
|
|
2490
2944
|
}
|
|
2491
2945
|
//#endregion
|
|
2492
2946
|
//#region src/file/styles/defaults/document-defaults.d.ts
|
|
2493
2947
|
interface IDocumentDefaultsOptions {
|
|
2494
2948
|
readonly paragraph?: IParagraphStylePropertiesOptions;
|
|
2495
|
-
readonly run?:
|
|
2949
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2496
2950
|
}
|
|
2497
2951
|
declare class DocumentDefaults extends XmlComponent {
|
|
2498
2952
|
private readonly runPropertiesDefaults;
|
|
@@ -2524,7 +2978,7 @@ declare class Style extends XmlComponent {
|
|
|
2524
2978
|
//#region src/file/styles/style/paragraph-style.d.ts
|
|
2525
2979
|
type IBaseParagraphStyleOptions = {
|
|
2526
2980
|
readonly paragraph?: IParagraphStylePropertiesOptions;
|
|
2527
|
-
readonly run?:
|
|
2981
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2528
2982
|
} & IStyleOptions;
|
|
2529
2983
|
type IParagraphStyleOptions = {
|
|
2530
2984
|
readonly id: string;
|
|
@@ -2537,7 +2991,7 @@ declare class StyleForParagraph extends Style {
|
|
|
2537
2991
|
//#endregion
|
|
2538
2992
|
//#region src/file/styles/style/character-style.d.ts
|
|
2539
2993
|
type IBaseCharacterStyleOptions = {
|
|
2540
|
-
readonly run?:
|
|
2994
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2541
2995
|
} & IStyleOptions;
|
|
2542
2996
|
type ICharacterStyleOptions = {
|
|
2543
2997
|
readonly id: string;
|
|
@@ -3407,4 +3861,4 @@ declare const patchDetector: ({
|
|
|
3407
3861
|
data
|
|
3408
3862
|
}: PatchDetectorOptions) => Promise<readonly string[]>;
|
|
3409
3863
|
//#endregion
|
|
3410
|
-
export { AbstractNumbering, AlignmentType, AnnotationReference, AttributeData, AttributeMap, AttributePayload, Attributes, BaseXmlComponent, Body, Bookmark, BookmarkEnd, BookmarkStart, Border, BorderStyle, BuilderElement, CarriageReturn, CellMerge, CellMergeAttributes, CharacterSet, CheckBox, CheckBoxSymbolElement, CheckBoxUtil, Column, ColumnBreak, Comment, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, ConcreteHyperlink, ConcreteNumbering, ContinuationSeparator, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentAttributes, DocumentBackground, DocumentBackgroundAttributes, DocumentDefaults, DocumentGridType, Drawing, DropCapType, EMPTY_OBJECT, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, EndnoteReferenceRunAttributes, Endnotes, ExternalHyperlink, FileChild, FootNoteReferenceRunAttributes, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterReferenceType, HeaderFooterType, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionRelativeFrom, HpsMeasureElement, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, IBodyPropertiesOptions, IBookmarkOptions, IBorderOptions, IBordersOptions, ICellMergeAttributes, ICharacterStyleOptions, ICheckboxSymbolOptions, ICheckboxSymbolProperties, IColumnAttributes, IColumnsAttributes, ICommentOptions, ICommentsOptions, IConcreteNumberingOptions, IContext, IDistance, IDocGridAttributesProperties, IDocumentAttributesProperties, IDocumentBackgroundOptions, IDocumentDefaultsOptions, IDocumentFooter, IDocumentHeader, IDocumentOptions, IDrawingOptions, IExtendedMediaData, IExternalHyperlinkOptions, IFloating, IFontAttributesProperties, IFrameOptions, IGroupChildMediaData, IHeaderFooterGroup, IHeaderFooterOptions, IHeaderOptions, IHorizontalPositionOptions, IImageOptions, IIndentAttributesProperties, IInternalHyperlinkOptions,
|
|
3864
|
+
export { AbstractNumbering, AlignmentType, AnnotationReference, AttributeData, AttributeMap, AttributePayload, Attributes, BaseXmlComponent, Body, Bookmark, BookmarkEnd, BookmarkStart, Border, BorderStyle, BuilderElement, CarriageReturn, CellMerge, CellMergeAttributes, CharacterSet, CheckBox, CheckBoxSymbolElement, CheckBoxUtil, Column, ColumnBreak, Comment, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, ConcreteHyperlink, ConcreteNumbering, ContinuationSeparator, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentAttributes, DocumentBackground, DocumentBackgroundAttributes, DocumentDefaults, DocumentGridType, Drawing, DropCapType, EMPTY_OBJECT, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, EndnoteReferenceRunAttributes, Endnotes, ExternalHyperlink, FileChild, FootNoteReferenceRunAttributes, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterReferenceType, HeaderFooterType, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionRelativeFrom, HpsMeasureElement, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, IBodyPropertiesOptions, IBookmarkOptions, IBorderOptions, IBordersOptions, ICellMergeAttributes, ICharacterStyleOptions, ICheckboxSymbolOptions, ICheckboxSymbolProperties, IColumnAttributes, IColumnsAttributes, ICommentOptions, ICommentsOptions, IConcreteNumberingOptions, IContext, IDistance, IDocGridAttributesProperties, IDocumentAttributesProperties, IDocumentBackgroundOptions, IDocumentDefaultsOptions, IDocumentFooter, IDocumentHeader, IDocumentOptions, IDrawingOptions, IExtendedMediaData, IExternalHyperlinkOptions, IFloating, IFontAttributesProperties, IFrameOptions, IGroupChildMediaData, IHeaderFooterGroup, IHeaderFooterOptions, IHeaderOptions, IHorizontalPositionOptions, IImageOptions, IIndentAttributesProperties, IInternalHyperlinkOptions, ILevelsOptions, ILineNumberAttributes, IMargins, IMathFractionOptions, IMathFunctionOptions, IMathIntegralOptions, IMathLimitLowerOptions, IMathLimitUpperOptions, IMathOptions, IMathPreSubSuperScriptOptions, IMathRadicalOptions, IMathSubScriptOptions, IMathSubSuperScriptOptions, IMathSumOptions, IMathSuperScriptOptions, IMediaData, IMediaDataTransformation, IMediaTransformation, INumberedItemReferenceOptions, INumberingOptions, IPageBorderAttributes, IPageBordersOptions, IPageMarginAttributes, IPageNumberTypeAttributes, IPageReferenceOptions, IPageSizeAttributes, IParagraphOptions, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, type IPropertiesOptions, IRunOptions, IRunPropertiesChangeOptions, IRunPropertiesOptions, ISectionOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISectionPropertiesOptionsBase, IShadingAttributesProperties, ISpacingProperties, IStylesOptions, ISymbolRunOptions, ITableBordersOptions, ITableCellBorders, ITableCellOptions, ITableFloatOptions, ITableLookOptions, ITableOfContentsOptions, ITableOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITablePropertiesOptionsBase, ITableRowOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITableRowPropertiesOptionsBase, ITableWidthProperties, ITextWrapping, IVerticalPositionOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlAttribute, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LineNumberRestartFormat, LineRuleType, Math, MathAngledBrackets, MathComponent, MathCurlyBrackets, MathDegree, MathDenominator, MathFraction, MathFunction, MathFunctionName, MathFunctionProperties, MathIntegral, MathLimit, MathLimitLower, MathLimitUpper, MathNumerator, MathPreSubSuperScript, MathRadical, MathRadicalProperties, MathRoundBrackets, MathRun, MathSquareBrackets, MathSubScript, MathSubSuperScript, MathSum, MathSuperScript, Media, MonthLong, MonthShort, NextAttributeComponent, NoBreakHyphen, NumberFormat, NumberProperties, NumberValueElement, NumberedItemReference, NumberedItemReferenceFormat, Numbering, OnOffElement, OutputByType, OutputType, OverlapType, Packer, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBreak, PageBreakBefore, PageNumber, PageNumberElement, PageNumberSeparator, PageOrientation, PageReference, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, Percentage, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PositivePercentage, PositiveUniversalMeasure, PrettifyType, RelativeHorizontalPosition, RelativeMeasure, RelativeVerticalPosition, Run, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunStylePropertiesOptions, SectionProperties, SectionPropertiesChange, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingType, SimpleField, SimpleMailMergeField, SoftHyphen, SpaceType, StringContainer, StringEnumValueElement, StringValueElement, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableCell, TableCellBorders, TableLayoutType, TableOfContents, TableProperties, TableRow, TableRowProperties, TableRowPropertiesChange, TableVerticalAlign, TextAlignmentType, TextDirection, TextEffect, TextRun, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, ThemeColor, ThemeFont, UnderlineType, UniqueNumericIdCreator, UniversalMeasure, VerticalAlign, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND3, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlAttributeComponent, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, bookmarkUniqueNumericIdGen, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createColumns, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccentCharacter, createMathBase, createMathLimitLocation, createMathNAryProperties, createMathPreSubSuperScriptProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapTight, createWrapTopAndBottom, dateTimeValue, decimalNumber, docPropertiesUniqueNumericIdGen, eighthPointMeasureValue, hashedId, hexColorValue, hpsMeasureValue, longHexNumber, measurementOrPercentValue, patchDetector, patchDocument, percentageValue, pointMeasureValue, positiveUniversalMeasureValue, sectionMarginDefaults, sectionPageSizeDefaults, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber };
|