contacts-pane 2.6.1 → 2.6.2-4923952b
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 +3 -1
- package/.github/workflows/ci.yml +0 -1
- package/.nvmrc +1 -1
- package/LICENSE.md +0 -0
- package/Makefile +0 -0
- package/README.md +0 -0
- package/card.ai +0 -0
- package/card.png +0 -0
- package/contactLogic.js +0 -0
- package/contactsPane.js +0 -0
- package/diff.txt +0 -0
- package/exampleOfOpenData/mit-wikidata-details.ttl +0 -0
- package/exampleOfOpenData/mit-wikidata-query.sparql +0 -0
- package/exampleOfOpenData/wikidata-get.json +0 -0
- package/groupMembershipControl.js +0 -0
- package/individual.js +0 -0
- package/individualForm.js +0 -0
- package/lib/autocompleteBar.js +0 -0
- package/lib/autocompleteField.js +0 -0
- package/lib/autocompletePicker.js +0 -0
- package/lib/forms.js +0 -0
- package/lib/instituteDetailsQuery.js +0 -0
- package/lib/publicData.js +0 -0
- package/lib/vcard.js +0 -0
- package/mintNewAddressBook.js +0 -0
- package/mugshotGallery.js +0 -0
- package/organizationForm.js +0 -0
- package/organizationForm.ttl +0 -0
- package/package.json +15 -13
- package/shapes/contacts-shapes.ttl +0 -0
- package/src/autocompleteBar.ts +0 -0
- package/src/autocompleteField.ts +0 -0
- package/src/autocompletePicker.ts +0 -0
- package/src/forms.ttl +0 -0
- package/src/instituteDetailsQuery.sparql +0 -0
- package/src/publicData.ts +0 -0
- package/src/vcard.ttl +0 -0
- package/toolsPane.js +0 -0
- package/webidControl.js +0 -0
package/.eslintrc
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
+
"root": true,
|
|
3
|
+
"parser": "@typescript-eslint/parser",
|
|
4
|
+
"plugins": ["@typescript-eslint"],
|
|
2
5
|
"env": {
|
|
3
6
|
"browser": true,
|
|
4
7
|
"es6": true,
|
|
5
8
|
"node": true
|
|
6
9
|
},
|
|
7
|
-
"extends": "standard",
|
|
8
10
|
"globals": {
|
|
9
11
|
"Atomics": "readonly",
|
|
10
12
|
"SharedArrayBuffer": "readonly"
|
package/.github/workflows/ci.yml
CHANGED
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
v16.14.0
|
package/LICENSE.md
CHANGED
|
File without changes
|
package/Makefile
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
File without changes
|
package/card.ai
CHANGED
|
File without changes
|
package/card.png
CHANGED
|
File without changes
|
package/contactLogic.js
CHANGED
|
File without changes
|
package/contactsPane.js
CHANGED
|
File without changes
|
package/diff.txt
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/individual.js
CHANGED
|
File without changes
|
package/individualForm.js
CHANGED
|
File without changes
|
package/lib/autocompleteBar.js
CHANGED
|
File without changes
|
package/lib/autocompleteField.js
CHANGED
|
File without changes
|
|
File without changes
|
package/lib/forms.js
CHANGED
|
File without changes
|
|
File without changes
|
package/lib/publicData.js
CHANGED
|
File without changes
|
package/lib/vcard.js
CHANGED
|
File without changes
|
package/mintNewAddressBook.js
CHANGED
|
File without changes
|
package/mugshotGallery.js
CHANGED
|
File without changes
|
package/organizationForm.js
CHANGED
|
File without changes
|
package/organizationForm.ttl
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contacts-pane",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.2-4923952b",
|
|
4
4
|
"description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
|
|
5
5
|
"main": "./contactsPane.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "npm run clean && npm run build-lib",
|
|
8
8
|
"clean": "rm -rf lib",
|
|
9
|
-
"build-lib": "mkdir lib &&
|
|
9
|
+
"build-lib": "mkdir lib && make && npx tsc-transpile-only src/*.ts --outDir lib",
|
|
10
10
|
"lint": "eslint '*.js'",
|
|
11
11
|
"lint-fix": "eslint '*.js' --fix",
|
|
12
12
|
"test": "npm run lint",
|
|
13
|
-
"prepublishOnly": "npm test && npm run build",
|
|
14
|
-
"postpublish": "git push origin master --follow-tags"
|
|
13
|
+
"ignore:prepublishOnly": "npm test && npm run build",
|
|
14
|
+
"ignore:postpublish": "git push origin master --follow-tags"
|
|
15
15
|
},
|
|
16
16
|
"repository": {
|
|
17
17
|
"type": "git",
|
|
@@ -37,18 +37,20 @@
|
|
|
37
37
|
},
|
|
38
38
|
"homepage": "https://github.com/solid/contacts-pane",
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"pane-registry": "^2.4.
|
|
41
|
-
"rdflib": "^2.2.
|
|
42
|
-
"solid-logic": "^1.3.
|
|
43
|
-
"solid-ui": "^2.4.
|
|
40
|
+
"pane-registry": "^2.4.9",
|
|
41
|
+
"rdflib": "^2.2.19",
|
|
42
|
+
"solid-logic": "^1.3.16",
|
|
43
|
+
"solid-ui": "^2.4.20"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"eslint": "^
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^5.17.0",
|
|
47
|
+
"@typescript-eslint/parser": "^5.17.0",
|
|
48
|
+
"eslint": "^8.12.0",
|
|
49
|
+
"eslint-plugin-import": "^2.25.4",
|
|
47
50
|
"husky": "^7.0.4",
|
|
48
|
-
"lint-staged": "^
|
|
49
|
-
"
|
|
50
|
-
"typescript": "
|
|
51
|
-
"typescript-transpile-only": "^0.0.4"
|
|
51
|
+
"lint-staged": "^12.3.7",
|
|
52
|
+
"typescript": "^4.6.3",
|
|
53
|
+
"typescript-transpile-only": "0.0.4"
|
|
52
54
|
},
|
|
53
55
|
"husky": {
|
|
54
56
|
"hooks": {
|
|
File without changes
|
package/src/autocompleteBar.ts
CHANGED
|
File without changes
|
package/src/autocompleteField.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/src/forms.ttl
CHANGED
|
File without changes
|
|
File without changes
|
package/src/publicData.ts
CHANGED
|
File without changes
|
package/src/vcard.ttl
CHANGED
|
File without changes
|
package/toolsPane.js
CHANGED
|
File without changes
|
package/webidControl.js
CHANGED
|
File without changes
|