@spiffcommerce/core 26.7.3 → 26.7.4
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 +4 -0
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +67 -43
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1426,6 +1426,10 @@ declare class TextGlobalPropertyHandle extends GlobalPropertyHandle {
|
|
|
1426
1426
|
declare class OptionGlobalPropertyHandle extends GlobalPropertyHandle {
|
|
1427
1427
|
protected optionResource?: OptionResource;
|
|
1428
1428
|
constructor(bundle: Bundle$1, property: GlobalPropertyConfigurationAspect, optionResource: OptionResource | undefined);
|
|
1429
|
+
/**
|
|
1430
|
+
* If the option has a default variant, select it.
|
|
1431
|
+
*/
|
|
1432
|
+
initDefaultVariant(): Promise<void>;
|
|
1429
1433
|
/**
|
|
1430
1434
|
* Gets the currently selected variant, or undefined if no variant is selected.
|
|
1431
1435
|
*/
|