From d18ead0f48dbefbc87f2695aa9909d3afd2bc641 Mon Sep 17 00:00:00 2001 From: Daniel Darritchon Date: Fri, 17 Oct 2025 13:51:55 -0300 Subject: [PATCH 1/2] ExpandableSection tewaks --- .../__docs__/stories/basic.stories.tsx | 45 ++++++++++++++----- .../expandableSection/expandableSection.tsx | 28 +++++++----- 2 files changed, 53 insertions(+), 20 deletions(-) diff --git a/src/components/expandableSection/__docs__/stories/basic.stories.tsx b/src/components/expandableSection/__docs__/stories/basic.stories.tsx index 92bcd368..07e35668 100644 --- a/src/components/expandableSection/__docs__/stories/basic.stories.tsx +++ b/src/components/expandableSection/__docs__/stories/basic.stories.tsx @@ -3,7 +3,7 @@ import React, {useState} from 'react'; import styled from 'styled-components'; import {Icon} from '../../../../elements/icon/icon'; -import {greys, palette} from '../../../../helpers/colorHelpers'; +import {alphas, greys, palette} from '../../../../helpers/colorHelpers'; import {VisualSizesEnum} from '../../../../helpers/fontHelpers'; import {DefaultStyleProvider} from '../../../../utils/defaultStyleProvider'; import {Button} from '../../../button/button'; @@ -59,7 +59,7 @@ export const Basic: StoryObj = { render: () => ( - + This is the content of the expandable section. It can contain any React elements that you want to display when the section is expanded. @@ -68,6 +68,7 @@ export const Basic: StoryObj = {