@posiwise/user-module 0.0.141 → 0.0.143

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 (34) hide show
  1. package/fesm2022/posiwise-user-module.mjs +334 -177
  2. package/fesm2022/posiwise-user-module.mjs.map +1 -1
  3. package/package.json +6 -6
  4. package/types/posiwise-user-module.d.ts +992 -0
  5. package/index.d.ts +0 -28
  6. package/lib/account/account-details/account-details.component.d.ts +0 -75
  7. package/lib/account/account.component.d.ts +0 -14
  8. package/lib/account/subscriptions/add-subscription/add-subscription.component.d.ts +0 -36
  9. package/lib/account/subscriptions/saved-card-details/saved-card-details.component.d.ts +0 -32
  10. package/lib/account/subscriptions/subscription-credential/subscription-credential.component.d.ts +0 -59
  11. package/lib/account/subscriptions/update-payment-details/update-payment-details.component.d.ts +0 -33
  12. package/lib/account/subscriptions/upgrade-subscription/upgrade-subscription.component.d.ts +0 -58
  13. package/lib/account/subscriptions/user-subscription-details/user-subscription-details.component.d.ts +0 -67
  14. package/lib/account/subscriptions/user-subscriptions-list/user-subscriptions-list.component.d.ts +0 -81
  15. package/lib/account/user-invoice/user-invoice.component.d.ts +0 -25
  16. package/lib/settings-tabs/communication-tab/communication-tab.component.d.ts +0 -23
  17. package/lib/settings-tabs/others-tab/others-tab.component.d.ts +0 -19
  18. package/lib/settings-tabs/security-tab/security-tab.component.d.ts +0 -32
  19. package/lib/settings-tabs/settings-tabs.component.d.ts +0 -15
  20. package/lib/shared/interface/user-module.interface.d.ts +0 -144
  21. package/lib/support/support-details/support-details.component.d.ts +0 -32
  22. package/lib/support/support.component.d.ts +0 -16
  23. package/lib/user-module.module.d.ts +0 -53
  24. package/lib/user-profile/edit-portfolios/edit-portfolios.component.d.ts +0 -37
  25. package/lib/user-profile/edit-project-modal/edit-project-modal.component.d.ts +0 -38
  26. package/lib/user-profile/edit-qualifications-modal/edit-qualifications-modal.component.d.ts +0 -31
  27. package/lib/user-profile/edit-recommendation-modal/edit-recommendation-modal.component.d.ts +0 -23
  28. package/lib/user-profile/edit-skills-modal/edit-skills-modal.component.d.ts +0 -36
  29. package/lib/user-profile/edit-social-links/edit-social-links.component.d.ts +0 -26
  30. package/lib/user-profile/edit-user-profile-modal/edit-user-profile-modal.component.d.ts +0 -35
  31. package/lib/user-profile/user-about/user-about.component.d.ts +0 -55
  32. package/lib/user-profile/user-portfolios/user-portfolios.component.d.ts +0 -24
  33. package/lib/user-profile/user-profile-page.component.d.ts +0 -47
  34. package/lib/user-profile/user-projects/user-projects.component.d.ts +0 -35
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "@posiwise/user-module",
3
- "version": "0.0.141",
3
+ "version": "0.0.143",
4
4
  "peerDependencies": {
5
- "@angular/common": "^19.2.18",
6
- "@angular/core": "^19.2.18",
7
- "@angular/cdk": "^19.2.18"
5
+ "@angular/common": "^21.2.6",
6
+ "@angular/core": "^21.2.6",
7
+ "@angular/cdk": "^21.2.0"
8
8
  },
9
9
  "dependencies": {
10
10
  "tslib": "^2.6.2"
11
11
  },
12
12
  "sideEffects": false,
13
13
  "module": "fesm2022/posiwise-user-module.mjs",
14
- "typings": "index.d.ts",
14
+ "typings": "types/posiwise-user-module.d.ts",
15
15
  "exports": {
16
16
  "./package.json": {
17
17
  "default": "./package.json"
18
18
  },
19
19
  ".": {
20
- "types": "./index.d.ts",
20
+ "types": "./types/posiwise-user-module.d.ts",
21
21
  "default": "./fesm2022/posiwise-user-module.mjs"
22
22
  }
23
23
  }