zakeke-configurator-react 0.0.144 → 0.0.146
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.
|
@@ -71,9 +71,9 @@ export declare class ZakekeEnvironment {
|
|
|
71
71
|
private initialSelection;
|
|
72
72
|
private undoStack;
|
|
73
73
|
private redoStack;
|
|
74
|
+
private pricingCalculator;
|
|
74
75
|
currentAttributesSelection: Object | null;
|
|
75
76
|
currentCompositionInfo: CurrentCompositionInfo | null;
|
|
76
|
-
private pricingCalculator;
|
|
77
77
|
private copyrightMessageLocalStorageKey;
|
|
78
78
|
sellerSettings: SellerSettings | null;
|
|
79
79
|
get internalProduct(): MPlaza.Model | null;
|
|
@@ -101,12 +101,12 @@ export declare class ZakekeEnvironment {
|
|
|
101
101
|
isExplodedMode: boolean;
|
|
102
102
|
isAssetsLoading: boolean;
|
|
103
103
|
extensionFields: ExtensionFields[];
|
|
104
|
+
eventMessages: EventMessage[] | null;
|
|
104
105
|
private translations;
|
|
105
106
|
publicTranslations: PublicTranslations | null;
|
|
106
107
|
useLegacyScreenshot: boolean;
|
|
107
108
|
get isFullscreenMode(): boolean;
|
|
108
109
|
get isViewerReady(): boolean;
|
|
109
|
-
eventMessages: EventMessage[] | null;
|
|
110
110
|
constructor();
|
|
111
111
|
private parseParameters;
|
|
112
112
|
private getProduct;
|
|
@@ -135,6 +135,7 @@ export declare class TextItem implements Item {
|
|
|
135
135
|
fontStretch: string;
|
|
136
136
|
justification: string;
|
|
137
137
|
isTextOnPath: boolean;
|
|
138
|
+
isTemplateElement: boolean;
|
|
138
139
|
constraints: ({
|
|
139
140
|
[key: string]: any;
|
|
140
141
|
}) | null;
|
|
@@ -227,7 +228,25 @@ interface Addon {
|
|
|
227
228
|
addonName: string;
|
|
228
229
|
subscriptionAddonID: string;
|
|
229
230
|
}
|
|
231
|
+
export interface AdditionalFeatures {
|
|
232
|
+
editPDFPreview: boolean;
|
|
233
|
+
editSummary: boolean;
|
|
234
|
+
integrations: boolean;
|
|
235
|
+
bulkVariationForm: boolean;
|
|
236
|
+
pricePerImage: boolean;
|
|
237
|
+
engraving: boolean;
|
|
238
|
+
editPrintfiles: boolean;
|
|
239
|
+
printReadyFilesPlus: boolean;
|
|
240
|
+
textplus: boolean;
|
|
241
|
+
prices3dConfigurator: boolean;
|
|
242
|
+
customEnvironmentTexture: boolean;
|
|
243
|
+
dynamicProperties: boolean;
|
|
244
|
+
materialLibrary: boolean;
|
|
245
|
+
multiareaConfiguratorDesigner: boolean;
|
|
246
|
+
}
|
|
230
247
|
export interface Settings {
|
|
248
|
+
additionalFeatures: AdditionalFeatures;
|
|
249
|
+
isPricingAdvancedEnabled: boolean;
|
|
231
250
|
userID: number;
|
|
232
251
|
username: string;
|
|
233
252
|
referrerID: number;
|