@lancom/shared 0.0.295 → 0.0.297
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/assets/js/models/product-layers.js +4 -3
- package/assets/js/utils/export-print-to-svg.js +12 -20
- package/assets/js/utils/fabric/wireframe.js +4 -4
- package/assets/js/utils/fabric-helper.js +2 -2
- package/assets/js/utils/order.js +6 -3
- package/assets/js/utils/prints.js +8 -1
- package/assets/js/utils/product.js +11 -2
- package/assets/scss/ui_kit/_table.scss +1 -1
- package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.vue +10 -0
- package/components/checkout/cart/cart_shipments_pricing/cart-shipments-pricing.vue +2 -1
- package/components/common/price.vue +10 -3
- package/components/common/product_side_with_print/product-side-with-print.vue +2 -1
- package/components/editor/editor.vue +14 -4
- package/components/editor/editor_layers/editor_layers_layer/editor-layers-layer.vue +4 -3
- package/components/editor/editor_layers/editor_layers_toolbar/editor-layers-toolbar.vue +2 -2
- package/components/editor/editor_print_area_options/editor-print-area-options.scss +3 -2
- package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.scss +8 -0
- package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.vue +10 -5
- package/components/editor/editor_product_details/editor-product-details.scss +18 -0
- package/components/editor/editor_product_details/editor-product-details.vue +50 -9
- package/components/editor/editor_workspace/editor-workspace.scss +4 -4
- package/components/editor/editor_workspace/editor-workspace.vue +0 -5
- package/components/editor/editor_workspace/editor_workspace_side/editor-workspace-side.scss +12 -0
- package/components/editor/editor_workspace/editor_workspace_side/editor-workspace-side.vue +35 -4
- package/components/editor/mobile_editor_product_details/mobile-editor-product-details.scss +2 -2
- package/components/editor/mobile_editor_product_details/mobile-editor-product-details.vue +4 -6
- package/components/order/order_product_prints_preview/order-product-prints-preview.scss +9 -0
- package/components/order/order_product_prints_preview/order-product-prints-preview.vue +44 -0
- package/components/order/order_view/order-view.vue +8 -1
- package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.mixin.js +12 -0
- package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.scss +12 -1
- package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.vue +30 -3
- package/components/order/order_view/order_view_product/order-view-product.vue +23 -2
- package/components/product/gallery/gallery.vue +5 -2
- package/components/product/product_colors_selector/product-colors-selector.vue +7 -1
- package/components/product/product_print_preview/product-print-preview.vue +103 -0
- package/components/product/products_size_selector_color/product_size_selector_color/product-size-selector-color.vue +5 -2
- package/components/quotes/quote_view/quote-view.vue +9 -2
- package/feeds/google-shopping.js +6 -1
- package/mixins/add-to-cart.js +4 -1
- package/package.json +1 -1
- package/store/layers.js +1 -0
- package/store/product.js +3 -1
package/package.json
CHANGED
package/store/layers.js
CHANGED
package/store/product.js
CHANGED
|
@@ -220,7 +220,8 @@ export const actions = {
|
|
|
220
220
|
preselect = true,
|
|
221
221
|
isEditMode,
|
|
222
222
|
size,
|
|
223
|
-
properties
|
|
223
|
+
properties,
|
|
224
|
+
fileName
|
|
224
225
|
}
|
|
225
226
|
) {
|
|
226
227
|
const { center: { top, left } } = getters.printArea;
|
|
@@ -230,6 +231,7 @@ export const actions = {
|
|
|
230
231
|
top,
|
|
231
232
|
left,
|
|
232
233
|
isEditMode,
|
|
234
|
+
fileName,
|
|
233
235
|
url,
|
|
234
236
|
originalSize: size,
|
|
235
237
|
sideId: getters.editableSide?.id,
|