@tuki-io/tuki-widgets 0.0.219-dev.22 → 0.0.219-dev.24
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/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +6 -4
- package/esm2020/user-device-manage/src/classes/simplified-user.mjs +1 -1
- package/esm2020/user-manage/src/app.constants.mjs +7 -1
- package/esm2020/user-manage/src/classes/simplified-user.mjs +4 -3
- package/esm2020/user-manage/src/device-list/device-row/device-row.component.mjs +6 -4
- package/esm2020/user-manage/src/material.module.mjs +14 -7
- package/esm2020/user-manage/src/services/dcp-api.service.mjs +79 -0
- package/esm2020/user-manage/src/services/user.service.mjs +50 -9
- package/esm2020/user-manage/src/user-manage-widget.component.mjs +52 -21
- package/esm2020/user-manage/src/user-manage.module.mjs +4 -1
- package/esm2020/users-list/src/classes/simlified-user.mjs +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +5 -3
- package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +197 -34
- package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +5 -3
- package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +196 -34
- package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
- package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
- package/package.json +1 -1
- package/user-device-manage/src/classes/simplified-user.d.ts +1 -1
- package/user-manage/src/app.constants.d.ts +6 -0
- package/user-manage/src/classes/simplified-user.d.ts +4 -1
- package/user-manage/src/material.module.d.ts +2 -1
- package/user-manage/src/services/dcp-api.service.d.ts +21 -0
- package/user-manage/src/services/user.service.d.ts +7 -1
- package/user-manage/src/user-manage-widget.component.d.ts +9 -2
- package/users-list/src/classes/simlified-user.d.ts +1 -1
|
@@ -2668,10 +2668,12 @@ class UserCreationWizardComponent {
|
|
|
2668
2668
|
this.isLoading = true;
|
|
2669
2669
|
this.userCreationWizardService.saveNewUser()
|
|
2670
2670
|
.subscribe((res) => {
|
|
2671
|
-
this.isLoading = false;
|
|
2672
|
-
this.isSubmitting = false;
|
|
2673
2671
|
this.notificationService.success('User created successfully!');
|
|
2674
|
-
|
|
2672
|
+
setTimeout(() => {
|
|
2673
|
+
this.isLoading = false;
|
|
2674
|
+
this.isSubmitting = false;
|
|
2675
|
+
this.submit.emit();
|
|
2676
|
+
}, 3000);
|
|
2675
2677
|
}, (error) => {
|
|
2676
2678
|
this.isLoading = false;
|
|
2677
2679
|
this.isSubmitting = false;
|