@designcrowd/fe-shared-lib 1.5.9-dbc-2 → 1.5.9-kp-2

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.
Files changed (24) hide show
  1. package/dist/css/tailwind-brandCrowd.css +74 -6
  2. package/dist/css/tailwind-brandPage.css +70 -6
  3. package/dist/css/tailwind-crazyDomains.css +74 -6
  4. package/dist/css/tailwind-designCom.css +74 -6
  5. package/dist/css/tailwind-designCrowd.css +74 -6
  6. package/package.json +1 -1
  7. package/src/atoms/components/Icon/Icon.vue +0 -4
  8. package/src/bundles/bundled-translations.de-DE.json +3 -1
  9. package/src/bundles/bundled-translations.es-ES.json +3 -1
  10. package/src/bundles/bundled-translations.fr-CA.json +3 -1
  11. package/src/bundles/bundled-translations.fr-FR.json +3 -1
  12. package/src/bundles/bundled-translations.json +3 -1
  13. package/src/bundles/bundled-translations.pt-BR.json +3 -1
  14. package/src/bundles/bundled-translations.pt-PT.json +3 -1
  15. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +5 -0
  16. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +23 -21
  17. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +23 -21
  18. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +23 -21
  19. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +23 -21
  20. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +3 -1
  21. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +23 -21
  22. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +23 -21
  23. package/src/experiences/components/PublishBrandPageModal/views/PublishWhenNoDomainsView.vue +15 -1
  24. package/src/atoms/components/Icon/icons/group.vue +0 -6
