Lyn M
Lyn M
@jellevdvliet - not so much additional work for `.vue` files - just (install and) add `vue-loader` to the webpack config. FYI @ankitsinghaniyaz.
an [issue on the i18next-node repository][1] points at a similar problem (albeit from another point of view, and at a lower level). [Jan Mühlemann][2], a core member, [offered][3] to use...
@dcshiman, note that the `v-html` solution may shadow issues with input validation, increasing the chances of missing potential XSS vulnerabilities in the code (as hinted by @infinite-dao in [the above...
@tikiatua, thanx, it's great to hear that you're on it! the imperative API is well done - it's both very expressive and flexible. i agree that the white-list approach is...
@tikiatua, that sounds like a great idea - if we don't evaluate any markup, we lower the risk of injections. also, if the code eventually prepares a `render` function, we...
i've been bitten, too, and was hoping for a true solution, but... looks like this is gonna be hard to solve without introducing some higher-level code (which i'm not sure...
also, here's my current take for a workaround ([source][1]): export default const FormControl = ({ tag: FormControlType, ...props }) => { const tooltipAttributes = Object.entries(props) .filter(([key, value]) => key.startsWith('data-')) .reduce((accum,...
hey @mcoker , those notifications fell through as i focused on the ROSA development for OCM... sorry about not updating. i don't think i need anything else, i'll get to...
ok @mcoker , i saw the design updates from your discussion. i think that renders some of my previous comments obsolete, but it's perfect for impl' pointers! thanks i'll follow...
ok, i got some progress. after [this change][1]: - [x] the selected items' colored-border covers the list top & bottom correctly, while inner list-items always have fixed spacing between them....