@vendure/admin-ui 1.7.3 → 1.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/bundles/vendure-admin-ui-catalog.umd.js +27 -17
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +2 -2
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-marketing.umd.js +2 -2
- package/bundles/vendure-admin-ui-marketing.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-settings.umd.js.map +1 -1
- package/catalog/components/product-variants-editor/product-variants-editor.component.d.ts +2 -2
- package/catalog/vendure-admin-ui-catalog.metadata.json +1 -1
- package/core/common/version.d.ts +1 -1
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/esm2015/catalog/components/product-variants-editor/product-variants-editor.component.js +28 -18
- package/esm2015/core/common/utilities/configurable-operation-utils.js +2 -2
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/marketing/components/promotion-detail/promotion-detail.component.js +3 -3
- package/esm2015/settings/components/shipping-method-detail/shipping-method-detail.component.js +1 -1
- package/fesm2015/vendure-admin-ui-catalog.js +27 -17
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +2 -2
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-marketing.js +2 -2
- package/fesm2015/vendure-admin-ui-marketing.js.map +1 -1
- package/fesm2015/vendure-admin-ui-settings.js.map +1 -1
- package/marketing/vendure-admin-ui-marketing.metadata.json +1 -1
- package/package.json +2 -2
|
@@ -8584,7 +8584,7 @@ function toConfigurableOperationInput(operation, formValueOperations) {
|
|
|
8584
8584
|
arguments: operation.args.map(({ name, value }, j) => {
|
|
8585
8585
|
var _a, _b;
|
|
8586
8586
|
const formValue = (_b = (_a = argsArray === null || argsArray === void 0 ? void 0 : argsArray.find(arg => arg.name === name)) === null || _a === void 0 ? void 0 : _a.value) !== null && _b !== void 0 ? _b : argsMap === null || argsMap === void 0 ? void 0 : argsMap[name];
|
|
8587
|
-
if (
|
|
8587
|
+
if (formValue == null) {
|
|
8588
8588
|
throw new Error(`Cannot find an argument value for the key "${name}"`);
|
|
8589
8589
|
}
|
|
8590
8590
|
return {
|
|
@@ -16068,7 +16068,7 @@ function patchObject(obj, patch) {
|
|
|
16068
16068
|
}
|
|
16069
16069
|
|
|
16070
16070
|
// Auto-generated by the set-version.js script.
|
|
16071
|
-
const ADMIN_UI_VERSION = '1.7.
|
|
16071
|
+
const ADMIN_UI_VERSION = '1.7.4';
|
|
16072
16072
|
|
|
16073
16073
|
/**
|
|
16074
16074
|
* Responsible for registering dashboard widget components and querying for layouts.
|