@designcrowd/fe-shared-lib 1.2.26-ast-upsell-4 → 1.2.26-ast-upsell-5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.2.26-ast-upsell-4",
3
+ "version": "1.2.26-ast-upsell-5",
4
4
  "scripts": {
5
5
  "start": "run-p storybook watch:translation",
6
6
  "build": "npm run build:css --production",
@@ -162,8 +162,6 @@ export const PublishedNoDomains = () => {
162
162
  is-published
163
163
  should-publish
164
164
  :domains="domains"
165
- show-upsell-rotation
166
- :is-subsequent-publish="false"
167
165
  brand-page-display-name='Website'
168
166
  brand-page-slug='test-slug'
169
167
  brand-page-base-url="https://brand.site"
@@ -17,13 +17,7 @@
17
17
  <div v-if="isNotPublished || isSlugEditMode" class="tw-text-center tw-font-bold tw-mb-8 tw-mt-8 tw-text-4xl">
18
18
  <span>{{ firstTimePublishHeaderLabel }}</span>
19
19
  </div>
20
- <div
21
- v-if="isPublished && !isSlugEditMode"
22
- class="tw-text-center tw-font-bold tw-mt-8"
23
- :class="{
24
- 'tw-mb-8 ': !showUpsellRotationContainer,
25
- }"
26
- >
20
+ <div v-if="isPublished && !isSlugEditMode" class="tw-text-center tw-font-bold tw-mt-8 tw-mb-8">
27
21
  <p class="tw-font-bold tw-text-black tw-mb-2 tw-text-4xl">{{ sitePublishedLabel }}</p>
28
22
  <div v-if="!showUpsellRotationContainer">
29
23
  <p v-if="hasPurchasedDomains || isCustomDomainActive" class="tw-text-grayscale-600 tw-mb-8">
@@ -7,10 +7,10 @@ const relativePathsToTranslationFiles = {
7
7
  'en-US': () => import('./bundles/bundled-translations.json'),
8
8
  'de-DE': () => import('./bundles/bundled-translations.de-DE.json'),
9
9
  'fr-FR': () => import('./bundles/bundled-translations.fr-FR.json'),
10
- // 'fr-CA': () => import('./bundles/bundled-translations.fr-CA.json'),
10
+ 'fr-CA': () => import('./bundles/bundled-translations.fr-CA.json'),
11
11
  'es-ES': () => import('./bundles/bundled-translations.es-ES.json'),
12
12
  'pt-PT': () => import('./bundles/bundled-translations.pt-PT.json'),
13
- // 'pt-BR': () => import('./bundles/bundled-translations.pt-BR.json'),
13
+ 'pt-BR': () => import('./bundles/bundled-translations.pt-BR.json'),
14
14
  };
15
15
 
16
16
  const setSharedLibLocaleAsync = async (locale = 'en-US') => {