Ondřej Poláček

Results 10 comments of Ondřej Poláček

Triggering render multiple times might be desirable. Back to the example with updating multiple traces of a `dcc.Graph`, triggering the render only once would mean waiting until all traces are...

@T4rk1n Hi, I see the the types were expanded to allow `datetime.datetime` for dates in datepicker, but it should be `datetime.date`.

I think it would be better to allow `datetime.date` only. Otherwise it is possible to init the datepicker with something that has time different from midnight (this still correctly sets...

Oh, of course. Then both `date` and `datetime` is fine. It could maybe be nice to throw away the time part in the component if present, but that is out...

I have the same issue, windows do not close properly when they are raised during the closing animation. It is especially annoying on apps that open sub-windows (settings window in...

I did not try to reproduce it in pure dash. And I am not sure I will have enough time to try anytime soon. Rest of the post assumes that...

```python from datetime import datetime import polars as pl df = pl.DataFrame( { "value": pl.datetime_range( datetime(2025, 11, 1), datetime(2025, 11, 2), interval="1h", time_zone="US/Eastern", eager=True, ) } ) df = df.with_columns(pl.col("value").dt.offset_by("1d").alias("value_offset"))...

For what it's worth, I think preserving the dst offset, like in the linked PR, would make sense here, that is the behavior I would expect. Similar problem is also...

Would it be possible to make this behave the same as [whenever](https://whenever.readthedocs.io/en/latest/index.html) (which is in turn heavily inspired by javascript new [Temporal](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Temporal) api)? The gist of it is that there...