react-spectrum icon indicating copy to clipboard operation
react-spectrum copied to clipboard

fix: icon builder illustrations

Open snowystinger opened this issue 10 months ago โ€ข 2 comments

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:

snowystinger avatar Jun 18 '25 01:06 snowystinger

Build successful! ๐ŸŽ‰

rspbot avatar Jun 18 '25 01:06 rspbot

## 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
+}

rspbot avatar Jun 18 '25 01:06 rspbot