@sunertech/docx 10.1.8 → 10.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +10255 -10227
- package/dist/index.d.cts +12 -1
- package/dist/index.d.ts +12 -1
- package/dist/index.iife.js +10255 -10227
- package/dist/index.mjs +10255 -10227
- package/dist/index.umd.cjs +10255 -10227
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -805,7 +805,14 @@ export declare class EndnoteReference extends EmptyElement {
|
|
|
805
805
|
|
|
806
806
|
declare type ErrorBarsOptions = {};
|
|
807
807
|
|
|
808
|
-
declare type
|
|
808
|
+
declare type Extension = {
|
|
809
|
+
type: "invertSolidFillFmt";
|
|
810
|
+
shape: IShapePropertiesOptions;
|
|
811
|
+
};
|
|
812
|
+
|
|
813
|
+
declare type ExtensionListOptions = {
|
|
814
|
+
items: Extension[];
|
|
815
|
+
};
|
|
809
816
|
|
|
810
817
|
export declare class ExternalHyperlink extends XmlComponent {
|
|
811
818
|
readonly options: {
|
|
@@ -1843,6 +1850,10 @@ export declare type IShadingAttributesProperties = {
|
|
|
1843
1850
|
|
|
1844
1851
|
declare type IShapePropertiesOptions = {
|
|
1845
1852
|
readonly bwMode?: string;
|
|
1853
|
+
readonly namespace?: {
|
|
1854
|
+
readonly key: string;
|
|
1855
|
+
readonly value: string;
|
|
1856
|
+
};
|
|
1846
1857
|
readonly outline?: OutlineOptions;
|
|
1847
1858
|
readonly transform?: IMediaDataTransformation;
|
|
1848
1859
|
readonly presetGeometry?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -805,7 +805,14 @@ export declare class EndnoteReference extends EmptyElement {
|
|
|
805
805
|
|
|
806
806
|
declare type ErrorBarsOptions = {};
|
|
807
807
|
|
|
808
|
-
declare type
|
|
808
|
+
declare type Extension = {
|
|
809
|
+
type: "invertSolidFillFmt";
|
|
810
|
+
shape: IShapePropertiesOptions;
|
|
811
|
+
};
|
|
812
|
+
|
|
813
|
+
declare type ExtensionListOptions = {
|
|
814
|
+
items: Extension[];
|
|
815
|
+
};
|
|
809
816
|
|
|
810
817
|
export declare class ExternalHyperlink extends XmlComponent {
|
|
811
818
|
readonly options: {
|
|
@@ -1843,6 +1850,10 @@ export declare type IShadingAttributesProperties = {
|
|
|
1843
1850
|
|
|
1844
1851
|
declare type IShapePropertiesOptions = {
|
|
1845
1852
|
readonly bwMode?: string;
|
|
1853
|
+
readonly namespace?: {
|
|
1854
|
+
readonly key: string;
|
|
1855
|
+
readonly value: string;
|
|
1856
|
+
};
|
|
1846
1857
|
readonly outline?: OutlineOptions;
|
|
1847
1858
|
readonly transform?: IMediaDataTransformation;
|
|
1848
1859
|
readonly presetGeometry?: boolean;
|