lt-ppt 1.0.33 → 1.0.35
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/{InnerApp-DDGLDGCZ.js → InnerApp-CNwfV0do.js} +25032 -24270
- package/dist/{index-C761lmXB.js → index-Bea9qCqB.js} +1 -1
- package/dist/{index-DRcLEfl8.js → index-DG55cbxA.js} +1 -1
- package/dist/{lib-CbJibfgd.js → lib-DPIfjgLV.js} +143 -114
- package/dist/lt-ppt.css +1 -1
- package/dist/lt-ppt.es.js +1 -1
- package/dist/lt-ppt.umd.js +157 -157
- package/dist/{screen-BQt2kxhW.js → screen-D7zFgugS.js} +1 -1
- package/dist/types/src/LtPPT.vue.d.ts +4 -1
- package/dist/types/src/lib.d.ts +1 -1
- package/dist/types/src/locales/en.d.ts +6 -0
- package/dist/types/src/locales/index.d.ts +12 -0
- package/dist/types/src/locales/zh-CN.d.ts +6 -0
- package/dist/types/src/types/lt-ppt.d.ts +7 -0
- package/dist/types/src/views/Editor/Canvas/MiniFloatingToolbar.vue.d.ts +16 -0
- package/dist/types/src/views/Editor/MiniSlidePreview.vue.d.ts +11 -0
- package/dist/types/src/views/Editor/MiniStatusBar.vue.d.ts +2 -0
- package/dist/types/src/views/Editor/MiniToolbar.vue.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { defineStore as Js } from "./pinia-CVat9nJz.js";
|
|
2
2
|
import { customAlphabet as Uy } from "./index.browser-Wq18ov6h.js";
|
|
3
|
-
import { c as Jy } from "./lib-
|
|
3
|
+
import { c as Jy } from "./lib-DPIfjgLV.js";
|
|
4
4
|
var Yf = /* @__PURE__ */ ((u) => (u.EL_ANIMATION = "elAnimation", u.EL_STYLE = "elStyle", u.EL_POSITION = "elPosition", u.SLIDE_DESIGN = "slideDesign", u.SLIDE_ANIMATION = "slideAnimation", u.MULTI_STYLE = "multiStyle", u.MULTI_POSITION = "multiPosition", u))(Yf || {});
|
|
5
5
|
function it(u) {
|
|
6
6
|
this.content = u;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ImageAIEntryClickParams, InsertImageParams, InsertVideoParams, LtPPTProps, ReplaceImageParams, ReplaceVideoParams, SupportedLocale, ThemeMode } from './types/lt-ppt';
|
|
1
|
+
import { ImageAIEntryClickParams, InsertImageParams, InsertVideoParams, LtPPTProps, LtPPTMode, ReplaceImageParams, ReplaceVideoParams, SupportedLocale, ThemeMode } from './types/lt-ppt';
|
|
2
2
|
import { PPTElement, PPTImageElement, PPTVideoElement, Slide } from './types/slides';
|
|
3
3
|
declare const _default: import('vue').DefineComponent<LtPPTProps, {
|
|
4
4
|
getSlides: () => Slide[];
|
|
@@ -6,6 +6,8 @@ declare const _default: import('vue').DefineComponent<LtPPTProps, {
|
|
|
6
6
|
setSlides: (slides: Slide[]) => void;
|
|
7
7
|
startScreening: () => void;
|
|
8
8
|
getCurrentIndex: () => number;
|
|
9
|
+
downloadPPT: () => void;
|
|
10
|
+
setMode: (mode: LtPPTMode) => void;
|
|
9
11
|
insertImage: (params: InsertImageParams) => Promise<PPTImageElement | null>;
|
|
10
12
|
replaceImage: (params: ReplaceImageParams) => Promise<PPTImageElement | null>;
|
|
11
13
|
insertVideo: (params: InsertVideoParams) => Promise<PPTVideoElement | null>;
|
|
@@ -19,6 +21,7 @@ declare const _default: import('vue').DefineComponent<LtPPTProps, {
|
|
|
19
21
|
width: string;
|
|
20
22
|
locale: SupportedLocale;
|
|
21
23
|
theme: ThemeMode;
|
|
24
|
+
mode: LtPPTMode;
|
|
22
25
|
readonly: boolean;
|
|
23
26
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
24
27
|
containerRef: HTMLDivElement;
|
package/dist/types/src/lib.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as LtPPT } from './LtPPT.vue';
|
|
2
2
|
export { LtPPT };
|
|
3
|
-
export type { LtPPTProps, LtPPTInstance, InitData, UploadFileParams, SaveCallbackParams, ImageAIEntryElement, ImageAIEntryClickParams, InsertImageParams, ReplaceImageParams, InsertVideoParams, ReplaceVideoParams, SupportedLocale, ThemeMode } from './types/lt-ppt';
|
|
3
|
+
export type { LtPPTProps, LtPPTInstance, LtPPTMode, InitData, UploadFileParams, SaveCallbackParams, ImageAIEntryElement, ImageAIEntryClickParams, InsertImageParams, ReplaceImageParams, InsertVideoParams, ReplaceVideoParams, SupportedLocale, ThemeMode } from './types/lt-ppt';
|
|
4
4
|
export type { Slide, PPTElement, PPTImageElement, PPTVideoElement, SlideTheme } from './types/slides';
|
|
5
5
|
export { loadFonts } from './utils/fonts';
|
|
@@ -84,6 +84,11 @@ declare const _default: {
|
|
|
84
84
|
fitScreen: string;
|
|
85
85
|
fitScreenShortcut: string;
|
|
86
86
|
};
|
|
87
|
+
miniStatus: {
|
|
88
|
+
pagePrefix: string;
|
|
89
|
+
pageUnit: string;
|
|
90
|
+
totalPrefix: string;
|
|
91
|
+
};
|
|
87
92
|
exportDialog: {
|
|
88
93
|
exportPptist: string;
|
|
89
94
|
exportPptx: string;
|
|
@@ -475,6 +480,7 @@ declare const _default: {
|
|
|
475
480
|
aspectRatioPortrait: string;
|
|
476
481
|
aspectRatioLandscape: string;
|
|
477
482
|
borderRadius: string;
|
|
483
|
+
quoteToChat: string;
|
|
478
484
|
replaceImageBtn: string;
|
|
479
485
|
resetStyleBtn: string;
|
|
480
486
|
setAsBackgroundBtn: string;
|
|
@@ -88,6 +88,11 @@ declare const i18n: import('./useLocale.ts').I18n<{
|
|
|
88
88
|
fitScreen: string;
|
|
89
89
|
fitScreenShortcut: string;
|
|
90
90
|
};
|
|
91
|
+
miniStatus: {
|
|
92
|
+
pagePrefix: string;
|
|
93
|
+
pageUnit: string;
|
|
94
|
+
totalPrefix: string;
|
|
95
|
+
};
|
|
91
96
|
exportDialog: {
|
|
92
97
|
exportPptist: string;
|
|
93
98
|
exportPptx: string;
|
|
@@ -511,6 +516,7 @@ declare const i18n: import('./useLocale.ts').I18n<{
|
|
|
511
516
|
aspectRatioPortrait: string;
|
|
512
517
|
aspectRatioLandscape: string;
|
|
513
518
|
borderRadius: string;
|
|
519
|
+
quoteToChat: string;
|
|
514
520
|
replaceImageBtn: string;
|
|
515
521
|
resetStyleBtn: string;
|
|
516
522
|
setAsBackgroundBtn: string;
|
|
@@ -1211,6 +1217,11 @@ declare const i18n: import('./useLocale.ts').I18n<{
|
|
|
1211
1217
|
fitScreen: string;
|
|
1212
1218
|
fitScreenShortcut: string;
|
|
1213
1219
|
};
|
|
1220
|
+
miniStatus: {
|
|
1221
|
+
pagePrefix: string;
|
|
1222
|
+
pageUnit: string;
|
|
1223
|
+
totalPrefix: string;
|
|
1224
|
+
};
|
|
1214
1225
|
exportDialog: {
|
|
1215
1226
|
exportPptist: string;
|
|
1216
1227
|
exportPptx: string;
|
|
@@ -1602,6 +1613,7 @@ declare const i18n: import('./useLocale.ts').I18n<{
|
|
|
1602
1613
|
aspectRatioPortrait: string;
|
|
1603
1614
|
aspectRatioLandscape: string;
|
|
1604
1615
|
borderRadius: string;
|
|
1616
|
+
quoteToChat: string;
|
|
1605
1617
|
replaceImageBtn: string;
|
|
1606
1618
|
resetStyleBtn: string;
|
|
1607
1619
|
setAsBackgroundBtn: string;
|
|
@@ -84,6 +84,11 @@ declare const _default: {
|
|
|
84
84
|
fitScreen: string;
|
|
85
85
|
fitScreenShortcut: string;
|
|
86
86
|
};
|
|
87
|
+
miniStatus: {
|
|
88
|
+
pagePrefix: string;
|
|
89
|
+
pageUnit: string;
|
|
90
|
+
totalPrefix: string;
|
|
91
|
+
};
|
|
87
92
|
exportDialog: {
|
|
88
93
|
exportPptist: string;
|
|
89
94
|
exportPptx: string;
|
|
@@ -507,6 +512,7 @@ declare const _default: {
|
|
|
507
512
|
aspectRatioPortrait: string;
|
|
508
513
|
aspectRatioLandscape: string;
|
|
509
514
|
borderRadius: string;
|
|
515
|
+
quoteToChat: string;
|
|
510
516
|
replaceImageBtn: string;
|
|
511
517
|
resetStyleBtn: string;
|
|
512
518
|
setAsBackgroundBtn: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { PPTElement, PPTImageElement, PPTVideoElement, Slide } from './slides';
|
|
2
2
|
export type SupportedLocale = 'zh-CN' | 'en';
|
|
3
3
|
export type ThemeMode = 'dark' | 'light';
|
|
4
|
+
export type LtPPTMode = 'default' | 'mini';
|
|
4
5
|
export interface InitData {
|
|
5
6
|
/** JSON 数据(包含 slides, theme 等) */
|
|
6
7
|
json?: Record<string, any>;
|
|
@@ -144,6 +145,8 @@ export interface LtPPTProps {
|
|
|
144
145
|
readonly?: boolean;
|
|
145
146
|
/** 主题模式,dark 或 light,默认 dark */
|
|
146
147
|
theme?: ThemeMode;
|
|
148
|
+
/** 编辑器显示模式,default 为完整编辑器,mini 为精简编辑器 */
|
|
149
|
+
mode?: LtPPTMode;
|
|
147
150
|
/** 返回按钮回调,传入后头部左侧显示返回图标 */
|
|
148
151
|
onReturn?: () => void;
|
|
149
152
|
/** 点击图片 AI 入口时触发 */
|
|
@@ -160,6 +163,10 @@ export interface LtPPTInstance {
|
|
|
160
163
|
startScreening: () => void;
|
|
161
164
|
/** 获取当前幻灯片索引 */
|
|
162
165
|
getCurrentIndex: () => number;
|
|
166
|
+
/** 打开下载 PPT 弹层 */
|
|
167
|
+
downloadPPT: () => void;
|
|
168
|
+
/** 切换编辑器显示模式 */
|
|
169
|
+
setMode: (mode: LtPPTMode) => void;
|
|
163
170
|
/** 向指定页面插入图片 */
|
|
164
171
|
insertImage: (params: InsertImageParams) => Promise<PPTImageElement | null>;
|
|
165
172
|
/** 替换指定图片元素,未指定元素时替换当前选中图片 */
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PPTElement, PPTImageElement } from '../../../types/slides';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
elementInfo: PPTElement;
|
|
4
|
+
canvasScale: number;
|
|
5
|
+
viewportLeft: number;
|
|
6
|
+
viewportTop: number;
|
|
7
|
+
imageAIEntryEnabled?: boolean;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
10
|
+
"image-ai-entry-click": (element: PPTImageElement) => any;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
"onImage-ai-entry-click"?: ((element: PPTImageElement) => any) | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
imageAIEntryEnabled: boolean;
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
|
+
export default _default;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
visible: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
5
|
+
select: () => any;
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
7
|
+
onSelect?: (() => any) | undefined;
|
|
8
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
9
|
+
previewRef: HTMLDivElement;
|
|
10
|
+
}, HTMLDivElement>;
|
|
11
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
toolbarRef: HTMLDivElement;
|
|
3
|
+
}, HTMLDivElement>;
|
|
4
|
+
export default _default;
|