@tuki-io/tuki-widgets 0.0.197 → 0.0.199

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 (49) hide show
  1. package/esm2020/di2mt/shared/components/stat-card/stat-card.component.mjs +2 -2
  2. package/esm2020/user-creation/src/app.constants.mjs +2 -16
  3. package/esm2020/user-creation/src/shared/material.module.mjs +7 -35
  4. package/esm2020/user-creation/src/shared/services/user-creation-api.service.mjs +19 -43
  5. package/esm2020/user-creation/src/shared/shared.module.mjs +4 -27
  6. package/esm2020/user-creation/src/user-creation.module.mjs +7 -40
  7. package/esm2020/user-creation/src/widgets/user-creation-wizard/components/user-details-step/user-details-step.component.mjs +20 -512
  8. package/esm2020/user-creation/src/widgets/user-creation-wizard/components/user-overview-step/user-overview-step.component.mjs +3 -3
  9. package/esm2020/user-creation/src/widgets/user-creation-wizard/components/user-template-step/user-template-step.component.mjs +34 -80
  10. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +19 -83
  11. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.service.mjs +124 -594
  12. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs +1 -1
  13. package/fesm2015/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  14. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +325 -1913
  15. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  16. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs +1 -1
  17. package/fesm2020/tuki-io-tuki-widgets-di2mt.mjs.map +1 -1
  18. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +313 -1868
  19. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  20. package/package.json +1 -1
  21. package/user-creation/src/app.constants.d.ts +0 -10
  22. package/user-creation/src/shared/material.module.d.ts +1 -5
  23. package/user-creation/src/shared/services/user-creation-api.service.d.ts +2 -8
  24. package/user-creation/src/shared/shared.module.d.ts +1 -3
  25. package/user-creation/src/user-creation.module.d.ts +10 -17
  26. package/user-creation/src/widgets/user-creation-wizard/components/user-details-step/user-details-step.component.d.ts +7 -83
  27. package/user-creation/src/widgets/user-creation-wizard/components/user-template-step/user-template-step.component.d.ts +4 -11
  28. package/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.d.ts +0 -18
  29. package/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.service.d.ts +56 -71
  30. package/esm2020/user-creation/src/classes/notification.mjs +0 -32
  31. package/esm2020/user-creation/src/environments/environment.mjs +0 -11
  32. package/esm2020/user-creation/src/interfaces/user-creation-wizard.interfaces.mjs +0 -19
  33. package/esm2020/user-creation/src/shared/components/notification/notification.component.mjs +0 -38
  34. package/esm2020/user-creation/src/shared/pipes/truncate.pipe.mjs +0 -30
  35. package/esm2020/user-creation/src/shared/services/notification.service.mjs +0 -62
  36. package/esm2020/user-creation/src/utils/app-loader/app-loader.mjs +0 -14
  37. package/esm2020/user-creation/src/utils/build-savable-end-user.mjs +0 -147
  38. package/esm2020/user-creation/src/utils/device-name-validation.mjs +0 -23
  39. package/esm2020/user-creation/src/utils/parse-device-name-rule.mjs +0 -26
  40. package/user-creation/src/classes/notification.d.ts +0 -18
  41. package/user-creation/src/environments/environment.d.ts +0 -9
  42. package/user-creation/src/interfaces/user-creation-wizard.interfaces.d.ts +0 -502
  43. package/user-creation/src/shared/components/notification/notification.component.d.ts +0 -19
  44. package/user-creation/src/shared/pipes/truncate.pipe.d.ts +0 -7
  45. package/user-creation/src/shared/services/notification.service.d.ts +0 -18
  46. package/user-creation/src/utils/app-loader/app-loader.d.ts +0 -6
  47. package/user-creation/src/utils/build-savable-end-user.d.ts +0 -23
  48. package/user-creation/src/utils/device-name-validation.d.ts +0 -6
  49. package/user-creation/src/utils/parse-device-name-rule.d.ts +0 -8
@@ -886,7 +886,7 @@ class StatCardComponent {
886
886
  }
887
887
  get pendingActivationPercentage() {
888
888
  var _a, _b;
889
- return Math.ceil(((_a = this.stats) === null || _a === void 0 ? void 0 : _a.totalUpgraded) / ((_b = this.stats) === null || _b === void 0 ? void 0 : _b.pendingActivation) * 100);
889
+ return Math.ceil(((_a = this.stats) === null || _a === void 0 ? void 0 : _a.pendingActivation) / ((_b = this.stats) === null || _b === void 0 ? void 0 : _b.totalUpgraded) * 100);
890
890
  }
891
891
  }
892
892
  StatCardComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: StatCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });