@vendure/admin-ui 2.0.0-next.1 → 2.0.0-next.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.
Files changed (84) hide show
  1. package/catalog/components/collection-contents/collection-contents.component.d.ts +8 -2
  2. package/catalog/components/collection-detail/collection-detail.component.d.ts +11 -4
  3. package/catalog/components/collection-list/collection-list.component.d.ts +2 -0
  4. package/catalog/components/collection-tree/array-to-tree.d.ts +1 -1
  5. package/catalog/components/collection-tree/collection-tree-node.component.d.ts +6 -2
  6. package/catalog/components/collection-tree/collection-tree.component.d.ts +2 -1
  7. package/catalog/components/product-variants-list/product-variants-list.component.d.ts +1 -0
  8. package/core/common/generated-types.d.ts +122 -2
  9. package/core/common/version.d.ts +1 -1
  10. package/core/data/definitions/collection-definitions.d.ts +1 -0
  11. package/core/data/providers/collection-data.service.d.ts +4 -0
  12. package/core/data/providers/promotion-data.service.d.ts +1 -1
  13. package/core/providers/local-storage/local-storage.service.d.ts +1 -0
  14. package/core/public_api.d.ts +1 -0
  15. package/core/shared/components/object-tree/object-tree.component.d.ts +3 -3
  16. package/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.d.ts +18 -0
  17. package/core/shared/shared.module.d.ts +14 -13
  18. package/esm2020/catalog/components/assets/assets.component.mjs +2 -2
  19. package/esm2020/catalog/components/collection-contents/collection-contents.component.mjs +53 -13
  20. package/esm2020/catalog/components/collection-detail/collection-detail.component.mjs +55 -32
  21. package/esm2020/catalog/components/collection-list/collection-list.component.mjs +30 -5
  22. package/esm2020/catalog/components/collection-tree/array-to-tree.mjs +3 -3
  23. package/esm2020/catalog/components/collection-tree/collection-tree-node.component.mjs +29 -10
  24. package/esm2020/catalog/components/collection-tree/collection-tree.component.mjs +6 -3
  25. package/esm2020/catalog/components/facet-detail/facet-detail.component.mjs +2 -2
  26. package/esm2020/catalog/components/product-variants-list/product-variants-list.component.mjs +9 -3
  27. package/esm2020/core/app.component.module.mjs +1 -1
  28. package/esm2020/core/common/base-detail.component.mjs +1 -1
  29. package/esm2020/core/common/deactivate-aware.mjs +1 -1
  30. package/esm2020/core/common/generated-types.mjs +29 -1
  31. package/esm2020/core/common/introspection-result.mjs +255 -183
  32. package/esm2020/core/common/utilities/configurable-operation-utils.mjs +21 -2
  33. package/esm2020/core/common/version.mjs +2 -2
  34. package/esm2020/core/core.module.mjs +1 -1
  35. package/esm2020/core/data/definitions/collection-definitions.mjs +18 -1
  36. package/esm2020/core/data/definitions/order-definitions.mjs +2 -1
  37. package/esm2020/core/data/definitions/shared-definitions.mjs +29 -28
  38. package/esm2020/core/data/providers/collection-data.service.mjs +5 -2
  39. package/esm2020/core/data/providers/promotion-data.service.mjs +3 -2
  40. package/esm2020/core/providers/local-storage/local-storage.service.mjs +1 -1
  41. package/esm2020/core/public_api.mjs +2 -1
  42. package/esm2020/core/shared/components/asset-preview/asset-preview.component.mjs +4 -4
  43. package/esm2020/core/shared/components/configurable-input/configurable-input.component.mjs +10 -9
  44. package/esm2020/core/shared/components/help-tooltip/help-tooltip.component.mjs +2 -2
  45. package/esm2020/core/shared/components/object-tree/object-tree.component.mjs +4 -4
  46. package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/generic/relation-generic-input.component.mjs +54 -0
  47. package/esm2020/core/shared/dynamic-form-inputs/relation-form-input/relation-form-input.component.mjs +5 -4
  48. package/esm2020/core/shared/dynamic-form-inputs/select-form-input/select-form-input.component.mjs +1 -1
  49. package/esm2020/core/shared/shared.module.mjs +5 -1
  50. package/esm2020/order/components/cancel-order-dialog/cancel-order-dialog.component.mjs +8 -4
  51. package/esm2020/order/components/order-editor/order-editor.component.mjs +26 -10
  52. package/esm2020/order/components/order-table/order-table.component.mjs +2 -2
  53. package/esm2020/order/components/refund-order-dialog/refund-order-dialog.component.mjs +8 -4
  54. package/fesm2015/vendure-admin-ui-catalog.mjs +177 -57
  55. package/fesm2015/vendure-admin-ui-catalog.mjs.map +1 -1
  56. package/fesm2015/vendure-admin-ui-core.mjs +499 -314
  57. package/fesm2015/vendure-admin-ui-core.mjs.map +1 -1
  58. package/fesm2015/vendure-admin-ui-order.mjs +38 -16
  59. package/fesm2015/vendure-admin-ui-order.mjs.map +1 -1
  60. package/fesm2020/vendure-admin-ui-catalog.mjs +175 -59
  61. package/fesm2020/vendure-admin-ui-catalog.mjs.map +1 -1
  62. package/fesm2020/vendure-admin-ui-core.mjs +497 -311
  63. package/fesm2020/vendure-admin-ui-core.mjs.map +1 -1
  64. package/fesm2020/vendure-admin-ui-order.mjs +36 -15
  65. package/fesm2020/vendure-admin-ui-order.mjs.map +1 -1
  66. package/order/components/order-editor/order-editor.component.d.ts +8 -2
  67. package/package.json +2 -2
  68. package/static/i18n-messages/cs.json +2 -0
  69. package/static/i18n-messages/de.json +3 -0
  70. package/static/i18n-messages/en.json +3 -1
  71. package/static/i18n-messages/es.json +2 -0
  72. package/static/i18n-messages/fr.json +2 -0
  73. package/static/i18n-messages/it.json +2 -0
  74. package/static/i18n-messages/pl.json +2 -0
  75. package/static/i18n-messages/pt_BR.json +2 -0
  76. package/static/i18n-messages/pt_PT.json +2 -0
  77. package/static/i18n-messages/ru.json +2 -0
  78. package/static/i18n-messages/uk.json +2 -0
  79. package/static/i18n-messages/zh_Hans.json +2 -0
  80. package/static/i18n-messages/zh_Hant.json +2 -0
  81. package/static/styles/global/_forms.scss +3 -4
  82. package/static/styles/global/_overrides.scss +6 -0
  83. package/static/theme.min.css +1 -1
  84. package/static/vendure-ui-config.json +25 -10
