solid-ui 2.6.1-c6fc7fe → 2.6.1-c989b61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/solid-ui.js CHANGED
@@ -1628,7 +1628,7 @@ function label_label(thing) {
1628
1628
  // Also encoded character in what was filenames like @ [] {}
1629
1629
  try {
1630
1630
  s = s.split('/').map(decodeURIComponent).join('/'); // If it is properly encoded
1631
- } catch (e) {
1631
+ } catch (_e) {
1632
1632
  // try individual decoding of ASCII code points
1633
1633
  for (var i = s.length - 3; i > 0; i--) {
1634
1634
  var hex = '0123456789abcefABCDEF'; // The while upacks multiple layers of encoding
@@ -4786,7 +4786,7 @@ function setFieldStyle(ele, field) {
4786
4786
  var cssAttribute = st.predicate.uri.slice(STYLE_URI_PREFIX.length);
4787
4787
  try {
4788
4788
  ele.style[cssAttribute] = st.object.value;
4789
- } catch (err) {
4789
+ } catch (_err) {
4790
4790
  console.warn("setFieldStyle: Error setting element style ".concat(cssAttribute, " to \"").concat(st.object.value, "\""));
4791
4791
  console.warn("setFieldStyle: ... Element tagName was \"".concat(ele.tagName || '???', "\""));
4792
4792
  }
@@ -10242,7 +10242,7 @@ function loginStatusBox(dom) {
10242
10242
  me = null;
10243
10243
  try {
10244
10244
  log_alert(message);
10245
- } catch (e) {
10245
+ } catch (_e) {
10246
10246
  window.alert(message);
10247
10247
  }
10248
10248
  box.refresh();