James Bromwell

Results 257 comments of James Bromwell

In the built `@angular/material/_theming.scss` I see `@mixin mat-input-color(...)` which sets the disabled text color for the input. I think this is an easy fix, just changing the selector for the...

Maybe I'm not getting something that's in the existing comments, but is there a current status for this issue? Is it being worked? Can it be fixed? If so, is...

Is your DateTime `where` clause using range filtering (`gt` / `gte` etc) or looking for exact values? Maybe you could fork my repro with an example.

This is the workaround we've been using since I filed this issue: ```ts export function fixPrismockDates(obj: T|null|undefined): void { if (!obj) { return; } Object.keys(obj).forEach(k => { const val =...

> but just actual documentation of throw types is way more important atm for interoperability between modules If documentation is the issue, you don't need a TS keyword -- https://jsdoc.app/tags-throws...

> "What if TS had typed/checked exceptions" is off-topic here "Talk about exceptions here" 🤔 ETA: any chance the TS team would consider enabling the GitHub "Discussions" feature for posts...

That's a handy wrapper for, uh, turning TS into Go I guess? (There are worse ideas out there!) But I can't figure out how this helps with static analysis to...

[This docs page](https://docs.rocket.chat/use-rocket.chat/workspace-administration/settings/search#default-provider) says that Global Search is still in beta. Is there really no fully-supported way of finding content across all channels and DMs?

I tested it just now and the behavior is the same. The `node_modules` directory does not have a `.bin` at all. For a simpler repro, try a package file like...

In the short term I've rewritten some of my `scripts` to use the deep path into `node_modules`, e.g. `"start": "node ./node_modules/ts-node/dist/bin.js src/main.ts"`, but it's bad ergonomics at least.