@json-to-office/shared-pptx 0.7.0 → 0.9.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/{chunk-62S727ED.js → chunk-OGEYYLA3.js} +2 -2
- package/dist/{chunk-3N6WLB7N.js → chunk-QGJWZIH4.js} +2 -2
- package/dist/{chunk-VMLRGZLK.js → chunk-QSFWNIU4.js} +2 -2
- package/dist/chunk-SN34KUZS.js +1007 -0
- package/dist/chunk-SN34KUZS.js.map +1 -0
- package/dist/chunk-WPYC73KC.js +388 -0
- package/dist/chunk-WPYC73KC.js.map +1 -0
- package/dist/index.d.ts +66 -2
- package/dist/index.js +32 -16
- package/dist/index.js.map +1 -1
- package/dist/schemas/component-defaults.d.ts +554 -0
- package/dist/schemas/component-defaults.js +19 -0
- package/dist/schemas/component-defaults.js.map +1 -0
- package/dist/schemas/component-registry.js +2 -2
- package/dist/schemas/component-union.js +3 -3
- package/dist/schemas/components.d.ts +285 -8
- package/dist/schemas/components.js +6 -5
- package/dist/schemas/document.js +4 -4
- package/dist/schemas/generator.js +3 -3
- package/dist/schemas/theme.d.ts +277 -3
- package/dist/schemas/theme.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-MZ3TEFYH.js +0 -154
- package/dist/chunk-MZ3TEFYH.js.map +0 -1
- package/dist/chunk-WY5GF6HO.js +0 -1171
- package/dist/chunk-WY5GF6HO.js.map +0 -1
- /package/dist/{chunk-62S727ED.js.map → chunk-OGEYYLA3.js.map} +0 -0
- /package/dist/{chunk-3N6WLB7N.js.map → chunk-QGJWZIH4.js.map} +0 -0
- /package/dist/{chunk-VMLRGZLK.js.map → chunk-QSFWNIU4.js.map} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,77 @@
|
|
|
1
1
|
export { Position, PositionSchema, PptxHighchartsProps, PptxHighchartsPropsSchema, PptxImageProps, PptxImagePropsSchema, PptxTableProps, PptxTablePropsSchema, PresentationProps, PresentationPropsSchema, Shadow, ShadowSchema, ShapeProps, ShapePropsSchema, ShapeType, ShapeTypeSchema, SlideBackground, SlideBackgroundSchema, SlideProps, SlidePropsSchema, TextProps, TextPropsSchema, TextSegment, Transition, TransitionSchema, VerticalAlignment, VerticalAlignmentSchema } from './schemas/components.js';
|
|
2
2
|
export { PptxComponentDefinition, PptxComponentDefinitionSchema, PptxStandardComponentDefinitionSchema } from './schemas/component-union.js';
|
|
3
|
+
import * as _sinclair_typebox from '@sinclair/typebox';
|
|
4
|
+
import { Static } from '@sinclair/typebox';
|
|
3
5
|
export { PPTX_STANDARD_COMPONENTS_REGISTRY, PptxStandardComponentDefinition, createAllPptxComponentSchemas, createPptxComponentSchemaObject, getAllPptxComponentNames, getPptxComponentsByCategory, getPptxContainerComponents, getPptxContentComponents, getPptxStandardComponent, isPptxStandardComponent } from './schemas/component-registry.js';
|
|
4
6
|
import { PptxJsonComponentDefinition } from './schemas/document.js';
|
|
5
7
|
export { PPTX_JSON_SCHEMA_URLS, PptxJsonComponentDefinitionSchema } from './schemas/document.js';
|
|
6
8
|
export { PPTX_BASE_SCHEMA_METADATA, PPTX_COMPONENT_METADATA } from './schemas/export.js';
|
|
9
|
+
export { ChartComponentDefaults, ChartComponentDefaultsSchema, HighchartsComponentDefaults, HighchartsComponentDefaultsSchema, ImageComponentDefaults, ImageComponentDefaultsSchema, PptxComponentDefaults, PptxComponentDefaultsSchema, ShapeComponentDefaults, ShapeComponentDefaultsSchema, TableComponentDefaults, TableComponentDefaultsSchema, TextComponentDefaults, TextComponentDefaultsSchema } from './schemas/component-defaults.js';
|
|
7
10
|
export { ColorValueSchema, SEMANTIC_COLOR_ALIASES, SEMANTIC_COLOR_NAMES, STYLE_NAMES, StyleName, StyleNameSchema, TextStyle, TextStyleSchema, ThemeConfigJson, ThemeConfigSchema, isValidThemeConfig } from './schemas/theme.js';
|
|
8
11
|
export { CustomComponentInfo, GenerateSchemaOptions, VersionedPropsEntry, generateUnifiedDocumentSchema } from './schemas/generator.js';
|
|
9
12
|
export { ComponentSchemaConfig, DEFAULT_ERROR_CONFIG, ErrorFormatterConfig, ParsedSemver, ValidationError, compareSemver, convertToJsonSchema, createComponentSchema, createErrorConfig, exportSchemaToFile, fixSchemaReferences, isValidSemver, latestVersion, parseSemver, transformValueError, transformValueErrors } from '@json-to-office/shared';
|
|
10
|
-
|
|
13
|
+
|
|
14
|
+
declare const PptxChartPropsSchema: _sinclair_typebox.TObject<{
|
|
15
|
+
type: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"area">, _sinclair_typebox.TLiteral<"bar">, _sinclair_typebox.TLiteral<"bar3D">, _sinclair_typebox.TLiteral<"bubble">, _sinclair_typebox.TLiteral<"doughnut">, _sinclair_typebox.TLiteral<"line">, _sinclair_typebox.TLiteral<"pie">, _sinclair_typebox.TLiteral<"radar">, _sinclair_typebox.TLiteral<"scatter">]>;
|
|
16
|
+
data: _sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
17
|
+
name: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
18
|
+
labels: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
|
|
19
|
+
values: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TNumber>>;
|
|
20
|
+
sizes: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TNumber>>;
|
|
21
|
+
}>>;
|
|
22
|
+
showLegend: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
23
|
+
showTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
24
|
+
showValue: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
25
|
+
showPercent: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
26
|
+
showLabel: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
27
|
+
showSerName: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
28
|
+
title: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
29
|
+
titleFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
30
|
+
titleColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
31
|
+
titleFontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
32
|
+
chartColors: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
|
|
33
|
+
legendPos: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"b">, _sinclair_typebox.TLiteral<"l">, _sinclair_typebox.TLiteral<"r">, _sinclair_typebox.TLiteral<"t">, _sinclair_typebox.TLiteral<"tr">]>>;
|
|
34
|
+
legendFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
35
|
+
legendFontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
36
|
+
legendColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
37
|
+
catAxisTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
38
|
+
catAxisHidden: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
39
|
+
catAxisLabelRotate: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
40
|
+
catAxisLabelFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
41
|
+
catAxisLabelColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
42
|
+
valAxisTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
43
|
+
valAxisHidden: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
44
|
+
valAxisMinVal: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
45
|
+
valAxisMaxVal: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
46
|
+
valAxisLabelFormatCode: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
47
|
+
valAxisMajorUnit: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
48
|
+
valAxisLabelColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
49
|
+
barDir: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"bar">, _sinclair_typebox.TLiteral<"col">]>>;
|
|
50
|
+
barGrouping: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"clustered">, _sinclair_typebox.TLiteral<"stacked">, _sinclair_typebox.TLiteral<"percentStacked">]>>;
|
|
51
|
+
barGapWidthPct: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
52
|
+
lineSmooth: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
53
|
+
lineDataSymbol: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"circle">, _sinclair_typebox.TLiteral<"dash">, _sinclair_typebox.TLiteral<"diamond">, _sinclair_typebox.TLiteral<"dot">, _sinclair_typebox.TLiteral<"none">, _sinclair_typebox.TLiteral<"square">, _sinclair_typebox.TLiteral<"triangle">]>>;
|
|
54
|
+
lineSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
55
|
+
firstSliceAng: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
56
|
+
holeSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
57
|
+
radarStyle: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"standard">, _sinclair_typebox.TLiteral<"marker">, _sinclair_typebox.TLiteral<"filled">]>>;
|
|
58
|
+
dataLabelColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
59
|
+
dataLabelFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
60
|
+
dataLabelFontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
61
|
+
dataLabelFontBold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
62
|
+
dataLabelPosition: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"b">, _sinclair_typebox.TLiteral<"bestFit">, _sinclair_typebox.TLiteral<"ctr">, _sinclair_typebox.TLiteral<"l">, _sinclair_typebox.TLiteral<"r">, _sinclair_typebox.TLiteral<"t">, _sinclair_typebox.TLiteral<"inEnd">, _sinclair_typebox.TLiteral<"outEnd">]>>;
|
|
63
|
+
x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
64
|
+
y: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
65
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
66
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
67
|
+
grid: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
68
|
+
column: _sinclair_typebox.TNumber;
|
|
69
|
+
row: _sinclair_typebox.TNumber;
|
|
70
|
+
columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
71
|
+
rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
72
|
+
}>>;
|
|
73
|
+
}>;
|
|
74
|
+
type PptxChartProps = Static<typeof PptxChartPropsSchema>;
|
|
11
75
|
|
|
12
76
|
/**
|
|
13
77
|
* Component Types for Plugin System
|
|
@@ -22,4 +86,4 @@ type ReportComponent = PptxJsonComponentDefinition;
|
|
|
22
86
|
|
|
23
87
|
declare const PPTX_SHARED_VERSION = "1.0.0";
|
|
24
88
|
|
|
25
|
-
export { PPTX_SHARED_VERSION, PptxJsonComponentDefinition, type ReportComponent };
|
|
89
|
+
export { PPTX_SHARED_VERSION, type PptxChartProps, PptxChartPropsSchema, PptxJsonComponentDefinition, type ReportComponent };
|
package/dist/index.js
CHANGED
|
@@ -1,34 +1,23 @@
|
|
|
1
1
|
import {
|
|
2
2
|
PPTX_JSON_SCHEMA_URLS,
|
|
3
3
|
PptxJsonComponentDefinitionSchema
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-QGJWZIH4.js";
|
|
5
5
|
import "./chunk-J4OT5Y5B.js";
|
|
6
6
|
import {
|
|
7
7
|
PptxComponentDefinitionSchema,
|
|
8
8
|
PptxStandardComponentDefinitionSchema
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-QSFWNIU4.js";
|
|
10
10
|
import {
|
|
11
11
|
PPTX_BASE_SCHEMA_METADATA,
|
|
12
12
|
PPTX_COMPONENT_METADATA
|
|
13
13
|
} from "./chunk-RV7W3UXU.js";
|
|
14
14
|
import {
|
|
15
15
|
generateUnifiedDocumentSchema
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-OGEYYLA3.js";
|
|
17
17
|
import {
|
|
18
18
|
PPTX_STANDARD_COMPONENTS_REGISTRY,
|
|
19
|
-
PositionSchema,
|
|
20
|
-
PptxHighchartsPropsSchema,
|
|
21
|
-
PptxImagePropsSchema,
|
|
22
|
-
PptxTablePropsSchema,
|
|
23
19
|
PresentationPropsSchema,
|
|
24
|
-
ShadowSchema,
|
|
25
|
-
ShapePropsSchema,
|
|
26
|
-
ShapeTypeSchema,
|
|
27
|
-
SlideBackgroundSchema,
|
|
28
20
|
SlidePropsSchema,
|
|
29
|
-
TextPropsSchema,
|
|
30
|
-
TransitionSchema,
|
|
31
|
-
VerticalAlignmentSchema,
|
|
32
21
|
createAllPptxComponentSchemas,
|
|
33
22
|
createPptxComponentSchemaObject,
|
|
34
23
|
getAllPptxComponentNames,
|
|
@@ -37,17 +26,36 @@ import {
|
|
|
37
26
|
getPptxContentComponents,
|
|
38
27
|
getPptxStandardComponent,
|
|
39
28
|
isPptxStandardComponent
|
|
40
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-WPYC73KC.js";
|
|
41
30
|
import {
|
|
31
|
+
ChartComponentDefaultsSchema,
|
|
42
32
|
ColorValueSchema,
|
|
33
|
+
HighchartsComponentDefaultsSchema,
|
|
34
|
+
ImageComponentDefaultsSchema,
|
|
35
|
+
PositionSchema,
|
|
36
|
+
PptxChartPropsSchema,
|
|
37
|
+
PptxComponentDefaultsSchema,
|
|
38
|
+
PptxHighchartsPropsSchema,
|
|
39
|
+
PptxImagePropsSchema,
|
|
40
|
+
PptxTablePropsSchema,
|
|
43
41
|
SEMANTIC_COLOR_ALIASES,
|
|
44
42
|
SEMANTIC_COLOR_NAMES,
|
|
45
43
|
STYLE_NAMES,
|
|
44
|
+
ShadowSchema,
|
|
45
|
+
ShapeComponentDefaultsSchema,
|
|
46
|
+
ShapePropsSchema,
|
|
47
|
+
ShapeTypeSchema,
|
|
48
|
+
SlideBackgroundSchema,
|
|
46
49
|
StyleNameSchema,
|
|
50
|
+
TableComponentDefaultsSchema,
|
|
51
|
+
TextComponentDefaultsSchema,
|
|
52
|
+
TextPropsSchema,
|
|
47
53
|
TextStyleSchema,
|
|
48
54
|
ThemeConfigSchema,
|
|
55
|
+
TransitionSchema,
|
|
56
|
+
VerticalAlignmentSchema,
|
|
49
57
|
isValidThemeConfig
|
|
50
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-SN34KUZS.js";
|
|
51
59
|
|
|
52
60
|
// src/index.ts
|
|
53
61
|
import {
|
|
@@ -70,14 +78,19 @@ import {
|
|
|
70
78
|
} from "@json-to-office/shared";
|
|
71
79
|
var PPTX_SHARED_VERSION = "1.0.0";
|
|
72
80
|
export {
|
|
81
|
+
ChartComponentDefaultsSchema,
|
|
73
82
|
ColorValueSchema,
|
|
74
83
|
DEFAULT_ERROR_CONFIG,
|
|
84
|
+
HighchartsComponentDefaultsSchema,
|
|
85
|
+
ImageComponentDefaultsSchema,
|
|
75
86
|
PPTX_BASE_SCHEMA_METADATA,
|
|
76
87
|
PPTX_COMPONENT_METADATA,
|
|
77
88
|
PPTX_JSON_SCHEMA_URLS,
|
|
78
89
|
PPTX_SHARED_VERSION,
|
|
79
90
|
PPTX_STANDARD_COMPONENTS_REGISTRY,
|
|
80
91
|
PositionSchema,
|
|
92
|
+
PptxChartPropsSchema,
|
|
93
|
+
PptxComponentDefaultsSchema,
|
|
81
94
|
PptxComponentDefinitionSchema,
|
|
82
95
|
PptxHighchartsPropsSchema,
|
|
83
96
|
PptxImagePropsSchema,
|
|
@@ -89,11 +102,14 @@ export {
|
|
|
89
102
|
SEMANTIC_COLOR_NAMES,
|
|
90
103
|
STYLE_NAMES,
|
|
91
104
|
ShadowSchema,
|
|
105
|
+
ShapeComponentDefaultsSchema,
|
|
92
106
|
ShapePropsSchema,
|
|
93
107
|
ShapeTypeSchema,
|
|
94
108
|
SlideBackgroundSchema,
|
|
95
109
|
SlidePropsSchema,
|
|
96
110
|
StyleNameSchema,
|
|
111
|
+
TableComponentDefaultsSchema,
|
|
112
|
+
TextComponentDefaultsSchema,
|
|
97
113
|
TextPropsSchema,
|
|
98
114
|
TextStyleSchema,
|
|
99
115
|
ThemeConfigSchema,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export const PPTX_SHARED_VERSION = '1.0.0';\n\n// Component Schemas\nexport {\n PositionSchema,\n SlideBackgroundSchema,\n TransitionSchema,\n VerticalAlignmentSchema,\n ShadowSchema,\n PresentationPropsSchema,\n SlidePropsSchema,\n TextPropsSchema,\n PptxImagePropsSchema,\n ShapePropsSchema,\n ShapeTypeSchema,\n PptxTablePropsSchema,\n PptxHighchartsPropsSchema,\n PptxStandardComponentDefinitionSchema,\n PptxComponentDefinitionSchema,\n} from './schemas/components';\n\nexport type {\n Position,\n SlideBackground,\n Transition,\n VerticalAlignment,\n Shadow,\n PresentationProps,\n SlideProps,\n TextProps,\n PptxImageProps,\n ShapeType,\n ShapeProps,\n TextSegment,\n PptxTableProps,\n PptxHighchartsProps,\n PptxComponentDefinition,\n} from './schemas/components';\n\n// Component Registry\nexport {\n PPTX_STANDARD_COMPONENTS_REGISTRY,\n getPptxStandardComponent,\n getAllPptxComponentNames,\n getPptxComponentsByCategory,\n getPptxContainerComponents,\n getPptxContentComponents,\n isPptxStandardComponent,\n createPptxComponentSchemaObject,\n createAllPptxComponentSchemas,\n} from './schemas/component-registry';\n\nexport type { PptxStandardComponentDefinition } from './schemas/component-registry';\n\n// Document Schema\nexport {\n PptxJsonComponentDefinitionSchema,\n PPTX_JSON_SCHEMA_URLS,\n} from './schemas/document';\n\nexport type { PptxJsonComponentDefinition } from './schemas/document';\n\n// Schema Export Metadata\nexport {\n PPTX_COMPONENT_METADATA,\n PPTX_BASE_SCHEMA_METADATA,\n} from './schemas/export';\n\n// Theme\nexport {
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["export const PPTX_SHARED_VERSION = '1.0.0';\n\n// Component Schemas\nexport {\n PositionSchema,\n SlideBackgroundSchema,\n TransitionSchema,\n VerticalAlignmentSchema,\n ShadowSchema,\n PresentationPropsSchema,\n SlidePropsSchema,\n TextPropsSchema,\n PptxImagePropsSchema,\n ShapePropsSchema,\n ShapeTypeSchema,\n PptxTablePropsSchema,\n PptxHighchartsPropsSchema,\n PptxStandardComponentDefinitionSchema,\n PptxComponentDefinitionSchema,\n} from './schemas/components';\n\nexport type {\n Position,\n SlideBackground,\n Transition,\n VerticalAlignment,\n Shadow,\n PresentationProps,\n SlideProps,\n TextProps,\n PptxImageProps,\n ShapeType,\n ShapeProps,\n TextSegment,\n PptxTableProps,\n PptxHighchartsProps,\n PptxComponentDefinition,\n} from './schemas/components';\n\n// Chart (not re-exported from components barrel)\nexport { PptxChartPropsSchema } from './schemas/components/chart';\nexport type { PptxChartProps } from './schemas/components/chart';\n\n// Component Registry\nexport {\n PPTX_STANDARD_COMPONENTS_REGISTRY,\n getPptxStandardComponent,\n getAllPptxComponentNames,\n getPptxComponentsByCategory,\n getPptxContainerComponents,\n getPptxContentComponents,\n isPptxStandardComponent,\n createPptxComponentSchemaObject,\n createAllPptxComponentSchemas,\n} from './schemas/component-registry';\n\nexport type { PptxStandardComponentDefinition } from './schemas/component-registry';\n\n// Document Schema\nexport {\n PptxJsonComponentDefinitionSchema,\n PPTX_JSON_SCHEMA_URLS,\n} from './schemas/document';\n\nexport type { PptxJsonComponentDefinition } from './schemas/document';\n\n// Schema Export Metadata\nexport {\n PPTX_COMPONENT_METADATA,\n PPTX_BASE_SCHEMA_METADATA,\n} from './schemas/export';\n\n// Component Defaults\nexport {\n PptxComponentDefaultsSchema,\n TextComponentDefaultsSchema,\n ImageComponentDefaultsSchema,\n ShapeComponentDefaultsSchema,\n TableComponentDefaultsSchema,\n HighchartsComponentDefaultsSchema,\n ChartComponentDefaultsSchema,\n} from './schemas/component-defaults';\nexport type {\n PptxComponentDefaults,\n TextComponentDefaults,\n ImageComponentDefaults,\n ShapeComponentDefaults,\n TableComponentDefaults,\n HighchartsComponentDefaults,\n ChartComponentDefaults,\n} from './schemas/component-defaults';\n\n// Theme\nexport {\n ThemeConfigSchema,\n ColorValueSchema,\n SEMANTIC_COLOR_NAMES,\n SEMANTIC_COLOR_ALIASES,\n STYLE_NAMES,\n StyleNameSchema,\n TextStyleSchema,\n isValidThemeConfig,\n} from './schemas/theme';\nexport type { ThemeConfigJson, StyleName, TextStyle } from './schemas/theme';\n\n// Schema Generator\nexport { generateUnifiedDocumentSchema } from './schemas/generator';\nexport type {\n VersionedPropsEntry,\n CustomComponentInfo,\n GenerateSchemaOptions,\n} from './schemas/generator';\n\n// Types\nexport type { ReportComponent } from './types/components';\n\n// Re-export shared validation utilities for convenience\nexport {\n transformValueError,\n transformValueErrors,\n DEFAULT_ERROR_CONFIG,\n createErrorConfig,\n} from '@json-to-office/shared';\n\nexport type {\n ErrorFormatterConfig,\n ValidationError,\n} from '@json-to-office/shared';\n\n// Re-export shared utilities\nexport {\n latestVersion,\n isValidSemver,\n parseSemver,\n compareSemver,\n} from '@json-to-office/shared';\nexport type { ParsedSemver } from '@json-to-office/shared';\n\n// Re-export schema utils\nexport {\n fixSchemaReferences,\n convertToJsonSchema,\n createComponentSchema,\n exportSchemaToFile,\n} from '@json-to-office/shared';\nexport type { ComponentSchemaConfig } from '@json-to-office/shared';\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqHA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAQP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAIP;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAhJA,IAAM,sBAAsB;","names":[]}
|