Browse Source

chore(admin-ui): Fix bad import path

Michael Bromley 3 years ago
parent
commit
13ea7b78c3

+ 2 - 0
packages/admin-ui/src/lib/core/src/public_api.ts

@@ -154,6 +154,8 @@ export * from './shared/components/pagination-controls/pagination-controls.compo
 export * from './shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component';
 export * from './shared/components/product-multi-selector-dialog/product-multi-selector-dialog.component';
 export * from './shared/components/product-search-input/product-search-input.component';
 export * from './shared/components/product-search-input/product-search-input.component';
 export * from './shared/components/product-selector/product-selector.component';
 export * from './shared/components/product-selector/product-selector.component';
+export * from './shared/components/radio-card/radio-card-fieldset.component';
+export * from './shared/components/radio-card/radio-card.component';
 export * from './shared/components/rich-text-editor/external-image-dialog/external-image-dialog.component';
 export * from './shared/components/rich-text-editor/external-image-dialog/external-image-dialog.component';
 export * from './shared/components/rich-text-editor/link-dialog/link-dialog.component';
 export * from './shared/components/rich-text-editor/link-dialog/link-dialog.component';
 export * from './shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component';
 export * from './shared/components/rich-text-editor/prosemirror/context-menu/context-menu.component';

+ 2 - 1
packages/admin-ui/src/lib/order/src/components/draft-order-detail/draft-order-detail.component.ts

@@ -14,9 +14,10 @@ import {
     OrderDetail,
     OrderDetail,
     ServerConfigService,
     ServerConfigService,
 } from '@vendure/admin-ui/core';
 } from '@vendure/admin-ui/core';
-import { OrderTransitionService } from '@vendure/admin-ui/order';
 import { combineLatest, Observable, Subject } from 'rxjs';
 import { combineLatest, Observable, Subject } from 'rxjs';
 import { switchMap, take } from 'rxjs/operators';
 import { switchMap, take } from 'rxjs/operators';
+
+import { OrderTransitionService } from '../../providers/order-transition.service';
 import { SelectAddressDialogComponent } from '../select-address-dialog/select-address-dialog.component';
 import { SelectAddressDialogComponent } from '../select-address-dialog/select-address-dialog.component';
 import { SelectCustomerDialogComponent } from '../select-customer-dialog/select-customer-dialog.component';
 import { SelectCustomerDialogComponent } from '../select-customer-dialog/select-customer-dialog.component';
 import { SelectShippingMethodDialogComponent } from '../select-shipping-method-dialog/select-shipping-method-dialog.component';
 import { SelectShippingMethodDialogComponent } from '../select-shipping-method-dialog/select-shipping-method-dialog.component';

+ 8 - 0
packages/admin-ui/src/lib/order/src/public_api.ts

@@ -1,6 +1,9 @@
 // This file was generated by the build-public-api.ts script
 // This file was generated by the build-public-api.ts script
 export * from './components/add-manual-payment-dialog/add-manual-payment-dialog.component';
 export * from './components/add-manual-payment-dialog/add-manual-payment-dialog.component';
 export * from './components/cancel-order-dialog/cancel-order-dialog.component';
 export * from './components/cancel-order-dialog/cancel-order-dialog.component';
+export * from './components/coupon-code-selector/coupon-code-selector.component';
+export * from './components/draft-order-detail/draft-order-detail.component';
+export * from './components/draft-order-variant-selector/draft-order-variant-selector.component';
 export * from './components/fulfill-order-dialog/fulfill-order-dialog.component';
 export * from './components/fulfill-order-dialog/fulfill-order-dialog.component';
 export * from './components/fulfillment-card/fulfillment-card.component';
 export * from './components/fulfillment-card/fulfillment-card.component';
 export * from './components/fulfillment-detail/fulfillment-detail.component';
 export * from './components/fulfillment-detail/fulfillment-detail.component';
@@ -27,9 +30,14 @@ export * from './components/payment-detail/payment-detail.component';
 export * from './components/payment-state-label/payment-state-label.component';
 export * from './components/payment-state-label/payment-state-label.component';
 export * from './components/refund-order-dialog/refund-order-dialog.component';
 export * from './components/refund-order-dialog/refund-order-dialog.component';
 export * from './components/refund-state-label/refund-state-label.component';
 export * from './components/refund-state-label/refund-state-label.component';
+export * from './components/select-address-dialog/select-address-dialog.component';
+export * from './components/select-address-dialog/select-address-dialog.graphql';
+export * from './components/select-customer-dialog/select-customer-dialog.component';
+export * from './components/select-shipping-method-dialog/select-shipping-method-dialog.component';
 export * from './components/settle-refund-dialog/settle-refund-dialog.component';
 export * from './components/settle-refund-dialog/settle-refund-dialog.component';
 export * from './components/simple-item-list/simple-item-list.component';
 export * from './components/simple-item-list/simple-item-list.component';
 export * from './order.module';
 export * from './order.module';
 export * from './order.routes';
 export * from './order.routes';
 export * from './providers/order-transition.service';
 export * from './providers/order-transition.service';
 export * from './providers/routing/order-resolver';
 export * from './providers/routing/order-resolver';
+export * from './providers/routing/order.guard';