@designcrowd/fe-shared-lib 1.5.9-kp-6 → 1.5.9-kp-4550-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.
Files changed (55) hide show
  1. package/.storybook-static/css/tailwind-brandCrowd.css +2472 -0
  2. package/.storybook-static/css/tailwind-brandPage.css +2156 -0
  3. package/.storybook-static/css/tailwind-crazyDomains.css +2472 -0
  4. package/.storybook-static/css/tailwind-designCom.css +2472 -0
  5. package/.storybook-static/css/tailwind-designCrowd.css +2472 -0
  6. package/.storybook-static/favicon.svg +1 -0
  7. package/.storybook-static/index.html +156 -0
  8. package/.storybook-static/index.json +1 -0
  9. package/.storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  10. package/.storybook-static/nunito-sans-bold.woff2 +0 -0
  11. package/.storybook-static/nunito-sans-italic.woff2 +0 -0
  12. package/.storybook-static/nunito-sans-regular.woff2 +0 -0
  13. package/.storybook-static/project.json +1 -0
  14. package/.storybook-static/sb-addons/a11y-1/manager-bundle.js +5 -0
  15. package/.storybook-static/sb-addons/links-2/manager-bundle.js +3 -0
  16. package/.storybook-static/sb-addons/storybook-core-server-presets-0/common-manager-bundle.js +188 -0
  17. package/.storybook-static/sb-addons/themes-3/manager-bundle.js +3 -0
  18. package/.storybook-static/sb-common-assets/favicon.svg +1 -0
  19. package/.storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  20. package/.storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  21. package/.storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  22. package/.storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  23. package/.storybook-static/sb-manager/globals-module-info.js +797 -0
  24. package/.storybook-static/sb-manager/globals-runtime.js +72062 -0
  25. package/.storybook-static/sb-manager/globals.js +34 -0
  26. package/.storybook-static/sb-manager/runtime.js +13002 -0
  27. package/package.json +3 -1
  28. package/public/css/tailwind-brandCrowd.css +0 -4
  29. package/public/css/tailwind-crazyDomains.css +0 -4
  30. package/public/css/tailwind-designCom.css +0 -4
  31. package/public/css/tailwind-designCrowd.css +0 -4
  32. package/src/atoms/components/Icon/Icon.stories.js +7 -0
  33. package/src/atoms/components/Icon/Icon.vue +12 -0
  34. package/src/atoms/components/Icon/icons/websites/upgrade-to-add-page.vue +50 -0
  35. package/src/atoms/components/Icon/icons/websites/upgrade-to-contact-form.vue +82 -0
  36. package/src/atoms/components/Icon/icons/websites/upgrade-to-maps.vue +40 -0
  37. package/src/atoms/components/Icon/icons/websites/upgrade-to-publish.vue +107 -0
  38. package/src/atoms/components/Icon/icons/websites/upgrade-to-remove-watermark.vue +74 -0
  39. package/src/atoms/components/Icon/icons/websites/upgrade-to-videos.vue +16 -0
  40. package/src/bundles/bundled-translations.de-DE.json +1 -3
  41. package/src/bundles/bundled-translations.es-ES.json +1 -3
  42. package/src/bundles/bundled-translations.fr-CA.json +1 -3
  43. package/src/bundles/bundled-translations.fr-FR.json +1 -3
  44. package/src/bundles/bundled-translations.json +1 -3
  45. package/src/bundles/bundled-translations.pt-BR.json +1 -3
  46. package/src/bundles/bundled-translations.pt-PT.json +1 -3
  47. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +0 -5
  48. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +21 -23
  49. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +21 -23
  50. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +21 -23
  51. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +21 -23
  52. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +1 -3
  53. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +21 -23
  54. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +21 -23
  55. package/src/experiences/components/PublishBrandPageModal/views/PublishWhenNoDomainsView.vue +1 -14
@@ -42,7 +42,6 @@
42
42
  :brand-page-type="brandPageType"
43
43
  @on-slug-changed="onSlugChanged"
44
44
  @internal-publish-brand-page="onInternalPublishBrandPage"
45
- @on-use-existing-domain="onUseExistingDomain"
46
45
  >
47
46
  <template #recommended>
48
47
  <slot name="recommended" />
@@ -288,7 +287,6 @@ export default {
288
287
  'on-view-more-domains',
289
288
  'on-slug-changed',
290
289
  'on-show-domain-modal',
291
- 'on-use-existing-domain',
292
290
  ],
