@tuki-io/tuki-widgets 0.0.219-dev.20 → 0.0.219-dev.23

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 (64) hide show
  1. package/esm2020/shared/public-api.mjs +4 -0
  2. package/esm2020/shared/src/ui/material.module.mjs +188 -0
  3. package/esm2020/shared/src/ui/shared.module.mjs +36 -0
  4. package/esm2020/shared/src/ui/tk-page-section/tk-page-section.component.mjs +13 -0
  5. package/esm2020/shared/src/ui/tk-page-section-row/tk-page-section-row.component.mjs +13 -0
  6. package/esm2020/shared/src/ui/ui.module.mjs +37 -0
  7. package/esm2020/shared/tuki-io-tuki-widgets-shared.mjs +5 -0
  8. package/esm2020/user-creation/src/widgets/user-creation-wizard/user-creation-wizard.component.mjs +6 -4
  9. package/esm2020/user-device-manage/src/classes/simplified-user.mjs +1 -1
  10. package/esm2020/user-device-manage/src/user-device-manage.module.mjs +1 -4
  11. package/esm2020/user-manage/src/app.constants.mjs +7 -1
  12. package/esm2020/user-manage/src/classes/simplified-user.mjs +4 -3
  13. package/esm2020/user-manage/src/device-list/device-list.component.mjs +7 -4
  14. package/esm2020/user-manage/src/device-list/device-row/device-row.component.mjs +6 -3
  15. package/esm2020/user-manage/src/material.module.mjs +14 -7
  16. package/esm2020/user-manage/src/services/user.service.mjs +53 -15
  17. package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +3 -3
  18. package/esm2020/user-manage/src/user-manage-widget.component.mjs +16 -10
  19. package/esm2020/user-manage/src/user-manage.module.mjs +7 -3
  20. package/esm2020/users-list/src/classes/simlified-user.mjs +1 -1
  21. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +14 -3
  22. package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +5 -3
  23. package/esm2020/users-list/src/users-list.component.mjs +4 -3
  24. package/fesm2015/tuki-io-tuki-widgets-shared.mjs +280 -0
  25. package/fesm2015/tuki-io-tuki-widgets-shared.mjs.map +1 -0
  26. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs +5 -3
  27. package/fesm2015/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  28. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +0 -13
  29. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  30. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +104 -37
  31. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  32. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +21 -6
  33. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  34. package/fesm2020/tuki-io-tuki-widgets-shared.mjs +280 -0
  35. package/fesm2020/tuki-io-tuki-widgets-shared.mjs.map +1 -0
  36. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs +5 -3
  37. package/fesm2020/tuki-io-tuki-widgets-user-creation.mjs.map +1 -1
  38. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +0 -13
  39. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  40. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +104 -37
  41. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  42. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +20 -6
  43. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  44. package/package.json +9 -1
  45. package/shared/index.d.ts +5 -0
  46. package/shared/public-api.d.ts +3 -0
  47. package/shared/src/ui/material.module.d.ts +28 -0
  48. package/shared/src/ui/shared.module.d.ts +10 -0
  49. package/{user-device-manage/src/shared/tk-page-section/page-section.component.d.ts → shared/src/ui/tk-page-section/tk-page-section.component.d.ts} +1 -1
  50. package/shared/src/ui/tk-page-section-row/tk-page-section-row.component.d.ts +6 -0
  51. package/shared/src/ui/ui.module.d.ts +11 -0
  52. package/user-device-manage/src/classes/simplified-user.d.ts +1 -1
  53. package/user-device-manage/src/user-device-manage.module.d.ts +9 -10
  54. package/user-manage/src/app.constants.d.ts +6 -0
  55. package/user-manage/src/classes/simplified-user.d.ts +4 -1
  56. package/user-manage/src/device-list/device-list.component.d.ts +2 -0
  57. package/user-manage/src/material.module.d.ts +2 -1
  58. package/user-manage/src/services/user.service.d.ts +4 -0
  59. package/user-manage/src/user-manage-widget.component.d.ts +2 -0
  60. package/user-manage/src/user-manage.module.d.ts +2 -1
  61. package/users-list/src/classes/simlified-user.d.ts +1 -1
  62. package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +3 -1
  63. package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +2 -1
  64. package/esm2020/user-device-manage/src/shared/tk-page-section/page-section.component.mjs +0 -13
