React Core Changelog
@cfa/react-core
1.2.2-beta.0
Patch Changes
-
#1874
86326b6Thanks @mitchellcarroll! - Resolved a CSS issue that prevented the checkbox from displaying its intended styles when in the indeterminate state. -
#1904
9c8caa0Thanks @mitchellcarroll! - Updated consumer-facing styling forTextAreaandTextAreaInput.TextAreanow uses updated line-height, border color, focus ring, and disabled/read-only background colors.
-
#1902
b9fb378Thanks @stevegreco! - Updated consumer-facing styling forAccordionandBannerMessage.Accordionnow uses updated box-shadow, border, and disabled-state colors.BannerMessagenow uses updated color tokens and more compact padding values.- Other component updates in this release are token migrations with no intended visual changes.
-
#1861
a3b4156Thanks @stevegreco! - Updated React Aria to1.16.0 -
#1903
a279cd1Thanks @stevegreco! - Updated visual styles forButton,LinkButton,Calendar, andRangeCalendar.ButtonandLinkButtondisabled styles now use a lighter disabled background color.CalendarandRangeCalendarreceived minor color refinements, including selected/hover/focus and content color updates.- These calendar visual updates also propagate to
DatePickerandDateRangePickerbecause they compose the calendar components.
-
Updated dependencies [
ac04fcd,445af1c]:- @cfa/[email protected]
1.2.0
Minor Changes
-
#1851
2558eebThanks @stevegreco! - - Added thedesign-tokens-corepackage which contains our new v2 tokens- Updated the
Buttonto use the new spacing tokens
- Updated the
-
#1846
2abfe11Thanks @Dan-Heflin! - Added Typography utility classes and atypographyutility function for consistent text styling.Utility class examples:
ds-typography--bodyds-typography--body-smallds-typography--header-1ds-typography--header-2ds-typography--header-3ds-typography--header-4ds-typography--subtitle-1ds-typography--subtitle-2ds-typography--subtitle-3ds-typography--overline-1ds-typography--overline-2ds-typography--overline-3
Utility function example:
import { typography } from "@cfa/react-core";<p className={typography({ variant: "body" })}>Body text</p><h2 className={typography({ variant: "header2" })}>Section heading</h2><span className={typography({ variant: "overline1" })}>Overline text</span>
Patch Changes
-
#1869
4648962Thanks @stevegreco! - Fixed issues with dependencies -
Updated dependencies [
2558eeb]:- @cfa/[email protected]
1.1.0
Minor Changes
-
#1828
865df96Thanks @stevegreco! - Added newleadingIconprop to theSelect.Buttoncomponent. You can now easily add aleadingIconto anySelectcomponent<Select.Root><Select.Label>Location</Select.Label><Select.Button leadingIcon={<Restaurant color="primary" />}><Select.Value /></Select.Button><Select.Popover><Select.List><Select.Item id="1">Downtown</Select.Item><Select.Item id="2">Uptown</Select.Item><Select.Item id="3">Midtown</Select.Item></Select.List></Select.Popover></Select.Root> -
#1800
1791b6cThanks @mitchellcarroll! - Added newCartInputcomponent. Supports color (primary/secondary), size (sm/md/lg), and optionalonRemovebehavior where a trash icon replaces the decrement button when the value reaches one above theminValue. Includes form field integration with label, description, and errorMessage support.const [quantity, setQuantity] = useState(1);<CartInputlabel="Quantity"value={quantity}onChange={setQuantity}onRemove={() => console.log("removed")}/>; -
#1797
10e879fThanks @stevegreco! - Added newContextualHelpcomponent as an accessible alternative to theTooltip. The component provides two variants,infoandhelp. These variants determine the icon that is used. TheTooltipis generally not a very accessible component and is not usable on mobile devices, this component provides an accessible and cross-platform alternative.<ContextualHelp aria-label="need-help"><Heading variant="headline4">Need Help?</Heading>If you're having issues accessing your account, contact our customer supportteam for help.</ContextualHelp>
Patch Changes
-
#1816
06e2e59Thanks @stevegreco! - RemoveddefaultOpenandisOpenfrom theCombobox, these props do not work with this component -
#1814
97d335dThanks @stevegreco! - Updated react-aria dependencies -
#1849
27d7c19Thanks @stevegreco! - Fixed issue with duplicate keys on theSlidercomponent -
Updated dependencies []:
- @cfa/[email protected]
- @cfa/[email protected]
1.0.4
Patch Changes
- Updated dependencies [
471c05f]:- @cfa/[email protected]
- @cfa/[email protected]
1.0.3
Patch Changes
- #1771
874773dThanks @stevegreco! - Updated React Aria package versions
1.0.2
Patch Changes
-
#1765
5434c0bThanks @stevegreco! - Added beta support for theVirtualizercomponent. You can now wrap certain collection components with theVirtualizerfor Virtualization support.Here is a basic example, documentation is coming soon.
import {UNSTABLE_Virtualizer as Virtualizer,UNSTABLE_ListLayout as ListLayout,} from "@cfa/react-core";<Combobox.Root><Combobox.Label>Sauces</Combobox.Label><Combobox.Input /><Combobox.Button /><Combobox.Popover><Virtualizer layout={ListLayout}><Combobox.List items={items}>{(item) => <Combobox.Item>{item.name}</Combobox.Item>}</Combobox.List></Virtualizer></Combobox.Popover></Combobox.Root>; -
#1764
ac15906Thanks @mitchellcarroll! - Stepper: Fixed bug wherechildrenprop was accepted but never rendered
1.0.1
Patch Changes
- #1758
d884389Thanks @stevegreco! - Added therenderEmptyStateprop to theSelectandCombobox. This can be used to render a specific component when no results are available.
1.0.0
Major Changes
-
#1751
be5937cThanks @stevegreco! - # 🚨 Breaking Changes 🚨- Removed deprecated
variantprop from theTooltip - Removed deprecated
orientationprop from theCheckboxGroupandRadioGroup - Removed deprecated
variantprop from theMessageBlockin favor of theseverityprop - Removed the
UNSTABLEprefix from theDatePickercomponent, you can now import the standard component
import { DatePicker } from "@cfa/react-core"; - Removed deprecated
0.29.1
Patch Changes
-
#1746
65e9a91Thanks @stevegreco! - Reverse the positioning of the close button in theDrawer, placing it on the outside edge -
#1733
e2bc35bThanks @mitchellcarroll!- Updated
DatePickerandDateRangePickerto provide easier overrides for the width of the component - Fixed issue with validations not resetting when clearing the value in the
DatePickerandDateRangePicker
- Updated
0.29.0
Minor Changes
- #1740
df7deadThanks @stevegreco! - AddedUNSTABLE_DropZoneto support Signal, this component should be used with caution, and is subject to change at any time.
0.28.2
Patch Changes
- #1731
91ef659Thanks @mitchellcarroll! - Fixes the internal padding for the SearchInput
0.28.1
Patch Changes
- Updated dependencies []:
- @cfa/[email protected]
- @cfa/[email protected]
0.28.0
Minor Changes
-
#1718
e2431dfThanks @mitchellcarroll! - Adds new TextField component. -
#1717
b2635cfThanks @mitchellcarroll! - Adds NumberField component to allow users to input and edit numeric values. -
#1661
79d60b2Thanks @mitchellcarroll! - Exports new Calendar, RangeCalendar, CalendarGrid, and CalendarCell components
Patch Changes
-
#1722
f1cc1f3Thanks @mitchellcarroll! - DatePicker & DateRangePicker: removes inconsistent focus styling for the calendar icon. -
Updated dependencies [
cd68a51]:- @cfa/[email protected]
- @cfa/[email protected]
0.27.0
Minor Changes
-
#1715
b08a1c2Thanks @stevegreco! - Added newpanelPaddingprop to theAccordion.Rootandpaddingto theAccordion.Panel. . These props will help control the padding inside of the Accordion panels -
#1706
d66adc0Thanks @stevegreco! - Addedalignmentprop to theTextInputto allow for right alignment of the text, similar to theNumberInput
0.26.0
Minor Changes
- #1684
8cde6e3Thanks @stevegreco! - Added support for sections/groups in theListBox,GridList,SelectandComboboxcomponents
0.25.2
Patch Changes
- #1698
9047135Thanks @stevegreco! - Added relative positioning to theRadioto a fix positioning bug with the hidden input
0.25.1
Patch Changes
-
#1663
56eaf81Thanks @stevegreco! - Fixed issue withAccordionoutline-offset -
#1668
561ca40Thanks @stevegreco! - Fixed issue with the gap in theBannerMessagethat caused extra space between components that are passed aschildren
0.25.0
Minor Changes
-
#1645
4360225Thanks @mitchellcarroll! - Modal: Fixed an issue where inputs inside a modal were being pushed off screen when the virual keyboard was rendered on tablets and phones. -
#1603
9f0ba71Thanks @mitchellcarroll! - Add support for aligning tabs. A new alignment prop on the Tabs component allows consumers to control how tab labels are aligned. Supported values are left (default), center, and right. Existing behavior stays the same unless the prop is provided, giving more flexibility for different layout needs. -
#1640
9a99303Thanks @mitchellcarroll! - Adds character counter to the TextInput component. Can be used by adding hasCharacterCount prop + maxLength prop.
Patch Changes
-
#1543
3bc359dThanks @mitchellcarroll! - Adds Table component as a wrapper around React Aria table primitives. -
#1625
be92114Thanks @stevegreco! -Surface: updatedbackground-colorto bebase-1 -
#1647
e9473ddThanks @stevegreco! - Adjusteddisabledstyles for theSwitchlabel to ensure it meets proper contrast ratio -
#1607
1553615Thanks @stevegreco! - Field Changes- Added global variables for our form fields to more easily control them all once
- Adjusted
BaseButtonCSS to prevent conflicts withButtonvariants - Changed the padding below the
CheckboxGroupandRadioGrouplabel from12pxto4px - Moved the
compactprop onto theBaseDateInput(internal) to control the padding as opposed to on theDateInputandTimeInputcomponents - Adjusted widths of form fields to be more consistent
0.24.1
Patch Changes
- #1589
2b3c2dfThanks @stevegreco! - Fixed small issue with theSelectfocus outline offset
0.24.0
Minor Changes
- #1582
47cbdf5Thanks @stevegreco! - AddedoffsetandcrossOffsetprops to theMenu.Popoverto allow for more custom positioning
Patch Changes
-
#1559
84cafffThanks @stevegreco! - Removed incorrect focus state styling onCalendarCelland theIconbuttonused in theDatePicker -
#1567
582be41Thanks @stevegreco! - Fixed multiple styling issues with the DateInput- Incorrect focus styling
- Incorrect placeholder styling when the field is disabled
-
#1552
b2c8ef0Thanks @stevegreco! - Enhanced focus states- Updated colors of the focus ring to ensure that it meets color contrast guidelines for accessibility
- Reduced the focus ring size from
4pxto2pxand adjusted offset to properly align with border for each component - Added a positive offset to the
Buttoncomponents to provide a visual gap between the focus ring and theButton
-
Updated dependencies [
b2c8ef0]:- @cfa/[email protected]
0.23.0
Minor Changes
-
#1535
0e1ecfaThanks @stevegreco! - Removedmultilinesupport on theTextInputcomponent and separated it into a newTextAreaInputcomponent.As a result of this change, the
multilineandhasCharacterCountprops have been removed from the standardTextInput.
Patch Changes
-
#1542
f6e0979Thanks @stevegreco! - Fixed issue with theButtonwidth not respecting the parent containers width -
#1540
517eea9Thanks @stevegreco! - -Avatar.Rootwas unintentionally overriding anyrefthat was forwarded in, causing unintended side effects with components likeFocusableandPressable- Added
forwardRefto theAvatar.Rootto provide better compatability with React 18 and ourFocusableandPressablecomponents
- Added
0.22.1
Patch Changes
- #1536
c810051Thanks @stevegreco! - Fixed issue with internal context of theSelectcomponent
0.22.0
Minor Changes
-
#1530
8313b04Thanks @stevegreco! - Various quality of life updates forSelectandComboboxSelect
- Added
compactandshouldFlipprops to theSelect.Rootto provide better DX - Enhanced the
max-heightfunctionality to utilize themaxHeightprop on theSelect.Popoverto provide more stable sizing - Added some basic layout styling to the
Select.ItemandSelect.Valueto allow for easier composition of additional elements - Updated docs to reflect some deprecated props. These changes were made to better align with the native
selectcomponent and support multi selectiondefaultSelectedKey—>defaultValueselectedKey—>valueonSelectionChange—>onChange
Combobox
- Enhanced the
max-heightfunctionality to utilize themaxHeightprop on theCombobox.Popoverto provide more stable sizing - Added
compact,shouldFlip,disableIconAnimation,iconVariantandisRequiredto theCombobox.Rootto provide a better DX and prevent having to add these to nested components - Added some basic layout styling to the
Combobox.Itemto allow for easier composition of additional elements
- Added
-
#1532
817e692Thanks @stevegreco! - Addedrefto various component types and forwarded it onto the correct element where appropriate.BaseButtonButtonCheckboxCheckboxGroupComboboxIconButtonInputNumberInputRadioGroupSearchInputSelectSliderTextAreaTextInput
0.21.1
Patch Changes
- #1522
2fd3236Thanks @stevegreco! - - Added deprecation for theorientationprop on theCheckboxGroup- Added deprecation for the
orientationprop on theRadioGroup
- Added deprecation for the
0.21.0
Minor Changes
- #1515
3d6ffd0Thanks @mitchellcarroll! - Add isDateHighlighted prop to DatePicker and DateRangePicker to enable highlighting specific dates in Calendar and RangeCalendar.
Patch Changes
-
#1519
dee1d74Thanks @stevegreco! - Fixed various issues with theSelectcomponent- Added
text-align: leftto theSelect.Buttonto properly align text when wrapping to multiple lines - Fixed issue where the focus styling was being displayed on the component after selecting an item.
- Added
0.20.1
Patch Changes
- #1512
2c6012bThanks @stevegreco! - Added relative positioning to the Checkbox to fix positioning bug with the hidden input
0.20.0
Minor Changes
-
#1479
60a7623Thanks @mitchellcarroll! - Exports new DateRangePicker and DateRangeField components. Marking as “Unstable” to gather feedback from adopters -
#1485
0cdab78Thanks @mitchellcarroll! - Exports a new TimeInput component -
#1491
a492de8Thanks @mitchellcarroll! - Adds support for highlighting dates in the Calendar component via an isDateHighlighted option, allowing adopters to mark specific days with a custom style. -
#1438
60e2dfbThanks @mitchellcarroll! - Update DatePicker to follow the current component composition pattern and introduces DateField components for composability/customizations. -
#1498
295303eThanks @mitchellcarroll! - •Added a Clear button to both DatePicker and DateRangePicker.•Introduced a new InputGroup component within the DateField collection to wrap the input, clear button, and calendar trigger, providing greater control over subcomponent composition.•Applied minor style adjustments to DatePicker, setting the default max width to 400px based on feedback from @Dan-Heflin. -
#1496
b761d4eThanks @stevegreco! - Updatedreact-ariadependencies to most recent versions- Added multiple
Autocompletestories to show usage with different components - Added a composed example of a
Selectthat supports multiple selections - Replaced
@react-aria/utilswithreact-ariafor theuseIdhook - Updated the
Tabscomponent to utilize the newSelectionIndicatorcomponent and added the appropriate animation. - Updated the
Tabswith some other design enhancements, specifically the height was changed from42pxto40px, and we updated the hover styling to change the font-color instead of adding an underline. - Updated the
Accordionanimations to use the new CSS custom properties that RAC makes available for animating. It should now properly animate with thepaddingworkaround that we previously used.
- Added multiple
-
#1444
20f1827Thanks @stevegreco! - Added new TagGroup component
Patch Changes
-
#1484
79ce531Thanks @stevegreco! - Fixed CSS bugs withListBox,GridList,SelectandCombobox- Resolved
border-radiusissue with theListBoxandGridList - Resolved
overflowissue with theSelectandCombobox
- Resolved
-
#1442
16ba3b2Thanks @mitchellcarroll! - Refactors Date and Time components to remove unnecessary prop passing between components. -
#1471
d44cb38Thanks @stevegreco! - Removed clsx dependency -
#1495
5af1835Thanks @stevegreco! - Added custom clear button to theSearchInputto provide better browser/framework compatibility -
#1473
f143cedThanks @stevegreco! - Fixed issue withBreadcrumbscurrent link font color -
#1483
038292fThanks @mitchellcarroll! - Consolidates css in the Date and Time components -
Updated dependencies [
8a61111]:- @cfa/[email protected]
- @cfa/[email protected]
0.19.3
Patch Changes
- #1466
e8871c1Thanks @stevegreco! - Moved exports for@internationalized/dateinto ourserverexports so that they can be accessed in server side code.
0.19.2
Patch Changes
- #1460
1de1102Thanks @stevegreco! - Fixed issue with Tabtext-decorationwhen using thehrefattribute
0.19.1
Patch Changes
-
#1455
a6db128Thanks @stevegreco! - Fixed various CSS bugs- Removed
background-colorfrom theTabscomponent - Updated
Tabsto usecursor: pointer - Removed
background-colorfrom the defaultAccordionvariant - Fixed background colors for the states of
Checkboxwhen usingisIndeterminate
- Removed
-
#1448
0de40c0Thanks @stevegreco! - Updated css font properties to use current design tokens -
#1420
7af5fc6Thanks @mitchellcarroll! - Flattened DatePicker CSS structure to make custom class overrides easier and fixed an input min-width issue caused by nested styles. -
#1449
b62e1f0Thanks @stevegreco! - Exporting thePressEventtype -
#1427
03df90fThanks @stevegreco! - Fixedmax-heightissue with theSelectandComboboxdropdowns
0.19.0
Minor Changes
-
#1411
90c0c86Thanks @stevegreco! - 🚨 Breaking ChangeThe
Tooltipdesign has been updated to provide a better user experience on light backgrounds. The default background color of theTooltipis now dark, with light text. You can view these changes on the docs site.The old variant will still be available for a limited time using the
variant="light"prop. This prop will eventually be removed in a later release.To retain an old design, you must add the
variant="light"prop.// New Dark Variant - Default<Tooltip.Content>Tooltip Content</Tooltip.Content>// Old Legacy Variant<Tooltip.Content variant="light">Tooltip Content</Tooltip.Content>
0.18.0
Minor Changes
-
#1382
2e8b99cThanks @CaseyGarland! - - LoadingIndicator: now uses accessibility roleprogressbar(wasstatus).- PageLoader: now uses accessibility role
progressbar(wasstatus).- Removed
ariaLabel(uses standardaria-label).
- Removed
- PageLoader: now uses accessibility role
-
#1409
47e0e02Thanks @stevegreco! - Updated theStepper.Stepto forward its ref, allowing the use of thePressablecomponent -
#1390
a8e0d95Thanks @stevegreco! - 🚨 Breaking Change- Removed
Breadcrumbs.Separatorand now just render it automatically - Changed Separator from a custom icon to the standard font chevron
- Updated the relevant docs
- Removed
-
#1387
c159bfaThanks @stevegreco! - -Slidercomponent has been refactored to use a compound component API, allowing for more flexible and composable usage. The new structure separates the Slider into separate components such asSlider.Root,Slider.Label,Slider.Output,Slider.Track,Slider.Thumb, andSlider.Description.- Old usage:
<Slider label="Slider label" description="Helper text" />- New compound usage:
<Slider.Root><Slider.Label>Slider label</Slider.Label><Slider.Output /><Slider.Track><Slider.Thumb /></Slider.Track><Slider.Description>Helper text</Slider.Description></Slider.Root>-
Slider“range” functionality has also been added, allowing users to select a range of values by passing an array to thedefaultValueorvalueprop and using twoSlider.Thumbcomponents.- Example of a range slider:
<Slider.RootdefaultValue={[10, 30]}minValue={0}maxValue={50}step={5}marks><Slider.Label>Range Slider</Slider.Label><Slider.Output /><Slider.Track><Slider.Thumb index={0} /><Slider.Thumb index={1} /></Slider.Track><Slider.Description>Select a value range</Slider.Description></Slider.Root>
-
#1386
3709bfeThanks @stevegreco! - AddedisDisabledprop to theLabelcomponent
Patch Changes
-
#1395
a989abcThanks @stevegreco! - Optimized CSS variables in theTooltipto ensure the arrow matches the tooltip background color -
#1333
493ac74Thanks @vincevahala! -Select: flatten CSS for better adopter customizability. -
#1403
053bbdcThanks @stevegreco! - Added defaultaria-labelto theLoadingIndicatorcomponent, this can be overwritten by a user passed prop
0.17.0
Minor Changes
-
#1371
4e60ca5Thanks @stevegreco! - Updated React Aria libraries to the most recent versions -
#1330
e3ee562Thanks @vincevahala! - Removed isDisabled prop from theLabelcomponent and subsequent components using the Label:CheckboxGroup,Combobox,Label,NumberInput,RadioGroup,SearchInput,Select,TextInput,DatePicker,DateInput,DateRangePicker,TimeInput.
Patch Changes
-
#1319
87db1feThanks @vincevahala! -DatePicker:- Updated
BaseButtonto useIconButton. - Added correct
isDisabledstate and styling toIconButton. - Disables the
IconButtonin theisReadOnlystate.
- Updated
0.16.2
Patch Changes
-
#1298
ef86926Thanks @stevegreco! - Updated internal dependencies -
Updated dependencies [
0b0f9c9,ef86926]:- @cfa/[email protected]
- @cfa/[email protected]
0.16.1
Patch Changes
-
#1294
b50dc05Thanks @stevegreco! - Movedreactandreact-domtodevDependenciesto ensure they resolve correctly as peers -
#1290
5cc4e61Thanks @stevegreco! -Select: Fixed an issue that caused the scrollbar to extend past the bottom of the popover
0.16.0
Minor Changes
-
#1206
0c757fbThanks @vincevahala! - - CreateSteppercomponent and document examples.- Create
useStepStategeneric hook and documents examples.
- Create
-
#1283
6be1789Thanks @stevegreco! -TextInput: No longer renders the character count by default when using themaxLengthprop, a newhasCharacterCountprop renders the counter -
#1286
5be44caThanks @stevegreco! - Added newDescriptionandErrorcomponents for theSelectandCombobox -
#1280
ab6b683Thanks @stevegreco! - Removed UNSTABLE_onScrollEnd and UNSTABLE_onScrollEndOffset from the Listbox and Combobox components
Patch Changes
-
#1275
4f3a17bThanks @vincevahala! - FlattenListBoxCSS, specifically for the.listBoxItem, enabling better adopter styling control. -
#1270
8fb071eThanks @vincevahala! - Add JSDoc descriptions toStandardDOMProps. -
#1284
e571a1fThanks @stevegreco! -MessageBlock: Flattened the CSS for theMessageBlock.Titlecomponent for easier overrides. -
#1273
03a8644Thanks @vincevahala! - Thedata-successattribute is added when theisSuccessboolean prop is true on the following components for state management and styling purposes:CheckboxComboboxNumberInputRadioGroupSearchInputSelectTextTextAreaTextInput
0.15.0
Minor Changes
-
#1258
d9e7b2cThanks @vincevahala! - -Input: refactored to usedata-successanddata-alignmentattributes.Accordion: changedelevatedItemsprop toisElevated.
-
#1218
ec4f149Thanks @stevegreco! - - EnhancedAccordion.Itemto be used independently from theAccordion.Root. This is useful if you need to use a singularAccordion.Item. Overall this better encapsulates the component and allows more in depth customizations to the CSS.Accordion.Itemnow has anelevatedprop that can be used to render the elevated variant.
Patch Changes
-
#1231
75c866cThanks @vincevahala! - FlattenCardCSS for better adopter use. -
#1252
5d271e3Thanks @stevegreco! - Fixed issue with theModalanimation causing theComboboxandSelectwidths to be calculated incorrectly. The “zoom” animation was causing the--trigger-widthvariable to calcluate before the animation was finished, causing it to be too small.This issue was resolved by removing the “zoom” animation and replacing it with the “fade” that was already being used for the Overlay.
-
#1265
71a9877Thanks @stevegreco! - AdjustedModalCSS for better adopter use and customization -
#1245
a1ab066Thanks @vincevahala! - FlattenComboboxCSS for better adopter customizing. -
#1251
b0934b1Thanks @stevegreco! - Added afilledclass to theChipfor the default variant -
#1243
814ba72Thanks @stevegreco! - Updated the@react-aria/test-utilsdependency to be a dev dependency -
#1233
53b167dThanks @stevegreco! - Simplified CSS forBannerMessageby flattening its DOM structure -
#1225
50d1f23Thanks @stevegreco! - Updated custom CSS properties for theBadgecomponent to be more flexible -
#1250
87bd7dbThanks @stevegreco! - Updated React Aria dependencies to latest versions -
#1227
c90fd95Thanks @vincevahala! - FlattenBreadcrumbsCSS for better adopter customization.
0.14.2
Patch Changes
- #1217
123fffcThanks @stevegreco! - Fixed issue withBaseButtonborder styling that prevented adding border styles with TailwindCSS
0.14.1
Patch Changes
- #1199
8216dc4Thanks @stevegreco! - - Adjustedoutline-offseton theAccordion.Itemto ensure proper focus styling- Added open animation when the
Accordion.Itemopens
- Added open animation when the
0.14.0
Minor Changes
- #1183
a05062cThanks @stevegreco! - UpdatedSelectto ensure it does not render aDialogin thePopover
Patch Changes
-
#1177
461dc39Thanks @stevegreco! - Fixed issues related to labels forCheckboxandRadio- Updated
Checkboxfont-weightto500 - Updated
Radiofont-weight,font-sizeand alignment properties to ensure center alignment
- Updated
-
#1172
a267c6bThanks @stevegreco! - Fixed height ofSwitchcomponent and changed from22pxto24px
0.13.0
Minor Changes
- #1163
2743101Thanks @vincevahala! - RemoveReact.HTMLAttributes<HTMLDivElement>fromSurfaceand useStandardDOMPropsinternal props in its place’.
Patch Changes
- #1169
6ce8734Thanks @stevegreco! - Added missingbackground-colorfor theInputcomponent to fix issue with Tailwind base style conflicts
0.12.0
Minor Changes
-
#1073
70efb42Thanks @stevegreco! - RemovedshouldCloseOnInteractOutsidefrom components using theDialog, this prop is different fromisDismissablewhich allows the user to close theModalcomponents by clicking outside. -
#1144
4c93759Thanks @stevegreco! - Removed internal CSS layers to prevent conflicts withtailwindcss@3 -
#1094
4a700dcThanks @stevegreco! - Exporting the @internationalized/date package from @cfa/react-core for version unity -
#1127
8878f65Thanks @vincevahala! - 🚨 BREAKING CHANGE: UpdatedTooltipAPIWe have updated the
TooltipAPI to be more consistent with other components and provide better control over placement and styling.Previous API:
<Tooltip.Trigger><Button>Hover me</Button><Tooltip>Tooltip Content</Tooltip></Tooltip.Trigger>New API:
<Tooltip.Root><Button>Hover me</Button><Tooltip.Content>Tooltip Content</Tooltip.Content></Tooltip.Root> -
#1115
836d5a6Thanks @vincevahala! - Remove CustomCSSProperties from Divider. -
#1126
71272a5Thanks @stevegreco! - Added two new features:useFilter- A new hook that simplifies text filtering in components, supporting case sensitivity options and locale-aware string matchingAutocomplete- A new component that combines input fields with filtered suggestions, enabling searchable dropdown menus and command palettes
-
#1131
4502b60Thanks @vincevahala! - Chip:- Removed
React.DetailedHTMLPropsofHTMLDivElement - Added the internal
StandardDOMProps
- Removed
-
#1065
0ee191eThanks @vincevahala! - Refactored Avatar into compound API pattern and added documentation. -
#1078
c64382cThanks @stevegreco! - 🚨 BREAKING CHANGE- Updated the
GridListandListBoxwith a new composition API
Before
<ListBox><ListBox.Item>Item 1</ListBox.Item><ListBox.Item>Item 2</ListBox.Item></ListBox><GridList><GridList.Item>Item 1</GridList.Item><GridList.Item>Item 2</GridList.Item></GridList>After
<ListBox.Root><ListBox.Item>Item 1</ListBox.Item><ListBox.Item>Item 2</ListBox.Item></ListBox.Root><GridList.Root><GridList.Item>Item 1</GridList.Item><GridList.Item>Item 2</GridList.Item></GridList.Root> - Updated the
-
#1044
9f8a2aaThanks @stevegreco! - AddedLinkButtoncomponent -
#1072
f80ff36Thanks @stevegreco! - 🚨 BREAKING CHANGE: UpdatedPopoverAPIWe have updated the
PopoverAPI to be more consistent with other components and provide better control over placement and styling.In the previous iteration of the
Popover, the component structure was less clear. Here is the previous API for thePopover.<Popover.Trigger><Button>Open Popover</Button><Popover>Popover Content</Popover></Popover.Trigger>The new API provides a more consistent component structure and improved naming.
<Popover.Root><Button>Open Popover</Button><Popover.Panel>Popover Content</Popover.Panel></Popover.Root>For more advanced use cases, we’ve exposed the composition pattern with separate components.
<Popover.Root><Button>Open Popover</Button><Popover.Wrapper><Popover.Dialog>Advanced Composition</Popover.Dialog></Popover.Wrapper></Popover.Root>However, we recommend using the simplified
Popover.Panelcomponent for most use cases. -
#1114
b392dc5Thanks @vincevahala! -BadgeComponent:- Removed
CustomCSSProperties. - Removed
DetailedHTMLAttributesofHTMLSpanElementprops. - Added internal
StandardDOMProps.
- Removed
-
#1118
32a9012Thanks @vincevahala! -LoadingIndicator:- Remove
React.HTMLAttributes<HTMLDivElement>. - Add
StandardDOMPropsandLabelingProps.
- Remove
Patch Changes
-
#1113
507a8e7Thanks @stevegreco! - - AlignedInputplaceholderandread-onlystyles with the proper design tokens -
#1096
0bbb907Thanks @stevegreco! - Added docs for theBreadcrumbscomponent -
#1161
927512aThanks @stevegreco! - Added missing custom className toModal.Overlay -
#1134
9535a37Thanks @stevegreco! - Updatedreact-ariapackage versions for latest release[email protected]@internationalized/[email protected]@react-aria/[email protected]@react-aria/utils@^3.29.0@react-stately/[email protected]
You can find the most recent release notes here
-
#1092
e33a0c7Thanks @stevegreco! - Fixed issue withsmsize prop for theToggleButton -
#1068
e43bddbThanks @vincevahala! - Add color prop to PageLoader. -
#1132
fcdc870Thanks @vincevahala! - [Bug]: Conditionally render the correct icon (check, dash, or no icon) in theCheckboxcomponent, fixing a bug where it appeared to be checked whenisDisabledandisReadOnly. -
#1137
55c1a19Thanks @vincevahala! - AddCheckboxandCheckboxGroupREADME and document examples -
#1113
507a8e7Thanks @stevegreco! - Addedrequiredstyles to theSearchInput -
#1073
70efb42Thanks @stevegreco! - Exported proper props for theModalcomponents
0.11.0
Minor Changes
-
#961
13ff7d4Thanks @stevegreco! - - RemovedonClickprop from interactive components to ensure consistent handling of click events usingonPressas suggested by the React Aria team:Select.ButtonLinkToggleButtonToggleButtonGroup
New React Aria Prop Updates
- Added
createCalendarprop to Calendar components, enabling custom calendar implementations via(identifier: CalendarIdentifier) => Calendarfunction - Added
escapeKeyBehaviorprop to ListBox components to control clearing selection on Escape key press (“clearSelection” | “none”) - Deprecated
UNSTABLE_portalContainerprop across all overlay components (Modal, Popover, Tooltip) in favor of usingUNSAFE_PortalProvider
-
#910
126c4d1Thanks @stevegreco! - AddedBreadcrumbsComponent -
#977
8999b46Thanks @stevegreco! - 🚨 BREAKING CHANGE: Updated composition API forCardcomponentThis change adopts a compound component pattern for the Card component, making the API more explicit and consistent with other components in the design system.
Before:
<Card outlined><Card.Content><Card.Title>Chick-fil-A Cool Wrap</Card.Title></Card.Content></Card>After:
<Card.Root outlined><Card.Content><Card.Title>Chick-fil-A Cool Wrap</Card.Title></Card.Content></Card.Root>Changes include:
- Renamed the main
Cardcomponent toCard.Root - Moved types into
types.ts - Updated all internal implementations and tests to use the new API
- Documentation reflects the new compound component pattern
- Renamed the main
-
#910
126c4d1Thanks @stevegreco! - AddedLinkcomponent -
#1051
7729c60Thanks @vincevahala! - - Component API changes: Updated component toMessageBlock.Rootto follow compound component pattern.- Prop changes: Remove
React.HTMLAttributes<HTMLDivElement>fromMessageBlockProps, and use the internalStandardDOMPropsandLabelingProps.
- Prop changes: Remove
-
#843
f089a1eThanks @stevegreco! - Updated to[email protected]and[email protected] -
#920
0c9bad4Thanks @stevegreco! - 🚨 BREAKING CHANGE:varianthas been marked as deprecated and changed toseverityon theMessageBlock -
#1043
0775adbThanks @stevegreco! - 🚨 BREAKING CHANGE: UpdatedDrawerAPIWe have updated the
DrawerAPI to be more user friendly and provide a better default experience.In the previous iteration of the
Drawer, some of the components were obscured behind the scenes, here is the previous API for theDrawer.<Drawer.Trigger><Button>Open Drawer</Button><Drawer>Drawer Content</Drawer></Drawer.Trigger>The new API involves more components, but also provides more control over the component itself, along with the styling.
<Drawer.Root><Button>Open Drawer</Button><Drawer.Tray>Drawer Content</Drawer.Tray></Drawer.Root>✅ New Feature
There is a
Drawer.Overlaythat is available as an optional component. This would only ever be needed if you needed to make some sort of customization to theOverlayitself. We do not recommend using this unless there is a specific reason to do so.<Drawer.Root><Button>Open Drawer</Button><Drawer.Tray>Drawer Content</Drawer.Tray></Drawer.Root>The main change here is
- The
Drawerpreviously combined together theOverlayand theDialog, now those are independent of each other for greater control
- The
-
#988
d4ed523Thanks @stevegreco! - Add CSS Layers- Added
reset,baseandcorelayers
- Added
-
#1045
45d41c7Thanks @vincevahala! - Remove React.HTMLAttributesfrom BannerMessage Props. -
#960
4a6191eThanks @stevegreco! - 🚨 BREAKING CHANGE: Updated composition API forAccordioncomponentThis change adopts a compound component pattern for the Accordion component, making the API more explicit and consistent with other components in the design system.
Before:
<Accordion><Accordion.Item><Accordion.Trigger>Item 1</Accordion.Trigger><Accordion.Panel>Content 1</Accordion.Panel></Accordion.Item></Accordion>After:
<Accordion.Root><Accordion.Item><Accordion.Trigger>Item 1</Accordion.Trigger><Accordion.Panel>Content 1</Accordion.Panel></Accordion.Item></Accordion.Root>Changes include:
- Renamed the main
Accordioncomponent toAccordion.Root - Export types for all subcomponents:
AccordionTriggerProps,AccordionPanelProps,AccordionItemProps - Updated all internal implementations and tests to use the new API
- Documentation reflects the new compound component pattern
- Renamed the main
-
#987
5af2dacThanks @stevegreco! - 🚨 BREAKING CHANGE: UpdatedComboBoxandSelectto use compound component patternBefore:
import { ComboBox } from "@cfa/react-core";<Select items={sauces} label="Select a sauce">{(sauce) => <Select.Item id={sauce.id}>{sauce.name}</Select.Item>}</Select>;<ComboBox items={sauces} label="Select a sauce">{(sauce) => <ComboBox.Item id={sauce.id}>{sauce.name}</ComboBox.Item>}</ComboBox>;After:
import { ComboBox } from "@cfa/react-core";<Combobox.Root><Combobox.Label>Sauces</Combobox.Label><Combobox.Input /><Combobox.Button /><Combobox.Popover><Combobox.List items={sauces}>{(sauce) => <ComboBox.Item id={sauce.id}>{sauce.name}</ComboBox.Item>}</Combobox.List></Combobox.Popover></Combobox.Root>;import { Select } from "@cfa/react-core";<Select.Root><Select.Label>Select</Select.Label><Select.Button><Select.Value /></Select.Button><Select.Popover><Select.List items={sauces}>{(sauce) => <Select.Item id={sauce.id}>{sauce.name}</Select.Item>}</Select.List></Select.Popover></Select.Root>;✅ New Features
New component has been added
ClearButtonis now available for both theComboboxandSelect. This new button can be used anywhere within theSelect.Rootand will clear the stateonPress. This was previously available, but you would have to use the component in a controlled state, and write this logic yourself. This provides a “batteries included” solution.import { Select } from "@cfa/react-core";<Select.Root><Select.Label>Select</Select.Label><Select.Button><Select.Value /></Select.Button><Select.ClearButton>Reset</Select.ClearButton><Select.Popover><Select.List><Select.Item id="1">Item 1</Select.Item></Select.List></Select.Popover></Select.Root>;Key Changes:
- Renamed
ComboBoxtoComboBox.Root - Rename
SelecttoSelect.Root - Added a
ClearButtonto both theComboboxandSelectfor enhancement composability. This new component hooks into the context of theCombobox/Selectto allow someone to clear the state. - Updated Stories and Tests to use the new structure
- Renamed
-
#993
e3884f0Thanks @vincevahala! - 🚨 BREAKING CHANGE: RefactoredTabscomponent to adopt a compound component pattern:TabsbecomesTabs.RootTab.ListbecomesTabs.ListTabbecomesTabs.ItemTab.PanelbecomesTabs.Panel
Add README to
Tabs:- Add prop table
- Add examples
- [INTERNAL] Remove autodocs from SB
-
#915
ee2e9a3Thanks @stevegreco! - 🚨 BREAKING CHANGE: UpdatedModalAPIWe have updated the
ModalAPI to be more user friendly and provide a better default experience.In the previous iteration of the
Modal, some of the components were obscured behind the scenes, here is the previous API for theModal.<Modal.Trigger><Button>Open Modal</Button><Modal>Modal Content</Modal></Modal.Trigger>The new API involves more components, but also provides more control over the component itself, along with the styling.
<Modal.Root><Button>Open Modal</Button><Modal.Dialog><Modal.Content>Modal Content</Modal.Content></Modal.Dialog></Modal.Root>✅ New Feature
There is a
Modal.Overlaythat is available as an optional component. This would only ever be needed if you needed to make some sort of customization to theOverlayitself. We do not recommend using this unless there is a specific reason to do so.<Modal.Root><Button>Open Modal</Button><Modal.Overlay><Modal.Dialog><Modal.Content>Modal Content</Modal.Content></Modal.Dialog></Modal.Overlay></Modal.Root>The two main changes here are
- The
Modalpreviously combined together theOverlayand theDialog, now those are independent of each other for greater control - We now provide the
Modal.Contentcomponent that provides the default layout experience for theModalas defined in the Design System. It provides basicpaddingand contentwidthproperties.
- The
Patch Changes
-
#1021
44cf6feThanks @vincevahala! - - Create PageLoader README.- Adjust
PageLoaderPropsto be more explicit in prop usage.- Add
StandardDOMPropsandLabelingPropsfrom internal types. - Remove prop extension of
React.HTMLAttributes<HTMLDivElement>.
- Add
- Adjust
-
#946
3c79268Thanks @stevegreco! - Fixedgapissue on the defaultAccordionvariant to ensure correct spacing -
#1054
c847b4aThanks @stevegreco! - Adjusted margin onRadioGroupandCheckboxgroup -
#935
8669dc8Thanks @stevegreco! - Updated React Aria to v1.8- Omitted the new
onClickhandler from theButton, the suggested approach is to utilizeonPress
- Omitted the new
-
#1032
3d542d6Thanks @vincevahala! - Add RadioGroup README. -
#1050
425bdfdThanks @vincevahala! - Add Switch README and examples. -
#1010
fadae72Thanks @stevegreco! - Fixed left padding on theSearchInputwhen using thecompactprop -
#902
0b2c0ccThanks @vincevahala! - AddCheckboxGroupREADME -
#937
12cc071Thanks @stevegreco! - Updated prop data forLink,BreadcrumbandMessageBlock -
#1057
29f6bbcThanks @vincevahala! - - Add ToggleButton README for ToggleButton and ToggleButtonGroup.- Remove CustomCSSProperties from ToggleButton.
-
#843
f089a1eThanks @stevegreco! - Updated dependencies to be up-to-date -
#1039
3a55713Thanks @vincevahala! - Add IconButton README and documentation. -
#1045
45d41c7Thanks @vincevahala! - Add BannerMessage README. -
#963
b8fe496Thanks @vincevahala! - - Added Props Table documentations to Modal, Badge, Button READMEs. -
#756
6451ab0Thanks @richard-flosi! - Add Menu component -
#936
a18f6ceThanks @vincevahala! - Add link to docs site in JSDoc and move the other data into component READMEs. -
#1035
4a6652bThanks @stevegreco! - Removedpadding: 0from global form fields and added directly toBaseButton -
#973
241d194Thanks @vincevahala! - Add props table component to the following component READMEs:- Accordion, Checkbox, CheckboxGroup, Chip, DatePicker, Divider, LoadingIndicator, NumberInput, SearchInput, Select, Slider, TextInput.
-
#980
9dd184fThanks @vincevahala! - Fixed inconsistent heights across button variants to ensure uniform sizing and alignment. -
#1051
7729c60Thanks @vincevahala! - Add README for MessageBlock with examples and documentation. -
Updated dependencies [
f089a1e,f089a1e,11b6be4]:- @cfa/[email protected]
- @cfa/[email protected]
- @cfa/[email protected]
0.10.0
Minor Changes
-
#643
47475deThanks @richard-flosi! - Added Card component -
#740
6c6edf1Thanks @vincevahala! - Added Slider component -
#748
a62ee14Thanks @stevegreco! - UpdatedButtonsizes with new Design guidance- Removed the
min-widthfrom the size variants - Adjusted padding values across all three sizes
- Removed the
-
#749
fbd5385Thanks @stevegreco! - Updated Accordion to match new Design guidance.Accordionis now flat by default.- Removed
surfaceprop - Added
elevatedItemsprop
- Removed
-
#816
f55f6f1Thanks @vincevahala! - Added ProgressBar component
Patch Changes
-
#781
a1848e8Thanks @vincevahala! - Correct Chip gap from 6 to 8px -
#768
52fd8fdThanks @stevegreco! - Removed inline style from MessageBlockTitle -
#794
11d9927Thanks @stevegreco! - Fixed issue withBannerMessagethat cause the icon to get smaller on smaller screens -
#776
b665ebfThanks @demispartan! - Removed duplicate CSS fromSwitch -
#878
5788eefThanks @vincevahala! - Fix validation story in RadioGroup -
#799
0b5f2caThanks @vincevahala! - Add Slider visual tests -
#833
02a9a2dThanks @vincevahala! - Migrate component react.mdx page from apps/design-system-docs to packages/react-core by adding README.mdx to existing docs site components -
#875
0fce02eThanks @stevegreco! - Adjusted spacing forTextInputandSelectto allow for better multi column form layouts- Removed
min-heightfrom the description on theTextInput - Added missing
flexproperty to theSelect
- Removed
-
Updated dependencies [
6c6edf1]:- @cfa/[email protected]
0.9.0
Minor Changes
-
#685
f0d5020Thanks @stevegreco! - Added new/serverand/clientexports to support frameworks like NextJS/servercontains components that can be used on the server without the use of theuse clientdirective/clientcontains components that must be imported into components usinguse client.
All components are still exported from the root
@cfa/react-coremodule, these changes only impact specific use cases in SSR frameworks -
#677
2dd0504Thanks @stevegreco! - Updated theDatePickerto be exported asUNSTABLE_*, this is to support the release ofv1and inform users that these components are still in abetastate, the components are being exported as followsDatepicker--->UNSTABLE_DatePicker
Imports for this component will now be different, so you will have to either update your code, or add an alias to your imports as follows.
import { UNSTABLE_DatePicker as DatePicker } from "@cfa/react-core";Also, updated two props on the
SelectandComboBoxcomponents to beUNSTABLEonScrollEnd--->UNSTABLE_onScrollEndonScrollEndOffset--->UNSTABLE_onScrollEndOffset
Patch Changes
-
#735
1d2667eThanks @stevegreco! - Addeddisplay: nonefor inertTab.Panelcomponents that are using theshouldForceMountprop -
#739
6bfd21dThanks @stevegreco! - Removed z-index from theDrawerandModaloverlay components -
#741
6039672Thanks @stevegreco! - Updated React Aria patch version to1.7.1 -
#653
8a2601cThanks @vincevahala! - Add examples.mdx to Button/docs -
#708
f6bc6daThanks @vincevahala! - Fix JSDoc storybook link -
#707
476b2f4Thanks @richard-flosi! - ExportsSelectiontype fromreact-aria-componentsRemoves wrapping<div>fromThemeProvider -
#715
5c4e6d5Thanks @stevegreco! - UpdatedButtonto utilize CSS variables to simplify overriding nested classes -
#682
7d09bbeThanks @stevegreco! - Added component prop documentation for all components -
Updated dependencies [
258fd95,258fd95,258fd95]:- @cfa/[email protected]
- @cfa/[email protected]
0.8.1
Patch Changes
-
#688
53d11aaThanks @stevegreco! - Addedcursor: pointerto theBaseButton -
#675
0e587bdThanks @vincevahala! - Added 8px gap to Button
0.8.0
Minor Changes
-
#605
959bfc3Thanks @stevegreco! - Added internalTagGroupComponent -
#657
169fa92Thanks @stevegreco! - Added analignmentprop to theNumberInputcomponent with options forleft(default) andright
Patch Changes
-
#654
999b112Thanks @vincevahala! - Remove comment from Button/composability.mdx -
#618
83887e3Thanks @stevegreco! - Updated various components to properly destructure theclassNameprop -
#583
698314cThanks @richard-flosi! - Add RangeCalendar and DateRangePicker components. Exports I18nProvider from react-aria-components. -
#671
6e503bfThanks @stevegreco! - Added newPressableandFocusablecomponents to allow for custom triggers in thePopoverandTooltip -
#671
6e503bfThanks @stevegreco! - Updatedreact-aria-componentsto version1.7.0, as well asreact-ariaand@react-aria/test-utils -
#661
f8af9b7Thanks @vincevahala! - Add isPending styles to Button -
#624
42afe07Thanks @stevegreco! - Updated versions ofstorybook,viteandvitest -
#660
d86fb1cThanks @stevegreco! - Updated composability docs forButton -
Updated dependencies [
42afe07]:- @cfa/[email protected]
- @cfa/[email protected]
0.7.1
Patch Changes
-
#615
c03e653Thanks @stevegreco! - Fixed issue withplaceholderstyling in theSelectcomponent -
#598
e0a0b4aThanks @vincevahala! - Add GH link to JSDoc in Button component. Add composability.mdx docs in Button. -
#596
5b4238aThanks @richard-flosi! - Added internalTimeInputcomponent -
#617
069e8b3Thanks @stevegreco! - Fixed issue withAccordion.Itemcustom classNames overriding the internal classes -
#615
c03e653Thanks @stevegreco! - Fixed issue withgapon theAccordionsurface variant
0.7.0
Minor Changes
-
#567
fadb009Thanks @vincevahala! - Added Tabs -
#589
d2dcd33Thanks @stevegreco! - Exported theRouterProvidercomponent fromreact-aria-componentsto support routing functionality in components
Patch Changes
-
#580
3d1b0ecThanks @richard-flosi! - Fix: DatePicker a11y errors -
#589
d2dcd33Thanks @stevegreco! - Fixed issue with the alignment of the Chevron in theAccordion.Item -
#570
a5f4a92Thanks @stevegreco! - Enhanced Input Components- Added additional unit tests
- Updated styles to make the heights consistent across components
- Made small adjustments to the component structures to enable consistent CSS
-
#578
c301fc1Thanks @richard-flosi! - Fix: Calendar a11y landmark error -
#571
961d111Thanks @stevegreco! - Update various unit tests to achieve better code coverage- Updated unit tests to get better code coverage
- Removed inline SVGs and replaced with correct
system-icons - Made small enhancements to various components to enhance testing
-
#587
d4e85d8Thanks @vincevahala! - Add color and fullWidth prop to Tabs. Update Tabs styles after design review. -
#592
c7ad551Thanks @vincevahala! - Use cva on Tabs and add CustomCSSProperties interface.
0.6.0
Minor Changes
-
#560
5ed1b12Thanks @stevegreco! - AddedTextAreacomponent- New
TextAreaprimitive component added - Updated
TextInputto include amultilineprop to render theTextArea - Updated Stories and Styles for
TextInputto be consistent - Added e2e tests for
<TextInput multiline />
- New
-
#539
410023cThanks @stevegreco! - AddedisCloseButtonHiddenprop that removes the Close button from the Modal and DrawerisDismissablenow only enables theModal/Drawerto be closed by clicking outside
-
#557
bb3d3d9Thanks @stevegreco! - Updated disabled styles forAccordion.Trigger -
#545
cf6af06Thanks @stevegreco! - Removed duplicateplacementprop values forTooltipandPopover
Patch Changes
-
#429
c93530bThanks @richard-flosi! - Adds new BaseDateInput, DateInput, Calendar, and DatePicker components -
#523
b8f2740Thanks @stevegreco! - Fixed CSS issues with theSelectcomponent- Added a
min-heightto prevent sizing issues when noplaceholderis used - Removed the default
placeholderso that its only visible when theplaceholderprop is used
- Added a
-
#550
b344709Thanks @vincevahala! - Add JSDoc to Chip.tsx, add docgen config and run pnpm docgen. Update turbo/generators doc-page templates. -
#557
bb3d3d9Thanks @stevegreco! - Fixed issue with padding in theAccordion.Panel
0.5.0
Minor Changes
- #496
cb2e567Thanks @vincevahala! - Extend React detailed html props and attributes for Badge, BannerMessage, Chip
Patch Changes
-
#500
82a8411Thanks @vincevahala! - Use span DetailedHTMLProps and HTMLAttributes in Badge. Fix Badge styles. -
#512
29e8e33Thanks @stevegreco! - - Enhanced Unit Tests forTextInputto validate thetypeprop- Enhanced Unit Tests for
Selectto include different interaction types - Updated Stories for various components to solve a11y warnings
- Added additional Stories for
TextInputandInputto allow for better testing
- Enhanced Unit Tests for
-
#488
9019e75Thanks @vincevahala! - Add JSDoc component descriptions to button, checkbox, numberinput, select, and textinput -
#506
ecc9fb2Thanks @stevegreco! - Fixed issue with spacing on theSwitchcomponent -
#493
c2f23f9Thanks @vincevahala! - Update Divider Docs -
#476
7301d5cThanks @stevegreco! - Updated playwright dependencies to use pnpm catalogs to maintain consistent versions -
Updated dependencies [
7301d5c]:- @cfa/[email protected]
0.4.0
Minor Changes
-
#465
4f051abThanks @stevegreco! - RemovedrenderIconprop from theSelectcomponent -
#465
4f051abThanks @stevegreco! - Added theComboBoxcomponent -
#483
bf27bafThanks @stevegreco! - AddedDrawercomponent -
#486
42e13f5Thanks @stevegreco! - Updated theInput,TextandLabelto contain their own styles related to states. This will enhance composability and consolidate these styles in one place. The states in question are things likeisSuccess,isInvalidandisDisabled -
#440
a290956Thanks @vincevahala! - Adds Divider component
Patch Changes
-
#473
c79b11bThanks @stevegreco! - Fixed issues with TailwindCSS usage- Reset the
moz-focusringtononeon theBaseButtonto prevent unwanted focus styles from appearing after click of thebutton - Set
cursor: defaulton theBaseButton
- Reset the
-
#479
349fb76Thanks @stevegreco! - Fixed issue with Icon Button Story -
Updated dependencies [
3f53c68,3f53c68]:- @cfa/[email protected]
- @cfa/[email protected]
0.3.1
Patch Changes
- #464
7a9eb66Thanks @stevegreco! - Fixed issue with the icon animation for theSelectcomponent.
0.3.0
Minor Changes
-
#446
d325609Thanks @stevegreco! -Selectcomponent updates- Added states for
isInvalid,isSuccess,isDisabled. - Added the
compactvariant - Updated test cases to account for new states
- Updated docs and examples in the README.md
- Added states for
-
#399
c78b5c7Thanks @richard-flosi! - Adds ToggleButton and ToggleButtonGroup components -
#454
571ec45Thanks @stevegreco! - - Removednormalize.cssand updated tomodern-normalizeso our resets can match TailwindCSS to avoid conflicts.- Added specific resets similar to TailwindCSS to our global
index.cssto ensure consistency in resettingmarginandpadding.
- Added specific resets similar to TailwindCSS to our global
Patch Changes
-
#421
fb09925Thanks @richard-flosi! - Remove ariaLabel from Avatar component. -
#426
a0a9f4eThanks @stevegreco! - Updated Vitest to v3 -
#437
49d0f1dThanks @stevegreco! - Updated docs forButton,Checkbox,Select,NumberInputandTextInputusing the new CLI to generate type information.- Added config files for each of the above components
- Added JSDoc comments to ensure that type data was generated correctly
- Ran the CLI to generate the data
-
#426
a0a9f4eThanks @stevegreco! - Enhanced test cases forSelect,ListBoxandGridListusing some of the new utilities provided by@react-aria/test-utils. Also fixed some various small issues with some of the Stories to remove a11y errors. -
#454
571ec45Thanks @stevegreco! - Fixed issue with theIconButtonsizing as reported by @donnycheng1204 -
#426
a0a9f4eThanks @stevegreco! - Updated Storybook to v8.5, which includes a11y testing out of the box -
Updated dependencies [
a0a9f4e,a0a9f4e]:- @cfa/[email protected]
- @cfa/[email protected]
0.2.0
Minor Changes
-
#370
13d105eThanks @stevegreco! - Added the Select, Listbox and GridList components -
#401
d9ca21eThanks @stevegreco! - Added a ThemeProvider component to inject our package css -
#396
bbcbab3Thanks @stevegreco! - Added theBaseButtoncomponent and used it as the base ofButtonandIconButton -
#375
f08a8d7Thanks @richard-flosi! - Avatar Components -
#410
c1318b0Thanks @stevegreco! - Updated the Popover to use the compound component pattern to help with composing other components like the Select
Patch Changes
-
#403
808b384Thanks @richard-flosi! - Add ESLint Rule for react/function-component-definition as function-declaration -
#394
498f70bThanks @richard-flosi! - Updated size prop values and classnames to match -
#418
96486a4Thanks @stevegreco! - Removedcursor: pointerfrom the Checkbox, Radio/RadioGroup and Switch -
#406
1244781Thanks @vincevahala! - Added margin zero to PageLoader component in react-core. -
Updated dependencies [
3d29606,d9ca21e]:- @cfa/[email protected]
0.1.1
Patch Changes
- 3ccec96: Created PageLoader component in react-core and created component specific tokens, in the
loadercollection. - 5068945: Fixing typo in the publish workflow
- 1af715e: Added README files for the Button and Accordion components
- 2bf7069: Fixed issue with dependencies being listed as devDependencies
- 8a99191: Attempting to change the author of the most recent commit for Changesets PR releases
- 61e9b08: Updated deploy keys for GH actions
- ca325b8: Updated react-core README
- 5a1ad3d: Updating publish.yml to attempt to sign commits
- 7cc54e7: Added new token for changesets github config
- 527b1e6: First Beta version
- Updated dependencies [776fcc3]
- Updated dependencies [527b1e6]
- @cfa/[email protected]
- @cfa/[email protected]
- @cfa/[email protected]
0.1.1-beta.0
Patch Changes
- First Beta version