@json-to-office/core-pptx 1.3.0 → 1.5.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.
@@ -1 +1 @@
1
- {"version":3,"file":"compiler.d.ts","sourceRoot":"","sources":["../../src/ir/compiler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,EAEL,KAAK,kBAAkB,EACxB,MAAM,kCAAkC,CAAC;AAG1C,OAAO,KAAK,EAEV,eAAe,EAGf,qBAAqB,EAKtB,MAAM,UAAU,CAAC;AAalB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAM9C,OAAO,EAGL,KAAK,MAAM,EA+BZ,MAAM,SAAS,CAAC;AAWjB,gEAAgE;AAChE,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,2EAA2E;IAC3E,QAAQ,EAAE,SAAS,kBAAkB,CAAC,WAAW,CAAC,EAAE,CAAC;IACrD,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B;;;;OAIG;IACH,WAAW,EAAE,oBAAoB,EAAE,CAAC;CACrC;AAeD,wBAAgB,mBAAmB,CACjC,SAAS,EAAE,qBAAqB,EAChC,QAAQ,GAAE,eAAe,EAAO,GAC/B,iBAAiB,CAmDnB"}
1
+ {"version":3,"file":"compiler.d.ts","sourceRoot":"","sources":["../../src/ir/compiler.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;GAiBG;AAEH,OAAO,EAEL,KAAK,kBAAkB,EACxB,MAAM,kCAAkC,CAAC;AAG1C,OAAO,KAAK,EACV,eAAe,EAGf,qBAAqB,EAKtB,MAAM,UAAU,CAAC;AAWlB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,YAAY,CAAC;AAM9C,OAAO,EAGL,KAAK,MAAM,EA+BZ,MAAM,SAAS,CAAC;AAWjB,gEAAgE;AAChE,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,iBAAiB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,2EAA2E;IAC3E,QAAQ,EAAE,SAAS,kBAAkB,CAAC,WAAW,CAAC,EAAE,CAAC;IACrD,QAAQ,EAAE,eAAe,EAAE,CAAC;IAC5B;;;;OAIG;IACH,WAAW,EAAE,oBAAoB,EAAE,CAAC;CACrC;AAwBD,wBAAgB,mBAAmB,CACjC,SAAS,EAAE,qBAAqB,EAChC,QAAQ,GAAE,eAAe,EAAO,GAC/B,iBAAiB,CAoDnB"}
@@ -0,0 +1,59 @@
1
+ import type { PreparedDocument, QualityFact } from '@json-to-office/quality';
2
+ import type { FontRuntimeOpts, ServicesConfig } from '@json-to-office/shared';
3
+ import type { PipelineWarning, PptxThemeConfig, PresentationComponentDefinition, ProcessedPresentation } from '../types';
4
+ export interface PptxCanvasFact extends QualityFact {
5
+ kind: 'pptx/canvas';
6
+ widthIn?: number;
7
+ heightIn?: number;
8
+ }
9
+ export interface PptxTextFact extends QualityFact {
10
+ kind: 'pptx/text';
11
+ slidePath: string;
12
+ text: string;
13
+ fontSizePt: number;
14
+ lineSpacingPt: number;
15
+ paraSpaceBeforePt: number;
16
+ paraSpaceAfterPt: number;
17
+ styleName?: string;
18
+ boxXPt?: number;
19
+ boxYPt?: number;
20
+ boxWidthPt?: number;
21
+ boxHeightPt?: number;
22
+ verticalAlign: 'top' | 'middle' | 'bottom';
23
+ rotationDeg: number;
24
+ /**
25
+ * True when neither `h` nor a grid supplies a height. The compiler resolves
26
+ * grid positions before checking `props.h`, so grid height is a hard ceiling.
27
+ */
28
+ autoFit: boolean;
29
+ /** Effective bold, from the run or its named style. */
30
+ bold: boolean;
31
+ /** Resolved run colour, bare hex, when the document states one. */
32
+ colorHex?: string;
33
+ /**
34
+ * Every colour the surface behind this text can paint, bare hex. A gradient
35
+ * contributes each stop: text has to stay legible over all of them, and the
36
+ * worst stop is the one a reader notices.
37
+ */
38
+ backgroundHexes?: readonly string[];
39
+ }
40
+ export interface PptxSlideFact extends QualityFact {
41
+ kind: 'pptx/slide';
42
+ bodyWords: number;
43
+ }
44
+ export type PptxQualityFact = PptxCanvasFact | PptxTextFact | PptxSlideFact;
45
+ export interface PptxQualityModel {
46
+ authored: PresentationComponentDefinition;
47
+ document: PresentationComponentDefinition;
48
+ theme: PptxThemeConfig;
49
+ processed: ProcessedPresentation;
50
+ }
51
+ export interface PreparePptxQualityOptions {
52
+ customThemes?: Record<string, PptxThemeConfig>;
53
+ fonts?: FontRuntimeOpts;
54
+ services?: ServicesConfig;
55
+ warnings?: PipelineWarning[];
56
+ renderer?: string;
57
+ }
58
+ export declare function preparePptxQualityDocument(document: PresentationComponentDefinition, options?: PreparePptxQualityOptions): PreparedDocument<PptxQualityModel, PptxQualityFact>;
59
+ //# sourceMappingURL=facts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"facts.d.ts","sourceRoot":"","sources":["../../src/quality/facts.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,gBAAgB,EAEhB,WAAW,EACZ,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE9E,OAAO,KAAK,EAGV,eAAe,EAEf,eAAe,EACf,+BAA+B,EAC/B,qBAAqB,EAEtB,MAAM,UAAU,CAAC;AASlB,MAAM,WAAW,cAAe,SAAQ,WAAW;IACjD,IAAI,EAAE,aAAa,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,YAAa,SAAQ,WAAW;IAC/C,IAAI,EAAE,WAAW,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,gBAAgB,EAAE,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,KAAK,GAAG,QAAQ,GAAG,QAAQ,CAAC;IAC3C,WAAW,EAAE,MAAM,CAAC;IACpB;;;OAGG;IACH,OAAO,EAAE,OAAO,CAAC;IACjB,uDAAuD;IACvD,IAAI,EAAE,OAAO,CAAC;IACd,mEAAmE;IACnE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,eAAe,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;CACrC;AAED,MAAM,WAAW,aAAc,SAAQ,WAAW;IAChD,IAAI,EAAE,YAAY,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,MAAM,eAAe,GAAG,cAAc,GAAG,YAAY,GAAG,aAAa,CAAC;AAE5E,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,EAAE,+BAA+B,CAAC;IAC1C,QAAQ,EAAE,+BAA+B,CAAC;IAC1C,KAAK,EAAE,eAAe,CAAC;IACvB,SAAS,EAAE,qBAAqB,CAAC;CAClC;AAED,MAAM,WAAW,yBAAyB;IACxC,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;IAC/C,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,QAAQ,CAAC,EAAE,eAAe,EAAE,CAAC;IAC7B,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAsjBD,wBAAgB,0BAA0B,CACxC,QAAQ,EAAE,+BAA+B,EACzC,OAAO,GAAE,yBAA8B,GACtC,gBAAgB,CAAC,gBAAgB,EAAE,eAAe,CAAC,CAyIrD"}
@@ -0,0 +1,15 @@
1
+ /** PPTX quality analysis over renderer-aligned prepared facts. */
2
+ import { type PreparedDocument, type QualityAnalysis, type QualityPolicy, type QualityProfile } from '@json-to-office/quality';
3
+ import type { PptxThemeConfig } from '../types';
4
+ import type { PptxQualityFact, PptxQualityModel } from './facts';
5
+ export interface PptxQualityOptions {
6
+ customThemes?: Record<string, PptxThemeConfig>;
7
+ }
8
+ export interface PptxQualityAnalysisOptions extends PptxQualityOptions {
9
+ renderer?: string;
10
+ profile?: QualityProfile;
11
+ policy?: QualityPolicy;
12
+ prepared?: PreparedDocument<PptxQualityModel, PptxQualityFact>;
13
+ }
14
+ export declare function analyzePptxQuality(doc: unknown, options?: PptxQualityAnalysisOptions): QualityAnalysis;
15
+ //# sourceMappingURL=preflight.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"preflight.d.ts","sourceRoot":"","sources":["../../src/quality/preflight.ts"],"names":[],"mappings":"AAAA,kEAAkE;AAElE,OAAO,EAGL,KAAK,gBAAgB,EACrB,KAAK,eAAe,EACpB,KAAK,aAAa,EAClB,KAAK,cAAc,EAEpB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EACV,eAAe,EAEhB,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,eAAe,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAUjE,MAAM,WAAW,kBAAkB;IACjC,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,eAAe,CAAC,CAAC;CAChD;AAED,MAAM,WAAW,0BAA2B,SAAQ,kBAAkB;IACpE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,cAAc,CAAC;IACzB,MAAM,CAAC,EAAE,aAAa,CAAC;IACvB,QAAQ,CAAC,EAAE,gBAAgB,CAAC,gBAAgB,EAAE,eAAe,CAAC,CAAC;CAChE;AAiBD,wBAAgB,kBAAkB,CAChC,GAAG,EAAE,OAAO,EACZ,OAAO,GAAE,0BAA+B,GACvC,eAAe,CA2CjB"}
@@ -0,0 +1,41 @@
1
+ import { QualityEngine, type QualityProfile, type QualityRule, type QualityRulePack } from '@json-to-office/quality';
2
+ import type { PptxQualityFact, PptxQualityModel } from './facts';
3
+ export declare const pptxCanvasRule: QualityRule<PptxQualityModel, PptxQualityFact>;
4
+ export declare const pptxMinimumFontRule: QualityRule<PptxQualityModel, PptxQualityFact>;
5
+ export declare const pptxTextFitRule: QualityRule<PptxQualityModel, PptxQualityFact>;
6
+ export declare const pptxSlideDensityRule: QualityRule<PptxQualityModel, PptxQualityFact>;
7
+ export declare const pptxTextContrastRule: QualityRule<PptxQualityModel, PptxQualityFact>;
8
+ export declare const PPTX_QUALITY_RULES: QualityRulePack<PptxQualityModel, PptxQualityFact>;
9
+ export declare const PPTX_QUALITY_PROFILES: {
10
+ readonly 'executive-presentation': {
11
+ readonly id: "executive-presentation";
12
+ readonly formats: readonly ["pptx"];
13
+ readonly description: "Decision deck optimized for scan speed and projection.";
14
+ readonly rules: {
15
+ readonly 'pptx/minimum-font-size': {
16
+ readonly parameters: {
17
+ readonly minimumFontPt: 14;
18
+ };
19
+ };
20
+ readonly 'pptx/slide-density': {
21
+ readonly parameters: {
22
+ readonly maximumBodyWords: 70;
23
+ };
24
+ };
25
+ };
26
+ };
27
+ readonly 'technical-presentation': {
28
+ readonly id: "technical-presentation";
29
+ readonly formats: readonly ["pptx"];
30
+ readonly description: "Portable professional presentation defaults.";
31
+ };
32
+ };
33
+ export declare const PPTX_DEFAULT_QUALITY_PROFILE: QualityProfile;
34
+ /**
35
+ * Callers name a shipped profile by id — `{ id: 'executive-presentation', formats: ['pptx'] }`.
36
+ * Without this lookup that request reaches the engine carrying nothing but its id,
37
+ * so the analysis runs on defaults while stamping the requested profileId.
38
+ */
39
+ export declare function resolvePptxQualityProfile(requested: QualityProfile | undefined): QualityProfile | undefined;
40
+ export declare const pptxQualityEngine: QualityEngine<PptxQualityModel, PptxQualityFact>;
41
+ //# sourceMappingURL=rules.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"rules.d.ts","sourceRoot":"","sources":["../../src/quality/rules.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,aAAa,EAEb,KAAK,cAAc,EACnB,KAAK,WAAW,EAEhB,KAAK,eAAe,EACrB,MAAM,yBAAyB,CAAC;AACjC,OAAO,KAAK,EAEV,eAAe,EACf,gBAAgB,EAGjB,MAAM,SAAS,CAAC;AA8EjB,eAAO,MAAM,cAAc,EAAE,WAAW,CAAC,gBAAgB,EAAE,eAAe,CA2EzE,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,WAAW,CAC3C,gBAAgB,EAChB,eAAe,CAkChB,CAAC;AAsCF,eAAO,MAAM,eAAe,EAAE,WAAW,CAAC,gBAAgB,EAAE,eAAe,CAgG1E,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,WAAW,CAC5C,gBAAgB,EAChB,eAAe,CA8BhB,CAAC;AAqCF,eAAO,MAAM,oBAAoB,EAAE,WAAW,CAC5C,gBAAgB,EAChB,eAAe,CAiFhB,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,eAAe,CAC9C,gBAAgB,EAChB,eAAe,CAUhB,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;CAeiB,CAAC;AAEpD,eAAO,MAAM,4BAA4B,EAAE,cACM,CAAC;AAKlD;;;;GAIG;AACH,wBAAgB,yBAAyB,CACvC,SAAS,EAAE,cAAc,GAAG,SAAS,GACpC,cAAc,GAAG,SAAS,CAK5B;AAED,eAAO,MAAM,iBAAiB,kDAA8C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/renderers/office-open/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAWH,OAAO,KAAK,EACV,MAAM,EACN,kBAAkB,EAEnB,MAAM,gBAAgB,CAAC;AACxB,OAAO,KAAK,EAAqB,YAAY,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAGhF,eAAO,MAAM,4BAA4B,EAAE,cAA8B,CAAC;AAsF1E,wBAAsB,4BAA4B,IAAI,OAAO,CAAC,YAAY,CAAC,CAqD1E;AAED;;;;;GAKG;AACH,wBAAsB,wBAAwB,CAC5C,EAAE,EAAE,MAAM,EACV,MAAM,GAAE,kBAAkB,EAAO,GAChC,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAqDlC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/renderers/office-open/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAWH,OAAO,KAAK,EACV,MAAM,EACN,kBAAkB,EAEnB,MAAM,gBAAgB,CAAC;AACxB,OAAO,KAAK,EAAqB,YAAY,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAGhF,eAAO,MAAM,4BAA4B,EAAE,cAA8B,CAAC;AA2G1E,wBAAsB,4BAA4B,IAAI,OAAO,CAAC,YAAY,CAAC,CAqD1E;AAED;;;;;GAKG;AACH,wBAAsB,wBAAwB,CAC5C,EAAE,EAAE,MAAM,EACV,MAAM,GAAE,kBAAkB,EAAO,GAChC,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAqDlC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/renderers/pptxgenjs/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,SAAS,MAAM,WAAW,CAAC;AAElC,OAAO,KAAK,EACV,MAAM,EAKP,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,KAAK,EAAqB,YAAY,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAEhF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAG/C,eAAO,MAAM,qBAAqB,EAAE,cAA4B,CAAC;AA6BjE,wBAAgB,uBAAuB,IAAI,YAAY,CAoBtD;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC/B,EAAE,EAAE,MAAM,EACV,YAAY,CAAC,EAAE,eAAe,EAC9B,QAAQ,CAAC,EAAE,eAAe,EAAE,GAC3B,SAAS,CAoCX"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/renderers/pptxgenjs/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,SAAS,MAAM,WAAW,CAAC;AAElC,OAAO,KAAK,EACV,MAAM,EAKP,MAAM,gBAAgB,CAAC;AAExB,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AACnD,OAAO,KAAK,EAAqB,YAAY,EAAE,cAAc,EAAE,MAAM,UAAU,CAAC;AAEhF,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAG/C,eAAO,MAAM,qBAAqB,EAAE,cAA4B,CAAC;AAkEjE,wBAAgB,uBAAuB,IAAI,YAAY,CAoBtD;AAED;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAC/B,EAAE,EAAE,MAAM,EACV,YAAY,CAAC,EAAE,eAAe,EAC9B,QAAQ,CAAC,EAAE,eAAe,EAAE,GAC3B,SAAS,CAoCX"}
@@ -1,15 +1,29 @@
1
1
  /**
2
2
  * PPTX renderer registry.
3
3
  *
4
- * Adapters are registered as async factories so an optional backend is only
5
- * imported when it is actually selected — choosing `pptxgenjs` never loads
6
- * `@office-open/pptx`, and a missing optional dependency surfaces as an
7
- * actionable install hint rather than a bare module-resolution failure.
4
+ * Adapters are registered as async factories so a backend is only imported
5
+ * when it is actually selected — choosing `pptxgenjs` never loads
6
+ * `@office-open/pptx`, and a backend that cannot be loaded at all (an
7
+ * `--omit=optional` install, a broken tree) surfaces as an actionable install
8
+ * hint rather than a bare module-resolution failure. `statuses()` asks the
9
+ * same question up front, so a discovery surface never advertises a renderer
10
+ * that would fail on the first render.
8
11
  */
12
+ import { type RendererStatus } from '@json-to-office/shared/rendering';
9
13
  import { type PptxRenderer, type PptxRendererId } from './types';
10
14
  /** Resolve a renderer by id, defaulting to `pptxgenjs`. */
11
15
  export declare function resolvePptxRenderer(id?: PptxRendererId): Promise<PptxRenderer>;
12
16
  /** Renderer ids registered for PPTX. */
13
17
  export declare function pptxRendererIds(): readonly PptxRendererId[];
18
+ /**
19
+ * Every registered renderer with whether its backend can be loaded here.
20
+ *
21
+ * Registration is not availability: the factory only runs on selection, so an
22
+ * id alone says nothing about whether the render behind it will work. Callers
23
+ * that advertise renderers — `jto_info`, `jto_discover` — report this instead
24
+ * of pptxRendererIds() so a renderer that cannot run is never offered as one
25
+ * that can.
26
+ */
27
+ export declare function pptxRendererStatuses(): Promise<RendererStatus<PptxRendererId>[]>;
14
28
  export declare function isPptxRendererId(value: string): value is PptxRendererId;
15
29
  //# sourceMappingURL=registry.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/renderers/registry.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAKH,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,cAAc,EACpB,MAAM,SAAS,CAAC;AAiBjB,2DAA2D;AAC3D,wBAAgB,mBAAmB,CACjC,EAAE,CAAC,EAAE,cAAc,GAClB,OAAO,CAAC,YAAY,CAAC,CAEvB;AAED,wCAAwC;AACxC,wBAAgB,eAAe,IAAI,SAAS,cAAc,EAAE,CAE3D;AAED,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,cAAc,CAEvE"}
1
+ {"version":3,"file":"registry.d.ts","sourceRoot":"","sources":["../../src/renderers/registry.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAEL,KAAK,cAAc,EACpB,MAAM,kCAAkC,CAAC;AAG1C,OAAO,EAEL,KAAK,YAAY,EACjB,KAAK,cAAc,EACpB,MAAM,SAAS,CAAC;AAiBjB,2DAA2D;AAC3D,wBAAgB,mBAAmB,CACjC,EAAE,CAAC,EAAE,cAAc,GAClB,OAAO,CAAC,YAAY,CAAC,CAEvB;AAED,wCAAwC;AACxC,wBAAgB,eAAe,IAAI,SAAS,cAAc,EAAE,CAE3D;AAED;;;;;;;;GAQG;AACH,wBAAgB,oBAAoB,IAAI,OAAO,CAC7C,cAAc,CAAC,cAAc,CAAC,EAAE,CACjC,CAEA;AAED,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,cAAc,CAEvE"}
@@ -1 +1 @@
1
- {"version":3,"file":"defaults.d.ts","sourceRoot":"","sources":["../../src/themes/defaults.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAwB,MAAM,UAAU,CAAC;AAYtE,eAAO,MAAM,kBAAkB,EAAE,eAuBhC,CAAC;AAsDF,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,eAAe,CAE1D;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAElD;AAED,eAAO,MAAM,UAAU,iCAAc,CAAC"}
1
+ {"version":3,"file":"defaults.d.ts","sourceRoot":"","sources":["../../src/themes/defaults.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,KAAK,EAAE,eAAe,EAAwB,MAAM,UAAU,CAAC;AAkCtE,eAAO,MAAM,kBAAkB,EAAE,eAwBhC,CAAC;AAwDF,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,eAAe,CAE1D;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAElD;AAED,eAAO,MAAM,UAAU,iCAAc,CAAC"}