issue-pane 2.4.5 → 2.4.7-alpha-d9bd19aa

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/.eslintrc CHANGED
File without changes
package/.nvmrc CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/LICENSE.md CHANGED
File without changes
package/Makefile CHANGED
File without changes
package/README.md CHANGED
File without changes
package/board.js CHANGED
File without changes
package/issue.js CHANGED
File without changes
package/issuePane.js CHANGED
@@ -22,7 +22,7 @@ const widgets = UI.widgets
22
22
  // const TRACKER_ICON = UI.icons.iconBase + 'noun_list_638112'
23
23
  // const TASK_ICON = UI.icons.iconBase + 'noun_17020.svg'
24
24
 
25
- const OVERFLOW_STYLE = 'position: fixed; top: 1.51em; right: 2em; left: 2em; bottom:1.5em; border: 0.1em grey; overflow: scroll;'
25
+ const OVERFLOW_STYLE = 'position: fixed; z-index: 100; top: 1.51em; right: 2em; left: 2em; bottom:1.5em; border: 0.1em grey; overflow: scroll;'
26
26
  export default {
27
27
  icon: UI.icons.iconBase + 'noun_122196.svg', // was: js/panes/issue/tbl-bug-22.png
28
28
  // noun_list_638112 is a checklist document
package/newIssue.js CHANGED
File without changes
package/newTracker.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "issue-pane",
3
- "version": "2.4.5",
3
+ "version": "2.4.7-alpha-d9bd19aa",
4
4
  "description": "Solid-compatible Panes: issue editor",
5
5
  "main": "./issuePane.js",
6
6
  "scripts": {
@@ -9,7 +9,7 @@
9
9
  "lint-fix": "eslint '*.js' --fix",
10
10
  "test": "npm run lint",
11
11
  "prepublishOnly": "npm test",
12
- "postpublish": "git push origin master --follow-tags"
12
+ "postpublish": "git push origin main --follow-tags"
13
13
  },
14
14
  "repository": {
15
15
  "type": "git",
@@ -34,14 +34,14 @@
34
34
  },
35
35
  "homepage": "https://github.com/solid/issue-pane",
36
36
  "dependencies": {
37
- "pane-registry": "^2.3.5",
38
- "rdflib": "^2.1.7",
39
- "solid-ui": "^2.3.9"
37
+ "pane-registry": "^2.4.2",
38
+ "rdflib": "^2.2.7",
39
+ "solid-ui": "^2.4.9-alpha-d9bd19aa"
40
40
  },
41
41
  "devDependencies": {
42
- "eslint": "^7.18.0",
43
- "husky": "^4.3.8",
44
- "lint-staged": "^10.5.3",
42
+ "eslint": "^7.28.0",
43
+ "husky": "^6.0.0",
44
+ "lint-staged": "^11.0.0",
45
45
  "standard": "^16.0.3"
46
46
  },
47
47
  "husky": {
package/tbl-bug-22.png CHANGED
File without changes
@@ -31,7 +31,7 @@ export const trackerSettingsFormText = `
31
31
  [ a ui:Comment; ui:contents """You can optionally sort issues using (one or more) classification systems"""@en ]
32
32
 
33
33
 
34
- [ a ui:Choice; ui:canMintNew true; ui:use core:ClassificationForm;
34
+ [ a ui:Multiple; ui:canMintNew true; ui:part core:ClassificationForm;
35
35
  ui:property wf:issueCategory; ui:label "Sort them into which category?"; ui:from rdfs:Class ]
36
36
 
37
37
  [ a :BooleanField;
@@ -30,7 +30,7 @@
30
30
  [ a ui:Comment; ui:contents """You can optionally sort issues using (one or more) classification systems"""@en ]
31
31
 
32
32
 
33
- [ a ui:Choice; ui:canMintNew true; ui:use core:ClassificationForm;
33
+ [ a ui:Multiple; ui:canMintNew true; ui:part core:ClassificationForm;
34
34
  ui:property wf:issueCategory; ui:label "Sort them into which category?"; ui:from rdfs:Class ]
35
35
 
36
36
  [ a :BooleanField;
package/ui.js CHANGED
File without changes
package/ui.ttl CHANGED
File without changes
package/wf.js CHANGED
File without changes
package/wf.ttl CHANGED
File without changes