@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.
- package/fesm2022/posiwise-user-module.mjs +334 -177
- package/fesm2022/posiwise-user-module.mjs.map +1 -1
- package/package.json +6 -6
- package/types/posiwise-user-module.d.ts +992 -0
- package/index.d.ts +0 -28
- package/lib/account/account-details/account-details.component.d.ts +0 -75
- package/lib/account/account.component.d.ts +0 -14
- package/lib/account/subscriptions/add-subscription/add-subscription.component.d.ts +0 -36
- package/lib/account/subscriptions/saved-card-details/saved-card-details.component.d.ts +0 -32
- package/lib/account/subscriptions/subscription-credential/subscription-credential.component.d.ts +0 -59
- package/lib/account/subscriptions/update-payment-details/update-payment-details.component.d.ts +0 -33
- package/lib/account/subscriptions/upgrade-subscription/upgrade-subscription.component.d.ts +0 -58
- package/lib/account/subscriptions/user-subscription-details/user-subscription-details.component.d.ts +0 -67
- package/lib/account/subscriptions/user-subscriptions-list/user-subscriptions-list.component.d.ts +0 -81
- package/lib/account/user-invoice/user-invoice.component.d.ts +0 -25
- package/lib/settings-tabs/communication-tab/communication-tab.component.d.ts +0 -23
- package/lib/settings-tabs/others-tab/others-tab.component.d.ts +0 -19
- package/lib/settings-tabs/security-tab/security-tab.component.d.ts +0 -32
- package/lib/settings-tabs/settings-tabs.component.d.ts +0 -15
- package/lib/shared/interface/user-module.interface.d.ts +0 -144
- package/lib/support/support-details/support-details.component.d.ts +0 -32
- package/lib/support/support.component.d.ts +0 -16
- package/lib/user-module.module.d.ts +0 -53
- package/lib/user-profile/edit-portfolios/edit-portfolios.component.d.ts +0 -37
- package/lib/user-profile/edit-project-modal/edit-project-modal.component.d.ts +0 -38
- package/lib/user-profile/edit-qualifications-modal/edit-qualifications-modal.component.d.ts +0 -31
- package/lib/user-profile/edit-recommendation-modal/edit-recommendation-modal.component.d.ts +0 -23
- package/lib/user-profile/edit-skills-modal/edit-skills-modal.component.d.ts +0 -36
- package/lib/user-profile/edit-social-links/edit-social-links.component.d.ts +0 -26
- package/lib/user-profile/edit-user-profile-modal/edit-user-profile-modal.component.d.ts +0 -35
- package/lib/user-profile/user-about/user-about.component.d.ts +0 -55
- package/lib/user-profile/user-portfolios/user-portfolios.component.d.ts +0 -24
- package/lib/user-profile/user-profile-page.component.d.ts +0 -47
- 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.
|
|
3
|
+
"version": "0.0.143",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
7
|
-
"@angular/cdk": "^
|
|
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": "
|
|
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": "./
|
|
20
|
+
"types": "./types/posiwise-user-module.d.ts",
|
|
21
21
|
"default": "./fesm2022/posiwise-user-module.mjs"
|
|
22
22
|
}
|
|
23
23
|
}
|