@designcrowd/fe-shared-lib 1.0.8-ml-82-16 → 1.0.8-ml-82-18
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
|
@@ -19,8 +19,7 @@
|
|
|
19
19
|
<a :href="privacyPolicyUrl" target="_blank" class="tw-text-info-500" :class="{ 'hover:tw-underline': isDesignCom }"
|
|
20
20
|
>{{ termsAndConditionsContent?.privacyPolicy }} </a
|
|
21
21
|
>
|
|
22
|
-
<span>
|
|
23
|
-
{{ termsAndConditionsContent?.agreeToFutureUpdates }} {{ isDesignCom ? 'Design.com' : 'BrandCrowd' }}.</span
|
|
22
|
+
<span> {{ termsAndConditionsContent?.agreeToFutureUpdates }} {{ isDesignCom ? 'Design.com' : 'BrandCrowd' }}.</span
|
|
24
23
|
>
|
|
25
24
|
</p>
|
|
26
25
|
</template>
|
|
@@ -147,7 +147,7 @@
|
|
|
147
147
|
</div>
|
|
148
148
|
<div
|
|
149
149
|
v-if="isModal === false && !!signUpText && !!signUpUrl"
|
|
150
|
-
class="tw-order-last tw-w-full tw-border-0 tw-border-t tw-border-solid tw-border-grayscale-400 tw-text-center tw-pt-6 tw-pb-8 tw-text-grayscale-600
|
|
150
|
+
class="tw-order-last tw-w-full tw-border-0 tw-border-t tw-border-solid tw-border-grayscale-400 tw-text-center tw-pt-6 tw-pb-8 tw-text-grayscale-600"
|
|
151
151
|
>
|
|
152
152
|
<p>
|
|
153
153
|
{{ getSignUpText }}
|
|
@@ -366,7 +366,7 @@ export default {
|
|
|
366
366
|
if (this.aUserName) {
|
|
367
367
|
url.searchParams.append('initialUserName', this.aUserName);
|
|
368
368
|
}
|
|
369
|
-
return url;
|
|
369
|
+
return url.toString();
|
|
370
370
|
},
|
|
371
371
|
getForgotPasswordUrl() {
|
|
372
372
|
if (typeof window === 'undefined') {
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
</div>
|
|
99
99
|
</div>
|
|
100
100
|
<p
|
|
101
|
-
class="tw-w-full tw-border-0 tw-border-t tw-border-solid tw-border-grayscale-400 tw-text-center tw-pt-6 tw-pb-8 tw-text-grayscale-600
|
|
101
|
+
class="tw-w-full tw-border-0 tw-border-t tw-border-solid tw-border-grayscale-400 tw-text-center tw-pt-6 tw-pb-8 tw-text-grayscale-600"
|
|
102
102
|
>
|
|
103
103
|
{{ alreadyHaveAnAccountLabel }}
|
|
104
104
|
<a :href="getRedirectToSignInUrl" class="tw-text-info-500">{{ loginLabel }}</a>
|
|
@@ -245,7 +245,7 @@ export default {
|
|
|
245
245
|
if (this.aUserName) {
|
|
246
246
|
url.searchParams.append('initialUserName', this.aUserName);
|
|
247
247
|
}
|
|
248
|
-
return url;
|
|
248
|
+
return url.toString();
|
|
249
249
|
},
|
|
250
250
|
getRedirectToRecommendedActionUrl() {
|
|
251
251
|
if (typeof window === 'undefined') {
|