Scott Newcomer

Results 303 comments of Scott Newcomer

Seems like they could in index.d.ts https://github.com/poteto/ember-changeset/blob/master/package.json#L21

👋 What version are you on? I'm guessing `rollbackProperty`/`rollbackInvalid` doesn't work for you? Do you want to clear **all** errors? https://github.com/poteto/ember-changeset/pull/307

Thanks Kyle for the detailed issue! Is there a test you can in this project and reproduces this issue?

Also here is a working implementation using the Reference API and extending ember-changeset. (thanks Oliver!) ``` import { EmberChangeset } from 'ember-changeset'; import { TrackedArray } from 'tracked-built-ins'; import isEqual...

@sandstrom Appreciate the comments! So in considering both approaches... 1. take a list of "relationship" keys and assume we are talking about an e-d model? If so, then we wrap...

Thx for the comments! Data changes are probably a no go. The complexity around tracking changes is quite large. I believe there is a lot of simplicity coming. But not...

A `denyKeys` is a good idea! Perhaps we add that with the default of those two keys. (I've looked at this problem in the past and haven't come up with...

deny list seems like a great idea if someone has the time to contribute!

@sandstrom I think we would need to see the operations (in a code example) you are looking to take on the changeset. I think we can help you on that....

1) nope. I don't think that has ever worked but is an interesting idea. I'll think about how we can handle that. I don't think ember-data does that does it?...