Skip to content
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

Merged
merged 2 commits into from
Dec 6, 2023
Merged

Fix prop table in docs #5532

merged 2 commits into from
Dec 6, 2023

Conversation

yihuiliao
Copy link
Member

@yihuiliao yihuiliao commented Dec 5, 2023

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 from React.JSX.Element to JSX.Element.

✅ 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:

Check docs to make sure the prop tables are getting loaded properly.

🧢 Your Project:

@yihuiliao yihuiliao marked this pull request as ready for review December 5, 2023 23:21
@rspbot
Copy link

rspbot commented Dec 5, 2023

Copy link
Member

@LFDanLu LFDanLu left a 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.

@snowystinger
Copy link
Member

https://react-spectrum.adobe.com/react-spectrum/dnd.html#props

@LFDanLu
It's not an issue inside a prop, it's an issue at the top level of the component Return type. However, changing it everywhere just simplifies things.

@yihuiliao
Copy link
Member Author

Just out curiosity, did you find out when this broke in the prod docs?

@LFDanLu
i mentioned it above but it broke in this pr: #5237. so it's been about a month since it went out last release. seems like no one's reported it though

@rspbot
Copy link

rspbot commented Dec 6, 2023

@rspbot
Copy link

rspbot commented Dec 6, 2023

## API Changes

unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any', access: 'private' }
unknown top level export { type: 'any', access: 'private' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'identifier', name: 'Column' }
unknown top level export { type: 'identifier', name: 'Column' }
unknown type { type: 'link' }
unknown type { type: 'link' }
unknown type { type: 'link' }
unknown type { type: 'link' }
unknown type { type: 'link' }
unknown type { type: 'link' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }
unknown top level export { type: 'any' }

@react-aria/dnd

DragPreviewProps

 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/dnd

DragAndDropOptions

 DragAndDropOptions {
   getItems?: (Set<Key>) => Array<DragItem> = () => []
-  renderPreview?: (Set<Key>, Key) => React.JSX.Element
+  renderPreview?: (Set<Key>, Key) => JSX.Element
 }

it changed:

  • useDragAndDrop

DragAndDropHooks

 DragAndDropHooks {
   dragAndDropHooks: (DragHooks & DropHooks & {
     isVirtualDragging?: () => boolean
-  renderPreview?: (Set<Key>, Key) => React.JSX.Element
+  renderPreview?: (Set<Key>, Key) => JSX.Element
 })
 }

it changed:

  • useDragAndDrop

@react-spectrum/list

ListView

 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/table

Column

 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/tag

TagGroup

 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
 }

@yihuiliao yihuiliao merged commit e8f2ef4 into main Dec 6, 2023
@yihuiliao yihuiliao deleted the fix-prop-table branch December 6, 2023 19:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants