@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
@@ -3389,17 +3389,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3389
3389
  class InfoDialogConfig {
3390
3390
  }
3391
3391
 
3392
- class PageSectionComponent {
3393
- }
3394
- PageSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
3395
- 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"] });
3396
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PageSectionComponent, decorators: [{
3397
- type: Component,
3398
- 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"] }]
3399
- }], propDecorators: { heading: [{
3400
- type: Input
3401
- }] } });
3402
-
3403
3392
  class UserDeviceManageModule {
3404
3393
  }
3405
3394
  UserDeviceManageModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: UserDeviceManageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -3413,7 +3402,6 @@ UserDeviceManageModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0",
3413
3402
  DeviceAssociatedLineDetailsBoxComponent,
3414
3403
  AssociatedLineRowComponent,
3415
3404
  InfoDialogComponent,
3416
- PageSectionComponent,
3417
3405
  DeviceInfoComponent,
3418
3406
  MacAddressPipe], imports: [CommonModule,
3419
3407
  BrowserModule,
@@ -3454,7 +3442,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
3454
3442
  DeviceAssociatedLineDetailsBoxComponent,
3455
3443
  AssociatedLineRowComponent,
3456
3444
  InfoDialogComponent,
3457
- PageSectionComponent,
3458
3445
  DeviceInfoComponent,
3459
3446
  MacAddressPipe,
3460
3447
  ],