@@ -1,2 +1,2 @@
1
1
  export {};
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVhY3RpdmF0ZS1hd2FyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvY29yZS9zcmMvY29tbW9uL2RlYWN0aXZhdGUtYXdhcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxyXG4gKiBUaGlzIGludGVyZmFjZSBzaG91bGQgYmUgaW1wbGVtZW50ZWQgYnkgdGhvc2UgdG9wLWxldmVsIGNvbXBvbmVudHMgd2hpY2ggd2FudCB0b1xyXG4gKiBzaWduYWwgdG8gdGhlIHVzZXIgaWYgYSByb3V0ZSBkZWFjdGl2YXRpb24gaXMgYXR0ZW1wdGVkIGluIGEgc3RhdGUgd2hlcmUgY2hhZ2VzXHJcbiAqIHdvdWxkIGJlIGxvc3QuXHJcbiAqL1xyXG5leHBvcnQgaW50ZXJmYWNlIERlYWN0aXZhdGVBd2FyZSB7XHJcbiAgICBjYW5EZWFjdGl2YXRlKCk6IGJvb2xlYW47XHJcbn1cclxuIl19
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVhY3RpdmF0ZS1hd2FyZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3NyYy9saWIvY29yZS9zcmMvY29tbW9uL2RlYWN0aXZhdGUtYXdhcmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogVGhpcyBpbnRlcmZhY2Ugc2hvdWxkIGJlIGltcGxlbWVudGVkIGJ5IHRob3NlIHRvcC1sZXZlbCBjb21wb25lbnRzIHdoaWNoIHdhbnQgdG9cbiAqIHNpZ25hbCB0byB0aGUgdXNlciBpZiBhIHJvdXRlIGRlYWN0aXZhdGlvbiBpcyBhdHRlbXB0ZWQgaW4gYSBzdGF0ZSB3aGVyZSBjaGFnZXNcbiAqIHdvdWxkIGJlIGxvc3QuXG4gKi9cbmV4cG9ydCBpbnRlcmZhY2UgRGVhY3RpdmF0ZUF3YXJlIHtcbiAgICBjYW5EZWFjdGl2YXRlKCk6IGJvb2xlYW47XG59XG4iXX0=