@thecb/components 7.12.2-beta.10 → 7.12.2-beta.12

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": "7.12.2-beta.10",
3
+ "version": "7.12.2-beta.12",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -46,7 +46,7 @@ const Alert = ({
46
46
  {textOverride ? (
47
47
  textOverride
48
48
  ) : (
49
- <Stack fullHeight childGap="0.25rem">
49
+ <Stack fullHeight childGap="0">
50
50
  <Text
51
51
  variant={enableSmallText ? "pS" : "p"}
52
52
  color={themeValues.text}
@@ -54,7 +54,7 @@ const Alert = ({
54
54
  >
55
55
  {heading}
56
56
  </Text>
57
- <Text variant="pS" color={themeValues.text}>
57
+ <Text variant="pS" color={themeValues.text} >
58
58
  {text}
59
59
  </Text>
60
60
  {children}
@@ -149,9 +149,9 @@ const ErrorDetails = () => (
149
149
  noBorder
150
150
  enableBoxShadow
151
151
  enableSmallText
152
- innerContentPadding="0 1rem"
152
+ innerContentPadding="0 0.75rem"
153
153
  extraStyles={`min-height: 67px; height: 67px;`}
154
- iconPadding="0 0 0 0.75rem"
154
+ iconPadding="0 0 0 0.25rem"
155
155
  />
156
156
  </Box>
157
157
  );