Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Arranged components of checkout page in one folder (#631) #635

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added `VueObserveVisibility` and `VueLazyload` dependency

### Changed / Improved
- Rearranged components of checkout page in one folder(#631)

## [1.0.4] - 04.01.2020

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ import {
SfCharacteristic,
SfCollectedProduct
} from '@storefront-ui/vue';
import MPriceSummary from 'theme/components/molecules/m-price-summary';
import APromoCode from 'theme/components/atoms/a-promo-code';
import MPriceSummary from 'theme/components/checkout/m-price-summary';
import APromoCode from 'theme/components/checkout/a-promo-code';
import { ModalList } from 'theme/store/ui/modals'
import { createSmoothscroll } from 'theme/helpers';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
</template>
<script>
import { SfHeading, SfCharacteristic } from '@storefront-ui/vue';
import APromoCode from 'theme/components/atoms/a-promo-code';
import MPriceSummary from 'theme/components/molecules/m-price-summary';
import APromoCode from 'theme/components/checkout/a-promo-code';
import MPriceSummary from 'theme/components/checkout/m-price-summary';
export default {
name: 'OOrderSummary',
components: {
Expand Down
14 changes: 7 additions & 7 deletions pages/Checkout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
<script>
import Checkout from '@vue-storefront/core/pages/Checkout';
import { SfSteps } from '@storefront-ui/vue';
import OPayment from 'theme/components/organisms/o-payment';
import OShipping from 'theme/components/organisms/o-shipping';
import OConfirmOrder from 'theme/components/organisms/o-confirm-order';
import OOrderReview from 'theme/components/organisms/o-order-review';
import OOrderSummary from 'theme/components/organisms/o-order-summary';
import OOrderConfirmation from 'theme/components/organisms/o-order-confirmation';
import OPersonalDetails from 'theme/components/organisms/o-personal-details';
import OPayment from 'theme/components/checkout/o-payment';
import OShipping from 'theme/components/checkout/o-shipping';
import OConfirmOrder from 'theme/components/checkout/o-confirm-order';
import OOrderReview from 'theme/components/checkout/o-order-review';
import OOrderSummary from 'theme/components/checkout/o-order-summary';
import OOrderConfirmation from 'theme/components/checkout/o-order-confirmation';
import OPersonalDetails from 'theme/components/checkout/o-personal-details';

export default {
name: 'Checkout',
Expand Down