@myissue/vue-website-page-builder 3.2.72 → 3.2.73
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/vue-website-page-builder.css +1 -1
- package/dist/vue-website-page-builder.js +6437 -6409
- package/dist/vue-website-page-builder.umd.cjs +26 -26
- package/package.json +1 -1
- package/src/DemoComponents/HomeSection.vue +6 -3
- package/src/DemoComponents/html.json +49 -47
- package/src/DemoComponents/oldhtmlfromdb.json +46 -0
- package/src/DemoComponents/rawHTML.ts +143 -0
- package/src/composables/PageBuilderClass.ts +101 -40
- package/src/css/app.css +12 -12
package/src/css/app.css
CHANGED
|
@@ -504,7 +504,7 @@ h3 {
|
|
|
504
504
|
/* Manage P, Link, H1, H2 # end */
|
|
505
505
|
|
|
506
506
|
/* CSS for content inside page builder # start */
|
|
507
|
-
#
|
|
507
|
+
#pagebuilder a {
|
|
508
508
|
pointer-events: none;
|
|
509
509
|
}
|
|
510
510
|
/* CSS for content inside page builder # start */
|
|
@@ -513,7 +513,7 @@ h3 {
|
|
|
513
513
|
min-height: 25rem;
|
|
514
514
|
}
|
|
515
515
|
|
|
516
|
-
#
|
|
516
|
+
#pagebuilder #youtube-video::before {
|
|
517
517
|
content: 'Select Video Element';
|
|
518
518
|
font-family: 'Jost';
|
|
519
519
|
background: #16a34a !important;
|
|
@@ -537,34 +537,34 @@ h3 {
|
|
|
537
537
|
}
|
|
538
538
|
|
|
539
539
|
@media (min-width: 640px) {
|
|
540
|
-
#
|
|
540
|
+
#pagebuilder #youtube-video::before {
|
|
541
541
|
font-size: 0.9rem !important;
|
|
542
542
|
width: auto;
|
|
543
543
|
}
|
|
544
544
|
}
|
|
545
545
|
|
|
546
|
-
#
|
|
546
|
+
#pagebuilder #youtube-video:hover::before {
|
|
547
547
|
text-decoration: none;
|
|
548
548
|
cursor: pointer;
|
|
549
549
|
}
|
|
550
550
|
|
|
551
551
|
#page-builder-editor a,
|
|
552
|
-
#
|
|
552
|
+
#pagebuilder a {
|
|
553
553
|
text-decoration: underline;
|
|
554
554
|
}
|
|
555
555
|
|
|
556
556
|
#page-builder-editor #linktree p,
|
|
557
|
-
#
|
|
557
|
+
#pagebuilder #linktree p {
|
|
558
558
|
width: 100%;
|
|
559
559
|
}
|
|
560
560
|
|
|
561
561
|
#page-builder-editor #linktree a,
|
|
562
|
-
#
|
|
562
|
+
#pagebuilder #linktree a {
|
|
563
563
|
@apply py-4 px-2 block w-full;
|
|
564
564
|
}
|
|
565
565
|
|
|
566
566
|
#page-builder-editor #linktree a,
|
|
567
|
-
#
|
|
567
|
+
#pagebuilder #linktree a {
|
|
568
568
|
text-decoration: none;
|
|
569
569
|
font-weight: 500;
|
|
570
570
|
color: inherit !important;
|
|
@@ -572,20 +572,20 @@ h3 {
|
|
|
572
572
|
cursor: pointer;
|
|
573
573
|
}
|
|
574
574
|
#page-builder-editor strong,
|
|
575
|
-
#
|
|
575
|
+
#pagebuilder strong {
|
|
576
576
|
font-weight: 500;
|
|
577
577
|
}
|
|
578
578
|
|
|
579
579
|
#page-builder-editor ol,
|
|
580
|
-
#
|
|
580
|
+
#pagebuilder ol,
|
|
581
581
|
#page-builder-editor ul,
|
|
582
|
-
#
|
|
582
|
+
#pagebuilder ul {
|
|
583
583
|
list-style: disc !important;
|
|
584
584
|
padding: 1rem 0rem;
|
|
585
585
|
}
|
|
586
586
|
|
|
587
587
|
#page-builder-editor li,
|
|
588
|
-
#
|
|
588
|
+
#pagebuilder li {
|
|
589
589
|
line-height: 2.2rem;
|
|
590
590
|
margin-left: 1.5em; /* Adjust this value as needed */
|
|
591
591
|
}
|