@designcrowd/fe-shared-lib 1.5.23-pre-gt9544-brooke → 1.5.23-pre-gt9544-brooke-v2
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
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
>
|
|
53
53
|
{{ title }}
|
|
54
54
|
</h2>
|
|
55
|
-
<p v-if="description" class="tw-text-center tw-mb-6 tw-text-grayscale-600 tw-mt-0">
|
|
55
|
+
<p v-if="description" class="tw-text-center tw-mb-6 tw-text-grayscale-600 tw-mt-0" :class="{'tw-font-semibold': shouldResetPassword }">
|
|
56
56
|
{{ description }}
|
|
57
57
|
</p>
|
|
58
58
|
<div class="tw-flex tw-flex-col">
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
<p v-if="capturePassword && !!passwordError" class="tw-text-error-500 tw-text-sm tw-text-left tw-mb-4">
|
|
93
93
|
{{ passwordError }}
|
|
94
94
|
</p>
|
|
95
|
-
<p v-if="capturePassword ||
|
|
95
|
+
<p v-if="capturePassword || shouldResetPassword" class="tw-w-full tw-text-left tw-mb-4">
|
|
96
96
|
<a class="tw-text-info-500 tw-cursor-pointer hover:tw-underline" @click="forgotPasswordClick()">
|
|
97
97
|
{{ forgotPasswordLabel }}
|
|
98
98
|
</a>
|
|
@@ -256,7 +256,7 @@ export default {
|
|
|
256
256
|
type: Boolean,
|
|
257
257
|
default: true,
|
|
258
258
|
},
|
|
259
|
-
|
|
259
|
+
shouldResetPassword: {
|
|
260
260
|
type: Boolean,
|
|
261
261
|
default: false,
|
|
262
262
|
},
|