Dominik Hladík
Dominik Hladík
@ashtuchkin Can please you tell me how? Can you ad at least some examples? For me it is a nightmare ...
It's not enough. I want to use my library https://www.npmjs.com/package/fifatables which is using your library in browser. I want to use it in Angular application. I spend few hours to...
The closest example I have found is here: https://github.com/publicVoid-info/ts-gulp-browserify/blob/master/gulpfile.js Unfortunately it is not working with typescript. There are very old libs with many bugs ...
I have already found some solution, but it is probably too complicated and wrong ... ``` this.dbService.openCursor('table-name').subscribe((evt: any) => { const cursor: IDBCursorWithValue = evt.target.result; if (cursor) { console.log(cursor.value); cursor.continue();...
Similar issue happens If you use [husky](https://www.npmjs.com/package/husky) in your project. `Error: The process '/usr/local/bin/npx' failed with exit code 1` Workaround is to move this lib into optionals. Luckylly it is...
@Haroenv Can you provide valid woraround for latest angular and latest angular-instantsearch. This bug causing that algolia and routing is completely broken.
Hello @Haroenv , it is not working. see https://ng-bootstrap.github.io/#/components/accordion ```code Button ``` It is not working because that component destroys alll components which are not visible. Another example with switch...
@francoischalifour Yes, luckylly there is. But it is making my DOM deeper and it is decresing my Lighthouse score. I should be possible either pass arguments directely through "SearchRequestParameters" or...
@devversion I have doubble checked ```typescript @Directive({ standalone: true, selector: 'my-dirx', host: { '[attr.title]': 'bla()' }, }) export class MyDir { bla = input.required(); } ``` and it is working...
Hi, I would like to also see some example using some async chain like this: ```typescript import { AdminModule } from '@admin-bro/nestjs'; import { Database, Resource } from '@admin-bro/typeorm'; import...