@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.
Files changed (37) hide show
  1. package/bundles/vendure-admin-ui-catalog.umd.js +8 -1
  2. package/bundles/vendure-admin-ui-catalog.umd.js.map +1 -1
  3. package/bundles/vendure-admin-ui-core.umd.js +28 -11
  4. package/bundles/vendure-admin-ui-core.umd.js.map +1 -1
  5. package/bundles/vendure-admin-ui-customer.umd.js +5 -4
  6. package/bundles/vendure-admin-ui-customer.umd.js.map +1 -1
  7. package/bundles/vendure-admin-ui-order.umd.js +10 -7
  8. package/bundles/vendure-admin-ui-order.umd.js.map +1 -1
  9. package/core/common/generated-types.d.ts +2 -1
  10. package/core/common/utilities/configurable-operation-utils.d.ts +4 -1
  11. package/core/common/version.d.ts +1 -1
  12. package/core/vendure-admin-ui-core.metadata.json +1 -1
  13. package/customer/vendure-admin-ui-customer.metadata.json +1 -1
  14. package/esm2015/catalog/components/option-value-input/option-value-input.component.js +8 -2
  15. package/esm2015/core/common/generated-types.js +2 -2
  16. package/esm2015/core/common/introspection-result.js +1 -1
  17. package/esm2015/core/common/utilities/configurable-operation-utils.js +8 -2
  18. package/esm2015/core/common/version.js +2 -2
  19. package/esm2015/core/components/app-shell/app-shell.component.js +1 -1
  20. package/esm2015/core/data/utils/remove-readonly-custom-fields.js +4 -1
  21. package/esm2015/core/shared/components/dropdown/dropdown-menu.component.js +11 -11
  22. package/esm2015/core/shared/components/dropdown/dropdown-trigger.directive.js +1 -1
  23. package/esm2015/core/shared/pipes/locale-currency.pipe.js +10 -2
  24. package/esm2015/customer/components/customer-group-list/customer-group-list.component.js +6 -5
  25. package/esm2015/order/components/order-editor/order-editor.component.js +9 -5
  26. package/fesm2015/vendure-admin-ui-catalog.js +7 -1
  27. package/fesm2015/vendure-admin-ui-catalog.js.map +1 -1
  28. package/fesm2015/vendure-admin-ui-core.js +32 -15
  29. package/fesm2015/vendure-admin-ui-core.js.map +1 -1
  30. package/fesm2015/vendure-admin-ui-customer.js +5 -4
  31. package/fesm2015/vendure-admin-ui-customer.js.map +1 -1
  32. package/fesm2015/vendure-admin-ui-order.js +8 -4
  33. package/fesm2015/vendure-admin-ui-order.js.map +1 -1
  34. package/order/vendure-admin-ui-order.metadata.json +1 -1
  35. package/package.json +2 -2
  36. package/static/styles/_variables.scss +1 -0
  37. 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 of the Vendure resolvers to indicate that that resolver should only
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, any>;
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;
@@ -1 +1 @@
1
- export declare const ADMIN_UI_VERSION = "1.7.1";
1
+ export declare const ADMIN_UI_VERSION = "1.7.2";