Sean Parsons
Sean Parsons
Somewhat playing devils advocate should counters always be increasing or is that just for RRD support? I'm using something similar for an inflight request count, incrementing at the start and...
@maltenuhn If you edit the component, the div inside it has a controlled shadow, is that not correct?
> nice! (just in case you don't plan it already) I think a follow-up PR should also disable moving and resizing strategies for elements that don't respect the relevant props....
@Rheeseyb What values need to be set?
Putting this to one side for now ahead of React 18 being released.
`DecodeJson.validate` should be able to achieve that (albeit at a cost to the caller). It does chime slightly with an idea I've had in the past for a different way...
@kevinmeredith Not walked? I _think_ you'd be better off just checking that `fieldSet` matches what you expect.
@kevinmeredith This is what you want to check against correct? ``` scala> json.right.get.hcursor.fieldSet res1: Option[Set[argonaut.Json.JsonField]] = Some(Set(foo)) ```
Well surely the `fieldSet` you want is `Some(Set("name"))` right? Unless I'm mistaken that means in the `DecodeJson.validate` call the function `HCursor => Boolean` would look something like `_.fieldSet == Some(Set("name"))`....
@kevinmeredith The `fields` and `fieldsSet` methods gives you the fields of the object currently in focus. So if you want to check that it has only fields a, b and...