@designcrowd/fe-shared-lib 1.0.8-ml-82-12 → 1.0.8-ml-82-14

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-12",
3
+ "version": "1.0.8-ml-82-14",
4
4
  "scripts": {
5
5
  "start": "npm run storybook",
6
6
  "build": "npm run build:css --production",
@@ -152,7 +152,7 @@
152
152
  <p>
153
153
  {{ getSignUpText }}
154
154
  <a :href="getSignUpUrl" class="tw-text-info-500" :class="{ 'hover:tw-underline': isDesignCom }">{{
155
- signInLabel
155
+ signUpLabel
156
156
  }}</a>
157
157
  </p>
158
158
  </div>
@@ -320,10 +320,10 @@ export default {
320
320
  requiured: false,
321
321
  default: 'or'
322
322
  },
323
- signInLabel: {
323
+ signUpLabel: {
324
324
  type: String,
325
325
  requiured: false,
326
- default: 'Sign In'
326
+ default: 'Sign Up'
327
327
  },
328
328
  termsAndConditions: {
329
329
  type: Object,
@@ -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') {
@@ -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') {