Merge branch 'main' into improve-table-api

This commit is contained in:
Nathan Evans 2022-09-16 14:20:38 -07:00
Родитель 7434affefc 20ea64dd73
Коммит 9d75e01246
2 изменённых файлов: 5 добавлений и 1 удалений

3
.yarn/versions/2ef06a85.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
releases:
"@datashaper/react": patch
"@datashaper/webapp": patch

Просмотреть файл

@ -3,6 +3,7 @@
* Licensed under the MIT license. See LICENSE file in the project.
*/
import { DataType } from '@datashaper/schema'
import { determineType } from '@datashaper/tables'
import { memo, useCallback, useMemo } from 'react'
import { Case, Default, Switch } from 'react-if'
@ -28,7 +29,7 @@ export const DefaultCell: React.FC<RichCellProps> = memo(function DefaultCell(
) {
const { field, item, column, onColumnClick } = props
const value = getValue(item, column)
const type = field?.type
const type = field?.type || determineType(value)
const handleColumnClick = useCallback(
(ev: React.MouseEvent<HTMLElement>) => {