@vendure/admin-ui 1.7.1 → 1.7.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/bundles/vendure-admin-ui-catalog.umd.js +8 -1
- package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-core.umd.js +28 -11
- package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-customer.umd.js +5 -4
- package/bundles/vendure-admin-ui-customer.umd.js.map +1 -1
- package/bundles/vendure-admin-ui-order.umd.js +10 -7
- package/bundles/vendure-admin-ui-order.umd.js.map +1 -1
- package/core/common/generated-types.d.ts +2 -1
- package/core/common/utilities/configurable-operation-utils.d.ts +4 -1
- package/core/common/version.d.ts +1 -1
- package/core/vendure-admin-ui-core.metadata.json +1 -1
- package/customer/vendure-admin-ui-customer.metadata.json +1 -1
- package/esm2015/catalog/components/option-value-input/option-value-input.component.js +8 -2
- package/esm2015/core/common/generated-types.js +2 -2
- package/esm2015/core/common/introspection-result.js +1 -1
- package/esm2015/core/common/utilities/configurable-operation-utils.js +8 -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/utils/remove-readonly-custom-fields.js +4 -1
- package/esm2015/core/shared/components/dropdown/dropdown-menu.component.js +11 -11
- package/esm2015/core/shared/components/dropdown/dropdown-trigger.directive.js +1 -1
- package/esm2015/core/shared/pipes/locale-currency.pipe.js +10 -2
- package/esm2015/customer/components/customer-group-list/customer-group-list.component.js +6 -5
- package/esm2015/order/components/order-editor/order-editor.component.js +9 -5
- package/fesm2015/vendure-admin-ui-catalog.js +7 -1
- package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
- package/fesm2015/vendure-admin-ui-core.js +32 -15
- package/fesm2015/vendure-admin-ui-core.js.map +1 -1
- package/fesm2015/vendure-admin-ui-customer.js +5 -4
- package/fesm2015/vendure-admin-ui-customer.js.map +1 -1
- package/fesm2015/vendure-admin-ui-order.js +8 -4
- package/fesm2015/vendure-admin-ui-order.js.map +1 -1
- package/order/vendure-admin-ui-order.metadata.json +1 -1
- package/package.json +2 -2
- package/static/styles/_variables.scss +1 -0
- package/static/styles/global/_sass-overrides.scss +1 -1
|
@@ -3158,7 +3158,7 @@ export declare type PaymentStateTransitionError = ErrorResult & {
|
|
|
3158
3158
|
*
|
|
3159
3159
|
* ## Understanding Permission.Owner
|
|
3160
3160
|
*
|
|
3161
|
-
* `Permission.Owner` is a special permission which is used in some
|
|
3161
|
+
* `Permission.Owner` is a special permission which is used in some Vendure resolvers to indicate that that resolver should only
|
|
3162
3162
|
* be accessible to the "owner" of that resource.
|
|
3163
3163
|
*
|
|
3164
3164
|
* For example, the Shop API `activeCustomer` query resolver should only return the Customer object for the "owner" of that Customer, i.e.
|
|
@@ -4112,6 +4112,7 @@ export declare type SettleRefundInput = {
|
|
|
4112
4112
|
export declare type SettleRefundResult = Refund | RefundStateTransitionError;
|
|
4113
4113
|
export declare type ShippingLine = {
|
|
4114
4114
|
__typename?: 'ShippingLine';
|
|
4115
|
+
id: Scalars['ID'];
|
|
4115
4116
|
shippingMethod: ShippingMethod;
|
|
4116
4117
|
price: Scalars['Int'];
|
|
4117
4118
|
priceWithTax: Scalars['Int'];
|
|
@@ -31,7 +31,10 @@ export declare function configurableDefinitionToInstance(def: ConfigurableOperat
|
|
|
31
31
|
* ```
|
|
32
32
|
*/
|
|
33
33
|
export declare function toConfigurableOperationInput(operation: ConfigurableOperation, formValueOperations: {
|
|
34
|
-
args: Record<string,
|
|
34
|
+
args: Record<string, string> | Array<{
|
|
35
|
+
name: string;
|
|
36
|
+
value: string;
|
|
37
|
+
}>;
|
|
35
38
|
}): ConfigurableOperationInput;
|
|
36
39
|
export declare function configurableOperationValueIsValid(def?: ConfigurableOperationDefinition, value?: {
|
|
37
40
|
code: string;
|
package/core/common/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const ADMIN_UI_VERSION = "1.7.
|
|
1
|
+
export declare const ADMIN_UI_VERSION = "1.7.2";
|