Nikolai Iakovlev
Nikolai Iakovlev
Is there any chance this could be done?
I spent some time, trying to improve the loader, but couldn't came up with an elegant solution. I found out, that the longest operation in the loader is glob search...
I ended up, using 2 files: ``` import { connect } from 'redux-vue' import Comp from './index' const mapStateToProps = (state) => ({}) const mapDispatchToProps = (dispatch) => ({}) export...
@nadimtuhin https://github.com/nadimtuhin/redux-vue/pull/4
That is exactly the fix I'm desperate for. Would be great, if this got merged. @etimberg I could've looked into writing the test, but I'm new to the library codebase,...
I've submitted the new PR: https://github.com/chartjs/Chart.js/pull/11938
Same here, downgrading didn't help to receive an actual error in my case
Maybe another way to implement similar functionality is implementing [ICU number skeletons](https://unicode-org.github.io/icu/userguide/format_parse/numbers/skeletons.html#:~:text=Number%20skeletons%20are%20a%20locale,Number%20skeletons%20work%20in%20MessageFormat%20.&text=The%20ICU%20toSkeleton()%20API,long%2Dform%20and%20concise%20skeletons.) which are supported by react-intl. This solves the issue with different number formats inside messages and seems to...
@timofei-iatsenko thanks for the response! Today after more digging into the library code, I've also found this possibility to pass custom formats to the `i18n._` function. But the dx on...
> However, to use them, you need to have the arg macro; otherwise, there’s no way to pass placeholder values in macro style. Ah, I see that now. I understood...