@json-to-office/shared-pptx 0.18.0 → 0.20.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-SXIHWIJB.js → chunk-5ER63EW5.js} +2 -2
- package/dist/{chunk-PGUWE3H7.js → chunk-7MPP5MFF.js} +2 -2
- package/dist/{chunk-JPEJEULS.js → chunk-I3XL4HX7.js} +22 -6
- package/dist/chunk-I3XL4HX7.js.map +1 -0
- package/dist/{chunk-BSPBG4E7.js → chunk-STLETJGO.js} +61 -16
- package/dist/chunk-STLETJGO.js.map +1 -0
- package/dist/{chunk-BGV5BVEG.js → chunk-YKBPU4GM.js} +2 -2
- package/dist/index.d.ts +103 -1
- package/dist/index.js +296 -7
- package/dist/index.js.map +1 -1
- package/dist/schemas/component-defaults.d.ts +2 -0
- package/dist/schemas/component-defaults.js +1 -1
- package/dist/schemas/component-registry.js +2 -2
- package/dist/schemas/component-union.js +3 -3
- package/dist/schemas/components.d.ts +319 -1
- package/dist/schemas/components.js +3 -3
- package/dist/schemas/document.js +4 -4
- package/dist/schemas/generator.js +3 -3
- package/dist/schemas/theme.d.ts +1 -0
- package/dist/schemas/theme.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-BSPBG4E7.js.map +0 -1
- package/dist/chunk-JPEJEULS.js.map +0 -1
- /package/dist/{chunk-SXIHWIJB.js.map → chunk-5ER63EW5.js.map} +0 -0
- /package/dist/{chunk-PGUWE3H7.js.map → chunk-7MPP5MFF.js.map} +0 -0
- /package/dist/{chunk-BGV5BVEG.js.map → chunk-YKBPU4GM.js.map} +0 -0
|
@@ -48,10 +48,326 @@ declare const PresentationPropsSchema: _sinclair_typebox.TObject<{
|
|
|
48
48
|
author: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
49
49
|
subject: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
50
50
|
company: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
51
|
-
theme: _sinclair_typebox.TOptional<_sinclair_typebox.TString
|
|
51
|
+
theme: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, _sinclair_typebox.TObject<{
|
|
52
|
+
name: _sinclair_typebox.TString;
|
|
53
|
+
colors: _sinclair_typebox.TObject<{
|
|
54
|
+
primary: _sinclair_typebox.TString;
|
|
55
|
+
secondary: _sinclair_typebox.TString;
|
|
56
|
+
accent: _sinclair_typebox.TString;
|
|
57
|
+
background: _sinclair_typebox.TString;
|
|
58
|
+
text: _sinclair_typebox.TString;
|
|
59
|
+
text2: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
60
|
+
background2: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
61
|
+
accent4: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
62
|
+
accent5: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
63
|
+
accent6: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
64
|
+
}>;
|
|
65
|
+
fonts: _sinclair_typebox.TObject<{
|
|
66
|
+
heading: _sinclair_typebox.TString;
|
|
67
|
+
body: _sinclair_typebox.TString;
|
|
68
|
+
}>;
|
|
69
|
+
defaults: _sinclair_typebox.TObject<{
|
|
70
|
+
fontSize: _sinclair_typebox.TNumber;
|
|
71
|
+
fontColor: _sinclair_typebox.TString;
|
|
72
|
+
}>;
|
|
73
|
+
styles: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
74
|
+
[x: string]: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
75
|
+
fontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
76
|
+
fontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
77
|
+
fontColor: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, ...(_sinclair_typebox.TLiteral<"text" | "primary" | "secondary" | "accent" | "background" | "text2" | "background2" | "accent4" | "accent5" | "accent6"> | _sinclair_typebox.TLiteral<"accent1" | "accent2" | "accent3" | "tx1" | "tx2" | "bg1" | "bg2">)[]]>>;
|
|
78
|
+
bold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
79
|
+
fontWeight: _sinclair_typebox.TOptional<_sinclair_typebox.TInteger>;
|
|
80
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
81
|
+
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">, _sinclair_typebox.TLiteral<"justify">]>>;
|
|
82
|
+
lineSpacing: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
83
|
+
charSpacing: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
84
|
+
paraSpaceAfter: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
85
|
+
}>>;
|
|
86
|
+
}>>;
|
|
87
|
+
componentDefaults: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
88
|
+
text: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
89
|
+
text: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
90
|
+
x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
91
|
+
y: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
92
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
93
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
94
|
+
fontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
95
|
+
fontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
96
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
97
|
+
bold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
98
|
+
fontWeight: _sinclair_typebox.TOptional<_sinclair_typebox.TInteger>;
|
|
99
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
100
|
+
underline: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TBoolean, _sinclair_typebox.TObject<{
|
|
101
|
+
style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"sng">, _sinclair_typebox.TLiteral<"dbl">, _sinclair_typebox.TLiteral<"dash">, _sinclair_typebox.TLiteral<"dotted">]>>;
|
|
102
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
103
|
+
}>]>>;
|
|
104
|
+
strike: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
105
|
+
language: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
106
|
+
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
|
|
107
|
+
valign: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"top">, _sinclair_typebox.TLiteral<"middle">, _sinclair_typebox.TLiteral<"bottom">]>>;
|
|
108
|
+
breakLine: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
109
|
+
bullet: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TBoolean, _sinclair_typebox.TObject<{
|
|
110
|
+
type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"bullet">, _sinclair_typebox.TLiteral<"number">]>>;
|
|
111
|
+
style: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
112
|
+
startAt: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
113
|
+
}>]>>;
|
|
114
|
+
margin: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TArray<_sinclair_typebox.TNumber>]>>;
|
|
115
|
+
rotate: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
116
|
+
shadow: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
117
|
+
type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"outer">, _sinclair_typebox.TLiteral<"inner">]>>;
|
|
118
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, ...(_sinclair_typebox.TLiteral<"text" | "primary" | "secondary" | "accent" | "background" | "text2" | "background2" | "accent4" | "accent5" | "accent6"> | _sinclair_typebox.TLiteral<"accent1" | "accent2" | "accent3" | "tx1" | "tx2" | "bg1" | "bg2">)[]]>>;
|
|
119
|
+
blur: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
120
|
+
offset: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
121
|
+
angle: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
122
|
+
opacity: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
123
|
+
}>>;
|
|
124
|
+
fill: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
125
|
+
color: _sinclair_typebox.TString;
|
|
126
|
+
transparency: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
127
|
+
}>>;
|
|
128
|
+
hyperlink: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
129
|
+
url: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
130
|
+
slide: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
131
|
+
tooltip: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
132
|
+
}>>;
|
|
133
|
+
lineSpacing: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
134
|
+
charSpacing: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
135
|
+
paraSpaceBefore: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
136
|
+
paraSpaceAfter: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
137
|
+
grid: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
138
|
+
column: _sinclair_typebox.TNumber;
|
|
139
|
+
row: _sinclair_typebox.TNumber;
|
|
140
|
+
columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
141
|
+
rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
142
|
+
}>>;
|
|
143
|
+
style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "subtitle" | "heading1" | "heading2" | "heading3" | "body" | "caption">[]>>;
|
|
144
|
+
}>>;
|
|
145
|
+
image: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
146
|
+
path: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
147
|
+
base64: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
148
|
+
svg: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
149
|
+
x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
150
|
+
y: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
151
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
152
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
153
|
+
sizing: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
154
|
+
type: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"contain">, _sinclair_typebox.TLiteral<"cover">, _sinclair_typebox.TLiteral<"crop">]>;
|
|
155
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
156
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
157
|
+
}>>;
|
|
158
|
+
rotate: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
159
|
+
rounding: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
160
|
+
shadow: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
161
|
+
type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"outer">, _sinclair_typebox.TLiteral<"inner">]>>;
|
|
162
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, ...(_sinclair_typebox.TLiteral<"text" | "primary" | "secondary" | "accent" | "background" | "text2" | "background2" | "accent4" | "accent5" | "accent6"> | _sinclair_typebox.TLiteral<"accent1" | "accent2" | "accent3" | "tx1" | "tx2" | "bg1" | "bg2">)[]]>>;
|
|
163
|
+
blur: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
164
|
+
offset: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
165
|
+
angle: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
166
|
+
opacity: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
167
|
+
}>>;
|
|
168
|
+
hyperlink: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
169
|
+
url: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
170
|
+
slide: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
171
|
+
tooltip: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
172
|
+
}>>;
|
|
173
|
+
alt: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
174
|
+
grid: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
175
|
+
column: _sinclair_typebox.TNumber;
|
|
176
|
+
row: _sinclair_typebox.TNumber;
|
|
177
|
+
columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
178
|
+
rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
179
|
+
}>>;
|
|
180
|
+
}>>;
|
|
181
|
+
shape: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
182
|
+
type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"rect">, _sinclair_typebox.TLiteral<"roundRect">, _sinclair_typebox.TLiteral<"ellipse">, _sinclair_typebox.TLiteral<"triangle">, _sinclair_typebox.TLiteral<"diamond">, _sinclair_typebox.TLiteral<"pentagon">, _sinclair_typebox.TLiteral<"hexagon">, _sinclair_typebox.TLiteral<"star5">, _sinclair_typebox.TLiteral<"star6">, _sinclair_typebox.TLiteral<"line">, _sinclair_typebox.TLiteral<"arrow">, _sinclair_typebox.TLiteral<"chevron">, _sinclair_typebox.TLiteral<"cloud">, _sinclair_typebox.TLiteral<"heart">, _sinclair_typebox.TLiteral<"lightning">]>>;
|
|
183
|
+
x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
184
|
+
y: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
185
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
186
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
187
|
+
fill: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
188
|
+
color: _sinclair_typebox.TString;
|
|
189
|
+
transparency: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
190
|
+
}>>;
|
|
191
|
+
line: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
192
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
193
|
+
width: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
194
|
+
dashType: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"solid">, _sinclair_typebox.TLiteral<"dash">, _sinclair_typebox.TLiteral<"dot">, _sinclair_typebox.TLiteral<"dashDot">]>>;
|
|
195
|
+
}>>;
|
|
196
|
+
text: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, _sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
197
|
+
text: _sinclair_typebox.TString;
|
|
198
|
+
fontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
199
|
+
fontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
200
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
201
|
+
bold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
202
|
+
fontWeight: _sinclair_typebox.TOptional<_sinclair_typebox.TInteger>;
|
|
203
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
204
|
+
breakLine: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
205
|
+
spaceBefore: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
206
|
+
spaceAfter: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
207
|
+
charSpacing: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
208
|
+
}>>]>>;
|
|
209
|
+
fontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
210
|
+
fontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
211
|
+
fontColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
212
|
+
charSpacing: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
213
|
+
bold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
214
|
+
fontWeight: _sinclair_typebox.TOptional<_sinclair_typebox.TInteger>;
|
|
215
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
216
|
+
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
|
|
217
|
+
valign: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"top">, _sinclair_typebox.TLiteral<"middle">, _sinclair_typebox.TLiteral<"bottom">]>>;
|
|
218
|
+
rotate: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
219
|
+
shadow: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
220
|
+
type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"outer">, _sinclair_typebox.TLiteral<"inner">]>>;
|
|
221
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, ...(_sinclair_typebox.TLiteral<"text" | "primary" | "secondary" | "accent" | "background" | "text2" | "background2" | "accent4" | "accent5" | "accent6"> | _sinclair_typebox.TLiteral<"accent1" | "accent2" | "accent3" | "tx1" | "tx2" | "bg1" | "bg2">)[]]>>;
|
|
222
|
+
blur: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
223
|
+
offset: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
224
|
+
angle: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
225
|
+
opacity: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
226
|
+
}>>;
|
|
227
|
+
rectRadius: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
228
|
+
grid: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
229
|
+
column: _sinclair_typebox.TNumber;
|
|
230
|
+
row: _sinclair_typebox.TNumber;
|
|
231
|
+
columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
232
|
+
rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
233
|
+
}>>;
|
|
234
|
+
style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<_sinclair_typebox.TLiteral<"title" | "subtitle" | "heading1" | "heading2" | "heading3" | "body" | "caption">[]>>;
|
|
235
|
+
}>>;
|
|
236
|
+
table: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
237
|
+
rows: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TArray<_sinclair_typebox.TUnion<[_sinclair_typebox.TString, _sinclair_typebox.TObject<{
|
|
238
|
+
text: _sinclair_typebox.TString;
|
|
239
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
240
|
+
fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
241
|
+
fontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
242
|
+
fontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
243
|
+
bold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
244
|
+
fontWeight: _sinclair_typebox.TOptional<_sinclair_typebox.TInteger>;
|
|
245
|
+
italic: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
246
|
+
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
|
|
247
|
+
valign: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"top">, _sinclair_typebox.TLiteral<"middle">, _sinclair_typebox.TLiteral<"bottom">]>>;
|
|
248
|
+
colspan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
249
|
+
rowspan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
250
|
+
margin: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TArray<_sinclair_typebox.TNumber>]>>;
|
|
251
|
+
}>]>>>>;
|
|
252
|
+
x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
253
|
+
y: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
254
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
255
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
256
|
+
colW: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TArray<_sinclair_typebox.TNumber>]>>;
|
|
257
|
+
rowH: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TArray<_sinclair_typebox.TNumber>]>>;
|
|
258
|
+
border: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
259
|
+
type: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"solid">, _sinclair_typebox.TLiteral<"dash">, _sinclair_typebox.TLiteral<"dot">, _sinclair_typebox.TLiteral<"none">]>>;
|
|
260
|
+
pt: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
261
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
262
|
+
}>>;
|
|
263
|
+
fill: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
264
|
+
fontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
265
|
+
fontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
266
|
+
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
267
|
+
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
|
|
268
|
+
valign: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"top">, _sinclair_typebox.TLiteral<"middle">, _sinclair_typebox.TLiteral<"bottom">]>>;
|
|
269
|
+
autoPage: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
270
|
+
autoPageRepeatHeader: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
271
|
+
margin: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TArray<_sinclair_typebox.TNumber>]>>;
|
|
272
|
+
borderRadius: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
273
|
+
grid: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
274
|
+
column: _sinclair_typebox.TNumber;
|
|
275
|
+
row: _sinclair_typebox.TNumber;
|
|
276
|
+
columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
277
|
+
rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
278
|
+
}>>;
|
|
279
|
+
}>>;
|
|
280
|
+
highcharts: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
281
|
+
options: _sinclair_typebox.TOptional<_sinclair_typebox.TIntersect<[_sinclair_typebox.TRecord<_sinclair_typebox.TString, _sinclair_typebox.TUnknown>, _sinclair_typebox.TObject<{
|
|
282
|
+
chart: _sinclair_typebox.TObject<{
|
|
283
|
+
width: _sinclair_typebox.TNumber;
|
|
284
|
+
height: _sinclair_typebox.TNumber;
|
|
285
|
+
}>;
|
|
286
|
+
}>]>>;
|
|
287
|
+
scale: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
288
|
+
serverUrl: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
289
|
+
resources: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
290
|
+
css: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
291
|
+
js: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
292
|
+
files: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
|
|
293
|
+
}>>;
|
|
294
|
+
x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
295
|
+
y: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
296
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
297
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
298
|
+
grid: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
299
|
+
column: _sinclair_typebox.TNumber;
|
|
300
|
+
row: _sinclair_typebox.TNumber;
|
|
301
|
+
columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
302
|
+
rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
303
|
+
}>>;
|
|
304
|
+
}>>;
|
|
305
|
+
chart: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
306
|
+
type: _sinclair_typebox.TOptional<_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">]>>;
|
|
307
|
+
data: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
|
|
308
|
+
name: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
309
|
+
labels: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
|
|
310
|
+
values: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TNumber>>;
|
|
311
|
+
sizes: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TNumber>>;
|
|
312
|
+
}>>>;
|
|
313
|
+
showLegend: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
314
|
+
showTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
315
|
+
showValue: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
316
|
+
showPercent: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
317
|
+
showLabel: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
318
|
+
showSerName: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
319
|
+
title: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
320
|
+
titleFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
321
|
+
titleColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
322
|
+
titleFontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
323
|
+
chartColors: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
|
|
324
|
+
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">]>>;
|
|
325
|
+
legendFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
326
|
+
legendFontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
327
|
+
legendColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
328
|
+
catAxisTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
329
|
+
catAxisHidden: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
330
|
+
catAxisLabelRotate: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
331
|
+
catAxisLabelFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
332
|
+
catAxisLabelColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
333
|
+
valAxisTitle: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
334
|
+
valAxisHidden: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
335
|
+
valAxisMinVal: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
336
|
+
valAxisMaxVal: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
337
|
+
valAxisLabelFormatCode: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
338
|
+
valAxisMajorUnit: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
339
|
+
valAxisLabelColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
340
|
+
barDir: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"bar">, _sinclair_typebox.TLiteral<"col">]>>;
|
|
341
|
+
barGrouping: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"clustered">, _sinclair_typebox.TLiteral<"stacked">, _sinclair_typebox.TLiteral<"percentStacked">]>>;
|
|
342
|
+
barGapWidthPct: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
343
|
+
lineSmooth: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
344
|
+
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">]>>;
|
|
345
|
+
lineSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
346
|
+
firstSliceAng: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
347
|
+
holeSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
348
|
+
radarStyle: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"standard">, _sinclair_typebox.TLiteral<"marker">, _sinclair_typebox.TLiteral<"filled">]>>;
|
|
349
|
+
dataLabelColor: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
350
|
+
dataLabelFontSize: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
351
|
+
dataLabelFontFace: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
352
|
+
dataLabelFontBold: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
353
|
+
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">]>>;
|
|
354
|
+
x: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
355
|
+
y: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
356
|
+
w: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
357
|
+
h: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TNumber, _sinclair_typebox.TString]>>;
|
|
358
|
+
grid: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
359
|
+
column: _sinclair_typebox.TNumber;
|
|
360
|
+
row: _sinclair_typebox.TNumber;
|
|
361
|
+
columnSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
362
|
+
rowSpan: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
363
|
+
}>>;
|
|
364
|
+
}>>;
|
|
365
|
+
}>>;
|
|
366
|
+
}>]>>;
|
|
52
367
|
slideWidth: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
53
368
|
slideHeight: _sinclair_typebox.TOptional<_sinclair_typebox.TNumber>;
|
|
54
369
|
rtlMode: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
370
|
+
language: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
55
371
|
pageNumberFormat: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"9">, _sinclair_typebox.TLiteral<"09">]>>;
|
|
56
372
|
componentDefaults: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
57
373
|
text: _sinclair_typebox.TOptional<_sinclair_typebox.TObject<{
|
|
@@ -71,6 +387,7 @@ declare const PresentationPropsSchema: _sinclair_typebox.TObject<{
|
|
|
71
387
|
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
72
388
|
}>]>>;
|
|
73
389
|
strike: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
390
|
+
language: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
74
391
|
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
|
|
75
392
|
valign: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"top">, _sinclair_typebox.TLiteral<"middle">, _sinclair_typebox.TLiteral<"bottom">]>>;
|
|
76
393
|
breakLine: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
@@ -480,6 +797,7 @@ declare const TextPropsSchema: _sinclair_typebox.TObject<{
|
|
|
480
797
|
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
481
798
|
}>]>>;
|
|
482
799
|
strike: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
800
|
+
language: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
483
801
|
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
|
|
484
802
|
valign: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"top">, _sinclair_typebox.TLiteral<"middle">, _sinclair_typebox.TLiteral<"bottom">]>>;
|
|
485
803
|
breakLine: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
@@ -3,11 +3,11 @@ import {
|
|
|
3
3
|
PptxComponentDefinitionSchema,
|
|
4
4
|
PptxSlideContentSchema,
|
|
5
5
|
PptxStandardComponentDefinitionSchema
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-5ER63EW5.js";
|
|
7
7
|
import {
|
|
8
8
|
PresentationPropsSchema,
|
|
9
9
|
SlidePropsSchema
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-I3XL4HX7.js";
|
|
11
11
|
import {
|
|
12
12
|
GridPositionSchema,
|
|
13
13
|
PositionSchema,
|
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
TextSegmentSchema,
|
|
24
24
|
TransitionSchema,
|
|
25
25
|
VerticalAlignmentSchema
|
|
26
|
-
} from "../chunk-
|
|
26
|
+
} from "../chunk-STLETJGO.js";
|
|
27
27
|
export {
|
|
28
28
|
GridPositionSchema,
|
|
29
29
|
PositionSchema,
|
package/dist/schemas/document.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
PPTX_JSON_SCHEMA_URLS,
|
|
3
3
|
PptxJsonComponentDefinitionSchema
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-7MPP5MFF.js";
|
|
5
5
|
import "../chunk-J4OT5Y5B.js";
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
6
|
+
import "../chunk-5ER63EW5.js";
|
|
7
|
+
import "../chunk-I3XL4HX7.js";
|
|
8
|
+
import "../chunk-STLETJGO.js";
|
|
9
9
|
export {
|
|
10
10
|
PPTX_JSON_SCHEMA_URLS,
|
|
11
11
|
PptxJsonComponentDefinitionSchema
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generateUnifiedDocumentSchema
|
|
3
|
-
} from "../chunk-
|
|
4
|
-
import "../chunk-
|
|
5
|
-
import "../chunk-
|
|
3
|
+
} from "../chunk-YKBPU4GM.js";
|
|
4
|
+
import "../chunk-I3XL4HX7.js";
|
|
5
|
+
import "../chunk-STLETJGO.js";
|
|
6
6
|
export {
|
|
7
7
|
generateUnifiedDocumentSchema
|
|
8
8
|
};
|
package/dist/schemas/theme.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ declare const ThemeConfigSchema: _sinclair_typebox.TObject<{
|
|
|
102
102
|
color: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
103
103
|
}>]>>;
|
|
104
104
|
strike: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
|
105
|
+
language: _sinclair_typebox.TOptional<_sinclair_typebox.TString>;
|
|
105
106
|
align: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"left">, _sinclair_typebox.TLiteral<"center">, _sinclair_typebox.TLiteral<"right">]>>;
|
|
106
107
|
valign: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"top">, _sinclair_typebox.TLiteral<"middle">, _sinclair_typebox.TLiteral<"bottom">]>>;
|
|
107
108
|
breakLine: _sinclair_typebox.TOptional<_sinclair_typebox.TBoolean>;
|
package/dist/schemas/theme.js
CHANGED
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/schemas/component-defaults.ts","../src/schemas/components/text.ts","../src/schemas/components/common.ts","../src/schemas/theme.ts","../src/schemas/components/image.ts","../src/schemas/components/shape.ts","../src/schemas/components/table.ts","../src/schemas/components/highcharts.ts","../src/schemas/components/chart.ts"],"sourcesContent":["/**\n * PPTX Component Defaults Schemas\n *\n * Imports directly from individual component files to avoid circular deps.\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { TextPropsSchema } from './components/text';\nimport { PptxImagePropsSchema } from './components/image';\nimport { ShapePropsSchema } from './components/shape';\nimport { PptxTablePropsSchema } from './components/table';\nimport { PptxHighchartsPropsSchema } from './components/highcharts';\nimport { PptxChartPropsSchema } from './components/chart';\n\n// Create component defaults by making all fields optional (Type.Partial)\nexport const TextComponentDefaultsSchema = Type.Partial(TextPropsSchema);\nexport const ImageComponentDefaultsSchema = Type.Partial(PptxImagePropsSchema);\nexport const ShapeComponentDefaultsSchema = Type.Partial(ShapePropsSchema);\nexport const TableComponentDefaultsSchema = Type.Partial(PptxTablePropsSchema);\nexport const HighchartsComponentDefaultsSchema = Type.Partial(\n PptxHighchartsPropsSchema\n);\nexport const ChartComponentDefaultsSchema = Type.Partial(PptxChartPropsSchema);\n\nexport const PptxComponentDefaultsSchema = Type.Object(\n {\n text: Type.Optional(TextComponentDefaultsSchema),\n image: Type.Optional(ImageComponentDefaultsSchema),\n shape: Type.Optional(ShapeComponentDefaultsSchema),\n table: Type.Optional(TableComponentDefaultsSchema),\n highcharts: Type.Optional(HighchartsComponentDefaultsSchema),\n chart: Type.Optional(ChartComponentDefaultsSchema),\n },\n { additionalProperties: true }\n);\n\n// TypeScript types\nexport type TextComponentDefaults = Static<typeof TextComponentDefaultsSchema>;\nexport type ImageComponentDefaults = Static<\n typeof ImageComponentDefaultsSchema\n>;\nexport type ShapeComponentDefaults = Static<\n typeof ShapeComponentDefaultsSchema\n>;\nexport type TableComponentDefaults = Static<\n typeof TableComponentDefaultsSchema\n>;\nexport type HighchartsComponentDefaults = Static<\n typeof HighchartsComponentDefaultsSchema\n>;\nexport type ChartComponentDefaults = Static<\n typeof ChartComponentDefaultsSchema\n>;\nexport type PptxComponentDefaults = Static<\n typeof PptxComponentDefaultsSchema\n>;\n","/**\n * Text Component Schema\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { FontFamilyNameSchema } from '@json-to-office/shared';\nimport { PptxAlignmentSchema, VerticalAlignmentSchema, ShadowSchema, GridPositionSchema } from './common';\nimport { StyleNameSchema } from '../theme';\n\nexport const TextPropsSchema = Type.Object(\n {\n text: Type.String({ description: 'Text content to display' }),\n x: Type.Optional(\n Type.Union([\n Type.Number({ description: 'X position in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'X as percentage' }),\n ])\n ),\n y: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Y position in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Y as percentage' }),\n ])\n ),\n w: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Width in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Width as percentage' }),\n ])\n ),\n h: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Height in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Height as percentage' }),\n ])\n ),\n fontSize: Type.Optional(\n Type.Number({ minimum: 1, description: 'Font size in points' })\n ),\n fontFace: Type.Optional(FontFamilyNameSchema),\n color: Type.Optional(\n Type.String({ description: 'Text color (hex without #, e.g., \"FF0000\")' })\n ),\n bold: Type.Optional(Type.Boolean({ description: 'Bold text' })),\n fontWeight: Type.Optional(\n Type.Integer({\n minimum: 100,\n maximum: 900,\n description:\n 'Per-run weight (100–900). Renderer picks the closest embedded variant via CSS font-matching and references it through a synthetic family alias. Overrides `bold` when set.',\n })\n ),\n italic: Type.Optional(Type.Boolean({ description: 'Italic text' })),\n underline: Type.Optional(\n Type.Union([\n Type.Boolean({ description: 'Simple underline toggle' }),\n Type.Object(\n {\n style: Type.Optional(\n Type.Union([\n Type.Literal('sng'),\n Type.Literal('dbl'),\n Type.Literal('dash'),\n Type.Literal('dotted'),\n ])\n ),\n color: Type.Optional(Type.String({ description: 'Underline color (hex)' })),\n },\n { additionalProperties: false }\n ),\n ])\n ),\n strike: Type.Optional(Type.Boolean({ description: 'Strikethrough text' })),\n align: Type.Optional(PptxAlignmentSchema),\n valign: Type.Optional(VerticalAlignmentSchema),\n breakLine: Type.Optional(\n Type.Boolean({ description: 'Add line break after text' })\n ),\n bullet: Type.Optional(\n Type.Union([\n Type.Boolean({ description: 'Enable default bullet' }),\n Type.Object(\n {\n type: Type.Optional(\n Type.Union([Type.Literal('bullet'), Type.Literal('number')])\n ),\n style: Type.Optional(Type.String({ description: 'Bullet character or style' })),\n startAt: Type.Optional(Type.Number({ description: 'Starting number for numbered lists' })),\n },\n { additionalProperties: false }\n ),\n ])\n ),\n margin: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Margin in points (all sides)' }),\n Type.Array(Type.Number(), {\n description: 'Margins as [top, right, bottom, left] in points',\n minItems: 4,\n maxItems: 4,\n }),\n ])\n ),\n rotate: Type.Optional(Type.Number({ description: 'Rotation angle in degrees' })),\n shadow: Type.Optional(ShadowSchema),\n fill: Type.Optional(\n Type.Object(\n {\n color: Type.String({ description: 'Fill color (hex without #)' }),\n transparency: Type.Optional(\n Type.Number({ minimum: 0, maximum: 100, description: 'Fill transparency (0-100)' })\n ),\n },\n { additionalProperties: false }\n )\n ),\n hyperlink: Type.Optional(\n Type.Object(\n {\n url: Type.Optional(Type.String({ description: 'Hyperlink URL' })),\n slide: Type.Optional(Type.Number({ description: 'Slide number to link to' })),\n tooltip: Type.Optional(Type.String({ description: 'Hyperlink tooltip' })),\n },\n { additionalProperties: false }\n )\n ),\n lineSpacing: Type.Optional(Type.Number({ description: 'Line spacing in points' })),\n charSpacing: Type.Optional(Type.Number({ description: 'Character spacing in points (positive = wider, negative = tighter)' })),\n paraSpaceBefore: Type.Optional(Type.Number({ description: 'Space before paragraph in points' })),\n paraSpaceAfter: Type.Optional(Type.Number({ description: 'Space after paragraph in points' })),\n grid: Type.Optional(GridPositionSchema),\n style: Type.Optional(StyleNameSchema),\n },\n {\n description: 'Text component props',\n additionalProperties: false,\n }\n);\n\nexport type TextProps = Static<typeof TextPropsSchema>;\n","/**\n * Common Types and Schemas for PPTX Components\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { ColorValueSchema } from '../theme';\n\n// ============================================================================\n// PPTX-Specific Common Types\n// ============================================================================\n\nexport const PositionSchema = Type.Object(\n {\n x: Type.Optional(\n Type.Union([\n Type.Number({ description: 'X position in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'X position as percentage (e.g., \"10%\")',\n }),\n ])\n ),\n y: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Y position in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Y position as percentage (e.g., \"10%\")',\n }),\n ])\n ),\n w: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Width in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Width as percentage (e.g., \"80%\")',\n }),\n ])\n ),\n h: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Height in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Height as percentage (e.g., \"20%\")',\n }),\n ])\n ),\n },\n {\n description: 'Position and size in inches or percentages',\n additionalProperties: false,\n }\n);\n\nexport const SlideBackgroundSchema = Type.Object(\n {\n color: Type.Optional(ColorValueSchema),\n image: Type.Optional(\n Type.Object(\n {\n path: Type.Optional(Type.String({ description: 'Image file path or URL' })),\n base64: Type.Optional(\n Type.String({ description: 'Base64-encoded image data' })\n ),\n },\n { description: 'Background image', additionalProperties: false }\n )\n ),\n },\n {\n description: 'Slide background configuration',\n additionalProperties: false,\n }\n);\n\nexport const TransitionSchema = Type.Object(\n {\n type: Type.Optional(\n Type.Union(\n [\n Type.Literal('fade'),\n Type.Literal('push'),\n Type.Literal('wipe'),\n Type.Literal('zoom'),\n Type.Literal('none'),\n ],\n { description: 'Transition effect type' }\n )\n ),\n speed: Type.Optional(\n Type.Union(\n [Type.Literal('slow'), Type.Literal('medium'), Type.Literal('fast')],\n { description: 'Transition speed' }\n )\n ),\n },\n {\n description: 'Slide transition configuration',\n additionalProperties: false,\n }\n);\n\nexport const PptxAlignmentSchema = Type.Union(\n [Type.Literal('left'), Type.Literal('center'), Type.Literal('right')],\n { description: 'Horizontal alignment options' }\n);\n\nexport const VerticalAlignmentSchema = Type.Union(\n [Type.Literal('top'), Type.Literal('middle'), Type.Literal('bottom')],\n { description: 'Vertical alignment options' }\n);\n\nexport const ShadowSchema = Type.Object(\n {\n type: Type.Optional(\n Type.Union([Type.Literal('outer'), Type.Literal('inner')], {\n description: 'Shadow type',\n })\n ),\n color: Type.Optional(ColorValueSchema),\n blur: Type.Optional(Type.Number({ description: 'Shadow blur radius in points' })),\n offset: Type.Optional(Type.Number({ description: 'Shadow offset in points' })),\n angle: Type.Optional(Type.Number({ description: 'Shadow angle in degrees' })),\n opacity: Type.Optional(\n Type.Number({\n minimum: 0,\n maximum: 1,\n description: 'Shadow opacity (0-1)',\n })\n ),\n },\n {\n description: 'Shadow configuration',\n additionalProperties: false,\n }\n);\n\nexport const GridPositionSchema = Type.Object(\n {\n column: Type.Number({ minimum: 0, description: 'Starting column (0-indexed)' }),\n row: Type.Number({ minimum: 0, description: 'Starting row (0-indexed)' }),\n columnSpan: Type.Optional(Type.Number({ minimum: 1, description: 'Number of columns to span (default: 1)' })),\n rowSpan: Type.Optional(Type.Number({ minimum: 1, description: 'Number of rows to span (default: 1)' })),\n },\n { additionalProperties: false, description: 'Grid-based positioning' }\n);\n\nexport type GridPosition = Static<typeof GridPositionSchema>;\n\n// ============================================================================\n// TypeScript Types\n// ============================================================================\n\nexport type Position = Static<typeof PositionSchema>;\nexport type SlideBackground = Static<typeof SlideBackgroundSchema>;\nexport type Transition = Static<typeof TransitionSchema>;\nexport type PptxAlignment = Static<typeof PptxAlignmentSchema>;\nexport type VerticalAlignment = Static<typeof VerticalAlignmentSchema>;\nexport type Shadow = Static<typeof ShadowSchema>;\n","/**\n * PPTX Theme Schema\n * Simplified theme configuration for presentations\n */\nimport { Type, Static } from '@sinclair/typebox';\nimport { FontFamilyNameSchema } from '@json-to-office/shared';\nimport { PptxComponentDefaultsSchema } from './component-defaults';\n\nexport const GridMarginSchema = Type.Union(\n [\n Type.Number({ description: 'Margin in inches (all sides)' }),\n Type.Object(\n {\n top: Type.Number({ description: 'Top margin in inches' }),\n right: Type.Number({ description: 'Right margin in inches' }),\n bottom: Type.Number({ description: 'Bottom margin in inches' }),\n left: Type.Number({ description: 'Left margin in inches' }),\n },\n { additionalProperties: false }\n ),\n ],\n { description: 'Slide margins in inches' }\n);\n\nexport const GridGutterSchema = Type.Union(\n [\n Type.Number({ description: 'Gutter in inches (both axes)' }),\n Type.Object(\n {\n column: Type.Number({ description: 'Column gutter in inches' }),\n row: Type.Number({ description: 'Row gutter in inches' }),\n },\n { additionalProperties: false }\n ),\n ],\n { description: 'Gaps between grid tracks in inches' }\n);\n\nexport const GridConfigSchema = Type.Object(\n {\n columns: Type.Optional(Type.Number({ minimum: 1, description: 'Number of columns (default: 12)' })),\n rows: Type.Optional(Type.Number({ minimum: 1, description: 'Number of rows (default: 6)' })),\n margin: Type.Optional(GridMarginSchema),\n gutter: Type.Optional(GridGutterSchema),\n },\n { additionalProperties: false, description: 'Grid layout configuration' }\n);\n\nexport type GridMargin = Static<typeof GridMarginSchema>;\nexport type GridGutter = Static<typeof GridGutterSchema>;\nexport type GridConfig = Static<typeof GridConfigSchema>;\n\nconst HexColorSchema = Type.String({ pattern: '^#?[0-9A-Fa-f]{6}$', description: 'Hex color (e.g. #FF0000)' });\n\nexport const SEMANTIC_COLOR_NAMES = [\n 'primary', 'secondary', 'accent', 'background', 'text',\n 'text2', 'background2', 'accent4', 'accent5', 'accent6',\n] as const;\n\n/** PowerPoint XML aliases that resolve to canonical semantic names at runtime */\nexport const SEMANTIC_COLOR_ALIASES = [\n 'accent1', 'accent2', 'accent3', 'tx1', 'tx2', 'bg1', 'bg2',\n] as const;\n\nexport const ColorValueSchema = Type.Union([\n HexColorSchema,\n ...SEMANTIC_COLOR_NAMES.map(n => Type.Literal(n)),\n ...SEMANTIC_COLOR_ALIASES.map(n => Type.Literal(n)),\n], { description: 'Hex color or semantic theme color name' });\n\n// ── Named text styles ──────────────────────────────────────────────\n\nexport const STYLE_NAMES = [\n 'title', 'subtitle',\n 'heading1', 'heading2', 'heading3',\n 'body', 'caption',\n] as const;\n\nexport const StyleNameSchema = Type.Union(\n STYLE_NAMES.map(n => Type.Literal(n)),\n { description: 'Predefined style name' }\n);\n\nexport const TextStyleSchema = Type.Object({\n fontSize: Type.Optional(Type.Number()),\n fontFace: Type.Optional(FontFamilyNameSchema),\n fontColor: Type.Optional(ColorValueSchema),\n bold: Type.Optional(Type.Boolean()),\n fontWeight: Type.Optional(Type.Integer({ minimum: 100, maximum: 900 })),\n italic: Type.Optional(Type.Boolean()),\n align: Type.Optional(Type.Union([\n Type.Literal('left'), Type.Literal('center'), Type.Literal('right'), Type.Literal('justify'),\n ])),\n lineSpacing: Type.Optional(Type.Number()),\n charSpacing: Type.Optional(Type.Number()),\n paraSpaceAfter: Type.Optional(Type.Number()),\n}, { additionalProperties: false, description: 'Text style preset' });\n\nexport type StyleName = (typeof STYLE_NAMES)[number];\nexport type TextStyle = Static<typeof TextStyleSchema>;\n\n// ── Theme config ───────────────────────────────────────────────────\n\nexport const ThemeConfigSchema = Type.Object(\n {\n name: Type.String({ description: 'Theme name' }),\n colors: Type.Object(\n {\n primary: HexColorSchema,\n secondary: HexColorSchema,\n accent: HexColorSchema,\n background: HexColorSchema,\n text: HexColorSchema,\n text2: Type.Optional(HexColorSchema),\n background2: Type.Optional(HexColorSchema),\n accent4: Type.Optional(HexColorSchema),\n accent5: Type.Optional(HexColorSchema),\n accent6: Type.Optional(HexColorSchema),\n },\n { additionalProperties: false, description: 'Theme color palette (10-slot scheme)' }\n ),\n fonts: Type.Object(\n {\n heading: FontFamilyNameSchema,\n body: FontFamilyNameSchema,\n },\n { additionalProperties: false, description: 'Font families' }\n ),\n defaults: Type.Object(\n {\n fontSize: Type.Number({ description: 'Default font size in points' }),\n fontColor: HexColorSchema,\n },\n { additionalProperties: false, description: 'Default text styling' }\n ),\n styles: Type.Optional(Type.Partial(\n Type.Object(Object.fromEntries(\n STYLE_NAMES.map(n => [n, TextStyleSchema])\n ) as Record<string, typeof TextStyleSchema>),\n { additionalProperties: false, description: 'Named text style presets' }\n )),\n componentDefaults: Type.Optional(PptxComponentDefaultsSchema),\n },\n { additionalProperties: false, description: 'Presentation theme configuration' }\n);\n\nexport type ThemeConfigJson = Static<typeof ThemeConfigSchema>;\n\nexport function isValidThemeConfig(data: unknown): data is ThemeConfigJson {\n return typeof data === 'object' && data !== null;\n}\n","/**\n * Image Component Schema (PPTX)\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { ShadowSchema, GridPositionSchema } from './common';\n\nexport const PptxImagePropsSchema = Type.Object(\n {\n path: Type.Optional(\n Type.String({\n description:\n 'Image file path or URL (mutually exclusive with base64 and svg)',\n })\n ),\n base64: Type.Optional(\n Type.String({\n description:\n 'Base64-encoded image data in data URI format (mutually exclusive with path and svg)',\n })\n ),\n svg: Type.Optional(\n Type.String({\n description:\n 'Raw inline SVG markup, e.g. \"<svg xmlns=\\\\\"http://www.w3.org/2000/svg\\\\\" viewBox=\\\\\"0 0 24 24\\\\\">...</svg>\" (mutually exclusive with path and base64). Wrapped into an image/svg+xml data URI and embedded as a vector (PowerPoint 2016+); intrinsic size taken from the SVG viewBox/width/height when w/h omitted.',\n })\n ),\n x: Type.Optional(\n Type.Union([\n Type.Number({ description: 'X position in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'X as percentage',\n }),\n ])\n ),\n y: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Y position in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Y as percentage',\n }),\n ])\n ),\n w: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Width in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Width as percentage',\n }),\n ])\n ),\n h: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Height in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Height as percentage',\n }),\n ])\n ),\n sizing: Type.Optional(\n Type.Object(\n {\n type: Type.Union(\n [\n Type.Literal('contain'),\n Type.Literal('cover'),\n Type.Literal('crop'),\n ],\n { description: 'Image sizing strategy' }\n ),\n w: Type.Optional(\n Type.Number({ description: 'Target width in inches' })\n ),\n h: Type.Optional(\n Type.Number({ description: 'Target height in inches' })\n ),\n },\n { description: 'Image sizing options', additionalProperties: false }\n )\n ),\n rotate: Type.Optional(\n Type.Number({ description: 'Rotation angle in degrees' })\n ),\n rounding: Type.Optional(\n Type.Boolean({ description: 'Apply rounded corners to image' })\n ),\n shadow: Type.Optional(ShadowSchema),\n hyperlink: Type.Optional(\n Type.Object(\n {\n url: Type.Optional(Type.String({ description: 'Hyperlink URL' })),\n slide: Type.Optional(\n Type.Number({ description: 'Slide number to link to' })\n ),\n tooltip: Type.Optional(\n Type.String({ description: 'Hyperlink tooltip' })\n ),\n },\n { additionalProperties: false }\n )\n ),\n alt: Type.Optional(\n Type.String({ description: 'Alternative text for accessibility' })\n ),\n grid: Type.Optional(GridPositionSchema),\n },\n {\n description: 'PPTX image component props',\n additionalProperties: false,\n }\n);\n\nexport type PptxImageProps = Static<typeof PptxImagePropsSchema>;\n","/**\n * Shape Component Schema\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { PptxAlignmentSchema, VerticalAlignmentSchema, ShadowSchema, GridPositionSchema } from './common';\nimport { StyleNameSchema } from '../theme';\n\nexport const ShapeTypeSchema = Type.Union(\n [\n Type.Literal('rect'),\n Type.Literal('roundRect'),\n Type.Literal('ellipse'),\n Type.Literal('triangle'),\n Type.Literal('diamond'),\n Type.Literal('pentagon'),\n Type.Literal('hexagon'),\n Type.Literal('star5'),\n Type.Literal('star6'),\n Type.Literal('line'),\n Type.Literal('arrow'),\n Type.Literal('chevron'),\n Type.Literal('cloud'),\n Type.Literal('heart'),\n Type.Literal('lightning'),\n ],\n { description: 'Shape type' }\n);\n\nexport const TextSegmentSchema = Type.Object(\n {\n text: Type.String(),\n fontSize: Type.Optional(Type.Number({ minimum: 1 })),\n fontFace: Type.Optional(Type.String()),\n color: Type.Optional(Type.String({ description: 'Segment color (hex without # or semantic name)' })),\n bold: Type.Optional(Type.Boolean()),\n fontWeight: Type.Optional(Type.Integer({ minimum: 100, maximum: 900 })),\n italic: Type.Optional(Type.Boolean()),\n breakLine: Type.Optional(Type.Boolean({ description: 'Insert line break after this segment' })),\n spaceBefore: Type.Optional(Type.Number({ minimum: 0, description: 'Space before paragraph in points' })),\n spaceAfter: Type.Optional(Type.Number({ minimum: 0, description: 'Space after paragraph in points' })),\n charSpacing: Type.Optional(Type.Number({ description: 'Character spacing in points' })),\n },\n { additionalProperties: false }\n);\n\nexport type TextSegment = Static<typeof TextSegmentSchema>;\n\nexport const ShapePropsSchema = Type.Object(\n {\n type: ShapeTypeSchema,\n x: Type.Optional(\n Type.Union([\n Type.Number({ description: 'X position in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'X as percentage' }),\n ])\n ),\n y: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Y position in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Y as percentage' }),\n ])\n ),\n w: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Width in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Width as percentage' }),\n ])\n ),\n h: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Height in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Height as percentage' }),\n ])\n ),\n fill: Type.Optional(\n Type.Object(\n {\n color: Type.String({ description: 'Fill color (hex without #)' }),\n transparency: Type.Optional(\n Type.Number({ minimum: 0, maximum: 100, description: 'Fill transparency (0-100)' })\n ),\n },\n { additionalProperties: false }\n )\n ),\n line: Type.Optional(\n Type.Object(\n {\n color: Type.Optional(Type.String({ description: 'Line color (hex without #)' })),\n width: Type.Optional(Type.Number({ minimum: 0, description: 'Line width in points' })),\n dashType: Type.Optional(\n Type.Union([\n Type.Literal('solid'),\n Type.Literal('dash'),\n Type.Literal('dot'),\n Type.Literal('dashDot'),\n ])\n ),\n },\n { additionalProperties: false }\n )\n ),\n text: Type.Optional(Type.Union([\n Type.String({ description: 'Plain text' }),\n Type.Array(TextSegmentSchema, { description: 'Rich text segments with per-segment formatting' }),\n ], { description: 'Text content inside the shape' })),\n fontSize: Type.Optional(Type.Number({ minimum: 1, description: 'Font size for shape text' })),\n fontFace: Type.Optional(Type.String({ description: 'Font family for shape text' })),\n fontColor: Type.Optional(Type.String({ description: 'Font color for shape text (hex without #)' })),\n charSpacing: Type.Optional(Type.Number({ description: 'Character spacing in points for shape text' })),\n bold: Type.Optional(Type.Boolean({ description: 'Bold shape text' })),\n fontWeight: Type.Optional(\n Type.Integer({\n minimum: 100,\n maximum: 900,\n description:\n 'Per-shape weight (100–900). Overrides `bold` when set.',\n })\n ),\n italic: Type.Optional(Type.Boolean({ description: 'Italic shape text' })),\n align: Type.Optional(PptxAlignmentSchema),\n valign: Type.Optional(VerticalAlignmentSchema),\n rotate: Type.Optional(Type.Number({ description: 'Rotation angle in degrees' })),\n shadow: Type.Optional(ShadowSchema),\n rectRadius: Type.Optional(\n Type.Number({\n minimum: 0,\n description: 'Corner radius for roundRect shape in inches',\n })\n ),\n grid: Type.Optional(GridPositionSchema),\n style: Type.Optional(StyleNameSchema),\n },\n {\n description: 'Shape component props',\n additionalProperties: false,\n }\n);\n\nexport type ShapeType = Static<typeof ShapeTypeSchema>;\nexport type ShapeProps = Static<typeof ShapePropsSchema>;\n","/**\n * Table Component Schema (PPTX)\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { PptxAlignmentSchema, VerticalAlignmentSchema, GridPositionSchema } from './common';\n\nconst PptxTableCellSchema = Type.Union([\n Type.String({ description: 'Simple text cell' }),\n Type.Object(\n {\n text: Type.String({ description: 'Cell text content' }),\n color: Type.Optional(Type.String({ description: 'Text color (hex without #)' })),\n fill: Type.Optional(Type.String({ description: 'Cell background color (hex without #)' })),\n fontSize: Type.Optional(Type.Number({ description: 'Font size in points' })),\n fontFace: Type.Optional(Type.String({ description: 'Font family' })),\n bold: Type.Optional(Type.Boolean({ description: 'Bold text' })),\n fontWeight: Type.Optional(\n Type.Integer({\n minimum: 100,\n maximum: 900,\n description: 'Per-cell weight (100–900). Overrides `bold` when set.',\n })\n ),\n italic: Type.Optional(Type.Boolean({ description: 'Italic text' })),\n align: Type.Optional(PptxAlignmentSchema),\n valign: Type.Optional(VerticalAlignmentSchema),\n colspan: Type.Optional(Type.Number({ minimum: 1, description: 'Column span' })),\n rowspan: Type.Optional(Type.Number({ minimum: 1, description: 'Row span' })),\n margin: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Margin in points (all sides)' }),\n Type.Array(Type.Number(), { minItems: 4, maxItems: 4 }),\n ])\n ),\n },\n { additionalProperties: false }\n ),\n]);\n\nexport const PptxTablePropsSchema = Type.Object(\n {\n rows: Type.Array(\n Type.Array(PptxTableCellSchema, { description: 'Row of cells' }),\n { description: 'Table rows (array of arrays)', minItems: 1 }\n ),\n x: Type.Optional(\n Type.Union([\n Type.Number({ description: 'X position in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'X as percentage' }),\n ])\n ),\n y: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Y position in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Y as percentage' }),\n ])\n ),\n w: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Width in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Width as percentage' }),\n ])\n ),\n h: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Height in inches' }),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$', description: 'Height as percentage' }),\n ])\n ),\n colW: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Uniform column width in inches' }),\n Type.Array(Type.Number(), { description: 'Individual column widths in inches' }),\n ])\n ),\n rowH: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Uniform row height in inches' }),\n Type.Array(Type.Number(), { description: 'Individual row heights in inches' }),\n ])\n ),\n border: Type.Optional(\n Type.Object(\n {\n type: Type.Optional(\n Type.Union([\n Type.Literal('solid'),\n Type.Literal('dash'),\n Type.Literal('dot'),\n Type.Literal('none'),\n ])\n ),\n pt: Type.Optional(Type.Number({ minimum: 0, description: 'Border width in points' })),\n color: Type.Optional(Type.String({ description: 'Border color (hex without #)' })),\n },\n { additionalProperties: false }\n )\n ),\n fill: Type.Optional(Type.String({ description: 'Table background color (hex without #)' })),\n fontSize: Type.Optional(Type.Number({ minimum: 1, description: 'Default font size for all cells' })),\n fontFace: Type.Optional(Type.String({ description: 'Default font family for all cells' })),\n color: Type.Optional(Type.String({ description: 'Default text color for all cells (hex without #)' })),\n align: Type.Optional(PptxAlignmentSchema),\n valign: Type.Optional(VerticalAlignmentSchema),\n autoPage: Type.Optional(\n Type.Boolean({ description: 'Auto-paginate table across multiple slides when content overflows' })\n ),\n autoPageRepeatHeader: Type.Optional(\n Type.Boolean({ description: 'Repeat first row as header on each auto-paged slide' })\n ),\n margin: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Cell margin in points (all sides)' }),\n Type.Array(Type.Number(), { minItems: 4, maxItems: 4 }),\n ])\n ),\n borderRadius: Type.Optional(\n Type.Number({ minimum: 0, description: 'Rounded corner radius in inches. Renders a roundRect shape behind the table.' })\n ),\n grid: Type.Optional(GridPositionSchema),\n },\n {\n description: 'PPTX table component props',\n additionalProperties: false,\n }\n);\n\nexport type PptxTableProps = Static<typeof PptxTablePropsSchema>;\n","/**\n * Highcharts Component Schema (PPTX)\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { GridPositionSchema } from './common';\n\nexport const PptxHighchartsPropsSchema = Type.Object(\n {\n options: Type.Intersect([\n Type.Record(Type.String(), Type.Unknown()),\n Type.Object({\n chart: Type.Object({\n width: Type.Number(),\n height: Type.Number(),\n }),\n }),\n ]),\n scale: Type.Optional(Type.Number()),\n serverUrl: Type.Optional(\n Type.String({\n description:\n 'Highcharts Export Server URL (default: http://localhost:7801)',\n })\n ),\n // Optional resources forwarded verbatim to the export server (CSS/JS/files).\n // Notably enables @font-face rules so charts render in custom fonts.\n resources: Type.Optional(\n Type.Object({\n css: Type.Optional(Type.String()),\n js: Type.Optional(Type.String()),\n files: Type.Optional(Type.Array(Type.String())),\n })\n ),\n x: Type.Optional(\n Type.Union([\n Type.Number({ description: 'X position in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'X as percentage',\n }),\n ])\n ),\n y: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Y position in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Y as percentage',\n }),\n ])\n ),\n w: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Width in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Width as percentage',\n }),\n ])\n ),\n h: Type.Optional(\n Type.Union([\n Type.Number({ description: 'Height in inches' }),\n Type.String({\n pattern: '^\\\\d+(\\\\.\\\\d+)?%$',\n description: 'Height as percentage',\n }),\n ])\n ),\n grid: Type.Optional(GridPositionSchema),\n },\n {\n description: 'PPTX Highcharts component props',\n additionalProperties: false,\n }\n);\n\nexport type PptxHighchartsProps = Static<typeof PptxHighchartsPropsSchema>;\n","/**\n * Chart Component Schema (PPTX) — native PowerPoint charts via pptxgenjs\n */\n\nimport { Type, Static } from '@sinclair/typebox';\nimport { GridPositionSchema } from './common';\n\nconst PositionValue = Type.Union([\n Type.Number(),\n Type.String({ pattern: '^\\\\d+(\\\\.\\\\d+)?%$' }),\n]);\n\nconst ChartTypeSchema = Type.Union(\n [\n Type.Literal('area'),\n Type.Literal('bar'),\n Type.Literal('bar3D'),\n Type.Literal('bubble'),\n Type.Literal('doughnut'),\n Type.Literal('line'),\n Type.Literal('pie'),\n Type.Literal('radar'),\n Type.Literal('scatter'),\n ],\n { description: 'Chart type' }\n);\n\nconst ChartDataSeriesSchema = Type.Object(\n {\n name: Type.Optional(Type.String({ description: 'Series name' })),\n labels: Type.Optional(Type.Array(Type.String(), { description: 'Category labels' })),\n values: Type.Optional(Type.Array(Type.Number(), { description: 'Data values' })),\n sizes: Type.Optional(Type.Array(Type.Number(), { description: 'Bubble sizes (bubble charts only)' })),\n },\n { additionalProperties: false }\n);\n\nexport const PptxChartPropsSchema = Type.Object(\n {\n type: ChartTypeSchema,\n data: Type.Array(ChartDataSeriesSchema, {\n description: 'Chart data series',\n minItems: 1,\n }),\n\n // Display toggles\n showLegend: Type.Optional(Type.Boolean({ description: 'Show chart legend' })),\n showTitle: Type.Optional(Type.Boolean({ description: 'Show chart title' })),\n showValue: Type.Optional(Type.Boolean({ description: 'Show data values' })),\n showPercent: Type.Optional(Type.Boolean({ description: 'Show percentages (pie/doughnut)' })),\n showLabel: Type.Optional(Type.Boolean({ description: 'Show category labels on data points' })),\n showSerName: Type.Optional(Type.Boolean({ description: 'Show series name on data points' })),\n\n // Title\n title: Type.Optional(Type.String({ description: 'Chart title text' })),\n titleFontSize: Type.Optional(Type.Number({ description: 'Title font size (points)' })),\n titleColor: Type.Optional(Type.String({ description: 'Title color (hex or semantic)' })),\n titleFontFace: Type.Optional(Type.String({ description: 'Title font face' })),\n\n // Chart colors\n chartColors: Type.Optional(\n Type.Array(Type.String(), {\n description: 'Series colors (hex or semantic theme names). Defaults to theme palette.',\n })\n ),\n\n // Legend\n legendPos: Type.Optional(\n Type.Union(\n [Type.Literal('b'), Type.Literal('l'), Type.Literal('r'), Type.Literal('t'), Type.Literal('tr')],\n { description: 'Legend position' }\n )\n ),\n legendFontSize: Type.Optional(Type.Number({ description: 'Legend font size' })),\n legendFontFace: Type.Optional(Type.String({ description: 'Legend font face' })),\n legendColor: Type.Optional(Type.String({ description: 'Legend text color' })),\n\n // Category axis\n catAxisTitle: Type.Optional(Type.String({ description: 'Category axis title' })),\n catAxisHidden: Type.Optional(Type.Boolean({ description: 'Hide category axis' })),\n catAxisLabelRotate: Type.Optional(Type.Number({ description: 'Category axis label rotation (degrees)' })),\n catAxisLabelFontSize: Type.Optional(Type.Number({ description: 'Category axis label font size' })),\n catAxisLabelColor: Type.Optional(Type.String({ description: 'Category axis label color (hex or semantic)' })),\n\n // Value axis\n valAxisTitle: Type.Optional(Type.String({ description: 'Value axis title' })),\n valAxisHidden: Type.Optional(Type.Boolean({ description: 'Hide value axis' })),\n valAxisMinVal: Type.Optional(Type.Number({ description: 'Value axis minimum' })),\n valAxisMaxVal: Type.Optional(Type.Number({ description: 'Value axis maximum' })),\n valAxisLabelFormatCode: Type.Optional(Type.String({ description: 'Value axis label format (e.g. \"$0.00\", \"#%\")' })),\n valAxisMajorUnit: Type.Optional(Type.Number({ description: 'Value axis major unit / tick interval' })),\n valAxisLabelColor: Type.Optional(Type.String({ description: 'Value axis label color (hex or semantic)' })),\n\n // Bar-specific\n barDir: Type.Optional(\n Type.Union([Type.Literal('bar'), Type.Literal('col')], {\n description: 'Bar direction: \"bar\" (horizontal) or \"col\" (vertical, default)',\n })\n ),\n barGrouping: Type.Optional(\n Type.Union(\n [Type.Literal('clustered'), Type.Literal('stacked'), Type.Literal('percentStacked')],\n { description: 'Bar grouping style' }\n )\n ),\n barGapWidthPct: Type.Optional(\n Type.Number({ minimum: 0, maximum: 500, description: 'Bar gap width (0-500%)' })\n ),\n\n // Line-specific\n lineSmooth: Type.Optional(Type.Boolean({ description: 'Smooth lines' })),\n lineDataSymbol: Type.Optional(\n Type.Union(\n [\n Type.Literal('circle'),\n Type.Literal('dash'),\n Type.Literal('diamond'),\n Type.Literal('dot'),\n Type.Literal('none'),\n Type.Literal('square'),\n Type.Literal('triangle'),\n ],\n { description: 'Line data point marker symbol' }\n )\n ),\n lineSize: Type.Optional(Type.Number({ description: 'Line width (points)' })),\n\n // Pie/doughnut-specific\n firstSliceAng: Type.Optional(Type.Number({ minimum: 0, maximum: 359, description: 'Angle of first slice (degrees)' })),\n holeSize: Type.Optional(Type.Number({ minimum: 10, maximum: 90, description: 'Doughnut hole size (%)' })),\n\n // Radar-specific\n radarStyle: Type.Optional(\n Type.Union(\n [Type.Literal('standard'), Type.Literal('marker'), Type.Literal('filled')],\n { description: 'Radar chart style' }\n )\n ),\n\n // Data labels\n dataLabelColor: Type.Optional(Type.String({ description: 'Data label text color' })),\n dataLabelFontSize: Type.Optional(Type.Number({ description: 'Data label font size' })),\n dataLabelFontFace: Type.Optional(Type.String({ description: 'Data label font face' })),\n dataLabelFontBold: Type.Optional(Type.Boolean({ description: 'Bold data labels' })),\n dataLabelPosition: Type.Optional(\n Type.Union(\n [\n Type.Literal('b'),\n Type.Literal('bestFit'),\n Type.Literal('ctr'),\n Type.Literal('l'),\n Type.Literal('r'),\n Type.Literal('t'),\n Type.Literal('inEnd'),\n Type.Literal('outEnd'),\n ],\n { description: 'Data label position' }\n )\n ),\n\n // Positioning\n x: Type.Optional(PositionValue),\n y: Type.Optional(PositionValue),\n w: Type.Optional(PositionValue),\n h: Type.Optional(PositionValue),\n grid: Type.Optional(GridPositionSchema),\n },\n {\n description: 'Native PowerPoint chart component props',\n additionalProperties: false,\n }\n);\n\nexport type PptxChartProps = Static<typeof PptxChartPropsSchema>;\n"],"mappings":"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","names":["Type","Type","FontFamilyNameSchema","Type","Type","Type","FontFamilyNameSchema","Type","Type","Type","Type","Type","Type","Type","Type","Type","Type","Type"]}
|