@office-open/core 0.14.4 → 0.14.6

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.d.mts CHANGED
@@ -17,7 +17,7 @@ interface BaseMediaEntry {
17
17
  data: Uint8Array;
18
18
  type: string;
19
19
  }
20
- declare class Media<T extends BaseMediaEntry> {
20
+ export declare class Media<T extends BaseMediaEntry> {
21
21
  private readonly map;
22
22
  private readonly byContent;
23
23
  private readonly verified;
@@ -37,7 +37,7 @@ interface EmbeddingData {
37
37
  progId?: string;
38
38
  relationshipType?: "oleObject" | "package";
39
39
  }
40
- declare class EmbeddingCollection {
40
+ export declare class EmbeddingCollection {
41
41
  private map;
42
42
  private counter;
43
43
  private cachedArray;
@@ -49,10 +49,10 @@ declare class EmbeddingCollection {
49
49
  //#endregion
50
50
  //#region src/opc/variant-types.d.ts
51
51
  type VariantValue = string | number | boolean | Date;
52
- declare function stringifyVariantValue(value: VariantValue, sourceTag?: string): string;
53
- declare function parseVariantValue(el: Element): VariantValue | undefined;
54
- declare function stringifyStringVector(values: readonly string[]): string;
55
- declare function parseVector(el: Element | undefined): VariantValue[];
52
+ export declare function stringifyVariantValue(value: VariantValue, sourceTag?: string): string;
53
+ export declare function parseVariantValue(el: Element): VariantValue | undefined;
54
+ export declare function stringifyStringVector(values: readonly string[]): string;
55
+ export declare function parseVector(el: Element | undefined): VariantValue[];
56
56
  //#endregion
57
57
  //#region src/opc/app-properties.d.ts
58
58
  interface AppPropertiesOptions {
@@ -89,7 +89,7 @@ interface HeadingPairOptions {
89
89
  count: number;
90
90
  }
91
91
  type AppPropertiesInput = AppPropertiesOptions;
92
- declare const appPropertiesDesc: CustomDescriptor<AppPropertiesInput>;
92
+ export declare const appPropertiesDesc: CustomDescriptor<AppPropertiesInput>;
93
93
  //#endregion
94
94
  //#region src/opc/custom-properties.d.ts
95
95
  interface CustomPropertyOptions {
@@ -100,29 +100,29 @@ interface CustomPropertyOptions {
100
100
  interface CustomPropertiesInput {
101
101
  properties: CustomPropertyOptions[];
102
102
  }
103
- declare const customPropertiesDesc: CustomDescriptor<CustomPropertiesInput>;
103
+ export declare const customPropertiesDesc: CustomDescriptor<CustomPropertiesInput>;
104
104
  //#endregion
105
105
  //#region src/opc/encryption.d.ts
106
106
  interface EncryptedContainerOptions {
107
107
  data: DataType;
108
108
  }
109
- declare function isEncryptedContainer(data: Uint8Array): boolean;
110
- declare function encryptedContainerOutput<T extends OutputType>(file: {
109
+ export declare function isEncryptedContainer(data: Uint8Array): boolean;
110
+ export declare function encryptedContainerOutput<T extends OutputType>(file: {
111
111
  encrypted?: EncryptedContainerOptions;
112
112
  }, type: T, mimeType: string): OutputByType[T] | undefined;
113
- declare function encryptedContainerStream(file: {
113
+ export declare function encryptedContainerStream(file: {
114
114
  encrypted?: EncryptedContainerOptions;
115
115
  }): ReadableStream<Uint8Array> | undefined;
116
- declare function assertEncryptedExclusive(file: {
116
+ export declare function assertEncryptedExclusive(file: {
117
117
  encrypted?: EncryptedContainerOptions;
118
118
  }, hasContent: boolean): void;
119
119
  //#endregion
120
120
  //#region src/util/base64.d.ts
121
- declare function decodeBase64(input: string): Uint8Array;
122
- declare function encodeBase64(bytes: Uint8Array): string;
121
+ export declare function decodeBase64(input: string): Uint8Array;
122
+ export declare function encodeBase64(bytes: Uint8Array): string;
123
123
  //#endregion
124
124
  //#region src/opc/parser.d.ts
125
- declare class ParsedArchive {
125
+ export declare class ParsedArchive {
126
126
  private readonly source;
127
127
  private readonly index;
128
128
  private readonly parts;
@@ -141,10 +141,10 @@ declare class ParsedArchive {
141
141
  keys(prefix?: string): string[];
142
142
  save(): Uint8Array;
143
143
  }
144
- declare function parseArchive(data: Uint8Array): ParsedArchive;
144
+ export declare function parseArchive(data: Uint8Array): ParsedArchive;
145
145
  //#endregion
146
146
  //#region src/opc/namespaces.d.ts
147
- declare const OOXML_CANONICAL_PREFIXES: Readonly<Record<string, string>>;
147
+ export declare const OOXML_CANONICAL_PREFIXES: Readonly<Record<string, string>>;
148
148
  //#endregion
149
149
  //#region src/opc/part-registry.d.ts
150
150
  type PartPresence = {
@@ -166,7 +166,7 @@ interface PackagePartRegistry {
166
166
  parts: readonly PartDefinition[];
167
167
  orphanWhitelist: readonly string[];
168
168
  }
169
- declare const DOCX_PARTS: {
169
+ export declare const DOCX_PARTS: {
170
170
  readonly format: "docx";
171
171
  readonly orphanWhitelist: readonly ["word/media/", "word/fonts/", "word/embeddings/", "word/afchunks/", "customXml/", "_rels/", "word/_rels/", "docProps/", "[Content_Types].xml"];
172
172
  readonly parts: readonly [{
@@ -404,7 +404,7 @@ declare const DOCX_PARTS: {
404
404
  };
405
405
  }];
406
406
  };
407
- declare const PPTX_PARTS: {
407
+ export declare const PPTX_PARTS: {
408
408
  readonly format: "pptx";
409
409
  readonly orphanWhitelist: readonly ["ppt/media/", "ppt/embeddings/", "_rels/", "ppt/_rels/", "ppt/slideMasters/_rels/", "ppt/slideLayouts/_rels/", "ppt/slides/_rels/", "ppt/notesMasters/_rels/", "ppt/notesSlides/_rels/", "ppt/charts/_rels/", "ppt/diagrams/_rels/", "docProps/", "[Content_Types].xml"];
410
410
  readonly parts: readonly [{
@@ -600,7 +600,7 @@ declare const PPTX_PARTS: {
600
600
  };
601
601
  }];
602
602
  };
603
- declare const XLSX_PARTS: {
603
+ export declare const XLSX_PARTS: {
604
604
  readonly format: "xlsx";
605
605
  readonly orphanWhitelist: readonly ["xl/media/", "xl/embeddings/", "_rels/", "xl/_rels/", "xl/worksheets/_rels/", "xl/chartsheets/_rels/", "xl/drawings/_rels/", "xl/pivotTables/_rels/", "xl/pivotCache/_rels/", "xl/externalLinks/_rels/", "docProps/", "[Content_Types].xml"];
606
606
  readonly parts: readonly [{
@@ -823,7 +823,7 @@ declare const XLSX_PARTS: {
823
823
  };
824
824
  }];
825
825
  };
826
- declare const PART_REGISTRIES: Record<PackagePartRegistry["format"], PackagePartRegistry>;
826
+ export declare const PART_REGISTRIES: Record<PackagePartRegistry["format"], PackagePartRegistry>;
827
827
  //#endregion
828
828
  //#region src/opc/opc-consistency.d.ts
829
829
  type OpcSeverity = "error" | "warn";
@@ -834,8 +834,8 @@ interface OpcIssue {
834
834
  part: string;
835
835
  message: string;
836
836
  }
837
- declare function validateOpcConsistency(entries: ReadonlyMap<string, string>, registry: PackagePartRegistry): OpcIssue[];
838
- declare function summarizeOpcIssues(issues: readonly OpcIssue[]): {
837
+ export declare function validateOpcConsistency(entries: ReadonlyMap<string, string>, registry: PackagePartRegistry): OpcIssue[];
838
+ export declare function summarizeOpcIssues(issues: readonly OpcIssue[]): {
839
839
  errors: number;
840
840
  warnings: number;
841
841
  };
@@ -845,7 +845,7 @@ interface ContentTypeOverrideEntry {
845
845
  partName: string;
846
846
  contentType: string;
847
847
  }
848
- declare function buildContentTypeOverrides(registry: PackagePartRegistry, facts: ReadonlyMap<string, boolean | number>): ContentTypeOverrideEntry[];
848
+ export declare function buildContentTypeOverrides(registry: PackagePartRegistry, facts: ReadonlyMap<string, boolean | number>): ContentTypeOverrideEntry[];
849
849
  //#endregion
850
850
  //#region src/opc/content-types-input.d.ts
851
851
  interface ContentTypeDefault {
@@ -860,9 +860,9 @@ interface ContentTypesInput {
860
860
  defaults: ContentTypeDefault[];
861
861
  overrides: ContentTypeOverride[];
862
862
  }
863
- declare const contentTypesDesc: CustomDescriptor<ContentTypesInput>;
863
+ export declare const contentTypesDesc: CustomDescriptor<ContentTypesInput>;
864
864
  type PartContentTypeResolver = (partPath: string) => string | undefined;
865
- declare function resolverFromRegistry(registry: PackagePartRegistry): PartContentTypeResolver;
865
+ export declare function resolverFromRegistry(registry: PackagePartRegistry): PartContentTypeResolver;
866
866
  interface DeriveContentTypesOptions {
867
867
  resolve: PartContentTypeResolver;
868
868
  mediaContentTypes: Readonly<Record<string, string>>;
@@ -874,8 +874,8 @@ interface DeriveContentTypesOptions {
874
874
  source?: ContentTypesInput;
875
875
  verbatimPaths?: ReadonlySet<string>;
876
876
  }
877
- declare function deriveContentTypes(filePaths: Iterable<string>, options: DeriveContentTypesOptions): ContentTypesInput;
878
- declare const IMAGE_MEDIA_CONTENT_TYPES: Record<string, string>;
877
+ export declare function deriveContentTypes(filePaths: Iterable<string>, options: DeriveContentTypesOptions): ContentTypesInput;
878
+ export declare const IMAGE_MEDIA_CONTENT_TYPES: Record<string, string>;
879
879
  interface RawPackagePart {
880
880
  path: string;
881
881
  data: DataType;
@@ -891,7 +891,7 @@ interface FinalizeContentTypesOptions {
891
891
  contentType: string;
892
892
  }>;
893
893
  }
894
- declare function finalizeContentTypes(files: Zippable, options: FinalizeContentTypesOptions, ctx: WriteContext): string;
894
+ export declare function finalizeContentTypes(files: Zippable, options: FinalizeContentTypesOptions, ctx: WriteContext): string;
895
895
  //#endregion
896
896
  //#region src/opc/passthrough.d.ts
897
897
  interface PassthroughPart {
@@ -910,19 +910,19 @@ interface PassthroughResult {
910
910
  parts: PassthroughPart[];
911
911
  relationships: PassthroughRelationship[];
912
912
  }
913
- declare function collectPassthroughParts(archive: ParsedArchive, rebuiltPaths: Iterable<string>): PassthroughResult;
914
- declare function dropDanglingPassthroughRels(files: Zippable, passthroughRelationships: readonly PassthroughRelationship[] | undefined): number;
913
+ export declare function collectPassthroughParts(archive: ParsedArchive, rebuiltPaths: Iterable<string>): PassthroughResult;
914
+ export declare function dropDanglingPassthroughRels(files: Zippable, passthroughRelationships: readonly PassthroughRelationship[] | undefined): number;
915
915
  //#endregion
916
916
  //#region src/table/types.d.ts
917
- interface BaseTableCellOptions {
917
+ export interface BaseTableCellOptions {
918
918
  columnSpan?: number;
919
919
  rowSpan?: number;
920
920
  verticalAlign?: "top" | "center" | "bottom";
921
921
  }
922
- interface BaseTableRowOptions<TCell = BaseTableCellOptions> {
922
+ export interface BaseTableRowOptions<TCell = BaseTableCellOptions> {
923
923
  cells: TCell[];
924
924
  }
925
- interface BaseTableOptions<TRow = BaseTableRowOptions> {
925
+ export interface BaseTableOptions<TRow = BaseTableRowOptions> {
926
926
  rows: TRow[];
927
927
  columnWidths?: (number | PositiveUniversalMeasure)[];
928
928
  firstRow?: boolean;
@@ -934,25 +934,25 @@ interface BaseTableOptions<TRow = BaseTableRowOptions> {
934
934
  }
935
935
  //#endregion
936
936
  //#region src/picture/types.d.ts
937
- interface BasePictureOptions extends NonVisualDrawingPropertiesOptions {
937
+ export interface BasePictureOptions extends NonVisualDrawingPropertiesOptions {
938
938
  data?: DataType;
939
939
  sourceUrl?: string;
940
940
  type: string;
941
941
  }
942
942
  //#endregion
943
943
  //#region src/connector/types.d.ts
944
- interface BaseConnectorOptions extends NonVisualDrawingPropertiesOptions {
944
+ export interface BaseConnectorOptions extends NonVisualDrawingPropertiesOptions {
945
945
  locking?: ConnectorLockingOptions;
946
946
  startConnection?: EndpointConnectionOptions;
947
947
  endConnection?: EndpointConnectionOptions;
948
948
  }
949
- declare function pickConnectorBase(opts: BaseConnectorOptions | undefined): Partial<BaseConnectorOptions>;
949
+ export declare function pickConnectorBase(opts: BaseConnectorOptions | undefined): Partial<BaseConnectorOptions>;
950
950
  //#endregion
951
951
  //#region src/group/types.d.ts
952
- interface BaseGroupOptions extends NonVisualDrawingPropertiesOptions {
952
+ export interface BaseGroupOptions extends NonVisualDrawingPropertiesOptions {
953
953
  locking?: GroupLockingOptions | null;
954
954
  }
955
- declare function pickGroupBase(opts: BaseGroupOptions | undefined): Partial<BaseGroupOptions>;
955
+ export declare function pickGroupBase(opts: BaseGroupOptions | undefined): Partial<BaseGroupOptions>;
956
956
  //#endregion
957
- export { AbsoluteSizeAnchorOptions, type AdjustListOptions, type AdjustOptions, AlgorithmOptions, AlgorithmParameterOptions, AlgorithmParameterType, AlgorithmType, type AnimateOneByOne, type AnimateOneByOneOptions, type AnimationLevel, type AnimationLevelOptions, type AppPropertiesInput, type AppPropertiesOptions, ArgbHexColor, AutoNumberFormat, AxisCrossBetween, AxisCrosses, AxisKind, AxisLabelAlignment, AxisNumberFormatOptions, AxisOptions, AxisOrientation, AxisPosition, AxisScalingOptions, AxisTickLabelPosition, AxisTickMark, type BackdropOptions, BandFormatOptions, BarShape, Base64, BaseConnectorOptions, BaseGroupOptions, type BaseMediaEntry, type BasePatchOptions, BasePictureOptions, BaseTableCellOptions, BaseTableOptions, BaseTableRowOptions, type BevelOptions, type BevelPreset, type BlackWhiteMode, BlendMode, type BlipCompression, BlipDescriptorOptions, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BodyPropertiesOptions, BubbleSeriesData, BuiltInDisplayUnit, BulletAutoNumOptions, BulletCharOptions, BulletNoneOption, BulletOptions, BulletPictureOptions, BulletStyleOptions, COLOR_CATEGORIES, type CameraOptions, Cell3DOptions, ChartCollection, ChartData, ChartGrouping, ChartHeaderFooterOptions, ChartLinesOptions, ChartPageMarginsOptions, ChartPageSetupOptions, ChartPictureOptions, ChartPivotFormatOptions, ChartSeriesCommon, ChartSeriesData, ChartSpaceOptions, ChartStyle2010Options, ChartTitleOptions, ChartType, ChartUserShapesOptions, ChildOrder, ChooseOptions, ColorDefinitionOptions, type ColorListOptions, type ColorMappingOptions, type ColorMethod, type ColorSchemeIndex, type ColorSchemeOptions, type ColorStyleLabelOptions, type ColorTransformOptions, type ColorsDefinitionHeaderListOptions, type ColorsDefinitionHeaderOptions, type CompileFn, type CompoundLine, type CompressionOptions, ConditionFunction, ConditionOperator, type ConnectionSite, type ConnectorLockingOptions, ConstraintOperator, ConstraintOptions, ConstraintRelationship, ConstraintType, type ContentPartLockingOptions, type ContentTypeDefault, type ContentTypeOverride, type ContentTypeOverrideEntry, type ContentTypesInput, type CorePropertiesOptions, type CustomColorOptions, type CustomDescriptor, type CustomGeometryOptions, type CustomPropertiesInput, type CustomPropertyOptions, DEFAULT_COLORS, DEFAULT_COLOR_MAPPING, DEFAULT_DRAWING_XML, DEFAULT_OUTLINE_WIDTH, DEFAULT_SHADOW_ALPHA, DEFAULT_SHADOW_BLUR_RADIUS, DEFAULT_SHADOW_DIRECTION, DEFAULT_SHADOW_DISTANCE, DEFAULT_TEXT_STYLES, DOCX_NS, DOCX_PARTS, type DashStop, DataLabelOptions, DataLabelPosition, DataLabelsOptions, DataModelOptions, DataPointOptions, DataTableOptions, DataType, DateTime, type DefaultShapeDefinitionOptions, type DefaultShapeStyleOptions, type DeriveContentTypesOptions, type DescriptorFieldSpec, type DiagramCategoryOptions, type DiagramDescriptionOptions, DiagramDirection, type DiagramExtensionListOptions, type DiagramExtensionOptions, DiagramIterationOptions, type DiagramNameOptions, type DiagramRelationshipIdsOptions, type DiagramStyleOptions, type DiagramTextPropertiesOptions, DisplayBlanksAs, DisplayUnitsOptions, EXT_ATTR, type EffectContainer, type EffectDagOptions, type EffectExtent, type EffectListOptions, type EffectStyleOptions, EmbeddingBinary, EmbeddingCollection, type EmbeddingData, type EncryptedContainerOptions, type EndpointConnectionOptions, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, ExternalDataOptions, type ExtraColorSchemeOptions, FIELD_SPECS, type FieldConsistencyReport, type FillOptions, type FillOverlayEffectOptions, type FinalizeContentTypesOptions, FlatTextOptions, FontCollectionIndex, type FontCollectionOptions, type FontReferenceOptions, type FontSchemeOptions, ForEachOptions, type FormatSchemeOptions, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, GroupShapePropertiesOptions, type GroupTransform2DOptions, Guid, type HeadingPairOptions, HexColor, HexColorOrAuto, type HierBranch, type HierBranchOptions, type HslColorOptions, type HueDirection, type HyperlinkTarget, IMAGE_MEDIA_CONTENT_TYPES, IdFormat, ImageFileType, type InnerShadowEffectOptions, LAYOUT_CATEGORIES, type LayoutDefinitionHeaderListOptions, type LayoutDefinitionHeaderOptions, LayoutDefinitionOptions, LayoutMode, LayoutNodeChild, LayoutNodeOptions, LayoutRuleOptions, LayoutShapeOptions, LayoutTarget, LegendEntryOptions, LegendPosition, LengthUnit, type LightRigOptions, type LineCap, type LineEndLength, type LineEndOptions, type LineEndType, type LineEndWidth, type LineJoin, type LinearShadeOptions, LongHexNumber, ManualLayoutOptions, MarkerOptions, MarkerSymbol, type MaxChildrenOptions, Media, MediaBinary, ModelConnectionOptions, ModelPointOptions, Mutable, type NonVisualContentPartPropertiesOptions, type NonVisualDrawingPropertiesOptions, NormalAutofitOptions, OOXML_CANONICAL_PREFIXES, type ObjectDefaultsOptions, OfPieType, type OnOffStyleType, OoxmlMimeType, type OpcCode, type OpcIssue, type OpcSeverity, type OrderViolation, type OrgChartOptions, OtherwiseOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type OutputByType, type OutputType, PART_REGISTRIES, PPTX_NS, PPTX_PARTS, type PackagePartRegistry, type Packer, type PackerOptions, PageSetupOrientation, Panose, ParagraphDescriptorOptions, ParsedArchive, type PartContentTypeResolver, type PartDefinition, type PartPresence, type PassthroughPart, type PassthroughRelationship, type PassthroughResult, type PathCommand, type PathFillMode, type PathOptions, type PathShade, type PathShadeOptions, type PatternFillOptions, type PenAlignment, Percentage, PictureFormat, type PictureLockingOptions, PivotSourceOptions, type PlaceholderDelimiters, type Point3D, PointPropertySetOptions, PositivePercentage, PositiveUniversalMeasure, type PreferredChildrenOptions, type PresentationLayoutVariablesOptions, PresetColor, type PresetColorOptions, type PresetDash, type PresetGeometryOptions, type PresetMaterial, type PresetPattern, type PresetShadow, type PresetShadowEffectOptions, PresetTextShapeOptions, PrintSettingsOptions, ProtectionOptions, RELATIONSHIP_TYPES, RadarStyle, type RawPackagePart, type ReadContext, type RectAlignment, type ReflectionEffectOptions, type RelationshipType, Relationships, RelativeMeasure, type RelativeRect, RelativeSizeAnchorOptions, type RenderedParagraphNode, type ReplacerOptions, ResizeHandles, type RgbColorOptions, type RoundTripResult, RunFont, STYLE_CATEGORIES, SampleDataOptions, type ScRgbColorOptions, ScatterSeriesData, type Scene3DOptions, SchemeColor, type SchemeColorOptions, SecondaryChartGroupOptions, type Shape3DOptions, type ShapeLockingOptions, ShapePropertiesExtensionOptions, ShapePropertiesOptions, type ShapeType, ShortHexNumber, SizeRepresents, SmartArtCollection, SmartArtData, SmartArtRawParts, SmartArtRelOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, SplitType, StrikeStyle, type StyleDefinitionHeaderListOptions, type StyleDefinitionHeaderOptions, StyleDefinitionOptions, StyleLabelOptions, type StyleMatrixIndex, type StyleMatrixReferenceOptions, type SupplementalFontOptions, SurfaceOptions, SystemColor, type SystemColorOptions, TabStopOptions, type TableBackgroundStyleOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TableFontReferenceOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, TargetModeType, TextAlignment, TextBodyOptions, TextBodyWrapping, TextBreakOptions, TextCapitalization, TextCharacterPropertiesOptions, TextFieldOptions, TextFont, type TextFontOptions, TextHorzOverflow, TextHyperlinkOptions, TextListStyleOptions, TextParagraphPropertiesOptions, TextProperties3DOptions, TextRunOptions, TextShapePreset, TextStylesOptions, TextTabAlignment, TextVertOverflow, TextVertical, ThemeColor, ThemeFont, type ThemeManagerOptions, type ThemeOptions, type ThemeOverrideOptions, type ThemeableLineStyleOptions, type TileAlignment, type TileFlipMode, type TileOptions, TimeUnit, ToUint8ArrayOptions, TokenNotFoundError, type Transform2DOptions, TreeNode, TrendlineLabelOptions, TrendlineOptions, TrendlineType, UcharHexNumber, UnderlineStyle, UniqueNumericIdCreator, UniversalMeasure, UnsignedShortHex, UserShapeConnectorOptions, UserShapeExtentOptions, UserShapeGraphicFrameOptions, UserShapeGroupOptions, UserShapeMarkerOptions, UserShapeObjectOptions, UserShapePictureOptions, UserShapeShapeOptions, UserShapesOptions, VML_CORE_ATTRS, VML_OFFICE_CORE_ATTRS, VML_OFFICE_SHAPE_ATTRS, VML_SHAPE_ATTRS, VariableListOptions, type VariantValue, type Vector3D, VerticalAnchor, View3DOptions, VmlAnchorLockOptions, VmlArcOptions, VmlAttrKind, VmlAttrSpec, VmlBackgroundOptions, VmlBaseShapeFields, VmlBlackWhiteMode, VmlBorderOptions, VmlBorderType, VmlCalloutAngle, VmlCalloutOptions, VmlClientDataOptions, VmlClientObjectType, VmlClipPathOptions, VmlColor, VmlColorMenuOptions, VmlColorMode, VmlColorMruOptions, VmlComplexOptions, VmlConnectType, VmlConnectorType, VmlCoreAttributes, VmlCurveOptions, VmlDiagramLayout, VmlDiagramOptions, VmlDiagramRelationOptions, VmlEditAs, VmlEquationXmlOptions, VmlExtAttribute, VmlExtensionMode, VmlExtrusionOptions, VmlExtrusionPlane, VmlExtrusionRender, VmlExtrusionType, VmlFillMethod, VmlFillOptions, VmlFillType, VmlFormulasOptions, VmlGroupOptions, VmlHandleOptions, VmlHandlesOptions, VmlHorizontalAnchor, VmlHorizontalRuleAlign, VmlIdMapOptions, VmlImageAspect, VmlImageDataOptions, VmlImageOptions, VmlInkOptions, VmlInsetMode, VmlIsCommentOptions, VmlLineOptions, VmlLockOptions, VmlOfficeCoreAttributes, VmlOfficeFillOptions, VmlOfficeFillType, VmlOfficeShapeAttributes, VmlOleDrawAspect, VmlOleObjectOptions, VmlOleObjectType, VmlOleUpdateMode, VmlOvalOptions, VmlPathOptions, VmlPolylineOptions, VmlRectOptions, VmlRegroupEntryOptions, VmlRegroupTableOptions, VmlRoundRectOptions, VmlRuleHow, VmlRuleOptions, VmlRuleProxyOptions, VmlRuleType, VmlRulesOptions, VmlScreenSize, VmlShadowOptions, VmlShadowType, VmlShapeAttributes, VmlShapeChild, VmlShapeDefaultsOptions, VmlShapeLayoutOptions, VmlShapeOptions, VmlShapeStyle, VmlShapetypeOptions, VmlSignatureLineOptions, VmlSkewOptions, VmlStrokeArrowLength, VmlStrokeArrowType, VmlStrokeArrowWidth, VmlStrokeChildOptions, VmlStrokeEndCap, VmlStrokeJoinStyle, VmlStrokeLineStyle, VmlStrokeOptions, VmlTextDataOptions, VmlTextPathOptions, VmlTextPathStyle, VmlTextboxOptions, VmlTrueFalse, VmlTrueFalseBlank, VmlVerticalAnchor, VmlWrapOptions, VmlWrapSide, VmlWrapType, WhenOptions, type WriteContext, XLSX_PARTS, type XmlNamespaceOptions, type XmlifyedFile, XmlifyedFileEntry, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, type ZipOptions, type ZipPartSink, ZipStreamWriter, type Zippable, addBinaryFile, addModelBinaries, addSmartArtRelationships, appPropertiesDesc, appendContentType, appendOverride, appendRelationship, applyCorePropertiesOverride, assertEncryptedExclusive, bevelDesc, blipDesc, blipFillDesc, bodyPropertiesDesc, buildContentTypeOverrides, buildCorePropertiesXmlString, buildFill, buildHyperlinkElement, buildRootRelationships, buildThemeXml, buildUserShapesData, calculateEffectExtent, cell3DDesc, chartSpaceDesc, checkOrder, collectPassthroughParts, collectPlaceholderKeys, colorsDefDesc, compileMapping, connectorLockingDesc, contentTypesDesc, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertEmuToTwip, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPointsToTwip, convertToEmu, convertToInch, convertToPt, convertToTwip, convertTwipToEmu, convertUniversalMeasureToEmu, convertUniversalMeasureToInch, convertUniversalMeasureToPt, convertUniversalMeasureToTwip, createAdjust, createAdjustList, createAnimateOneByOne, createAnimationLevel, createBevel, createBlip, createBlipEffects, createBlipFill, createBodyProperties, createBottomBevel, createColorElement, createColorTransforms, createColorsDefinitionHeader, createColorsDefinitionHeaderList, createConnectorLocking, createContentPartLocking, createCustomDash, createCustomGeometry, createDataModel, createDiagramExtensionList, createDiagramRelationshipIds, createDiagramShape3D, createDiagramStyle, createDiagramTextProperties, createEffectColorList, createEffectDag, createEffectList, createExtensionList, createFillColorList, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefinitionHeader, createLayoutDefinitionHeaderList, createLineColorList, createLineEnd, createMaxChildren, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPacker, createPatternFill, createPictureLocking, createPreferredChildren, createPresentationLayoutVariables, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefinitionHeader, createStyleDefinitionHeaderList, createStyleLabel, createSystemColor, createTableStyle, createTableStyleList, createTextEffectColorList, createTextElementContents, createTextFillColorList, createTextLineColorList, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTraverser, createZipStream, customGeometryDesc, customPropertiesDesc, dateTimeValue, decimalNumber, decodeBase64, definitionId, deriveContentTypes, derivePasswordHash, diagramExtensionListDesc, diagramRelationshipIdsDesc, diagramStyleDesc, diffTagSets, dropDanglingPassthroughRels, effectListDesc, eighthPointMeasureValue, emitAngle, emitColorChoice, emitFillXml, emitPercent, encodeBase64, encryptedContainerOutput, encryptedContainerStream, extUriMatches, extractBlipFillMedia, fillDesc, finalizeContentTypes, findAndReplaceImagePlaceholders, findFieldSpec, findFillChild, formatId, getAudioRefs, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getOleRefs, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupShapePropertiesDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, imageTypeFromPath, invertMap, isBase64DataURL, isEncryptedContainer, isPlainRgbColor, layoutDefDesc, levelForMediaName, longHexNumber, mapOptional, measurementOrPercentValue, nextNumericId, nextVmlShapeId, optionalRelsPart, outlineDesc, paragraphDesc, parse, parseAngle, parseArchive, parseBodyProperties, parseColorChoice, parseColorChoiceElement, parseColorDefinition, parseColorMapping, parseCorePropsElement, parseDataModelOptions, parseEndpointConnection, parseLayoutDefinition, parseNonVisualContentPartProperties, parseNonVisualDrawingProperties, parseOnOff, parsePercent, parsePercentAttr, parseShapeStyle, parseStyleDefinition, parseTableStyle, parseTableStyleList, parseTextStyles, parseUniversalMeasure, parseVariantValue, parseVector, parseVmlAnchorLock, parseVmlArc, parseVmlAttributes, parseVmlBackground, parseVmlBorder, parseVmlCallout, parseVmlClientData, parseVmlClipPath, parseVmlColorMenu, parseVmlColorMru, parseVmlComplex, parseVmlCurve, parseVmlDiagram, parseVmlEquationXml, parseVmlExtrusion, parseVmlFill, parseVmlFormulas, parseVmlGroup, parseVmlHandles, parseVmlImage, parseVmlImageData, parseVmlInk, parseVmlIsComment, parseVmlLine, parseVmlLock, parseVmlOfficeFill, parseVmlOleObject, parseVmlOval, parseVmlPath, parseVmlPolyline, parseVmlRect, parseVmlRoundRect, parseVmlShadow, parseVmlShape, parseVmlShapeChild, parseVmlShapeDefaults, parseVmlShapeLayout, parseVmlShapeStyle, parseVmlShapetype, parseVmlSignatureLine, parseVmlSkew, parseVmlStroke, parseVmlStyle, parseVmlTextData, parseVmlTextPath, parseVmlTextbox, parseVmlTrueFalse, parseVmlTrueFalseBlank, parseVmlWrap, partPathToRelsPath, patchSpaceAttribute, patternFillDesc, percentageValue, pickConnectorBase, pickGroupBase, pickNonVisualDrawingProperties, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presentationLayoutVariablesDesc, presetColorDesc, presetGeometryDesc, randomBytes, readHyperlink, readParagraphProperties, registerHyperlink, removeOverride, replaceAllPlaceholders, replaceAudioPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImageLinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceOleLinkPlaceholders, replaceOlePlaceholders, replacePlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, resolveRelationshipTarget, resolverFromRegistry, rgbColorDesc, roundTripFields, runPropertiesDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shapePropertiesDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyBlipEffects, stringifyColorChoice, stringifyColorDefinition, stringifyColorDefinitionPart, stringifyColorMapping, stringifyConnection, stringifyDataModel, stringifyDataModelOptions, stringifyEndpointConnection, stringifyLayoutDefinition, stringifyLayoutDefinitionPart, stringifyLineProperties, stringifyNonVisualContentPartProperties, stringifyNonVisualDrawingProperties, stringifyParagraphPropertiesElement, stringifyPoint, stringifyPresetGeometry, stringifyRunProperties, stringifyShapeStyle, stringifyStretch, stringifyStringVector, stringifyStyleDefinition, stringifyStyleDefinitionPart, stringifyTextListStyleTag, stringifyTextRun, stringifyTextStyles, stringifyTransPoint, stringifyVariantValue, stringifyVmlAnchorLock, stringifyVmlArc, stringifyVmlAttributes, stringifyVmlBackground, stringifyVmlBorder, stringifyVmlCallout, stringifyVmlClientData, stringifyVmlClipPath, stringifyVmlColorMenu, stringifyVmlColorMru, stringifyVmlComplex, stringifyVmlCurve, stringifyVmlDiagram, stringifyVmlEquationXml, stringifyVmlExtrusion, stringifyVmlFill, stringifyVmlFormulas, stringifyVmlGroup, stringifyVmlHandles, stringifyVmlImage, stringifyVmlImageData, stringifyVmlInk, stringifyVmlIsComment, stringifyVmlLine, stringifyVmlLock, stringifyVmlOfficeFill, stringifyVmlOleObject, stringifyVmlOval, stringifyVmlPath, stringifyVmlPolyline, stringifyVmlRect, stringifyVmlRoundRect, stringifyVmlShadow, stringifyVmlShape, stringifyVmlShapeChild, stringifyVmlShapeDefaults, stringifyVmlShapeLayout, stringifyVmlShapetype, stringifyVmlSignatureLine, stringifyVmlSkew, stringifyVmlStroke, stringifyVmlStyle, stringifyVmlTextData, stringifyVmlTextPath, stringifyVmlTextbox, stringifyVmlTrueFalse, stringifyVmlTrueFalseBlank, stringifyVmlWrap, stripColorHashPrefix, styleDefDesc, summarizeOpcIssues, systemColorDesc, textBodyDesc, textListStyleDesc, textRunDesc, textStylesDesc, themeDesc, themeManagerDesc, themeOverrideDesc, tileDesc, toJson, toUint8Array, toUint8ArrayAsync, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, userShapesDesc, validateOpcConsistency, withDiagramNamespaces, xsdAnimCalcMode, xsdAnimClass, xsdAnimLevel, xsdAnimValueType, xsdAnimationDgmBuild, xsdAxisCrossBetween, xsdAxisCrosses, xsdAxisLabelAlignment, xsdAxisOrientation, xsdAxisPosition, xsdBlendMode, xsdChartBuild, xsdComments, xsdCompoundLine, xsdConsolidateFunction, xsdDataLabelPosition, xsdDiagramBuild, xsdDiagramDirection, xsdEffectContainer, xsdErrorValueType, xsdFontAlignment, xsdHierBranch, xsdHueDirection, xsdIterateType, xsdJcAlignment, xsdLegendPosition, xsdLightRigDirection, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdMathStyle, xsdOrient, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPlaceholderType, xsdPresetShadow, xsdRectAlignment, xsdResizeHandles, xsdShadingPattern, xsdSizeRepresents, xsdSlideLayoutType, xsdSplitType, xsdStrikeStyle, xsdTableWidthType, xsdTextAlign, xsdTextAnchor, xsdTextBuild, xsdTextCaps, xsdTextTabAlignment, xsdTextVerticalType, xsdTotalsRowFunction, xsdTrendlineType, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSync, zipSyncAndConvert };
957
+ export { AbsoluteSizeAnchorOptions, type AdjustListOptions, type AdjustOptions, AlgorithmOptions, AlgorithmParameterOptions, AlgorithmParameterType, AlgorithmType, type AnimateOneByOne, type AnimateOneByOneOptions, type AnimationLevel, type AnimationLevelOptions, type AppPropertiesInput, type AppPropertiesOptions, ArgbHexColor, AutoNumberFormat, AxisCrossBetween, AxisCrosses, AxisKind, AxisLabelAlignment, AxisNumberFormatOptions, AxisOptions, AxisOrientation, AxisPosition, AxisScalingOptions, AxisTickLabelPosition, AxisTickMark, type BackdropOptions, BandFormatOptions, BarShape, Base64, type BaseMediaEntry, type BasePatchOptions, type BevelOptions, type BevelPreset, type BlackWhiteMode, BlendMode, type BlipCompression, BlipDescriptorOptions, type BlipEffectsOptions, type BlipFillConfigOptions, type BlipFillMediaData, type BlipFillOptions, type BlipOptions, type BlurEffectOptions, BodyPropertiesOptions, BubbleSeriesData, BuiltInDisplayUnit, BulletAutoNumOptions, BulletCharOptions, BulletNoneOption, BulletOptions, BulletPictureOptions, BulletStyleOptions, COLOR_CATEGORIES, type CameraOptions, Cell3DOptions, ChartCollection, ChartData, ChartGrouping, ChartHeaderFooterOptions, ChartLinesOptions, ChartPageMarginsOptions, ChartPageSetupOptions, ChartPictureOptions, ChartPivotFormatOptions, ChartSeriesCommon, ChartSeriesData, ChartSpaceOptions, ChartStyle2010Options, ChartTitleOptions, ChartType, ChartUserShapesOptions, ChildOrder, ChooseOptions, ColorDefinitionOptions, type ColorListOptions, type ColorMappingOptions, type ColorMethod, type ColorSchemeIndex, type ColorSchemeOptions, type ColorStyleLabelOptions, type ColorTransformOptions, type ColorsDefinitionHeaderListOptions, type ColorsDefinitionHeaderOptions, type CompileFn, type CompoundLine, type CompressionOptions, ConditionFunction, ConditionOperator, type ConnectionSite, type ConnectorLockingOptions, ConstraintOperator, ConstraintOptions, ConstraintRelationship, ConstraintType, type ContentPartLockingOptions, type ContentTypeDefault, type ContentTypeOverride, type ContentTypeOverrideEntry, type ContentTypesInput, type CorePropertiesOptions, type CustomColorOptions, type CustomDescriptor, type CustomGeometryOptions, type CustomPropertiesInput, type CustomPropertyOptions, DEFAULT_COLORS, DEFAULT_COLOR_MAPPING, DEFAULT_DRAWING_XML, DEFAULT_OUTLINE_WIDTH, DEFAULT_SHADOW_ALPHA, DEFAULT_SHADOW_BLUR_RADIUS, DEFAULT_SHADOW_DIRECTION, DEFAULT_SHADOW_DISTANCE, DEFAULT_TEXT_STYLES, DOCX_NS, type DashStop, DataLabelOptions, DataLabelPosition, DataLabelsOptions, DataModelOptions, DataPointOptions, DataTableOptions, DataType, DateTime, type DefaultShapeDefinitionOptions, type DefaultShapeStyleOptions, type DeriveContentTypesOptions, type DescriptorFieldSpec, type DiagramCategoryOptions, type DiagramDescriptionOptions, DiagramDirection, type DiagramExtensionListOptions, type DiagramExtensionOptions, DiagramIterationOptions, type DiagramNameOptions, type DiagramRelationshipIdsOptions, type DiagramStyleOptions, type DiagramTextPropertiesOptions, DisplayBlanksAs, DisplayUnitsOptions, EXT_ATTR, type EffectContainer, type EffectDagOptions, type EffectExtent, type EffectListOptions, type EffectStyleOptions, EmbeddingBinary, type EmbeddingData, type EncryptedContainerOptions, type EndpointConnectionOptions, ErrorBarDirection, ErrorBarOptions, ErrorBarType, ErrorValueType, ExternalDataOptions, type ExtraColorSchemeOptions, FIELD_SPECS, type FieldConsistencyReport, type FillOptions, type FillOverlayEffectOptions, type FinalizeContentTypesOptions, FlatTextOptions, FontCollectionIndex, type FontCollectionOptions, type FontReferenceOptions, type FontSchemeOptions, ForEachOptions, type FormatSchemeOptions, type GeomRect, type GeometryGuide, type GlowEffectOptions, type GradientFillOptions, type GradientShadeOptions, type GradientStopOptions, type GraphicFrameLockingOptions, type GroupLockingOptions, GroupShapePropertiesOptions, type GroupTransform2DOptions, Guid, type HeadingPairOptions, HexColor, HexColorOrAuto, type HierBranch, type HierBranchOptions, type HslColorOptions, type HueDirection, type HyperlinkTarget, IdFormat, ImageFileType, type InnerShadowEffectOptions, LAYOUT_CATEGORIES, type LayoutDefinitionHeaderListOptions, type LayoutDefinitionHeaderOptions, LayoutDefinitionOptions, LayoutMode, LayoutNodeChild, LayoutNodeOptions, LayoutRuleOptions, LayoutShapeOptions, LayoutTarget, LegendEntryOptions, LegendPosition, LengthUnit, type LightRigOptions, type LineCap, type LineEndLength, type LineEndOptions, type LineEndType, type LineEndWidth, type LineJoin, type LinearShadeOptions, LongHexNumber, ManualLayoutOptions, MarkerOptions, MarkerSymbol, type MaxChildrenOptions, MediaBinary, ModelConnectionOptions, ModelPointOptions, Mutable, type NonVisualContentPartPropertiesOptions, type NonVisualDrawingPropertiesOptions, NormalAutofitOptions, type ObjectDefaultsOptions, OfPieType, type OnOffStyleType, OoxmlMimeType, type OpcCode, type OpcIssue, type OpcSeverity, type OrderViolation, type OrgChartOptions, OtherwiseOptions, type OuterShadowEffectOptions, type OutlineFillProperties, type OutlineOptions, type OutputByType, type OutputType, PPTX_NS, type PackagePartRegistry, type Packer, type PackerOptions, PageSetupOrientation, Panose, ParagraphDescriptorOptions, type PartContentTypeResolver, type PartDefinition, type PartPresence, type PassthroughPart, type PassthroughRelationship, type PassthroughResult, type PathCommand, type PathFillMode, type PathOptions, type PathShade, type PathShadeOptions, type PatternFillOptions, type PenAlignment, Percentage, PictureFormat, type PictureLockingOptions, PivotSourceOptions, type PlaceholderDelimiters, type Point3D, PointPropertySetOptions, PositivePercentage, PositiveUniversalMeasure, type PreferredChildrenOptions, type PresentationLayoutVariablesOptions, PresetColor, type PresetColorOptions, type PresetDash, type PresetGeometryOptions, type PresetMaterial, type PresetPattern, type PresetShadow, type PresetShadowEffectOptions, PresetTextShapeOptions, PrintSettingsOptions, ProtectionOptions, RELATIONSHIP_TYPES, RadarStyle, type RawPackagePart, type ReadContext, type RectAlignment, type ReflectionEffectOptions, type RelationshipType, Relationships, RelativeMeasure, type RelativeRect, RelativeSizeAnchorOptions, type RenderedParagraphNode, type ReplacerOptions, ResizeHandles, type RgbColorOptions, type RoundTripResult, RunFont, STYLE_CATEGORIES, SampleDataOptions, type ScRgbColorOptions, ScatterSeriesData, type Scene3DOptions, SchemeColor, type SchemeColorOptions, SecondaryChartGroupOptions, type Shape3DOptions, type ShapeLockingOptions, ShapePropertiesExtensionOptions, ShapePropertiesOptions, type ShapeType, ShortHexNumber, SizeRepresents, SmartArtCollection, SmartArtData, SmartArtRawParts, SmartArtRelOptions, type SolidFillOptions, type SourceRectangleOptions, type SphereCoords, SplitType, StrikeStyle, type StyleDefinitionHeaderListOptions, type StyleDefinitionHeaderOptions, StyleDefinitionOptions, StyleLabelOptions, type StyleMatrixIndex, type StyleMatrixReferenceOptions, type SupplementalFontOptions, SurfaceOptions, SystemColor, type SystemColorOptions, TabStopOptions, type TableBackgroundStyleOptions, type TableCellBorderOptions, type TableCellStyleOptions, type TableFontReferenceOptions, type TablePartStyleOptions, type TableStyleListOptions, type TableStyleOptions, type TableStyleRegion, type TableTextStyleOptions, TargetModeType, TextAlignment, TextBodyOptions, TextBodyWrapping, TextBreakOptions, TextCapitalization, TextCharacterPropertiesOptions, TextFieldOptions, TextFont, type TextFontOptions, TextHorzOverflow, TextHyperlinkOptions, TextListStyleOptions, TextParagraphPropertiesOptions, TextProperties3DOptions, TextRunOptions, TextShapePreset, TextStylesOptions, TextTabAlignment, TextVertOverflow, TextVertical, ThemeColor, ThemeFont, type ThemeManagerOptions, type ThemeOptions, type ThemeOverrideOptions, type ThemeableLineStyleOptions, type TileAlignment, type TileFlipMode, type TileOptions, TimeUnit, ToUint8ArrayOptions, TokenNotFoundError, type Transform2DOptions, TreeNode, TrendlineLabelOptions, TrendlineOptions, TrendlineType, UcharHexNumber, UnderlineStyle, UniqueNumericIdCreator, UniversalMeasure, UnsignedShortHex, UserShapeConnectorOptions, UserShapeExtentOptions, UserShapeGraphicFrameOptions, UserShapeGroupOptions, UserShapeMarkerOptions, UserShapeObjectOptions, UserShapePictureOptions, UserShapeShapeOptions, UserShapesOptions, VML_CORE_ATTRS, VML_OFFICE_CORE_ATTRS, VML_OFFICE_SHAPE_ATTRS, VML_SHAPE_ATTRS, VariableListOptions, type VariantValue, type Vector3D, VerticalAnchor, View3DOptions, VmlAnchorLockOptions, VmlArcOptions, VmlAttrKind, VmlAttrSpec, VmlBackgroundOptions, VmlBaseShapeFields, VmlBlackWhiteMode, VmlBorderOptions, VmlBorderType, VmlCalloutAngle, VmlCalloutOptions, VmlClientDataOptions, VmlClientObjectType, VmlClipPathOptions, VmlColor, VmlColorMenuOptions, VmlColorMode, VmlColorMruOptions, VmlComplexOptions, VmlConnectType, VmlConnectorType, VmlCoreAttributes, VmlCurveOptions, VmlDiagramLayout, VmlDiagramOptions, VmlDiagramRelationOptions, VmlEditAs, VmlEquationXmlOptions, VmlExtAttribute, VmlExtensionMode, VmlExtrusionOptions, VmlExtrusionPlane, VmlExtrusionRender, VmlExtrusionType, VmlFillMethod, VmlFillOptions, VmlFillType, VmlFormulasOptions, VmlGroupOptions, VmlHandleOptions, VmlHandlesOptions, VmlHorizontalAnchor, VmlHorizontalRuleAlign, VmlIdMapOptions, VmlImageAspect, VmlImageDataOptions, VmlImageOptions, VmlInkOptions, VmlInsetMode, VmlIsCommentOptions, VmlLineOptions, VmlLockOptions, VmlOfficeCoreAttributes, VmlOfficeFillOptions, VmlOfficeFillType, VmlOfficeShapeAttributes, VmlOleDrawAspect, VmlOleObjectOptions, VmlOleObjectType, VmlOleUpdateMode, VmlOvalOptions, VmlPathOptions, VmlPolylineOptions, VmlRectOptions, VmlRegroupEntryOptions, VmlRegroupTableOptions, VmlRoundRectOptions, VmlRuleHow, VmlRuleOptions, VmlRuleProxyOptions, VmlRuleType, VmlRulesOptions, VmlScreenSize, VmlShadowOptions, VmlShadowType, VmlShapeAttributes, VmlShapeChild, VmlShapeDefaultsOptions, VmlShapeLayoutOptions, VmlShapeOptions, VmlShapeStyle, VmlShapetypeOptions, VmlSignatureLineOptions, VmlSkewOptions, VmlStrokeArrowLength, VmlStrokeArrowType, VmlStrokeArrowWidth, VmlStrokeChildOptions, VmlStrokeEndCap, VmlStrokeJoinStyle, VmlStrokeLineStyle, VmlStrokeOptions, VmlTextDataOptions, VmlTextPathOptions, VmlTextPathStyle, VmlTextboxOptions, VmlTrueFalse, VmlTrueFalseBlank, VmlVerticalAnchor, VmlWrapOptions, VmlWrapSide, VmlWrapType, WhenOptions, type WriteContext, type XmlNamespaceOptions, type XmlifyedFile, XmlifyedFileEntry, ZIP_DEFLATE_LEVEL, ZIP_STORED_LEVEL, type ZipOptions, type ZipPartSink, ZipStreamWriter, type Zippable, addBinaryFile, addModelBinaries, addSmartArtRelationships, appendContentType, appendOverride, appendRelationship, applyCorePropertiesOverride, bevelDesc, blipDesc, blipFillDesc, bodyPropertiesDesc, buildCorePropertiesXmlString, buildFill, buildHyperlinkElement, buildRootRelationships, buildThemeXml, buildUserShapesData, calculateEffectExtent, cell3DDesc, chartSpaceDesc, checkOrder, collectPlaceholderKeys, colorsDefDesc, compileMapping, connectorLockingDesc, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertEmuToTwip, convertInchesToEmu, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertPixelsToEmu, convertPointsToEmu, convertPointsToTwip, convertToEmu, convertToInch, convertToPt, convertToTwip, convertTwipToEmu, convertUniversalMeasureToEmu, convertUniversalMeasureToInch, convertUniversalMeasureToPt, convertUniversalMeasureToTwip, createAdjust, createAdjustList, createAnimateOneByOne, createAnimationLevel, createBevel, createBlip, createBlipEffects, createBlipFill, createBodyProperties, createBottomBevel, createColorElement, createColorTransforms, createColorsDefinitionHeader, createColorsDefinitionHeaderList, createConnectorLocking, createContentPartLocking, createCustomDash, createCustomGeometry, createDataModel, createDiagramExtensionList, createDiagramRelationshipIds, createDiagramShape3D, createDiagramStyle, createDiagramTextProperties, createEffectColorList, createEffectDag, createEffectList, createExtensionList, createFillColorList, createFillOverlayEffect, createGlowEffect, createGradientFill, createGradientStop, createGraphicFrameLocking, createGroupFill, createGroupLocking, createGroupTransform2D, createHierBranch, createHslColor, createInnerShadowEffect, createLayoutDefinitionHeader, createLayoutDefinitionHeaderList, createLineColorList, createLineEnd, createMaxChildren, createNoFill, createOrgChart, createOuterShadowEffect, createOutline, createPacker, createPatternFill, createPictureLocking, createPreferredChildren, createPresentationLayoutVariables, createPresetColor, createPresetShadowEffect, createReflectionEffect, createReplacer, createRgbColor, createRunRenderer, createScRgbColor, createScene3D, createSchemeColor, createShape3D, createShapeLocking, createSoftEdgeEffect, createSolidFill, createSourceRectangle, createSplitInject, createStyleDefinitionHeader, createStyleDefinitionHeaderList, createStyleLabel, createSystemColor, createTableStyle, createTableStyleList, createTextEffectColorList, createTextElementContents, createTextFillColorList, createTextLineColorList, createThemeXml, createTileInfo, createTokenReplacer, createTransform2D, createTraverser, createZipStream, customGeometryDesc, dateTimeValue, decimalNumber, definitionId, derivePasswordHash, diagramExtensionListDesc, diagramRelationshipIdsDesc, diagramStyleDesc, diffTagSets, effectListDesc, eighthPointMeasureValue, emitAngle, emitColorChoice, emitFillXml, emitPercent, extUriMatches, extractBlipFillMedia, fillDesc, findAndReplaceImagePlaceholders, findFieldSpec, findFillChild, formatId, getAudioRefs, getColorXml, getFirstLevelElements, getLayoutXml, getMediaRefs, getNextRelationshipIndex, getOleRefs, getReferencedMedia, getStyleXml, getVideoRefs, gradientFillDesc, graphicFrameLockingDesc, groupLockingDesc, groupShapePropertiesDesc, groupTransform2DDesc, hasPlaceholders, hashPasswordAgile, hashedId, hexBinary, hexColorValue, hpsMeasureValue, hslColorDesc, imageTypeFromPath, invertMap, isBase64DataURL, isPlainRgbColor, layoutDefDesc, levelForMediaName, longHexNumber, mapOptional, measurementOrPercentValue, nextNumericId, nextVmlShapeId, optionalRelsPart, outlineDesc, paragraphDesc, parse, parseAngle, parseBodyProperties, parseColorChoice, parseColorChoiceElement, parseColorDefinition, parseColorMapping, parseCorePropsElement, parseDataModelOptions, parseEndpointConnection, parseLayoutDefinition, parseNonVisualContentPartProperties, parseNonVisualDrawingProperties, parseOnOff, parsePercent, parsePercentAttr, parseShapeStyle, parseStyleDefinition, parseTableStyle, parseTableStyleList, parseTextStyles, parseUniversalMeasure, parseVmlAnchorLock, parseVmlArc, parseVmlAttributes, parseVmlBackground, parseVmlBorder, parseVmlCallout, parseVmlClientData, parseVmlClipPath, parseVmlColorMenu, parseVmlColorMru, parseVmlComplex, parseVmlCurve, parseVmlDiagram, parseVmlEquationXml, parseVmlExtrusion, parseVmlFill, parseVmlFormulas, parseVmlGroup, parseVmlHandles, parseVmlImage, parseVmlImageData, parseVmlInk, parseVmlIsComment, parseVmlLine, parseVmlLock, parseVmlOfficeFill, parseVmlOleObject, parseVmlOval, parseVmlPath, parseVmlPolyline, parseVmlRect, parseVmlRoundRect, parseVmlShadow, parseVmlShape, parseVmlShapeChild, parseVmlShapeDefaults, parseVmlShapeLayout, parseVmlShapeStyle, parseVmlShapetype, parseVmlSignatureLine, parseVmlSkew, parseVmlStroke, parseVmlStyle, parseVmlTextData, parseVmlTextPath, parseVmlTextbox, parseVmlTrueFalse, parseVmlTrueFalseBlank, parseVmlWrap, partPathToRelsPath, patchSpaceAttribute, patternFillDesc, percentageValue, pickNonVisualDrawingProperties, pictureLockingDesc, pointMeasureValue, positiveUniversalMeasureValue, presentationLayoutVariablesDesc, presetColorDesc, presetGeometryDesc, randomBytes, readHyperlink, readParagraphProperties, registerHyperlink, removeOverride, replaceAllPlaceholders, replaceAudioPlaceholders, replaceChartPlaceholders, replaceHyperlinkPlaceholders, replaceImageLinkPlaceholders, replaceImagePlaceholders, replaceMediaPlaceholders, replaceNumberingPlaceholders, replaceOleLinkPlaceholders, replaceOlePlaceholders, replacePlaceholders, replaceSmartArtPlaceholders, replaceVideoPlaceholders, resolveRelationshipTarget, rgbColorDesc, roundTripFields, runPropertiesDesc, scRgbColorDesc, scene3DDesc, schemeColorDesc, shape3DDesc, shapeLockingDesc, shapePropertiesDesc, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, solidFillDesc, sourceRectangleDesc, strFromU8, stretchDesc, stringify, stringifyAdjustmentValues, stringifyBlipEffects, stringifyColorChoice, stringifyColorDefinition, stringifyColorDefinitionPart, stringifyColorMapping, stringifyConnection, stringifyDataModel, stringifyDataModelOptions, stringifyEndpointConnection, stringifyLayoutDefinition, stringifyLayoutDefinitionPart, stringifyLineProperties, stringifyNonVisualContentPartProperties, stringifyNonVisualDrawingProperties, stringifyParagraphPropertiesElement, stringifyPoint, stringifyPresetGeometry, stringifyRunProperties, stringifyShapeStyle, stringifyStretch, stringifyStyleDefinition, stringifyStyleDefinitionPart, stringifyTextListStyleTag, stringifyTextRun, stringifyTextStyles, stringifyTransPoint, stringifyVmlAnchorLock, stringifyVmlArc, stringifyVmlAttributes, stringifyVmlBackground, stringifyVmlBorder, stringifyVmlCallout, stringifyVmlClientData, stringifyVmlClipPath, stringifyVmlColorMenu, stringifyVmlColorMru, stringifyVmlComplex, stringifyVmlCurve, stringifyVmlDiagram, stringifyVmlEquationXml, stringifyVmlExtrusion, stringifyVmlFill, stringifyVmlFormulas, stringifyVmlGroup, stringifyVmlHandles, stringifyVmlImage, stringifyVmlImageData, stringifyVmlInk, stringifyVmlIsComment, stringifyVmlLine, stringifyVmlLock, stringifyVmlOfficeFill, stringifyVmlOleObject, stringifyVmlOval, stringifyVmlPath, stringifyVmlPolyline, stringifyVmlRect, stringifyVmlRoundRect, stringifyVmlShadow, stringifyVmlShape, stringifyVmlShapeChild, stringifyVmlShapeDefaults, stringifyVmlShapeLayout, stringifyVmlShapetype, stringifyVmlSignatureLine, stringifyVmlSkew, stringifyVmlStroke, stringifyVmlStyle, stringifyVmlTextData, stringifyVmlTextPath, stringifyVmlTextbox, stringifyVmlTrueFalse, stringifyVmlTrueFalseBlank, stringifyVmlWrap, stripColorHashPrefix, styleDefDesc, systemColorDesc, textBodyDesc, textListStyleDesc, textRunDesc, textStylesDesc, themeDesc, themeManagerDesc, themeOverrideDesc, tileDesc, toJson, toUint8Array, toUint8ArrayAsync, transform2DDesc, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber, unzipSync, userShapesDesc, withDiagramNamespaces, xsdAnimCalcMode, xsdAnimClass, xsdAnimLevel, xsdAnimValueType, xsdAnimationDgmBuild, xsdAxisCrossBetween, xsdAxisCrosses, xsdAxisLabelAlignment, xsdAxisOrientation, xsdAxisPosition, xsdBlendMode, xsdChartBuild, xsdComments, xsdCompoundLine, xsdConsolidateFunction, xsdDataLabelPosition, xsdDiagramBuild, xsdDiagramDirection, xsdEffectContainer, xsdErrorValueType, xsdFontAlignment, xsdHierBranch, xsdHueDirection, xsdIterateType, xsdJcAlignment, xsdLegendPosition, xsdLightRigDirection, xsdLineCap, xsdLineEndSize, xsdMaterialType, xsdMathStyle, xsdOrient, xsdPathFillMode, xsdPattern, xsdPenAlignment, xsdPlaceholderType, xsdPresetShadow, xsdRectAlignment, xsdResizeHandles, xsdShadingPattern, xsdSizeRepresents, xsdSlideLayoutType, xsdSplitType, xsdStrikeStyle, xsdTableWidthType, xsdTextAlign, xsdTextAnchor, xsdTextBuild, xsdTextCaps, xsdTextTabAlignment, xsdTextVerticalType, xsdTotalsRowFunction, xsdTrendlineType, xsdUnderlineStyle, xsdVerticalMergeRev, zipAndConvert, zipSync, zipSyncAndConvert };
958
958
  //# sourceMappingURL=index.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/opc/media.ts","../src/opc/embeddings.ts","../src/opc/variant-types.ts","../src/opc/app-properties.ts","../src/opc/custom-properties.ts","../src/opc/encryption.ts","../src/util/base64.ts","../src/opc/parser.ts","../src/opc/namespaces.ts","../src/opc/part-registry.ts","../src/opc/opc-consistency.ts","../src/opc/content-type-overrides.ts","../src/opc/content-types-input.ts","../src/opc/passthrough.ts","../src/table/types.ts","../src/picture/types.ts","../src/connector/types.ts","../src/group/types.ts"],"mappings":";;;;;;;;;;;;;;UA2BiB;EACf;EACA,MAAM;EACN;;cAeW,MAAM,UAAU;mBACV;mBAEA;mBAEA;UACT;UAGA;EAcD,SACL,MAAM,YACN,cACA,QAAQ,qBAAqB,GAC7B,oBACC;UAuCK;UAaA;UAoBA;MASG,SAAS;;;;UC/IL;EAEf;EAEA,MAAM;EAEN;EAOA;;cAQW;UACH;UACA;UAEA;EAGD;EAeA,aACL,MAAM,YACN,wBACA,iBACA,mBAAmB,oCAClB;MAsBQ,SAAS;UAKZ;;;;KC9DE,2CAA2C;iBA+CvC,sBAAsB,OAAO,cAAc;iBAkB3C,kBAAkB,IAAI,UAAU;iBAuBhC,sBAAsB;iBAgBtB,YAAY,IAAI,sBAAsB;;;UCpGrC;EAEf;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA;EAMA,SAAS;EAET;EAEA;EAEA;EAEA;EAEA;EAEA;EAEA,eAAe;EAEf;EAMA;;UAIe;EAEf;EAEA;;KAIU,qBAAqB;cAEpB,mBAAmB,iBAAiB;;;UC9EhC;EAEf;EAEA,OAAO;EAMP;;UAIe;EACf,YAAY;;cAGD,sBAAsB,iBAAiB;;;UCpBnC;EAEf,MAAM;;iBAIQ,qBAAqB,MAAM;iBAQ3B,yBAAyB,UAAU,YACjD;EAAQ,YAAY;GACpB,MAAM,GACN,mBACC,aAAa;iBAOA,yBAAyB;EACvC,YAAY;IACV,eAAe;iBAmBH,yBACd;EAAQ,YAAY;GACpB;;;iBCvDc,aAAa,gBAAgB;iBAkB7B,aAAa,OAAO;;;cCavB;mBACM;mBAEA;mBAEA;mBACA;mBACA;mBAOA;EAEE,YAAA,MAAM;SA2BL,KAAK,MAAM,aAAa,OAAO,QAAQ;UA6BnD;EA4BD,IAAI,cAAc,eAAe,eAAe;EAwBhD,IAAI,cAAc,SAAS;EAU3B,OAAO,eAAe;EAKtB,OAAO,cAAc,MAAM;EAM3B,OAAO;EAMP,IAAI;EAKJ,KAAK;EAaL,QAAQ;;iBAqBD,aAAa,MAAM,aAAa;;;cCtFnC,0BAA0B,SAAS;;;KCzHpC;WACG;;WACA;WAA8B;;WAC9B;WAA2B;;UAEzB;EAKf;EAMA;EACA,UAAU;;UAGK;EACf;EACA,gBAAgB;EAMhB;;cAKW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAqMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoLA,iBAAiB,OAAO,+BAA+B;;;KClkBxD;KAEA;UAEK;EACf,MAAM;EACN,UAAU;EAEV;EACA;;iBA0Ic,uBACd,SAAS,6BACT,UAAU,sBACT;iBAmIa,mBAAmB,iBAAiB;EAClD;EACA;;;;UC/Re;EACf;EACA;;iBAcc,0BACd,UAAU,qBACV,OAAO,wCACN;;;UCZc;EACf;EACA;;UAGe;EACf;EACA;;UAOe;EACf,UAAU;EACV,WAAW;;cAKA,kBAAkB,iBAAiB;KAiDpC,2BAA2B;iBAgBvB,qBAAqB,UAAU,sBAAsB;UAgBpD;EAGf,SAAS;EAET,mBAAmB,SAAS;EAE5B,eAAe;EAMf,YAAY;IAAgB;IAAc;;EAU1C,SAAS;EAQT,gBAAgB;;iBAkBF,mBACd,WAAW,kBACX,SAAS,4BACR;cAyJU,2BAA2B;UAiBvB;EACf;EACA,MAAM;EACN;;UAGe;EAEf,SAAS;EAET,mBAAmB,SAAS;EAE5B,SAAS;EAIT,oBAAoB;EAIpB,YAAY;IAAgB;IAAc;;;iBAa5B,qBACd,OAAO,UACP,SAAS,6BACT,KAAK;;;UCtWU;EACf;EACA,MAAM;EAON;;UAGe;EAKf;EACA;EAEA;EAEA;EAEA;;UAGe;EACf,OAAO;EACP,eAAe;;iBAuBD,wBACd,SAAS,eACT,cAAc,mBACb;iBA+Ga,4BACd,OAAO,UACP,mCAAmC;;;UClLpB;EAEf;EAEA;EAEA;;UAKe,oBAAoB,QAAQ;EAC3C,OAAO;;UAKQ,iBAAiB,OAAO;EACvC,MAAM;EAMN,yBAAyB;EAEzB;EACA;EACA;EACA;EACA;EACA;;;;UCnCe,2BAA2B;EAM1C,OAAO;EAOP;EAEA;;;;UCXe,6BAA6B;EAE5C,UAAU;EAEV,kBAAkB;EAElB,gBAAgB;;iBAQF,kBACd,MAAM,mCACL,QAAQ;;;UClBM,yBAAyB;EAOxC,UAAU;;iBAQI,cAAc,MAAM,+BAA+B,QAAQ"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/opc/media.ts","../src/opc/embeddings.ts","../src/opc/variant-types.ts","../src/opc/app-properties.ts","../src/opc/custom-properties.ts","../src/opc/encryption.ts","../src/util/base64.ts","../src/opc/parser.ts","../src/opc/namespaces.ts","../src/opc/part-registry.ts","../src/opc/opc-consistency.ts","../src/opc/content-type-overrides.ts","../src/opc/content-types-input.ts","../src/opc/passthrough.ts","../src/table/types.ts","../src/picture/types.ts","../src/connector/types.ts","../src/group/types.ts"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-open/core",
3
- "version": "0.14.4",
3
+ "version": "0.14.6",
4
4
  "description": "Shared OOXML infrastructure for office-open — part descriptors, charts, drawings, tables, VML, and unit converters",
5
5
  "keywords": [
6
6
  "chart",
@@ -74,9 +74,9 @@
74
74
  }
75
75
  },
76
76
  "dependencies": {
77
- "@noble/hashes": "2.3.0",
77
+ "@noble/hashes": "2.4.0",
78
78
  "fflate": "0.8.3",
79
- "@office-open/xml": "0.14.4"
79
+ "@office-open/xml": "0.14.6"
80
80
  },
81
81
  "scripts": {
82
82
  "dev": "basis build --stub",