feat: add keyboard navigation for document views, externalize document preview handling, and include physics model documentation.
This commit is contained in:
@@ -3,14 +3,16 @@ import React from 'react';
|
||||
interface DocumentsListContainerProps {
|
||||
children: React.ReactNode;
|
||||
clearSelection: () => void;
|
||||
[key: string]: any;
|
||||
}
|
||||
|
||||
const DocumentsListContainer: React.FC<DocumentsListContainerProps> = ({
|
||||
children,
|
||||
clearSelection,
|
||||
...props
|
||||
}) => {
|
||||
return (
|
||||
<table aria-multiselectable="true">
|
||||
<table aria-multiselectable="true" {...props}>
|
||||
<thead
|
||||
onClick={() => {
|
||||
clearSelection();
|
||||
|
||||
Reference in New Issue
Block a user