@designcrowd/fe-shared-lib 1.0.8-ml-82-17 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@designcrowd/fe-shared-lib",
3
- "version": "1.0.8-ml-82-17",
3
+ "version": "1.0.8-ml-82-18",
4
4
  "scripts": {
5
5
  "start": "npm run storybook",
6
6
  "build": "npm run build:css --production",
@@ -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>
@@ -151,9 +151,9 @@
151
151
  >
152
152
  <p>
153
153
  {{ getSignUpText }}
154
- <a :href="getSignUpUrl" class="tw-text-info-500" :class="{ 'hover:tw-underline': isDesignCom }">
155
- <p>{{ signUpLabel }}</p>
156
- </a>
154
+ <a :href="getSignUpUrl" class="tw-text-info-500" :class="{ 'hover:tw-underline': isDesignCom }">{{
155
+ signUpLabel
156
+ }}</a>
157
157
  </p>
158
158
  </div>
159
159
  </div>
@@ -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') {
@@ -101,9 +101,7 @@
101
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
- <a :href="getRedirectToSignInUrl" class="tw-text-info-500">
105
- <p>{{ loginLabel }}</p>
106
- </a>
104
+ <a :href="getRedirectToSignInUrl" class="tw-text-info-500">{{ loginLabel }}</a>
107
105
  </p>
108
106
  </div>
109
107
  </div>
@@ -247,7 +245,7 @@ export default {
247
245
  if (this.aUserName) {
248
246
  url.searchParams.append('initialUserName', this.aUserName);
249
247
  }
250
- return url;
248
+ return url.toString();
251
249
  },
252
250
  getRedirectToRecommendedActionUrl() {
253
251
  if (typeof window === 'undefined') {