@jetprint/editor-sdk 1.0.0 → 1.0.1
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/components/Editor/composables/useCanvasEventWiring.d.ts +2 -0
- package/dist/components/Editor/composables/useObjectAdder.d.ts +4 -1
- package/dist/components/Editor/index.vue.d.ts +3 -1
- package/dist/editor-sdk.es.js +15592 -15530
- package/dist/index.d.ts +9 -3
- package/dist/renderWorker.js +2198 -2196
- package/dist/style.css +1 -1
- package/dist/types.d.ts +2 -0
- package/dist/utils/protection/encryptedModules.generated.d.ts +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -179,6 +179,8 @@ export type EditorOptions = {
|
|
|
179
179
|
readOnly?: boolean;
|
|
180
180
|
/** 为 true 时禁止在 Classic / Zone 模式之间切换,但保留其它编辑能力 */
|
|
181
181
|
lockTemplateModeSwitch?: boolean;
|
|
182
|
+
/** Next 渲染页右上角 Download(按尺码×颜色分组导出 zip)按钮开关;false 时直接隐藏。默认 true */
|
|
183
|
+
showNextDownload?: boolean;
|
|
182
184
|
/**
|
|
183
185
|
* 界面主题:省略时与 `theme1` 相同(粉主色 + 藏青保存);显式 `'default'` 为现有靛蓝/蓝配色。
|
|
184
186
|
*/
|