contacts-pane 2.6.9-alpha → 2.6.9-e35666f1

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 +3 -3
  3. package/.nvmrc +0 -0
  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 +0 -0
  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 +0 -0
  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 +11 -11
  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
@@ -27,7 +27,7 @@ jobs:
27
27
  - run: npm test
28
28
  - run: npm run build
29
29
  - name: Save build
30
- if: matrix.node-version == '14.x'
30
+ if: matrix.node-version == '16.x'
31
31
  uses: actions/upload-artifact@v2
32
32
  with:
33
33
  name: build
@@ -45,7 +45,7 @@ jobs:
45
45
  name: build
46
46
  - uses: actions/setup-node@v1
47
47
  with:
48
- node-version: 14.x
48
+ node-version: 16.x
49
49
  - uses: rlespinasse/github-slug-action@v3.x
50
50
  - name: Append commit hash to package version
51
51
  run: 'sed -i -E "s/(\"version\": *\"[^\"]+)/\1-${GITHUB_SHA_SHORT}/" package.json'
@@ -65,7 +65,7 @@ jobs:
65
65
  name: build
66
66
  - uses: actions/setup-node@v1
67
67
  with:
68
- node-version: 14.x
68
+ node-version: 16.x
69
69
  - name: Disable pre- and post-publish actions
70
70
  run: 'sed -i -E "s/\"((pre|post)publish)/\"ignore:\1/" package.json'
71
71
  - uses: JS-DevTools/npm-publish@v1
package/.nvmrc CHANGED
File without changes
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
File without changes
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
File without changes
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.9-alpha",
3
+ "version": "2.6.9-e35666f1",
4
4
  "description": "Contacts Pane: Contacts manager for Address Book, Groups, and Individuals.",
5
5
  "main": "./contactsPane.js",
6
6
  "scripts": {
@@ -10,8 +10,8 @@
10
10
  "lint": "eslint '*.js'",
11
11
  "lint-fix": "eslint '*.js' --fix",
12
12
  "test": "npm run lint && npm run build && npx tsc --target es2015 --moduleResolution node __tests__/unit/*.ts && jest __tests__/unit/*test.ts",
13
- "prepublishOnly": "npm test && npm run build",
14
- "postpublish": "git push origin main --follow-tags"
13
+ "ignore:prepublishOnly": "npm test && npm run build",
14
+ "ignore:postpublish": "git push origin main --follow-tags"
15
15
  },
16
16
  "repository": {
17
17
  "type": "git",
@@ -37,22 +37,22 @@
37
37
  },
38
38
  "homepage": "https://github.com/solid/contacts-pane",
39
39
  "dependencies": {
40
- "solid-ui": "^2.4.26-alpha"
40
+ "solid-ui": "2.4.26"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@babel/preset-env": "^7.20.2",
44
- "@babel/preset-typescript": "^7.18.6",
44
+ "@babel/preset-typescript": "^7.21.0",
45
45
  "@testing-library/jest-dom": "^5.16.5",
46
- "@typescript-eslint/eslint-plugin": "^5.50.0",
47
- "@typescript-eslint/parser": "^5.50.0",
46
+ "@typescript-eslint/eslint-plugin": "^5.54.0",
47
+ "@typescript-eslint/parser": "^5.54.0",
48
48
  "babel-cli": "^6.26.0",
49
- "eslint": "^8.33.0",
49
+ "eslint": "^8.35.0",
50
50
  "eslint-plugin-import": "^2.27.5",
51
51
  "husky": "^8.0.3",
52
- "jest": "^29.4.1",
53
- "jest-environment-jsdom": "^29.4.1",
52
+ "jest": "^29.4.3",
53
+ "jest-environment-jsdom": "^29.4.3",
54
54
  "jest-fetch-mock": "^3.0.3",
55
- "lint-staged": "^13.1.0",
55
+ "lint-staged": "^13.1.2",
56
56
  "typescript": "^4.9.5",
57
57
  "typescript-transpile-only": "0.0.4"
58
58
  },
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