@thecb/components 12.0.6 → 12.0.7-beta.0
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 +7 -24
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/package.json +4 -2
- package/src/components/atoms/nav-footer/NavFooter.js +2 -2
- package/src/components/molecules/payment-details/PaymentDetails.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thecb/components",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.7-beta.0",
|
|
4
4
|
"description": "Common lib for CityBase react components",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -9,7 +9,9 @@
|
|
|
9
9
|
"scripts": {
|
|
10
10
|
"storybook": "storybook dev -p 6006",
|
|
11
11
|
"build": "rollup -cm",
|
|
12
|
-
"build-storybook": "storybook build"
|
|
12
|
+
"build-storybook": "storybook build",
|
|
13
|
+
"sync": "./scripts/sync-to-project.sh",
|
|
14
|
+
"publish-beta": "./scripts/publish-beta.sh"
|
|
13
15
|
},
|
|
14
16
|
"repository": {
|
|
15
17
|
"type": "git",
|
|
@@ -299,7 +299,7 @@ const PaymentDetails = ({
|
|
|
299
299
|
>
|
|
300
300
|
<Title
|
|
301
301
|
weight={FONT_WEIGHT_REGULAR}
|
|
302
|
-
as="
|
|
302
|
+
as="p"
|
|
303
303
|
extraStyles={`font-size: 1rem;`}
|
|
304
304
|
>
|
|
305
305
|
{agencyDisplayName}
|
|
@@ -363,7 +363,7 @@ const PaymentDetails = ({
|
|
|
363
363
|
<Title
|
|
364
364
|
weight={FONT_WEIGHT_SEMIBOLD}
|
|
365
365
|
as="h2"
|
|
366
|
-
extraStyles={`font-size: 1.
|
|
366
|
+
extraStyles={`font-size: 1.375rem; line-height: ${
|
|
367
367
|
isMobile ? "2.2857rem" : "2.25rem"
|
|
368
368
|
};`}
|
|
369
369
|
id="payment-details-title"
|
|
@@ -385,7 +385,7 @@ const PaymentDetails = ({
|
|
|
385
385
|
as="h2"
|
|
386
386
|
weight={FONT_WEIGHT_SEMIBOLD}
|
|
387
387
|
margin="1rem 0 0 0"
|
|
388
|
-
extraStyles={`font-size: 1.
|
|
388
|
+
extraStyles={`font-size: 1.375rem; line-height: ${
|
|
389
389
|
isMobile ? "2.2857rem" : "2.25rem"
|
|
390
390
|
};`}
|
|
391
391
|
id="payment-details-title"
|