solid-panes 3.6.3-6e990b41 → 3.6.3-79d053d5
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/coverage/clover.xml +7 -7
- package/coverage/coverage-final.json +1 -1
- package/coverage/lcov-report/block-navigation.js +1 -1
- package/coverage/lcov-report/index.html +5 -5
- package/coverage/lcov-report/outline/index.html +5 -5
- package/coverage/lcov-report/outline/outlineIcons.js.html +1 -1
- package/coverage/lcov-report/outline/propertyViews.ts.html +5 -5
- package/coverage/lcov-report/outline/viewAsImage.ts.html +1 -1
- package/coverage/lcov-report/outline/viewAsMbox.ts.html +1 -1
- package/coverage/lcov-report/sorter.js +21 -7
- package/coverage/lcov-report/trustedApplications/index.html +1 -1
- package/coverage/lcov-report/trustedApplications/trustedApplications.utils.ts.html +1 -1
- package/coverage/lcov.info +1 -3
- package/lib/attach/attachPane.js +1 -1
- package/lib/attach/attachPane.js.map +1 -1
- package/lib/dashboard/dashboardPane.js +2 -2
- package/lib/dashboard/dashboardPane.js.map +1 -1
- package/lib/mainPage/header.js +5 -8
- package/lib/mainPage/header.js.map +1 -1
- package/lib/outline/manager.js +5 -6
- package/lib/outline/manager.js.map +1 -1
- package/lib/outline/userInput.js +6 -3
- package/lib/outline/userInput.js.map +1 -1
- package/lib/test-import-export/edit-importer.js +1 -0
- package/lib/test-import-export/edit-importer.js.map +1 -1
- package/lib/transaction/pane.js +2 -2
- package/lib/transaction/pane.js.map +1 -1
- package/lib/transaction/period.js +2 -2
- package/lib/transaction/period.js.map +1 -1
- package/lib/types.js.map +1 -1
- package/lib/versionInfo.d.ts +2 -1
- package/lib/versionInfo.d.ts.map +1 -1
- package/lib/versionInfo.js +28 -27
- package/lib/versionInfo.js.map +1 -1
- package/package.json +17 -17
- package/src/attach/attachPane.js +1 -1
- package/src/dashboard/dashboardPane.ts +2 -2
- package/src/outline/manager.js +2 -2
- package/src/outline/userInput.js +6 -6
- package/src/test-import-export/edit-importer.js +1 -1
- package/src/transaction/pane.js +2 -2
- package/src/transaction/period.js +2 -2
- package/src/types.ts +4 -4
- package/src/versionInfo.ts +30 -30
- package/timestamp.sh +10 -4
package/lib/outline/userInput.js
CHANGED
|
@@ -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;
|