Skip to content

Commit

Permalink
Updated: app version for dxp 1.12.1 (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
amansinghbais committed Mar 7, 2024
1 parent 0ed5569 commit e44ff6b
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 82 deletions.
121 changes: 50 additions & 71 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@capacitor/core": "^2.4.7",
"@hotwax/app-version-info": "^1.0.0",
"@hotwax/apps-theme": "^1.1.0",
"@hotwax/dxp-components": "^1.11.0",
"@hotwax/dxp-components": "^1.12.1",
"@hotwax/oms-api": "^1.10.0",
"@ionic/core": "6.7.5",
"@ionic/vue": "6.7.5",
Expand Down
6 changes: 3 additions & 3 deletions src/components/MissingSkuModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<ion-list v-if="segmentSelected === 'completed'">
<ion-item v-for="item in getCompletedItems()" :key="item.shopifyProductSKU">
<ion-thumbnail slot="start">
<ShopifyImg :src="item.imageUrl" size="small" />
<DxpShopifyImg :src="item.imageUrl" size="small" />
</ion-thumbnail>
<ion-label>
<p class="overline">{{ item.parentProductName }}</p>
Expand Down Expand Up @@ -92,7 +92,7 @@ import { closeOutline, saveOutline } from 'ionicons/icons';
import { defineComponent } from "@vue/runtime-core";
import { mapGetters, useStore } from "vuex";
import { ref } from "vue";
import { ShopifyImg } from "@hotwax/dxp-components";
import { DxpShopifyImg } from "@hotwax/dxp-components";
export default defineComponent({
name: "MissingSkuModal",
Expand All @@ -117,7 +117,7 @@ export default defineComponent({
IonTitle,
IonThumbnail,
IonToolbar,
ShopifyImg
DxpShopifyImg
},
data(){
return {
Expand Down
6 changes: 3 additions & 3 deletions src/components/PurchaseOrderDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<div class="list-item">
<ion-item lines="none">
<ion-thumbnail slot="start">
<ShopifyImg :src="item.imageUrl" size="small" />
<DxpShopifyImg :src="item.imageUrl" size="small" />
</ion-thumbnail>
<ion-label class="ion-text-wrap">
<h3>{{ item.pseudoId }}</h3>
Expand Down Expand Up @@ -55,7 +55,7 @@
</div>
</template>
<script lang="ts">
import { ShopifyImg } from "@hotwax/dxp-components";
import { DxpShopifyImg } from "@hotwax/dxp-components";
import {
IonCheckbox,
IonThumbnail,
Expand All @@ -82,7 +82,7 @@ export default defineComponent({
IonIcon,
IonItem,
IonLabel,
ShopifyImg
DxpShopifyImg
},
props: {
purchaseOrders: {
Expand Down
6 changes: 3 additions & 3 deletions src/views/InventoryReview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<div class="list-item">
<ion-item lines="none">
<ion-thumbnail slot="start">
<ShopifyImg :src="item.imageUrl" size="small" />
<DxpShopifyImg :src="item.imageUrl" size="small" />
</ion-thumbnail>
<ion-label class="ion-text-wrap">
<h3>{{ item.pseudoId }}</h3>
Expand Down Expand Up @@ -95,7 +95,7 @@
</template>
<script lang="ts">
import { UploadService } from "@/services/UploadService";
import { ShopifyImg } from "@hotwax/dxp-components";
import { DxpShopifyImg } from "@hotwax/dxp-components";
import ProductPopover from '@/components/ProductPopover.vue'
import BulkInventoryAdjustmentModal from '@/components/BulkInventoryAdjustmentModal.vue'

Check warning on line 100 in src/views/InventoryReview.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (18.x)

'BulkInventoryAdjustmentModal' is defined but never used

Check warning on line 100 in src/views/InventoryReview.vue

View workflow job for this annotation

GitHub Actions / call-workflow-in-another-repo / reusable_workflow_job (20.x)

'BulkInventoryAdjustmentModal' is defined but never used
import MissingFacilitiesModal from '@/components/MissingFacilitiesModal.vue'
Expand All @@ -110,7 +110,7 @@ import { businessOutline, calculatorOutline, chevronForwardOutline, ellipsisVert
export default defineComponent({
name: 'InventoryDetail',
components: {
ShopifyImg,
DxpShopifyImg,
IonCard,
IonCardContent,
IonPage,
Expand Down
2 changes: 1 addition & 1 deletion src/views/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</div>

<section>
<OmsInstanceNavigator />
<DxpOmsInstanceNavigator />
</section>

<hr />
Expand Down

0 comments on commit e44ff6b

Please sign in to comment.