react-spectrum
react-spectrum copied to clipboard
fix: icon builder illustrations
Closes
Add some testing around the illustration builder
โ Pull Request Checklist:
- [ ] Included link to corresponding React Spectrum GitHub Issue.
- [ ] Added/updated unit tests and storybook for this change (for new code or code which already has tests).
- [ ] Filled out test instructions.
- [ ] Updated documentation (if it already exists for this component).
- [ ] Looked at the Accessibility Practices for this feature - Aria Practices
๐ Test Instructions:
๐งข Your Project:
## API Changes
@react-aria/calendar
/@react-aria/calendar:AriaCalendarCellProps
AriaCalendarCellProps {
date: CalendarDate
isDisabled?: boolean
- isOutsideMonth?: boolean
}
@react-spectrum/s2
/@react-spectrum/s2:IllustrationProps
+IllustrationProps {
+ UNSAFE_className?: UnsafeClassName
+ UNSAFE_style?: CSSProperties
+ aria-describedby?: string
+ aria-details?: string
+ aria-hidden?: boolean | 'false' | 'true'
+ aria-label?: string
+ aria-labelledby?: string
+ id?: string
+ size?: 'S' | 'M' | 'L'
+ slot?: string | null
+ styles?: StyleString<AllowedOverrides>
+}
/@react-spectrum/s2:IllustrationContextValue
+IllustrationContextValue {
+ UNSAFE_className?: UnsafeClassName
+ UNSAFE_style?: CSSProperties
+ render?: (ReactNode) => ReactNode
+ size?: 'S' | 'M' | 'L'
+ slot?: string | null
+ styles?: StyleString
+}