contacts-pane 2.6.11-test → 2.6.12-17064b60

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.
Files changed (51) hide show
  1. package/.eslintrc +0 -0
  2. package/.github/workflows/ci.yml +0 -0
  3. package/.nvmrc +1 -1
  4. package/LICENSE.md +0 -0
  5. package/Makefile +0 -0
  6. package/README.md +0 -0
  7. package/__tests__/unit/data-reformat-test.js +0 -0
  8. package/__tests__/unit/data-reformat-test.ts +0 -0
  9. package/__tests__/unit/setup.js +1 -1
  10. package/__tests__/unit/setup.ts +0 -0
  11. package/babel.config.js +0 -0
  12. package/card.ai +0 -0
  13. package/card.png +0 -0
  14. package/contactLogic.js +0 -0
  15. package/contactsPane.js +0 -0
  16. package/diff.txt +0 -0
  17. package/exampleOfOpenData/mit-wikidata-details.ttl +0 -0
  18. package/exampleOfOpenData/mit-wikidata-query.sparql +0 -0
  19. package/exampleOfOpenData/wikidata-get.json +0 -0
  20. package/groupMembershipControl.js +2 -1
  21. package/individual.js +0 -0
  22. package/individualForm.js +0 -0
  23. package/jest.config.js +0 -0
  24. package/jest.setup.ts +0 -0
  25. package/lib/autocompleteBar.js +0 -0
  26. package/lib/autocompleteBar.js.map +0 -0
  27. package/lib/autocompleteField.js +0 -0
  28. package/lib/autocompleteField.js.map +0 -0
  29. package/lib/autocompletePicker.js +0 -0
  30. package/lib/autocompletePicker.js.map +0 -0
  31. package/lib/forms.js +0 -0
  32. package/lib/instituteDetailsQuery.js +0 -0
  33. package/lib/publicData.js +0 -0
  34. package/lib/publicData.js.map +0 -0
  35. package/lib/vcard.js +0 -0
  36. package/mintNewAddressBook.js +0 -0
  37. package/mugshotGallery.js +0 -0
  38. package/organizationForm.js +0 -0
  39. package/organizationForm.ttl +0 -0
  40. package/package.json +15 -15
  41. package/shapes/contacts-shapes.ttl +0 -0
  42. package/src/autocompleteBar.ts +0 -0
  43. package/src/autocompleteField.ts +0 -0
  44. package/src/autocompletePicker.ts +0 -0
  45. package/src/forms.ttl +0 -0
  46. package/src/instituteDetailsQuery.sparql +0 -0
  47. package/src/publicData.ts +0 -0
  48. package/src/vcard.ttl +0 -0
  49. package/toolsPane.js +0 -0
  50. package/tsconfig.json +0 -0
  51. package/webidControl.js +0 -0
package/.eslintrc CHANGED
File without changes
File without changes
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v16.14.0
1
+ v18.19.0
package/LICENSE.md CHANGED
File without changes
package/Makefile CHANGED
File without changes
package/README.md CHANGED
File without changes
File without changes
File without changes
@@ -49,7 +49,7 @@ export function mockFetchFunction(req) {
49
49
  const contents = web[req.url];
50
50
  if (contents !== undefined) { //
51
51
  return {
52
- body: prefixes + contents,
52
+ body: prefixes + contents, // Add namespaces to anything
53
53
  status: 200,
54
54
  headers: {
55
55
  "Content-Type": "text/turtle",
File without changes
package/babel.config.js 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
@@ -87,7 +87,8 @@ export async function renderGroupMemberships (person, context) {
87
87
  if (!book) {
88
88
  book = kb.any(undefined, ns.vcard('includesGroup'))
89
89
  if (!book) {
90
- throw new Error('findBookFromGroups: Cant find address book which this group is part of')
90
+ // throw new Error('findBookFromGroups: Cant find address book which this group is part of')
91
+ return // no book => no groups
91
92
  }
92
93
  }
93
94
  const groupIndex = kb.any(book, ns.vcard('groupIndex'))
package/individual.js CHANGED
File without changes
package/individualForm.js CHANGED
File without changes
package/jest.config.js CHANGED
File without changes
package/jest.setup.ts CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
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
File without changes
package/lib/vcard.js CHANGED
File without changes
File without changes
package/mugshotGallery.js CHANGED
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contacts-pane",
3
- "version": "2.6.11-test",
3
+ "version": "2.6.12-17064b60",
4
4
  "description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
5
5
  "main": "./contactsPane.js",
6
6
  "scripts": {
@@ -11,8 +11,8 @@
11
11
  "lint-fix": "eslint '*.js' --fix",
12
12
  "test": "npm run lint && npm run build && npx tsc --target es2015 --moduleResolution node --allowSyntheticDefaultImports __tests__/unit/*.ts && jest __tests__/unit/*test.ts",
13
13
  "jest": "jest __tests__/unit/*test.ts",
14
- "prepublishOnly": "npm run lint && npm run build && npm run jest",
15
- "postpublish": "git push origin main --follow-tags"
14
+ "ignore:prepublishOnly": "npm run lint && npm run build && npm run jest",
15
+ "ignore:postpublish": "git push origin main --follow-tags"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
@@ -38,25 +38,25 @@
38
38
  },
39
39
  "homepage": "https://github.com/solid/contacts-pane",
40
40
  "dependencies": {
41
- "solid-ui": "^2.4.30-28954ea4"
41
+ "solid-ui": "^2.4.33"
42
42
  },
43
43
  "devDependencies": {
44
- "@babel/cli": "^7.23.4",
45
- "@babel/core": "^7.23.5",
46
- "@babel/preset-env": "^7.23.5",
47
- "@babel/preset-typescript": "^7.23.3",
48
- "@testing-library/jest-dom": "^6.1.5",
49
- "@types/jest": "^29.5.10",
50
- "@typescript-eslint/eslint-plugin": "^6.13.2",
51
- "@typescript-eslint/parser": "^6.13.2",
52
- "eslint": "^8.55.0",
53
- "eslint-plugin-import": "^2.29.0",
44
+ "@babel/cli": "^7.24.1",
45
+ "@babel/core": "^7.24.3",
46
+ "@babel/preset-env": "^7.24.3",
47
+ "@babel/preset-typescript": "^7.24.1",
48
+ "@testing-library/jest-dom": "^6.4.2",
49
+ "@types/jest": "^29.5.12",
50
+ "@typescript-eslint/eslint-plugin": "^6.21.0",
51
+ "@typescript-eslint/parser": "^6.21.0",
52
+ "eslint": "^8.57.0",
53
+ "eslint-plugin-import": "^2.29.1",
54
54
  "husky": "^8.0.3",
55
55
  "jest": "^29.7.0",
56
56
  "jest-environment-jsdom": "^29.7.0",
57
57
  "jest-fetch-mock": "^3.0.3",
58
58
  "lint-staged": "^13.3.0",
59
- "typescript": "^5.3.2",
59
+ "typescript": "^5.4.3",
60
60
  "typescript-transpile-only": "0.0.4"
61
61
  },
62
62
  "husky": {
File without changes
File without changes
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/tsconfig.json CHANGED
File without changes
package/webidControl.js CHANGED
File without changes