@jetprint/editor-sdk 1.2.4 → 1.2.6
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/components/EditorAddToCartDialog.vue.d.ts +1 -0
- package/dist/components/Editor/components/EditorTopbar.vue.d.ts +24 -0
- package/dist/components/Editor/components/EmbroideryStitchPanel.vue.d.ts +9 -0
- package/dist/components/Editor/components/PreviewPanel.vue.d.ts +1 -1
- package/dist/components/Editor/composables/useBackgroundRemoval.d.ts +2 -1
- package/dist/components/Editor/composables/useCanvasStateByDiecut.d.ts +8 -0
- package/dist/components/Editor/composables/useCanvasViewport.d.ts +1 -0
- package/dist/components/Editor/composables/useEmbroidery.d.ts +57 -0
- package/dist/components/Editor/composables/usePreviewRenderer.d.ts +2 -0
- package/dist/components/Editor/headless/headlessFontLoader.d.ts +7 -0
- package/dist/components/Editor/index.vue.d.ts +7 -5
- package/dist/components/Editor/utils/editorSizeOptions.d.ts +6 -0
- package/dist/components/Editor/utils/embroideryStitch.d.ts +25 -0
- package/dist/components/Editor/utils/pillow3dPreview.d.ts +37 -0
- package/dist/components/Editor/workers/embroidery.worker.d.ts +47 -0
- package/dist/editor-sdk.es.js +27495 -26220
- package/dist/index.d.ts +6 -0
- package/dist/style.css +1 -1
- package/dist/types.d.ts +31 -1
- package/dist/utils/backgroundRenderer.d.ts +6 -3
- package/dist/utils/protection/encryptedModules.generated.d.ts +1 -1
- package/dist/utils/renderedImagesDB.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ declare const _default: {
|
|
|
54
54
|
onAddToCartSuccess?: (payload?: {
|
|
55
55
|
addedCount?: number;
|
|
56
56
|
psTaskCode?: string;
|
|
57
|
+
psTaskId?: string;
|
|
57
58
|
}) => void;
|
|
58
59
|
onAddToCartError?: (msg?: string) => void;
|
|
59
60
|
onGoHome?: () => void;
|
|
@@ -170,6 +171,7 @@ declare const _default: {
|
|
|
170
171
|
onAddToCartSuccess: (payload?: {
|
|
171
172
|
addedCount?: number;
|
|
172
173
|
psTaskCode?: string;
|
|
174
|
+
psTaskId?: string;
|
|
173
175
|
}) => void;
|
|
174
176
|
onAddToCartError: (msg?: string) => void;
|
|
175
177
|
messages: Record<string, string>;
|
|
@@ -207,6 +209,7 @@ declare const _default: {
|
|
|
207
209
|
onAddToCartSuccess?: (payload?: {
|
|
208
210
|
addedCount?: number;
|
|
209
211
|
psTaskCode?: string;
|
|
212
|
+
psTaskId?: string;
|
|
210
213
|
}) => void;
|
|
211
214
|
onAddToCartError?: (msg?: string) => void;
|
|
212
215
|
onGoHome?: () => void;
|
|
@@ -320,6 +323,7 @@ declare const _default: {
|
|
|
320
323
|
onAddToCartSuccess: (payload?: {
|
|
321
324
|
addedCount?: number;
|
|
322
325
|
psTaskCode?: string;
|
|
326
|
+
psTaskId?: string;
|
|
323
327
|
}) => void;
|
|
324
328
|
onAddToCartError: (msg?: string) => void;
|
|
325
329
|
messages: Record<string, string>;
|
|
@@ -354,6 +358,7 @@ declare const _default: {
|
|
|
354
358
|
onAddToCartSuccess?: (payload?: {
|
|
355
359
|
addedCount?: number;
|
|
356
360
|
psTaskCode?: string;
|
|
361
|
+
psTaskId?: string;
|
|
357
362
|
}) => void;
|
|
358
363
|
onAddToCartError?: (msg?: string) => void;
|
|
359
364
|
onGoHome?: () => void;
|
|
@@ -470,6 +475,7 @@ declare const _default: {
|
|
|
470
475
|
onAddToCartSuccess: (payload?: {
|
|
471
476
|
addedCount?: number;
|
|
472
477
|
psTaskCode?: string;
|
|
478
|
+
psTaskId?: string;
|
|
473
479
|
}) => void;
|
|
474
480
|
onAddToCartError: (msg?: string) => void;
|
|
475
481
|
messages: Record<string, string>;
|