@vendure/admin-ui 1.6.0 → 1.6.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/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-dashboard.umd.js +1 -1
- package/bundles/vendure-admin-ui-dashboard.umd.js.map +1 -1
- package/core/common/version.d.ts +1 -1
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/esm2015/core/common/utilities/configurable-operation-utils.js +2 -2
- package/esm2015/core/common/version.js +2 -2
- package/esm2015/core/components/app-shell/app-shell.component.js +1 -1
- package/esm2015/core/data/definitions/order-definitions.js +431 -431
- package/esm2015/core/shared/dynamic-form-inputs/combination-mode-form-input/combination-mode-form-input.component.js +1 -1
- package/esm2015/dashboard/components/dashboard-widget/dashboard-widget.component.js +2 -2
- package/fesm2015/vendure-admin-ui-core.js +456 -456
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.js +1 -1
- package/fesm2015/vendure-admin-ui-dashboard.js.map +1 -1
- package/package.json +2 -2
|
@@ -6529,7 +6529,7 @@
|
|
|
6529
6529
|
code: operation.code,
|
|
6530
6530
|
arguments: Object.values(formValueOperations.args || {}).map(function (value, j) { return ({
|
|
6531
6531
|
name: operation.args[j].name,
|
|
6532
|
-
value: value.hasOwnProperty('value')
|
|
6532
|
+
value: (value === null || value === void 0 ? void 0 : value.hasOwnProperty('value'))
|
|
6533
6533
|
? encodeConfigArgValue(value.value)
|
|
6534
6534
|
: encodeConfigArgValue(value),
|
|
6535
6535
|
}); }),
|
|
@@ -14570,7 +14570,7 @@
|
|
|
14570
14570
|
}
|
|
14571
14571
|
|
|
14572
14572
|
// Auto-generated by the set-version.js script.
|
|
14573
|
-
var ADMIN_UI_VERSION = '1.6.
|
|
14573
|
+
var ADMIN_UI_VERSION = '1.6.1';
|
|
14574
14574
|
|
|
14575
14575
|
/**
|
|
14576
14576
|
* Responsible for registering dashboard widget components and querying for layouts.
|