@spiffcommerce/core 21.8.2-3 → 21.8.2-5
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 +3 -1
- package/dist/index.js +226 -219
- package/dist/index.umd.cjs +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1833,7 +1833,8 @@ interface GlobalPropertyStateManager {
|
|
|
1833
1833
|
getInitializationPromise(): Promise<void>;
|
|
1834
1834
|
getGlobalPropertyState(): GlobalPropertyState | undefined;
|
|
1835
1835
|
getAspect(name: string): string | undefined;
|
|
1836
|
-
setAspect(name: string, value: string
|
|
1836
|
+
setAspect(name: string, value: string): Promise<void>;
|
|
1837
|
+
setBundleOptions(bundleOptions?: BundleOptions): any;
|
|
1837
1838
|
}
|
|
1838
1839
|
interface BundleOptions {
|
|
1839
1840
|
additionalHeaders?: {
|
|
@@ -2190,6 +2191,7 @@ interface Bundle {
|
|
|
2190
2191
|
* @returns The raw Global Property Configuration that is in use, otherwise `undefined`.
|
|
2191
2192
|
*/
|
|
2192
2193
|
getGlobalPropertyConfiguration(): GlobalPropertyConfiguration | undefined;
|
|
2194
|
+
setBundleOptions(bundleOptions?: BundleOptions): any;
|
|
2193
2195
|
}
|
|
2194
2196
|
type BundleEventType = "conditional-global-properties-changed" | "workflow-experience-hover-enter" | "workflow-experience-hover-exit";
|
|
2195
2197
|
type BundleEventData = ConditionalGlobalPropertiesChangedEventData | WorkflowExperienceHoverEventData;
|