@designcrowd/fe-shared-lib 1.5.9-kp-4550-5 → 1.5.10-kp-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 (36) hide show
  1. package/index.js +0 -1
  2. package/package.json +1 -3
  3. package/src/atoms/components/Icon/Icon.stories.js +0 -7
  4. package/src/atoms/components/Icon/Icon.vue +0 -13
  5. package/src/bundles/bundled-translations.de-DE.json +3 -25
  6. package/src/bundles/bundled-translations.es-ES.json +3 -25
  7. package/src/bundles/bundled-translations.fr-CA.json +3 -25
  8. package/src/bundles/bundled-translations.fr-FR.json +3 -25
  9. package/src/bundles/bundled-translations.json +3 -25
  10. package/src/bundles/bundled-translations.pt-BR.json +3 -25
  11. package/src/bundles/bundled-translations.pt-PT.json +3 -25
  12. package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +5 -0
  13. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.de-DE.json +23 -21
  14. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.es-ES.json +23 -21
  15. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-CA.json +23 -21
  16. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.fr-FR.json +23 -21
  17. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.json +3 -1
  18. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-BR.json +23 -21
  19. package/src/experiences/components/PublishBrandPageModal/i18n/publish-brand-page-modal.pt-PT.json +23 -21
  20. package/src/experiences/components/PublishBrandPageModal/views/PublishWhenNoDomainsView.vue +14 -1
  21. package/src/experiences/components/WebsitesContextualUpgradeModal/WebsiteContextualUpgradeModal.vue +2 -3
  22. package/src/useSharedLibTranslate.js +0 -4
  23. package/src/atoms/components/Icon/icons/websites/upgrade-to-add-page.vue +0 -50
  24. package/src/atoms/components/Icon/icons/websites/upgrade-to-contact-form.vue +0 -82
  25. package/src/atoms/components/Icon/icons/websites/upgrade-to-maps.vue +0 -40
  26. package/src/atoms/components/Icon/icons/websites/upgrade-to-publish.vue +0 -107
  27. package/src/atoms/components/Icon/icons/websites/upgrade-to-remove-watermark.vue +0 -74
  28. package/src/atoms/components/Icon/icons/websites/upgrade-to-videos.vue +0 -16
  29. package/src/experiences/components/WebsitesContextualUpgradeModal/WebsiteContextualUpgradeModal.stories.js +0 -157
  30. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.de-DE.json +0 -26
  31. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.es-ES.json +0 -26
  32. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.fr-CA.json +0 -26
  33. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.fr-FR.json +0 -26
  34. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.json +0 -26
  35. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.pt-BR.json +0 -26
  36. package/src/experiences/components/WebsitesContextualUpgradeModal/i18n/website-contextual-upgrade-modal.pt-PT.json +0 -26