@@ -3411,17 +3411,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3411
3411
  class InfoDialogConfig {
3412
3412
  }
3413
3413
 
3414
- class PageSectionComponent {
3415
- }
3416
- PageSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3417
- PageSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PageSectionComponent, selector: "lib-page-section", inputs: { heading: "heading" }, ngImport: i0, template: "<section class=\"wrapper\">\r\n <div class=\"section__left-header\">\r\n <div class=\"heading-wrapper\">\r\n <h2 class=\"heading\">{{ heading }}</h2>\r\n <div class=\"heading-icon\">\r\n <ng-content select=\"heading-icon\"></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"section__content\">\r\n <ng-content select=\"content\"></ng-content>\r\n </div>\r\n</section>", styles: [".wrapper{color:#000000f2;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;width:100%;padding:1.5rem;display:flex}.section__left-header{display:flex;align-items:left;justify-content:center;flex-direction:column;gap:1rem;background-color:red;flex:1;max-width:11rem}.section__left-header .heading-wrapper{display:flex;align-items:center;justify-content:left;gap:.5rem}.section__left-header .heading{font-size:16px;font-weight:500}.section__left-header .heading-icon{display:flex;align-items:center;justify-content:center}.section__content{display:flex;align-items:center;justify-content:center;gap:.5rem}\n"] });
3418
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, decorators: [{
3419
- type: Component,
3420
- args: [{ selector: 'lib-page-section', template: "<section class=\"wrapper\">\r\n <div class=\"section__left-header\">\r\n <div class=\"heading-wrapper\">\r\n <h2 class=\"heading\">{{ heading }}</h2>\r\n <div class=\"heading-icon\">\r\n <ng-content select=\"heading-icon\"></ng-content>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"section__content\">\r\n <ng-content select=\"content\"></ng-content>\r\n </div>\r\n</section>", styles: [".wrapper{color:#000000f2;border:1px solid rgba(0,0,0,.2);border-radius:.5rem;width:100%;padding:1.5rem;display:flex}.section__left-header{display:flex;align-items:left;justify-content:center;flex-direction:column;gap:1rem;background-color:red;flex:1;max-width:11rem}.section__left-header .heading-wrapper{display:flex;align-items:center;justify-content:left;gap:.5rem}.section__left-header .heading{font-size:16px;font-weight:500}.section__left-header .heading-icon{display:flex;align-items:center;justify-content:center}.section__content{display:flex;align-items:center;justify-content:center;gap:.5rem}\n"] }]
3421
- }], propDecorators: { heading: [{
3422
- type: Input
3423
- }] } });
3424
-
3425
3414
  class UserDeviceManageModule {
3426
3415
  }
3427
3416
  UserDeviceManageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserDeviceManageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -3435,7 +3424,6 @@ UserDeviceManageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
3435
3424
  DeviceAssociatedLineDetailsBoxComponent,
3436
3425
  AssociatedLineRowComponent,
3437
3426
  InfoDialogComponent,
3438
- PageSectionComponent,
3439
3427
  DeviceInfoComponent,
3440
3428
  MacAddressPipe], imports: [CommonModule,
3441
3429
  BrowserModule,
@@ -3476,7 +3464,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3476
3464
  DeviceAssociatedLineDetailsBoxComponent,
3477
3465
  AssociatedLineRowComponent,
3478
3466
  InfoDialogComponent,
3479
- PageSectionComponent,
3480
3467
  DeviceInfoComponent,
3481
3468
  MacAddressPipe,
3482
3469
  ],