profile-pane 1.1.1 → 1.1.2

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 (50) hide show
  1. package/README.md +9 -0
  2. package/lib/0SAVED-CVCard.js +0 -0
  3. package/lib/0SAVED-CVCard.js.map +0 -0
  4. package/lib/CVCard.js +0 -0
  5. package/lib/CVCard.js.map +0 -0
  6. package/lib/CVPresenter.js +0 -0
  7. package/lib/CVPresenter.js.map +0 -0
  8. package/lib/ChatWithMe.js +0 -0
  9. package/lib/ChatWithMe.js.map +0 -0
  10. package/lib/FriendList.js +0 -0
  11. package/lib/FriendList.js.map +0 -0
  12. package/lib/ProfileCard.js +0 -0
  13. package/lib/ProfileCard.js.map +0 -0
  14. package/lib/ProfileView.js +0 -0
  15. package/lib/ProfileView.js.map +0 -0
  16. package/lib/QRCodeCard.js +0 -0
  17. package/lib/QRCodeCard.js.map +0 -0
  18. package/lib/SocialCard.js +0 -0
  19. package/lib/SocialCard.js.map +0 -0
  20. package/lib/SocialPresenter.js +0 -0
  21. package/lib/SocialPresenter.js.map +0 -0
  22. package/lib/StuffCard.js +0 -0
  23. package/lib/StuffCard.js.map +0 -0
  24. package/lib/StuffPresenter.js +0 -0
  25. package/lib/StuffPresenter.js.map +0 -0
  26. package/lib/addMeToYourFriends.js +0 -0
  27. package/lib/addMeToYourFriends.js.map +0 -0
  28. package/lib/addMeToYourFriendsHelper.js +0 -0
  29. package/lib/addMeToYourFriendsHelper.js.map +0 -0
  30. package/lib/baseStyles.js +0 -0
  31. package/lib/baseStyles.js.map +0 -0
  32. package/lib/editProfilePane/editProfile.view.js +0 -0
  33. package/lib/editProfilePane/editProfile.view.js.map +0 -0
  34. package/lib/editProfilePane/profile.dom.js +0 -0
  35. package/lib/editProfilePane/profile.dom.js.map +0 -0
  36. package/lib/editProfilePane/wrapped-profileFormText.js +0 -0
  37. package/lib/editProfilePane/wrapped-profileFormText.js.map +0 -0
  38. package/lib/index.js +0 -0
  39. package/lib/index.js.map +0 -0
  40. package/lib/integration-tests/helpers/dataSetup.js +0 -0
  41. package/lib/integration-tests/helpers/dataSetup.js.map +0 -0
  42. package/lib/integration-tests/helpers/setup.js +0 -0
  43. package/lib/integration-tests/helpers/setup.js.map +0 -0
  44. package/lib/integration-tests/setup.js +0 -0
  45. package/lib/integration-tests/setup.js.map +0 -0
  46. package/lib/presenter.js +0 -0
  47. package/lib/presenter.js.map +0 -0
  48. package/lib/texts.js +0 -0
  49. package/lib/texts.js.map +0 -0
  50. package/package.json +18 -18
package/README.md CHANGED
@@ -22,6 +22,9 @@ To run all tests:
22
22
  npm test
23
23
  ```
24
24
 
25
+ If you are a first time developer/user on Windows 10, the repository may give package issues regarding webpack or jest.
26
+ If this is the case, simply run "npm audit fix" and upgrade the repository. It should work fine.
27
+
25
28
  #### Unit tests
26
29
 
27
30
  Unit tests use `jest` and are placed next to the tested file as `*.spec.ts` files.
@@ -56,3 +59,9 @@ npm run check
56
59
  ```
57
60
 
58
61
  This does lint, build and test.
