William Zink
William Zink
I have the same issue
New fan template documentation https://www.home-assistant.io/integrations/fan.template/
According to [this Github issue](https://github.com/home-assistant/core/issues/47728) fan percentage speeds are not supported in Google Assistant. So this would need to be done a different way... I created a new branch for...
Any update on this?
I got this to work with Vite and using my local copy of PdfJsWorker ```typescript import PdfJsWorker from '../../../node_modules/pdfjs-dist/build/pdf.worker?url' const PdfViewer : FC = ({ pdfFile, }) => { const...
@phuoc-ng I can't get anything working if I just upgrade your CodeSandbox to the latest versions of everything. PdfViewer: 3.1.0 pdfjs-dist: 2.13.216
https://codesandbox.io/s/react-pdf-viewer-sample-forked-mow1kk And notice, all I did was change the versions in the dependencies to the latest versions 3.1.1 2.13.216
I found the issue it had to do with the ordering of the .css files. Previous (broken) ```typescript import '@react-pdf-viewer/core/lib/styles/index.css'; import '@react-pdf-viewer/default-layout/lib/styles/index.css'; import './PdfViewer.scss' ``` Fixed (working) ```typescript import '@react-pdf-viewer/default-layout/lib/styles/index.css';...
Reopening this is happening to me regardless of ordering of the styles react-pdf-version: ^3.2.0 pdfjs-dist: ^2.13.216 ```typescript import React, { FC, useContext } from 'react' // https://react-pdf-viewer.dev/docs/basic-usage/ import { Viewer,...
According to your documentation website the css order should be ```typescript import '@react-pdf-viewer/core/lib/styles/index.css'; import '@react-pdf-viewer/default-layout/lib/styles/index.css'; ``` which I have done, and still no luck. Seems to be a CSS issue,...