Andrei Victor Bulearca
Andrei Victor Bulearca
According to docs, there is a function for that: `openMenu('@')`. It is also presented in the demo page (https://afry.github.io/quill-mention/) ``` function onButtonClick() { quillEditor.getModule("mention").openMenu("@"); } ```
Please reopen
Sorry for the delay, Please check the following repo: https://github.com/andreivictor/webpack-starter-html-loader When running `webpack serve`, the script is included ok: `` On build, the script is included in html like this:...
From v1.2.2, we can use `progress` or `change` events: ```javascript Pace.on('progress', function (progress) { console.log('Pace progres: ', progress); }); Pace.on('change', function (progress) { console.log('Pace progres: ', progress); }) ```
@adriancoliba I had the same error in an app created with `create-react-app` `v5.0.1`. Solved it by: - installing `jest-canvas-mock`: `npm install jest-canvas-mock --save-dev` - import `jest-canvas-mock` in component test file:...
Hi @king2 , Thank you very much for the feedback. I appreciate your support. Regarding your notice: indeed, I forgot to push the compiled files (`dist` folder) for `bootstrap-v5` popovers....
The issue is that the `Separator` component includes the class `data-[orientation=horizontal]:w-full`. `SidebarSeparator` uses `w-auto` (along with `bg-sidebar-border mx-2`), but because of CSS specificity, the `data-` attribute selector takes precedence over...
Found a workaround with ```typescript onClick={(e) => { const target = e.target as HTMLElement; if (target.closest('input')) { return; } setIsChecked((prev) => !prev) }} ```
You might also use a static import from `lucide-static`: ```bash npm install lucide-static ``` ```typescript import tags from 'lucide-static/tags.json'; ``` or dynamic import: ```typescript type IconTags = { [K in...