solid-panes 3.5.36-afb8af9f → 3.5.36-fcdc4202
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/lib/outline/manager.js +0 -8
- package/lib/outline/manager.js.map +1 -1
- package/lib/outline/manager.test.d.ts +2 -0
- package/lib/outline/manager.test.d.ts.map +1 -0
- package/lib/outline/propertyViews.test.d.ts +2 -0
- package/lib/outline/propertyViews.test.d.ts.map +1 -0
- package/lib/outline/propertyViews.test.js +1 -0
- package/lib/outline/propertyViews.test.js.map +1 -1
- package/lib/trustedApplications/trustedApplications.test.d.ts +2 -0
- package/lib/trustedApplications/trustedApplications.test.d.ts.map +1 -0
- package/lib/trustedApplications/trustedApplications.utils.d.ts +1 -0
- package/lib/trustedApplications/trustedApplications.utils.d.ts.map +1 -1
- package/lib/versionInfo.js +2 -2
- package/lib/versionInfo.js.map +1 -1
- package/package.json +2 -2
- package/src/outline/manager.js +0 -9
- package/src/outline/propertyViews.test.ts +2 -1
- package/src/versionInfo.ts +2 -2
- package/tsconfig.json +7 -1
- package/lib/outline/licenseOptions.js +0 -80
- package/lib/outline/licenseOptions.js.map +0 -1
- package/src/outline/licenseOptions.js +0 -105
package/lib/outline/manager.js
CHANGED
|
@@ -10,7 +10,6 @@ var $rdf = _interopRequireWildcard(require("rdflib"));
|
|
|
10
10
|
var UI = _interopRequireWildcard(require("solid-ui"));
|
|
11
11
|
var _solidLogic = require("solid-logic");
|
|
12
12
|
var _propertyViews = require("./propertyViews");
|
|
13
|
-
var _licenseOptions = require("./licenseOptions");
|
|
14
13
|
var _outlineIcons = require("./outlineIcons.js");
|
|
15
14
|
var _userInput = require("./userInput.js");
|
|
16
15
|
var queryByExample = _interopRequireWildcard(require("./queryByExample.js"));
|
|
@@ -162,13 +161,6 @@ function _default(context) {
|
|
|
162
161
|
td.setAttribute('notSelectable', 'false');
|
|
163
162
|
var theClass = 'obj';
|
|
164
163
|
|
|
165
|
-
// check the IPR on the data. Ok if there is any checked license which is one the document has.
|
|
166
|
-
if (statement && statement.why) {
|
|
167
|
-
if (_licenseOptions.licenseOptions && _licenseOptions.licenseOptions.checklicense && _licenseOptions.licenseOptions.checklicense()) {
|
|
168
|
-
theClass += ' licOkay'; // flag as light green etc .licOkay {background-color: #dfd}
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
164
|
// set about and put 'expand' icon
|
|
173
165
|
if (obj.termType === 'NamedNode' || obj.termType === 'BlankNode' || obj.termType === 'Literal' && obj.value.slice && (obj.value.slice(0, 6) === 'ftp://' || obj.value.slice(0, 8) === 'https://' || obj.value.slice(0, 7) === 'http://')) {
|
|
174
166
|
td.setAttribute('about', obj.toNT());
|