@myissue/vue-website-page-builder 3.3.83 → 3.3.85
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/{ar-COgc0DCm.js → ar-ITBqBm-d.js} +72 -41
- package/dist/{de-CGky7E-a.js → de-BJpPaS11.js} +68 -37
- package/dist/{en-DU_tZbAN.js → en-B_2bnBr-.js} +71 -40
- package/dist/{es-OjYclQFK.js → es-whPPQx5J.js} +68 -37
- package/dist/{fr-q_n3yaNn.js → fr-BT4veodQ.js} +72 -41
- package/dist/{hi-PCyw3ByF.js → hi-ebTmcUsS.js} +75 -44
- package/dist/{ja-fF78DiFn.js → ja-BRtI2tes.js} +69 -38
- package/dist/{pt-h1yUOPEo.js → pt-DcvtSuUT.js} +74 -43
- package/dist/{ru-91i2N905.js → ru-Q6PD0n2W.js} +62 -31
- package/dist/style.css +1 -1
- package/dist/vue-website-page-builder.js +6382 -6245
- package/dist/vue-website-page-builder.umd.cjs +96 -63
- package/dist/{zh-Hans-DU7U45Js.js → zh-Hans-CZQ2JK7v.js} +69 -38
- package/package.json +1 -1
- package/src/Components/Modals/BuilderComponents.vue +1 -1
- package/src/Components/Modals/MediaLibraryModal.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/BorderRadius.vue +3 -0
- package/src/Components/PageBuilder/EditorMenu/Editables/Borders.vue +70 -67
- package/src/Components/PageBuilder/EditorMenu/Editables/ClassEditor.vue +2 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/EditGetElement.vue +1 -1
- package/src/Components/PageBuilder/EditorMenu/Editables/StyleEditor.vue +2 -1
- package/src/Components/PageBuilder/EditorMenu/RightSidebarEditor.vue +4 -2
- package/src/Components/PageBuilder/Settings/AdvancedPageBuilderSettings.vue +152 -56
- package/src/Components/PageBuilder/ToolbarOption/ToolbarOption.vue +8 -8
- package/src/Components/TipTap/TipTap.vue +12 -15
- package/src/PageBuilder/PageBuilder.vue +101 -80
- package/src/composables/extractCleanHTMLFromPageBuilder.ts +1 -1
- package/src/css/dev-global.css +0 -9
- package/src/css/style.css +2 -37
- package/src/locales/ar.json +26 -1
- package/src/locales/de.json +26 -1
- package/src/locales/en.json +24 -2
- package/src/locales/es.json +26 -1
- package/src/locales/fr.json +26 -1
- package/src/locales/hi.json +26 -1
- package/src/locales/ja.json +26 -1
- package/src/locales/pt.json +26 -1
- package/src/locales/ru.json +26 -1
- package/src/locales/zh-Hans.json +26 -1
- package/src/services/PageBuilderService.ts +95 -50
- package/src/tailwind-safelist.html +1 -1
- package/src/{Components/PageBuilder → tests}/DefaultComponents/DefaultBuilderComponents.vue +49 -10
- package/src/tests/TestComponents/DemoMediaLibraryComponentTest.vue +1 -1
- package/src/{Components → tests/TestComponents}/DemoUnsplash.vue +5 -5
- package/src/utils/componentPreviews.ts +35 -0
- package/src/utils/html-elements/component.ts +17 -3
- /package/src/{Components/PageBuilder → tests}/DefaultComponents/DefaultMediaLibraryComponent.vue +0 -0
|
@@ -434,7 +434,7 @@ onMounted(async () => {
|
|
|
434
434
|
|
|
435
435
|
<template>
|
|
436
436
|
<div
|
|
437
|
-
class="pbx-font-sans pbx-text-black pbx-max-w-full pbx-border-solid pbx-border pbx-border-gray-400 pbx-inset-x-0 pbx-z-10 pbx-bg-white pbx-overflow-x-auto pbx-h-full"
|
|
437
|
+
class="pbx-flex pbx-flex-col pbx-font-sans pbx-text-black pbx-max-w-full pbx-border-solid pbx-border pbx-border-gray-400 pbx-inset-x-0 pbx-z-10 pbx-bg-white pbx-overflow-x-auto pbx-h-full"
|
|
438
438
|
>
|
|
439
439
|
<GlobalLoader
|
|
440
440
|
v-if="(getIsLoadingGlobal && !openAppNotStartedModal) || isLoadingLang"
|
|
@@ -515,8 +515,8 @@ onMounted(async () => {
|
|
|
515
515
|
</DynamicModalBuilder>
|
|
516
516
|
|
|
517
517
|
<div
|
|
518
|
-
id="pagebuilder-
|
|
519
|
-
class="pbx-flex pbx-items-center pbx-justify-between pbx-
|
|
518
|
+
id="pagebuilder-navbar"
|
|
519
|
+
class="pbx-w-full pbx-bg-myPrimaryLightGrayColor pbx-flex pbx-items-center pbx-justify-between pbx-border-0 pbx-border-solid pbx-border-b pbx-border-gray-200 pbx-mb-2 lg:pbx-px-6 pbx-px-4 pbx-font-sans pbx-min-h-20"
|
|
520
520
|
>
|
|
521
521
|
<template
|
|
522
522
|
v-if="
|
|
@@ -532,20 +532,9 @@ onMounted(async () => {
|
|
|
532
532
|
await pageBuilderService.clearHtmlSelection()
|
|
533
533
|
}
|
|
534
534
|
"
|
|
535
|
-
class="pbx-flex
|
|
535
|
+
class="xl:pbx-flex pbx-hidden pbx-justify-start pbx-py-2"
|
|
536
536
|
>
|
|
537
|
-
<
|
|
538
|
-
@click="
|
|
539
|
-
async () => {
|
|
540
|
-
await pageBuilderService.clearHtmlSelection()
|
|
541
|
-
}
|
|
542
|
-
"
|
|
543
|
-
class="pbx-flex pbx-items-center pbx-justify-center"
|
|
544
|
-
>
|
|
545
|
-
<div id="pagebuilder-logo-main" class="pbx-flex pbx-items-center pbx-justify-center">
|
|
546
|
-
<img class="pbx-h-6" :src="getPageBuilderConfig.pageBuilderLogo.src" alt="Logo" />
|
|
547
|
-
</div>
|
|
548
|
-
</div>
|
|
537
|
+
<img class="pbx-h-6" :src="getPageBuilderConfig.pageBuilderLogo.src" alt="Logo" />
|
|
549
538
|
</div>
|
|
550
539
|
</template>
|
|
551
540
|
<!-- Logo # end -->
|
|
@@ -556,7 +545,7 @@ onMounted(async () => {
|
|
|
556
545
|
await pageBuilderService.clearHtmlSelection()
|
|
557
546
|
}
|
|
558
547
|
"
|
|
559
|
-
class="pbx-flex-1 pbx-flex pbx-justify-center pbx-items-center pbx-py-2 pbx-
|
|
548
|
+
class="pbx-flex-1 pbx-flex pbx-justify-center pbx-items-center pbx-py-2 pbx-w-full"
|
|
560
549
|
>
|
|
561
550
|
<div class="pbx-flex pbx-items-center pbx-justify-center">
|
|
562
551
|
<!-- Save Start -->
|
|
@@ -603,7 +592,7 @@ onMounted(async () => {
|
|
|
603
592
|
"
|
|
604
593
|
>
|
|
605
594
|
<button
|
|
606
|
-
class="pbx-mySecondaryButton pbx-h-6 pbx-flex pbx-gap-2 lg:mr-2"
|
|
595
|
+
class="pbx-mySecondaryButton pbx-h-6 pbx-flex pbx-gap-2 lg:pbx-mr-2 pbx-mr-2"
|
|
607
596
|
@click.stop="
|
|
608
597
|
async () => {
|
|
609
598
|
await pageBuilderService.clearHtmlSelection()
|
|
@@ -635,6 +624,9 @@ onMounted(async () => {
|
|
|
635
624
|
<div class="lg:pbx-block pbx-hidden">
|
|
636
625
|
<span> {{ translate('Reset Page') }} </span>
|
|
637
626
|
</div>
|
|
627
|
+
<div class="lg:pbx-hidden pbx-block">
|
|
628
|
+
<span> {{ translate('Reset') }} </span>
|
|
629
|
+
</div>
|
|
638
630
|
</button>
|
|
639
631
|
</template>
|
|
640
632
|
<!-- Restore End -->
|
|
@@ -647,7 +639,7 @@ onMounted(async () => {
|
|
|
647
639
|
await pageBuilderService.clearHtmlSelection()
|
|
648
640
|
}
|
|
649
641
|
"
|
|
650
|
-
class="pbx-flex-1 pbx-flex pbx-justify-center pbx-items-center pbx-py-2 pbx-
|
|
642
|
+
class="pbx-flex-1 pbx-flex pbx-justify-center pbx-items-center pbx-py-2 pbx-w-full"
|
|
651
643
|
>
|
|
652
644
|
<div
|
|
653
645
|
@click.self="
|
|
@@ -730,7 +722,7 @@ onMounted(async () => {
|
|
|
730
722
|
await pageBuilderService.clearHtmlSelection()
|
|
731
723
|
}
|
|
732
724
|
"
|
|
733
|
-
class="pbx-flex pbx-items-center pbx-py-2 pbx-
|
|
725
|
+
class="pbx-flex pbx-items-center pbx-py-2 pbx-w-full"
|
|
734
726
|
:class="[showCloseButton ? 'pbx-justify-between' : 'pbx-justify-end']"
|
|
735
727
|
>
|
|
736
728
|
<ToolbarOption></ToolbarOption>
|
|
@@ -761,21 +753,6 @@ onMounted(async () => {
|
|
|
761
753
|
"
|
|
762
754
|
>
|
|
763
755
|
</template>
|
|
764
|
-
<template v-if="showCloseButton">
|
|
765
|
-
<div class="pbx-flex-1 pbx-ml-2">
|
|
766
|
-
<button
|
|
767
|
-
class="pbx-h-10 pbx-w-10 pbx-flex-end pbx-cursor-pointer pbx-rounded-full pbx-flex pbx-items-center pbx-border-none pbx-justify-center pbx-bg-gray-50 pbx-aspect-square hover:pbx-bg-myPrimaryLinkColor hover:pbx-text-white hover:pbx-fill-white focus-visible:pbx-ring-0"
|
|
768
|
-
@click="
|
|
769
|
-
async () => {
|
|
770
|
-
closePageBuilder()
|
|
771
|
-
await pageBuilderService.clearHtmlSelection()
|
|
772
|
-
}
|
|
773
|
-
"
|
|
774
|
-
>
|
|
775
|
-
<span class="material-symbols-outlined"> close </span>
|
|
776
|
-
</button>
|
|
777
|
-
</div>
|
|
778
|
-
</template>
|
|
779
756
|
|
|
780
757
|
<!-- Publish buttons end -->
|
|
781
758
|
|
|
@@ -806,14 +783,14 @@ onMounted(async () => {
|
|
|
806
783
|
getPageBuilderConfig.userSettings.language.enable.length >= 1
|
|
807
784
|
"
|
|
808
785
|
>
|
|
809
|
-
<
|
|
786
|
+
<div
|
|
810
787
|
v-for="lang in pageBuilderService
|
|
811
788
|
.availableLanguage()
|
|
812
789
|
.filter((l) => getPageBuilderConfig.userSettings.language.enable.includes(l))"
|
|
813
790
|
:key="lang"
|
|
814
791
|
>
|
|
815
792
|
<option :value="lang">{{ lang }}</option>
|
|
816
|
-
</
|
|
793
|
+
</div>
|
|
817
794
|
</template>
|
|
818
795
|
<template
|
|
819
796
|
v-if="
|
|
@@ -822,27 +799,43 @@ onMounted(async () => {
|
|
|
822
799
|
getPageBuilderConfig.userSettings.language.enable.length === 0)
|
|
823
800
|
"
|
|
824
801
|
>
|
|
825
|
-
<
|
|
802
|
+
<div v-for="lang in pageBuilderService.availableLanguage()" :key="lang">
|
|
826
803
|
<option :value="lang">{{ lang }}</option>
|
|
827
|
-
</
|
|
804
|
+
</div>
|
|
828
805
|
</template>
|
|
829
806
|
</select>
|
|
830
807
|
</div>
|
|
831
808
|
</template>
|
|
832
809
|
</template>
|
|
810
|
+
<template v-if="showCloseButton">
|
|
811
|
+
<div class="pbx-flex-1 pbx-ml-2">
|
|
812
|
+
<button
|
|
813
|
+
class="pbx-h-10 pbx-w-10 pbx-flex-end pbx-cursor-pointer pbx-rounded-full pbx-flex pbx-items-center pbx-border-none pbx-justify-center pbx-bg-gray-50 pbx-aspect-square hover:pbx-bg-myPrimaryLinkColor hover:pbx-text-white hover:pbx-fill-white focus-visible:pbx-ring-0"
|
|
814
|
+
@click="
|
|
815
|
+
async () => {
|
|
816
|
+
closePageBuilder()
|
|
817
|
+
await pageBuilderService.clearHtmlSelection()
|
|
818
|
+
}
|
|
819
|
+
"
|
|
820
|
+
>
|
|
821
|
+
<span class="material-symbols-outlined"> close </span>
|
|
822
|
+
</button>
|
|
823
|
+
</div>
|
|
824
|
+
</template>
|
|
833
825
|
</div>
|
|
834
826
|
</div>
|
|
835
827
|
|
|
836
828
|
<!-- Top Layout Save And Reset Area - End -->
|
|
837
|
-
<div class="pbx-relative pbx-h-full pbx-flex pbx-pb-2 pbx-gap-2">
|
|
829
|
+
<div id="pagebuilder-main" class="pbx-relative pbx-h-full pbx-flex pbx-pb-2 pbx-gap-2">
|
|
830
|
+
<!-- Left menu -->
|
|
838
831
|
<div
|
|
839
832
|
@click.self="
|
|
840
833
|
async () => {
|
|
841
834
|
await pageBuilderService.clearHtmlSelection()
|
|
842
835
|
}
|
|
843
836
|
"
|
|
844
|
-
id="pagebuilder-left-
|
|
845
|
-
class="pbx-
|
|
837
|
+
id="pagebuilder-left-menu"
|
|
838
|
+
class="pbx-w-14 pbx-pt-7 pbx-pb-2 pbx-bg-myPrimaryLightGrayColor pbx-rounded-r-2xl pbx-shadow-sm"
|
|
846
839
|
>
|
|
847
840
|
<div class="pbx-mx-2 pbx-flex pbx-flex-col pbx-myPrimaryGap pbx-items-stretch">
|
|
848
841
|
<div class="pbx-flex pbx-gap-2 pbx-items-center pbx-justify-center">
|
|
@@ -873,8 +866,8 @@ onMounted(async () => {
|
|
|
873
866
|
|
|
874
867
|
<main
|
|
875
868
|
ref="pbxToolBar"
|
|
876
|
-
class="pbx-font-sans pbx-p-1 pbx-flex pbx-flex-col pbx-grow pbx-rounded-tr-2xl pbx-rounded-tl-2xl pbx-border-solid pbx-border pbx-border-gray-200 pbx-items-stretch pbx-h-[100vh]
|
|
877
|
-
:class="{ '
|
|
869
|
+
class="pbx-w-full pbx-transition-all pbx-duration-300 pbx-font-sans pbx-p-1 pbx-flex pbx-flex-col pbx-grow pbx-rounded-tr-2xl pbx-rounded-tl-2xl pbx-border-solid pbx-border pbx-border-gray-200 pbx-items-stretch pbx-text-black pbx-h-[100vh]"
|
|
870
|
+
:class="{ '': !getMenuRight, '': getMenuRight }"
|
|
878
871
|
>
|
|
879
872
|
<div
|
|
880
873
|
id="pbxEditToolbar"
|
|
@@ -910,50 +903,52 @@ onMounted(async () => {
|
|
|
910
903
|
</div>
|
|
911
904
|
</main>
|
|
912
905
|
|
|
913
|
-
<
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
906
|
+
<transition name="slide-right" appear mode="out-in">
|
|
907
|
+
<aside
|
|
908
|
+
v-if="getMenuRight"
|
|
909
|
+
aria-label="menu"
|
|
910
|
+
id="pagebuilder-right-menu"
|
|
911
|
+
:class="{
|
|
912
|
+
'pbx-w-0 pbx-mr-0': !getMenuRight,
|
|
913
|
+
'pbx-w-80 pbx-bg-myPrimaryLightGrayColor pbx-items-stretch': getMenuRight,
|
|
914
|
+
}"
|
|
915
|
+
class="pbx-z-20 pbx-flex-shrink-0 pbx-overflow-hidden pbx-border-0 pbx-border-solid pbx-border-l-0 pbx-border-l-gray-600 pbx-rounded-l-2xl pbx-h-[100vh] pbx-pl-2"
|
|
916
|
+
>
|
|
917
|
+
<RightSidebarEditor @closeEditor="pageBuilderStateStore.setMenuRight(false)">
|
|
918
|
+
</RightSidebarEditor>
|
|
919
|
+
</aside>
|
|
922
920
|
<div
|
|
921
|
+
v-else
|
|
923
922
|
@click.self="
|
|
924
923
|
async () => {
|
|
925
924
|
await pageBuilderService.clearHtmlSelection()
|
|
926
925
|
}
|
|
927
926
|
"
|
|
928
|
-
class="pbx-
|
|
927
|
+
class="pbx-w-[10vh] pbx-bg-myPrimaryLightGrayColor pbx-pt-5 pbx-z-20 pbx-flex-shrink-0 pbx-overflow-hidden pbx-border-0 pbx-border-solid pbx-border-l-0 pbx-border-l-gray-600 pbx-rounded-l-2xl pbx-h-[100vh] pbx-pl-2 pbx-pr-2"
|
|
929
928
|
>
|
|
930
|
-
<
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
929
|
+
<div
|
|
930
|
+
@click.self="
|
|
931
|
+
async () => {
|
|
932
|
+
await pageBuilderService.clearHtmlSelection()
|
|
933
|
+
}
|
|
934
|
+
"
|
|
935
|
+
class="pbx-flex pbx-flex-col pbx-items-center pbx-justify-center pbx-gap-2"
|
|
935
936
|
>
|
|
936
|
-
<
|
|
937
|
-
|
|
937
|
+
<button
|
|
938
|
+
v-if="!getMenuRight"
|
|
939
|
+
@click="pageBuilderStateStore.setMenuRight(true)"
|
|
940
|
+
type="button"
|
|
941
|
+
class="pbx-mySecondaryButton pbx-px-2 pbx-text-xs"
|
|
942
|
+
>
|
|
943
|
+
<span> {{ translate('Styles') }} </span>
|
|
944
|
+
</button>
|
|
945
|
+
</div>
|
|
938
946
|
</div>
|
|
939
|
-
</
|
|
940
|
-
|
|
941
|
-
<aside
|
|
942
|
-
aria-label="Menu"
|
|
943
|
-
id="pagebuilder-right-area"
|
|
944
|
-
:class="{
|
|
945
|
-
'pbx-w-0 pbx-mr-0': !getMenuRight,
|
|
946
|
-
'pbx-w-80 pbx-mr-2 pbx-bg-myPrimaryLightGrayColor pbx-items-stretch': getMenuRight,
|
|
947
|
-
}"
|
|
948
|
-
class="pbx-duration-100 pbx-z-20 pbx-flex-shrink-0 pbx-overflow-hidden pbx-shadow-sm pbx-rounded-l-2xl pbx-h-[100vh]"
|
|
949
|
-
>
|
|
950
|
-
<RightSidebarEditor @closeEditor="pageBuilderStateStore.setMenuRight(false)">
|
|
951
|
-
</RightSidebarEditor>
|
|
952
|
-
</aside>
|
|
947
|
+
</transition>
|
|
953
948
|
</div>
|
|
954
|
-
|
|
955
949
|
<div
|
|
956
|
-
|
|
950
|
+
id="pagebuilder-footer"
|
|
951
|
+
class="pbx-w-full pbx-flex pbx-items-center pbx-justify-center pbx-p-4 pbx-border-0 pbx-border-t pbx-border-t-gray-200 pbx-border-solid pbx-bg-myPrimaryLightGrayColor"
|
|
957
952
|
>
|
|
958
953
|
<div
|
|
959
954
|
@click="
|
|
@@ -983,18 +978,18 @@ onMounted(async () => {
|
|
|
983
978
|
<style>
|
|
984
979
|
#pagebuilder [element] {
|
|
985
980
|
outline: rgba(255, 255, 255, 0) dashed 4px !important;
|
|
986
|
-
outline-offset: -
|
|
981
|
+
outline-offset: -4px !important;
|
|
987
982
|
}
|
|
988
983
|
#pagebuilder [hovered] {
|
|
989
984
|
outline: rgb(0, 140, 14, 1) dashed 4px !important;
|
|
990
|
-
outline-offset: -
|
|
985
|
+
outline-offset: -4px !important;
|
|
991
986
|
}
|
|
992
987
|
|
|
993
988
|
#pagebuilder [selected] {
|
|
994
989
|
position: relative;
|
|
995
990
|
|
|
996
991
|
outline: rgb(185, 16, 16) dashed 4px !important;
|
|
997
|
-
outline-offset: -
|
|
992
|
+
outline-offset: -4px !important;
|
|
998
993
|
}
|
|
999
994
|
|
|
1000
995
|
#pagebuilder a {
|
|
@@ -1011,4 +1006,30 @@ onMounted(async () => {
|
|
|
1011
1006
|
.sortable-ghost > * {
|
|
1012
1007
|
width: 100%;
|
|
1013
1008
|
}
|
|
1009
|
+
|
|
1010
|
+
/* CSS for content inside page builder # start */
|
|
1011
|
+
#page-builder-editor .tiptap {
|
|
1012
|
+
outline: none !important;
|
|
1013
|
+
box-shadow: none !important;
|
|
1014
|
+
background: #fff;
|
|
1015
|
+
min-height: 25rem;
|
|
1016
|
+
border-bottom: 1px solid #aaa;
|
|
1017
|
+
padding: 0px 0px 10px 16px;
|
|
1018
|
+
margin-bottom: 20px;
|
|
1019
|
+
padding-bottom: 100px;
|
|
1020
|
+
}
|
|
1021
|
+
.slide-right-enter-from,
|
|
1022
|
+
.slide-right-leave-to {
|
|
1023
|
+
transform: translateX(100%);
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
.slide-right-enter-to,
|
|
1027
|
+
.slide-right-leave-from {
|
|
1028
|
+
transform: translateX(0%);
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
.slide-right-enter-active,
|
|
1032
|
+
.slide-right-leave-active {
|
|
1033
|
+
transition: transform 0.1s ease;
|
|
1034
|
+
}
|
|
1014
1035
|
</style>
|
package/src/css/dev-global.css
CHANGED
|
@@ -2,15 +2,6 @@
|
|
|
2
2
|
These styles affect all HTML elements (like input, button, h1, etc.) in the consuming app. */
|
|
3
3
|
@tailwind base;
|
|
4
4
|
|
|
5
|
-
.tailwind-pagination-package {
|
|
6
|
-
box-shadow: none !important;
|
|
7
|
-
display: flex;
|
|
8
|
-
flex-direction: row;
|
|
9
|
-
flex-wrap: wrap;
|
|
10
|
-
gap: 6px 0px;
|
|
11
|
-
justify-content: center;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
5
|
.mobile-preview-frame {
|
|
15
6
|
container-type: inline-size;
|
|
16
7
|
}
|
package/src/css/style.css
CHANGED
|
@@ -318,7 +318,7 @@
|
|
|
318
318
|
@apply focus:pbx-ring-2 focus:pbx-ring-myPrimaryLinkColor focus:pbx-ring-offset-2 focus:pbx-border focus:pbx-border-gray-200;
|
|
319
319
|
}
|
|
320
320
|
.pbx-myPrimaryInput {
|
|
321
|
-
@apply pbx-block pbx-pr-8 pbx-text-left pbx-bg-white pbx-w-
|
|
321
|
+
@apply pbx-block pbx-pr-8 pbx-text-left pbx-bg-white pbx-w-auto sm:pbx-text-sm pbx-font-normal pbx-text-myPrimaryDarkGrayColor placeholder:pbx-font-normal placeholder:pbx-accent-gray-300 focus:pbx-bg-white pbx-rounded-md pbx-py-3 pbx-px-3 pbx-border pbx-border-gray-300 pbx-shadow-sm focus:pbx-outline-none pbx-myPrimaryFormFocus pbx-h-full pbx-border-solid;
|
|
322
322
|
}
|
|
323
323
|
.pbx-myPrimaryInputNoBorder {
|
|
324
324
|
@apply pbx-myPrimaryInput pbx-placeholder:accent-gray-300 focus:pbx-bg-none pbx-rounded-md pbx-py-3 pbx-px-3 pbx-border-none focus:pbx-outline-none focus:pbx-ring-0 focus:pbx-ring-offset-0 focus:pbx-border-none pbx-shadow-none;
|
|
@@ -328,7 +328,7 @@
|
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
.pbx-myPrimaryInputError {
|
|
331
|
-
@apply pbx-mt-1 pbx-myPrimaryParagraph pbx-block pbx-font-normal pbx-text-myPrimaryErrorColor pbx-text-left;
|
|
331
|
+
@apply pbx-mt-1 pbx-myPrimaryParagraph pbx-block pbx-font-normal pbx-text-myPrimaryErrorColor pbx-text-left pbx-text-sm;
|
|
332
332
|
}
|
|
333
333
|
|
|
334
334
|
.pbx-myPrimaryHiddenInputField {
|
|
@@ -358,18 +358,6 @@
|
|
|
358
358
|
}
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
/* CSS for content inside page builder # start */
|
|
362
|
-
#page-builder-editor .tiptap {
|
|
363
|
-
outline: none !important;
|
|
364
|
-
box-shadow: none !important;
|
|
365
|
-
background: #fff;
|
|
366
|
-
min-height: 25rem;
|
|
367
|
-
border-bottom: 1px solid #aaa;
|
|
368
|
-
padding: 0px 0px 10px 16px;
|
|
369
|
-
margin-bottom: 20px;
|
|
370
|
-
padding-bottom: 100px;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
361
|
#page-builder-editor ol,
|
|
374
362
|
#page-builder-editor-editable-area ol,
|
|
375
363
|
#page-builder-editor ul,
|
|
@@ -409,13 +397,10 @@
|
|
|
409
397
|
height: 2.2rem;
|
|
410
398
|
}
|
|
411
399
|
|
|
412
|
-
/* Manage P, Link, H1, H2 # end */
|
|
413
|
-
|
|
414
400
|
/* CSS for content inside page builder # start */
|
|
415
401
|
#pagebuilder {
|
|
416
402
|
position: relative;
|
|
417
403
|
overflow-y: auto;
|
|
418
|
-
padding: 4px;
|
|
419
404
|
}
|
|
420
405
|
#pagebuilder a {
|
|
421
406
|
pointer-events: none;
|
|
@@ -491,23 +476,3 @@
|
|
|
491
476
|
list-style: disc !important;
|
|
492
477
|
padding: 0rem;
|
|
493
478
|
}
|
|
494
|
-
|
|
495
|
-
#pagebuilder[data-global-selected] {
|
|
496
|
-
outline: 4px dashed #b91010 !important;
|
|
497
|
-
outline-offset: -2px !important;
|
|
498
|
-
}
|
|
499
|
-
|
|
500
|
-
.pbx-myPrimarySelec select {
|
|
501
|
-
appearance: none;
|
|
502
|
-
-webkit-appearance: none;
|
|
503
|
-
-moz-appearance: none;
|
|
504
|
-
background-color: #fff;
|
|
505
|
-
border: 1px solid #c4c4c4;
|
|
506
|
-
border-radius: 6px;
|
|
507
|
-
padding: 10px 40px 10px 15px;
|
|
508
|
-
cursor: pointer;
|
|
509
|
-
outline: none;
|
|
510
|
-
transition: border-color 0.3s ease;
|
|
511
|
-
background-repeat: no-repeat;
|
|
512
|
-
background-position: right 12px center;
|
|
513
|
-
}
|
package/src/locales/ar.json
CHANGED
|
@@ -136,5 +136,30 @@
|
|
|
136
136
|
"Header H3": "رأس H3",
|
|
137
137
|
"YouTube Video": "فيديو يوتيوب",
|
|
138
138
|
"Break Divider": "فاصل",
|
|
139
|
-
"Link": "رابط"
|
|
139
|
+
"Link": "رابط",
|
|
140
|
+
"Selected HTML": "HTML المحدد",
|
|
141
|
+
"Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.": "نظرة عامة على العنصر المحدد والمكون والمكونات. يوفر هذا القسم تحديثات في الوقت الفعلي بناءً على اختيار HTML الخاص بك.",
|
|
142
|
+
"Types": "أنواع",
|
|
143
|
+
"Element type:": "نوع العنصر:",
|
|
144
|
+
"Component type:": "نوع المكون:",
|
|
145
|
+
"Components:": "المكونات:",
|
|
146
|
+
"array": "مصفوفة",
|
|
147
|
+
"Content": "المحتوى",
|
|
148
|
+
"Element": "عنصر",
|
|
149
|
+
"Component": "مكون",
|
|
150
|
+
"Components added": "تمت إضافة المكونات",
|
|
151
|
+
"No Element selected": "لم يتم تحديد عنصر",
|
|
152
|
+
"Selected HTML:": "HTML المحدد:",
|
|
153
|
+
"Element src:": "مصدر العنصر:",
|
|
154
|
+
"Element classes:": "فئات العنصر:",
|
|
155
|
+
"No Component selected": "لم يتم تحديد مكون",
|
|
156
|
+
"ID:": "المعرف:",
|
|
157
|
+
"Title:": "العنوان:",
|
|
158
|
+
"HTML Code:": "كود HTML:",
|
|
159
|
+
"No Components added yet": "لم تتم إضافة مكونات بعد",
|
|
160
|
+
"All": "الكل",
|
|
161
|
+
"Image": "صورة",
|
|
162
|
+
"Image & Text": "صورة ونص",
|
|
163
|
+
"Four Square Images With Text": "أربع صور مربعة مع نص",
|
|
164
|
+
"Four Square Images": "أربع صور مربعة"
|
|
140
165
|
}
|
package/src/locales/de.json
CHANGED
|
@@ -138,5 +138,30 @@
|
|
|
138
138
|
"Header H3": "Überschrift H3",
|
|
139
139
|
"YouTube Video": "YouTube-Video",
|
|
140
140
|
"Break Divider": "Trennlinie",
|
|
141
|
-
"Link": "Link"
|
|
141
|
+
"Link": "Link",
|
|
142
|
+
"Selected HTML": "Ausgewähltes HTML",
|
|
143
|
+
"Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.": "Übersicht über ausgewähltes Element, Komponente und Komponenten. Dieser Abschnitt bietet Echtzeit-Updates basierend auf Ihrer HTML-Auswahl.",
|
|
144
|
+
"Types": "Typen",
|
|
145
|
+
"Element type:": "Elementtyp:",
|
|
146
|
+
"Component type:": "Komponententyp:",
|
|
147
|
+
"Components:": "Komponenten:",
|
|
148
|
+
"array": "Array",
|
|
149
|
+
"Content": "Inhalt",
|
|
150
|
+
"Element": "Element",
|
|
151
|
+
"Component": "Komponente",
|
|
152
|
+
"Components added": "Komponenten hinzugefügt",
|
|
153
|
+
"No Element selected": "Kein Element ausgewählt",
|
|
154
|
+
"Selected HTML:": "Ausgewähltes HTML:",
|
|
155
|
+
"Element src:": "Elementquelle:",
|
|
156
|
+
"Element classes:": "Elementklassen:",
|
|
157
|
+
"No Component selected": "Keine Komponente ausgewählt",
|
|
158
|
+
"ID:": "ID:",
|
|
159
|
+
"Title:": "Titel:",
|
|
160
|
+
"HTML Code:": "HTML-Code:",
|
|
161
|
+
"No Components added yet": "Noch keine Komponenten hinzugefügt",
|
|
162
|
+
"All": "Alle",
|
|
163
|
+
"Image": "Bild",
|
|
164
|
+
"Image & Text": "Bild & Text",
|
|
165
|
+
"Four Square Images With Text": "Vier quadratische Bilder mit Text",
|
|
166
|
+
"Four Square Images": "Vier quadratische Bilder"
|
|
142
167
|
}
|
package/src/locales/en.json
CHANGED
|
@@ -129,7 +129,6 @@
|
|
|
129
129
|
"Two Square Images With Text": "Two Square Images With Text",
|
|
130
130
|
"Three Square Images": "Three Square Images",
|
|
131
131
|
"Six Square Images Grid": "Six Square Images Grid",
|
|
132
|
-
"Three Vertical Images": "Three Vertical Images",
|
|
133
132
|
"Four Square Images With Text": "Four Square Images With Text",
|
|
134
133
|
"Three Square Images With Text": "Three Square Images With Text",
|
|
135
134
|
"Three Vertical Images": "Three Vertical Images",
|
|
@@ -138,5 +137,28 @@
|
|
|
138
137
|
"Header H3": "Header H3",
|
|
139
138
|
"YouTube Video": "YouTube Video",
|
|
140
139
|
"Break Divider": "Break Divider",
|
|
141
|
-
"
|
|
140
|
+
"Selected HTML": "Selected HTML",
|
|
141
|
+
"Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.": "Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.",
|
|
142
|
+
"Types": "Types",
|
|
143
|
+
"Element type:": "Element type:",
|
|
144
|
+
"Component type:": "Component type:",
|
|
145
|
+
"Components:": "Components:",
|
|
146
|
+
"array": "array",
|
|
147
|
+
"Content": "Content",
|
|
148
|
+
"Element": "Element",
|
|
149
|
+
"Component": "Component",
|
|
150
|
+
"Components added": "Components added",
|
|
151
|
+
"No Element selected": "No Element selected",
|
|
152
|
+
"Selected HTML:": "Selected HTML:",
|
|
153
|
+
"Element src:": "Element src:",
|
|
154
|
+
"Element classes:": "Element classes:",
|
|
155
|
+
"No Component selected": "No Component selected",
|
|
156
|
+
"ID:": "ID:",
|
|
157
|
+
"Title:": "Title:",
|
|
158
|
+
"HTML Code:": "HTML Code:",
|
|
159
|
+
"No Components added yet": "No Components added yet",
|
|
160
|
+
"All": "All",
|
|
161
|
+
"Image": "Image",
|
|
162
|
+
"Image & Text": "Image & Text",
|
|
163
|
+
"Four Square Images": "Four Square Images"
|
|
142
164
|
}
|
package/src/locales/es.json
CHANGED
|
@@ -138,5 +138,30 @@
|
|
|
138
138
|
"Header H3": "Encabezado H3",
|
|
139
139
|
"YouTube Video": "Video de YouTube",
|
|
140
140
|
"Break Divider": "Divisor",
|
|
141
|
-
"Link": "Enlace"
|
|
141
|
+
"Link": "Enlace",
|
|
142
|
+
"Selected HTML": "HTML seleccionado",
|
|
143
|
+
"Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.": "Descripción general del elemento seleccionado, componente y componentes. Esta sección proporciona actualizaciones en tiempo real basadas en su selección de HTML.",
|
|
144
|
+
"Types": "Tipos",
|
|
145
|
+
"Element type:": "Tipo de elemento:",
|
|
146
|
+
"Component type:": "Tipo de componente:",
|
|
147
|
+
"Components:": "Componentes:",
|
|
148
|
+
"array": "matriz",
|
|
149
|
+
"Content": "Contenido",
|
|
150
|
+
"Element": "Elemento",
|
|
151
|
+
"Component": "Componente",
|
|
152
|
+
"Components added": "Componentes añadidos",
|
|
153
|
+
"No Element selected": "Ningún elemento seleccionado",
|
|
154
|
+
"Selected HTML:": "HTML seleccionado:",
|
|
155
|
+
"Element src:": "Fuente del elemento:",
|
|
156
|
+
"Element classes:": "Clases de elemento:",
|
|
157
|
+
"No Component selected": "Ningún componente seleccionado",
|
|
158
|
+
"ID:": "ID:",
|
|
159
|
+
"Title:": "Título:",
|
|
160
|
+
"HTML Code:": "Código HTML:",
|
|
161
|
+
"No Components added yet": "Aún no se han añadido componentes",
|
|
162
|
+
"All": "Todos",
|
|
163
|
+
"Image": "Imagen",
|
|
164
|
+
"Image & Text": "Imagen y texto",
|
|
165
|
+
"Four Square Images With Text": "Cuatro imágenes cuadradas con texto",
|
|
166
|
+
"Four Square Images": "Cuatro imágenes cuadradas"
|
|
142
167
|
}
|
package/src/locales/fr.json
CHANGED
|
@@ -138,5 +138,30 @@
|
|
|
138
138
|
"Header H3": "En-tête H3",
|
|
139
139
|
"YouTube Video": "Vidéo YouTube",
|
|
140
140
|
"Break Divider": "Séparateur",
|
|
141
|
-
"Link": "Lien"
|
|
141
|
+
"Link": "Lien",
|
|
142
|
+
"Selected HTML": "HTML sélectionné",
|
|
143
|
+
"Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.": "Aperçu de l'élément sélectionné, du composant et des composants. Cette section fournit des mises à jour en temps réel en fonction de votre sélection HTML.",
|
|
144
|
+
"Types": "Types",
|
|
145
|
+
"Element type:": "Type d'élément:",
|
|
146
|
+
"Component type:": "Type de composant:",
|
|
147
|
+
"Components:": "Composants:",
|
|
148
|
+
"array": "tableau",
|
|
149
|
+
"Content": "Contenu",
|
|
150
|
+
"Element": "Élément",
|
|
151
|
+
"Component": "Composant",
|
|
152
|
+
"Components added": "Composants ajoutés",
|
|
153
|
+
"No Element selected": "Aucun élément sélectionné",
|
|
154
|
+
"Selected HTML:": "HTML sélectionné:",
|
|
155
|
+
"Element src:": "Source de l'élément:",
|
|
156
|
+
"Element classes:": "Classes d'élément:",
|
|
157
|
+
"No Component selected": "Aucun composant sélectionné",
|
|
158
|
+
"ID:": "ID:",
|
|
159
|
+
"Title:": "Titre:",
|
|
160
|
+
"HTML Code:": "Code HTML:",
|
|
161
|
+
"No Components added yet": "Aucun composant ajouté pour le moment",
|
|
162
|
+
"All": "Tous",
|
|
163
|
+
"Image": "Image",
|
|
164
|
+
"Image & Text": "Image et texte",
|
|
165
|
+
"Four Square Images With Text": "Quatre images carrées avec texte",
|
|
166
|
+
"Four Square Images": "Quatre images carrées"
|
|
142
167
|
}
|
package/src/locales/hi.json
CHANGED
|
@@ -138,5 +138,30 @@
|
|
|
138
138
|
"YouTube Video": "यूट्यूब वीडियो",
|
|
139
139
|
"Break Divider": "विभाजक",
|
|
140
140
|
"Link": "लिंक",
|
|
141
|
-
"Two Square Images With Text": "दो वर्ग छवियां और पाठ"
|
|
141
|
+
"Two Square Images With Text": "दो वर्ग छवियां और पाठ",
|
|
142
|
+
"Selected HTML": "चयनित HTML",
|
|
143
|
+
"Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.": "चयनित तत्व, घटक और घटकों का अवलोकन। यह अनुभाग आपके HTML चयन के आधार पर वास्तविक समय अपडेट प्रदान करता है।",
|
|
144
|
+
"Types": "प्रकार",
|
|
145
|
+
"Element type:": "तत्व प्रकार:",
|
|
146
|
+
"Component type:": "घटक प्रकार:",
|
|
147
|
+
"Components:": "घटक:",
|
|
148
|
+
"array": "सरणी",
|
|
149
|
+
"Content": "सामग्री",
|
|
150
|
+
"Element": "तत्व",
|
|
151
|
+
"Component": "घटक",
|
|
152
|
+
"Components added": "घटक जोड़े गए",
|
|
153
|
+
"No Element selected": "कोई तत्व चयनित नहीं",
|
|
154
|
+
"Selected HTML:": "चयनित HTML:",
|
|
155
|
+
"Element src:": "तत्व स्रोत:",
|
|
156
|
+
"Element classes:": "तत्व वर्ग:",
|
|
157
|
+
"No Component selected": "कोई घटक चयनित नहीं",
|
|
158
|
+
"ID:": "आईडी:",
|
|
159
|
+
"Title:": "शीर्षक:",
|
|
160
|
+
"HTML Code:": "HTML कोड:",
|
|
161
|
+
"No Components added yet": "अभी तक कोई घटक नहीं जोड़ा गया",
|
|
162
|
+
"All": "सभी",
|
|
163
|
+
"Image": "छवि",
|
|
164
|
+
"Image & Text": "छवि और पाठ",
|
|
165
|
+
"Four Square Images With Text": "चार वर्गाकार चित्र पाठ के साथ",
|
|
166
|
+
"Four Square Images": "चार वर्गाकार छवियाँ"
|
|
142
167
|
}
|
package/src/locales/ja.json
CHANGED
|
@@ -137,5 +137,30 @@
|
|
|
137
137
|
"Header H3": "ヘッダー H3",
|
|
138
138
|
"YouTube Video": "YouTube ビデオ",
|
|
139
139
|
"Break Divider": "区切り",
|
|
140
|
-
"Two Square Images With Text": "テキスト付き正方形の画像2枚"
|
|
140
|
+
"Two Square Images With Text": "テキスト付き正方形の画像2枚",
|
|
141
|
+
"Selected HTML": "選択されたHTML",
|
|
142
|
+
"Overview of Selected Element, Component, and Components. This section provides real-time updates based on your HTML selection.": "選択された要素、コンポーネント、およびコンポーネントの概要。このセクションは、HTML選択に基づいてリアルタイムの更新を提供します。",
|
|
143
|
+
"Types": "タイプ",
|
|
144
|
+
"Element type:": "要素タイプ:",
|
|
145
|
+
"Component type:": "コンポーネントタイプ:",
|
|
146
|
+
"Components:": "コンポーネント:",
|
|
147
|
+
"array": "配列",
|
|
148
|
+
"Content": "コンテンツ",
|
|
149
|
+
"Element": "要素",
|
|
150
|
+
"Component": "コンポーネント",
|
|
151
|
+
"Components added": "追加されたコンポーネント",
|
|
152
|
+
"No Element selected": "選択された要素はありません",
|
|
153
|
+
"Selected HTML:": "選択されたHTML:",
|
|
154
|
+
"Element src:": "要素ソース:",
|
|
155
|
+
"Element classes:": "要素クラス:",
|
|
156
|
+
"No Component selected": "選択されたコンポーネントはありません",
|
|
157
|
+
"ID:": "ID:",
|
|
158
|
+
"Title:": "タイトル:",
|
|
159
|
+
"HTML Code:": "HTMLコード:",
|
|
160
|
+
"No Components added yet": "まだコンポーネントが追加されていません",
|
|
161
|
+
"All": "すべて",
|
|
162
|
+
"Image": "画像",
|
|
163
|
+
"Image & Text": "画像とテキスト",
|
|
164
|
+
"Four Square Images With Text": "テキスト付きの4つの正方形の画像",
|
|
165
|
+
"Four Square Images": "4つの正方形の画像"
|
|
141
166
|
}
|