@windstream/react-shared-components 0.0.49 → 0.0.51

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": "@windstream/react-shared-components",
3
- "version": "0.0.49",
3
+ "version": "0.0.51",
4
4
  "type": "module",
5
5
  "description": "Shared React components for Kinetic applications",
6
6
  "main": "dist/index.js",
@@ -37,7 +37,7 @@ export const Accordion: React.FC<AccordionProps> = ({
37
37
  <div key={`item-${index}`}>
38
38
  <AccordionComponent
39
39
  title={item.title}
40
- containerClassName="border-0 border-b-[1px]"
40
+ containerClassName="border-0 border-b-[1px] rounded-none"
41
41
  >
42
42
  <Text>{item.description}</Text>
43
43
  </AccordionComponent>
@@ -27,7 +27,7 @@ export const CtaCallout: React.FC<CtaCalloutProps> = ({
27
27
  return (
28
28
  <div className={`${bgColorClasses[background]} component-container`}>
29
29
  <div
30
- className={`${maxWidth ? "mx-auto max-w-120" : ""} flex flex-col ${color == "dark" ? "text-text" : "text-white"} px-5 py-16 lg:px-13 lg:py-24`}
30
+ className={`${maxWidth ? "mx-auto max-w-120" : ""} color-${color} flex flex-col ${color == "dark" ? "text-text" : "text-white"} px-5 py-16 lg:px-13 lg:py-24`}
31
31
  >
32
32
  <Text
33
33
  as={enableHeading ? "h1" : "h2"}