@spiffcommerce/core 20.1.0-beta.0 → 20.1.0-beta.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/index.d.ts +75 -5
- package/dist/index.js +68 -53
- package/dist/index.umd.cjs +59 -59
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ declare class PromiseQueue<T extends QueueablePromise> {
|
|
|
137
137
|
* @param mustCover When true the image sgould be bounded in such a way that it covers the entire frame at all times.
|
|
138
138
|
*/
|
|
139
139
|
declare function getBoundedOffsets(newOffsets: FrameOffsets, frameData: FrameData, imageData: PatternImageData, mustCover?: boolean): FrameOffsets;
|
|
140
|
-
declare class FrameService {
|
|
140
|
+
declare class FrameService$1 {
|
|
141
141
|
private offsets;
|
|
142
142
|
private thresholdSettings;
|
|
143
143
|
private forceImageCover?;
|
|
@@ -379,7 +379,7 @@ declare enum InformationMessageType {
|
|
|
379
379
|
* Services required for the operaiton of individual steps.
|
|
380
380
|
*/
|
|
381
381
|
interface StepSpecificServices {
|
|
382
|
-
frameService?: FrameService;
|
|
382
|
+
frameService?: FrameService$1;
|
|
383
383
|
module?: ModuleProduct;
|
|
384
384
|
}
|
|
385
385
|
type DesignCreationProgressUpdate = (message: string) => void;
|
|
@@ -2438,7 +2438,7 @@ declare class FrameStepService implements StepService<FrameStepData> {
|
|
|
2438
2438
|
selectImage(stepData: Step<FrameStepData>, asset: Asset, workflowManager: WorkflowManager): void;
|
|
2439
2439
|
selectVariant(stepData: Step<FrameStepData>, variant: VariantResource | undefined, elements: RegionElement[], workflowManager: WorkflowManager, setFrameIsUpdating?: (status: boolean) => void): Promise<void>;
|
|
2440
2440
|
getCreateElementCommand(id: string, region: Region, layout: ILayout, options: FrameCreateOpts): CreateElementCommand<FrameElement>;
|
|
2441
|
-
loadPatternFromString(src: string, frameService: FrameService): Promise<void>;
|
|
2441
|
+
loadPatternFromString(src: string, frameService: FrameService$1): Promise<void>;
|
|
2442
2442
|
private selectVariantCommand;
|
|
2443
2443
|
private frameSourceSvg;
|
|
2444
2444
|
/**
|
|
@@ -2881,7 +2881,7 @@ declare class FrameStepHandle extends StepHandle<FrameStepData> {
|
|
|
2881
2881
|
selectImage(asset: Asset): void;
|
|
2882
2882
|
getImageData(): PatternImageData | undefined;
|
|
2883
2883
|
getCurrentFrameStep(frameData: FrameData$1, uploading?: any, imageUploadComplete?: any, variants?: VariantResource[]): FrameStep;
|
|
2884
|
-
getFrameService(): FrameService | undefined;
|
|
2884
|
+
getFrameService(): FrameService$1 | undefined;
|
|
2885
2885
|
hasOverlayImageKey(): string | undefined;
|
|
2886
2886
|
hasOverlayImageUrl(): any;
|
|
2887
2887
|
}
|
|
@@ -2961,4 +2961,74 @@ declare class PromiseCache {
|
|
|
2961
2961
|
}
|
|
2962
2962
|
declare const promiseCache: PromiseCache;
|
|
2963
2963
|
|
|
2964
|
-
|
|
2964
|
+
declare enum FrameEventType {
|
|
2965
|
+
/**
|
|
2966
|
+
* This event is sent when the user has clicked a close button within the frame.
|
|
2967
|
+
*/
|
|
2968
|
+
OnCancel = "onCancel",
|
|
2969
|
+
/**
|
|
2970
|
+
* This event is sent when the frame has encountered an error.
|
|
2971
|
+
*/
|
|
2972
|
+
OnError = "onError",
|
|
2973
|
+
/**
|
|
2974
|
+
* This event is sent when the user has completed the experience in the frame and is passign back information to the parent.
|
|
2975
|
+
*/
|
|
2976
|
+
OnComplete = "onComplete",
|
|
2977
|
+
/**
|
|
2978
|
+
* This event is sent when the content in the frame is loaded and ready to display.
|
|
2979
|
+
*/
|
|
2980
|
+
OnLoad = "onLoad"
|
|
2981
|
+
}
|
|
2982
|
+
/**
|
|
2983
|
+
* This event is sent when the frame has encountered an error.
|
|
2984
|
+
*/
|
|
2985
|
+
interface ErrorEvent {
|
|
2986
|
+
event: FrameEventType.OnError;
|
|
2987
|
+
data: Error;
|
|
2988
|
+
}
|
|
2989
|
+
/**
|
|
2990
|
+
* This event is sent when the user has clicked a close button within the frame.
|
|
2991
|
+
*/
|
|
2992
|
+
interface CancelEvent {
|
|
2993
|
+
event: FrameEventType.OnCancel;
|
|
2994
|
+
}
|
|
2995
|
+
/**
|
|
2996
|
+
* This event is sent when the content in the frame is loaded and ready to display. As
|
|
2997
|
+
* the point at which the content is considered 'loaded' can vary between themes, we require the theme developer to report it.
|
|
2998
|
+
*/
|
|
2999
|
+
interface LoadEvent {
|
|
3000
|
+
event: FrameEventType.OnLoad;
|
|
3001
|
+
}
|
|
3002
|
+
/**
|
|
3003
|
+
* This event is sent when the user has completed the transaction in the frame and is passing back information to the parent.
|
|
3004
|
+
*/
|
|
3005
|
+
interface TransactionCompleteEvent {
|
|
3006
|
+
event: FrameEventType.OnComplete;
|
|
3007
|
+
}
|
|
3008
|
+
/**
|
|
3009
|
+
* This event is sent when the user has completed the bundle experience in the frame and is passing back information to the parent.
|
|
3010
|
+
*/
|
|
3011
|
+
interface BundleCompleteEvent {
|
|
3012
|
+
bundleId: string;
|
|
3013
|
+
items: TransactionCompleteEvent[];
|
|
3014
|
+
event: FrameEventType.OnComplete;
|
|
3015
|
+
}
|
|
3016
|
+
/**
|
|
3017
|
+
* A union of the various frame events that can be sent to the parent window.
|
|
3018
|
+
*/
|
|
3019
|
+
type FrameEvent = BundleCompleteEvent | (TransactionCompleteEvent & DesignCreationMessage) | CancelEvent | ErrorEvent | LoadEvent;
|
|
3020
|
+
/**
|
|
3021
|
+
* Service for communicating with the parent window. Wraps calls to `window.parent.postMessage` and provides strongly typed events.
|
|
3022
|
+
*/
|
|
3023
|
+
declare class FrameService {
|
|
3024
|
+
/**
|
|
3025
|
+
* * Send a message to the parent window.
|
|
3026
|
+
* We don't currently know the domain of the parent window in a secure way so we use `window.parent.origin` to send the message.
|
|
3027
|
+
* FIXME: One day in the future let's build a whitelist or something similar that can be used to validate the origin of the parent window.
|
|
3028
|
+
* @param event The event to send. Must be strongly typed as one of the FrameEvent types.
|
|
3029
|
+
*/
|
|
3030
|
+
postMessage(event: FrameEvent): void;
|
|
3031
|
+
}
|
|
3032
|
+
declare const frameService: FrameService;
|
|
3033
|
+
|
|
3034
|
+
export { ArrayInput, AssetNotFoundError, Bundle, CollectionProduct, ColorOption, ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation, Customer, CustomerDetailsInput, DesignCreationMessage, DesignCreationProgressUpdate, DesignInputStep, EditedSteps, FlowExecutionNodeResult, FlowExecutionResult, FlowService, FrameEventType, FrameService$1 as FrameService, FrameStep, FrameStepHandle, FrameThresholdSettings, GetWorkflowOptions, GlobalPropertyHandle, IllustrationStepHandle, InformationMessageType, InformationResult, InformationStepHandle, IntegrationProduct, IntegrationType, LayoutNotFoundError, MandatorySteps, MaterialStepHandle, MisconfigurationError, MockWorkflowManager, ModelStepHandle, NodeType, ObjectInput, ObjectInputType, OptionNotFoundError, ParseError, PictureStepHandle, Product, ProductCameraRig, ProductCollection, ProductWorkflow, promiseCache as PromiseCache, PromiseQueue, QuestionStepHandle, QueueablePromise, RegionElement, RenderableScene, ResourceNotFoundError, SavedDesign, SelectionStorage, ShapeStepHandle, SilentIllustrationStepData, SpiffCommerceClient, Stakeholder, StakeholderType, StateMutationFunc, StepElements, StepHandle, TextInput, TextStepHandle, TextStepStorage, Transaction, Transform, TransformCollection, UnhandledBehaviorError, Variant, Vector3, WorkflowExperience, WorkflowExperienceImpl, WorkflowManager, WorkflowMetadata, WorkflowScene, WorkflowSelections, WorkflowStorage, assetService, createDesign, designService, digitalContentStepService, frameService, frameStepService, generateCommands, generateStateFromDesignInputSteps, getBoundedOffsets, getWorkflow, getWorkflows, graphQlManager, illustrationStepService, materialStepService, modelStepService, moduleStepService, optionService, persistenceService, pictureStepService, questionStepService, shapeStepService, shortenUrl, spiffCoreConfiguration, stepAspectValuesToDesignInputSteps, textStepService, toast };
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createHttpLink as Et, InMemoryCache as ht, ApolloClient as Ct, from as Qt, gql as F } from "@apollo/client/core";
|
|
2
2
|
import { fetch as $A, getAttributesFromArrayBuffer as ye, AssetType as Be, StepType as D, getFrameData as _A, frameDataCache as ut, GroupCommand as G, UpdateFramePattern as Ye, UpdateFrameThresholdSettingsCommand as mt, calculateOffsets as Ae, LayoutElementType as v, generate as J, CreateElementCommand as L, generateSVGWithUnknownColors as Se, svgObjectURL as pA, fetchAsString as q, DeleteElementCommand as Z, generateDefaultRectangleFrameSvg as de, GetSVGDimensions as It, patternImageDataCache as we, fetchAsArrayBuffer as pt, findElement as fA, modifySVGWithElementProperties as ft, IllustrationColorCommand as zA, IllustrationCacheCommand as Dt, getFontMetrics as Ft, getPatternImageData as KA, FontAlignmentCommand as Mt, FontColorCommand as yt, FontImageFillCommand as kA, applyTextTransformations as jA, determineCorrectFontSizeAndLines as uA, FontSourceCommand as Ee, loadFont as ee, TextChangeCommand as Yt, FontSizeCommand as St, createElementNS as xt, createElement as lA, _loadFontExternalDataURL as te, UpdateWorkflowStateCommand as he, CommandContext as Pt, createCanvas as DA, getSvgElement as xe, LayoutRenderingPurpose as Pe, renderPapyrusComponentAsString as Ne, loadImage as He, getDomParser as Re, toBase64 as Ce, getVariant as Nt, generateFrameSVG as Ht, getDefaultVariant as NA, domParser as Ue, sanitizeSvgTree as Ge, traverse as Rt, xmlSerializer as ve, CreateLayoutCommand as Ut, AspectType as mA, rehydrateSerializedLayout as _ } from "@spiffcommerce/papyrus";
|
|
3
|
-
import { AssetType as
|
|
3
|
+
import { AssetType as Vi, BringForwardCommand as Wi, BringToBackCommand as Xi, BringToFrontCommand as qi, CanvasCommand as Zi, CommandContext as $i, CreateElementCommand as _i, CreateLayoutCommand as As, DeleteElementCommand as es, FontAlignmentCommand as ts, FontColorCommand as ns, FontSizeCommand as as, FontSourceCommand as is, GroupCommand as ss, LayoutElementFactory as os, LayoutElementType as rs, MoveCommand as cs, ResizeCommand as gs, RotateCommand as ls, SendBackwardsCommand as Bs, StepAspectType as ds, StepType as ws, TextChangeCommand as Es, UnitOfMeasurement as hs, dataUrlFromExternalUrl as Cs, determineCorrectFontSizeAndLines as Qs, findElement as us, frameDataCache as ms, generate as Is, generateSVGWithUnknownColors as ps, getAttributesFromArrayBuffer as fs, getAxisAlignedBoundingBox as Ds, getFrameData as Fs, getSvgElement as Ms, loadFont as ys, patternImageDataCache as Ys, registerFetchImplementation as Ss, registerWindowImplementation as xs, rehydrateSerializedLayout as Ps, setCanvasModule as Ns } from "@spiffcommerce/papyrus";
|
|
4
4
|
import { setContext as Gt } from "@apollo/client/link/context";
|
|
5
5
|
import { onError as vt } from "@apollo/client/link/error";
|
|
6
6
|
import { Pith as ke } from "pith";
|
|
@@ -1327,7 +1327,7 @@ function mn(c, A, e, t) {
|
|
|
1327
1327
|
function dA(c, A, e) {
|
|
1328
1328
|
return Math.min(Math.max(c, A), e);
|
|
1329
1329
|
}
|
|
1330
|
-
|
|
1330
|
+
let In = class {
|
|
1331
1331
|
constructor(A) {
|
|
1332
1332
|
this.minZoomScale = [0.03], this.maxZoomScale = [20], this._debouncedUpdateFrameOffsets = Je(this.updateFrameOffsets, 200), this.targetElements = [], this.onFrameDataChangeListeners = [], this.onZoomChangeListeners = [], this.forceImageCover = A, this.thresholdSettings = { useThreshold: !1, invertThreshold: !1, threshold: 128, thresholdSaturation: 0.5 };
|
|
1333
1333
|
}
|
|
@@ -1511,7 +1511,7 @@ class In {
|
|
|
1511
1511
|
this.offsets[t] = Ae(A, e);
|
|
1512
1512
|
}), this._debouncedUpdateFrameOffsets(this.offsets, A, this.frameData, this.thresholdSettings, this.targetElements));
|
|
1513
1513
|
}
|
|
1514
|
-
}
|
|
1514
|
+
};
|
|
1515
1515
|
class pe {
|
|
1516
1516
|
constructor(A, e, t) {
|
|
1517
1517
|
this.processRegion = async (n) => {
|
|
@@ -7478,7 +7478,7 @@ class Ya extends We {
|
|
|
7478
7478
|
B.resize(s, o), await B.render(), this.onRender();
|
|
7479
7479
|
}
|
|
7480
7480
|
}
|
|
7481
|
-
const
|
|
7481
|
+
const Ji = (c, A) => {
|
|
7482
7482
|
const e = [];
|
|
7483
7483
|
return c.forEach((t) => {
|
|
7484
7484
|
const n = A.steps.find((a) => a.stepName === t.stepName);
|
|
@@ -7489,7 +7489,7 @@ const Gi = (c, A) => {
|
|
|
7489
7489
|
}
|
|
7490
7490
|
});
|
|
7491
7491
|
}), e;
|
|
7492
|
-
},
|
|
7492
|
+
}, bi = async (c, A, e, t) => {
|
|
7493
7493
|
let n = {
|
|
7494
7494
|
serializableWorkflow: { steps: [] },
|
|
7495
7495
|
layouts: {}
|
|
@@ -9010,7 +9010,7 @@ class le {
|
|
|
9010
9010
|
}
|
|
9011
9011
|
}
|
|
9012
9012
|
var ai = /* @__PURE__ */ ((c) => (c.Transaction = "Transaction", c.Bundle = "Bundle", c.Product = "Product", c.Variant = "Variant", c.Option = "Option", c.LineItem = "LineItem", c.Asset = "Asset", c))(ai || {});
|
|
9013
|
-
class
|
|
9013
|
+
class Li extends le {
|
|
9014
9014
|
constructor(A) {
|
|
9015
9015
|
super(`"${A}"`);
|
|
9016
9016
|
}
|
|
@@ -9025,7 +9025,7 @@ class dt extends le {
|
|
|
9025
9025
|
return A.match(/^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i);
|
|
9026
9026
|
}
|
|
9027
9027
|
}
|
|
9028
|
-
class
|
|
9028
|
+
class Ti extends le {
|
|
9029
9029
|
constructor(A) {
|
|
9030
9030
|
super(`[${A.map((e) => e.getRaw()).join(",")}]`);
|
|
9031
9031
|
}
|
|
@@ -10520,7 +10520,7 @@ class Ii {
|
|
|
10520
10520
|
return new Me(a);
|
|
10521
10521
|
}
|
|
10522
10522
|
}
|
|
10523
|
-
class
|
|
10523
|
+
class Oi {
|
|
10524
10524
|
getInitializationPromise() {
|
|
10525
10525
|
return Promise.resolve();
|
|
10526
10526
|
}
|
|
@@ -10686,46 +10686,60 @@ class fi extends W {
|
|
|
10686
10686
|
return this.step.data.overlayImageUrl;
|
|
10687
10687
|
}
|
|
10688
10688
|
}
|
|
10689
|
+
var Di = /* @__PURE__ */ ((c) => (c.OnCancel = "onCancel", c.OnError = "onError", c.OnComplete = "onComplete", c.OnLoad = "onLoad", c))(Di || {});
|
|
10690
|
+
class Fi {
|
|
10691
|
+
/**
|
|
10692
|
+
* * Send a message to the parent window.
|
|
10693
|
+
* We don't currently know the domain of the parent window in a secure way so we use `window.parent.origin` to send the message.
|
|
10694
|
+
* FIXME: One day in the future let's build a whitelist or something similar that can be used to validate the origin of the parent window.
|
|
10695
|
+
* @param event The event to send. Must be strongly typed as one of the FrameEvent types.
|
|
10696
|
+
*/
|
|
10697
|
+
postMessage(A) {
|
|
10698
|
+
window.self !== window.top ? window.parent.postMessage(A, window.parent.origin) : console.warn("The frame service is being used in a context where there is no parent window.");
|
|
10699
|
+
}
|
|
10700
|
+
}
|
|
10701
|
+
const zi = new Fi();
|
|
10689
10702
|
export {
|
|
10690
|
-
|
|
10703
|
+
Ti as ArrayInput,
|
|
10691
10704
|
$ as AssetNotFoundError,
|
|
10692
|
-
|
|
10693
|
-
|
|
10694
|
-
|
|
10695
|
-
|
|
10696
|
-
|
|
10705
|
+
Vi as AssetType,
|
|
10706
|
+
Wi as BringForwardCommand,
|
|
10707
|
+
Xi as BringToBackCommand,
|
|
10708
|
+
qi as BringToFrontCommand,
|
|
10709
|
+
Zi as CanvasCommand,
|
|
10697
10710
|
TA as CollectionProduct,
|
|
10698
|
-
|
|
10711
|
+
$i as CommandContext,
|
|
10699
10712
|
cn as ConversionDataType,
|
|
10700
10713
|
rn as ConversionLocation,
|
|
10701
|
-
|
|
10702
|
-
|
|
10703
|
-
|
|
10714
|
+
_i as CreateElementCommand,
|
|
10715
|
+
As as CreateLayoutCommand,
|
|
10716
|
+
es as DeleteElementCommand,
|
|
10704
10717
|
CA as FlowExecutionNodeResult,
|
|
10705
10718
|
ni as FlowExecutionResult,
|
|
10706
10719
|
ti as FlowService,
|
|
10707
|
-
|
|
10708
|
-
|
|
10709
|
-
|
|
10710
|
-
|
|
10720
|
+
ts as FontAlignmentCommand,
|
|
10721
|
+
ns as FontColorCommand,
|
|
10722
|
+
as as FontSizeCommand,
|
|
10723
|
+
is as FontSourceCommand,
|
|
10724
|
+
Di as FrameEventType,
|
|
10711
10725
|
In as FrameService,
|
|
10712
10726
|
pi as FrameStep,
|
|
10713
10727
|
fi as FrameStepHandle,
|
|
10714
10728
|
ge as GlobalPropertyHandle,
|
|
10715
|
-
|
|
10729
|
+
ss as GroupCommand,
|
|
10716
10730
|
Zn as IllustrationStepHandle,
|
|
10717
10731
|
PA as InformationMessageType,
|
|
10718
10732
|
aa as InformationStepHandle,
|
|
10719
10733
|
Me as IntegrationProduct,
|
|
10720
10734
|
sn as IntegrationType,
|
|
10721
|
-
|
|
10722
|
-
|
|
10735
|
+
os as LayoutElementFactory,
|
|
10736
|
+
rs as LayoutElementType,
|
|
10723
10737
|
z as LayoutNotFoundError,
|
|
10724
10738
|
$n as MaterialStepHandle,
|
|
10725
10739
|
MA as MisconfigurationError,
|
|
10726
|
-
|
|
10740
|
+
Oi as MockWorkflowManager,
|
|
10727
10741
|
_n as ModelStepHandle,
|
|
10728
|
-
|
|
10742
|
+
cs as MoveCommand,
|
|
10729
10743
|
dt as ObjectInput,
|
|
10730
10744
|
ai as ObjectInputType,
|
|
10731
10745
|
FA as OptionNotFoundError,
|
|
@@ -10738,64 +10752,65 @@ export {
|
|
|
10738
10752
|
Xe as PromiseQueue,
|
|
10739
10753
|
ea as QuestionStepHandle,
|
|
10740
10754
|
We as QueueablePromise,
|
|
10741
|
-
|
|
10755
|
+
gs as ResizeCommand,
|
|
10742
10756
|
rA as ResourceNotFoundError,
|
|
10743
|
-
|
|
10744
|
-
|
|
10757
|
+
ls as RotateCommand,
|
|
10758
|
+
Bs as SendBackwardsCommand,
|
|
10745
10759
|
ta as ShapeStepHandle,
|
|
10746
10760
|
Ii as SpiffCommerceClient,
|
|
10747
10761
|
YA as StakeholderType,
|
|
10748
|
-
|
|
10762
|
+
ds as StepAspectType,
|
|
10749
10763
|
W as StepHandle,
|
|
10750
|
-
|
|
10751
|
-
|
|
10752
|
-
|
|
10764
|
+
ws as StepType,
|
|
10765
|
+
Es as TextChangeCommand,
|
|
10766
|
+
Li as TextInput,
|
|
10753
10767
|
na as TextStepHandle,
|
|
10754
10768
|
Ai as Transform,
|
|
10755
10769
|
_a as TransformCollection,
|
|
10756
10770
|
k as UnhandledBehaviorError,
|
|
10757
|
-
|
|
10771
|
+
hs as UnitOfMeasurement,
|
|
10758
10772
|
X as Variant,
|
|
10759
10773
|
EA as WorkflowExperienceImpl,
|
|
10760
10774
|
O as assetService,
|
|
10761
10775
|
ga as createDesign,
|
|
10762
|
-
|
|
10776
|
+
Cs as dataUrlFromExternalUrl,
|
|
10763
10777
|
LA as designService,
|
|
10764
|
-
|
|
10778
|
+
Qs as determineCorrectFontSizeAndLines,
|
|
10765
10779
|
Dn as digitalContentStepService,
|
|
10766
|
-
|
|
10767
|
-
|
|
10780
|
+
us as findElement,
|
|
10781
|
+
ms as frameDataCache,
|
|
10782
|
+
zi as frameService,
|
|
10768
10783
|
WA as frameStepService,
|
|
10769
|
-
|
|
10784
|
+
Is as generate,
|
|
10770
10785
|
Da as generateCommands,
|
|
10771
|
-
|
|
10772
|
-
|
|
10773
|
-
|
|
10774
|
-
|
|
10786
|
+
ps as generateSVGWithUnknownColors,
|
|
10787
|
+
bi as generateStateFromDesignInputSteps,
|
|
10788
|
+
fs as getAttributesFromArrayBuffer,
|
|
10789
|
+
Ds as getAxisAlignedBoundingBox,
|
|
10775
10790
|
mn as getBoundedOffsets,
|
|
10776
|
-
|
|
10777
|
-
|
|
10791
|
+
Fs as getFrameData,
|
|
10792
|
+
Ms as getSvgElement,
|
|
10778
10793
|
QA as getWorkflow,
|
|
10779
10794
|
wt as getWorkflows,
|
|
10780
10795
|
P as graphQlManager,
|
|
10781
10796
|
IA as illustrationStepService,
|
|
10782
|
-
|
|
10797
|
+
ys as loadFont,
|
|
10783
10798
|
Ze as materialStepService,
|
|
10784
10799
|
$e as modelStepService,
|
|
10785
10800
|
xn as moduleStepService,
|
|
10786
10801
|
j as optionService,
|
|
10787
|
-
|
|
10802
|
+
Ys as patternImageDataCache,
|
|
10788
10803
|
x as persistenceService,
|
|
10789
10804
|
_e as pictureStepService,
|
|
10790
10805
|
At as questionStepService,
|
|
10791
|
-
|
|
10792
|
-
|
|
10793
|
-
|
|
10794
|
-
|
|
10806
|
+
Ss as registerFetchImplementation,
|
|
10807
|
+
xs as registerWindowImplementation,
|
|
10808
|
+
Ps as rehydrateSerializedLayout,
|
|
10809
|
+
Ns as setCanvasModule,
|
|
10795
10810
|
oA as shapeStepService,
|
|
10796
10811
|
pn as shortenUrl,
|
|
10797
10812
|
yA as spiffCoreConfiguration,
|
|
10798
|
-
|
|
10813
|
+
Ji as stepAspectValuesToDesignInputSteps,
|
|
10799
10814
|
K as textStepService,
|
|
10800
10815
|
Un as toast
|
|
10801
10816
|
};
|