@shopware/cms-base-layer 1.5.1 → 2.0.0
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/README.md +330 -12
- package/app/app.config.ts +7 -0
- package/app/assets/icons/check-circle.svg +3 -0
- package/app/assets/icons/checkmark.svg +3 -0
- package/app/assets/icons/chevron.svg +3 -0
- package/app/assets/icons/exclamation-circle.svg +3 -0
- package/app/assets/icons/star-empty.svg +3 -0
- package/app/assets/icons/star-filled.svg +3 -0
- package/app/assets/icons/user.svg +1 -0
- package/app/components/SwCategoryNavigation.vue +76 -0
- package/app/components/SwCategoryNavigationLink.vue +128 -0
- package/{components → app/components}/SwContactForm.vue +27 -27
- package/app/components/SwFilterChips.vue +144 -0
- package/app/components/SwListingProductPrice.vue +89 -0
- package/{components → app/components}/SwNewsletterForm.vue +45 -34
- package/{components → app/components}/SwPagination.vue +3 -5
- package/{components → app/components}/SwProductAddToCart.vue +22 -27
- package/app/components/SwProductCard.vue +170 -0
- package/app/components/SwProductCardDetails.vue +57 -0
- package/app/components/SwProductCardImage.vue +87 -0
- package/app/components/SwProductCardSkeleton.vue +33 -0
- package/app/components/SwProductListingFilter.vue +64 -0
- package/app/components/SwProductListingFilters.vue +308 -0
- package/{components → app/components}/SwProductReviews.vue +28 -13
- package/app/components/SwProductReviewsForm.vue +292 -0
- package/app/components/SwQuantitySelect.vue +106 -0
- package/{components → app/components}/SwSlider.vue +4 -4
- package/app/components/SwSortDropdown.vue +83 -0
- package/app/components/SwStockInfo.vue +44 -0
- package/{components → app/components}/SwVariantConfigurator.vue +1 -1
- package/app/components/listing-filters/SwFilterPrice.vue +214 -0
- package/app/components/listing-filters/SwFilterProperties.vue +113 -0
- package/app/components/listing-filters/SwFilterRating.vue +90 -0
- package/app/components/listing-filters/SwFilterShippingFree.vue +107 -0
- package/{components → app/components}/public/cms/CmsPage.vue +19 -4
- package/{components → app/components}/public/cms/block/CmsBlockGalleryBuybox.vue +5 -5
- package/{components → app/components}/public/cms/block/CmsBlockImageBubbleRow.vue +5 -5
- package/app/components/public/cms/block/CmsBlockImageFourColumn.vue +41 -0
- package/app/components/public/cms/block/CmsBlockImageGalleryBig.vue +42 -0
- package/app/components/public/cms/block/CmsBlockImageHighlightRow.vue +37 -0
- package/{components → app/components}/public/cms/block/CmsBlockImageSimpleGrid.vue +11 -5
- package/{components → app/components}/public/cms/block/CmsBlockImageText.vue +7 -3
- package/{components → app/components}/public/cms/block/CmsBlockImageTextBubble.vue +13 -16
- package/{components → app/components}/public/cms/block/CmsBlockImageTextCover.vue +7 -9
- package/app/components/public/cms/block/CmsBlockImageTextGallery.vue +88 -0
- package/app/components/public/cms/block/CmsBlockImageTextRow.vue +53 -0
- package/{components → app/components}/public/cms/block/CmsBlockImageThreeColumn.vue +10 -4
- package/app/components/public/cms/block/CmsBlockImageThreeCover.vue +37 -0
- package/app/components/public/cms/block/CmsBlockImageTwoColumn.vue +37 -0
- package/{components → app/components}/public/cms/block/CmsBlockProductHeading.vue +1 -1
- package/{components → app/components}/public/cms/block/CmsBlockProductThreeColumn.vue +10 -4
- package/{components → app/components}/public/cms/block/CmsBlockSidebarFilter.vue +3 -1
- package/app/components/public/cms/block/CmsBlockTextOnImage.vue +30 -0
- package/app/components/public/cms/element/CmsElementBuyBox.vue +145 -0
- package/app/components/public/cms/element/CmsElementCategoryNavigation.vue +53 -0
- package/{components → app/components}/public/cms/element/CmsElementCrossSelling.vue +3 -3
- package/{components → app/components}/public/cms/element/CmsElementImage.vue +52 -13
- package/app/components/public/cms/element/CmsElementImageGallery.vue +158 -0
- package/{components → app/components}/public/cms/element/CmsElementImageSlider.vue +2 -2
- package/{components → app/components}/public/cms/element/CmsElementProductBox.vue +2 -1
- package/app/components/public/cms/element/CmsElementProductDescriptionReviews.vue +217 -0
- package/{components → app/components}/public/cms/element/CmsElementProductListing.vue +23 -94
- package/app/components/public/cms/element/CmsElementProductName.vue +11 -0
- package/{components → app/components}/public/cms/element/CmsElementProductSlider.vue +4 -4
- package/{components → app/components}/public/cms/element/CmsElementText.vue +8 -2
- package/app/components/public/cms/element/SwProductListingPagination.vue +70 -0
- package/{components → app/components}/public/cms/section/CmsSectionDefault.vue +1 -1
- package/app/components/public/cms/section/CmsSectionSidebar.vue +36 -0
- package/app/components/public/cms/skeleton/ProductCardSkeleton.vue +28 -0
- package/app/components/ui/BaseButton.vue +99 -0
- package/app/components/ui/BaseIcon.vue +15 -0
- package/app/components/ui/Checkbox.vue +49 -0
- package/app/components/ui/CheckmarkIcon.vue +23 -0
- package/app/components/ui/ChevronIcon.vue +37 -0
- package/app/components/ui/ExclamationIcon.vue +11 -0
- package/app/components/ui/IconButton.vue +32 -0
- package/app/components/ui/RadioButton.vue +26 -0
- package/app/components/ui/StarIcon.vue +18 -0
- package/app/components/ui/SwitchButton.vue +100 -0
- package/app/components/ui/UserIcon.vue +11 -0
- package/app/components/ui/WishlistIcon.vue +20 -0
- package/app/composables/useImagePlaceholder.ts +27 -0
- package/{helpers → app/helpers}/clientOnly.ts +5 -0
- package/app/providers/shopware.test.ts +213 -0
- package/app/providers/shopware.ts +107 -0
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +2 -2
- package/index.d.ts +12 -0
- package/nuxt.config.ts +80 -6
- package/package.json +29 -21
- package/uno.config.ts +83 -0
- package/components/SwCategoryNavigation.vue +0 -44
- package/components/SwCategoryNavigationLink.vue +0 -57
- package/components/SwListingProductPrice.vue +0 -89
- package/components/SwProductCard.vue +0 -286
- package/components/SwProductListingFilter.vue +0 -42
- package/components/SwProductListingFilters.vue +0 -292
- package/components/listing-filters/SwFilterPrice.vue +0 -160
- package/components/listing-filters/SwFilterProperties.vue +0 -123
- package/components/listing-filters/SwFilterRating.vue +0 -101
- package/components/listing-filters/SwFilterShippingFree.vue +0 -104
- package/components/public/cms/block/CmsBlockImageFourColumn.vue +0 -29
- package/components/public/cms/block/CmsBlockImageHighlightRow.vue +0 -27
- package/components/public/cms/block/CmsBlockImageTextGallery.vue +0 -85
- package/components/public/cms/block/CmsBlockImageTextRow.vue +0 -43
- package/components/public/cms/block/CmsBlockImageThreeCover.vue +0 -27
- package/components/public/cms/block/CmsBlockImageTwoColumn.vue +0 -25
- package/components/public/cms/block/CmsBlockTextOnImage.vue +0 -20
- package/components/public/cms/element/CmsElementBuyBox.vue +0 -190
- package/components/public/cms/element/CmsElementCategoryNavigation.vue +0 -167
- package/components/public/cms/element/CmsElementImageGallery.vue +0 -249
- package/components/public/cms/element/CmsElementProductDescriptionReviews.vue +0 -123
- package/components/public/cms/element/CmsElementProductName.vue +0 -10
- package/components/public/cms/section/CmsSectionSidebar.vue +0 -41
- package/components/public/cms/skeleton/ProductCardSkeleton.vue +0 -44
- /package/{components → app/components}/SwMedia3D.vue +0 -0
- /package/{components → app/components}/SwProductGallery.vue +0 -0
- /package/{components → app/components}/SwProductPrice.vue +0 -0
- /package/{components → app/components}/SwProductUnits.vue +0 -0
- /package/{components → app/components}/SwSharedPrice.vue +0 -0
- /package/{components → app/components}/public/cms/CmsGenericBlock.md +0 -0
- /package/{components → app/components}/public/cms/CmsGenericBlock.vue +0 -0
- /package/{components → app/components}/public/cms/CmsGenericElement.md +0 -0
- /package/{components → app/components}/public/cms/CmsGenericElement.vue +0 -0
- /package/{components → app/components}/public/cms/CmsNoComponent.vue +0 -0
- /package/{components → app/components}/public/cms/CmsPage.md +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockCategoryNavigation.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockCenterText.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockCrossSelling.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockCustomForm.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockDefault.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockForm.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockHtml.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockImage.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockImageCover.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockImageGallery.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockImageSlider.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockProductDescriptionReviews.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockProductListing.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockProductSlider.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockText.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockTextHero.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockTextTeaser.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockTextTeaserSection.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockTextThreeColumn.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockTextTwoColumn.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockVimeoVideo.vue +0 -0
- /package/{components → app/components}/public/cms/block/CmsBlockYoutubeVideo.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementBuyBox.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementCategoryNavigation.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementCrossSelling.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementCustomForm.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementCustomForm.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementForm.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementForm.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementHtml.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementImage.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementImageGallery.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementImageGallery3dPlaceholder.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementImageSlider.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementManufacturerLogo.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementManufacturerLogo.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementProductBox.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementProductDescriptionReviews.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementProductListing.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementProductName.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementProductSlider.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementSidebarFilter.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementSidebarFilter.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementText.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementVimeoVideo.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementVimeoVideo.vue +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementYoutubeVideo.md +0 -0
- /package/{components → app/components}/public/cms/element/CmsElementYoutubeVideo.vue +0 -0
- /package/{components → app/components}/public/cms/section/CmsSectionDefault.md +0 -0
- /package/{components → app/components}/public/cms/section/CmsSectionSidebar.md +0 -0
- /package/{helpers → app/helpers}/html-to-vue/ast.ts +0 -0
- /package/{helpers → app/helpers}/html-to-vue/getOptionsFromNode.test.ts +0 -0
- /package/{helpers → app/helpers}/html-to-vue/getOptionsFromNode.ts +0 -0
- /package/{helpers → app/helpers}/html-to-vue/renderToHtml.ts +0 -0
- /package/{helpers → app/helpers}/html-to-vue/renderer.ts +0 -0
- /package/{helpers → app/helpers}/media/isSpatial.ts +0 -0
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import type { CmsElementProductDescriptionReviews } from "@shopware/composables";
|
|
3
|
-
import { useCmsTranslations } from "@shopware/composables";
|
|
4
|
-
import { getProductName, getTranslatedProperty } from "@shopware/helpers";
|
|
5
|
-
import { defu } from "defu";
|
|
6
|
-
import { type Ref, computed, onMounted, ref } from "vue";
|
|
7
|
-
import xss from "xss";
|
|
8
|
-
import { useProduct } from "#imports";
|
|
9
|
-
import type { Schemas } from "#shopware";
|
|
10
|
-
|
|
11
|
-
const props = defineProps<{
|
|
12
|
-
content: CmsElementProductDescriptionReviews;
|
|
13
|
-
}>();
|
|
14
|
-
|
|
15
|
-
type Translations = {
|
|
16
|
-
product: {
|
|
17
|
-
description: string;
|
|
18
|
-
reviews: string;
|
|
19
|
-
messages: {
|
|
20
|
-
reviewAdded: string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
|
|
25
|
-
let translations: Translations = {
|
|
26
|
-
product: {
|
|
27
|
-
description: "Description",
|
|
28
|
-
reviews: "Reviews",
|
|
29
|
-
messages: {
|
|
30
|
-
reviewAdded: "Thank you for submitting your review",
|
|
31
|
-
},
|
|
32
|
-
},
|
|
33
|
-
};
|
|
34
|
-
translations = defu(useCmsTranslations(), translations) as Translations;
|
|
35
|
-
|
|
36
|
-
const currentTab = ref<number>(1);
|
|
37
|
-
const { product } = useProduct(props.content.data?.product);
|
|
38
|
-
|
|
39
|
-
const description = computed(() =>
|
|
40
|
-
xss(getTranslatedProperty(product.value, "description")),
|
|
41
|
-
);
|
|
42
|
-
|
|
43
|
-
const toggleTabs = (tabNumber: number) => {
|
|
44
|
-
currentTab.value = tabNumber;
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
const reviews: Ref<Schemas["ProductReview"][]> = ref([]);
|
|
48
|
-
|
|
49
|
-
onMounted(async () => {
|
|
50
|
-
if (props.content.data?.reviews?.elements) {
|
|
51
|
-
reviews.value = props.content.data.reviews.elements;
|
|
52
|
-
}
|
|
53
|
-
});
|
|
54
|
-
</script>
|
|
55
|
-
|
|
56
|
-
<template>
|
|
57
|
-
<div
|
|
58
|
-
v-if="product"
|
|
59
|
-
class="cms-block-product-description-reviews flex flex-wrap"
|
|
60
|
-
>
|
|
61
|
-
<div class="w-full">
|
|
62
|
-
<ul
|
|
63
|
-
class="flex flex-wrap text-sm font-medium list-none text-center text-secondary-500 border-b border-secondary-200 dark:border-secondary-500 dark:text-secondary-400"
|
|
64
|
-
>
|
|
65
|
-
<li class="mr-2 text-center">
|
|
66
|
-
<a
|
|
67
|
-
class="font-bold uppercase px-5 py-3 block leading-normal cursor-pointer"
|
|
68
|
-
:class="[
|
|
69
|
-
currentTab !== 1
|
|
70
|
-
? 'text-secondary-500 bg-white'
|
|
71
|
-
: 'text-white bg-secondary-500',
|
|
72
|
-
]"
|
|
73
|
-
@click="() => toggleTabs(1)"
|
|
74
|
-
>
|
|
75
|
-
<i class="fas fa-space-shuttle text-base mr-1" />
|
|
76
|
-
{{ translations.product.description }}
|
|
77
|
-
</a>
|
|
78
|
-
</li>
|
|
79
|
-
<li class="mr-2 text-center">
|
|
80
|
-
<a
|
|
81
|
-
class="font-bold uppercase px-5 py-3 block leading-normal cursor-pointer"
|
|
82
|
-
:class="[
|
|
83
|
-
currentTab !== 2
|
|
84
|
-
? 'text-secondary-500 bg-white'
|
|
85
|
-
: 'text-white bg-secondary-500',
|
|
86
|
-
]"
|
|
87
|
-
data-testid="product-reviews-tab"
|
|
88
|
-
@click="() => toggleTabs(2)"
|
|
89
|
-
>
|
|
90
|
-
<i class="fas fa-cog text-base mr-1" />
|
|
91
|
-
{{ translations.product.reviews }} ({{ reviews.length }})
|
|
92
|
-
</a>
|
|
93
|
-
</li>
|
|
94
|
-
</ul>
|
|
95
|
-
<div class="relative flex flex-col min-w-0 break-words w-full mb-6">
|
|
96
|
-
<div class="px-4 py-5 flex-auto">
|
|
97
|
-
<div class="tab-content tab-space">
|
|
98
|
-
<div
|
|
99
|
-
:class="[
|
|
100
|
-
'cms-block-product-description-reviews__description',
|
|
101
|
-
currentTab !== 1 ? 'hidden' : 'block',
|
|
102
|
-
]"
|
|
103
|
-
>
|
|
104
|
-
<p class="text-xl font-bold mt-3">
|
|
105
|
-
{{ getProductName({ product }) }}
|
|
106
|
-
</p>
|
|
107
|
-
<!-- eslint-disable-next-line vue/no-v-html -->
|
|
108
|
-
<div class="mt-2" v-html="description"></div>
|
|
109
|
-
</div>
|
|
110
|
-
<div
|
|
111
|
-
:class="[
|
|
112
|
-
'cms-block-product-description-reviews__reviews',
|
|
113
|
-
currentTab !== 2 ? 'hidden' : 'block',
|
|
114
|
-
]"
|
|
115
|
-
>
|
|
116
|
-
<SwProductReviews :product="product" :reviews="reviews" />
|
|
117
|
-
</div>
|
|
118
|
-
</div>
|
|
119
|
-
</div>
|
|
120
|
-
</div>
|
|
121
|
-
</div>
|
|
122
|
-
</div>
|
|
123
|
-
</template>
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
<script setup lang="ts">
|
|
2
|
-
import { useCmsSection } from "@shopware/composables";
|
|
3
|
-
import type { CmsSectionSidebar } from "@shopware/composables";
|
|
4
|
-
import { computed } from "vue";
|
|
5
|
-
|
|
6
|
-
const props = defineProps<{
|
|
7
|
-
content: CmsSectionSidebar;
|
|
8
|
-
}>();
|
|
9
|
-
const { getPositionContent } = useCmsSection(props.content);
|
|
10
|
-
|
|
11
|
-
const sidebarBlocks = getPositionContent("sidebar");
|
|
12
|
-
const mainBlocks = getPositionContent("main");
|
|
13
|
-
const mobileBehavior = computed(() => props.content.mobileBehavior);
|
|
14
|
-
</script>
|
|
15
|
-
|
|
16
|
-
<template>
|
|
17
|
-
<div class="cms-section-sidebar grid grid-cols-12 md:grid">
|
|
18
|
-
<div class="col-span-12 md:col-span-7 lg:col-span-9 order-1 md:order-2">
|
|
19
|
-
<CmsGenericBlock
|
|
20
|
-
v-for="cmsBlock in mainBlocks"
|
|
21
|
-
:key="cmsBlock.id"
|
|
22
|
-
class="overflow-auto"
|
|
23
|
-
:content="cmsBlock"
|
|
24
|
-
/>
|
|
25
|
-
</div>
|
|
26
|
-
<div
|
|
27
|
-
:class="{
|
|
28
|
-
'align-top col-span-12 md:col-span-5 lg:col-span-3 order-2 md:order-1':
|
|
29
|
-
mobileBehavior !== 'hidden',
|
|
30
|
-
'hidden md:block': mobileBehavior === 'hidden',
|
|
31
|
-
}"
|
|
32
|
-
>
|
|
33
|
-
<CmsGenericBlock
|
|
34
|
-
v-for="cmsBlock in sidebarBlocks"
|
|
35
|
-
:key="cmsBlock.id"
|
|
36
|
-
class="overflow-auto"
|
|
37
|
-
:content="cmsBlock"
|
|
38
|
-
/>
|
|
39
|
-
</div>
|
|
40
|
-
</div>
|
|
41
|
-
</template>
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
role="status"
|
|
4
|
-
class="max-w-sm p-4 border border-gray-200 rounded shadow animate-pulse md:p-6 dark:border-gray-700"
|
|
5
|
-
>
|
|
6
|
-
<div
|
|
7
|
-
class="flex items-center justify-center h-48 mb-4 bg-gray-300 rounded dark:bg-gray-700"
|
|
8
|
-
>
|
|
9
|
-
<svg
|
|
10
|
-
class="w-10 h-10 text-gray-200 dark:text-gray-600"
|
|
11
|
-
aria-hidden="true"
|
|
12
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
13
|
-
fill="currentColor"
|
|
14
|
-
viewBox="0 0 16 20"
|
|
15
|
-
>
|
|
16
|
-
<path
|
|
17
|
-
d="M14.066 0H7v5a2 2 0 0 1-2 2H0v11a1.97 1.97 0 0 0 1.934 2h12.132A1.97 1.97 0 0 0 16 18V2a1.97 1.97 0 0 0-1.934-2ZM10.5 6a1.5 1.5 0 1 1 0 2.999A1.5 1.5 0 0 1 10.5 6Zm2.221 10.515a1 1 0 0 1-.858.485h-8a1 1 0 0 1-.9-1.43L5.6 10.039a.978.978 0 0 1 .936-.57 1 1 0 0 1 .9.632l1.181 2.981.541-1a.945.945 0 0 1 .883-.522 1 1 0 0 1 .879.529l1.832 3.438a1 1 0 0 1-.031.988Z"
|
|
18
|
-
/>
|
|
19
|
-
<path
|
|
20
|
-
d="M5 5V.13a2.96 2.96 0 0 0-1.293.749L.879 3.707A2.98 2.98 0 0 0 .13 5H5Z"
|
|
21
|
-
/>
|
|
22
|
-
</svg>
|
|
23
|
-
</div>
|
|
24
|
-
<div
|
|
25
|
-
class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 w-48 mb-4"
|
|
26
|
-
></div>
|
|
27
|
-
<div class="h-2 bg-gray-200 rounded-full dark:bg-gray-700 mb-2.5"></div>
|
|
28
|
-
<div class="h-2.5 bg-gray-200 rounded-full dark:bg-gray-700 mb-2.5"></div>
|
|
29
|
-
<div class="mt-4 text-right">
|
|
30
|
-
<div
|
|
31
|
-
class="mt-8 h-2 bg-gray-200 rounded-full dark:bg-gray-700 w-24"
|
|
32
|
-
></div>
|
|
33
|
-
<button
|
|
34
|
-
disabled
|
|
35
|
-
tabindex="-1"
|
|
36
|
-
class="select-none font-sans font-bold text-center uppercase transition-all disabled:opacity-50 disabled:shadow-none disabled:pointer-events-none text-xs py-3 px-6 rounded-lg text-white shadow-gray-900/10 hover:shadow-gray-900/20 focus:opacity-[0.85] focus:shadow-none active:opacity-[0.85] active:shadow-none h-8 w-20 bg-gray-300 shadow-none hover:shadow-none"
|
|
37
|
-
type="button"
|
|
38
|
-
>
|
|
39
|
-
|
|
40
|
-
</button>
|
|
41
|
-
</div>
|
|
42
|
-
<span class="sr-only">Loading...</span>
|
|
43
|
-
</div>
|
|
44
|
-
</template>
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → app/components}/public/cms/block/CmsBlockProductDescriptionReviews.vue
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → app/components}/public/cms/element/CmsElementImageGallery3dPlaceholder.vue
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{components → app/components}/public/cms/element/CmsElementProductDescriptionReviews.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|