pptx-vue-viewer 1.1.14 → 1.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.br +0 -0
- package/dist/index.cjs.gz +0 -0
- package/dist/index.js +1 -1
- package/dist/index.js.br +0 -0
- package/dist/index.js.gz +0 -0
- package/dist/viewer/PowerPointViewer.vue.d.ts.map +1 -1
- package/dist/viewer/components/ChartRenderer.vue.d.ts +6 -4
- package/dist/viewer/components/ChartRenderer.vue.d.ts.map +1 -1
- package/dist/viewer/components/ConnectorRenderer.vue.d.ts +4 -3
- package/dist/viewer/components/ConnectorRenderer.vue.d.ts.map +1 -1
- package/dist/viewer/components/ConnectorTextOverlay.vue.d.ts +26 -0
- package/dist/viewer/components/ConnectorTextOverlay.vue.d.ts.map +1 -0
- package/dist/viewer/components/chart/ChartTrendlines.vue.d.ts +28 -0
- package/dist/viewer/components/chart/ChartTrendlines.vue.d.ts.map +1 -0
- package/dist/viewer/components/chart/RegionMapChart.vue.d.ts +17 -0
- package/dist/viewer/components/chart/RegionMapChart.vue.d.ts.map +1 -0
- package/dist/viewer/components/chart/SurfaceChart.vue.d.ts +25 -0
- package/dist/viewer/components/chart/SurfaceChart.vue.d.ts.map +1 -0
- package/dist/viewer/composables/useLoadContent.d.ts +7 -1
- package/dist/viewer/composables/useLoadContent.d.ts.map +1 -1
- package/dist/viewer/index.cjs +1 -1
- package/dist/viewer/index.cjs.br +0 -0
- package/dist/viewer/index.cjs.gz +0 -0
- package/dist/viewer/index.js +1 -1
- package/dist/viewer/index.js.br +0 -0
- package/dist/viewer/index.js.gz +0 -0
- package/dist/{viewer-Bi7iG1IX.js → viewer-Bpxq5Oc5.js} +2602 -1735
- package/dist/viewer-Bpxq5Oc5.js.br +0 -0
- package/dist/viewer-Bpxq5Oc5.js.gz +0 -0
- package/dist/{viewer-DDcaEXYx.cjs → viewer-y-czgCly.cjs} +2960 -2093
- package/dist/viewer-y-czgCly.cjs.br +0 -0
- package/dist/viewer-y-czgCly.cjs.gz +0 -0
- package/package.json +1 -1
- package/dist/viewer-Bi7iG1IX.js.br +0 -0
- package/dist/viewer-Bi7iG1IX.js.gz +0 -0
- package/dist/viewer-DDcaEXYx.cjs.br +0 -0
- package/dist/viewer-DDcaEXYx.cjs.gz +0 -0
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const e = require("./viewer-
|
|
2
|
+
const e = require("./viewer-y-czgCly.cjs");
|
|
3
3
|
let r = require("clsx"), t = require("tailwind-merge");
|
|
4
4
|
exports.ElementRenderer = e.ElementRenderer_default, exports.PowerPointViewer = e.PowerPointViewer_default, exports.SlideCanvas = e.SlideCanvas_default, exports.SlideStage = e.SlideStage_default, exports.cn = function(...e) {
|
|
5
5
|
return (0, t.twMerge)((0, r.clsx)(e));
|
package/dist/index.cjs.br
CHANGED
|
Binary file
|
package/dist/index.cjs.gz
CHANGED
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as a, F as s, N as e, P as r, R as i, S as o, a as t, o as m, s as n, t as l, w } from "./viewer-
|
|
1
|
+
import { C as a, F as s, N as e, P as r, R as i, S as o, a as t, o as m, s as n, t as l, w } from "./viewer-Bpxq5Oc5.js";
|
|
2
2
|
import { clsx as d } from "clsx";
|
|
3
3
|
import { twMerge as f } from "tailwind-merge";
|
|
4
4
|
function p(...a) {
|
package/dist/index.js.br
CHANGED
|
Binary file
|
package/dist/index.js.gz
CHANGED
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PowerPointViewer.vue.d.ts","sourceRoot":"","sources":["../../src/viewer/PowerPointViewer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"PowerPointViewer.vue.d.ts","sourceRoot":"","sources":["../../src/viewer/PowerPointViewer.vue"],"names":[],"mappings":"AA4xCA,OAAO,KAAK,EACX,mBAAmB,EAEnB,sBAAsB,EACtB,qBAAqB,EACrB,MAAM,SAAS,CAAC;AAs9DjB,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;6EAKhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -20,13 +20,15 @@ import { PptxElement } from 'pptx-viewer-core';
|
|
|
20
20
|
* - stock (HLC / OHLC) — React `chart-stock.tsx`
|
|
21
21
|
* - histogram — React `chart-bar.tsx`
|
|
22
22
|
* - boxWhisker — React `chart-bar.tsx`
|
|
23
|
+
* - surface — isometric SVG mesh (`SurfaceChart.vue`)
|
|
24
|
+
* - regionMap — choropleth map (`RegionMapChart.vue`)
|
|
25
|
+
* - trendlines (regression overlays) — React `chart-trendlines.tsx`
|
|
23
26
|
* - chrome (title, axes, gridlines, legend, data labels) — `chart-chrome.tsx`
|
|
24
27
|
*
|
|
25
28
|
* Remaining TODOs:
|
|
26
|
-
* // TODO(vue): port
|
|
27
|
-
* //
|
|
28
|
-
* //
|
|
29
|
-
* // TODO(vue): port secondary axes + data tables + log/display-unit axes
|
|
29
|
+
* // TODO(vue): port secondary axes (right-hand value axis for series on a
|
|
30
|
+
* // second axisId) + data tables. Log/display-unit value axes are also not
|
|
31
|
+
* // yet honoured — the value axis is always linear.
|
|
30
32
|
*/
|
|
31
33
|
type __VLS_Props = {
|
|
32
34
|
element: PptxElement;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ChartRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/viewer/components/ChartRenderer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ChartRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/viewer/components/ChartRenderer.vue"],"names":[],"mappings":"AAi/BA,OAAO,KAAK,EAAgC,WAAW,EAAE,MAAM,kBAAkB,CAAC;AA+BlF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,KAAK,WAAW,GAAG;IAClB,OAAO,EAAE,WAAW,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACpC,CAAC;AAooCF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -15,9 +15,10 @@ import { PptxElement } from 'pptx-viewer-core';
|
|
|
15
15
|
* Flip is baked into the path geometry (not a CSS transform) so arrowheads
|
|
16
16
|
* point the right way for both straight and multi-segment connectors.
|
|
17
17
|
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
18
|
+
* Connector labels (a non-empty `<p:txBody>` on the connector) render via the
|
|
19
|
+
* {@link ConnectorTextOverlay} child, centred over the bounding box.
|
|
20
|
+
*
|
|
21
|
+
* Not yet ported (TODO, see PORTING.md): line shadows/glow effects.
|
|
21
22
|
*/
|
|
22
23
|
type __VLS_Props = {
|
|
23
24
|
element: PptxElement;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConnectorRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/viewer/components/ConnectorRenderer.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ConnectorRenderer.vue.d.ts","sourceRoot":"","sources":["../../../src/viewer/components/ConnectorRenderer.vue"],"names":[],"mappings":"AAoSA,OAAO,KAAK,EAAsB,WAAW,EAA0B,MAAM,kBAAkB,CAAC;AAchG;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,KAAK,WAAW,GAAG;IAClB,OAAO,EAAE,WAAW,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;CACf,CAAC;AAmUF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { TextSegment, TextStyle } from 'pptx-viewer-core';
|
|
2
|
+
/**
|
|
3
|
+
* ConnectorTextOverlay — Vue port of the React `ConnectorTextOverlay`.
|
|
4
|
+
*
|
|
5
|
+
* Renders a connector's label text centred over its bounding box. PowerPoint
|
|
6
|
+
* lets authors attach a text run to a connector (`<p:cxnSp>` with a non-empty
|
|
7
|
+
* `<p:txBody>`); the label is painted on top of the connector path, centred
|
|
8
|
+
* both horizontally and vertically within the element box.
|
|
9
|
+
*
|
|
10
|
+
* The overlay is a plain absolutely-positioned flex container (not part of the
|
|
11
|
+
* SVG) so per-segment rich text renders with normal HTML text layout. It is
|
|
12
|
+
* `pointer-events: none` so it never intercepts selection / hit-testing on the
|
|
13
|
+
* connector beneath it.
|
|
14
|
+
*/
|
|
15
|
+
type __VLS_Props = {
|
|
16
|
+
/** Trimmed plain-text label (empty → nothing rendered). */
|
|
17
|
+
text: string;
|
|
18
|
+
/** Per-run styled segments (empty → nothing rendered). */
|
|
19
|
+
segments: readonly TextSegment[] | undefined;
|
|
20
|
+
/** Paragraph-level text style (alignment, default font, colour). */
|
|
21
|
+
textStyle?: TextStyle;
|
|
22
|
+
};
|
|
23
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: typeof __VLS_export;
|
|
25
|
+
export default _default;
|
|
26
|
+
//# sourceMappingURL=ConnectorTextOverlay.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ConnectorTextOverlay.vue.d.ts","sourceRoot":"","sources":["../../../src/viewer/components/ConnectorTextOverlay.vue"],"names":[],"mappings":"AA8GA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AAI/D;;;;;;;;;;;;GAYG;AACH,KAAK,WAAW,GAAG;IAClB,2DAA2D;IAC3D,IAAI,EAAE,MAAM,CAAC;IACb,0DAA0D;IAC1D,QAAQ,EAAE,SAAS,WAAW,EAAE,GAAG,SAAS,CAAC;IAC7C,oEAAoE;IACpE,SAAS,CAAC,EAAE,SAAS,CAAC;CACtB,CAAC;AAoGF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { PptxChartData } from 'pptx-viewer-core';
|
|
2
|
+
import { PlotLayout, ValueRange } from 'pptx-viewer-shared';
|
|
3
|
+
/**
|
|
4
|
+
* ChartTrendlines — Vue port of the React `renderTrendlines`
|
|
5
|
+
* (`viewer/utils/chart-trendlines.tsx`).
|
|
6
|
+
*
|
|
7
|
+
* Renders the per-series regression trendlines (linear / exponential /
|
|
8
|
+
* logarithmic / power / polynomial / moving-average) as dashed SVG `<path>`
|
|
9
|
+
* overlays, optionally annotated with the equation and/or R² value when the
|
|
10
|
+
* trendline requests it. Emits a `<g>` group meant to sit on TOP of the plot
|
|
11
|
+
* inside the parent chart `<svg>`.
|
|
12
|
+
*
|
|
13
|
+
* The regression maths lives in the framework-agnostic
|
|
14
|
+
* `computeChartTrendlines` helper so React, Vue, and Angular share it.
|
|
15
|
+
*/
|
|
16
|
+
type __VLS_Props = {
|
|
17
|
+
chartData: PptxChartData;
|
|
18
|
+
layout: PlotLayout;
|
|
19
|
+
range: ValueRange;
|
|
20
|
+
/** 'bar' for bar/column/stacked plots, 'line' for line/area plots. */
|
|
21
|
+
mode: 'line' | 'bar';
|
|
22
|
+
styleId?: number;
|
|
23
|
+
colorPalette?: string[];
|
|
24
|
+
};
|
|
25
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const _default: typeof __VLS_export;
|
|
27
|
+
export default _default;
|
|
28
|
+
//# sourceMappingURL=ChartTrendlines.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ChartTrendlines.vue.d.ts","sourceRoot":"","sources":["../../../../src/viewer/components/chart/ChartTrendlines.vue"],"names":[],"mappings":"AAoEA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,KAAK,EAAE,UAAU,EAAuB,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAItF;;;;;;;;;;;;GAYG;AACH,KAAK,WAAW,GAAG;IAClB,SAAS,EAAE,aAAa,CAAC;IACzB,MAAM,EAAE,UAAU,CAAC;IACnB,KAAK,EAAE,UAAU,CAAC;IAClB,sEAAsE;IACtE,IAAI,EAAE,MAAM,GAAG,KAAK,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACxB,CAAC;AAkEF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { PptxChartData } from 'pptx-viewer-core';
|
|
2
|
+
import { PlotLayout } from 'pptx-viewer-shared';
|
|
3
|
+
/**
|
|
4
|
+
* RegionMapChart — Vue port of React `chart-map.tsx` choropleth map renderer.
|
|
5
|
+
* Rendered inside the parent chart `<svg>` as a `<g>` group.
|
|
6
|
+
* Uses a 1000x500 coordinate system for region outlines and scales them
|
|
7
|
+
* to fit the available layout area.
|
|
8
|
+
*/
|
|
9
|
+
type __VLS_Props = {
|
|
10
|
+
chartData: PptxChartData;
|
|
11
|
+
layout: PlotLayout;
|
|
12
|
+
categories: ReadonlyArray<string>;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: typeof __VLS_export;
|
|
16
|
+
export default _default;
|
|
17
|
+
//# sourceMappingURL=RegionMapChart.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RegionMapChart.vue.d.ts","sourceRoot":"","sources":["../../../../src/viewer/components/chart/RegionMapChart.vue"],"names":[],"mappings":"AA0kBA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAIrD;;;;;GAKG;AACH,KAAK,WAAW,GAAG;IAClB,SAAS,EAAE,aAAa,CAAC;IACzB,MAAM,EAAE,UAAU,CAAC;IACnB,UAAU,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;CAClC,CAAC;AAkpBF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { PptxChartData } from 'pptx-viewer-core';
|
|
2
|
+
import { PlotLayout, ValueRange } from 'pptx-viewer-shared';
|
|
3
|
+
/**
|
|
4
|
+
* SurfaceChart — Vue port of the isometric SVG surface renderer from
|
|
5
|
+
* `packages/react/src/viewer/utils/chart-surface-treemap.tsx`.
|
|
6
|
+
*
|
|
7
|
+
* Renders both `surface` and `surface3D` chart types as an isometric/2.5D
|
|
8
|
+
* SVG mesh of filled parallelogram quads, colour-banded by data value.
|
|
9
|
+
* Emits a `<g>` group meant to sit INSIDE the parent chart `<svg>`.
|
|
10
|
+
*
|
|
11
|
+
* For grids with at least 2 series × 2 categories, draws an isometric
|
|
12
|
+
* projection (painter's algorithm, back-to-front). For degenerate grids
|
|
13
|
+
* (single series or single category), falls back to a flat 2-D colour-mapped
|
|
14
|
+
* heat grid.
|
|
15
|
+
*/
|
|
16
|
+
type __VLS_Props = {
|
|
17
|
+
chartData: PptxChartData;
|
|
18
|
+
layout: PlotLayout;
|
|
19
|
+
range: ValueRange;
|
|
20
|
+
categories: ReadonlyArray<string>;
|
|
21
|
+
};
|
|
22
|
+
declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: typeof __VLS_export;
|
|
24
|
+
export default _default;
|
|
25
|
+
//# sourceMappingURL=SurfaceChart.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SurfaceChart.vue.d.ts","sourceRoot":"","sources":["../../../../src/viewer/components/chart/SurfaceChart.vue"],"names":[],"mappings":"AAiQA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACtD,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAGjE;;;;;;;;;;;;GAYG;AAEH,KAAK,WAAW,GAAG;IAClB,SAAS,EAAE,aAAa,CAAC;IACzB,MAAM,EAAE,UAAU,CAAC;IACnB,KAAK,EAAE,UAAU,CAAC;IAClB,UAAU,EAAE,aAAa,CAAC,MAAM,CAAC,CAAC;CAClC,CAAC;AAiQF,QAAA,MAAM,YAAY,kSAEhB,CAAC;wBACkB,OAAO,YAAY;AAAxC,wBAAyC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ParsedSignature, PptxCoreProperties, PptxEmbeddedFont, PptxSlide, PptxSlideMaster, PptxTheme, PptxHandler } from 'pptx-viewer-core';
|
|
1
|
+
import { ParsedSignature, ParsedTableStyleMap, PptxCoreProperties, PptxEmbeddedFont, PptxSlide, PptxSlideMaster, PptxTheme, PptxHandler } from 'pptx-viewer-core';
|
|
2
2
|
import { MaybeRefOrGetter, Ref, ShallowRef } from 'vue';
|
|
3
3
|
import { CanvasSize } from '../types';
|
|
4
4
|
/**
|
|
@@ -45,6 +45,12 @@ export interface UseLoadContentResult {
|
|
|
45
45
|
embeddedFonts: ShallowRef<PptxEmbeddedFont[]>;
|
|
46
46
|
/** Parsed digital signatures (empty when unsigned). */
|
|
47
47
|
signatures: ShallowRef<ParsedSignature[]>;
|
|
48
|
+
/**
|
|
49
|
+
* Parsed `ppt/tableStyles.xml` map (GUID → style entry), or `undefined`
|
|
50
|
+
* when the presentation has no table styles part. Feeds table banding /
|
|
51
|
+
* header colour resolution by table-style GUID.
|
|
52
|
+
*/
|
|
53
|
+
tableStyleMap: ShallowRef<ParsedTableStyleMap | undefined>;
|
|
48
54
|
/** Serialise the current presentation back to `.pptx` bytes. */
|
|
49
55
|
getContent: () => Promise<Uint8Array>;
|
|
50
56
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useLoadContent.d.ts","sourceRoot":"","sources":["../../../src/viewer/composables/useLoadContent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEX,eAAe,EACf,kBAAkB,EAElB,gBAAgB,EAChB,SAAS,EACT,eAAe,EACf,SAAS,EAET,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,WAAW,EAAyC,MAAM,kBAAkB,CAAC;AAEtF,OAAO,KAAK,EAAE,gBAAgB,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAG7D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AA6B3C;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,WAAW,oBAAoB;IACpC,uDAAuD;IACvD,MAAM,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,CAAC;IAChC,mCAAmC;IACnC,UAAU,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC;IAC5B,mCAAmC;IACnC,KAAK,EAAE,UAAU,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IACzC,6DAA6D;IAC7D,YAAY,EAAE,UAAU,CAAC,eAAe,EAAE,CAAC,CAAC;IAC5C,oEAAoE;IACpE,aAAa,EAAE,UAAU,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;IAC/C,sCAAsC;IACtC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACtB,wDAAwD;IACxD,KAAK,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC1B,wEAAwE;IACxE,WAAW,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IAC1B,4DAA4D;IAC5D,OAAO,EAAE,UAAU,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IACxC,gEAAgE;IAChE,cAAc,EAAE,UAAU,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAC3D,mDAAmD;IACnD,aAAa,EAAE,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC9C,uDAAuD;IACvD,UAAU,EAAE,UAAU,CAAC,eAAe,EAAE,CAAC,CAAC;IAC1C,gEAAgE;IAChE,UAAU,EAAE,MAAM,OAAO,CAAC,UAAU,CAAC,CAAC;CACtC;AAED,wBAAgB,cAAc,CAC7B,OAAO,EAAE,gBAAgB,CAAC,UAAU,GAAG,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC,GACpE,oBAAoB,
|
|
1
|
+
{"version":3,"file":"useLoadContent.d.ts","sourceRoot":"","sources":["../../../src/viewer/composables/useLoadContent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAEX,eAAe,EACf,mBAAmB,EACnB,kBAAkB,EAElB,gBAAgB,EAChB,SAAS,EACT,eAAe,EACf,SAAS,EAET,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,WAAW,EAAyC,MAAM,kBAAkB,CAAC;AAEtF,OAAO,KAAK,EAAE,gBAAgB,EAAE,GAAG,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAG7D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AA6B3C;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,WAAW,oBAAoB;IACpC,uDAAuD;IACvD,MAAM,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,CAAC;IAChC,mCAAmC;IACnC,UAAU,EAAE,GAAG,CAAC,UAAU,CAAC,CAAC;IAC5B,mCAAmC;IACnC,KAAK,EAAE,UAAU,CAAC,SAAS,GAAG,SAAS,CAAC,CAAC;IACzC,6DAA6D;IAC7D,YAAY,EAAE,UAAU,CAAC,eAAe,EAAE,CAAC,CAAC;IAC5C,oEAAoE;IACpE,aAAa,EAAE,UAAU,CAAC,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC,CAAC;IAC/C,sCAAsC;IACtC,OAAO,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IACtB,wDAAwD;IACxD,KAAK,EAAE,GAAG,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAC1B,wEAAwE;IACxE,WAAW,EAAE,GAAG,CAAC,OAAO,CAAC,CAAC;IAC1B,4DAA4D;IAC5D,OAAO,EAAE,UAAU,CAAC,WAAW,GAAG,IAAI,CAAC,CAAC;IACxC,gEAAgE;IAChE,cAAc,EAAE,UAAU,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAC3D,mDAAmD;IACnD,aAAa,EAAE,UAAU,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC9C,uDAAuD;IACvD,UAAU,EAAE,UAAU,CAAC,eAAe,EAAE,CAAC,CAAC;IAC1C;;;;OAIG;IACH,aAAa,EAAE,UAAU,CAAC,mBAAmB,GAAG,SAAS,CAAC,CAAC;IAC3D,gEAAgE;IAChE,UAAU,EAAE,MAAM,OAAO,CAAC,UAAU,CAAC,CAAC;CACtC;AAED,wBAAgB,cAAc,CAC7B,OAAO,EAAE,gBAAgB,CAAC,UAAU,GAAG,WAAW,GAAG,IAAI,GAAG,SAAS,CAAC,GACpE,oBAAoB,CA6PtB"}
|
package/dist/viewer/index.cjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
-
const e = require("../viewer-
|
|
2
|
+
const e = require("../viewer-y-czgCly.cjs");
|
|
3
3
|
exports.ChartRenderer = e.ChartRenderer_default, exports.ConnectorRenderer = e.ConnectorRenderer_default, exports.DEFAULT_CANVAS_HEIGHT = e.DEFAULT_CANVAS_HEIGHT, exports.DEFAULT_CANVAS_WIDTH = e.DEFAULT_CANVAS_WIDTH, exports.DEFAULT_FILL_COLOR = e.DEFAULT_FILL_COLOR, exports.DEFAULT_STROKE_COLOR = e.DEFAULT_STROKE_COLOR, exports.DEFAULT_TEXT_COLOR = e.DEFAULT_TEXT_COLOR, exports.ElementRenderer = e.ElementRenderer_default, exports.EquationRenderer = e.EquationRenderer_default, exports.InkRenderer = e.InkRenderer_default, exports.Model3DRenderer = e.Model3DRenderer_default, exports.OleRenderer = e.OleRenderer_default, exports.PowerPointViewer = e.PowerPointViewer_default, exports.SlideCanvas = e.SlideCanvas_default, exports.SlideStage = e.SlideStage_default, exports.SmartArtRenderer = e.SmartArtRenderer_default, exports.TableRenderer = e.TableRenderer_default, exports.WordArtText = e.WordArtText_default, exports.ZoomRenderer = e.ZoomRenderer_default, exports.buildInitialGuides = e.buildInitialGuides, exports.collectImagePaths = e.collectImagePaths, exports.collectMediaElements = e.collectMediaElements, exports.getContainerStyle = e.getContainerStyle, exports.getImageSrc = e.getImageSrc, exports.getResolvedShapeClipPath = e.getResolvedShapeClipPath, exports.getResolvedShapeClipPathFor = e.getResolvedShapeClipPathFor, exports.getShapeFillStrokeStyle = e.getShapeFillStrokeStyle, exports.getTextBlockStyle = e.getTextBlockStyle, exports.useEditorHistory = e.useEditorHistory, exports.useEditorOperations = e.useEditorOperations, exports.useLoadContent = e.useLoadContent;
|
package/dist/viewer/index.cjs.br
CHANGED
|
Binary file
|
package/dist/viewer/index.cjs.gz
CHANGED
|
Binary file
|
package/dist/viewer/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { A as a, D as s, E as e, I as r, L as n, M as d, O as o, T as t, _ as R, a as i, b as l, c as m, d as S, f as p, g as v, h as w, i as x, j as A, k as C, l as E, m as T, n as b, o as c, p as f, r as g, s as h, t as j, u as k, v as u, x as D, y as I } from "../viewer-
|
|
1
|
+
import { A as a, D as s, E as e, I as r, L as n, M as d, O as o, T as t, _ as R, a as i, b as l, c as m, d as S, f as p, g as v, h as w, i as x, j as A, k as C, l as E, m as T, n as b, o as c, p as f, r as g, s as h, t as j, u as k, v as u, x as D, y as I } from "../viewer-Bpxq5Oc5.js";
|
|
2
2
|
export { R as ChartRenderer, v as ConnectorRenderer, t as DEFAULT_CANVAS_HEIGHT, e as DEFAULT_CANVAS_WIDTH, s as DEFAULT_FILL_COLOR, o as DEFAULT_STROKE_COLOR, C as DEFAULT_TEXT_COLOR, h as ElementRenderer, w as EquationRenderer, T as InkRenderer, f as Model3DRenderer, p as OleRenderer, j as PowerPointViewer, i as SlideCanvas, c as SlideStage, S as SmartArtRenderer, k as TableRenderer, E as WordArtText, m as ZoomRenderer, a as buildInitialGuides, A as collectImagePaths, d as collectMediaElements, u as getContainerStyle, I as getImageSrc, r as getResolvedShapeClipPath, n as getResolvedShapeClipPathFor, l as getShapeFillStrokeStyle, D as getTextBlockStyle, x as useEditorHistory, g as useEditorOperations, b as useLoadContent };
|
package/dist/viewer/index.js.br
CHANGED
|
Binary file
|
package/dist/viewer/index.js.gz
CHANGED
|
Binary file
|