solid-panes 3.6.3-7e7222f2 → 3.6.3-92923e59
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 +2 -2
- package/coverage/lcov-report/index.html +1 -1
- package/coverage/lcov-report/outline/index.html +1 -1
- package/coverage/lcov-report/outline/outlineIcons.js.html +1 -1
- package/coverage/lcov-report/outline/propertyViews.ts.html +1 -1
- 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/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 +13 -13
- 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/src/transaction/pane.js
CHANGED
|
@@ -541,7 +541,7 @@ export default {
|
|
|
541
541
|
|
|
542
542
|
for (const y in yearCategoryTotal) {
|
|
543
543
|
// @@ TODO: Write away the need for exception on next line
|
|
544
|
-
|
|
544
|
+
|
|
545
545
|
if (yearCategoryTotal.hasOwnProperty(y)) {
|
|
546
546
|
years.push(y)
|
|
547
547
|
}
|
|
@@ -567,7 +567,7 @@ export default {
|
|
|
567
567
|
|
|
568
568
|
for (const uri in total) {
|
|
569
569
|
// @@ TODO: Write away the need for exception on next line
|
|
570
|
-
|
|
570
|
+
|
|
571
571
|
if (total.hasOwnProperty(uri)) {
|
|
572
572
|
types.push(uri)
|
|
573
573
|
grandTotal += total[uri]
|
|
@@ -251,7 +251,7 @@ export default {
|
|
|
251
251
|
for (const y in xURIs) {
|
|
252
252
|
// For each thing which can be inferred to be a transaction
|
|
253
253
|
// @@ TODO: Write away the need for exception on next line
|
|
254
|
-
|
|
254
|
+
|
|
255
255
|
if (xURIs.hasOwnProperty(y)) {
|
|
256
256
|
z = kb.sym(y)
|
|
257
257
|
const tt = kb.each(z, ns.rdf('type')) // What EXPLICIT definitions
|
|
@@ -301,7 +301,7 @@ export default {
|
|
|
301
301
|
const cats = kb.findSubClassesNT(ns.qu('Transaction'))
|
|
302
302
|
for (const cat in cats) {
|
|
303
303
|
// @@ TODO: Write away the need for exception on next line
|
|
304
|
-
|
|
304
|
+
|
|
305
305
|
if (cats.hasOwnProperty(cat)) {
|
|
306
306
|
if (cat.slice(1, -1).split('#')[1] === catTail) {
|
|
307
307
|
return kb.sym(cat.slice(1, -1))
|
package/src/types.ts
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
interface SolidAuthorization {
|
|
2
|
-
|
|
2
|
+
|
|
3
3
|
access_token: string
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
client_id: string
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
id_token: string
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
interface SolidClaim {
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
at_hash: string
|
|
13
13
|
aud: string
|
|
14
14
|
azp: string
|
package/src/versionInfo.ts
CHANGED