@viur/shop-components 0.13.2-1 → 0.14.1
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.
- package/package.json +1 -1
- package/src/ShopOrderStepper.vue +10 -0
- package/src/ShopSummary.vue +1 -1
- package/src/shop.js +6 -1
package/package.json
CHANGED
package/src/ShopOrderStepper.vue
CHANGED
|
@@ -112,6 +112,7 @@ sl-tab-group {
|
|
|
112
112
|
|
|
113
113
|
sl-tab-panel {
|
|
114
114
|
height: 100%;
|
|
115
|
+
overflow: hidden;
|
|
115
116
|
&::part(base) {
|
|
116
117
|
height: 100%;
|
|
117
118
|
display: flex;
|
|
@@ -122,6 +123,15 @@ sl-tab-panel {
|
|
|
122
123
|
.viur-shop-stepper-bar {
|
|
123
124
|
margin-top: var(--shop-leaf-gap, var(--ignt-spacing-small));
|
|
124
125
|
justify-self: flex-end;
|
|
126
|
+
margin-bottom: var(--ignt-spacing-2x-small);
|
|
127
|
+
@media (max-width: 600px) {
|
|
128
|
+
& sl-button {
|
|
129
|
+
width: 100%;
|
|
130
|
+
}
|
|
131
|
+
& sl-button::part(base) {
|
|
132
|
+
min-width: 100%;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
125
135
|
}
|
|
126
136
|
|
|
127
137
|
.hint{
|
package/src/ShopSummary.vue
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
|
|
41
41
|
<div class="viur-shop-cart-sidebar-info viur-shop-cart-sidebar-info--total">
|
|
42
42
|
<span v-html="$t('viur.shop.summary_total')"></span>
|
|
43
|
-
<sl-format-number lang="de" type="currency" currency="EUR" :value="state.
|
|
43
|
+
<sl-format-number lang="de" type="currency" currency="EUR" :value="state.total_discount_price">
|
|
44
44
|
</sl-format-number>
|
|
45
45
|
</div>
|
|
46
46
|
<div class="viur-shop-cart-sidebar-info " v-for="vatObj in state.vat">
|
package/src/shop.js
CHANGED
|
@@ -303,6 +303,11 @@ export const useViurShopStore = defineStore("viurshopStore", () => {
|
|
|
303
303
|
checkoutStart,
|
|
304
304
|
checkoutOrder,
|
|
305
305
|
addTab,
|
|
306
|
-
removeTab
|
|
306
|
+
removeTab,
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* @deprecated since version 0.14.0 - Use checkoutStart instead
|
|
310
|
+
*/
|
|
311
|
+
checkout: checkoutStart, // TODO: Remove alias
|
|
307
312
|
}
|
|
308
313
|
})
|