Loïc Giraudel

Results 7 comments of Loïc Giraudel

In my opinion you should: - extract translations in dedicated files with a key / value pair. In some formats, it's possible to use complex keys so it should be...

We tried with 1.0.0-alpha.1 and issue is no longer here 👍

I used this for the ~/.volta/hooks.json and it seems to work too: ``` { "node": { "index": { "template": "https://mirrors.dotsrc.org/nodejs/release/index.json" }, "distro": { "template": "https://mirrors.dotsrc.org/nodejs/release/v{{version}}/node-v{{version}}-{{os}}-{{arch}}.tar.gz" } } } ```

I had the same issue with a dayjs adapter, the following code is not working: ```typescript const date = dayjs('2023-12-15 12:00:00') adapter.setHour(date, 3) expect(adapter.getHour(date)).toBe(3) ``` Returning the date instance would...

You can force the state of the Typeahead: ``` this.refs.myInput.setState({ entryValue: '', selection: null, selectionIndex: null, visible: [] }); ```

You can retrieve the value through the component state: ``` this.refs.myInput.state.entryValue; ```