@dcodegroup-au/page-builder 0.0.9 → 0.1.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/dist/page-builder.css +1 -1
- package/dist/page-builder.es.js +2441 -2436
- package/dist/page-builder.umd.js +40 -40
- package/package.json +1 -1
- package/src/assets/img/no_image_available.jpeg +0 -0
- package/src/components/SlideEdit.vue +2 -2
- package/src/components/presenters/components/VSliderPresenter.vue +2 -1
package/package.json
CHANGED
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="slide-edit">
|
|
3
|
-
<div class="flex items-start gap-4 px-6 pt-4">
|
|
3
|
+
<div class="flex items-start gap-4 px-6 pt-4 h-full">
|
|
4
4
|
<div class="flex flex-1 flex-col gap-4">
|
|
5
5
|
<card title="Description">
|
|
6
6
|
<div class="flex flex-col gap-8">
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
</div>
|
|
108
108
|
</div>
|
|
109
109
|
<slot>
|
|
110
|
-
<div class="flex justify-between space-x-xsSpace pt-xsSpace gap-4
|
|
110
|
+
<div class="flex justify-between space-x-xsSpace pt-xsSpace gap-4 fixed bottom-0 w-full bg-gray-200 py-2 px-6">
|
|
111
111
|
<a @click="close"
|
|
112
112
|
class="w-[200px] py-[9px] bg-white rounded-full border border-gray-300 shadow-xs text-md font-semibold hover:bg-gray-100 text-gray-700 text-center cursor-pointer">
|
|
113
113
|
Cancel
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="flex h-[872px] w-full bg-navy-800 relative rounded-[48px] z-10">
|
|
3
|
-
<Carousel :items-to-show="1" v-model="currentSlide" class="carousel w-full" :wrap-around="true">
|
|
3
|
+
<Carousel :items-to-show="1" v-model="currentSlide" :autoplay="5000" class="carousel w-full" :wrap-around="true">
|
|
4
4
|
<Slide v-for="(slide, index) in slides" :key="index">
|
|
5
5
|
<div class="lg:p-8 p-4 flex relative w-full">
|
|
6
6
|
<div class="lg:w-1/2 lg:pl-8 lg:pr-16 pl-4 pr-8 flex flex-col lg:mt-[218px] mt-[100px] absolute top-0 left-5 lg:relative">
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
:src="slide.featured_image"
|
|
34
34
|
alt="Slide Image"
|
|
35
35
|
class="rounded-[40px] h-[674px] max-w-[882px] lg:w-1/2 w-full object-cover"/>
|
|
36
|
+
<img v-else class="rounded-[40px] h-[674px] max-w-[882px] lg:w-1/2 w-full object-cover" src="@/assets/img/no_image_available.jpeg">
|
|
36
37
|
</div>
|
|
37
38
|
</Slide>
|
|
38
39
|
</Carousel>
|