@json-to-office/core-docx 4.2.0 → 4.4.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/core/layout.d.ts.map +1 -1
- package/dist/index.js +31 -19
- package/dist/index.js.map +1 -1
- package/dist/plugin/example/index.js +23 -11
- package/dist/plugin/example/index.js.map +1 -1
- package/dist/templates/blueprints/client-report.docx.blueprint.json +8 -8
- package/dist/templates/themes/index.d.ts +130 -5
- package/dist/templates/themes/index.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"slots": {
|
|
63
63
|
"number": "01",
|
|
64
64
|
"title": "{{Section title: the finding, as a statement}}",
|
|
65
|
-
"tracker": "{{Tracker: one
|
|
65
|
+
"tracker": "{{Tracker: one word}}"
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
},
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
"slots": {
|
|
121
121
|
"number": "02",
|
|
122
122
|
"title": "{{Section title: the finding, as a statement}}",
|
|
123
|
-
"tracker": "{{Tracker: one
|
|
123
|
+
"tracker": "{{Tracker: one word}}"
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
},
|
|
@@ -193,7 +193,7 @@
|
|
|
193
193
|
"slots": {
|
|
194
194
|
"number": "03",
|
|
195
195
|
"title": "{{Section title: the finding, as a statement}}",
|
|
196
|
-
"tracker": "{{Tracker: one
|
|
196
|
+
"tracker": "{{Tracker: one word}}"
|
|
197
197
|
}
|
|
198
198
|
}
|
|
199
199
|
},
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"slots": {
|
|
248
248
|
"number": "04",
|
|
249
249
|
"title": "{{Section title: the finding, as a statement}}",
|
|
250
|
-
"tracker": "{{Tracker: one
|
|
250
|
+
"tracker": "{{Tracker: one word}}"
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
253
|
},
|
|
@@ -319,7 +319,7 @@
|
|
|
319
319
|
"slots": {
|
|
320
320
|
"number": "01",
|
|
321
321
|
"title": "{{Section title: the finding, as a statement}}",
|
|
322
|
-
"tracker": "{{Tracker: one
|
|
322
|
+
"tracker": "{{Tracker: one word}}"
|
|
323
323
|
}
|
|
324
324
|
}
|
|
325
325
|
},
|
|
@@ -360,7 +360,7 @@
|
|
|
360
360
|
"slots": {
|
|
361
361
|
"number": "02",
|
|
362
362
|
"title": "{{Section title: the finding, as a statement}}",
|
|
363
|
-
"tracker": "{{Tracker: one
|
|
363
|
+
"tracker": "{{Tracker: one word}}"
|
|
364
364
|
}
|
|
365
365
|
}
|
|
366
366
|
},
|
|
@@ -398,7 +398,7 @@
|
|
|
398
398
|
"slots": {
|
|
399
399
|
"number": "03",
|
|
400
400
|
"title": "{{Section title: the finding, as a statement}}",
|
|
401
|
-
"tracker": "{{Tracker: one
|
|
401
|
+
"tracker": "{{Tracker: one word}}"
|
|
402
402
|
}
|
|
403
403
|
}
|
|
404
404
|
},
|
|
@@ -449,7 +449,7 @@
|
|
|
449
449
|
"slots": {
|
|
450
450
|
"number": "04",
|
|
451
451
|
"title": "{{Section title: the finding, as a statement}}",
|
|
452
|
-
"tracker": "{{Tracker: one
|
|
452
|
+
"tracker": "{{Tracker: one word}}"
|
|
453
453
|
}
|
|
454
454
|
}
|
|
455
455
|
},
|
|
@@ -1298,11 +1298,36 @@ export declare const themes: Record<string, {
|
|
|
1298
1298
|
item?: number | undefined;
|
|
1299
1299
|
} | undefined;
|
|
1300
1300
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
1301
|
+
keepNext?: boolean | undefined;
|
|
1301
1302
|
indent?: number | {
|
|
1302
1303
|
left?: number | undefined;
|
|
1303
1304
|
hanging?: number | undefined;
|
|
1304
1305
|
} | undefined;
|
|
1306
|
+
font?: {
|
|
1307
|
+
spacing?: {
|
|
1308
|
+
before?: number | undefined;
|
|
1309
|
+
after?: number | undefined;
|
|
1310
|
+
} | undefined;
|
|
1311
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
1312
|
+
size?: number | undefined;
|
|
1313
|
+
color?: string | undefined;
|
|
1314
|
+
bold?: boolean | undefined;
|
|
1315
|
+
fontWeight?: number | undefined;
|
|
1316
|
+
italic?: boolean | undefined;
|
|
1317
|
+
underline?: boolean | undefined;
|
|
1318
|
+
lineSpacing?: {
|
|
1319
|
+
value?: number | undefined;
|
|
1320
|
+
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
1321
|
+
} | undefined;
|
|
1322
|
+
characterSpacing?: {
|
|
1323
|
+
type: "condensed" | "expanded";
|
|
1324
|
+
value: number;
|
|
1325
|
+
} | undefined;
|
|
1326
|
+
scale?: number | undefined;
|
|
1327
|
+
family?: string | undefined;
|
|
1328
|
+
} | undefined;
|
|
1305
1329
|
start?: number | undefined;
|
|
1330
|
+
keepLines?: boolean | undefined;
|
|
1306
1331
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | "numbered" | undefined;
|
|
1307
1332
|
items?: (string | {
|
|
1308
1333
|
id?: string | undefined;
|
|
@@ -1317,6 +1342,7 @@ export declare const themes: Record<string, {
|
|
|
1317
1342
|
} | undefined;
|
|
1318
1343
|
text: string;
|
|
1319
1344
|
})[] | undefined;
|
|
1345
|
+
bullet?: string | undefined;
|
|
1320
1346
|
reference?: string | undefined;
|
|
1321
1347
|
levels?: {
|
|
1322
1348
|
text?: string | undefined;
|
|
@@ -1337,7 +1363,6 @@ export declare const themes: Record<string, {
|
|
|
1337
1363
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
1338
1364
|
level: number;
|
|
1339
1365
|
}[] | undefined;
|
|
1340
|
-
bullet?: string | undefined;
|
|
1341
1366
|
} | undefined;
|
|
1342
1367
|
} | undefined;
|
|
1343
1368
|
noProofWords?: string[] | undefined;
|
|
@@ -3089,11 +3114,36 @@ export declare const minimalTheme: {
|
|
|
3089
3114
|
item?: number | undefined;
|
|
3090
3115
|
} | undefined;
|
|
3091
3116
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
3117
|
+
keepNext?: boolean | undefined;
|
|
3092
3118
|
indent?: number | {
|
|
3093
3119
|
left?: number | undefined;
|
|
3094
3120
|
hanging?: number | undefined;
|
|
3095
3121
|
} | undefined;
|
|
3122
|
+
font?: {
|
|
3123
|
+
spacing?: {
|
|
3124
|
+
before?: number | undefined;
|
|
3125
|
+
after?: number | undefined;
|
|
3126
|
+
} | undefined;
|
|
3127
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
3128
|
+
size?: number | undefined;
|
|
3129
|
+
color?: string | undefined;
|
|
3130
|
+
bold?: boolean | undefined;
|
|
3131
|
+
fontWeight?: number | undefined;
|
|
3132
|
+
italic?: boolean | undefined;
|
|
3133
|
+
underline?: boolean | undefined;
|
|
3134
|
+
lineSpacing?: {
|
|
3135
|
+
value?: number | undefined;
|
|
3136
|
+
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
3137
|
+
} | undefined;
|
|
3138
|
+
characterSpacing?: {
|
|
3139
|
+
type: "condensed" | "expanded";
|
|
3140
|
+
value: number;
|
|
3141
|
+
} | undefined;
|
|
3142
|
+
scale?: number | undefined;
|
|
3143
|
+
family?: string | undefined;
|
|
3144
|
+
} | undefined;
|
|
3096
3145
|
start?: number | undefined;
|
|
3146
|
+
keepLines?: boolean | undefined;
|
|
3097
3147
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | "numbered" | undefined;
|
|
3098
3148
|
items?: (string | {
|
|
3099
3149
|
id?: string | undefined;
|
|
@@ -3108,6 +3158,7 @@ export declare const minimalTheme: {
|
|
|
3108
3158
|
} | undefined;
|
|
3109
3159
|
text: string;
|
|
3110
3160
|
})[] | undefined;
|
|
3161
|
+
bullet?: string | undefined;
|
|
3111
3162
|
reference?: string | undefined;
|
|
3112
3163
|
levels?: {
|
|
3113
3164
|
text?: string | undefined;
|
|
@@ -3128,7 +3179,6 @@ export declare const minimalTheme: {
|
|
|
3128
3179
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
3129
3180
|
level: number;
|
|
3130
3181
|
}[] | undefined;
|
|
3131
|
-
bullet?: string | undefined;
|
|
3132
3182
|
} | undefined;
|
|
3133
3183
|
} | undefined;
|
|
3134
3184
|
noProofWords?: string[] | undefined;
|
|
@@ -4845,11 +4895,36 @@ export declare const devportalTheme: {
|
|
|
4845
4895
|
item?: number | undefined;
|
|
4846
4896
|
} | undefined;
|
|
4847
4897
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
4898
|
+
keepNext?: boolean | undefined;
|
|
4848
4899
|
indent?: number | {
|
|
4849
4900
|
left?: number | undefined;
|
|
4850
4901
|
hanging?: number | undefined;
|
|
4851
4902
|
} | undefined;
|
|
4903
|
+
font?: {
|
|
4904
|
+
spacing?: {
|
|
4905
|
+
before?: number | undefined;
|
|
4906
|
+
after?: number | undefined;
|
|
4907
|
+
} | undefined;
|
|
4908
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
4909
|
+
size?: number | undefined;
|
|
4910
|
+
color?: string | undefined;
|
|
4911
|
+
bold?: boolean | undefined;
|
|
4912
|
+
fontWeight?: number | undefined;
|
|
4913
|
+
italic?: boolean | undefined;
|
|
4914
|
+
underline?: boolean | undefined;
|
|
4915
|
+
lineSpacing?: {
|
|
4916
|
+
value?: number | undefined;
|
|
4917
|
+
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
4918
|
+
} | undefined;
|
|
4919
|
+
characterSpacing?: {
|
|
4920
|
+
type: "condensed" | "expanded";
|
|
4921
|
+
value: number;
|
|
4922
|
+
} | undefined;
|
|
4923
|
+
scale?: number | undefined;
|
|
4924
|
+
family?: string | undefined;
|
|
4925
|
+
} | undefined;
|
|
4852
4926
|
start?: number | undefined;
|
|
4927
|
+
keepLines?: boolean | undefined;
|
|
4853
4928
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | "numbered" | undefined;
|
|
4854
4929
|
items?: (string | {
|
|
4855
4930
|
id?: string | undefined;
|
|
@@ -4864,6 +4939,7 @@ export declare const devportalTheme: {
|
|
|
4864
4939
|
} | undefined;
|
|
4865
4940
|
text: string;
|
|
4866
4941
|
})[] | undefined;
|
|
4942
|
+
bullet?: string | undefined;
|
|
4867
4943
|
reference?: string | undefined;
|
|
4868
4944
|
levels?: {
|
|
4869
4945
|
text?: string | undefined;
|
|
@@ -4884,7 +4960,6 @@ export declare const devportalTheme: {
|
|
|
4884
4960
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
4885
4961
|
level: number;
|
|
4886
4962
|
}[] | undefined;
|
|
4887
|
-
bullet?: string | undefined;
|
|
4888
4963
|
} | undefined;
|
|
4889
4964
|
} | undefined;
|
|
4890
4965
|
noProofWords?: string[] | undefined;
|
|
@@ -6601,11 +6676,36 @@ export declare const vermilionTheme: {
|
|
|
6601
6676
|
item?: number | undefined;
|
|
6602
6677
|
} | undefined;
|
|
6603
6678
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
6679
|
+
keepNext?: boolean | undefined;
|
|
6604
6680
|
indent?: number | {
|
|
6605
6681
|
left?: number | undefined;
|
|
6606
6682
|
hanging?: number | undefined;
|
|
6607
6683
|
} | undefined;
|
|
6684
|
+
font?: {
|
|
6685
|
+
spacing?: {
|
|
6686
|
+
before?: number | undefined;
|
|
6687
|
+
after?: number | undefined;
|
|
6688
|
+
} | undefined;
|
|
6689
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
6690
|
+
size?: number | undefined;
|
|
6691
|
+
color?: string | undefined;
|
|
6692
|
+
bold?: boolean | undefined;
|
|
6693
|
+
fontWeight?: number | undefined;
|
|
6694
|
+
italic?: boolean | undefined;
|
|
6695
|
+
underline?: boolean | undefined;
|
|
6696
|
+
lineSpacing?: {
|
|
6697
|
+
value?: number | undefined;
|
|
6698
|
+
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
6699
|
+
} | undefined;
|
|
6700
|
+
characterSpacing?: {
|
|
6701
|
+
type: "condensed" | "expanded";
|
|
6702
|
+
value: number;
|
|
6703
|
+
} | undefined;
|
|
6704
|
+
scale?: number | undefined;
|
|
6705
|
+
family?: string | undefined;
|
|
6706
|
+
} | undefined;
|
|
6608
6707
|
start?: number | undefined;
|
|
6708
|
+
keepLines?: boolean | undefined;
|
|
6609
6709
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | "numbered" | undefined;
|
|
6610
6710
|
items?: (string | {
|
|
6611
6711
|
id?: string | undefined;
|
|
@@ -6620,6 +6720,7 @@ export declare const vermilionTheme: {
|
|
|
6620
6720
|
} | undefined;
|
|
6621
6721
|
text: string;
|
|
6622
6722
|
})[] | undefined;
|
|
6723
|
+
bullet?: string | undefined;
|
|
6623
6724
|
reference?: string | undefined;
|
|
6624
6725
|
levels?: {
|
|
6625
6726
|
text?: string | undefined;
|
|
@@ -6640,7 +6741,6 @@ export declare const vermilionTheme: {
|
|
|
6640
6741
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
6641
6742
|
level: number;
|
|
6642
6743
|
}[] | undefined;
|
|
6643
|
-
bullet?: string | undefined;
|
|
6644
6744
|
} | undefined;
|
|
6645
6745
|
} | undefined;
|
|
6646
6746
|
noProofWords?: string[] | undefined;
|
|
@@ -8357,11 +8457,36 @@ export declare const consultingTheme: {
|
|
|
8357
8457
|
item?: number | undefined;
|
|
8358
8458
|
} | undefined;
|
|
8359
8459
|
alignment?: "left" | "right" | "center" | "justify" | undefined;
|
|
8460
|
+
keepNext?: boolean | undefined;
|
|
8360
8461
|
indent?: number | {
|
|
8361
8462
|
left?: number | undefined;
|
|
8362
8463
|
hanging?: number | undefined;
|
|
8363
8464
|
} | undefined;
|
|
8465
|
+
font?: {
|
|
8466
|
+
spacing?: {
|
|
8467
|
+
before?: number | undefined;
|
|
8468
|
+
after?: number | undefined;
|
|
8469
|
+
} | undefined;
|
|
8470
|
+
case?: "none" | "upper" | "smallCaps" | undefined;
|
|
8471
|
+
size?: number | undefined;
|
|
8472
|
+
color?: string | undefined;
|
|
8473
|
+
bold?: boolean | undefined;
|
|
8474
|
+
fontWeight?: number | undefined;
|
|
8475
|
+
italic?: boolean | undefined;
|
|
8476
|
+
underline?: boolean | undefined;
|
|
8477
|
+
lineSpacing?: {
|
|
8478
|
+
value?: number | undefined;
|
|
8479
|
+
type: "single" | "atLeast" | "exactly" | "double" | "multiple";
|
|
8480
|
+
} | undefined;
|
|
8481
|
+
characterSpacing?: {
|
|
8482
|
+
type: "condensed" | "expanded";
|
|
8483
|
+
value: number;
|
|
8484
|
+
} | undefined;
|
|
8485
|
+
scale?: number | undefined;
|
|
8486
|
+
family?: string | undefined;
|
|
8487
|
+
} | undefined;
|
|
8364
8488
|
start?: number | undefined;
|
|
8489
|
+
keepLines?: boolean | undefined;
|
|
8365
8490
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | "numbered" | undefined;
|
|
8366
8491
|
items?: (string | {
|
|
8367
8492
|
id?: string | undefined;
|
|
@@ -8376,6 +8501,7 @@ export declare const consultingTheme: {
|
|
|
8376
8501
|
} | undefined;
|
|
8377
8502
|
text: string;
|
|
8378
8503
|
})[] | undefined;
|
|
8504
|
+
bullet?: string | undefined;
|
|
8379
8505
|
reference?: string | undefined;
|
|
8380
8506
|
levels?: {
|
|
8381
8507
|
text?: string | undefined;
|
|
@@ -8396,7 +8522,6 @@ export declare const consultingTheme: {
|
|
|
8396
8522
|
format?: "none" | "decimal" | "bullet" | "upperRoman" | "lowerRoman" | "upperLetter" | "lowerLetter" | "ordinal" | "cardinalText" | "ordinalText" | "hex" | "chicago" | "ideographDigital" | "japaneseCounting" | "aiueo" | "iroha" | "decimalFullWidth" | "decimalHalfWidth" | "japaneseLegal" | "japaneseDigitalTenThousand" | "decimalEnclosedCircle" | "decimalFullWidth2" | "aiueoFullWidth" | "irohaFullWidth" | "decimalZero" | "ganada" | "chosung" | "decimalEnclosedFullstop" | "decimalEnclosedParen" | "decimalEnclosedCircleChinese" | "ideographEnclosedCircle" | "ideographTraditional" | "ideographZodiac" | "ideographZodiacTraditional" | "taiwaneseCounting" | "ideographLegalTraditional" | "taiwaneseCountingThousand" | "taiwaneseDigital" | "chineseCounting" | "chineseLegalSimplified" | "chineseCountingThousand" | "koreanDigital" | "koreanCounting" | "koreanLegal" | "koreanDigital2" | "vietnameseCounting" | "russianLower" | "russianUpper" | "numberInDash" | "hebrew1" | "hebrew2" | "arabicAlpha" | "arabicAbjad" | "hindiVowels" | "hindiConsonants" | "hindiNumbers" | "hindiCounting" | "thaiLetters" | "thaiNumbers" | "thaiCounting" | undefined;
|
|
8397
8523
|
level: number;
|
|
8398
8524
|
}[] | undefined;
|
|
8399
|
-
bullet?: string | undefined;
|
|
8400
8525
|
} | undefined;
|
|
8401
8526
|
} | undefined;
|
|
8402
8527
|
noProofWords?: string[] | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/templates/themes/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,OAAO,EAEL,KAAK,eAAe,EACrB,MAAM,6BAA6B,CAAC;AAgFrC,eAAO,MAAM,MAAM
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/templates/themes/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAoB,CAAC;AAC9C,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAsB,CAAC;AAClD,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAsB,CAAC;AAClD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAuB,CAAC"}
|