Tim Nikischin

Results 92 comments of Tim Nikischin

@ericgio > As of v6.0.0-alpha.8 you can use floating labels with the typeahead as follows: > > ```js > ... > renderInput={({ inputRef, referenceElementRef, ...inputProps }) => ( > >...

@ericgio thank you so much for the fast reply! Generally speaking I can totally understand! Though from my perspective as one of those using the floating labels it's rather not...

I was trying to create a custom implementation for the floatingLabel on a multi typeahead, though, it does not work as expected, not sure what I am doing wrong, though...

I am also facing this issue with any JPEG image in Safari under Mac OS X. Would be happy to see a fix soon, thank you! ``` "overrides": { "@react-pdf/image":...

Facing the same issue with dynamic user provided images. Unfortunately, they will be displayed in a dynamic size in a dynamic grid, so the workaround provided will make things a...

> This is due to the example container not having enough space to do the positioning. If you were to add a large margin to the top, it will position...

If you would be able to remove the `overflow: hidden` from the `.playgroundContainer_TGbA`, this would also solve the issue (or overrite it with another class providing `overflow: visible`), however, I...

I also encountered a bug with the dropdown #6724 not sure if this could possibly be related.

I implemented the complete component as an asynchronous import within a Suspense and it works well and keeps my package size small. Not sure if this satisfies your needs though...

Sure! Basically like this: ```jsx const PDFViewer = React.lazy(()=> import('./PDFViewer')); export interface URLPDFViewerProps { url?: string, orientation?: 'portrait' | 'landscape' } export default function URLPDFViewer (props: URLPDFViewerProps) { return (...