62
+
63
+ ### Notes
64
+
65
+ If suddenly many tests fail, it may be that the installation has ended up with
66
+ two different instances of solid-logic. Run `npm list solid-logic` and make sure there is only one.
67
+ Otherwise `rm -rf node_modules package-lock.json && npm install` should fix it.
File without changes
File without changes
package/lib/CVCard.js CHANGED
File without changes
package/lib/CVCard.js.map CHANGED
File without changes
File without changes
File without changes
package/lib/ChatWithMe.js CHANGED
File without changes
File without changes
package/lib/FriendList.js CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/lib/QRCodeCard.js CHANGED
File without changes
File without changes
package/lib/SocialCard.js CHANGED
File without changes
File without changes
File without changes
File without changes
package/lib/StuffCard.js 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/lib/baseStyles.js CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/lib/index.js CHANGED
File without changes
package/lib/index.js.map CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/lib/presenter.js CHANGED
File without changes
File without changes
package/lib/texts.js CHANGED
File without changes
package/lib/texts.js.map CHANGED
File without changes
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "profile-pane",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "A SolidOS compatible pane to display a personal profile page",
5
5
  "repository": {
6
6
  "type": "git",
7
- "url": "https://github.com/solidos/profile-pane.git"
7
+ "url": "git+https://github.com/solidos/profile-pane.git"
8
8
  },
9
9
  "main": "lib/index.js",
10
10
  "scripts": {
@@ -14,7 +14,7 @@
14
14
  "check": "npm run lint && npm run build && npm run test",
15
15
  "test": "jest",
16
16
  "lint": "eslint ./src",
17
- "ignore:prepublishOnly": "npm run check"
17
+ "prepublishOnly": "npm run check"
18
18
  },
19
19
  "files": [
20
20
  "/lib"
@@ -33,34 +33,34 @@
33
33
  },
34
34
  "license": "MIT",
35
35
  "dependencies": {
36
- "contacts-pane": "^2.6.12",
37
- "lit-html": "^3.1.2",
38
- "qrcode": "^1.5.3",
36
+ "contacts-pane": "^2.6.13",
37
+ "lit-html": "^3.2.1",
38
+ "qrcode": "^1.5.4",
39
39
  "solid-ui": "2.5",
40
40
  "validate-color": "^2.2.4"
41
41
  },
42
42
  "devDependencies": {
43
- "@babel/core": "^7.24.3",
44
- "@babel/preset-env": "^7.24.3",
45
- "@babel/preset-typescript": "^7.24.1",
46
- "@nestjs/cli": "^10.3.2",
43
+ "@babel/core": "^7.26.7",
44
+ "@babel/preset-env": "^7.26.7",
45
+ "@babel/preset-typescript": "^7.26.0",
46
+ "@nestjs/cli": "^10.4.9",
47
47
  "@testing-library/dom": "^9.3.4",
48
- "@testing-library/jest-dom": "^6.4.2",
49
- "@types/jest": "^29.5.12",
48
+ "@testing-library/jest-dom": "^6.6.3",
49
+ "@types/jest": "^29.5.14",
50
50
  "@typescript-eslint/eslint-plugin": "^6.21.0",
51
51
  "@typescript-eslint/parser": "^6.21.0",
52
52
  "babel-jest": "^29.7.0",
53
- "babel-loader": "^9.1.3",
54
- "chat-pane": "^2.4.26",
53
+ "babel-loader": "^9.2.1",
54
+ "chat-pane": "^2.4.27",
55
55
  "eslint": "^8.57.1",
56
- "html-webpack-plugin": "^5.6.0",
56
+ "html-webpack-plugin": "^5.6.3",
57
57
  "jest": "^29.7.0",
58
58
  "jest-environment-jsdom": "^29.7.0",
59
59
  "jest-fetch-mock": "^3.0.3",
60
- "jsdom": "^25.0.0",
60
+ "jsdom": "^25.0.1",
61
61
  "node-polyfill-webpack-plugin": "^2.0.1",
62
- "typescript": "^5.4.3",
63
- "webpack": "^5.91.0",
62
+ "typescript": "^5.7.3",
63
+ "webpack": "^5.97.1",
64
64
  "webpack-cli": "^5.1.4",
65
65
  "webpack-dev-server": "^4.15.2"
66
66
  }