@@ -684,6 +684,9 @@ video {
684
684
  .tw-mb-0 {
685
685
  margin-bottom: 0px;
686
686
  }
687
+ .tw-mb-0\.5 {
688
+ margin-bottom: 0.125rem;
689
+ }
687
690
  .tw-mb-1 {
688
691
  margin-bottom: 0.25rem;
689
692
  }
@@ -717,9 +720,6 @@ video {
717
720
  .tw-ml-4 {
718
721
  margin-left: 1rem;
719
722
  }
720
- .tw-ml-6 {
721
- margin-left: 1.5rem;
722
- }
723
723
  .tw-ml-auto {
724
724
  margin-left: auto;
725
725
  }
@@ -741,9 +741,6 @@ video {
741
741
  .tw-mt-0 {
742
742
  margin-top: 0px;
743
743
  }
744
- .tw-mt-0\.5 {
745
- margin-top: 0.125rem;
746
- }
747
744
  .tw-mt-1 {
748
745
  margin-top: 0.25rem;
749
746
  }
@@ -756,6 +753,9 @@ video {
756
753
  .tw-mt-4 {
757
754
  margin-top: 1rem;
758
755
  }
756
+ .tw-mt-6 {
757
+ margin-top: 1.5rem;
758
+ }
759
759
  .tw-mt-8 {
760
760
  margin-top: 2rem;
761
761
  }
@@ -765,6 +765,48 @@ video {
765
765
  .tw-box-content {
766
766
  box-sizing: content-box;
767
767
  }
768
+ .tw-line-clamp-1 {
769
+ overflow: hidden;
770
+ display: -webkit-box;
771
+ -webkit-box-orient: vertical;
772
+ -webkit-line-clamp: 1;
773
+ }
774
+ .tw-line-clamp-2 {
775
+ overflow: hidden;
776
+ display: -webkit-box;
777
+ -webkit-box-orient: vertical;
778
+ -webkit-line-clamp: 2;
779
+ }
780
+ .tw-line-clamp-3 {
781
+ overflow: hidden;
782
+ display: -webkit-box;
783
+ -webkit-box-orient: vertical;
784
+ -webkit-line-clamp: 3;
785
+ }
786
+ .tw-line-clamp-4 {
787
+ overflow: hidden;
788
+ display: -webkit-box;
789
+ -webkit-box-orient: vertical;
790
+ -webkit-line-clamp: 4;
791
+ }
792
+ .tw-line-clamp-5 {
793
+ overflow: hidden;
794
+ display: -webkit-box;
795
+ -webkit-box-orient: vertical;
796
+ -webkit-line-clamp: 5;
797
+ }
798
+ .tw-line-clamp-6 {
799
+ overflow: hidden;
800
+ display: -webkit-box;
801
+ -webkit-box-orient: vertical;
802
+ -webkit-line-clamp: 6;
803
+ }
804
+ .tw-line-clamp-none {
805
+ overflow: visible;
806
+ display: block;
807
+ -webkit-box-orient: horizontal;
808
+ -webkit-line-clamp: none;
809
+ }
768
810
  .tw-block {
769
811
  display: block;
770
812
  }
@@ -929,6 +971,9 @@ video {
929
971
  .tw-flex-none {
930
972
  flex: none;
931
973
  }
974
+ .tw-flex-shrink-0 {
975
+ flex-shrink: 0;
976
+ }
932
977
  .tw-grow {
933
978
  flex-grow: 1;
934
979
  }
@@ -1144,6 +1189,9 @@ video {
1144
1189
  text-overflow: ellipsis;
1145
1190
  white-space: nowrap;
1146
1191
  }
1192
+ .tw-text-ellipsis {
1193
+ text-overflow: ellipsis;
1194
+ }
1147
1195
  .tw-whitespace-nowrap {
1148
1196
  white-space: nowrap;
1149
1197
  }
@@ -1606,6 +1654,9 @@ video {
1606
1654
  .tw-p-4 {
1607
1655
  padding: 1rem;
1608
1656
  }
1657
+ .tw-p-5 {
1658
+ padding: 1.25rem;
1659
+ }
1609
1660
  .tw-p-6 {
1610
1661
  padding: 1.5rem;
1611
1662
  }
@@ -2089,6 +2140,10 @@ video {
2089
2140
  --tw-text-opacity: 1;
2090
2141
  color: rgb(17 21 23 / var(--tw-text-opacity));
2091
2142
  }
2143
+ .hover\:tw-text-primary-600:hover {
2144
+ --tw-text-opacity: 1;
2145
+ color: rgb(194 22 50 / var(--tw-text-opacity));
2146
+ }
2092
2147
  .hover\:tw-text-secondary-500:hover {
2093
2148
  --tw-text-opacity: 1;
2094
2149
  color: rgb(89 89 89 / var(--tw-text-opacity));
@@ -2176,6 +2231,10 @@ video {
2176
2231
  margin-bottom: 1rem;
2177
2232
  }
2178
2233
 
2234
+ .sm\:tw-ml-2 {
2235
+ margin-left: 0.5rem;
2236
+ }
2237
+
2179
2238
  .sm\:tw-ml-4 {
2180
2239
  margin-left: 1rem;
2181
2240
  }
@@ -2224,6 +2283,10 @@ video {
2224
2283
  flex-direction: row;
2225
2284
  }
2226
2285
 
2286
+ .sm\:tw-items-center {
2287
+ align-items: center;
2288
+ }
2289
+
2227
2290
  .sm\:tw-rounded-md {
2228
2291
  border-radius: 0.375rem;
2229
2292
  }
@@ -2390,6 +2453,11 @@ video {
2390
2453
  padding: 2rem;
2391
2454
  }
2392
2455
 
2456
+ .md\:tw-px-12 {
2457
+ padding-left: 3rem;
2458
+ padding-right: 3rem;
2459
+ }
2460
+
2393
2461
  .md\:tw-px-4 {
2394
2462
  padding-left: 1rem;
2395
2463
  padding-right: 1rem;
@@ -684,6 +684,9 @@ video {
684
684
  .tw-mb-0 {
685
685
  margin-bottom: 0px;
686
686
  }
687
+ .tw-mb-0\.5 {
688
+ margin-bottom: 0.125rem;
689
+ }
687
690
  .tw-mb-1 {
688
691
  margin-bottom: 0.25rem;
689
692
  }
@@ -717,9 +720,6 @@ video {
717
720
  .tw-ml-4 {
718
721
  margin-left: 1rem;
719
722
  }
720
- .tw-ml-6 {
721
- margin-left: 1.5rem;
722
- }
723
723
  .tw-ml-auto {
724
724
  margin-left: auto;
725
725
  }
@@ -741,9 +741,6 @@ video {
741
741
  .tw-mt-0 {
742
742
  margin-top: 0px;
743
743
  }
744
- .tw-mt-0\.5 {
745
- margin-top: 0.125rem;
746
- }
747
744
  .tw-mt-1 {
748
745
  margin-top: 0.25rem;
749
746
  }
@@ -756,6 +753,9 @@ video {
756
753
  .tw-mt-4 {
757
754
  margin-top: 1rem;
758
755
  }
756
+ .tw-mt-6 {
757
+ margin-top: 1.5rem;
758
+ }
759
759
  .tw-mt-8 {
760
760
  margin-top: 2rem;
761
761
  }
@@ -765,6 +765,48 @@ video {
765
765
  .tw-box-content {
766
766
  box-sizing: content-box;
767
767
  }
768
+ .tw-line-clamp-1 {
769
+ overflow: hidden;
770
+ display: -webkit-box;
771
+ -webkit-box-orient: vertical;
772
+ -webkit-line-clamp: 1;
773
+ }
774
+ .tw-line-clamp-2 {
775
+ overflow: hidden;
776
+ display: -webkit-box;
777
+ -webkit-box-orient: vertical;
778
+ -webkit-line-clamp: 2;
779
+ }
780
+ .tw-line-clamp-3 {
781
+ overflow: hidden;
782
+ display: -webkit-box;
783
+ -webkit-box-orient: vertical;
784
+ -webkit-line-clamp: 3;
785
+ }
786
+ .tw-line-clamp-4 {
787
+ overflow: hidden;
788
+ display: -webkit-box;
789
+ -webkit-box-orient: vertical;
790
+ -webkit-line-clamp: 4;
791
+ }
792
+ .tw-line-clamp-5 {
793
+ overflow: hidden;
794
+ display: -webkit-box;
795
+ -webkit-box-orient: vertical;
796
+ -webkit-line-clamp: 5;
797
+ }
798
+ .tw-line-clamp-6 {
799
+ overflow: hidden;
800
+ display: -webkit-box;
801
+ -webkit-box-orient: vertical;
802
+ -webkit-line-clamp: 6;
803
+ }
804
+ .tw-line-clamp-none {
805
+ overflow: visible;
806
+ display: block;
807
+ -webkit-box-orient: horizontal;
808
+ -webkit-line-clamp: none;
809
+ }
768
810
  .tw-block {
769
811
  display: block;
770
812
  }
@@ -929,6 +971,9 @@ video {
929
971
  .tw-flex-none {
930
972
  flex: none;
931
973
  }
974
+ .tw-flex-shrink-0 {
975
+ flex-shrink: 0;
976
+ }
932
977
  .tw-grow {
933
978
  flex-grow: 1;
934
979
  }
@@ -1144,6 +1189,9 @@ video {
1144
1189
  text-overflow: ellipsis;
1145
1190
  white-space: nowrap;
1146
1191
  }
1192
+ .tw-text-ellipsis {
1193
+ text-overflow: ellipsis;
1194
+ }
1147
1195
  .tw-whitespace-nowrap {
1148
1196
  white-space: nowrap;
1149
1197
  }
@@ -1454,6 +1502,9 @@ video {
1454
1502
  .tw-p-4 {
1455
1503
  padding: 1rem;
1456
1504
  }
1505
+ .tw-p-5 {
1506
+ padding: 1.25rem;
1507
+ }
1457
1508
  .tw-p-6 {
1458
1509
  padding: 1.5rem;
1459
1510
  }
@@ -1860,6 +1911,10 @@ video {
1860
1911
  margin-bottom: 1rem;
1861
1912
  }
1862
1913
 
1914
+ .sm\:tw-ml-2 {
1915
+ margin-left: 0.5rem;
1916
+ }
1917
+
1863
1918
  .sm\:tw-ml-4 {
1864
1919
  margin-left: 1rem;
1865
1920
  }
@@ -1908,6 +1963,10 @@ video {
1908
1963
  flex-direction: row;
1909
1964
  }
1910
1965
 
1966
+ .sm\:tw-items-center {
1967
+ align-items: center;
1968
+ }
1969
+
1911
1970
  .sm\:tw-rounded-md {
1912
1971
  border-radius: 0.375rem;
1913
1972
  }
@@ -2074,6 +2133,11 @@ video {
2074
2133
  padding: 2rem;
2075
2134
  }
2076
2135
 
2136
+ .md\:tw-px-12 {
2137
+ padding-left: 3rem;
2138
+ padding-right: 3rem;
2139
+ }
2140
+
2077
2141
  .md\:tw-px-4 {
2078
2142
  padding-left: 1rem;
2079
2143
  padding-right: 1rem;
@@ -684,6 +684,9 @@ video {
684
684
  .tw-mb-0 {
685
685
  margin-bottom: 0px;
686
686
  }
687
+ .tw-mb-0\.5 {
688
+ margin-bottom: 0.125rem;
689
+ }
687
690
  .tw-mb-1 {
688
691
  margin-bottom: 0.25rem;
689
692
  }
@@ -717,9 +720,6 @@ video {
717
720
  .tw-ml-4 {
718
721
  margin-left: 1rem;
719
722
  }
720
- .tw-ml-6 {
721
- margin-left: 1.5rem;
722
- }
723
723
  .tw-ml-auto {
724
724
  margin-left: auto;
725
725
  }
@@ -741,9 +741,6 @@ video {
741
741
  .tw-mt-0 {
742
742
  margin-top: 0px;
743
743
  }
744
- .tw-mt-0\.5 {
745
- margin-top: 0.125rem;
746
- }
747
744
  .tw-mt-1 {
748
745
  margin-top: 0.25rem;
749
746
  }
@@ -756,6 +753,9 @@ video {
756
753
  .tw-mt-4 {
757
754
  margin-top: 1rem;
758
755
  }
756
+ .tw-mt-6 {
757
+ margin-top: 1.5rem;
758
+ }
759
759
  .tw-mt-8 {
760
760
  margin-top: 2rem;
761
761
  }
@@ -765,6 +765,48 @@ video {
765
765
  .tw-box-content {
766
766
  box-sizing: content-box;
767
767
  }
768
+ .tw-line-clamp-1 {
769
+ overflow: hidden;
770
+ display: -webkit-box;
771
+ -webkit-box-orient: vertical;
772
+ -webkit-line-clamp: 1;
773
+ }
774
+ .tw-line-clamp-2 {
775
+ overflow: hidden;
776
+ display: -webkit-box;
777
+ -webkit-box-orient: vertical;
778
+ -webkit-line-clamp: 2;
779
+ }
780
+ .tw-line-clamp-3 {
781
+ overflow: hidden;
782
+ display: -webkit-box;
783
+ -webkit-box-orient: vertical;
784
+ -webkit-line-clamp: 3;
785
+ }
786
+ .tw-line-clamp-4 {
787
+ overflow: hidden;
788
+ display: -webkit-box;
789
+ -webkit-box-orient: vertical;
790
+ -webkit-line-clamp: 4;
791
+ }
792
+ .tw-line-clamp-5 {
793
+ overflow: hidden;
794
+ display: -webkit-box;
795
+ -webkit-box-orient: vertical;
796
+ -webkit-line-clamp: 5;
797
+ }
798
+ .tw-line-clamp-6 {
799
+ overflow: hidden;
800
+ display: -webkit-box;
801
+ -webkit-box-orient: vertical;
802
+ -webkit-line-clamp: 6;
803
+ }
804
+ .tw-line-clamp-none {
805
+ overflow: visible;
806
+ display: block;
807
+ -webkit-box-orient: horizontal;
808
+ -webkit-line-clamp: none;
809
+ }
768
810
  .tw-block {
769
811
  display: block;
770
812
  }
@@ -929,6 +971,9 @@ video {
929
971
  .tw-flex-none {
930
972
  flex: none;
931
973
  }
974
+ .tw-flex-shrink-0 {
975
+ flex-shrink: 0;
976
+ }
932
977
  .tw-grow {
933
978
  flex-grow: 1;
934
979
  }
@@ -1144,6 +1189,9 @@ video {
1144
1189
  text-overflow: ellipsis;
1145
1190
  white-space: nowrap;
1146
1191
  }
1192
+ .tw-text-ellipsis {
1193
+ text-overflow: ellipsis;
1194
+ }
1147
1195
  .tw-whitespace-nowrap {
1148
1196
  white-space: nowrap;
1149
1197
  }
@@ -1606,6 +1654,9 @@ video {
1606
1654
  .tw-p-4 {
1607
1655
  padding: 1rem;
1608
1656
  }
1657
+ .tw-p-5 {
1658
+ padding: 1.25rem;
1659
+ }
1609
1660
  .tw-p-6 {
1610
1661
  padding: 1.5rem;
1611
1662
  }
@@ -2089,6 +2140,10 @@ video {
2089
2140
  --tw-text-opacity: 1;
2090
2141
  color: rgb(79 89 92 / var(--tw-text-opacity));
2091
2142
  }
2143
+ .hover\:tw-text-primary-600:hover {
2144
+ --tw-text-opacity: 1;
2145
+ color: rgb(89 138 38 / var(--tw-text-opacity));
2146
+ }
2092
2147
  .hover\:tw-text-secondary-500:hover {
2093
2148
  --tw-text-opacity: 1;
2094
2149
  color: rgb(72 72 72 / var(--tw-text-opacity));
@@ -2176,6 +2231,10 @@ video {
2176
2231
  margin-bottom: 1rem;
2177
2232
  }
2178
2233
 
2234
+ .sm\:tw-ml-2 {
2235
+ margin-left: 0.5rem;
2236
+ }
2237
+
2179
2238
  .sm\:tw-ml-4 {
2180
2239
  margin-left: 1rem;
2181
2240
  }
@@ -2224,6 +2283,10 @@ video {
2224
2283
  flex-direction: row;
2225
2284
  }
2226
2285
 
2286
+ .sm\:tw-items-center {
2287
+ align-items: center;
2288
+ }
2289
+
2227
2290
  .sm\:tw-rounded-md {
2228
2291
  border-radius: 0.375rem;
2229
2292
  }
@@ -2390,6 +2453,11 @@ video {
2390
2453
  padding: 2rem;
2391
2454
  }
2392
2455
 
2456
+ .md\:tw-px-12 {
2457
+ padding-left: 3rem;
2458
+ padding-right: 3rem;
2459
+ }
2460
+
2393
2461
  .md\:tw-px-4 {
2394
2462
  padding-left: 1rem;
2395
2463
  padding-right: 1rem;
@@ -684,6 +684,9 @@ video {
684
684
  .tw-mb-0 {
685
685
  margin-bottom: 0px;
686
686
  }
687
+ .tw-mb-0\.5 {
688
+ margin-bottom: 0.125rem;
689
+ }
687
690
  .tw-mb-1 {
688
691
  margin-bottom: 0.25rem;
689
692
  }
@@ -717,9 +720,6 @@ video {
717
720
  .tw-ml-4 {
718
721
  margin-left: 1rem;
719
722
  }
720
- .tw-ml-6 {
721
- margin-left: 1.5rem;
722
- }
723
723
  .tw-ml-auto {
724
724
  margin-left: auto;
725
725
  }
@@ -741,9 +741,6 @@ video {
741
741
  .tw-mt-0 {
742
742
  margin-top: 0px;
743
743
  }
744
- .tw-mt-0\.5 {
745
- margin-top: 0.125rem;
746
- }
747
744
  .tw-mt-1 {
748
745
  margin-top: 0.25rem;
749
746
  }
@@ -756,6 +753,9 @@ video {
756
753
  .tw-mt-4 {
757
754
  margin-top: 1rem;
758
755
  }
756
+ .tw-mt-6 {
757
+ margin-top: 1.5rem;
758
+ }
759
759
  .tw-mt-8 {
760
760
  margin-top: 2rem;
761
761
  }
@@ -765,6 +765,48 @@ video {
765
765
  .tw-box-content {
766
766
  box-sizing: content-box;
767
767
  }
768
+ .tw-line-clamp-1 {
769
+ overflow: hidden;
770
+ display: -webkit-box;
771
+ -webkit-box-orient: vertical;
772
+ -webkit-line-clamp: 1;
773
+ }
774
+ .tw-line-clamp-2 {
775
+ overflow: hidden;
776
+ display: -webkit-box;
777
+ -webkit-box-orient: vertical;
778
+ -webkit-line-clamp: 2;
779
+ }
780
+ .tw-line-clamp-3 {
781
+ overflow: hidden;
782
+ display: -webkit-box;
783
+ -webkit-box-orient: vertical;
784
+ -webkit-line-clamp: 3;
785
+ }
786
+ .tw-line-clamp-4 {
787
+ overflow: hidden;
788
+ display: -webkit-box;
789
+ -webkit-box-orient: vertical;
790
+ -webkit-line-clamp: 4;
791
+ }
792
+ .tw-line-clamp-5 {
793
+ overflow: hidden;
794
+ display: -webkit-box;
795
+ -webkit-box-orient: vertical;
796
+ -webkit-line-clamp: 5;
797
+ }
798
+ .tw-line-clamp-6 {
799
+ overflow: hidden;
800
+ display: -webkit-box;
801
+ -webkit-box-orient: vertical;
802
+ -webkit-line-clamp: 6;
803
+ }
804
+ .tw-line-clamp-none {
805
+ overflow: visible;
806
+ display: block;
807
+ -webkit-box-orient: horizontal;
808
+ -webkit-line-clamp: none;
809
+ }
768
810
  .tw-block {
769
811
  display: block;
770
812
  }
@@ -929,6 +971,9 @@ video {
929
971
  .tw-flex-none {
930
972
  flex: none;
931
973
  }
974
+ .tw-flex-shrink-0 {
975
+ flex-shrink: 0;
976
+ }
932
977
  .tw-grow {
933
978
  flex-grow: 1;
934
979
  }
@@ -1144,6 +1189,9 @@ video {
1144
1189
  text-overflow: ellipsis;
1145
1190
  white-space: nowrap;
1146
1191
  }
1192
+ .tw-text-ellipsis {
1193
+ text-overflow: ellipsis;
1194
+ }
1147
1195
  .tw-whitespace-nowrap {
1148
1196
  white-space: nowrap;
1149
1197
  }
@@ -1606,6 +1654,9 @@ video {
1606
1654
  .tw-p-4 {
1607
1655
  padding: 1rem;
1608
1656
  }
1657
+ .tw-p-5 {
1658
+ padding: 1.25rem;
1659
+ }
1609
1660
  .tw-p-6 {
1610
1661
  padding: 1.5rem;
1611
1662
  }
@@ -2089,6 +2140,10 @@ video {
2089
2140
  --tw-text-opacity: 1;
2090
2141
  color: rgb(23 23 23 / var(--tw-text-opacity));
2091
2142
  }
2143
+ .hover\:tw-text-primary-600:hover {
2144
+ --tw-text-opacity: 1;
2145
+ color: rgb(50 71 197 / var(--tw-text-opacity));
2146
+ }
2092
2147
  .hover\:tw-text-secondary-500:hover {
2093
2148
  --tw-text-opacity: 1;
2094
2149
  color: rgb(61 61 61 / var(--tw-text-opacity));
@@ -2176,6 +2231,10 @@ video {
2176
2231
  margin-bottom: 1rem;
2177
2232
  }
2178
2233
 
2234
+ .sm\:tw-ml-2 {
2235
+ margin-left: 0.5rem;
2236
+ }
2237
+
2179
2238
  .sm\:tw-ml-4 {
2180
2239
  margin-left: 1rem;
2181
2240
  }
@@ -2224,6 +2283,10 @@ video {
2224
2283
  flex-direction: row;
2225
2284
  }
2226
2285
 
2286
+ .sm\:tw-items-center {
2287
+ align-items: center;
2288
+ }
2289
+
2227
2290
  .sm\:tw-rounded-md {
2228
2291
  border-radius: 0.375rem;
2229
2292
  }
@@ -2390,6 +2453,11 @@ video {
2390
2453
  padding: 2rem;
2391
2454
  }
2392
2455
 
2456
+ .md\:tw-px-12 {
2457
+ padding-left: 3rem;
2458
+ padding-right: 3rem;
2459
+ }
2460
+
2393
2461
  .md\:tw-px-4 {
2394
2462
  padding-left: 1rem;
2395
2463
  padding-right: 1rem;
@@ -684,6 +684,9 @@ video {
684
684
  .tw-mb-0 {
685
685
  margin-bottom: 0px;
686
686
  }
687
+ .tw-mb-0\.5 {
688
+ margin-bottom: 0.125rem;
689
+ }
687
690
  .tw-mb-1 {
688
691
  margin-bottom: 0.25rem;
689
692
  }
@@ -717,9 +720,6 @@ video {
717
720
  .tw-ml-4 {
718
721
  margin-left: 1rem;
719
722
  }
720
- .tw-ml-6 {
721
- margin-left: 1.5rem;
722
- }
723
723
  .tw-ml-auto {
724
724
  margin-left: auto;
725
725
  }
@@ -741,9 +741,6 @@ video {
741
741
  .tw-mt-0 {
742
742
  margin-top: 0px;
743
743
  }
744
- .tw-mt-0\.5 {
745
- margin-top: 0.125rem;
746
- }
747
744
  .tw-mt-1 {
748
745
  margin-top: 0.25rem;
749
746
  }
@@ -756,6 +753,9 @@ video {
756
753
  .tw-mt-4 {
757
754
  margin-top: 1rem;
758
755
  }
756
+ .tw-mt-6 {
757
+ margin-top: 1.5rem;
758
+ }
759
759
  .tw-mt-8 {
760
760
  margin-top: 2rem;
761
761
  }
@@ -765,6 +765,48 @@ video {
765
765
  .tw-box-content {
766
766
  box-sizing: content-box;
767
767
  }
768
+ .tw-line-clamp-1 {
769
+ overflow: hidden;
770
+ display: -webkit-box;
771
+ -webkit-box-orient: vertical;
772
+ -webkit-line-clamp: 1;
773
+ }
774
+ .tw-line-clamp-2 {
775
+ overflow: hidden;
776
+ display: -webkit-box;
777
+ -webkit-box-orient: vertical;
778
+ -webkit-line-clamp: 2;
779
+ }
780
+ .tw-line-clamp-3 {
781
+ overflow: hidden;
782
+ display: -webkit-box;
783
+ -webkit-box-orient: vertical;
784
+ -webkit-line-clamp: 3;
785
+ }
786
+ .tw-line-clamp-4 {
787
+ overflow: hidden;
788
+ display: -webkit-box;
789
+ -webkit-box-orient: vertical;
790
+ -webkit-line-clamp: 4;
791
+ }
792
+ .tw-line-clamp-5 {
793
+ overflow: hidden;
794
+ display: -webkit-box;
795
+ -webkit-box-orient: vertical;
796
+ -webkit-line-clamp: 5;
797
+ }
798
+ .tw-line-clamp-6 {
799
+ overflow: hidden;
800
+ display: -webkit-box;
801
+ -webkit-box-orient: vertical;
802
+ -webkit-line-clamp: 6;
803
+ }
804
+ .tw-line-clamp-none {
805
+ overflow: visible;
806
+ display: block;
807
+ -webkit-box-orient: horizontal;
808
+ -webkit-line-clamp: none;
809
+ }
768
810
  .tw-block {
769
811
  display: block;
770
812
  }
@@ -929,6 +971,9 @@ video {
929
971
  .tw-flex-none {
930
972
  flex: none;
931
973
  }
974
+ .tw-flex-shrink-0 {
975
+ flex-shrink: 0;
976
+ }
932
977
  .tw-grow {
933
978
  flex-grow: 1;
934
979
  }
@@ -1144,6 +1189,9 @@ video {
1144
1189
  text-overflow: ellipsis;
1145
1190
  white-space: nowrap;
1146
1191
  }
1192
+ .tw-text-ellipsis {
1193
+ text-overflow: ellipsis;
1194
+ }
1147
1195
  .tw-whitespace-nowrap {
1148
1196
  white-space: nowrap;
1149
1197
  }
@@ -1606,6 +1654,9 @@ video {
1606
1654
  .tw-p-4 {
1607
1655
  padding: 1rem;
1608
1656
  }
1657
+ .tw-p-5 {
1658
+ padding: 1.25rem;
1659
+ }
1609
1660
  .tw-p-6 {
1610
1661
  padding: 1.5rem;
1611
1662
  }
@@ -2089,6 +2140,10 @@ video {
2089
2140
  --tw-text-opacity: 1;
2090
2141
  color: rgb(39 52 56 / var(--tw-text-opacity));
2091
2142
  }
2143
+ .hover\:tw-text-primary-600:hover {
2144
+ --tw-text-opacity: 1;
2145
+ color: rgb(14 121 188 / var(--tw-text-opacity));
2146
+ }
2092
2147
  .hover\:tw-text-secondary-500:hover {
2093
2148
  --tw-text-opacity: 1;
2094
2149
  color: rgb(93 109 129 / var(--tw-text-opacity));
@@ -2176,6 +2231,10 @@ video {
2176
2231
  margin-bottom: 1rem;
2177
2232
  }
2178
2233
 
2234
+ .sm\:tw-ml-2 {
2235
+ margin-left: 0.5rem;
2236
+ }
2237
+
2179
2238
  .sm\:tw-ml-4 {
2180
2239
  margin-left: 1rem;
2181
2240
  }
@@ -2224,6 +2283,10 @@ video {
2224
2283
  flex-direction: row;
2225
2284
  }
2226
2285
 
2286
+ .sm\:tw-items-center {
2287
+ align-items: center;
2288
+ }
2289
+
2227
2290
  .sm\:tw-rounded-md {
2228
2291
  border-radius: 0.375rem;
2229
2292
  }
@@ -2390,6 +2453,11 @@ video {
2390
2453
  padding: 2rem;
2391
2454
  }
2392
2455
 
2456
+ .md\:tw-px-12 {
2457
+ padding-left: 3rem;
2458
+ padding-right: 3rem;
2459
+ }
2460
+
2393
2461
  .md\:tw-px-4 {
2394
2462
  padding-left: 1rem;
2395
2463
  padding-right: 1rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.5.9-dbc-2",
3
+ "version": "1.5.9-kp-2",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -406,8 +406,6 @@ import IconClipboardCheck from './icons/clipboard-check.vue';
406
406
  import IconBadge from './icons/badge.vue';
407
407
  import IconCalculator from './icons/calculator.vue';
408
408
 
409
- import IconGroup from './icons/group.vue';
410
-
411
409
  export default {
412
410
  components: {
413
411
  IconFile,
@@ -690,8 +688,6 @@ export default {
690
688
  IconBan,
691
689
  IconShape,
692
690
 
693
- IconGroup,
694
-
695
691
  // Maker icons
696
692
  IconMakerAnimate,
697
693
  IconMakerCustomLandscape,
@@ -32,7 +32,9 @@
32
32
  "hasAlreadyPurchasedDomainCloseButtonLabel": "Nein, danke, vielleicht später",
33
33
  "selectDomainDropdownPlaceholder": "Domain auswählen",
34
34
  "websiteFriendlyName": "Website",
35
- "digitalBusinessCardFriendlyName": "Digitale Visitenkarte"
35
+ "digitalBusinessCardFriendlyName": "Digitale Visitenkarte",
36
+ "alreadyHaveADomainLabel": "Already have a domain?",
37
+ "useExistingDomainLabel": "Use existing domain"
36
38
  },
37
39
  "sellDomainNameList": {
38
40
  "freeDomainButtonLabel": "Kostenlose Domain",
@@ -32,7 +32,9 @@
32
32
  "hasAlreadyPurchasedDomainCloseButtonLabel": "No gracias, quizás más tarde",
33
33
  "selectDomainDropdownPlaceholder": "Selecciona un nombre de dominio",
34
34
  "websiteFriendlyName": "Sitio web",
35
- "digitalBusinessCardFriendlyName": "Tarjeta de visita digital"
35
+ "digitalBusinessCardFriendlyName": "Tarjeta de visita digital",
36
+ "alreadyHaveADomainLabel": "Already have a domain?",
37
+ "useExistingDomainLabel": "Use existing domain"
36
38
  },
37
39
  "sellDomainNameList": {
38
40
  "freeDomainButtonLabel": "Dominio gratis",
@@ -32,7 +32,9 @@
32
32
  "hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard",
33
33
  "selectDomainDropdownPlaceholder": "Sélectionner un nom de domaine",
34
34
  "websiteFriendlyName": "Site Web",
35
- "digitalBusinessCardFriendlyName": "Carte professionnelle numérique"
35
+ "digitalBusinessCardFriendlyName": "Carte professionnelle numérique",
36
+ "alreadyHaveADomainLabel": "Already have a domain?",
37
+ "useExistingDomainLabel": "Use existing domain"
36
38
  },
37
39
  "sellDomainNameList": {
38
40
  "freeDomainButtonLabel": "Domaine gratuit",
@@ -32,7 +32,9 @@
32
32
  "hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard",
33
33
  "selectDomainDropdownPlaceholder": "Sélectionner un nom de domaine",
34
34
  "websiteFriendlyName": "Site Web",
35
- "digitalBusinessCardFriendlyName": "Carte de visite numérique"
35
+ "digitalBusinessCardFriendlyName": "Carte de visite numérique",
36
+ "alreadyHaveADomainLabel": "Already have a domain?",
37
+ "useExistingDomainLabel": "Use existing domain"
36
38
  },
37
39
  "sellDomainNameList": {
38
40
  "freeDomainButtonLabel": "Domaine gratuit",
@@ -32,7 +32,9 @@
32
32
  "hasAlreadyPurchasedDomainCloseButtonLabel": "No thanks, maybe later",
33
33
  "selectDomainDropdownPlaceholder": "Select domain name",
34
34
  "websiteFriendlyName": "Website",
35
- "digitalBusinessCardFriendlyName": "Digital Business Card"
35
+ "digitalBusinessCardFriendlyName": "Digital Business Card",
36
+ "alreadyHaveADomainLabel": "Already have a domain?",
37
+ "useExistingDomainLabel": "Use existing domain"
36
38
  },
37
39
  "sellDomainNameList": {
38
40
  "freeDomainButtonLabel": "Free Domain",
@@ -32,7 +32,9 @@
32
32
  "hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado. Talvez depois",
33
33
  "selectDomainDropdownPlaceholder": "Selecionar nome de domínio",
34
34
  "websiteFriendlyName": "Site",
35
- "digitalBusinessCardFriendlyName": "Cartão de visita digital"
35
+ "digitalBusinessCardFriendlyName": "Cartão de visita digital",
36
+ "alreadyHaveADomainLabel": "Already have a domain?",
37
+ "useExistingDomainLabel": "Use existing domain"
36
38
  },
37
39
  "sellDomainNameList": {
38
40
  "freeDomainButtonLabel": "Domínio gratuito",
@@ -32,7 +32,9 @@
32
32
  "hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado, talvez mais tarde",
33
33
  "selectDomainDropdownPlaceholder": "Selecionar nome de domínio",
34
34
  "websiteFriendlyName": "Website",
35
- "digitalBusinessCardFriendlyName": "Cartão de visita digital"
35
+ "digitalBusinessCardFriendlyName": "Cartão de visita digital",
36
+ "alreadyHaveADomainLabel": "Already have a domain?",
37
+ "useExistingDomainLabel": "Use existing domain"
36
38
  },
37
39
  "sellDomainNameList": {
38
40
  "freeDomainButtonLabel": "Domínio gratuito",
@@ -42,6 +42,7 @@
42
42
  :brand-page-type="brandPageType"
43
43
  @on-slug-changed="onSlugChanged"
44
44
  @internal-publish-brand-page="onInternalPublishBrandPage"
45
+ @use-existing-domain="onUseExistingDomain"
45
46
  >
46
47
  <template #recommended>
47
48
  <slot name="recommended" />
@@ -287,6 +288,7 @@ export default {
287
288
  'on-view-more-domains',
288
289
  'on-slug-changed',
289
290
  'on-show-domain-modal',
291
+ 'use-existing-domain',
290
292
  ],
291
293
  setup() {
292
294
  return {
@@ -387,6 +389,9 @@ export default {
387
389
  onSlugChanged(e) {
388
390
  this.$emit('on-slug-changed', e);
389
391
  },
392
+ onUseExistingDomain() {
393
+ this.$emit('use-existing-domain');
394
+ },
390
395
  onInternalPublishBrandPage(slug, customdomain) {
391
396
  this.$emit('internal-publish-brand-page', slug, customdomain);
392
397
  },
@@ -1,24 +1,26 @@
1
1
  {
2
- "publishBrandPageModal" : {
3
- "firstTimePublishHeaderLabel" : "Legen Sie die URL für {{brandPageDisplayName}} fest",
4
- "sitePublishedLabel" : "Seite veröffentlicht!",
5
- "publishSuccessLabel" : "Ihr {{brandPageDisplayName}} ist live! Beginnen Sie mit der Nutzung Ihres Links:",
6
- "freePublishCardTitleLabel" : "Freie Adresse",
7
- "freePublishCardDescriptionLabel" : "Wählen Sie jetzt eine kostenlose Adresse zur Veröffentlichung aus. Sie können die URL später jederzeit bearbeiten",
8
- "slugInputPlaceholderYourNameLabel" : "ihr-name",
9
- "slugInputPlaceholderYourBusinessNameLabel" : "ihr-firmen-name",
10
- "freeDomainLabel" : "Kostenlose Domain",
11
- "purchasedDomainLabel" : "Erworbene Domain",
12
- "setUrlLabel" : "URL festlegen",
13
- "publishLabel" : "Veröffentlichen",
14
- "viewMoreDomainLabel" : "WEITERE DOMAINS ANZEIGEN",
15
- "viewMyWebsiteLabel" : "{{brandPageDisplayName}} anzeigen",
16
- "copyLabel" : "Kopieren",
17
- "copySuccessLabel" : "Kopiert!",
18
- "publishedSuccessDescriptionLabel" : "Kaufen Sie eine passende Domain für Ihre Marke",
19
- "hasAlreadyPurchasedDomainCloseButtonLabel" : "Nein, danke, vielleicht später",
20
- "selectDomainDropdownPlaceholder" : "Domain auswählen",
21
- "websiteFriendlyName" : "Website",
22
- "digitalBusinessCardFriendlyName" : "Digitale Visitenkarte"
2
+ "publishBrandPageModal": {
3
+ "firstTimePublishHeaderLabel": "Legen Sie die URL für {{brandPageDisplayName}} fest",
4
+ "sitePublishedLabel": "Seite veröffentlicht!",
5
+ "publishSuccessLabel": "Ihr {{brandPageDisplayName}} ist live! Beginnen Sie mit der Nutzung Ihres Links:",
6
+ "freePublishCardTitleLabel": "Freie Adresse",
7
+ "freePublishCardDescriptionLabel": "Wählen Sie jetzt eine kostenlose Adresse zur Veröffentlichung aus. Sie können die URL später jederzeit bearbeiten",
8
+ "slugInputPlaceholderYourNameLabel": "ihr-name",
9
+ "slugInputPlaceholderYourBusinessNameLabel": "ihr-firmen-name",
10
+ "freeDomainLabel": "Kostenlose Domain",
11
+ "purchasedDomainLabel": "Erworbene Domain",
12
+ "setUrlLabel": "URL festlegen",
13
+ "publishLabel": "Veröffentlichen",
14
+ "viewMoreDomainLabel": "WEITERE DOMAINS ANZEIGEN",
15
+ "viewMyWebsiteLabel": "{{brandPageDisplayName}} anzeigen",
16
+ "copyLabel": "Kopieren",
17
+ "copySuccessLabel": "Kopiert!",
18
+ "publishedSuccessDescriptionLabel": "Kaufen Sie eine passende Domain für Ihre Marke",
19
+ "hasAlreadyPurchasedDomainCloseButtonLabel": "Nein, danke, vielleicht später",
20
+ "selectDomainDropdownPlaceholder": "Domain auswählen",
21
+ "websiteFriendlyName": "Website",
22
+ "digitalBusinessCardFriendlyName": "Digitale Visitenkarte",
23
+ "alreadyHaveADomainLabel": "Already have a domain?",
24
+ "useExistingDomainLabel": "Use existing domain"
23
25
  }
24
26
  }
@@ -1,24 +1,26 @@
1
1
  {
2
- "publishBrandPageModal" : {
3
- "firstTimePublishHeaderLabel" : "Establece la URL para {{brandPageDisplayName}}",
4
- "sitePublishedLabel" : "¡Sitio publicado!",
5
- "publishSuccessLabel" : "¡Tu {{brandPageDisplayName}} está activo! Comienza a usar tu enlace:",
6
- "freePublishCardTitleLabel" : "Dirección gratuita",
7
- "freePublishCardDescriptionLabel" : "Elige una dirección gratuita para publicar ahora. Siempre puedes editar la URL más tarde",
8
- "slugInputPlaceholderYourNameLabel" : "tu-nombre",
9
- "slugInputPlaceholderYourBusinessNameLabel" : "nombre-de-tu-negocio",
10
- "freeDomainLabel" : "Dominio gratis",
11
- "purchasedDomainLabel" : "Dominio adquirido",
12
- "setUrlLabel" : "Establece URL",
13
- "publishLabel" : "Publicar",
14
- "viewMoreDomainLabel" : "VER MÁS DOMINIOS",
15
- "viewMyWebsiteLabel" : "Ver {{brandPageDisplayName}}",
16
- "copyLabel" : "Copiar",
17
- "copySuccessLabel" : "¡Copiado!",
18
- "publishedSuccessDescriptionLabel" : "Compra un nombre de dominio que coincida con tu marca",
19
- "hasAlreadyPurchasedDomainCloseButtonLabel" : "No gracias, quizás más tarde",
20
- "selectDomainDropdownPlaceholder" : "Selecciona un nombre de dominio",
21
- "websiteFriendlyName" : "Sitio web",
22
- "digitalBusinessCardFriendlyName" : "Tarjeta de visita digital"
2
+ "publishBrandPageModal": {
3
+ "firstTimePublishHeaderLabel": "Establece la URL para {{brandPageDisplayName}}",
4
+ "sitePublishedLabel": "¡Sitio publicado!",
5
+ "publishSuccessLabel": "¡Tu {{brandPageDisplayName}} está activo! Comienza a usar tu enlace:",
6
+ "freePublishCardTitleLabel": "Dirección gratuita",
7
+ "freePublishCardDescriptionLabel": "Elige una dirección gratuita para publicar ahora. Siempre puedes editar la URL más tarde",
8
+ "slugInputPlaceholderYourNameLabel": "tu-nombre",
9
+ "slugInputPlaceholderYourBusinessNameLabel": "nombre-de-tu-negocio",
10
+ "freeDomainLabel": "Dominio gratis",
11
+ "purchasedDomainLabel": "Dominio adquirido",
12
+ "setUrlLabel": "Establece URL",
13
+ "publishLabel": "Publicar",
14
+ "viewMoreDomainLabel": "VER MÁS DOMINIOS",
15
+ "viewMyWebsiteLabel": "Ver {{brandPageDisplayName}}",
16
+ "copyLabel": "Copiar",
17
+ "copySuccessLabel": "¡Copiado!",
18
+ "publishedSuccessDescriptionLabel": "Compra un nombre de dominio que coincida con tu marca",
19
+ "hasAlreadyPurchasedDomainCloseButtonLabel": "No gracias, quizás más tarde",
20
+ "selectDomainDropdownPlaceholder": "Selecciona un nombre de dominio",
21
+ "websiteFriendlyName": "Sitio web",
22
+ "digitalBusinessCardFriendlyName": "Tarjeta de visita digital",
23
+ "alreadyHaveADomainLabel": "Already have a domain?",
24
+ "useExistingDomainLabel": "Use existing domain"
23
25
  }
24
26
  }
@@ -1,24 +1,26 @@
1
1
  {
2
- "publishBrandPageModal" : {
3
- "firstTimePublishHeaderLabel" : "Définissez l'URL pour {{brandPageDisplayName}}",
4
- "sitePublishedLabel" : "Site publié !",
5
- "publishSuccessLabel" : "Votre {{brandPageDisplayName}} est en ligne ! Commencez à utiliser votre lien :",
6
- "freePublishCardTitleLabel" : "Adresse libre",
7
- "freePublishCardDescriptionLabel" : "Choisissez une adresse gratuite pour publier maintenant. Vous pouvez toujours modifier l'URL plus tard",
8
- "slugInputPlaceholderYourNameLabel" : "your-name",
9
- "slugInputPlaceholderYourBusinessNameLabel" : "nom-de-votre-entreprise",
10
- "freeDomainLabel" : "Domaine gratuit",
11
- "purchasedDomainLabel" : "Domaine acheté",
12
- "setUrlLabel" : "Définir l'URL",
13
- "publishLabel" : "Publier",
14
- "viewMoreDomainLabel" : "VOIR PLUS DE NOMS DE DOMAINE",
15
- "viewMyWebsiteLabel" : "Voir {{brandPageDisplayName}}",
16
- "copyLabel" : "Copier",
17
- "copySuccessLabel" : "Copié !",
18
- "publishedSuccessDescriptionLabel" : "Achetez un nom de domaine correspondant à votre marque",
19
- "hasAlreadyPurchasedDomainCloseButtonLabel" : "Non merci, peut-être plus tard",
20
- "selectDomainDropdownPlaceholder" : "Sélectionner un nom de domaine",
21
- "websiteFriendlyName" : "Site Web",
22
- "digitalBusinessCardFriendlyName" : "Carte professionnelle numérique"
2
+ "publishBrandPageModal": {
3
+ "firstTimePublishHeaderLabel": "Définissez l'URL pour {{brandPageDisplayName}}",
4
+ "sitePublishedLabel": "Site publié !",
5
+ "publishSuccessLabel": "Votre {{brandPageDisplayName}} est en ligne ! Commencez à utiliser votre lien :",
6
+ "freePublishCardTitleLabel": "Adresse libre",
7
+ "freePublishCardDescriptionLabel": "Choisissez une adresse gratuite pour publier maintenant. Vous pouvez toujours modifier l'URL plus tard",
8
+ "slugInputPlaceholderYourNameLabel": "your-name",
9
+ "slugInputPlaceholderYourBusinessNameLabel": "nom-de-votre-entreprise",
10
+ "freeDomainLabel": "Domaine gratuit",
11
+ "purchasedDomainLabel": "Domaine acheté",
12
+ "setUrlLabel": "Définir l'URL",
13
+ "publishLabel": "Publier",
14
+ "viewMoreDomainLabel": "VOIR PLUS DE NOMS DE DOMAINE",
15
+ "viewMyWebsiteLabel": "Voir {{brandPageDisplayName}}",
16
+ "copyLabel": "Copier",
17
+ "copySuccessLabel": "Copié !",
18
+ "publishedSuccessDescriptionLabel": "Achetez un nom de domaine correspondant à votre marque",
19
+ "hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard",
20
+ "selectDomainDropdownPlaceholder": "Sélectionner un nom de domaine",
21
+ "websiteFriendlyName": "Site Web",
22
+ "digitalBusinessCardFriendlyName": "Carte professionnelle numérique",
23
+ "alreadyHaveADomainLabel": "Already have a domain?",
24
+ "useExistingDomainLabel": "Use existing domain"
23
25
  }
24
26
  }
@@ -1,24 +1,26 @@
1
1
  {
2
- "publishBrandPageModal" : {
3
- "firstTimePublishHeaderLabel" : "Définissez l'URL pour {{brandPageDisplayName}}",
4
- "sitePublishedLabel" : "Site publié !",
5
- "publishSuccessLabel" : "Votre {{brandPageDisplayName}} est en ligne ! Commencez à utiliser votre lien :",
6
- "freePublishCardTitleLabel" : "Adresse libre",
7
- "freePublishCardDescriptionLabel" : "Choisissez une adresse gratuite pour publier maintenant. Vous pouvez toujours modifier l'URL plus tard",
8
- "slugInputPlaceholderYourNameLabel" : "your-name",
9
- "slugInputPlaceholderYourBusinessNameLabel" : "nom-de-votre-entreprise",
10
- "freeDomainLabel" : "Domaine gratuit",
11
- "purchasedDomainLabel" : "Domaine acheté",
12
- "setUrlLabel" : "Définir l'URL",
13
- "publishLabel" : "Publier",
14
- "viewMoreDomainLabel" : "VOIR PLUS DE NOMS DE DOMAINE",
15
- "viewMyWebsiteLabel" : "Voir {{brandPageDisplayName}}",
16
- "copyLabel" : "Copier",
17
- "copySuccessLabel" : "Copié !",
18
- "publishedSuccessDescriptionLabel" : "Achetez un nom de domaine correspondant à votre marque",
19
- "hasAlreadyPurchasedDomainCloseButtonLabel" : "Non merci, peut-être plus tard",
20
- "selectDomainDropdownPlaceholder" : "Sélectionner un nom de domaine",
21
- "websiteFriendlyName" : "Site Web",
22
- "digitalBusinessCardFriendlyName" : "Carte de visite numérique"
2
+ "publishBrandPageModal": {
3
+ "firstTimePublishHeaderLabel": "Définissez l'URL pour {{brandPageDisplayName}}",
4
+ "sitePublishedLabel": "Site publié !",
5
+ "publishSuccessLabel": "Votre {{brandPageDisplayName}} est en ligne ! Commencez à utiliser votre lien :",
6
+ "freePublishCardTitleLabel": "Adresse libre",
7
+ "freePublishCardDescriptionLabel": "Choisissez une adresse gratuite pour publier maintenant. Vous pouvez toujours modifier l'URL plus tard",
8
+ "slugInputPlaceholderYourNameLabel": "your-name",
9
+ "slugInputPlaceholderYourBusinessNameLabel": "nom-de-votre-entreprise",
10
+ "freeDomainLabel": "Domaine gratuit",
11
+ "purchasedDomainLabel": "Domaine acheté",
12
+ "setUrlLabel": "Définir l'URL",
13
+ "publishLabel": "Publier",
14
+ "viewMoreDomainLabel": "VOIR PLUS DE NOMS DE DOMAINE",
15
+ "viewMyWebsiteLabel": "Voir {{brandPageDisplayName}}",
16
+ "copyLabel": "Copier",
17
+ "copySuccessLabel": "Copié !",
18
+ "publishedSuccessDescriptionLabel": "Achetez un nom de domaine correspondant à votre marque",
19
+ "hasAlreadyPurchasedDomainCloseButtonLabel": "Non merci, peut-être plus tard",
20
+ "selectDomainDropdownPlaceholder": "Sélectionner un nom de domaine",
21
+ "websiteFriendlyName": "Site Web",
22
+ "digitalBusinessCardFriendlyName": "Carte de visite numérique",
23
+ "alreadyHaveADomainLabel": "Already have a domain?",
24
+ "useExistingDomainLabel": "Use existing domain"
23
25
  }
24
26
  }
@@ -19,6 +19,8 @@
19
19
  "hasAlreadyPurchasedDomainCloseButtonLabel": "No thanks, maybe later",
20
20
  "selectDomainDropdownPlaceholder": "Select domain name",
21
21
  "websiteFriendlyName": "Website",
22
- "digitalBusinessCardFriendlyName": "Digital Business Card"
22
+ "digitalBusinessCardFriendlyName": "Digital Business Card",
23
+ "alreadyHaveADomainLabel": "Already have a domain?",
24
+ "useExistingDomainLabel": "Use existing domain"
23
25
  }
24
26
  }
@@ -1,24 +1,26 @@
1
1
  {
2
- "publishBrandPageModal" : {
3
- "firstTimePublishHeaderLabel" : "Defina o URL para {{brandPageDisplayName}}",
4
- "sitePublishedLabel" : "Site publicado!",
5
- "publishSuccessLabel" : "Seu {{brandPageDisplayName}} está ativo! Comece a usar seu link:",
6
- "freePublishCardTitleLabel" : "Endereço gratuito",
7
- "freePublishCardDescriptionLabel" : "Escolha um endereço gratuito para publicar agora. Você pode editar o URL depois",
8
- "slugInputPlaceholderYourNameLabel" : "Seu nome",
9
- "slugInputPlaceholderYourBusinessNameLabel" : "nome-da-sua-empresa",
10
- "freeDomainLabel" : "Domínio gratuito",
11
- "purchasedDomainLabel" : "Domínio comprado",
12
- "setUrlLabel" : "Definir URL",
13
- "publishLabel" : "Publicar",
14
- "viewMoreDomainLabel" : "Ver mais domínios",
15
- "viewMyWebsiteLabel" : "Ver {{brandPageDisplayName}}",
16
- "copyLabel" : "Copiar",
17
- "copySuccessLabel" : "Copiado!",
18
- "publishedSuccessDescriptionLabel" : "Compre um nome de domínio que corresponda à sua marca",
19
- "hasAlreadyPurchasedDomainCloseButtonLabel" : "Não, obrigado. Talvez depois",
20
- "selectDomainDropdownPlaceholder" : "Selecionar nome de domínio",
21
- "websiteFriendlyName" : "Site",
22
- "digitalBusinessCardFriendlyName" : "Cartão de visita digital"
2
+ "publishBrandPageModal": {
3
+ "firstTimePublishHeaderLabel": "Defina o URL para {{brandPageDisplayName}}",
4
+ "sitePublishedLabel": "Site publicado!",
5
+ "publishSuccessLabel": "Seu {{brandPageDisplayName}} está ativo! Comece a usar seu link:",
6
+ "freePublishCardTitleLabel": "Endereço gratuito",
7
+ "freePublishCardDescriptionLabel": "Escolha um endereço gratuito para publicar agora. Você pode editar o URL depois",
8
+ "slugInputPlaceholderYourNameLabel": "Seu nome",
9
+ "slugInputPlaceholderYourBusinessNameLabel": "nome-da-sua-empresa",
10
+ "freeDomainLabel": "Domínio gratuito",
11
+ "purchasedDomainLabel": "Domínio comprado",
12
+ "setUrlLabel": "Definir URL",
13
+ "publishLabel": "Publicar",
14
+ "viewMoreDomainLabel": "Ver mais domínios",
15
+ "viewMyWebsiteLabel": "Ver {{brandPageDisplayName}}",
16
+ "copyLabel": "Copiar",
17
+ "copySuccessLabel": "Copiado!",
18
+ "publishedSuccessDescriptionLabel": "Compre um nome de domínio que corresponda à sua marca",
19
+ "hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado. Talvez depois",
20
+ "selectDomainDropdownPlaceholder": "Selecionar nome de domínio",
21
+ "websiteFriendlyName": "Site",
22
+ "digitalBusinessCardFriendlyName": "Cartão de visita digital",
23
+ "alreadyHaveADomainLabel": "Already have a domain?",
24
+ "useExistingDomainLabel": "Use existing domain"
23
25
  }
24
26
  }
@@ -1,24 +1,26 @@
1
1
  {
2
- "publishBrandPageModal" : {
3
- "firstTimePublishHeaderLabel" : "Defina o URL para {{brandPageDisplayName}}",
4
- "sitePublishedLabel" : "Site publicado!",
5
- "publishSuccessLabel" : "A sua página {{brandPageDisplayName}} está ativa! Comece a utilizar o link:",
6
- "freePublishCardTitleLabel" : "Endereço gratuito",
7
- "freePublishCardDescriptionLabel" : "Escolha um endereço gratuito para publicar agora. Pode sempre editar o URL mais tarde",
8
- "slugInputPlaceholderYourNameLabel" : "o-seu-nome",
9
- "slugInputPlaceholderYourBusinessNameLabel" : "nome-da-sua-empresa",
10
- "freeDomainLabel" : "Domínio gratuito",
11
- "purchasedDomainLabel" : "Domínio comprado",
12
- "setUrlLabel" : "Definir URL",
13
- "publishLabel" : "Publicar",
14
- "viewMoreDomainLabel" : "VER MAIS DOMÍNIOS",
15
- "viewMyWebsiteLabel" : "Ver {{brandPageDisplayName}}",
16
- "copyLabel" : "Copiar",
17
- "copySuccessLabel" : "Copiado!",
18
- "publishedSuccessDescriptionLabel" : "Compre um nome de domínio que corresponda à sua marca",
19
- "hasAlreadyPurchasedDomainCloseButtonLabel" : "Não, obrigado, talvez mais tarde",
20
- "selectDomainDropdownPlaceholder" : "Selecionar nome de domínio",
21
- "websiteFriendlyName" : "Website",
22
- "digitalBusinessCardFriendlyName" : "Cartão de visita digital"
2
+ "publishBrandPageModal": {
3
+ "firstTimePublishHeaderLabel": "Defina o URL para {{brandPageDisplayName}}",
4
+ "sitePublishedLabel": "Site publicado!",
5
+ "publishSuccessLabel": "A sua página {{brandPageDisplayName}} está ativa! Comece a utilizar o link:",
6
+ "freePublishCardTitleLabel": "Endereço gratuito",
7
+ "freePublishCardDescriptionLabel": "Escolha um endereço gratuito para publicar agora. Pode sempre editar o URL mais tarde",
8
+ "slugInputPlaceholderYourNameLabel": "o-seu-nome",
9
+ "slugInputPlaceholderYourBusinessNameLabel": "nome-da-sua-empresa",
10
+ "freeDomainLabel": "Domínio gratuito",
11
+ "purchasedDomainLabel": "Domínio comprado",
12
+ "setUrlLabel": "Definir URL",
13
+ "publishLabel": "Publicar",
14
+ "viewMoreDomainLabel": "VER MAIS DOMÍNIOS",
15
+ "viewMyWebsiteLabel": "Ver {{brandPageDisplayName}}",
16
+ "copyLabel": "Copiar",
17
+ "copySuccessLabel": "Copiado!",
18
+ "publishedSuccessDescriptionLabel": "Compre um nome de domínio que corresponda à sua marca",
19
+ "hasAlreadyPurchasedDomainCloseButtonLabel": "Não, obrigado, talvez mais tarde",
20
+ "selectDomainDropdownPlaceholder": "Selecionar nome de domínio",
21
+ "websiteFriendlyName": "Website",
22
+ "digitalBusinessCardFriendlyName": "Cartão de visita digital",
23
+ "alreadyHaveADomainLabel": "Already have a domain?",
24
+ "useExistingDomainLabel": "Use existing domain"
23
25
  }
24
26
  }
@@ -46,6 +46,17 @@
46
46
  <div class="tw-mt-4">
47
47
  <slot name="recommended" />
48
48
  </div>
49
+ <div class="tw-mt-4 tw-text-center">
50
+ <p>
51
+ {{ publishBrandPageModalTr.alreadyHaveADomainLabel }}
52
+ <a
53
+ href="#"
54
+ class="tw-text-primary-500 hover:tw-text-primary-600 tw-underline"
55
+ @click.prevent="onUseExistingDomain"
56
+ >{{ publishBrandPageModalTr.useExistingDomainLabel }}</a
57
+ >
58
+ </p>
59
+ </div>
49
60
  </div>
50
61
  </template>
51
62
  <script>
@@ -107,7 +118,7 @@ export default {
107
118
  default: '',
108
119
  },
109
120
  },
110
- emits: ['internal-publish-brand-page', 'on-slug-changed'],
121
+ emits: ['internal-publish-brand-page', 'on-slug-changed', 'use-existing-domain'],
111
122
  setup() {
112
123
  return {
113
124
  publishBrandPageModalTr,
@@ -163,6 +174,9 @@ export default {
163
174
  onPublish() {
164
175
  this.$emit('internal-publish-brand-page', this.internalSlug);
165
176
  },
177
+ onUseExistingDomain() {
178
+ this.$emit('use-existing-domain');
179
+ },
166
180
  },
167
181
  };
168
182
  </script>
@@ -1,6 +0,0 @@
1
- <template>
2
- <path
3
- d="M3.08437 3.86161C2.80729 4.14435 2.47917 4.28571 2.1 4.28571C1.72083 4.28571 1.39271 4.14435 1.11563 3.86161C0.838542 3.57887 0.7 3.24405 0.7 2.85714C0.7 2.47024 0.838542 2.13542 1.11563 1.85268C1.39271 1.56994 1.72083 1.42857 2.1 1.42857C2.47917 1.42857 2.80729 1.56994 3.08437 1.85268C3.36146 2.13542 3.5 2.47024 3.5 2.85714C3.5 3.24405 3.36146 3.57887 3.08437 3.86161ZM12.8844 3.86161C12.6073 4.14435 12.2792 4.28571 11.9 4.28571C11.5208 4.28571 11.1927 4.14435 10.9156 3.86161C10.6385 3.57887 10.5 3.24405 10.5 2.85714C10.5 2.47024 10.6385 2.13542 10.9156 1.85268C11.1927 1.56994 11.5208 1.42857 11.9 1.42857C12.2792 1.42857 12.6073 1.56994 12.8844 1.85268C13.1615 2.13542 13.3 2.47024 13.3 2.85714C13.3 3.24405 13.1615 3.57887 12.8844 3.86161ZM12.6 5C12.9792 5 13.3073 5.14137 13.5844 5.42411C13.8615 5.70685 14 6.04167 14 6.42857V7.14286C14 7.33631 13.9271 7.50744 13.7812 7.65625C13.65 7.79018 13.4896 7.85714 13.3 7.85714H11.8562C11.8125 7.51488 11.7177 7.1875 11.5719 6.875C11.426 6.5625 11.2365 6.2872 11.0031 6.04911C10.7698 5.79613 10.5073 5.5878 10.2156 5.42411C10.4927 5.14137 10.8208 5 11.2 5H12.6ZM8.72812 4.26339C8.24687 4.75446 7.67083 5 7 5C6.32917 5 5.75313 4.75446 5.27187 4.26339C4.79063 3.77232 4.55 3.18452 4.55 2.5C4.55 1.81548 4.79063 1.22768 5.27187 0.736607C5.75313 0.245536 6.32917 0 7 0C7.67083 0 8.24687 0.245536 8.72812 0.736607C9.20938 1.22768 9.45 1.81548 9.45 2.5C9.45 3.18452 9.20938 3.77232 8.72812 4.26339ZM8.68437 5.71429C9.38437 5.71429 9.975 5.96726 10.4563 6.47321C10.9521 6.96429 11.2 7.56696 11.2 8.28125V8.92857C11.2 9.22619 11.0979 9.47917 10.8938 9.6875C10.6896 9.89583 10.4417 10 10.15 10H3.85C3.55833 10 3.31042 9.89583 3.10625 9.6875C2.90208 9.47917 2.8 9.22619 2.8 8.92857V8.28125C2.8 7.56696 3.04063 6.96429 3.52187 6.47321C4.01771 5.96726 4.61562 5.71429 5.31563 5.71429H5.5125C5.99375 5.95238 6.48958 6.07143 7 6.07143C7.51042 6.07143 8.00625 5.95238 8.4875 5.71429H8.68437ZM3.78437 5.42411C3.34687 5.6622 2.98229 5.99702 2.69062 6.42857C2.39896 6.86012 2.21667 7.33631 2.14375 7.85714H0.7C0.510417 7.85714 0.342708 7.79018 0.196875 7.65625C0.065625 7.50744 0 7.33631 0 7.14286V6.42857C0 6.04167 0.138542 5.70685 0.415625 5.42411C0.692708 5.14137 1.02083 5 1.4 5H2.8C3.17917 5 3.50729 5.14137 3.78437 5.42411Z"
4
- fill="#3D3D3D"
5
- />
6
- </template>