@@ -1,157 +0,0 @@
1
- import WebsiteContextualUpgradeModal from './WebsiteContextualUpgradeModal.vue';
2
- import { setSharedLibLocaleAsync } from '../../../useSharedLibTranslate';
3
-
4
- export default {
5
- title: 'Components/WebsitesContextualUpgradeModal',
6
- component: WebsiteContextualUpgradeModal,
7
- };
8
-
9
- const locale = 'en-US';
10
-
11
- const loadTranslationAsync = async () => {
12
- await setSharedLibLocaleAsync(locale);
13
- };
14
-
15
- export const UpgradeToAddPage = () => ({
16
- components: { WebsiteContextualUpgradeModal },
17
- data() {
18
- return {
19
- isUpgradeModalVisible: true,
20
- isDesignCom: true,
21
- upgradeUrl: 'https://brand.site/upgrade/add-page',
22
- brandPageType: 'brandContact',
23
- contentType: 'AddPage',
24
- };
25
- },
26
- template: `
27
- <WebsiteContextualUpgradeModal
28
- :is-upgrade-modal-visible="isUpgradeModalVisible"
29
- :is-design-com="isDesignCom"
30
- :upgrade-url="upgradeUrl"
31
- :brand-page-type="brandPageType"
32
- :content-type="contentType"
33
- />
34
- `,
35
- });
36
-
37
- UpgradeToAddPage.loaders = [loadTranslationAsync];
38
-
39
- export const UpgradeToContactForm = () => ({
40
- components: { WebsiteContextualUpgradeModal },
41
- data() {
42
- return {
43
- isUpgradeModalVisible: true,
44
- isDesignCom: true,
45
- upgradeUrl: 'https://brand.site/upgrade/contact-form',
46
- brandPageType: 'brandContact',
47
- contentType: 'ContactForm',
48
- };
49
- },
50
- template: `
51
- <WebsiteContextualUpgradeModal
52
- :is-upgrade-modal-visible="isUpgradeModalVisible"
53
- :is-design-com="isDesignCom"
54
- :upgrade-url="upgradeUrl"
55
- :brand-page-type="brandPageType"
56
- :content-type="contentType"
57
- />
58
- `,
59
- });
60
-
61
- UpgradeToContactForm.loaders = [loadTranslationAsync];
62
-
63
- export const UpgradeToMaps = () => ({
64
- components: { WebsiteContextualUpgradeModal },
65
- data() {
66
- return {
67
- isUpgradeModalVisible: true,
68
- isDesignCom: true,
69
- upgradeUrl: 'https://brand.site/upgrade/maps',
70
- brandPageType: 'brandContact',
71
- contentType: 'Maps',
72
- };
73
- },
74
- template: `
75
- <WebsiteContextualUpgradeModal
76
- :is-upgrade-modal-visible="isUpgradeModalVisible"
77
- :is-design-com="isDesignCom"
78
- :upgrade-url="upgradeUrl"
79
- :brand-page-type="brandPageType"
80
- :content-type="contentType"
81
- />
82
- `,
83
- });
84
-
85
- UpgradeToMaps.loaders = [loadTranslationAsync];
86
-
87
- export const UpgradeToVideos = () => ({
88
- components: { WebsiteContextualUpgradeModal },
89
- data() {
90
- return {
91
- isUpgradeModalVisible: true,
92
- isDesignCom: true,
93
- upgradeUrl: 'https://brand.site/upgrade/videos',
94
- brandPageType: 'brandContact',
95
- contentType: 'Videos',
96
- };
97
- },
98
- template: `
99
- <WebsiteContextualUpgradeModal
100
- :is-upgrade-modal-visible="isUpgradeModalVisible"
101
- :is-design-com="isDesignCom"
102
- :upgrade-url="upgradeUrl"
103
- :brand-page-type="brandPageType"
104
- :content-type="contentType"
105
- />
106
- `,
107
- });
108
-
109
- UpgradeToVideos.loaders = [loadTranslationAsync];
110
-
111
- export const UpgradeToRemoveWatermark = () => ({
112
- components: { WebsiteContextualUpgradeModal },
113
- data() {
114
- return {
115
- isUpgradeModalVisible: true,
116
- isDesignCom: true,
117
- upgradeUrl: 'https://brand.site/upgrade/remove-watermark',
118
- brandPageType: 'brandContact',
119
- contentType: 'RemoveWatermark',
120
- };
121
- },
122
- template: `
123
- <WebsiteContextualUpgradeModal
124
- :is-upgrade-modal-visible="isUpgradeModalVisible"
125
- :is-design-com="isDesignCom"
126
- :upgrade-url="upgradeUrl"
127
- :brand-page-type="brandPageType"
128
- :content-type="contentType"
129
- />
130
- `,
131
- });
132
-
133
- UpgradeToRemoveWatermark.loaders = [loadTranslationAsync];
134
-
135
- export const UpgradeToPublish = () => ({
136
- components: { WebsiteContextualUpgradeModal },
137
- data() {
138
- return {
139
- isUpgradeModalVisible: true,
140
- isDesignCom: true,
141
- upgradeUrl: 'https://brand.site/upgrade/publish',
142
- brandPageType: 'brandContact',
143
- contentType: 'Publish',
144
- };
145
- },
146
- template: `
147
- <WebsiteContextualUpgradeModal
148
- :is-upgrade-modal-visible="isUpgradeModalVisible"
149
- :is-design-com="isDesignCom"
150
- :upgrade-url="upgradeUrl"
151
- :brand-page-type="brandPageType"
152
- :content-type="contentType"
153
- />
154
- `,
155
- });
156
-
157
- UpgradeToPublish.loaders = [loadTranslationAsync];
@@ -1,26 +0,0 @@
1
- {
2
- "websiteContextualUpgradeModal": {
3
- "upgradeButtonText": "Upgrade Now",
4
- "closeButtonText": "No Thanks",
5
- "upgradeToAddPageTitle": "Upgrade to add more pages",
6
- "upgradeToAddPageDescription": "You've reached the free page limit. Upgrade to keep building your site and access all premium features.",
7
- "upgradeToContactFormTitle": "Upgrade to unlock contact form",
8
- "upgradeToContactFormDescription": "Let visitors reach you directly. Upgrade to add a contact form to your site and access all premium features.",
9
- "upgradeToMapsTitle": "Upgrade to unlock maps",
10
- "upgradeToMapsDescription": "Help visitors find you easily. Upgrade to embed interactive maps to your site and access all premium features.",
11
- "upgradeToVideosTitle": "Upgrade to unlock videos",
12
- "upgradeToVideosDescription": "Bring your content to life. Upgrade to embed and play videos to your site and access all premium features.",
13
- "upgradeToRemoveWatermarkTitle": "Upgrade to remove watermark",
14
- "upgradeToRemoveWatermarkDescription": "Make it truly yours. Upgrade to remove our watermark from your site and access all premium features.",
15
- "upgradeToPublishTitle": "Upgrade to publish your site",
16
- "upgradeToPublishDescription": "Each subscription lets you publish one website. Add another subscription to publish this site and access all premium features.",
17
- "featureCustomerCare": "24/7 customer care",
18
- "featureCustomDomain": "Connect a custom domain",
19
- "featureNoWatermark": "No {{websiteName}} watermark",
20
- "featureUnlimitedPages": "Unlimited pages",
21
- "featurePremiumContent": "Contact forms, videos and maps",
22
- "featureStore": "Basic online store",
23
- "featureCancelAnytime": "Cancel anytime",
24
- "premiumUpgradeNote": "With Premium, you'll get:"
25
- }
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "websiteContextualUpgradeModal": {
3
- "upgradeButtonText": "Upgrade Now",
4
- "closeButtonText": "No Thanks",
5
- "upgradeToAddPageTitle": "Upgrade to add more pages",
6
- "upgradeToAddPageDescription": "You've reached the free page limit. Upgrade to keep building your site and access all premium features.",
7
- "upgradeToContactFormTitle": "Upgrade to unlock contact form",
8
- "upgradeToContactFormDescription": "Let visitors reach you directly. Upgrade to add a contact form to your site and access all premium features.",
9
- "upgradeToMapsTitle": "Upgrade to unlock maps",
10
- "upgradeToMapsDescription": "Help visitors find you easily. Upgrade to embed interactive maps to your site and access all premium features.",
11
- "upgradeToVideosTitle": "Upgrade to unlock videos",
12
- "upgradeToVideosDescription": "Bring your content to life. Upgrade to embed and play videos to your site and access all premium features.",
13
- "upgradeToRemoveWatermarkTitle": "Upgrade to remove watermark",
14
- "upgradeToRemoveWatermarkDescription": "Make it truly yours. Upgrade to remove our watermark from your site and access all premium features.",
15
- "upgradeToPublishTitle": "Upgrade to publish your site",
16
- "upgradeToPublishDescription": "Each subscription lets you publish one website. Add another subscription to publish this site and access all premium features.",
17
- "featureCustomerCare": "24/7 customer care",
18
- "featureCustomDomain": "Connect a custom domain",
19
- "featureNoWatermark": "No {{websiteName}} watermark",
20
- "featureUnlimitedPages": "Unlimited pages",
21
- "featurePremiumContent": "Contact forms, videos and maps",
22
- "featureStore": "Basic online store",
23
- "featureCancelAnytime": "Cancel anytime",
24
- "premiumUpgradeNote": "With Premium, you'll get:"
25
- }
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "websiteContextualUpgradeModal": {
3
- "upgradeButtonText": "Upgrade Now",
4
- "closeButtonText": "No Thanks",
5
- "upgradeToAddPageTitle": "Upgrade to add more pages",
6
- "upgradeToAddPageDescription": "You've reached the free page limit. Upgrade to keep building your site and access all premium features.",
7
- "upgradeToContactFormTitle": "Upgrade to unlock contact form",
8
- "upgradeToContactFormDescription": "Let visitors reach you directly. Upgrade to add a contact form to your site and access all premium features.",
9
- "upgradeToMapsTitle": "Upgrade to unlock maps",
10
- "upgradeToMapsDescription": "Help visitors find you easily. Upgrade to embed interactive maps to your site and access all premium features.",
11
- "upgradeToVideosTitle": "Upgrade to unlock videos",
12
- "upgradeToVideosDescription": "Bring your content to life. Upgrade to embed and play videos to your site and access all premium features.",
13
- "upgradeToRemoveWatermarkTitle": "Upgrade to remove watermark",
14
- "upgradeToRemoveWatermarkDescription": "Make it truly yours. Upgrade to remove our watermark from your site and access all premium features.",
15
- "upgradeToPublishTitle": "Upgrade to publish your site",
16
- "upgradeToPublishDescription": "Each subscription lets you publish one website. Add another subscription to publish this site and access all premium features.",
17
- "featureCustomerCare": "24/7 customer care",
18
- "featureCustomDomain": "Connect a custom domain",
19
- "featureNoWatermark": "No {{websiteName}} watermark",
20
- "featureUnlimitedPages": "Unlimited pages",
21
- "featurePremiumContent": "Contact forms, videos and maps",
22
- "featureStore": "Basic online store",
23
- "featureCancelAnytime": "Cancel anytime",
24
- "premiumUpgradeNote": "With Premium, you'll get:"
25
- }
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "websiteContextualUpgradeModal": {
3
- "upgradeButtonText": "Upgrade Now",
4
- "closeButtonText": "No Thanks",
5
- "upgradeToAddPageTitle": "Upgrade to add more pages",
6
- "upgradeToAddPageDescription": "You've reached the free page limit. Upgrade to keep building your site and access all premium features.",
7
- "upgradeToContactFormTitle": "Upgrade to unlock contact form",
8
- "upgradeToContactFormDescription": "Let visitors reach you directly. Upgrade to add a contact form to your site and access all premium features.",
9
- "upgradeToMapsTitle": "Upgrade to unlock maps",
10
- "upgradeToMapsDescription": "Help visitors find you easily. Upgrade to embed interactive maps to your site and access all premium features.",
11
- "upgradeToVideosTitle": "Upgrade to unlock videos",
12
- "upgradeToVideosDescription": "Bring your content to life. Upgrade to embed and play videos to your site and access all premium features.",
13
- "upgradeToRemoveWatermarkTitle": "Upgrade to remove watermark",
14
- "upgradeToRemoveWatermarkDescription": "Make it truly yours. Upgrade to remove our watermark from your site and access all premium features.",
15
- "upgradeToPublishTitle": "Upgrade to publish your site",
16
- "upgradeToPublishDescription": "Each subscription lets you publish one website. Add another subscription to publish this site and access all premium features.",
17
- "featureCustomerCare": "24/7 customer care",
18
- "featureCustomDomain": "Connect a custom domain",
19
- "featureNoWatermark": "No {{websiteName}} watermark",
20
- "featureUnlimitedPages": "Unlimited pages",
21
- "featurePremiumContent": "Contact forms, videos and maps",
22
- "featureStore": "Basic online store",
23
- "featureCancelAnytime": "Cancel anytime",
24
- "premiumUpgradeNote": "With Premium, you'll get:"
25
- }
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "websiteContextualUpgradeModal": {
3
- "upgradeButtonText": "Upgrade Now",
4
- "closeButtonText": "No Thanks",
5
- "upgradeToAddPageTitle": "Upgrade to add more pages",
6
- "upgradeToAddPageDescription": "You've reached the free page limit. Upgrade to keep building your site and access all premium features.",
7
- "upgradeToContactFormTitle": "Upgrade to unlock contact form",
8
- "upgradeToContactFormDescription": "Let visitors reach you directly. Upgrade to add a contact form to your site and access all premium features.",
9
- "upgradeToMapsTitle": "Upgrade to unlock maps",
10
- "upgradeToMapsDescription": "Help visitors find you easily. Upgrade to embed interactive maps to your site and access all premium features.",
11
- "upgradeToVideosTitle": "Upgrade to unlock videos",
12
- "upgradeToVideosDescription": "Bring your content to life. Upgrade to embed and play videos to your site and access all premium features.",
13
- "upgradeToRemoveWatermarkTitle": "Upgrade to remove watermark",
14
- "upgradeToRemoveWatermarkDescription": "Make it truly yours. Upgrade to remove our watermark from your site and access all premium features.",
15
- "upgradeToPublishTitle": "Upgrade to publish your site",
16
- "upgradeToPublishDescription": "Each subscription lets you publish one website. Add another subscription to publish this site and access all premium features.",
17
- "featureCustomerCare": "24/7 customer care",
18
- "featureCustomDomain": "Connect a custom domain",
19
- "featureNoWatermark": "No {{websiteName}} watermark",
20
- "featureUnlimitedPages": "Unlimited pages",
21
- "featurePremiumContent": "Contact forms, videos and maps",
22
- "featureStore": "Basic online store",
23
- "featureCancelAnytime": "Cancel anytime",
24
- "premiumUpgradeNote": "With Premium, you'll get:"
25
- }
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "websiteContextualUpgradeModal": {
3
- "upgradeButtonText": "Upgrade Now",
4
- "closeButtonText": "No Thanks",
5
- "upgradeToAddPageTitle": "Upgrade to add more pages",
6
- "upgradeToAddPageDescription": "You've reached the free page limit. Upgrade to keep building your site and access all premium features.",
7
- "upgradeToContactFormTitle": "Upgrade to unlock contact form",
8
- "upgradeToContactFormDescription": "Let visitors reach you directly. Upgrade to add a contact form to your site and access all premium features.",
9
- "upgradeToMapsTitle": "Upgrade to unlock maps",
10
- "upgradeToMapsDescription": "Help visitors find you easily. Upgrade to embed interactive maps to your site and access all premium features.",
11
- "upgradeToVideosTitle": "Upgrade to unlock videos",
12
- "upgradeToVideosDescription": "Bring your content to life. Upgrade to embed and play videos to your site and access all premium features.",
13
- "upgradeToRemoveWatermarkTitle": "Upgrade to remove watermark",
14
- "upgradeToRemoveWatermarkDescription": "Make it truly yours. Upgrade to remove our watermark from your site and access all premium features.",
15
- "upgradeToPublishTitle": "Upgrade to publish your site",
16
- "upgradeToPublishDescription": "Each subscription lets you publish one website. Add another subscription to publish this site and access all premium features.",
17
- "featureCustomerCare": "24/7 customer care",
18
- "featureCustomDomain": "Connect a custom domain",
19
- "featureNoWatermark": "No {{websiteName}} watermark",
20
- "featureUnlimitedPages": "Unlimited pages",
21
- "featurePremiumContent": "Contact forms, videos and maps",
22
- "featureStore": "Basic online store",
23
- "featureCancelAnytime": "Cancel anytime",
24
- "premiumUpgradeNote": "With Premium, you'll get:"
25
- }
26
- }
@@ -1,26 +0,0 @@
1
- {
2
- "websiteContextualUpgradeModal": {
3
- "upgradeButtonText": "Upgrade Now",
4
- "closeButtonText": "No Thanks",
5
- "upgradeToAddPageTitle": "Upgrade to add more pages",
6
- "upgradeToAddPageDescription": "You've reached the free page limit. Upgrade to keep building your site and access all premium features.",
7
- "upgradeToContactFormTitle": "Upgrade to unlock contact form",
8
- "upgradeToContactFormDescription": "Let visitors reach you directly. Upgrade to add a contact form to your site and access all premium features.",
9
- "upgradeToMapsTitle": "Upgrade to unlock maps",
10
- "upgradeToMapsDescription": "Help visitors find you easily. Upgrade to embed interactive maps to your site and access all premium features.",
11
- "upgradeToVideosTitle": "Upgrade to unlock videos",
12
- "upgradeToVideosDescription": "Bring your content to life. Upgrade to embed and play videos to your site and access all premium features.",
13
- "upgradeToRemoveWatermarkTitle": "Upgrade to remove watermark",
14
- "upgradeToRemoveWatermarkDescription": "Make it truly yours. Upgrade to remove our watermark from your site and access all premium features.",
15
- "upgradeToPublishTitle": "Upgrade to publish your site",
16
- "upgradeToPublishDescription": "Each subscription lets you publish one website. Add another subscription to publish this site and access all premium features.",
17
- "featureCustomerCare": "24/7 customer care",
18
- "featureCustomDomain": "Connect a custom domain",
19
- "featureNoWatermark": "No {{websiteName}} watermark",
20
- "featureUnlimitedPages": "Unlimited pages",
21
- "featurePremiumContent": "Contact forms, videos and maps",
22
- "featureStore": "Basic online store",
23
- "featureCancelAnytime": "Cancel anytime",
24
- "premiumUpgradeNote": "With Premium, you'll get:"
25
- }
26
- }