Max Friedmann
Max Friedmann
@paul-wade I have the same problems with the scss import. Used to work
Here's a signal based version of @Erbenos one: ```html @if (!hasNgContent()) { doSomething } ``` ```typescript private vcr = inject(ViewContainerRef); private contentTemplate = viewChild("contentTemplate"); protected ngContentView = computed(() => this.vcr.createEmbeddedView(this.contentTemplate()));...
@Lonli-Lokli I have the exact same versions as you, still getting meaningless errors: ``` (node:6657) UnhandledPromiseRejectionWarning: TypeError: Converting circular structure to JSON --> starting at object with constructor 'Object' |...
@Swoox's solution didn't work for me, but brought me to hammerjs and this solution: **app-container.component.scss** ```scss .app-container { height: 100%; width: 100%; position: absolute; } ``` **app-container.component.html** ```html Sidenav content...
I haven't had that problem, only used a single drawer. Please have a look at https://hammerjs.github.io/recognizer-pan, you actually get the start and stop positions of the pan action. You could...
+1 Would be great, especially since "encode-polylines": false doesn't seem to work anymore :(
@lnbc1QWFyb24 you should have a look at https://github.com/kuyoonjo/tauri-plugin-tcp, did the trick for me!
I have similar problems, it seems like if I use either dot-notation or nested objects as `$set` value, the sync manager does not pick up the changes. I created a...
[stackblitz.com/edit/signaldb-playground?file=main.js](https://stackblitz.com/edit/signaldb-playground?file=main.js) I updated the stackblitz, it now reproduces the issue. If the nested object already exists and you want to modify it via dot.notation it won't trigger a sync since...
Have you tried `$regex`? Here's an example: https://stackblitz.com/edit/signaldb-playground-regex-search?file=main.js It fails for number fields though. Unfortunately, `$regexMatch`, which would support an inline `$toString`, is not supported in mingo. Have you tried...