@kompasid/lit-web-components 0.7.6 → 0.7.7
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/dist/src/components/kompasid-footer/KompasFooter.js +4 -4
- package/dist/src/components/kompasid-footer/KompasFooter.js.map +1 -1
- package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js +1 -1
- package/dist/src/components/kompasid-header-account/KompasHeaderAccount.js.map +1 -1
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js +1 -1
- package/dist/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.js.map +1 -1
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js +2 -2
- package/dist/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.js.map +1 -1
- package/dist/src/components/kompasid-paywall/KompasPaywall.js +1 -1
- package/dist/src/components/kompasid-paywall/KompasPaywall.js.map +1 -1
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js +8 -8
- package/dist/src/components/kompasid-paywall-body/KompasPaywallBody.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/components/kompasid-footer/KompasFooter.ts +4 -4
- package/src/components/kompasid-header-account/KompasHeaderAccount.ts +1 -1
- package/src/components/kompasid-header-account-profile/KompasHeaderAccountProfile.ts +1 -1
- package/src/components/kompasid-metered-wall-register/KompasMeteredWallRegister.ts +2 -2
- package/src/components/kompasid-metered-wall-register/readme.md +1 -1
- package/src/components/kompasid-paywall/KompasPaywall.ts +1 -1
- package/src/components/kompasid-paywall-body/KompasPaywallBody.ts +8 -8
|
@@ -1026,8 +1026,8 @@ export class KompasIdPaywallBody extends LitElement {
|
|
|
1026
1026
|
const textColorClass = isDark ? 'text-dark-7' : 'text-grey-500'
|
|
1027
1027
|
|
|
1028
1028
|
const googleImageSrc = isDark
|
|
1029
|
-
? 'https://
|
|
1030
|
-
: 'https://
|
|
1029
|
+
? 'https://cdn-www.kompas.id/paywall-asset/google-white.png'
|
|
1030
|
+
: 'https://cdn-www.kompas.id/paywall-asset/google.png'
|
|
1031
1031
|
|
|
1032
1032
|
return html`
|
|
1033
1033
|
<div class="${containerClass}">
|
|
@@ -1066,12 +1066,12 @@ export class KompasIdPaywallBody extends LitElement {
|
|
|
1066
1066
|
const { isDark } = this
|
|
1067
1067
|
|
|
1068
1068
|
const googlePlayBadgeSrc = isDark
|
|
1069
|
-
? 'https://
|
|
1070
|
-
: 'https://
|
|
1069
|
+
? 'https://cdn-www.kompas.id/web-component/Button_Download%20Google%20Play_Dark%20Mode.svg'
|
|
1070
|
+
: 'https://cdn-www.kompas.id/web-component/Button_Download%20Google%20Play_Light%20Mode.svg'
|
|
1071
1071
|
|
|
1072
1072
|
const appStoreBadgeSrc = isDark
|
|
1073
|
-
? 'https://
|
|
1074
|
-
: 'https://
|
|
1073
|
+
? 'https://cdn-www.kompas.id/web-component/Button_Download%20App%20Store_Dark%20Mode.svg'
|
|
1074
|
+
: 'https://cdn-www.kompas.id/web-component/Button_Download%20App%20Store_Light%20Mode.svg'
|
|
1075
1075
|
|
|
1076
1076
|
return html`
|
|
1077
1077
|
<div
|
|
@@ -1094,7 +1094,7 @@ export class KompasIdPaywallBody extends LitElement {
|
|
|
1094
1094
|
<div class="w-full flex justify-center">
|
|
1095
1095
|
<div class="w-3/4 lg:w-1/2">
|
|
1096
1096
|
<img
|
|
1097
|
-
src="https://
|
|
1097
|
+
src="https://cdn-www.kompas.id/web-component/kompas-free-trial.png"
|
|
1098
1098
|
alt="Free Trial"
|
|
1099
1099
|
/>
|
|
1100
1100
|
</div>
|
|
@@ -1113,7 +1113,7 @@ export class KompasIdPaywallBody extends LitElement {
|
|
|
1113
1113
|
>
|
|
1114
1114
|
<div class="w-1/3 flex mr-6">
|
|
1115
1115
|
<img
|
|
1116
|
-
src="https://
|
|
1116
|
+
src="https://cdn-www.kompas.id/web-component/free-trial-qr-code.png"
|
|
1117
1117
|
alt="QR Code Deep Link"
|
|
1118
1118
|
/>
|
|
1119
1119
|
</div>
|