Stephen Paul Weber
Stephen Paul Weber
Aha, it was a red herring. The QR codes on my phone were ECI format which it seems the library does not support
Adding this to `decodeBitmap` made it work: ``` else if (mode === 'eci') { readBits(8); // this is the charset marker ```
Ok, so I guess it isn't supposed to work? I'm converting to SizeT for now as a workaround. Would be nice if the compile error was haxe-side not c++-side for...
Setting anything after class declaration is a "mutation" which breaks tree shaking. Having it as a js_es=2022 or similar sounds like a great solution.
Note that blockquote can contain p, which may be a more semantic way to solve this for quotes than using br
If I comment out these lines from `node_modules/material-react-table/dist/index.esm.js` ``` //import { DatePicker } from '@mui/x-date-pickers/DatePicker'; //import { DateTimePicker } from '@mui/x-date-pickers/DateTimePicker'; //import { TimePicker } from '@mui/x-date-pickers/TimePicker'; ``` then my...
Another v7 feature that doesn't quite work as-is, when I use this theme: ``` const muiTheme = createTheme({ cssVariables: { nativeColor: true }, palette: { primary: { main: "var(--color-primary-dark)", },...