Vili Ketonen
Vili Ketonen
I would also find this feature useful. For my specific needs for now, I implemented a custom version shown below that is inspired by react-redux [useSelector](https://github.com/reduxjs/react-redux/blob/master/src/hooks/useSelector.ts) hook: useReactiveVarWithSelector.ts ``` import...
@Paso Good notice, I had not tested the code with SSR and left the third parameter as `undefined`. According to [React's documentation on useSyncExternalStore](https://reactjs.org/docs/hooks-reference.html#usesyncexternalstore), the third parameter `getServerSnapshot` should be...
> How can a receiving system know that something is neighbouring? I would be much more happy with actual references. For example neighbouringTariffZones/TariffZoneContraintRef as a clean up in next. The...
Rethinking the proposed name of the enum value to reduce ambiguity: probably "connected" would make more sense of the intention of this constraint (from graph theory). The intention of this...
Tested also with `google.protobuf.Duration`. This throws `ArithmeticException` ([`TimestampRules`](https://buf.build/bufbuild/protovalidate/docs/main:buf.validate#buf.validate.TimestampRules) is a Protobuf message that has `within` field that is a `google.protobuf.Duration`): ```java import build.buf.validate.TimestampRules; ... TimestampRules message = TimestampRules.newBuilder() .setWithin(com.google.protobuf.Duration.newBuilder().setSeconds(Long.MAX_VALUE).setNanos(Integer.MAX_VALUE).build()) .build();...
There is a PR that has implemented support for this feature in https://github.com/pseudomuto/protoc-gen-doc/pull/536 but it is pending merging.