EndilWayfare

Results 21 issues of EndilWayfare

#### Question I'm using refs to register event listeners for non-Yew-supported event types. Following the `node_refs` example, it makes sense to use the `rendered` method to do setup on first...

question
A-yew

Following the instructions in the README, everything seemed to be working fine until `./y.rs build`. ``` The MSVC toolchain is not yet supported by rustc_codegen_cranelift. Switch to the MinGW toolchain...

O-windows

Every time a change is detected, a new compilation is started even if one is already running. I'm using `rust-analyzer` in VS Code, so turning off aggressive auto-save also turns...

I love `chartCartesian`'s css-grid approach that avoids manual padding transform juggling, but now that it's not a single `` tag it's a lot harder to save as an image. I...

In `d3fc-axis`, the default value of `tickValues` variable inside the component is `null`. https://github.com/d3fc/d3fc/blob/b294f0a6f326b9eb001498e6760c0f0c8772620f/packages/d3fc-axis/src/axisBase.js#L11 There is no way to return to this default value after using `tickValues` setter. For charts...

bug
d3fc-axis

If `selection` is a `transition`, it doesn't have the `append` method. https://github.com/d3fc/d3fc/blob/b294f0a6f326b9eb001498e6760c0f0c8772620f/packages/d3fc-axis/src/measureLabels.js#L9 When new tick labels are added, the decoration fails but the chart still updates/transitions (albeit with overlap). When...

When rendering a Cartesian chart with a transition, ```js //... const area = fc.seriesSvgMulti().series(/* ... */); const chart = fc.chartCartesian(xScale, yScale).svgPlotArea(area); d3.select("#chart").data(data).transition().call(chart); ``` resizing the window does not update the...

bug
d3fc-element

```js const legend = /* some component */ const chart = fc .chartCartesian(d3.scaleLinear(), d3.scaleLinear()) .decorate((selection) => { selection .enter() .append("d3fc-svg") .style("grid-column", 3) .style("grid-row", 5) .style("height", "2em") .on("measure.legend", (event) => {...

question
d3fc-chart

For some reason, the initial deref of the `lazy_static` takes several seconds, locking up the page while the first phone number is either parsed or formatted. After that, it's really...

Is there any plan to add methods to change parts of a `PhoneNumber` or create a new one based on an existing one? E.g. `set_extension`? I'd rather not rely on...

enhancement