@designcrowd/fe-shared-lib 1.2.14-ast-upsell-2 → 1.2.14-ast-upsell-4
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 +1 -1
- package/src/atoms/components/Upsell/DigitalBusinessCard.vue +1 -1
- package/src/atoms/components/Upsell/LinkInBio.vue +1 -1
- package/src/atoms/components/Upsell/UpgradeWebsite.vue +1 -1
- package/src/atoms/components/Upsell/Website.vue +1 -1
- package/src/experiences/components/PublishBrandPageModal/PublishBrandPageModal.vue +14 -1
package/package.json
CHANGED
|
@@ -244,8 +244,16 @@
|
|
|
244
244
|
@on-click="onBrandPageUrlClick"
|
|
245
245
|
/>
|
|
246
246
|
</div>
|
|
247
|
-
<div v-if="showUpsellRotation" class="tw-border-t tw-border-solid tw-border-grayscale-500">
|
|
247
|
+
<div v-if="showUpsellRotation" class="tw-border-t tw-border-solid tw-border-grayscale-500 tw-p-5">
|
|
248
248
|
<slot name="upsellContainer" />
|
|
249
|
+
<Button
|
|
250
|
+
v-if="selectedUpsellProp && selectedUpsellProp.type === 'domainName'"
|
|
251
|
+
:label="viewMoreDomainLabel"
|
|
252
|
+
variant="no-border"
|
|
253
|
+
size="small-medium"
|
|
254
|
+
class="tw-text-center"
|
|
255
|
+
@on-click="onViewMore"
|
|
256
|
+
/>
|
|
249
257
|
</div>
|
|
250
258
|
</div>
|
|
251
259
|
</template>
|
|
@@ -425,6 +433,11 @@ export default {
|
|
|
425
433
|
required: true,
|
|
426
434
|
default: false,
|
|
427
435
|
},
|
|
436
|
+
selectedUpsellProp: {
|
|
437
|
+
type: Object,
|
|
438
|
+
required: true,
|
|
439
|
+
default: null,
|
|
440
|
+
},
|
|
428
441
|
},
|
|
429
442
|
emits: [
|
|
430
443
|
'close-modal',
|