@cirkay-eng/cirkay-components 0.9.23-beta.6 → 0.9.23-beta.8

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/README.md CHANGED
@@ -279,4 +279,3 @@ Fan Pass application:
279
279
  Our components are written as ES6 modules for seamless integration into your project without the need for transpilation through tools like Webpack or Babel. You can still use pre-processors like Vite, Webpack, or Roll-up for tree shaking and minification while preserving ES modules.
280
280
 
281
281
  To initialise a web component and render it in your HTML and the DOM, simply import the component script within your page's entry scripts or as a script tag directly inside your page.
282
-
@@ -1047,7 +1047,7 @@ class FanPassClaim extends CirkayElement {
1047
1047
  ${hasPrivacyLink
1048
1048
  ? html `
1049
1049
  <span class="fanpass-claim-legal-links" part="claim-legal-links">
1050
- <a href="${privacyUrl}" target="_blank" rel="noopener noreferrer">Privacy Policy</a>
1050
+ <a href="${privacyUrl}" target="_blank" rel="noopener noreferrer">Privacy policy</a>
1051
1051
  </span>
1052
1052
  `
1053
1053
  : nothing}
@@ -1089,7 +1089,7 @@ class FanPassClaim extends CirkayElement {
1089
1089
  ? html `
1090
1090
  <span class="fanpass-claim-legal-links" part="claim-legal-links">
1091
1091
  ${hasPrivacyLink
1092
- ? html `<a href="${privacyUrl}" target="_blank" rel="noopener noreferrer">privacy policy</a>`
1092
+ ? html `<a href="${privacyUrl}" target="_blank" rel="noopener noreferrer">Privacy policy</a>`
1093
1093
  : nothing}
1094
1094
  </span>
1095
1095
  `
@@ -179,7 +179,7 @@ var fanPassClaimStyles = css `
179
179
  .fanpass-claim-opt-in-block--shared {
180
180
  display: flex;
181
181
  flex-direction: column;
182
- align-items: center;
182
+ align-items: stretch;
183
183
  gap: var(--pu-space-300, 0.75em);
184
184
  }
185
185
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cirkay-eng/cirkay-components",
3
- "version": "0.9.23-beta.6",
3
+ "version": "0.9.23-beta.8",
4
4
  "type": "module",
5
5
  "module": "./dist/components/index.js",
6
6
  "types": "dist/components/index.d.ts",