@designcrowd/fe-shared-lib 1.2.17-ast-upsell-2 → 1.2.17-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
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{{ subtitle }}
|
|
15
15
|
</div>
|
|
16
16
|
<div v-if="buttonUrl" class="tw-flex tw-gap-4 tw-mt-5">
|
|
17
|
-
<Button
|
|
17
|
+
<Button full-width variant="primary" :label="buttonLabel" classes="tw-flex-1" @click="onClick" />
|
|
18
18
|
</div>
|
|
19
19
|
</div>
|
|
20
20
|
</template>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{{ subtitle }}
|
|
15
15
|
</div>
|
|
16
16
|
<div v-if="buttonUrl" class="tw-flex tw-gap-4 tw-mt-5">
|
|
17
|
-
<Button
|
|
17
|
+
<Button full-width variant="primary" :label="buttonLabel" classes="tw-flex-1" @click="onClick" />
|
|
18
18
|
</div>
|
|
19
19
|
</div>
|
|
20
20
|
</template>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{{ subtitle }}
|
|
15
15
|
</div>
|
|
16
16
|
<div v-if="buttonUrl" class="tw-flex tw-gap-4 tw-mt-5">
|
|
17
|
-
<Button
|
|
17
|
+
<Button full-width variant="primary" :label="buttonLabel" classes="tw-flex-1" @click="onClick" />
|
|
18
18
|
</div>
|
|
19
19
|
</div>
|
|
20
20
|
</template>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{{ subtitle }}
|
|
15
15
|
</div>
|
|
16
16
|
<div v-if="buttonUrl" class="tw-flex tw-gap-4 tw-mt-5">
|
|
17
|
-
<Button
|
|
17
|
+
<Button full-width variant="primary" :label="buttonLabel" classes="tw-flex-1" @click="onClick" />
|
|
18
18
|
</div>
|
|
19
19
|
</div>
|
|
20
20
|
</template>
|
|
@@ -37,7 +37,10 @@ export default {
|
|
|
37
37
|
return upsellModalComponentsTr('webSupportTitle') || 'Get Professional Web Design Support';
|
|
38
38
|
},
|
|
39
39
|
subtitle() {
|
|
40
|
-
return
|
|
40
|
+
return (
|
|
41
|
+
upsellModalComponentsTr('webSupportSubtitle') ||
|
|
42
|
+
'Our professional web design team will help you build and get the most out of your website'
|
|
43
|
+
);
|
|
41
44
|
},
|
|
42
45
|
imageUrl() {
|
|
43
46
|
const locale = getCurrentLocale().toLowerCase();
|