I'm unclear about what could be wrong here. I copied this out of my app where I'm trying to get the simplest example working with some hardcoded data. Any suggestions?
blueprintjs/core: 1.29.0
blueprintjs/table: 1.26.1
import * as React from 'react';
import { Table, Column, Cell } from '@blueprintjs/table';
class HomePage extends React.Component<{}, {}> {
render() {
return (
<div>
<h1>Home</h1>
<Table numRows={10}>
<Column name="Foobar" renderCell={idx => <Cell>{idx}</Cell>} />
</Table>
</div>
);
}
}
export default HomePage;

Hmm, we recently moved that and a few other utility functions from @blueprintjs/table into @blueprintjs/core. Lemme investigate the state of things and get back to you in a bit.
Okay, I think I found the problem. I think it's a botched聽1.26.1 patch release on our end (oh the irony) and will be fixed in our next release, which I hope to cut today. Thanks for filing, @locnguyen! 馃憤
@cmslewis has this been resolved?
@patrickdevivo Will be resolved today in 1.30.0 (#1642).
Just cut the 1.30.0 release. Should be resolved now!
could you push 1.30.0 to npm?
@lukas1994 the build/publish failed due to a flaky test. Retriggered just now.
@lukas1994 @patrickdevivo - should be published on npm now!
Most helpful comment
@lukas1994 @patrickdevivo - should be published on npm now!