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

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.4",
3
+ "version": "9.3.4-beta.6",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -4,6 +4,7 @@ import { fallbackValues } from "./RadioSection.theme";
4
4
  import SolidDivider from "../../atoms/solid-divider/SolidDivider";
5
5
  import { Box, Stack } from "../../atoms/layouts";
6
6
  import { createIdFromString, wrapIndex } from "../../../util/general";
7
+ import { MANATEE_GREY } from "../../../constants/colors";
7
8
  import {
8
9
  ARROW_DOWN,
9
10
  ARROW_LEFT,
@@ -153,10 +154,7 @@ const RadioSection = ({
153
154
  {sectionGroup.indexOf(section) === sectionGroup.length - 1 &&
154
155
  groupedSections.indexOf(sectionGroup) !==
155
156
  groupedSections.length - 1 && (
156
- <SolidDivider
157
- borderSize="2px"
158
- color={themeValues.borderColor}
159
- />
157
+ <SolidDivider borderSize="2px" color={MANATEE_GREY} />
160
158
  )}
161
159
  </Fragment>
162
160
  ))
@@ -1,9 +1,9 @@
1
- import { WHITE, MANATEE_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 = `${MANATEE_GREY}`;
6
+ const borderColor = `${GREY_CHATEAU}`;
7
7
  const focusStyles = `outline: none;`;
8
8
 
9
9
  export const fallbackValues = {