293
291
  setup() {
294
292
  return {
@@ -389,9 +387,6 @@ export default {
389
387
  onSlugChanged(e) {
390
388
  this.$emit('on-slug-changed', e);
391
389
  },
392
- onUseExistingDomain() {
393
- this.$emit('on-use-existing-domain');
394
- },
395
390
  onInternalPublishBrandPage(slug, customdomain) {
396
391
  this.$emit('internal-publish-brand-page', slug, customdomain);
397
392
  },
@@ -1,26 +1,24 @@
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",
23
- "alreadyHaveADomainLabel": "Besitzen Sie bereits eine Domain?",
24
- "useExistingDomainLabel": "Vorhandene Domain verwenden"
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"
25
23
  }
26
24
  }
@@ -1,26 +1,24 @@
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",
23
- "alreadyHaveADomainLabel": "¿Ya tienes un dominio?",
24
- "useExistingDomainLabel": "Usa el dominio existente"
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"
25
23
  }
26
24
  }
@@ -1,26 +1,24 @@
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",
23
- "alreadyHaveADomainLabel": "Vous avez déjà un domaine?",
24
- "useExistingDomainLabel": "Utiliser un domaine existant"
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"
25
23
  }
26
24
  }
@@ -1,26 +1,24 @@
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",
23
- "alreadyHaveADomainLabel": "Vous avez déjà un domaine ?",
24
- "useExistingDomainLabel": "Utiliser un domaine existant"
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"
25
23
  }
26
24
  }
@@ -19,8 +19,6 @@
19
19
  "hasAlreadyPurchasedDomainCloseButtonLabel": "No thanks, maybe later",
20
20
  "selectDomainDropdownPlaceholder": "Select domain name",
21
21
  "websiteFriendlyName": "Website",
22
- "digitalBusinessCardFriendlyName": "Digital Business Card",
23
- "alreadyHaveADomainLabel": "Already have a domain?",
24
- "useExistingDomainLabel": "Use my existing domain"
22
+ "digitalBusinessCardFriendlyName": "Digital Business Card"
25
23
  }
26
24
  }
@@ -1,26 +1,24 @@
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",
23
- "alreadyHaveADomainLabel": "Já tem um domínio?",
24
- "useExistingDomainLabel": "Usar domínio existente"
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"
25
23
  }
26
24
  }
@@ -1,26 +1,24 @@
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",
23
- "alreadyHaveADomainLabel": "Já tem um domínio?",
24
- "useExistingDomainLabel": "Utilizar domínio existente"
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"
25
23
  }
26
24
  }
@@ -46,14 +46,6 @@
46
46
  <div class="tw-mt-4">
47
47
  <slot name="recommended" />
48
48
  </div>
49
- <div class="tw-m-4 tw-text-center">
50
- <p :class="{ 'tw-text-grayscale-600': isDesignCom }">
51
- {{ alreadyHaveADomainLabel }}
52
- <a href="#" class="tw-text-primary-500 hover:tw-text-primary-600" @click.prevent="onUseExistingDomain">{{
53
- useExistingDomainLabel
54
- }}</a>
55
- </p>
56
- </div>
57
49
  </div>
58
50
  </template>
59
51
  <script>
@@ -115,7 +107,7 @@ export default {
115
107
  default: '',
116
108
  },
117
109
  },
118
- emits: ['internal-publish-brand-page', 'on-slug-changed', 'on-use-existing-domain'],
110
+ emits: ['internal-publish-brand-page', 'on-slug-changed'],
119
111
  setup() {
120
112
  return {
121
113
  publishBrandPageModalTr,
@@ -124,8 +116,6 @@ export default {
124
116
  slugInputPlaceholderYourNameLabel: publishBrandPageModalTr('slugInputPlaceholderYourNameLabel'),
125
117
  slugInputPlaceholderYourBusinessNameLabel: publishBrandPageModalTr('slugInputPlaceholderYourBusinessNameLabel'),
126
118
  publishLabel: publishBrandPageModalTr('publishLabel'),
127
- alreadyHaveADomainLabel: publishBrandPageModalTr('alreadyHaveADomainLabel'),
128
- useExistingDomainLabel: publishBrandPageModalTr('useExistingDomainLabel'),
129
119
  };
130
120
  },
131
121
  data() {
@@ -173,9 +163,6 @@ export default {
173
163
  onPublish() {
174
164
  this.$emit('internal-publish-brand-page', this.internalSlug);
175
165
  },
176
- onUseExistingDomain() {
177
- this.$emit('on-use-existing-domain');
178
- },
179
166
  },
180
167
  };
181
168
  </script>