@spiffcommerce/core 21.1.0 → 21.1.2
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/CHANGELOG.md +12 -0
- package/dist/index.d.ts +72 -2
- package/dist/index.js +46 -41
- package/dist/index.umd.cjs +61 -61
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [21.1.1] - 15-03-2024
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Exported missing `AspectType` for global property handles.
|
|
13
|
+
|
|
14
|
+
## [21.1.0] - 14-03-2024
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
- `Bundle.hasGlobalProperties(): boolean`: Returns true when the bundle is linked to a Global Property Configuration.
|
|
19
|
+
|
|
8
20
|
## [21.0.1] - 13-03-2024
|
|
9
21
|
|
|
10
22
|
### Fixed
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as _spiffcommerce_papyrus from '@spiffcommerce/papyrus';
|
|
2
2
|
import { OptionResource, VariantResource, Step, AnyStepData, FrameOffsets, PatternImageData, Region, Workflow, ILayout, LayoutsState, LayoutData, SilentStepData, Placeable, StepStorage, CanvasCommand, CommandContext, LayoutState, SerializableStep, CommandState, GlobalPropertyConfiguration, Asset, MaterialResource, AssetType, StepType, GlobalPropertyConfigurationAspect, AspectType, Theme, FrameStepData, CreateElementCommand, FrameElement, IllustrationStepData, IllustrationElement, ColorDefinition, MaterialStepData, ModelStepData, TextStepData, TextboxElement, TextFillImage, FontData, GroupCommand, PictureStepData, QuestionStepData, ShapeStepData, ModuleStepData, DigitalContentStepData, FrameData as FrameData$1, InformationStepData } from '@spiffcommerce/papyrus';
|
|
3
|
-
export { Animatable, AnyStepData, Asset, AssetType, BringForwardCommand, BringToBackCommand, BringToFrontCommand, CanvasCommand, ColorDefinition, ColorProfileProps, CommandContext, CommandState, CreateElementCommand, CreateLayoutCommand, DeleteElementCommand, DigitalContentStepData, FontAlignmentCommand, FontColorCommand, FontSizeCommand, FontSourceCommand, FrameElement, FrameStepData, GroupCommand, ILayout, IllustrationElement, IllustrationStepData, ImageElement, InformationStepData, LayoutData, LayoutElement, LayoutElementFactory, LayoutElementType, LayoutsState, MaterialStepData, ModelStepData, ModuleStepData, MoveCommand, OptionResource, PictureStepData, QuestionStepData, ResizeCommand, RotateCommand, SendBackwardsCommand, ShapeStepData, Step, StepAspect, StepAspectType, StepStorage, StepType, TextChangeCommand, TextStepData, TextboxElement, Theme, UnitOfMeasurement, VariantResource, Workflow, WorkflowPanel, dataUrlFromExternalUrl, determineCorrectFontSizeAndLines, findElement, frameDataCache, generate, generateSVGWithUnknownColors, getAttributesFromArrayBuffer, getAxisAlignedBoundingBox, getFrameData, getSvgElement, loadFont, patternImageDataCache, registerFetchImplementation, registerWindowImplementation, rehydrateSerializedLayout, setCanvasModule } from '@spiffcommerce/papyrus';
|
|
3
|
+
export { Animatable, AnyStepData, AspectType, Asset, AssetType, BringForwardCommand, BringToBackCommand, BringToFrontCommand, CanvasCommand, ColorDefinition, ColorProfileProps, CommandContext, CommandState, CreateElementCommand, CreateLayoutCommand, DeleteElementCommand, DigitalContentStepData, FontAlignmentCommand, FontColorCommand, FontSizeCommand, FontSourceCommand, FrameElement, FrameStepData, GroupCommand, ILayout, IllustrationElement, IllustrationStepData, ImageElement, InformationStepData, LayoutData, LayoutElement, LayoutElementFactory, LayoutElementType, LayoutsState, MaterialStepData, ModelStepData, ModuleStepData, MoveCommand, OptionResource, PictureStepData, QuestionStepData, ResizeCommand, RotateCommand, SendBackwardsCommand, ShapeStepData, Step, StepAspect, StepAspectType, StepStorage, StepType, TextChangeCommand, TextStepData, TextboxElement, Theme, UnitOfMeasurement, VariantResource, Workflow, WorkflowPanel, dataUrlFromExternalUrl, determineCorrectFontSizeAndLines, findElement, frameDataCache, generate, generateSVGWithUnknownColors, getAttributesFromArrayBuffer, getAxisAlignedBoundingBox, getFrameData, getSvgElement, loadFont, patternImageDataCache, registerFetchImplementation, registerWindowImplementation, rehydrateSerializedLayout, setCanvasModule } from '@spiffcommerce/papyrus';
|
|
4
4
|
import { ApolloClient, MutationOptions, FetchResult } from '@apollo/client/core';
|
|
5
5
|
import { RenderableContextService, RenderableContext, ThreeDPreviewService, ModelContainer } from '@spiffcommerce/preview';
|
|
6
6
|
import * as lodash from 'lodash';
|
|
@@ -1667,6 +1667,76 @@ declare abstract class GlobalPropertyHandle {
|
|
|
1667
1667
|
*/
|
|
1668
1668
|
protected getSharedSteps(targetExperiences?: WorkflowExperience[]): StepHandle<_spiffcommerce_papyrus.AnyStepData>[];
|
|
1669
1669
|
}
|
|
1670
|
+
/**
|
|
1671
|
+
* A file upload global property allows for setting a frame image against all shared steps.
|
|
1672
|
+
*/
|
|
1673
|
+
declare class FileUploadGlobalPropertyHandle extends GlobalPropertyHandle {
|
|
1674
|
+
constructor(bundle: Bundle, property: GlobalPropertyConfigurationAspect);
|
|
1675
|
+
/**
|
|
1676
|
+
* Select an image to be used for all shared steps.
|
|
1677
|
+
* @param asset The asset to use.
|
|
1678
|
+
* @returns A promise resolving when all affected steps have been updated.
|
|
1679
|
+
*/
|
|
1680
|
+
selectImage(asset: Asset): Promise<void>;
|
|
1681
|
+
applyGlobalState(targetExperiences?: WorkflowExperience[]): Promise<void>;
|
|
1682
|
+
private applyImageSelection;
|
|
1683
|
+
}
|
|
1684
|
+
declare class TextGlobalPropertyHandle extends GlobalPropertyHandle {
|
|
1685
|
+
constructor(bundle: Bundle, property: GlobalPropertyConfigurationAspect);
|
|
1686
|
+
/**
|
|
1687
|
+
* Gets the current text
|
|
1688
|
+
*/
|
|
1689
|
+
getText(): string;
|
|
1690
|
+
/**
|
|
1691
|
+
* Set the text.
|
|
1692
|
+
*/
|
|
1693
|
+
setText(text: string): Promise<void>;
|
|
1694
|
+
applyGlobalState(targetExperiences?: WorkflowExperience[]): Promise<void>;
|
|
1695
|
+
private applyTextSelection;
|
|
1696
|
+
}
|
|
1697
|
+
/**
|
|
1698
|
+
* An option property handle represents a property that can
|
|
1699
|
+
* affect the option of steps across multiple transactions.
|
|
1700
|
+
*/
|
|
1701
|
+
declare class OptionGlobalPropertyHandle extends GlobalPropertyHandle {
|
|
1702
|
+
protected optionResource?: OptionResource;
|
|
1703
|
+
constructor(bundle: Bundle, property: GlobalPropertyConfigurationAspect, optionResource: OptionResource | undefined);
|
|
1704
|
+
/**
|
|
1705
|
+
* Gets the currently selected variant, or undefined if no variant is selected.
|
|
1706
|
+
*/
|
|
1707
|
+
getCurrentVariant(): Variant | undefined;
|
|
1708
|
+
/**
|
|
1709
|
+
* @returns A list of valid variants for this step. Does not include disabled variants.
|
|
1710
|
+
*/
|
|
1711
|
+
getAvailableVariants(): Variant[];
|
|
1712
|
+
/**
|
|
1713
|
+
* @returns A list of all variants for this step, including disabled ones.
|
|
1714
|
+
*/
|
|
1715
|
+
getAllVariants(): Variant[];
|
|
1716
|
+
/**
|
|
1717
|
+
* Select a given variant on the option for all shared steps.
|
|
1718
|
+
* @param variant The variant to select.
|
|
1719
|
+
*/
|
|
1720
|
+
selectVariant(variant: Variant): Promise<void>;
|
|
1721
|
+
applyGlobalState(targetExperiences?: WorkflowExperience[]): Promise<void>;
|
|
1722
|
+
private applyVariantSelection;
|
|
1723
|
+
}
|
|
1724
|
+
/**
|
|
1725
|
+
* A color option property handle represents a property that can
|
|
1726
|
+
* affect the option of steps across multiple transactions. This class is a specialization of the OptionGlobalPropertyHandle which includes functionality for
|
|
1727
|
+
* setting custom color values when a custom color variant is selected.
|
|
1728
|
+
*/
|
|
1729
|
+
declare class ColorOptionGlobalPropertyHandle extends OptionGlobalPropertyHandle {
|
|
1730
|
+
constructor(bundle: Bundle, property: GlobalPropertyConfigurationAspect, optionResource: OptionResource | undefined);
|
|
1731
|
+
/**
|
|
1732
|
+
* Sets a custom color on the global state.
|
|
1733
|
+
*/
|
|
1734
|
+
setCustomColor(color: string): void;
|
|
1735
|
+
/**
|
|
1736
|
+
* Gets the custom color used by the global state.
|
|
1737
|
+
*/
|
|
1738
|
+
getCustomColor(): string;
|
|
1739
|
+
}
|
|
1670
1740
|
|
|
1671
1741
|
interface GlobalPropertyStateManager {
|
|
1672
1742
|
getInitializationPromise(): Promise<void>;
|
|
@@ -3032,4 +3102,4 @@ declare class PromiseCache {
|
|
|
3032
3102
|
}
|
|
3033
3103
|
declare const promiseCache: PromiseCache;
|
|
3034
3104
|
|
|
3035
|
-
export { ArrayInput, AssetNotFoundError, Bundle, BundleDesignCreationMessage, BundleEvent, BundleEventData, BundleEventType, CollectionProduct, ColorOption, ConditionalGlobalPropertiesChangedEventData, ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation, Customer, CustomerDetailsInput, DesignCreationMessage, DesignCreationProgressUpdate, DesignInputStep, EditedSteps, FlowExecutionNodeResult, FlowExecutionResult, FlowService, FrameService, FrameStep, FrameStepHandle, FrameThresholdSettings, GetNewWorkflowOptions, 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, WorkflowExperienceEventType, WorkflowExperienceHoverEventData, WorkflowExperienceImpl, WorkflowManager, WorkflowMetadata, WorkflowScene, WorkflowSelections, WorkflowStorage, assetService, createDesign, designService, digitalContentStepService, frameStepService, generateCommands, generateStateFromDesignInputSteps, getBoundedOffsets, getWorkflow, getWorkflows, graphQlManager, illustrationStepService, materialStepService, modelStepService, moduleStepService, optionService, persistenceService, pictureStepService, questionStepService, shapeStepService, shortenUrl, spiffCoreConfiguration, stepAspectValuesToDesignInputSteps, textStepService, toast };
|
|
3105
|
+
export { ArrayInput, AssetNotFoundError, Bundle, BundleDesignCreationMessage, BundleEvent, BundleEventData, BundleEventType, CollectionProduct, ColorOption, ColorOptionGlobalPropertyHandle, ConditionalGlobalPropertiesChangedEventData, ConversionConfiguration, ConversionData, ConversionDataType, ConversionLocation, Customer, CustomerDetailsInput, DesignCreationMessage, DesignCreationProgressUpdate, DesignInputStep, EditedSteps, FileUploadGlobalPropertyHandle, FlowExecutionNodeResult, FlowExecutionResult, FlowService, FrameService, FrameStep, FrameStepHandle, FrameThresholdSettings, GetNewWorkflowOptions, GetWorkflowOptions, GlobalPropertyHandle, IllustrationStepHandle, InformationMessageType, InformationResult, InformationStepHandle, IntegrationProduct, IntegrationType, LayoutNotFoundError, MandatorySteps, MaterialStepHandle, MisconfigurationError, MockWorkflowManager, ModelStepHandle, NodeType, ObjectInput, ObjectInputType, OptionGlobalPropertyHandle, 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, TextGlobalPropertyHandle, TextInput, TextStepHandle, TextStepStorage, Transaction, Transform, TransformCollection, UnhandledBehaviorError, Variant, Vector3, WorkflowExperience, WorkflowExperienceEventType, WorkflowExperienceHoverEventData, WorkflowExperienceImpl, WorkflowManager, WorkflowMetadata, WorkflowScene, WorkflowSelections, WorkflowStorage, assetService, createDesign, designService, digitalContentStepService, 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 $e, getAttributesFromArrayBuffer as yA, AssetType as BA, StepType as D, getFrameData as _e, frameDataCache as ut, GroupCommand as G, UpdateFramePattern as YA, UpdateFrameThresholdSettingsCommand as mt, calculateOffsets as eA, LayoutElementType as v, generate as J, CreateElementCommand as L, generateSVGWithUnknownColors as SA, svgObjectURL as fe, fetchAsString as Z, DeleteElementCommand as $, generateDefaultRectangleFrameSvg as dA, GetSVGDimensions as It, patternImageDataCache as wA, fetchAsArrayBuffer as pt, findElement as De, modifySVGWithElementProperties as ft, IllustrationColorCommand as Ke, IllustrationCacheCommand as Dt, getFontMetrics as Ft, getPatternImageData as je, FontAlignmentCommand as Mt, FontColorCommand as yt, FontImageFillCommand as Je, applyTextTransformations as Ve, determineCorrectFontSizeAndLines as me, FontSourceCommand as EA, loadFont as AA, TextChangeCommand as Yt, FontSizeCommand as St, createElementNS as xt, createElement as Be, _loadFontExternalDataURL as tA, UpdateWorkflowStateCommand as hA, CommandContext as Pt, createCanvas as Fe, getSvgElement as xA, LayoutRenderingPurpose as PA, renderPapyrusComponentAsString as NA, loadImage as HA, getDomParser as RA, toBase64 as CA, getVariant as Nt, generateFrameSVG as Ht, getDefaultVariant as He, domParser as UA, sanitizeSvgTree as GA, traverse as Rt, xmlSerializer as vA, CreateLayoutCommand as Ut, AspectType as Ie, rehydrateSerializedLayout as ee } from "@spiffcommerce/papyrus";
|
|
3
|
-
import {
|
|
3
|
+
import { AspectType as Ki, AssetType as ji, BringForwardCommand as Vi, BringToBackCommand as Wi, BringToFrontCommand as Xi, CanvasCommand as qi, CommandContext as Zi, CreateElementCommand as $i, CreateLayoutCommand as _i, DeleteElementCommand as es, FontAlignmentCommand as As, FontColorCommand as ts, FontSizeCommand as ns, FontSourceCommand as as, GroupCommand as is, LayoutElementFactory as ss, LayoutElementType as os, MoveCommand as rs, ResizeCommand as cs, RotateCommand as gs, SendBackwardsCommand as ls, StepAspectType as Bs, StepType as ds, TextChangeCommand as ws, UnitOfMeasurement as Es, dataUrlFromExternalUrl as hs, determineCorrectFontSizeAndLines as Cs, findElement as Qs, frameDataCache as us, generate as ms, generateSVGWithUnknownColors as Is, getAttributesFromArrayBuffer as ps, getAxisAlignedBoundingBox as fs, getFrameData as Ds, getSvgElement as Fs, loadFont as Ms, patternImageDataCache as ys, registerFetchImplementation as Ys, registerWindowImplementation as Ss, rehydrateSerializedLayout as xs, setCanvasModule as Ps } 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 kA } from "pith";
|
|
@@ -10781,46 +10781,50 @@ class Fi extends W {
|
|
|
10781
10781
|
}
|
|
10782
10782
|
export {
|
|
10783
10783
|
Li as ArrayInput,
|
|
10784
|
+
Ki as AspectType,
|
|
10784
10785
|
_ as AssetNotFoundError,
|
|
10785
|
-
|
|
10786
|
-
|
|
10787
|
-
|
|
10788
|
-
|
|
10789
|
-
|
|
10786
|
+
ji as AssetType,
|
|
10787
|
+
Vi as BringForwardCommand,
|
|
10788
|
+
Wi as BringToBackCommand,
|
|
10789
|
+
Xi as BringToFrontCommand,
|
|
10790
|
+
qi as CanvasCommand,
|
|
10790
10791
|
Oe as CollectionProduct,
|
|
10791
|
-
|
|
10792
|
+
Wa as ColorOptionGlobalPropertyHandle,
|
|
10793
|
+
Zi as CommandContext,
|
|
10792
10794
|
cn as ConversionDataType,
|
|
10793
10795
|
rn as ConversionLocation,
|
|
10794
|
-
|
|
10795
|
-
|
|
10796
|
-
|
|
10796
|
+
$i as CreateElementCommand,
|
|
10797
|
+
_i as CreateLayoutCommand,
|
|
10798
|
+
es as DeleteElementCommand,
|
|
10799
|
+
ja as FileUploadGlobalPropertyHandle,
|
|
10797
10800
|
Qe as FlowExecutionNodeResult,
|
|
10798
10801
|
ii as FlowExecutionResult,
|
|
10799
10802
|
ai as FlowService,
|
|
10800
|
-
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10803
|
+
As as FontAlignmentCommand,
|
|
10804
|
+
ts as FontColorCommand,
|
|
10805
|
+
ns as FontSizeCommand,
|
|
10806
|
+
as as FontSourceCommand,
|
|
10804
10807
|
pn as FrameService,
|
|
10805
10808
|
Di as FrameStep,
|
|
10806
10809
|
Fi as FrameStepHandle,
|
|
10807
10810
|
gA as GlobalPropertyHandle,
|
|
10808
|
-
|
|
10811
|
+
is as GroupCommand,
|
|
10809
10812
|
$n as IllustrationStepHandle,
|
|
10810
10813
|
Pe as InformationMessageType,
|
|
10811
10814
|
ia as InformationStepHandle,
|
|
10812
10815
|
MA as IntegrationProduct,
|
|
10813
10816
|
sn as IntegrationType,
|
|
10814
|
-
|
|
10815
|
-
|
|
10817
|
+
ss as LayoutElementFactory,
|
|
10818
|
+
os as LayoutElementType,
|
|
10816
10819
|
z as LayoutNotFoundError,
|
|
10817
10820
|
_n as MaterialStepHandle,
|
|
10818
10821
|
ye as MisconfigurationError,
|
|
10819
10822
|
Ti as MockWorkflowManager,
|
|
10820
10823
|
ea as ModelStepHandle,
|
|
10821
|
-
|
|
10824
|
+
rs as MoveCommand,
|
|
10822
10825
|
dt as ObjectInput,
|
|
10823
10826
|
si as ObjectInputType,
|
|
10827
|
+
Bt as OptionGlobalPropertyHandle,
|
|
10824
10828
|
Me as OptionNotFoundError,
|
|
10825
10829
|
oe as ParseError,
|
|
10826
10830
|
Aa as PictureStepHandle,
|
|
@@ -10831,61 +10835,62 @@ export {
|
|
|
10831
10835
|
XA as PromiseQueue,
|
|
10832
10836
|
ta as QuestionStepHandle,
|
|
10833
10837
|
WA as QueueablePromise,
|
|
10834
|
-
|
|
10838
|
+
cs as ResizeCommand,
|
|
10835
10839
|
ce as ResourceNotFoundError,
|
|
10836
|
-
|
|
10837
|
-
|
|
10840
|
+
gs as RotateCommand,
|
|
10841
|
+
ls as SendBackwardsCommand,
|
|
10838
10842
|
na as ShapeStepHandle,
|
|
10839
10843
|
fi as SpiffCommerceClient,
|
|
10840
10844
|
Ye as StakeholderType,
|
|
10841
|
-
|
|
10845
|
+
Bs as StepAspectType,
|
|
10842
10846
|
W as StepHandle,
|
|
10843
|
-
|
|
10844
|
-
|
|
10847
|
+
ds as StepType,
|
|
10848
|
+
ws as TextChangeCommand,
|
|
10849
|
+
Va as TextGlobalPropertyHandle,
|
|
10845
10850
|
bi as TextInput,
|
|
10846
10851
|
aa as TextStepHandle,
|
|
10847
10852
|
ti as Transform,
|
|
10848
10853
|
Ai as TransformCollection,
|
|
10849
10854
|
k as UnhandledBehaviorError,
|
|
10850
|
-
|
|
10855
|
+
Es as UnitOfMeasurement,
|
|
10851
10856
|
X as Variant,
|
|
10852
10857
|
Ea as WorkflowExperienceEventType,
|
|
10853
10858
|
he as WorkflowExperienceImpl,
|
|
10854
10859
|
O as assetService,
|
|
10855
10860
|
la as createDesign,
|
|
10856
|
-
|
|
10861
|
+
hs as dataUrlFromExternalUrl,
|
|
10857
10862
|
Te as designService,
|
|
10858
|
-
|
|
10863
|
+
Cs as determineCorrectFontSizeAndLines,
|
|
10859
10864
|
Fn as digitalContentStepService,
|
|
10860
|
-
|
|
10861
|
-
|
|
10865
|
+
Qs as findElement,
|
|
10866
|
+
us as frameDataCache,
|
|
10862
10867
|
Xe as frameStepService,
|
|
10863
|
-
|
|
10868
|
+
ms as generate,
|
|
10864
10869
|
Ma as generateCommands,
|
|
10865
|
-
|
|
10870
|
+
Is as generateSVGWithUnknownColors,
|
|
10866
10871
|
Ji as generateStateFromDesignInputSteps,
|
|
10867
|
-
|
|
10868
|
-
|
|
10872
|
+
ps as getAttributesFromArrayBuffer,
|
|
10873
|
+
fs as getAxisAlignedBoundingBox,
|
|
10869
10874
|
In as getBoundedOffsets,
|
|
10870
|
-
|
|
10871
|
-
|
|
10875
|
+
Ds as getFrameData,
|
|
10876
|
+
Fs as getSvgElement,
|
|
10872
10877
|
ue as getWorkflow,
|
|
10873
10878
|
wt as getWorkflows,
|
|
10874
10879
|
P as graphQlManager,
|
|
10875
10880
|
pe as illustrationStepService,
|
|
10876
|
-
|
|
10881
|
+
Ms as loadFont,
|
|
10877
10882
|
ZA as materialStepService,
|
|
10878
10883
|
$A as modelStepService,
|
|
10879
10884
|
Pn as moduleStepService,
|
|
10880
10885
|
j as optionService,
|
|
10881
|
-
|
|
10886
|
+
ys as patternImageDataCache,
|
|
10882
10887
|
x as persistenceService,
|
|
10883
10888
|
_A as pictureStepService,
|
|
10884
10889
|
et as questionStepService,
|
|
10885
|
-
|
|
10886
|
-
|
|
10887
|
-
|
|
10888
|
-
|
|
10890
|
+
Ys as registerFetchImplementation,
|
|
10891
|
+
Ss as registerWindowImplementation,
|
|
10892
|
+
xs as rehydrateSerializedLayout,
|
|
10893
|
+
Ps as setCanvasModule,
|
|
10889
10894
|
re as shapeStepService,
|
|
10890
10895
|
fn as shortenUrl,
|
|
10891
10896
|
q as spiffCoreConfiguration,
|