@ieeesa-npm/groups 0.7.5 → 0.7.7
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/esm2022/lib/components/add-user-roster/add-user-roster.component.mjs +12 -3
- package/esm2022/lib/components/create-group/create-group.component.mjs +2 -2
- package/esm2022/lib/components/edit-user-roles/edit-user-roles.component.mjs +29 -19
- package/fesm2022/ieeesa-npm-groups.mjs +40 -21
- package/fesm2022/ieeesa-npm-groups.mjs.map +1 -1
- package/lib/components/add-user-roster/add-user-roster.component.d.ts +5 -0
- package/lib/components/edit-user-roles/edit-user-roles.component.d.ts +5 -0
- package/package.json +3 -3
|
@@ -155,6 +155,11 @@ export declare class AddUserRosterComponent implements OnInit, OnDestroy {
|
|
|
155
155
|
* @memberof AddUserRosterComponent
|
|
156
156
|
*/
|
|
157
157
|
getAddNewUserPayload(formData: any): AddOrEditUserPayload | AddOrEditUserIndividualRosterPayload;
|
|
158
|
+
/**
|
|
159
|
+
* Disables form submit button when org name length is less than minCharToSearch and greater than zero.
|
|
160
|
+
* @memberof AddUserRosterComponent
|
|
161
|
+
*/
|
|
162
|
+
disableSubmitButton(): void;
|
|
158
163
|
/**
|
|
159
164
|
* NgOnDestroy performs necessary cleanup tasks, such as unsubscribing from subscription when the component is being destroyed.
|
|
160
165
|
* @memberof AddUserRosterComponent
|
|
@@ -132,6 +132,11 @@ export declare class EditUserRolesComponent implements OnInit, OnDestroy {
|
|
|
132
132
|
* @memberof EditUserRolesComponent
|
|
133
133
|
*/
|
|
134
134
|
handleErrors(error: any): void;
|
|
135
|
+
/**
|
|
136
|
+
* Disables form submit button when org name length is less than minCharToSearch and greater than zero.
|
|
137
|
+
* @memberof EditUserRolesComponent
|
|
138
|
+
*/
|
|
139
|
+
disableSubmitButton(): void;
|
|
135
140
|
/**
|
|
136
141
|
* NgOnDestroy performs necessary cleanup tasks, such as unsubscribing from subscription when the component is being destroyed.
|
|
137
142
|
* @memberof EditUserRolesComponent
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ieeesa-npm/groups",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.7",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^16.1.0",
|
|
6
6
|
"@angular/core": "^16.1.0",
|
|
7
|
-
"@ieeesa-npm/presentation": "^0.9.
|
|
7
|
+
"@ieeesa-npm/presentation": "^0.9.1",
|
|
8
8
|
"@ieeesa-npm/shared-styles": "^0.2.1",
|
|
9
|
-
"@ieeesa-npm/utility": "^0.8.
|
|
9
|
+
"@ieeesa-npm/utility": "^0.8.2"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|