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.cts
CHANGED
|
@@ -352,7 +352,7 @@ declare const CombineBracketsType: {
|
|
|
352
352
|
readonly ANGLE: "angle";
|
|
353
353
|
readonly CURLY: "curly";
|
|
354
354
|
};
|
|
355
|
-
interface
|
|
355
|
+
interface EastAsianLayoutOptions {
|
|
356
356
|
readonly id?: number;
|
|
357
357
|
readonly combine?: boolean;
|
|
358
358
|
readonly combineBrackets?: (typeof CombineBracketsType)[keyof typeof CombineBracketsType];
|
|
@@ -372,7 +372,7 @@ declare const createEmphasisMark: (emphasisMarkType?: (typeof EmphasisMarkType)[
|
|
|
372
372
|
declare const createDotEmphasisMark: () => XmlComponent;
|
|
373
373
|
//#endregion
|
|
374
374
|
//#region src/file/paragraph/run/formatting.d.ts
|
|
375
|
-
interface
|
|
375
|
+
interface ColorOptions {
|
|
376
376
|
readonly val?: string;
|
|
377
377
|
readonly themeColor?: (typeof ThemeColor)[keyof typeof ThemeColor];
|
|
378
378
|
readonly themeTint?: string;
|
|
@@ -456,7 +456,7 @@ declare const HighlightColor: {
|
|
|
456
456
|
readonly WHITE: "white";
|
|
457
457
|
readonly YELLOW: "yellow";
|
|
458
458
|
};
|
|
459
|
-
interface
|
|
459
|
+
interface RunStylePropertiesOptions {
|
|
460
460
|
readonly noProof?: boolean;
|
|
461
461
|
readonly bold?: boolean;
|
|
462
462
|
readonly boldComplexScript?: boolean;
|
|
@@ -470,7 +470,7 @@ interface IRunStylePropertiesOptions {
|
|
|
470
470
|
readonly emphasisMark?: {
|
|
471
471
|
readonly type?: (typeof EmphasisMarkType)[keyof typeof EmphasisMarkType];
|
|
472
472
|
};
|
|
473
|
-
readonly color?: string |
|
|
473
|
+
readonly color?: string | ColorOptions;
|
|
474
474
|
readonly kern?: number | PositiveUniversalMeasure;
|
|
475
475
|
readonly position?: UniversalMeasure;
|
|
476
476
|
readonly size?: number | PositiveUniversalMeasure;
|
|
@@ -502,11 +502,11 @@ interface IRunStylePropertiesOptions {
|
|
|
502
502
|
readonly webHidden?: boolean;
|
|
503
503
|
readonly fitText?: number;
|
|
504
504
|
readonly complexScript?: boolean;
|
|
505
|
-
readonly eastAsianLayout?:
|
|
505
|
+
readonly eastAsianLayout?: EastAsianLayoutOptions;
|
|
506
506
|
}
|
|
507
507
|
type IRunPropertiesOptions = {
|
|
508
508
|
readonly style?: string;
|
|
509
|
-
} &
|
|
509
|
+
} & RunStylePropertiesOptions;
|
|
510
510
|
type IRunPropertiesChangeOptions = {} & IRunPropertiesOptions & IChangedAttributesProperties;
|
|
511
511
|
type IParagraphRunPropertiesOptions = {
|
|
512
512
|
readonly insertion?: IChangedAttributesProperties;
|
|
@@ -545,7 +545,220 @@ interface DocPropertiesOptions {
|
|
|
545
545
|
readonly id?: string;
|
|
546
546
|
}
|
|
547
547
|
//#endregion
|
|
548
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.d.ts
|
|
549
|
+
interface SourceRectangleOptions {
|
|
550
|
+
readonly l?: number;
|
|
551
|
+
readonly t?: number;
|
|
552
|
+
readonly r?: number;
|
|
553
|
+
readonly b?: number;
|
|
554
|
+
}
|
|
555
|
+
//#endregion
|
|
556
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/color-transform.d.ts
|
|
557
|
+
interface ColorTransformOptions {
|
|
558
|
+
readonly tint?: number;
|
|
559
|
+
readonly shade?: number;
|
|
560
|
+
readonly comp?: boolean;
|
|
561
|
+
readonly inv?: boolean;
|
|
562
|
+
readonly gray?: boolean;
|
|
563
|
+
readonly alpha?: number;
|
|
564
|
+
readonly alphaOff?: number;
|
|
565
|
+
readonly alphaMod?: number;
|
|
566
|
+
readonly hue?: number;
|
|
567
|
+
readonly hueOff?: number;
|
|
568
|
+
readonly hueMod?: number;
|
|
569
|
+
readonly sat?: number;
|
|
570
|
+
readonly satOff?: number;
|
|
571
|
+
readonly satMod?: number;
|
|
572
|
+
readonly lum?: number;
|
|
573
|
+
readonly lumOff?: number;
|
|
574
|
+
readonly lumMod?: number;
|
|
575
|
+
readonly red?: number;
|
|
576
|
+
readonly redOff?: number;
|
|
577
|
+
readonly redMod?: number;
|
|
578
|
+
readonly green?: number;
|
|
579
|
+
readonly greenOff?: number;
|
|
580
|
+
readonly greenMod?: number;
|
|
581
|
+
readonly blue?: number;
|
|
582
|
+
readonly blueOff?: number;
|
|
583
|
+
readonly blueMod?: number;
|
|
584
|
+
readonly gamma?: boolean;
|
|
585
|
+
readonly invGamma?: boolean;
|
|
586
|
+
}
|
|
587
|
+
//#endregion
|
|
588
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/hsl-color.d.ts
|
|
589
|
+
interface HslColorOptions {
|
|
590
|
+
readonly hue: number;
|
|
591
|
+
readonly sat: number;
|
|
592
|
+
readonly lum: number;
|
|
593
|
+
readonly transforms?: ColorTransformOptions;
|
|
594
|
+
}
|
|
595
|
+
//#endregion
|
|
596
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/preset-color.d.ts
|
|
597
|
+
declare const PresetColor: {
|
|
598
|
+
readonly ALICE_BLUE: "aliceBlue";
|
|
599
|
+
readonly ANTIQUE_WHITE: "antiqueWhite";
|
|
600
|
+
readonly AQUA: "aqua";
|
|
601
|
+
readonly AQUAMARINE: "aquamarine";
|
|
602
|
+
readonly AZURE: "azure";
|
|
603
|
+
readonly BEIGE: "beige";
|
|
604
|
+
readonly BISQUE: "bisque";
|
|
605
|
+
readonly BLACK: "black";
|
|
606
|
+
readonly BLANCHED_ALMOND: "blanchedAlmond";
|
|
607
|
+
readonly BLUE: "blue";
|
|
608
|
+
readonly BLUE_VIOLET: "blueViolet";
|
|
609
|
+
readonly BROWN: "brown";
|
|
610
|
+
readonly BURLY_WOOD: "burlyWood";
|
|
611
|
+
readonly CADET_BLUE: "cadetBlue";
|
|
612
|
+
readonly CHARTREUSE: "chartreuse";
|
|
613
|
+
readonly CHOCOLATE: "chocolate";
|
|
614
|
+
readonly CORAL: "coral";
|
|
615
|
+
readonly CORNFLOWER_BLUE: "cornflowerBlue";
|
|
616
|
+
readonly CORNSILK: "cornsilk";
|
|
617
|
+
readonly CRIMSON: "crimson";
|
|
618
|
+
readonly CYAN: "cyan";
|
|
619
|
+
readonly DARK_BLUE: "darkBlue";
|
|
620
|
+
readonly DARK_CYAN: "darkCyan";
|
|
621
|
+
readonly DARK_GOLDENROD: "darkGoldenrod";
|
|
622
|
+
readonly DARK_GRAY: "darkGray";
|
|
623
|
+
readonly DARK_GREY: "darkGrey";
|
|
624
|
+
readonly DARK_GREEN: "darkGreen";
|
|
625
|
+
readonly DARK_KHAKI: "darkKhaki";
|
|
626
|
+
readonly DARK_MAGENTA: "darkMagenta";
|
|
627
|
+
readonly DARK_OLIVE_GREEN: "darkOliveGreen";
|
|
628
|
+
readonly DARK_ORANGE: "darkOrange";
|
|
629
|
+
readonly DARK_ORCHID: "darkOrchid";
|
|
630
|
+
readonly DARK_RED: "darkRed";
|
|
631
|
+
readonly DARK_SALMON: "darkSalmon";
|
|
632
|
+
readonly DARK_SEA_GREEN: "darkSeaGreen";
|
|
633
|
+
readonly DARK_SLATE_BLUE: "darkSlateBlue";
|
|
634
|
+
readonly DARK_SLATE_GRAY: "darkSlateGray";
|
|
635
|
+
readonly DARK_SLATE_GREY: "darkSlateGrey";
|
|
636
|
+
readonly DARK_TURQUOISE: "darkTurquoise";
|
|
637
|
+
readonly DARK_VIOLET: "darkViolet";
|
|
638
|
+
readonly DEEP_PINK: "deepPink";
|
|
639
|
+
readonly DEEP_SKY_BLUE: "deepSkyBlue";
|
|
640
|
+
readonly DIM_GRAY: "dimGray";
|
|
641
|
+
readonly DIM_GREY: "dimGrey";
|
|
642
|
+
readonly DODGER_BLUE: "dodgerBlue";
|
|
643
|
+
readonly FIREBRICK: "firebrick";
|
|
644
|
+
readonly FLORAL_WHITE: "floralWhite";
|
|
645
|
+
readonly FOREST_GREEN: "forestGreen";
|
|
646
|
+
readonly FUCHSIA: "fuchsia";
|
|
647
|
+
readonly GAINSBORO: "gainsboro";
|
|
648
|
+
readonly GHOST_WHITE: "ghostWhite";
|
|
649
|
+
readonly GOLD: "gold";
|
|
650
|
+
readonly GOLDENROD: "goldenrod";
|
|
651
|
+
readonly GRAY: "gray";
|
|
652
|
+
readonly GREY: "grey";
|
|
653
|
+
readonly GREEN: "green";
|
|
654
|
+
readonly GREEN_YELLOW: "greenYellow";
|
|
655
|
+
readonly HONEYDEW: "honeydew";
|
|
656
|
+
readonly HOT_PINK: "hotPink";
|
|
657
|
+
readonly INDIAN_RED: "indianRed";
|
|
658
|
+
readonly INDIGO: "indigo";
|
|
659
|
+
readonly IVORY: "ivory";
|
|
660
|
+
readonly KHAKI: "khaki";
|
|
661
|
+
readonly LAVENDER: "lavender";
|
|
662
|
+
readonly LAVENDER_BLUSH: "lavenderBlush";
|
|
663
|
+
readonly LAWN_GREEN: "lawnGreen";
|
|
664
|
+
readonly LEMON_CHIFFON: "lemonChiffon";
|
|
665
|
+
readonly LIGHT_BLUE: "lightBlue";
|
|
666
|
+
readonly LIGHT_CORAL: "lightCoral";
|
|
667
|
+
readonly LIGHT_CYAN: "lightCyan";
|
|
668
|
+
readonly LIGHT_GOLDENROD_YELLOW: "lightGoldenrodYellow";
|
|
669
|
+
readonly LIGHT_GRAY: "lightGray";
|
|
670
|
+
readonly LIGHT_GREY: "lightGrey";
|
|
671
|
+
readonly LIGHT_GREEN: "lightGreen";
|
|
672
|
+
readonly LIGHT_PINK: "lightPink";
|
|
673
|
+
readonly LIGHT_SALMON: "lightSalmon";
|
|
674
|
+
readonly LIGHT_SEA_GREEN: "lightSeaGreen";
|
|
675
|
+
readonly LIGHT_SKY_BLUE: "lightSkyBlue";
|
|
676
|
+
readonly LIGHT_SLATE_GRAY: "lightSlateGray";
|
|
677
|
+
readonly LIGHT_SLATE_GREY: "lightSlateGrey";
|
|
678
|
+
readonly LIGHT_STEEL_BLUE: "lightSteelBlue";
|
|
679
|
+
readonly LIGHT_YELLOW: "lightYellow";
|
|
680
|
+
readonly LIME: "lime";
|
|
681
|
+
readonly LIME_GREEN: "limeGreen";
|
|
682
|
+
readonly LINEN: "linen";
|
|
683
|
+
readonly MAGENTA: "magenta";
|
|
684
|
+
readonly MAROON: "maroon";
|
|
685
|
+
readonly MEDIUM_AQUAMARINE: "mediumAquamarine";
|
|
686
|
+
readonly MEDIUM_BLUE: "mediumBlue";
|
|
687
|
+
readonly MEDIUM_ORCHID: "mediumOrchid";
|
|
688
|
+
readonly MEDIUM_PURPLE: "mediumPurple";
|
|
689
|
+
readonly MEDIUM_SEA_GREEN: "mediumSeaGreen";
|
|
690
|
+
readonly MEDIUM_SLATE_BLUE: "mediumSlateBlue";
|
|
691
|
+
readonly MEDIUM_SPRING_GREEN: "mediumSpringGreen";
|
|
692
|
+
readonly MEDIUM_TURQUOISE: "mediumTurquoise";
|
|
693
|
+
readonly MEDIUM_VIOLET_RED: "mediumVioletRed";
|
|
694
|
+
readonly MIDNIGHT_BLUE: "midnightBlue";
|
|
695
|
+
readonly MINT_CREAM: "mintCream";
|
|
696
|
+
readonly MISTY_ROSE: "mistyRose";
|
|
697
|
+
readonly MOCCASIN: "moccasin";
|
|
698
|
+
readonly NAVAJO_WHITE: "navajoWhite";
|
|
699
|
+
readonly NAVY: "navy";
|
|
700
|
+
readonly OLD_LACE: "oldLace";
|
|
701
|
+
readonly OLIVE: "olive";
|
|
702
|
+
readonly OLIVE_DRAB: "oliveDrab";
|
|
703
|
+
readonly ORANGE: "orange";
|
|
704
|
+
readonly ORANGE_RED: "orangeRed";
|
|
705
|
+
readonly ORCHID: "orchid";
|
|
706
|
+
readonly PALE_GOLDENROD: "paleGoldenrod";
|
|
707
|
+
readonly PALE_GREEN: "paleGreen";
|
|
708
|
+
readonly PALE_TURQUOISE: "paleTurquoise";
|
|
709
|
+
readonly PALE_VIOLET_RED: "paleVioletRed";
|
|
710
|
+
readonly PAPAYA_WHIP: "papayaWhip";
|
|
711
|
+
readonly PEACH_PUFF: "peachPuff";
|
|
712
|
+
readonly PERU: "peru";
|
|
713
|
+
readonly PINK: "pink";
|
|
714
|
+
readonly PLUM: "plum";
|
|
715
|
+
readonly POWDER_BLUE: "powderBlue";
|
|
716
|
+
readonly PURPLE: "purple";
|
|
717
|
+
readonly RED: "red";
|
|
718
|
+
readonly ROSY_BROWN: "rosyBrown";
|
|
719
|
+
readonly ROYAL_BLUE: "royalBlue";
|
|
720
|
+
readonly SADDLE_BROWN: "saddleBrown";
|
|
721
|
+
readonly SALMON: "salmon";
|
|
722
|
+
readonly SANDY_BROWN: "sandyBrown";
|
|
723
|
+
readonly SEA_GREEN: "seaGreen";
|
|
724
|
+
readonly SEA_SHELL: "seaShell";
|
|
725
|
+
readonly SIENNA: "sienna";
|
|
726
|
+
readonly SILVER: "silver";
|
|
727
|
+
readonly SKY_BLUE: "skyBlue";
|
|
728
|
+
readonly SLATE_BLUE: "slateBlue";
|
|
729
|
+
readonly SLATE_GRAY: "slateGray";
|
|
730
|
+
readonly SLATE_GREY: "slateGrey";
|
|
731
|
+
readonly SNOW: "snow";
|
|
732
|
+
readonly SPRING_GREEN: "springGreen";
|
|
733
|
+
readonly STEEL_BLUE: "steelBlue";
|
|
734
|
+
readonly TAN: "tan";
|
|
735
|
+
readonly TEAL: "teal";
|
|
736
|
+
readonly THISTLE: "thistle";
|
|
737
|
+
readonly TOMATO: "tomato";
|
|
738
|
+
readonly TURQUOISE: "turquoise";
|
|
739
|
+
readonly VIOLET: "violet";
|
|
740
|
+
readonly WHEAT: "wheat";
|
|
741
|
+
readonly WHITE: "white";
|
|
742
|
+
readonly WHITE_SMOKE: "whiteSmoke";
|
|
743
|
+
readonly YELLOW: "yellow";
|
|
744
|
+
readonly YELLOW_GREEN: "yellowGreen";
|
|
745
|
+
};
|
|
746
|
+
interface PresetColorOptions {
|
|
747
|
+
readonly value: (typeof PresetColor)[keyof typeof PresetColor];
|
|
748
|
+
readonly transforms?: ColorTransformOptions;
|
|
749
|
+
}
|
|
750
|
+
//#endregion
|
|
751
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/rgb-color.d.ts
|
|
752
|
+
interface RgbColorOptions {
|
|
753
|
+
readonly value: string;
|
|
754
|
+
readonly transforms?: ColorTransformOptions;
|
|
755
|
+
}
|
|
756
|
+
//#endregion
|
|
548
757
|
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/scheme-color.d.ts
|
|
758
|
+
interface SchemeColorOptions {
|
|
759
|
+
readonly value: (typeof SchemeColor)[keyof typeof SchemeColor];
|
|
760
|
+
readonly transforms?: ColorTransformOptions;
|
|
761
|
+
}
|
|
549
762
|
declare const SchemeColor: {
|
|
550
763
|
readonly BG1: "bg1";
|
|
551
764
|
readonly TX1: "tx1";
|
|
@@ -566,6 +779,150 @@ declare const SchemeColor: {
|
|
|
566
779
|
readonly PHCLR: "phClr";
|
|
567
780
|
};
|
|
568
781
|
//#endregion
|
|
782
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/system-color.d.ts
|
|
783
|
+
declare const SystemColor: {
|
|
784
|
+
readonly SCROLL_BAR: "scrollBar";
|
|
785
|
+
readonly BACKGROUND: "background";
|
|
786
|
+
readonly ACTIVE_CAPTION: "activeCaption";
|
|
787
|
+
readonly INACTIVE_CAPTION: "inactiveCaption";
|
|
788
|
+
readonly MENU: "menu";
|
|
789
|
+
readonly WINDOW: "window";
|
|
790
|
+
readonly WINDOW_FRAME: "windowFrame";
|
|
791
|
+
readonly MENU_TEXT: "menuText";
|
|
792
|
+
readonly WINDOW_TEXT: "windowText";
|
|
793
|
+
readonly CAPTION_TEXT: "captionText";
|
|
794
|
+
readonly ACTIVE_BORDER: "activeBorder";
|
|
795
|
+
readonly INACTIVE_BORDER: "inactiveBorder";
|
|
796
|
+
readonly APP_WORKSPACE: "appWorkspace";
|
|
797
|
+
readonly HIGHLIGHT: "highlight";
|
|
798
|
+
readonly HIGHLIGHT_TEXT: "highlightText";
|
|
799
|
+
readonly BTN_FACE: "btnFace";
|
|
800
|
+
readonly BTN_SHADOW: "btnShadow";
|
|
801
|
+
readonly GRAY_TEXT: "grayText";
|
|
802
|
+
readonly BTN_TEXT: "btnText";
|
|
803
|
+
readonly INACTIVE_CAPTION_TEXT: "inactiveCaptionText";
|
|
804
|
+
readonly BTN_HIGHLIGHT: "btnHighlight";
|
|
805
|
+
readonly THREE_D_DK_SHADOW: "3dDkShadow";
|
|
806
|
+
readonly THREE_D_LIGHT: "3dLight";
|
|
807
|
+
readonly INFO_TEXT: "infoText";
|
|
808
|
+
readonly INFO_BK: "infoBk";
|
|
809
|
+
readonly HOT_LIGHT: "hotLight";
|
|
810
|
+
readonly GRADIENT_ACTIVE_CAPTION: "gradientActiveCaption";
|
|
811
|
+
readonly GRADIENT_INACTIVE_CAPTION: "gradientInactiveCaption";
|
|
812
|
+
readonly MENU_HIGHLIGHT: "menuHighlight";
|
|
813
|
+
readonly MENU_BAR: "menuBar";
|
|
814
|
+
};
|
|
815
|
+
interface SystemColorOptions {
|
|
816
|
+
readonly value: (typeof SystemColor)[keyof typeof SystemColor];
|
|
817
|
+
readonly lastClr?: string;
|
|
818
|
+
readonly transforms?: ColorTransformOptions;
|
|
819
|
+
}
|
|
820
|
+
//#endregion
|
|
821
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/solid-fill.d.ts
|
|
822
|
+
type SolidFillOptions = RgbColorOptions | SchemeColorOptions | HslColorOptions | SystemColorOptions | PresetColorOptions;
|
|
823
|
+
//#endregion
|
|
824
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/glow.d.ts
|
|
825
|
+
interface GlowEffectOptions {
|
|
826
|
+
readonly rad?: number;
|
|
827
|
+
readonly color: SolidFillOptions;
|
|
828
|
+
}
|
|
829
|
+
//#endregion
|
|
830
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/inner-shdw.d.ts
|
|
831
|
+
interface InnerShadowEffectOptions {
|
|
832
|
+
readonly blurRad?: number;
|
|
833
|
+
readonly dist?: number;
|
|
834
|
+
readonly dir?: number;
|
|
835
|
+
readonly color: SolidFillOptions;
|
|
836
|
+
}
|
|
837
|
+
//#endregion
|
|
838
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/outer-shdw.d.ts
|
|
839
|
+
declare const RectAlignment: {
|
|
840
|
+
readonly TOP_LEFT: "tl";
|
|
841
|
+
readonly TOP: "t";
|
|
842
|
+
readonly TOP_RIGHT: "tr";
|
|
843
|
+
readonly LEFT: "l";
|
|
844
|
+
readonly CENTER: "ctr";
|
|
845
|
+
readonly RIGHT: "r";
|
|
846
|
+
readonly BOTTOM_LEFT: "bl";
|
|
847
|
+
readonly BOTTOM: "b";
|
|
848
|
+
readonly BOTTOM_RIGHT: "br";
|
|
849
|
+
};
|
|
850
|
+
interface OuterShadowEffectOptions {
|
|
851
|
+
readonly blurRad?: number;
|
|
852
|
+
readonly dist?: number;
|
|
853
|
+
readonly dir?: number;
|
|
854
|
+
readonly sx?: number;
|
|
855
|
+
readonly sy?: number;
|
|
856
|
+
readonly kx?: number;
|
|
857
|
+
readonly ky?: number;
|
|
858
|
+
readonly algn?: keyof typeof RectAlignment;
|
|
859
|
+
readonly rotWithShape?: boolean;
|
|
860
|
+
readonly color: SolidFillOptions;
|
|
861
|
+
}
|
|
862
|
+
//#endregion
|
|
863
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/prst-shdw.d.ts
|
|
864
|
+
declare const PresetShadowVal: {
|
|
865
|
+
readonly SHDW1: "shdw1";
|
|
866
|
+
readonly SHDW2: "shdw2";
|
|
867
|
+
readonly SHDW3: "shdw3";
|
|
868
|
+
readonly SHDW4: "shdw4";
|
|
869
|
+
readonly SHDW5: "shdw5";
|
|
870
|
+
readonly SHDW6: "shdw6";
|
|
871
|
+
readonly SHDW7: "shdw7";
|
|
872
|
+
readonly SHDW8: "shdw8";
|
|
873
|
+
readonly SHDW9: "shdw9";
|
|
874
|
+
readonly SHDW10: "shdw10";
|
|
875
|
+
readonly SHDW11: "shdw11";
|
|
876
|
+
readonly SHDW12: "shdw12";
|
|
877
|
+
readonly SHDW13: "shdw13";
|
|
878
|
+
readonly SHDW14: "shdw14";
|
|
879
|
+
readonly SHDW15: "shdw15";
|
|
880
|
+
readonly SHDW16: "shdw16";
|
|
881
|
+
readonly SHDW17: "shdw17";
|
|
882
|
+
readonly SHDW18: "shdw18";
|
|
883
|
+
readonly SHDW19: "shdw19";
|
|
884
|
+
readonly SHDW20: "shdw20";
|
|
885
|
+
};
|
|
886
|
+
interface PresetShadowEffectOptions {
|
|
887
|
+
readonly prst: keyof typeof PresetShadowVal;
|
|
888
|
+
readonly dist?: number;
|
|
889
|
+
readonly dir?: number;
|
|
890
|
+
readonly color: SolidFillOptions;
|
|
891
|
+
}
|
|
892
|
+
//#endregion
|
|
893
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/reflection.d.ts
|
|
894
|
+
interface ReflectionEffectOptions {
|
|
895
|
+
readonly blurRad?: number;
|
|
896
|
+
readonly stA?: number;
|
|
897
|
+
readonly stPos?: number;
|
|
898
|
+
readonly endA?: number;
|
|
899
|
+
readonly endPos?: number;
|
|
900
|
+
readonly dist?: number;
|
|
901
|
+
readonly dir?: number;
|
|
902
|
+
readonly fadeDir?: number;
|
|
903
|
+
readonly sx?: number;
|
|
904
|
+
readonly sy?: number;
|
|
905
|
+
readonly kx?: number;
|
|
906
|
+
readonly ky?: number;
|
|
907
|
+
readonly algn?: string;
|
|
908
|
+
readonly rotWithShape?: boolean;
|
|
909
|
+
}
|
|
910
|
+
//#endregion
|
|
911
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/effect-list.d.ts
|
|
912
|
+
interface BlurEffectOptions {
|
|
913
|
+
readonly rad?: number;
|
|
914
|
+
readonly grow?: boolean;
|
|
915
|
+
}
|
|
916
|
+
interface EffectListOptions {
|
|
917
|
+
readonly blur?: BlurEffectOptions;
|
|
918
|
+
readonly glow?: GlowEffectOptions;
|
|
919
|
+
readonly innerShdw?: InnerShadowEffectOptions;
|
|
920
|
+
readonly outerShdw?: OuterShadowEffectOptions;
|
|
921
|
+
readonly prstShdw?: PresetShadowEffectOptions;
|
|
922
|
+
readonly reflection?: ReflectionEffectOptions | true;
|
|
923
|
+
readonly softEdge?: number;
|
|
924
|
+
}
|
|
925
|
+
//#endregion
|
|
569
926
|
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/outline.d.ts
|
|
570
927
|
declare const LineCap: {
|
|
571
928
|
readonly ROUND: "rnd";
|
|
@@ -583,39 +940,126 @@ declare const PenAlignment: {
|
|
|
583
940
|
readonly CENTER: "ctr";
|
|
584
941
|
readonly INSET: "in";
|
|
585
942
|
};
|
|
943
|
+
declare const PresetDash: {
|
|
944
|
+
readonly SOLID: "solid";
|
|
945
|
+
readonly DOT: "dot";
|
|
946
|
+
readonly DASH: "dash";
|
|
947
|
+
readonly LG_DASH: "lgDash";
|
|
948
|
+
readonly DASH_DOT: "dashDot";
|
|
949
|
+
readonly LG_DASH_DOT: "lgDashDot";
|
|
950
|
+
readonly LG_DASH_DOT_DOT: "lgDashDotDot";
|
|
951
|
+
readonly SYS_DASH: "sysDash";
|
|
952
|
+
readonly SYS_DOT: "sysDot";
|
|
953
|
+
readonly SYS_DASH_DOT: "sysDashDot";
|
|
954
|
+
readonly SYS_DASH_DOT_DOT: "sysDashDotDot";
|
|
955
|
+
};
|
|
956
|
+
declare const LineJoin: {
|
|
957
|
+
readonly ROUND: "round";
|
|
958
|
+
readonly BEVEL: "bevel";
|
|
959
|
+
readonly MITER: "miter";
|
|
960
|
+
};
|
|
586
961
|
interface OutlineAttributes {
|
|
587
962
|
readonly width?: number;
|
|
588
963
|
readonly cap?: keyof typeof LineCap;
|
|
589
964
|
readonly compoundLine?: keyof typeof CompoundLine;
|
|
590
965
|
readonly align?: keyof typeof PenAlignment;
|
|
966
|
+
readonly dash?: keyof typeof PresetDash;
|
|
967
|
+
readonly join?: keyof typeof LineJoin;
|
|
968
|
+
readonly miterLimit?: number;
|
|
591
969
|
}
|
|
592
970
|
interface OutlineNoFill {
|
|
593
971
|
readonly type: "noFill";
|
|
594
972
|
}
|
|
595
|
-
interface
|
|
973
|
+
interface OutlineSolidFill {
|
|
596
974
|
readonly type: "solidFill";
|
|
597
|
-
readonly
|
|
598
|
-
readonly value: string;
|
|
975
|
+
readonly color: SolidFillOptions;
|
|
599
976
|
}
|
|
600
|
-
interface OutlineSchemeSolidFill {
|
|
601
|
-
readonly type: "solidFill";
|
|
602
|
-
readonly solidFillType: "scheme";
|
|
603
|
-
readonly value: (typeof SchemeColor)[keyof typeof SchemeColor];
|
|
604
|
-
}
|
|
605
|
-
type OutlineSolidFill = OutlineRgbSolidFill | OutlineSchemeSolidFill;
|
|
606
977
|
type OutlineFillProperties = OutlineNoFill | OutlineSolidFill;
|
|
607
978
|
type OutlineOptions = OutlineAttributes & OutlineFillProperties;
|
|
608
979
|
//#endregion
|
|
609
|
-
//#region src/file/drawing/inline/graphic/graphic-data/
|
|
610
|
-
interface
|
|
611
|
-
readonly
|
|
612
|
-
readonly
|
|
980
|
+
//#region src/file/drawing/inline/graphic/graphic-data/wpg/wpg-group.d.ts
|
|
981
|
+
interface IChildOffset {
|
|
982
|
+
readonly x: number;
|
|
983
|
+
readonly y: number;
|
|
613
984
|
}
|
|
614
|
-
interface
|
|
615
|
-
readonly
|
|
616
|
-
readonly
|
|
985
|
+
interface IChildExtent {
|
|
986
|
+
readonly cx: number;
|
|
987
|
+
readonly cy: number;
|
|
988
|
+
}
|
|
989
|
+
//#endregion
|
|
990
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/fill/gradient-fill.d.ts
|
|
991
|
+
interface IGradientStop {
|
|
992
|
+
readonly position: number;
|
|
993
|
+
readonly color: SolidFillOptions;
|
|
994
|
+
}
|
|
995
|
+
declare const PathShadeType: {
|
|
996
|
+
readonly SHAPE: "shape";
|
|
997
|
+
readonly CIRCLE: "circle";
|
|
998
|
+
readonly RECT: "rect";
|
|
999
|
+
};
|
|
1000
|
+
interface LinearShadeOptions {
|
|
1001
|
+
readonly angle?: number;
|
|
1002
|
+
readonly scaled?: boolean;
|
|
1003
|
+
}
|
|
1004
|
+
interface PathShadeOptions {
|
|
1005
|
+
readonly path?: keyof typeof PathShadeType;
|
|
1006
|
+
}
|
|
1007
|
+
type GradientShadeOptions = LinearShadeOptions | PathShadeOptions;
|
|
1008
|
+
interface GradientFillOptions {
|
|
1009
|
+
readonly stops: readonly IGradientStop[];
|
|
1010
|
+
readonly shade?: GradientShadeOptions;
|
|
1011
|
+
readonly rotateWithShape?: boolean;
|
|
1012
|
+
}
|
|
1013
|
+
//#endregion
|
|
1014
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/three-d/bevel.d.ts
|
|
1015
|
+
declare const BevelPresetType: {
|
|
1016
|
+
readonly RELAXED_INSET: "relaxedInset";
|
|
1017
|
+
readonly CIRCLE: "circle";
|
|
1018
|
+
readonly SLOPE: "slope";
|
|
1019
|
+
readonly CROSS: "cross";
|
|
1020
|
+
readonly ANGLE: "angle";
|
|
1021
|
+
readonly SOFT_ROUND: "softRound";
|
|
1022
|
+
readonly CONVEX: "convex";
|
|
1023
|
+
readonly COOL_SLANT: "coolSlant";
|
|
1024
|
+
readonly DIVOT: "divot";
|
|
1025
|
+
readonly RIBLET: "riblet";
|
|
1026
|
+
readonly HARD_EDGE: "hardEdge";
|
|
1027
|
+
readonly ART_DECO: "artDeco";
|
|
1028
|
+
};
|
|
1029
|
+
interface BevelOptions {
|
|
1030
|
+
readonly w?: number;
|
|
1031
|
+
readonly h?: number;
|
|
1032
|
+
readonly prst?: keyof typeof BevelPresetType;
|
|
1033
|
+
}
|
|
1034
|
+
//#endregion
|
|
1035
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/three-d/shape-3d.d.ts
|
|
1036
|
+
declare const PresetMaterialType: {
|
|
1037
|
+
readonly LEGACY_MATTE: "legacyMatte";
|
|
1038
|
+
readonly LEGACY_PLASTIC: "legacyPlastic";
|
|
1039
|
+
readonly LEGACY_METAL: "legacyMetal";
|
|
1040
|
+
readonly LEGACY_WIREFRAME: "legacyWireframe";
|
|
1041
|
+
readonly MATTE: "matte";
|
|
1042
|
+
readonly PLASTIC: "plastic";
|
|
1043
|
+
readonly METAL: "metal";
|
|
1044
|
+
readonly WARM_MATTE: "warmMatte";
|
|
1045
|
+
readonly TRANSLUCENT_POWDER: "translucentPowder";
|
|
1046
|
+
readonly POWDER: "powder";
|
|
1047
|
+
readonly DK_EDGE: "dkEdge";
|
|
1048
|
+
readonly SOFT_EDGE: "softEdge";
|
|
1049
|
+
readonly CLEAR: "clear";
|
|
1050
|
+
readonly FLAT: "flat";
|
|
1051
|
+
readonly SOFT_METAL: "softmetal";
|
|
1052
|
+
};
|
|
1053
|
+
interface Shape3DOptions {
|
|
1054
|
+
readonly bevelT?: BevelOptions;
|
|
1055
|
+
readonly bevelB?: BevelOptions;
|
|
1056
|
+
readonly extrusionClr?: SolidFillOptions;
|
|
1057
|
+
readonly contourClr?: SolidFillOptions;
|
|
1058
|
+
readonly z?: number;
|
|
1059
|
+
readonly extrusionH?: number;
|
|
1060
|
+
readonly contourW?: number;
|
|
1061
|
+
readonly prstMaterial?: keyof typeof PresetMaterialType;
|
|
617
1062
|
}
|
|
618
|
-
type SolidFillOptions = RgbColorOptions | SchemeColorOptions;
|
|
619
1063
|
//#endregion
|
|
620
1064
|
//#region src/file/drawing/text-wrap/text-wrapping.d.ts
|
|
621
1065
|
declare const TextWrappingType: {
|
|
@@ -759,6 +1203,12 @@ interface WpsShapeCoreOptions {
|
|
|
759
1203
|
readonly children: readonly Paragraph[];
|
|
760
1204
|
readonly nonVisualProperties?: INonVisualShapePropertiesOptions;
|
|
761
1205
|
readonly bodyProperties?: IBodyPropertiesOptions;
|
|
1206
|
+
readonly outline?: OutlineOptions;
|
|
1207
|
+
readonly solidFill?: SolidFillOptions;
|
|
1208
|
+
readonly gradientFill?: GradientFillOptions;
|
|
1209
|
+
readonly noFill?: boolean;
|
|
1210
|
+
readonly effects?: EffectListOptions;
|
|
1211
|
+
readonly shape3d?: Shape3DOptions;
|
|
762
1212
|
}
|
|
763
1213
|
//#endregion
|
|
764
1214
|
//#region src/file/media/data.d.ts
|
|
@@ -791,6 +1241,7 @@ interface CoreMediaData {
|
|
|
791
1241
|
readonly fileName: string;
|
|
792
1242
|
readonly transformation: IMediaDataTransformation;
|
|
793
1243
|
readonly data: Uint8Array;
|
|
1244
|
+
readonly srcRect?: SourceRectangleOptions;
|
|
794
1245
|
}
|
|
795
1246
|
interface RegularMediaData {
|
|
796
1247
|
readonly type: "jpg" | "png" | "gif" | "bmp";
|
|
@@ -813,6 +1264,10 @@ interface WpgMediaData {
|
|
|
813
1264
|
readonly type: "wpg";
|
|
814
1265
|
readonly transformation: IMediaDataTransformation;
|
|
815
1266
|
readonly children: readonly IGroupChildMediaData[];
|
|
1267
|
+
readonly chOff?: IChildOffset;
|
|
1268
|
+
readonly chExt?: IChildExtent;
|
|
1269
|
+
readonly solidFill?: SolidFillOptions;
|
|
1270
|
+
readonly effects?: EffectListOptions;
|
|
816
1271
|
}
|
|
817
1272
|
type IExtendedMediaData = IMediaData | WpsMediaData | WpgMediaData;
|
|
818
1273
|
type IMediaData = (RegularMediaData | SvgMediaData) & CoreMediaData;
|
|
@@ -863,6 +1318,7 @@ interface CoreImageOptions {
|
|
|
863
1318
|
readonly altText?: DocPropertiesOptions;
|
|
864
1319
|
readonly outline?: OutlineOptions;
|
|
865
1320
|
readonly solidFill?: SolidFillOptions;
|
|
1321
|
+
readonly srcRect?: SourceRectangleOptions;
|
|
866
1322
|
}
|
|
867
1323
|
interface RegularImageOptions {
|
|
868
1324
|
readonly type: "jpg" | "png" | "gif" | "bmp";
|
|
@@ -885,8 +1341,6 @@ interface CoreShapeOptions {
|
|
|
885
1341
|
readonly transformation: IMediaTransformation;
|
|
886
1342
|
readonly floating?: IFloating;
|
|
887
1343
|
readonly altText?: DocPropertiesOptions;
|
|
888
|
-
readonly outline?: OutlineOptions;
|
|
889
|
-
readonly solidFill?: SolidFillOptions;
|
|
890
1344
|
}
|
|
891
1345
|
type IWpsShapeOptions = WpsShapeCoreOptions & {
|
|
892
1346
|
readonly type: "wps";
|
|
@@ -1540,16 +1994,16 @@ declare const NumberRestartType: {
|
|
|
1540
1994
|
readonly EACH_SECT: "eachSect";
|
|
1541
1995
|
readonly EACH_PAGE: "eachPage";
|
|
1542
1996
|
};
|
|
1543
|
-
interface
|
|
1997
|
+
interface NumberPropertiesOptions {
|
|
1544
1998
|
readonly formatType?: (typeof NumberFormat)[keyof typeof NumberFormat];
|
|
1545
1999
|
readonly format?: string;
|
|
1546
2000
|
readonly numStart?: number;
|
|
1547
2001
|
readonly numRestart?: (typeof NumberRestartType)[keyof typeof NumberRestartType];
|
|
1548
2002
|
}
|
|
1549
|
-
interface
|
|
2003
|
+
interface FootnotePropertiesOptions extends NumberPropertiesOptions {
|
|
1550
2004
|
readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
|
|
1551
2005
|
}
|
|
1552
|
-
interface
|
|
2006
|
+
interface EndnotePropertiesOptions extends NumberPropertiesOptions {
|
|
1553
2007
|
readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
|
|
1554
2008
|
}
|
|
1555
2009
|
//#endregion
|
|
@@ -1701,8 +2155,8 @@ interface ISectionPropertiesOptionsBase {
|
|
|
1701
2155
|
readonly first?: number;
|
|
1702
2156
|
readonly other?: number;
|
|
1703
2157
|
};
|
|
1704
|
-
readonly footnotePr?:
|
|
1705
|
-
readonly endnotePr?:
|
|
2158
|
+
readonly footnotePr?: FootnotePropertiesOptions;
|
|
2159
|
+
readonly endnotePr?: EndnotePropertiesOptions;
|
|
1706
2160
|
}
|
|
1707
2161
|
type ISectionPropertiesChangeOptions = IChangedAttributesProperties & ISectionPropertiesOptionsBase;
|
|
1708
2162
|
type ISectionPropertiesOptions = {
|
|
@@ -2264,7 +2718,7 @@ declare const TextboxTightWrapType: {
|
|
|
2264
2718
|
readonly FIRST_LINE_ONLY: "firstLineOnly";
|
|
2265
2719
|
readonly LAST_LINE_ONLY: "lastLineOnly";
|
|
2266
2720
|
};
|
|
2267
|
-
interface
|
|
2721
|
+
interface LevelParagraphStylePropertiesOptions {
|
|
2268
2722
|
readonly alignment?: (typeof AlignmentType)[keyof typeof AlignmentType];
|
|
2269
2723
|
readonly thematicBreak?: boolean;
|
|
2270
2724
|
readonly contextualSpacing?: boolean;
|
|
@@ -2285,7 +2739,7 @@ type IParagraphStylePropertiesOptions = {
|
|
|
2285
2739
|
readonly instance?: number;
|
|
2286
2740
|
readonly custom?: boolean;
|
|
2287
2741
|
} | false;
|
|
2288
|
-
} &
|
|
2742
|
+
} & LevelParagraphStylePropertiesOptions;
|
|
2289
2743
|
type IParagraphPropertiesOptionsBase = {
|
|
2290
2744
|
readonly heading?: (typeof HeadingLevel)[keyof typeof HeadingLevel];
|
|
2291
2745
|
readonly bidirectional?: boolean;
|
|
@@ -2408,8 +2862,8 @@ interface ILevelsOptions {
|
|
|
2408
2862
|
readonly suffix?: (typeof LevelSuffix)[keyof typeof LevelSuffix];
|
|
2409
2863
|
readonly isLegalNumberingStyle?: boolean;
|
|
2410
2864
|
readonly style?: {
|
|
2411
|
-
readonly run?:
|
|
2412
|
-
readonly paragraph?:
|
|
2865
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2866
|
+
readonly paragraph?: LevelParagraphStylePropertiesOptions;
|
|
2413
2867
|
};
|
|
2414
2868
|
}
|
|
2415
2869
|
declare class LevelBase extends XmlComponent {
|
|
@@ -2484,13 +2938,13 @@ declare class ParagraphPropertiesDefaults extends XmlComponent {
|
|
|
2484
2938
|
//#endregion
|
|
2485
2939
|
//#region src/file/styles/defaults/run-properties.d.ts
|
|
2486
2940
|
declare class RunPropertiesDefaults extends XmlComponent {
|
|
2487
|
-
constructor(options?:
|
|
2941
|
+
constructor(options?: RunStylePropertiesOptions);
|
|
2488
2942
|
}
|
|
2489
2943
|
//#endregion
|
|
2490
2944
|
//#region src/file/styles/defaults/document-defaults.d.ts
|
|
2491
2945
|
interface IDocumentDefaultsOptions {
|
|
2492
2946
|
readonly paragraph?: IParagraphStylePropertiesOptions;
|
|
2493
|
-
readonly run?:
|
|
2947
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2494
2948
|
}
|
|
2495
2949
|
declare class DocumentDefaults extends XmlComponent {
|
|
2496
2950
|
private readonly runPropertiesDefaults;
|
|
@@ -2522,7 +2976,7 @@ declare class Style extends XmlComponent {
|
|
|
2522
2976
|
//#region src/file/styles/style/paragraph-style.d.ts
|
|
2523
2977
|
type IBaseParagraphStyleOptions = {
|
|
2524
2978
|
readonly paragraph?: IParagraphStylePropertiesOptions;
|
|
2525
|
-
readonly run?:
|
|
2979
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2526
2980
|
} & IStyleOptions;
|
|
2527
2981
|
type IParagraphStyleOptions = {
|
|
2528
2982
|
readonly id: string;
|
|
@@ -2535,7 +2989,7 @@ declare class StyleForParagraph extends Style {
|
|
|
2535
2989
|
//#endregion
|
|
2536
2990
|
//#region src/file/styles/style/character-style.d.ts
|
|
2537
2991
|
type IBaseCharacterStyleOptions = {
|
|
2538
|
-
readonly run?:
|
|
2992
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2539
2993
|
} & IStyleOptions;
|
|
2540
2994
|
type ICharacterStyleOptions = {
|
|
2541
2995
|
readonly id: string;
|
|
@@ -3405,4 +3859,4 @@ declare const patchDetector: ({
|
|
|
3405
3859
|
data
|
|
3406
3860
|
}: PatchDetectorOptions) => Promise<readonly string[]>;
|
|
3407
3861
|
//#endregion
|
|
3408
|
-
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,
|
|
3862
|
+
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 };
|