solid-panes 3.6.3-92923e59 → 3.6.3-9f4ce8a4

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.
Files changed (43) hide show
  1. package/coverage/clover.xml +2 -2
  2. package/coverage/lcov-report/block-navigation.js +1 -1
  3. package/coverage/lcov-report/index.html +1 -1
  4. package/coverage/lcov-report/outline/index.html +1 -1
  5. package/coverage/lcov-report/outline/outlineIcons.js.html +1 -1
  6. package/coverage/lcov-report/outline/propertyViews.ts.html +1 -1
  7. package/coverage/lcov-report/outline/viewAsImage.ts.html +1 -1
  8. package/coverage/lcov-report/outline/viewAsMbox.ts.html +1 -1
  9. package/coverage/lcov-report/sorter.js +21 -7
  10. package/coverage/lcov-report/trustedApplications/index.html +1 -1
  11. package/coverage/lcov-report/trustedApplications/trustedApplications.utils.ts.html +1 -1
  12. package/lib/attach/attachPane.js +1 -1
  13. package/lib/attach/attachPane.js.map +1 -1
  14. package/lib/dashboard/dashboardPane.js +2 -2
  15. package/lib/dashboard/dashboardPane.js.map +1 -1
  16. package/lib/mainPage/header.js +5 -8
  17. package/lib/mainPage/header.js.map +1 -1
  18. package/lib/outline/manager.js +5 -6
  19. package/lib/outline/manager.js.map +1 -1
  20. package/lib/outline/userInput.js +6 -3
  21. package/lib/outline/userInput.js.map +1 -1
  22. package/lib/test-import-export/edit-importer.js +1 -0
  23. package/lib/test-import-export/edit-importer.js.map +1 -1
  24. package/lib/transaction/pane.js +2 -2
  25. package/lib/transaction/pane.js.map +1 -1
  26. package/lib/transaction/period.js +2 -2
  27. package/lib/transaction/period.js.map +1 -1
  28. package/lib/types.js.map +1 -1
  29. package/lib/versionInfo.d.ts +2 -1
  30. package/lib/versionInfo.d.ts.map +1 -1
  31. package/lib/versionInfo.js +28 -27
  32. package/lib/versionInfo.js.map +1 -1
  33. package/package.json +13 -13
  34. package/src/attach/attachPane.js +1 -1
  35. package/src/dashboard/dashboardPane.ts +2 -2
  36. package/src/outline/manager.js +2 -2
  37. package/src/outline/userInput.js +6 -6
  38. package/src/test-import-export/edit-importer.js +1 -1
  39. package/src/transaction/pane.js +2 -2
  40. package/src/transaction/period.js +2 -2
  41. package/src/types.ts +4 -4
  42. package/src/versionInfo.ts +30 -30
  43. package/timestamp.sh +10 -4
@@ -582,6 +582,7 @@ function UserInput(outline) {
582
582
  UI.log.debug('about to remove ' + s);
583
583
  UI.log.debug('removed');
584
584
  outline.walk('up');
585
+ // eslint-disable-next-line prefer-const
585
586
  removedTr = selectedTd.parentNode;
586
587
  // afterTr = removedTr.nextSibling
587
588
  function removefromview() {
@@ -1541,10 +1542,10 @@ function UserInput(outline) {
1541
1542
  inputText = extraInformation.inputText;
1542
1543
  /* The labeller functionality code ahs been lost or dropped -- reinstate this? */
1543
1544
  // @@ TODO: Write away the need for exception on next line
1544
-
1545
+ // eslint-disable-next-line no-case-declarations
1545
1546
  var predicates = outline.labeller.searchAdv(inputText, undefined, 'predicate');
1546
1547
  // @@ TODO: Write away the need for exception on next line
1547
-
1548
+ // eslint-disable-next-line no-case-declarations
1548
1549
  var results = []; // @@ fixme
1549
1550
  for (var _i = 0; _i < predicates.length; _i++) {
1550
1551
  var tempQuery = {};
@@ -1560,7 +1561,7 @@ function UserInput(outline) {
1560
1561
  }
1561
1562
 
1562
1563
  // @@ TODO: Write away the need for exception on next line
1563
-
1564
+ // eslint-disable-next-line no-case-declarations
1564
1565
  var entries = results[0];
1565
1566
  if (entries.length === 0) {
1566
1567
  console.log('cm length 0\n'); // hq
@@ -1703,7 +1704,9 @@ function UserInput(outline) {
1703
1704
  var tr = selectedTd.parentNode;
1704
1705
  var stat;
1705
1706
  var isInverse;
1707
+ // eslint-disable-next-line prefer-const
1706
1708
  stat = tr.AJAR_statement;
1709
+ // eslint-disable-next-line prefer-const
1707
1710
  isInverse = tr.AJAR_inverse;
1708
1711
  var reqTerm = type === 'object' ? stat.object : stat.predicate;
1709
1712
  var newStat;