-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix prop table in docs #5532
Fix prop table in docs #5532
Conversation
Build successful! 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just out curiosity, did you find out when this broke in the prod docs? Also kinda weird that https://react-spectrum.adobe.com/react-spectrum/dnd.html#props has a reference to React.JSX.Element
but it seems to work just fine.
@LFDanLu |
Build successful! 🎉 |
## API Changes
unknown top level export { type: 'any' } @react-aria/dndDragPreviewProps DragPreviewProps {
- children: (Array<DragItem>) => React.JSX.Element
+ children: (Array<DragItem>) => JSX.Element
} useClipboard DragPreview {
- children: (Array<DragItem>) => React.JSX.Element
+ children: (Array<DragItem>) => JSX.Element
} @react-spectrum/dndDragAndDropOptions DragAndDropOptions {
getItems?: (Set<Key>) => Array<DragItem> = () => []
- renderPreview?: (Set<Key>, Key) => React.JSX.Element
+ renderPreview?: (Set<Key>, Key) => JSX.Element
} it changed:
DragAndDropHooks DragAndDropHooks {
dragAndDropHooks: (DragHooks & DropHooks & {
isVirtualDragging?: () => boolean
- renderPreview?: (Set<Key>, Key) => React.JSX.Element
+ renderPreview?: (Set<Key>, Key) => JSX.Element
})
} it changed:
@react-spectrum/listListView ListView<T extends {}> {
density?: 'compact' | 'regular' | 'spacious' = 'regular'
dragAndDropHooks?: DragAndDropHooks['dragAndDropHooks']
isQuiet?: boolean
loadingState?: LoadingState
onAction?: (Key) => void
overflowMode?: 'truncate' | 'wrap' = 'truncate'
- renderEmptyState?: () => React.JSX.Element
+ renderEmptyState?: () => JSX.Element
} SpectrumListViewProps SpectrumListViewProps<T> {
density?: 'compact' | 'regular' | 'spacious' = 'regular'
dragAndDropHooks?: DragAndDropHooks['dragAndDropHooks']
isQuiet?: boolean
loadingState?: LoadingState
onAction?: (Key) => void
overflowMode?: 'truncate' | 'wrap' = 'truncate'
- renderEmptyState?: () => React.JSX.Element
+ renderEmptyState?: () => JSX.Element
} @react-spectrum/tableColumn TableView<T extends {}> {
density?: 'compact' | 'regular' | 'spacious' = 'regular'
dragAndDropHooks?: DragAndDropHooks['dragAndDropHooks']
isQuiet?: boolean
onAction?: (Key) => void
onResize?: (Map<Key, ColumnSize>) => void
onResizeEnd?: (Map<Key, ColumnSize>) => void
onResizeStart?: (Map<Key, ColumnSize>) => void
overflowMode?: 'wrap' | 'truncate' = 'truncate'
- renderEmptyState?: () => React.JSX.Element
+ renderEmptyState?: () => JSX.Element
} CellProps SpectrumTableProps<T> {
density?: 'compact' | 'regular' | 'spacious' = 'regular'
dragAndDropHooks?: DragAndDropHooks['dragAndDropHooks']
isQuiet?: boolean
onAction?: (Key) => void
onResize?: (Map<Key, ColumnSize>) => void
onResizeEnd?: (Map<Key, ColumnSize>) => void
onResizeStart?: (Map<Key, ColumnSize>) => void
overflowMode?: 'wrap' | 'truncate' = 'truncate'
- renderEmptyState?: () => React.JSX.Element
+ renderEmptyState?: () => JSX.Element
} @react-spectrum/tagTagGroup TagGroup<T extends {}> {
actionLabel?: string
maxRows?: number
onAction?: () => void
- renderEmptyState?: () => React.JSX.Element
+ renderEmptyState?: () => JSX.Element
} SpectrumTagGroupProps SpectrumTagGroupProps<T> {
actionLabel?: string
maxRows?: number
onAction?: () => void
- renderEmptyState?: () => React.JSX.Element
+ renderEmptyState?: () => JSX.Element
} |
Currently not all our prop tables are loading properly, see https://react-spectrum.adobe.com/react-aria/Table.html#column
Broke in update react types pr so this PR reverts some of the changes there. Seems like it works fine if we just
import {JSX} from 'react'
and then change our definitions fromReact.JSX.Element
toJSX.Element
.✅ Pull Request Checklist:
📝 Test Instructions:
Check docs to make sure the prop tables are getting loaded properly.
🧢 Your Project: