@designcrowd/fe-shared-lib 1.1.0 → 1.1.1
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 +1 -1
- package/{dist → public}/css/tailwind-brandCrowd.css +501 -582
- package/{dist → public}/css/tailwind-brandPage.css +425 -506
- package/{dist → public}/css/tailwind-crazyDomains.css +501 -582
- package/{dist → public}/css/tailwind-designCom.css +501 -582
- package/{dist → public}/css/tailwind-designCrowd.css +501 -582
- package/src/experiences/components/PaymentConfigList/PaymentConfigList.vue +4 -3
|
@@ -15,9 +15,10 @@
|
|
|
15
15
|
:class="{ 'tw-mb-2': index !== paymentConfigs.length - 1 }"
|
|
16
16
|
>
|
|
17
17
|
<img class="tw-h-6" :src="paymentConfig.paymentProviderImageUrl" alt="Payment provider's logo" />
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
<span class="tw-text-sm tw-grow tw-select-none tw-flex tw-flex-col">
|
|
19
|
+
<span>{{ paymentConfig.name }}</span>
|
|
20
|
+
<small class="stripe-acct">({{ paymentConfig.paymentProviderExternalId }})</small>
|
|
21
|
+
</span>
|
|
21
22
|
<p
|
|
22
23
|
class="tw-ml-auto tw-text-xs tw-rounded-full tw-py-0.5 tw-my-0 tw-text-white tw-px-4 tw-outline-none tw-uppercase"
|
|
23
24
|
:class="getPaymentConfigStatusDisplayClasses(paymentConfig.status)"
|