@jetprint/editor-sdk 1.0.1 → 1.0.3
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/index.vue.d.ts +6 -0
- package/dist/editor-sdk.es.js +10871 -10855
- package/dist/index.d.ts +9 -0
- package/dist/renderWorker.js +2938 -2943
- package/dist/style.css +1 -1
- package/dist/utils/protection/encryptedModules.generated.d.ts +1 -1
- package/package.json +1 -1
|
@@ -88,6 +88,12 @@ declare const __VLS_component: import("vue").DefineComponent<EditorProps, {
|
|
|
88
88
|
getSelectedSizes: () => string[];
|
|
89
89
|
setSelectedColor: (color: string) => void;
|
|
90
90
|
setSelectedSize: (size: string) => void;
|
|
91
|
+
/** 第三方接入:批量设置多颜色(含 ALL 语义);空/省略 = 全选 */
|
|
92
|
+
setSelectedColors: (colors: string[]) => void;
|
|
93
|
+
/** 第三方接入:批量设置多尺码(含 ALL 语义);空/省略 = 全选 */
|
|
94
|
+
setSelectedSizes: (sizes: string[]) => void;
|
|
95
|
+
/** 当前产品全部尺码选项(与 getColorOptions 对称) */
|
|
96
|
+
getSizeOptions: () => string[];
|
|
91
97
|
setSelectedMode: (mode: unknown) => void;
|
|
92
98
|
loadCanvasJson: (json: any, onDone?: () => void | Promise<void>, loadOptions?: {
|
|
93
99
|
skipRender?: boolean;
|