@thecb/components 9.3.4-beta.3 → 9.3.4-beta.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "9.3.4-beta.3",
3
+ "version": "9.3.4-beta.4",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1,9 +1,9 @@
1
- import { WHITE, GHOST_GREY, ATHENS_GREY } from "../../../constants/colors";
1
+ import { WHITE, GREY_CHATEAU, ATHENS_GREY } from "../../../constants/colors";
2
2
 
3
3
  const headingBackgroundColor = `${WHITE}`;
4
4
  const headingDisabledColor = `${ATHENS_GREY}`;
5
5
  const bodyBackgroundColor = "#eeeeee";
6
- const borderColor = `${GHOST_GREY}`;
6
+ const borderColor = `${GREY_CHATEAU}`;
7
7
  const focusStyles = `outline: none;`;
8
8
 
9
9
  export const fallbackValues = {
@@ -56,7 +56,6 @@ const RadioSection = ({
56
56
  ariaDescribedBy,
57
57
  isSectionRequired = false,
58
58
  groupedSections,
59
- bottomBorderSize = "2px",
60
59
  ...rest
61
60
  }) => {
62
61
  const [focused, setFocused] = useState(null);
@@ -155,7 +154,7 @@ const RadioSection = ({
155
154
  groupedSections.indexOf(sectionGroup) !==
156
155
  groupedSections.length - 1 && (
157
156
  <SolidDivider
158
- borderSize={bottomBorderSize || "2px"}
157
+ borderSize="2px"
159
158
  color={themeValues.borderColor}
160
159
  />
161
160
  )}
@@ -120,7 +120,6 @@ export const radioSection = () => {
120
120
  staggeredAnimation={boolean("staggeredAnimation", false, "props")}
121
121
  sections={sections}
122
122
  isSectionRequired={true}
123
- borderBottomSize="10px"
124
123
  />
125
124
  <Box />
126
125
  <Box padding="0 1rem" extraStyles="text-align: center;">
@@ -1,9 +1,9 @@
1
- import { WHITE, GHOST_GREY, ATHENS_GREY } from "../../../constants/colors";
1
+ import { WHITE, MANATEE_GREY, ATHENS_GREY } from "../../../constants/colors";
2
2
 
3
3
  const headingBackgroundColor = `${WHITE}`;
4
4
  const headingDisabledColor = `${ATHENS_GREY}`;
5
5
  const bodyBackgroundColor = "#eeeeee";
6
- const borderColor = `${GHOST_GREY}`;
6
+ const borderColor = `${MANATEE_GREY}`;
7
7
  const focusStyles = `outline: none;`;
8
8
 
9
9
  export const fallbackValues = {