solid-panes 3.6.3-7584c9e5 → 3.6.3-924dceab
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/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/trustedApplications/index.html +1 -1
- package/coverage/lcov-report/trustedApplications/trustedApplications.utils.ts.html +1 -1
- package/coverage/lcov.info +3 -1
- package/lib/attach/attachPane.js +1 -1
- package/lib/attach/attachPane.js.map +1 -1
- package/lib/outline/manager.js +1 -1
- package/lib/outline/manager.js.map +1 -1
- package/lib/outline/userInput.js +3 -6
- package/lib/outline/userInput.js.map +1 -1
- package/lib/test-import-export/edit-importer.js +0 -1
- 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.js +2 -2
- package/lib/versionInfo.js.map +1 -1
- package/package.json +22 -21
- package/src/attach/attachPane.js +1 -1
- package/src/outline/manager.js +1 -1
- 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 +2 -2
package/lib/outline/userInput.js
CHANGED
|
@@ -582,7 +582,6 @@ 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
|
|
586
585
|
removedTr = selectedTd.parentNode;
|
|
587
586
|
// afterTr = removedTr.nextSibling
|
|
588
587
|
function removefromview() {
|
|
@@ -1542,10 +1541,10 @@ function UserInput(outline) {
|
|
|
1542
1541
|
inputText = extraInformation.inputText;
|
|
1543
1542
|
/* The labeller functionality code ahs been lost or dropped -- reinstate this? */
|
|
1544
1543
|
// @@ TODO: Write away the need for exception on next line
|
|
1545
|
-
|
|
1544
|
+
|
|
1546
1545
|
var predicates = outline.labeller.searchAdv(inputText, undefined, 'predicate');
|
|
1547
1546
|
// @@ TODO: Write away the need for exception on next line
|
|
1548
|
-
|
|
1547
|
+
|
|
1549
1548
|
var results = []; // @@ fixme
|
|
1550
1549
|
for (var _i = 0; _i < predicates.length; _i++) {
|
|
1551
1550
|
var tempQuery = {};
|
|
@@ -1561,7 +1560,7 @@ function UserInput(outline) {
|
|
|
1561
1560
|
}
|
|
1562
1561
|
|
|
1563
1562
|
// @@ TODO: Write away the need for exception on next line
|
|
1564
|
-
|
|
1563
|
+
|
|
1565
1564
|
var entries = results[0];
|
|
1566
1565
|
if (entries.length === 0) {
|
|
1567
1566
|
console.log('cm length 0\n'); // hq
|
|
@@ -1704,9 +1703,7 @@ function UserInput(outline) {
|
|
|
1704
1703
|
var tr = selectedTd.parentNode;
|
|
1705
1704
|
var stat;
|
|
1706
1705
|
var isInverse;
|
|
1707
|
-
// eslint-disable-next-line prefer-const
|
|
1708
1706
|
stat = tr.AJAR_statement;
|
|
1709
|
-
// eslint-disable-next-line prefer-const
|
|
1710
1707
|
isInverse = tr.AJAR_inverse;
|
|
1711
1708
|
var reqTerm = type === 'object' ? stat.object : stat.predicate;
|
|
1712
1709
|
var newStat;
|