Christian Murphy
Christian Murphy
Welcome @csr632! Could you explain how you see this as as breaking the rule of hooks? Those rules are (https://legacy.reactjs.org/docs/hooks-rules.html) 1. Only Call Hooks at the Top Level. Don’t call...
Copying over some insights from @jgribonvald on Slack. > Hi folks, just to provide a feedback it seems that migrating WC developped with vuejs 2 to vuejs 3 isn't available...
I'm hopeful that Vue may offer a migration path for web components to version 3. In the case isn't an option, some of the lighter elements could maybe be dropped...
`org.webjars.bowergithub.leaflet-extras:leaflet-map:1.2.0` should be available. Usage documentation can be found here: https://leaflet-extras.github.io/leaflet-map/demo.html
Initial thoughts. The API surface for web components is defined by: 1. the CSS variables 2. the HTML attributes Changes that don't affect either are patches. Changes that add new...
@cbeach47 this has been seen before, it usually happens when a component script is imported twice in the portal. The log is the expected behavior if the script is imported...
Custom empty states are something that was helpful for the carousel components. It could be helpful in the grid view and the favorites list.
Thanks @jgribonvald! That's a good resource. A few notes after reading it. The article states > :warning: You must verify a JWT's signature before storing and using it. and jwt...
`jsonwebtoken` includes token verification, `jwt-decode` does not. `jsonwebtoken` adds enough weight to the page it [generates complaints](https://groups.google.com/a/apereo.org/forum/#!msg/uportal-user/jtDSa17lGdQ/Su5VBrCSBQAJ), even after it has been [tree shaken](https://webpack.js.org/guides/tree-shaking/). I'd lean strongly against writing our...
> What I like about `mem` is that the expiration is calculated using Date() instead of having a timer reference that can potentially leak later because the developer did not...