@tuki-io/tuki-widgets 0.0.32 → 0.0.35

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 (248) hide show
  1. package/README.md +24 -24
  2. package/esm2020/lib/widgets.component.mjs +22 -22
  3. package/esm2020/lib/widgets.module.mjs +21 -21
  4. package/esm2020/lib/widgets.service.mjs +14 -14
  5. package/esm2020/public-api.mjs +7 -7
  6. package/esm2020/tuki-io-tuki-widgets.mjs +4 -4
  7. package/esm2020/user-device-manage/public-api.mjs +9 -9
  8. package/esm2020/user-device-manage/src/app.constants.mjs +95 -95
  9. package/esm2020/user-device-manage/src/classes/device.mjs +85 -85
  10. package/esm2020/user-device-manage/src/classes/line-association-interface.mjs +2 -2
  11. package/esm2020/user-device-manage/src/classes/line-association.mjs +121 -121
  12. package/esm2020/user-device-manage/src/classes/line-call-info-display.mjs +10 -10
  13. package/esm2020/user-device-manage/src/classes/line-directory.mjs +27 -27
  14. package/esm2020/user-device-manage/src/classes/line.mjs +18 -18
  15. package/esm2020/user-device-manage/src/classes/notification.mjs +32 -32
  16. package/esm2020/user-device-manage/src/classes/recording-options.mjs +7 -7
  17. package/esm2020/user-device-manage/src/classes/simplified-user.mjs +111 -111
  18. package/esm2020/user-device-manage/src/classes/site-defaults.mjs +21 -21
  19. package/esm2020/user-device-manage/src/classes/translation-pattern.mjs +32 -32
  20. package/esm2020/user-device-manage/src/classes/types.mjs +24 -24
  21. package/esm2020/user-device-manage/src/common-functions.mjs +19 -19
  22. package/esm2020/user-device-manage/src/confirm-dialog/info-dialog.component.mjs +34 -34
  23. package/esm2020/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.mjs +31 -31
  24. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.mjs +16 -16
  25. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.mjs +64 -64
  26. package/esm2020/user-device-manage/src/device-associated-line/device-associated-line.component.mjs +179 -179
  27. package/esm2020/user-device-manage/src/device-list/device-list.component.mjs +24 -24
  28. package/esm2020/user-device-manage/src/device-manage-widget.component.mjs +335 -335
  29. package/esm2020/user-device-manage/src/environments/environment.mjs +11 -11
  30. package/esm2020/user-device-manage/src/interseptors/auth.interceptor.mjs +36 -36
  31. package/esm2020/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -74
  32. package/esm2020/user-device-manage/src/material.module.mjs +192 -192
  33. package/esm2020/user-device-manage/src/notifications/notification.component.mjs +35 -35
  34. package/esm2020/user-device-manage/src/services/api.service.mjs +79 -79
  35. package/esm2020/user-device-manage/src/services/device.service.mjs +83 -83
  36. package/esm2020/user-device-manage/src/services/dns.service.mjs +104 -104
  37. package/esm2020/user-device-manage/src/services/line.service.mjs +76 -76
  38. package/esm2020/user-device-manage/src/services/notification.service.mjs +62 -62
  39. package/esm2020/user-device-manage/src/services/removeKynFromIBM.service.mjs +25 -25
  40. package/esm2020/user-device-manage/src/services/site-settings.service.mjs +70 -70
  41. package/esm2020/user-device-manage/src/services/sorting-utils.service.mjs +197 -197
  42. package/esm2020/user-device-manage/src/services/user.service.mjs +243 -243
  43. package/esm2020/user-device-manage/src/services/utils.service.mjs +87 -87
  44. package/esm2020/user-device-manage/src/services/validation.service.mjs +760 -760
  45. package/esm2020/user-device-manage/src/user-device-manage.module.mjs +107 -107
  46. package/esm2020/user-device-manage/src/utils/app-loader/app-loader.mjs +14 -14
  47. package/esm2020/user-device-manage/tuki-io-tuki-widgets-user-device-manage.mjs +4 -4
  48. package/esm2020/user-manage/public-api.mjs +7 -7
  49. package/esm2020/user-manage/src/app.constants.mjs +50 -50
  50. package/esm2020/user-manage/src/classes/device.mjs +37 -37
  51. package/esm2020/user-manage/src/classes/line-association-interface.mjs +2 -2
  52. package/esm2020/user-manage/src/classes/line-association.mjs +110 -110
  53. package/esm2020/user-manage/src/classes/line-call-info-display.mjs +10 -10
  54. package/esm2020/user-manage/src/classes/line-directory.mjs +27 -27
  55. package/esm2020/user-manage/src/classes/line.mjs +18 -18
  56. package/esm2020/user-manage/src/classes/notification.mjs +32 -32
  57. package/esm2020/user-manage/src/classes/pagination.mjs +8 -8
  58. package/esm2020/user-manage/src/classes/recording-options.mjs +7 -7
  59. package/esm2020/user-manage/src/classes/simplified-user.mjs +109 -109
  60. package/esm2020/user-manage/src/classes/table-data.mjs +2 -2
  61. package/esm2020/user-manage/src/classes/translation-pattern.mjs +32 -32
  62. package/esm2020/user-manage/src/classes/user-list.mjs +10 -10
  63. package/esm2020/user-manage/src/common-functions.mjs +19 -19
  64. package/esm2020/user-manage/src/device-list/device-list.component.mjs +24 -24
  65. package/esm2020/user-manage/src/environments/environment.mjs +11 -11
  66. package/esm2020/user-manage/src/interseptors/auth.interceptor.mjs +36 -36
  67. package/esm2020/user-manage/src/lazy-loading-select/lazy-loading-select.component.mjs +74 -74
  68. package/esm2020/user-manage/src/material.module.mjs +188 -188
  69. package/esm2020/user-manage/src/notifications/notification.component.mjs +35 -35
  70. package/esm2020/user-manage/src/removeKynFromIBM.service.mjs +25 -25
  71. package/esm2020/user-manage/src/services/api.service.mjs +79 -79
  72. package/esm2020/user-manage/src/services/dns.service.mjs +110 -110
  73. package/esm2020/user-manage/src/services/line.service.mjs +34 -34
  74. package/esm2020/user-manage/src/services/notification.service.mjs +62 -62
  75. package/esm2020/user-manage/src/services/removeKynFromIBM.service.mjs +25 -25
  76. package/esm2020/user-manage/src/services/site-settings.service.mjs +36 -36
  77. package/esm2020/user-manage/src/services/sorting-utils.service.mjs +197 -197
  78. package/esm2020/user-manage/src/services/user.service.mjs +207 -207
  79. package/esm2020/user-manage/src/services/users-search.service.mjs +49 -49
  80. package/esm2020/user-manage/src/services/utils.service.mjs +73 -73
  81. package/esm2020/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.mjs +65 -65
  82. package/esm2020/user-manage/src/user-calling/user-calling.component.mjs +78 -78
  83. package/esm2020/user-manage/src/user-info/user-info.component.mjs +20 -20
  84. package/esm2020/user-manage/src/user-manage-widget.component.mjs +208 -208
  85. package/esm2020/user-manage/src/user-manage.module.mjs +99 -99
  86. package/esm2020/user-manage/src/utils/app-loader/app-loader.mjs +14 -14
  87. package/esm2020/user-manage/src/utils/pagination/pagination.component.mjs +43 -43
  88. package/esm2020/user-manage/tuki-io-tuki-widgets-user-manage.mjs +4 -4
  89. package/esm2020/users-list/public-api.mjs +9 -9
  90. package/esm2020/users-list/src/app.constants.mjs +50 -50
  91. package/esm2020/users-list/src/classes/device.mjs +7 -7
  92. package/esm2020/users-list/src/classes/line.mjs +18 -18
  93. package/esm2020/users-list/src/classes/notification.mjs +31 -31
  94. package/esm2020/users-list/src/classes/pagination.mjs +8 -8
  95. package/esm2020/users-list/src/classes/simlified-user.mjs +50 -50
  96. package/esm2020/users-list/src/classes/table-data.mjs +2 -2
  97. package/esm2020/users-list/src/classes/user-list.mjs +13 -13
  98. package/esm2020/users-list/src/material.module.mjs +209 -209
  99. package/esm2020/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.mjs +95 -95
  100. package/esm2020/users-list/src/move-user-wizard/move-user-wizard.component.mjs +35 -35
  101. package/esm2020/users-list/src/services/api-webex.service.mjs +17 -17
  102. package/esm2020/users-list/src/services/api.service.mjs +78 -78
  103. package/esm2020/users-list/src/services/dns.service.mjs +120 -120
  104. package/esm2020/users-list/src/services/events-communication.service.mjs +14 -14
  105. package/esm2020/users-list/src/services/notification.service.mjs +62 -62
  106. package/esm2020/users-list/src/services/removeKynFromIBM.service.mjs +25 -25
  107. package/esm2020/users-list/src/services/user.service.mjs +150 -150
  108. package/esm2020/users-list/src/services/users-search.service.mjs +120 -120
  109. package/esm2020/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.mjs +34 -34
  110. package/esm2020/users-list/src/users-list.component.mjs +260 -259
  111. package/esm2020/users-list/src/users-list.module.mjs +80 -80
  112. package/esm2020/users-list/src/utils/app-loader/app-loader.mjs +14 -14
  113. package/esm2020/users-list/src/utils/common-functions.mjs +19 -19
  114. package/esm2020/users-list/src/utils/pagination/pagination.component.mjs +43 -43
  115. package/esm2020/users-list/src/utils/utils.service.mjs +73 -73
  116. package/esm2020/users-list/tuki-io-tuki-widgets-users-list.mjs +4 -4
  117. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs +3277 -3277
  118. package/fesm2015/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  119. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs +2004 -2004
  120. package/fesm2015/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  121. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs +1429 -1428
  122. package/fesm2015/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  123. package/fesm2015/tuki-io-tuki-widgets.mjs +48 -48
  124. package/fesm2015/tuki-io-tuki-widgets.mjs.map +1 -1
  125. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs +3239 -3239
  126. package/fesm2020/tuki-io-tuki-widgets-user-device-manage.mjs.map +1 -1
  127. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs +1987 -1987
  128. package/fesm2020/tuki-io-tuki-widgets-user-manage.mjs.map +1 -1
  129. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs +1418 -1417
  130. package/fesm2020/tuki-io-tuki-widgets-users-list.mjs.map +1 -1
  131. package/fesm2020/tuki-io-tuki-widgets.mjs +48 -48
  132. package/fesm2020/tuki-io-tuki-widgets.mjs.map +1 -1
  133. package/index.d.ts +5 -5
  134. package/lib/widgets.component.d.ts +8 -8
  135. package/lib/widgets.module.d.ts +7 -7
  136. package/lib/widgets.service.d.ts +6 -6
  137. package/package.json +1 -1
  138. package/public-api.d.ts +3 -3
  139. package/user-device-manage/index.d.ts +5 -5
  140. package/user-device-manage/public-api.d.ts +8 -8
  141. package/user-device-manage/src/app.constants.d.ts +74 -74
  142. package/user-device-manage/src/classes/device.d.ts +233 -233
  143. package/user-device-manage/src/classes/line-association-interface.d.ts +45 -45
  144. package/user-device-manage/src/classes/line-association.d.ts +62 -62
  145. package/user-device-manage/src/classes/line-call-info-display.d.ts +11 -11
  146. package/user-device-manage/src/classes/line-directory.d.ts +15 -15
  147. package/user-device-manage/src/classes/line.d.ts +140 -140
  148. package/user-device-manage/src/classes/notification.d.ts +18 -18
  149. package/user-device-manage/src/classes/recording-options.d.ts +5 -5
  150. package/user-device-manage/src/classes/simplified-user.d.ts +52 -52
  151. package/user-device-manage/src/classes/site-defaults.d.ts +146 -146
  152. package/user-device-manage/src/classes/translation-pattern.d.ts +19 -19
  153. package/user-device-manage/src/classes/types.d.ts +19 -19
  154. package/user-device-manage/src/common-functions.d.ts +1 -1
  155. package/user-device-manage/src/confirm-dialog/info-dialog.component.d.ts +20 -20
  156. package/user-device-manage/src/device-associated-line/associated-line-row/associated-line-row.component.d.ts +15 -15
  157. package/user-device-manage/src/device-associated-line/device-associated-line-details-box/device-associated-line-details-box.component.d.ts +7 -7
  158. package/user-device-manage/src/device-associated-line/device-associated-line-extension/device-associated-line-extension.component.d.ts +24 -24
  159. package/user-device-manage/src/device-associated-line/device-associated-line.component.d.ts +89 -89
  160. package/user-device-manage/src/device-list/device-list.component.d.ts +11 -11
  161. package/user-device-manage/src/device-manage-widget.component.d.ts +71 -71
  162. package/user-device-manage/src/environments/environment.d.ts +9 -9
  163. package/user-device-manage/src/interseptors/auth.interceptor.d.ts +9 -9
  164. package/user-device-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -35
  165. package/user-device-manage/src/material.module.d.ts +29 -29
  166. package/user-device-manage/src/notifications/notification.component.d.ts +19 -19
  167. package/user-device-manage/src/services/api.service.d.ts +20 -20
  168. package/user-device-manage/src/services/device.service.d.ts +21 -21
  169. package/user-device-manage/src/services/dns.service.d.ts +14 -14
  170. package/user-device-manage/src/services/line.service.d.ts +33 -33
  171. package/user-device-manage/src/services/notification.service.d.ts +18 -18
  172. package/user-device-manage/src/services/removeKynFromIBM.service.d.ts +8 -8
  173. package/user-device-manage/src/services/site-settings.service.d.ts +25 -25
  174. package/user-device-manage/src/services/sorting-utils.service.d.ts +26 -26
  175. package/user-device-manage/src/services/user.service.d.ts +51 -51
  176. package/user-device-manage/src/services/utils.service.d.ts +10 -10
  177. package/user-device-manage/src/services/validation.service.d.ts +165 -165
  178. package/user-device-manage/src/user-device-manage.module.d.ts +22 -22
  179. package/user-device-manage/src/utils/app-loader/app-loader.d.ts +6 -6
  180. package/user-manage/index.d.ts +5 -5
  181. package/user-manage/public-api.d.ts +6 -6
  182. package/user-manage/src/app.constants.d.ts +29 -29
  183. package/user-manage/src/classes/device.d.ts +203 -203
  184. package/user-manage/src/classes/line-association-interface.d.ts +40 -40
  185. package/user-manage/src/classes/line-association.d.ts +55 -55
  186. package/user-manage/src/classes/line-call-info-display.d.ts +11 -11
  187. package/user-manage/src/classes/line-directory.d.ts +16 -16
  188. package/user-manage/src/classes/line.d.ts +140 -140
  189. package/user-manage/src/classes/notification.d.ts +18 -18
  190. package/user-manage/src/classes/pagination.d.ts +13 -13
  191. package/user-manage/src/classes/recording-options.d.ts +5 -5
  192. package/user-manage/src/classes/simplified-user.d.ts +50 -50
  193. package/user-manage/src/classes/table-data.d.ts +5 -5
  194. package/user-manage/src/classes/translation-pattern.d.ts +18 -18
  195. package/user-manage/src/classes/user-list.d.ts +34 -34
  196. package/user-manage/src/common-functions.d.ts +1 -1
  197. package/user-manage/src/device-list/device-list.component.d.ts +11 -11
  198. package/user-manage/src/environments/environment.d.ts +9 -9
  199. package/user-manage/src/interseptors/auth.interceptor.d.ts +9 -9
  200. package/user-manage/src/lazy-loading-select/lazy-loading-select.component.d.ts +35 -35
  201. package/user-manage/src/material.module.d.ts +28 -28
  202. package/user-manage/src/notifications/notification.component.d.ts +19 -19
  203. package/user-manage/src/removeKynFromIBM.service.d.ts +8 -8
  204. package/user-manage/src/services/api.service.d.ts +21 -21
  205. package/user-manage/src/services/dns.service.d.ts +14 -14
  206. package/user-manage/src/services/line.service.d.ts +17 -17
  207. package/user-manage/src/services/notification.service.d.ts +18 -18
  208. package/user-manage/src/services/removeKynFromIBM.service.d.ts +8 -8
  209. package/user-manage/src/services/site-settings.service.d.ts +9 -9
  210. package/user-manage/src/services/sorting-utils.service.d.ts +26 -26
  211. package/user-manage/src/services/user.service.d.ts +43 -43
  212. package/user-manage/src/services/users-search.service.d.ts +25 -25
  213. package/user-manage/src/services/utils.service.d.ts +9 -9
  214. package/user-manage/src/user-calling/user-calling-extension/user-calling-extension.component.d.ts +24 -24
  215. package/user-manage/src/user-calling/user-calling.component.d.ts +30 -30
  216. package/user-manage/src/user-info/user-info.component.d.ts +9 -9
  217. package/user-manage/src/user-manage-widget.component.d.ts +45 -45
  218. package/user-manage/src/user-manage.module.d.ts +21 -21
  219. package/user-manage/src/utils/app-loader/app-loader.d.ts +6 -6
  220. package/user-manage/src/utils/pagination/pagination.component.d.ts +18 -18
  221. package/users-list/index.d.ts +5 -5
  222. package/users-list/public-api.d.ts +8 -8
  223. package/users-list/src/app.constants.d.ts +32 -32
  224. package/users-list/src/classes/device.d.ts +224 -224
  225. package/users-list/src/classes/line.d.ts +140 -140
  226. package/users-list/src/classes/notification.d.ts +18 -18
  227. package/users-list/src/classes/pagination.d.ts +13 -13
  228. package/users-list/src/classes/simlified-user.d.ts +25 -25
  229. package/users-list/src/classes/table-data.d.ts +5 -5
  230. package/users-list/src/classes/user-list.d.ts +36 -36
  231. package/users-list/src/material.module.d.ts +31 -31
  232. package/users-list/src/move-user-wizard/move-user-stepper/move-user-stepper.component.d.ts +25 -25
  233. package/users-list/src/move-user-wizard/move-user-wizard.component.d.ts +16 -16
  234. package/users-list/src/services/api-webex.service.d.ts +8 -8
  235. package/users-list/src/services/api.service.d.ts +21 -21
  236. package/users-list/src/services/dns.service.d.ts +18 -18
  237. package/users-list/src/services/events-communication.service.d.ts +8 -8
  238. package/users-list/src/services/notification.service.d.ts +18 -18
  239. package/users-list/src/services/removeKynFromIBM.service.d.ts +8 -8
  240. package/users-list/src/services/user.service.d.ts +34 -34
  241. package/users-list/src/services/users-search.service.d.ts +34 -34
  242. package/users-list/src/user-list-confirm-dialog/user-list-confirm-dialog.component.d.ts +20 -20
  243. package/users-list/src/users-list.component.d.ts +59 -59
  244. package/users-list/src/users-list.module.d.ts +16 -16
  245. package/users-list/src/utils/app-loader/app-loader.d.ts +6 -6
  246. package/users-list/src/utils/common-functions.d.ts +1 -1
  247. package/users-list/src/utils/pagination/pagination.component.d.ts +18 -18
  248. package/users-list/src/utils/utils.service.d.ts +9 -9
@@ -1,24 +1,24 @@
1
- import { Component, EventEmitter, Input, Output } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "@angular/material/slide-toggle";
5
- export class DeviceListComponent {
6
- constructor() {
7
- this.onDeviceSelect = new EventEmitter();
8
- console.log('devices list');
9
- }
10
- selectDevice(device) {
11
- this.onDeviceSelect.emit(device);
12
- }
13
- }
14
- DeviceListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DeviceListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
- DeviceListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DeviceListComponent, selector: "app-device-list", inputs: { devices: "devices" }, outputs: { onDeviceSelect: "onDeviceSelect" }, ngImport: i0, template: "<div class=\"webex-list device-list-container\">\n <div class=\"webex-list-header\">\n <div class=\"webex-list-header__hr\">Name</div>\n <div class=\"webex-list-header__hr\">Type</div>\n <div class=\"webex-list-header__hr\">Line</div>\n <div class=\"webex-list-header__hr\">Device description</div>\n <div class=\"webex-list-header__hr\">Plar service</div>\n </div>\n <ng-container *ngFor=\"let device of devices\">\n <div class=\"device-item\" (click)=\"selectDevice(device)\">\n <div class=\"device-item__td\">{{ device.name }}</div>\n <div class=\"device-item__td\">{{ device.deviceType }}</div>\n <div class=\"device-item__td\">\n <span class=\"device-associated-line\" *ngFor=\"let line of device.lineAssociations\">{{line.directoryNumber?.directoryNumber}} | </span>\n </div>\n <div class=\"device-item__td\">{{ device.description }}</div>\n <div class=\"device-item__td\">\n <mat-slide-toggle class=\"device-slide-toggle\" [disabled]=\"true\" [checked]=\"device.plarService\"></mat-slide-toggle>\n </div>\n <div class=\"device-item__actions-menu\" style=\"text-align: right;\">\n <div class=\"device-item__more\">\n<!-- <mat-icon>more_vert</mat-icon>-->\n </div>\n </div>\n </div>\n </ng-container>\n</div>\n", styles: [".info-holder{display:flex;gap:16px;align-items:center;font-family:Inter,sans-serif;height:102px;width:100%;background:white;margin:0 0 30px}.info-holder__user-image img{width:40px;border-radius:120px;margin:20px 0 0}.info-holder__user-information{padding:10px;margin:10px;gap:10px;display:flex;flex-direction:column}.info-holder__user-name{font-size:20px;font-weight:500}.info-holder__user-breadcrumbs{display:flex;gap:8px;font-weight:400;font-size:14px;color:#000000b3;align-items:center}.info-holder .icon-separator{height:5px;width:5px;background-color:#000000b3;border-radius:50%}.info-holder .is-active{display:flex;gap:8px;align-items:center}.icon-user-status{width:.5rem;height:.5rem;border-radius:50%;background-color:#707070;margin:0 5px 0 0}.icon-user-status.icon-user-status-active{background-color:#1d805f;display:inline-block}.webex-list{padding:2.5rem}.webex-list-header{display:flex;align-items:center;padding:1rem}.webex-list-header__hr{width:100%;font-size:12px}.device-item{position:relative;display:flex;align-items:center;justify-content:space-between;background-color:#fff;border-bottom:1px solid #b0b0b0;padding:.8rem;z-index:10;transition:background-color .3s;cursor:pointer}.device-item__td{width:100%}.device-item__actions-menu{position:absolute;margin:0 1rem;right:0}.device-item__more{display:flex;align-items:center;justify-content:center;cursor:pointer;color:#b0b0b0;border-radius:50%;padding:.5rem;transition:background-color .3s ease-in-out}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i2.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["disabled", "disableRipple", "color", "tabIndex"], exportAs: ["matSlideToggle"] }] });
16
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DeviceListComponent, decorators: [{
17
- type: Component,
18
- args: [{ selector: 'app-device-list', template: "<div class=\"webex-list device-list-container\">\n <div class=\"webex-list-header\">\n <div class=\"webex-list-header__hr\">Name</div>\n <div class=\"webex-list-header__hr\">Type</div>\n <div class=\"webex-list-header__hr\">Line</div>\n <div class=\"webex-list-header__hr\">Device description</div>\n <div class=\"webex-list-header__hr\">Plar service</div>\n </div>\n <ng-container *ngFor=\"let device of devices\">\n <div class=\"device-item\" (click)=\"selectDevice(device)\">\n <div class=\"device-item__td\">{{ device.name }}</div>\n <div class=\"device-item__td\">{{ device.deviceType }}</div>\n <div class=\"device-item__td\">\n <span class=\"device-associated-line\" *ngFor=\"let line of device.lineAssociations\">{{line.directoryNumber?.directoryNumber}} | </span>\n </div>\n <div class=\"device-item__td\">{{ device.description }}</div>\n <div class=\"device-item__td\">\n <mat-slide-toggle class=\"device-slide-toggle\" [disabled]=\"true\" [checked]=\"device.plarService\"></mat-slide-toggle>\n </div>\n <div class=\"device-item__actions-menu\" style=\"text-align: right;\">\n <div class=\"device-item__more\">\n<!-- <mat-icon>more_vert</mat-icon>-->\n </div>\n </div>\n </div>\n </ng-container>\n</div>\n", styles: [".info-holder{display:flex;gap:16px;align-items:center;font-family:Inter,sans-serif;height:102px;width:100%;background:white;margin:0 0 30px}.info-holder__user-image img{width:40px;border-radius:120px;margin:20px 0 0}.info-holder__user-information{padding:10px;margin:10px;gap:10px;display:flex;flex-direction:column}.info-holder__user-name{font-size:20px;font-weight:500}.info-holder__user-breadcrumbs{display:flex;gap:8px;font-weight:400;font-size:14px;color:#000000b3;align-items:center}.info-holder .icon-separator{height:5px;width:5px;background-color:#000000b3;border-radius:50%}.info-holder .is-active{display:flex;gap:8px;align-items:center}.icon-user-status{width:.5rem;height:.5rem;border-radius:50%;background-color:#707070;margin:0 5px 0 0}.icon-user-status.icon-user-status-active{background-color:#1d805f;display:inline-block}.webex-list{padding:2.5rem}.webex-list-header{display:flex;align-items:center;padding:1rem}.webex-list-header__hr{width:100%;font-size:12px}.device-item{position:relative;display:flex;align-items:center;justify-content:space-between;background-color:#fff;border-bottom:1px solid #b0b0b0;padding:.8rem;z-index:10;transition:background-color .3s;cursor:pointer}.device-item__td{width:100%}.device-item__actions-menu{position:absolute;margin:0 1rem;right:0}.device-item__more{display:flex;align-items:center;justify-content:center;cursor:pointer;color:#b0b0b0;border-radius:50%;padding:.5rem;transition:background-color .3s ease-in-out}\n"] }]
19
- }], ctorParameters: function () { return []; }, propDecorators: { devices: [{
20
- type: Input
21
- }], onDeviceSelect: [{
22
- type: Output
23
- }] } });
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGV2aWNlLWxpc3QuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVraS93aWRnZXRzL3VzZXItZGV2aWNlLW1hbmFnZS9zcmMvZGV2aWNlLWxpc3QvZGV2aWNlLWxpc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVraS93aWRnZXRzL3VzZXItZGV2aWNlLW1hbmFnZS9zcmMvZGV2aWNlLWxpc3QvZGV2aWNlLWxpc3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7OztBQVF2RSxNQUFNLE9BQU8sbUJBQW1CO0lBSzlCO1FBRkEsbUJBQWMsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBRzFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsY0FBYyxDQUFDLENBQUM7SUFFOUIsQ0FBQztJQUdELFlBQVksQ0FBQyxNQUFjO1FBQ3pCLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ25DLENBQUM7O2lIQWJVLG1CQUFtQjtxR0FBbkIsbUJBQW1CLHNJQ1JoQyw0eUNBMkJBOzRGRG5CYSxtQkFBbUI7a0JBTC9CLFNBQVM7K0JBQ0UsaUJBQWlCOzBFQUtsQixPQUFPO3NCQUFmLEtBQUs7Z0JBRU4sY0FBYztzQkFEYixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IERldmljZSB9IGZyb20gJy4uL2NsYXNzZXMvZGV2aWNlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYXBwLWRldmljZS1saXN0JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2RldmljZS1saXN0LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZGV2aWNlLWxpc3QuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBEZXZpY2VMaXN0Q29tcG9uZW50IHtcbiAgQElucHV0KCkgZGV2aWNlcyE6IERldmljZVtdO1xuICBAT3V0cHV0KClcbiAgb25EZXZpY2VTZWxlY3QgPSBuZXcgRXZlbnRFbWl0dGVyPERldmljZT4oKTtcblxuICBjb25zdHJ1Y3RvcigpIHtcbiAgICBjb25zb2xlLmxvZygnZGV2aWNlcyBsaXN0Jyk7XG5cbiAgfVxuXG5cbiAgc2VsZWN0RGV2aWNlKGRldmljZTogRGV2aWNlKTogdm9pZCB7XG4gICAgdGhpcy5vbkRldmljZVNlbGVjdC5lbWl0KGRldmljZSk7XG4gIH1cblxuXG59XG4iLCI8ZGl2IGNsYXNzPVwid2ViZXgtbGlzdCBkZXZpY2UtbGlzdC1jb250YWluZXJcIj5cbiAgPGRpdiBjbGFzcz1cIndlYmV4LWxpc3QtaGVhZGVyXCI+XG4gICAgPGRpdiBjbGFzcz1cIndlYmV4LWxpc3QtaGVhZGVyX19oclwiPk5hbWU8L2Rpdj5cbiAgICA8ZGl2IGNsYXNzPVwid2ViZXgtbGlzdC1oZWFkZXJfX2hyXCI+VHlwZTwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJ3ZWJleC1saXN0LWhlYWRlcl9faHJcIj5MaW5lPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cIndlYmV4LWxpc3QtaGVhZGVyX19oclwiPkRldmljZSBkZXNjcmlwdGlvbjwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJ3ZWJleC1saXN0LWhlYWRlcl9faHJcIj5QbGFyIHNlcnZpY2U8L2Rpdj5cbiAgPC9kaXY+XG4gIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGRldmljZSBvZiBkZXZpY2VzXCI+XG4gICAgPGRpdiBjbGFzcz1cImRldmljZS1pdGVtXCIgKGNsaWNrKT1cInNlbGVjdERldmljZShkZXZpY2UpXCI+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGV2aWNlLWl0ZW1fX3RkXCI+e3sgZGV2aWNlLm5hbWUgfX08L2Rpdj5cbiAgICAgIDxkaXYgY2xhc3M9XCJkZXZpY2UtaXRlbV9fdGRcIj57eyBkZXZpY2UuZGV2aWNlVHlwZSB9fTwvZGl2PlxuICAgICAgPGRpdiBjbGFzcz1cImRldmljZS1pdGVtX190ZFwiPlxuICAgICAgICA8c3BhbiBjbGFzcz1cImRldmljZS1hc3NvY2lhdGVkLWxpbmVcIiAqbmdGb3I9XCJsZXQgbGluZSBvZiBkZXZpY2UubGluZUFzc29jaWF0aW9uc1wiPnt7bGluZS5kaXJlY3RvcnlOdW1iZXI/LmRpcmVjdG9yeU51bWJlcn19IHwgPC9zcGFuPlxuICAgICAgPC9kaXY+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGV2aWNlLWl0ZW1fX3RkXCI+e3sgZGV2aWNlLmRlc2NyaXB0aW9uIH19PC9kaXY+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGV2aWNlLWl0ZW1fX3RkXCI+XG4gICAgICAgIDxtYXQtc2xpZGUtdG9nZ2xlIGNsYXNzPVwiZGV2aWNlLXNsaWRlLXRvZ2dsZVwiIFtkaXNhYmxlZF09XCJ0cnVlXCIgW2NoZWNrZWRdPVwiZGV2aWNlLnBsYXJTZXJ2aWNlXCI+PC9tYXQtc2xpZGUtdG9nZ2xlPlxuICAgICAgPC9kaXY+XG4gICAgICA8ZGl2IGNsYXNzPVwiZGV2aWNlLWl0ZW1fX2FjdGlvbnMtbWVudVwiIHN0eWxlPVwidGV4dC1hbGlnbjogcmlnaHQ7XCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJkZXZpY2UtaXRlbV9fbW9yZVwiPlxuPCEtLSAgICAgICAgICA8bWF0LWljb24+bW9yZV92ZXJ0PC9tYXQtaWNvbj4tLT5cbiAgICAgICAgPC9kaXY+XG4gICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbiAgPC9uZy1jb250YWluZXI+XG48L2Rpdj5cbiJdfQ==
1
+ import { Component, EventEmitter, Input, Output } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "@angular/material/slide-toggle";
5
+ export class DeviceListComponent {
6
+ constructor() {
7
+ this.onDeviceSelect = new EventEmitter();
8
+ console.log('devices list');
9
+ }
10
+ selectDevice(device) {
11
+ this.onDeviceSelect.emit(device);
12
+ }
13
+ }
14
+ DeviceListComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DeviceListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
+ DeviceListComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: DeviceListComponent, selector: "app-device-list", inputs: { devices: "devices" }, outputs: { onDeviceSelect: "onDeviceSelect" }, ngImport: i0, template: "<div class=\"webex-list device-list-container\">\r\n <div class=\"webex-list-header\">\r\n <div class=\"webex-list-header__hr\">Name</div>\r\n <div class=\"webex-list-header__hr\">Type</div>\r\n <div class=\"webex-list-header__hr\">Line</div>\r\n <div class=\"webex-list-header__hr\">Device description</div>\r\n <div class=\"webex-list-header__hr\">Plar service</div>\r\n </div>\r\n <ng-container *ngFor=\"let device of devices\">\r\n <div class=\"device-item\" (click)=\"selectDevice(device)\">\r\n <div class=\"device-item__td\">{{ device.name }}</div>\r\n <div class=\"device-item__td\">{{ device.deviceType }}</div>\r\n <div class=\"device-item__td\">\r\n <span class=\"device-associated-line\" *ngFor=\"let line of device.lineAssociations\">{{line.directoryNumber?.directoryNumber}} | </span>\r\n </div>\r\n <div class=\"device-item__td\">{{ device.description }}</div>\r\n <div class=\"device-item__td\">\r\n <mat-slide-toggle class=\"device-slide-toggle\" [disabled]=\"true\" [checked]=\"device.plarService\"></mat-slide-toggle>\r\n </div>\r\n <div class=\"device-item__actions-menu\" style=\"text-align: right;\">\r\n <div class=\"device-item__more\">\r\n<!-- <mat-icon>more_vert</mat-icon>-->\r\n </div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n</div>\r\n", styles: [".info-holder{display:flex;gap:16px;align-items:center;font-family:Inter,sans-serif;height:102px;width:100%;background:white;margin:0 0 30px}.info-holder__user-image img{width:40px;border-radius:120px;margin:20px 0 0}.info-holder__user-information{padding:10px;margin:10px;gap:10px;display:flex;flex-direction:column}.info-holder__user-name{font-size:20px;font-weight:500}.info-holder__user-breadcrumbs{display:flex;gap:8px;font-weight:400;font-size:14px;color:#000000b3;align-items:center}.info-holder .icon-separator{height:5px;width:5px;background-color:#000000b3;border-radius:50%}.info-holder .is-active{display:flex;gap:8px;align-items:center}.icon-user-status{width:.5rem;height:.5rem;border-radius:50%;background-color:#707070;margin:0 5px 0 0}.icon-user-status.icon-user-status-active{background-color:#1d805f;display:inline-block}.webex-list{padding:2.5rem}.webex-list-header{display:flex;align-items:center;padding:1rem}.webex-list-header__hr{width:100%;font-size:12px}.device-item{position:relative;display:flex;align-items:center;justify-content:space-between;background-color:#fff;border-bottom:1px solid #b0b0b0;padding:.8rem;z-index:10;transition:background-color .3s;cursor:pointer}.device-item__td{width:100%}.device-item__actions-menu{position:absolute;margin:0 1rem;right:0}.device-item__more{display:flex;align-items:center;justify-content:center;cursor:pointer;color:#b0b0b0;border-radius:50%;padding:.5rem;transition:background-color .3s ease-in-out}\n"], dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i2.MatSlideToggle, selector: "mat-slide-toggle", inputs: ["disabled", "disableRipple", "color", "tabIndex"], exportAs: ["matSlideToggle"] }] });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: DeviceListComponent, decorators: [{
17
+ type: Component,
18
+ args: [{ selector: 'app-device-list', template: "<div class=\"webex-list device-list-container\">\r\n <div class=\"webex-list-header\">\r\n <div class=\"webex-list-header__hr\">Name</div>\r\n <div class=\"webex-list-header__hr\">Type</div>\r\n <div class=\"webex-list-header__hr\">Line</div>\r\n <div class=\"webex-list-header__hr\">Device description</div>\r\n <div class=\"webex-list-header__hr\">Plar service</div>\r\n </div>\r\n <ng-container *ngFor=\"let device of devices\">\r\n <div class=\"device-item\" (click)=\"selectDevice(device)\">\r\n <div class=\"device-item__td\">{{ device.name }}</div>\r\n <div class=\"device-item__td\">{{ device.deviceType }}</div>\r\n <div class=\"device-item__td\">\r\n <span class=\"device-associated-line\" *ngFor=\"let line of device.lineAssociations\">{{line.directoryNumber?.directoryNumber}} | </span>\r\n </div>\r\n <div class=\"device-item__td\">{{ device.description }}</div>\r\n <div class=\"device-item__td\">\r\n <mat-slide-toggle class=\"device-slide-toggle\" [disabled]=\"true\" [checked]=\"device.plarService\"></mat-slide-toggle>\r\n </div>\r\n <div class=\"device-item__actions-menu\" style=\"text-align: right;\">\r\n <div class=\"device-item__more\">\r\n<!-- <mat-icon>more_vert</mat-icon>-->\r\n </div>\r\n </div>\r\n </div>\r\n </ng-container>\r\n</div>\r\n", styles: [".info-holder{display:flex;gap:16px;align-items:center;font-family:Inter,sans-serif;height:102px;width:100%;background:white;margin:0 0 30px}.info-holder__user-image img{width:40px;border-radius:120px;margin:20px 0 0}.info-holder__user-information{padding:10px;margin:10px;gap:10px;display:flex;flex-direction:column}.info-holder__user-name{font-size:20px;font-weight:500}.info-holder__user-breadcrumbs{display:flex;gap:8px;font-weight:400;font-size:14px;color:#000000b3;align-items:center}.info-holder .icon-separator{height:5px;width:5px;background-color:#000000b3;border-radius:50%}.info-holder .is-active{display:flex;gap:8px;align-items:center}.icon-user-status{width:.5rem;height:.5rem;border-radius:50%;background-color:#707070;margin:0 5px 0 0}.icon-user-status.icon-user-status-active{background-color:#1d805f;display:inline-block}.webex-list{padding:2.5rem}.webex-list-header{display:flex;align-items:center;padding:1rem}.webex-list-header__hr{width:100%;font-size:12px}.device-item{position:relative;display:flex;align-items:center;justify-content:space-between;background-color:#fff;border-bottom:1px solid #b0b0b0;padding:.8rem;z-index:10;transition:background-color .3s;cursor:pointer}.device-item__td{width:100%}.device-item__actions-menu{position:absolute;margin:0 1rem;right:0}.device-item__more{display:flex;align-items:center;justify-content:center;cursor:pointer;color:#b0b0b0;border-radius:50%;padding:.5rem;transition:background-color .3s ease-in-out}\n"] }]
19
+ }], ctorParameters: function () { return []; }, propDecorators: { devices: [{
20
+ type: Input
21
+ }], onDeviceSelect: [{
22
+ type: Output
23
+ }] } });
24
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGV2aWNlLWxpc3QuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVraS93aWRnZXRzL3VzZXItZGV2aWNlLW1hbmFnZS9zcmMvZGV2aWNlLWxpc3QvZGV2aWNlLWxpc3QuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvdHVraS93aWRnZXRzL3VzZXItZGV2aWNlLW1hbmFnZS9zcmMvZGV2aWNlLWxpc3QvZGV2aWNlLWxpc3QuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQzs7OztBQVF2RSxNQUFNLE9BQU8sbUJBQW1CO0lBSzlCO1FBRkEsbUJBQWMsR0FBRyxJQUFJLFlBQVksRUFBVSxDQUFDO1FBRzFDLE9BQU8sQ0FBQyxHQUFHLENBQUMsY0FBYyxDQUFDLENBQUM7SUFFOUIsQ0FBQztJQUdELFlBQVksQ0FBQyxNQUFjO1FBQ3pCLElBQUksQ0FBQyxjQUFjLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQ25DLENBQUM7O2lIQWJVLG1CQUFtQjtxR0FBbkIsbUJBQW1CLHNJQ1JoQyxrMkNBMkJBOzRGRG5CYSxtQkFBbUI7a0JBTC9CLFNBQVM7K0JBQ0UsaUJBQWlCOzBFQUtsQixPQUFPO3NCQUFmLEtBQUs7Z0JBRU4sY0FBYztzQkFEYixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFdmVudEVtaXR0ZXIsIElucHV0LCBPdXRwdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgRGV2aWNlIH0gZnJvbSAnLi4vY2xhc3Nlcy9kZXZpY2UnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhcHAtZGV2aWNlLWxpc3QnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9kZXZpY2UtbGlzdC5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vZGV2aWNlLWxpc3QuY29tcG9uZW50LnNjc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgRGV2aWNlTGlzdENvbXBvbmVudCB7XHJcbiAgQElucHV0KCkgZGV2aWNlcyE6IERldmljZVtdO1xyXG4gIEBPdXRwdXQoKVxyXG4gIG9uRGV2aWNlU2VsZWN0ID0gbmV3IEV2ZW50RW1pdHRlcjxEZXZpY2U+KCk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkge1xyXG4gICAgY29uc29sZS5sb2coJ2RldmljZXMgbGlzdCcpO1xyXG5cclxuICB9XHJcblxyXG5cclxuICBzZWxlY3REZXZpY2UoZGV2aWNlOiBEZXZpY2UpOiB2b2lkIHtcclxuICAgIHRoaXMub25EZXZpY2VTZWxlY3QuZW1pdChkZXZpY2UpO1xyXG4gIH1cclxuXHJcblxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJ3ZWJleC1saXN0IGRldmljZS1saXN0LWNvbnRhaW5lclwiPlxyXG4gIDxkaXYgY2xhc3M9XCJ3ZWJleC1saXN0LWhlYWRlclwiPlxyXG4gICAgPGRpdiBjbGFzcz1cIndlYmV4LWxpc3QtaGVhZGVyX19oclwiPk5hbWU8L2Rpdj5cclxuICAgIDxkaXYgY2xhc3M9XCJ3ZWJleC1saXN0LWhlYWRlcl9faHJcIj5UeXBlPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwid2ViZXgtbGlzdC1oZWFkZXJfX2hyXCI+TGluZTwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cIndlYmV4LWxpc3QtaGVhZGVyX19oclwiPkRldmljZSBkZXNjcmlwdGlvbjwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cIndlYmV4LWxpc3QtaGVhZGVyX19oclwiPlBsYXIgc2VydmljZTwvZGl2PlxyXG4gIDwvZGl2PlxyXG4gIDxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGRldmljZSBvZiBkZXZpY2VzXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiZGV2aWNlLWl0ZW1cIiAoY2xpY2spPVwic2VsZWN0RGV2aWNlKGRldmljZSlcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImRldmljZS1pdGVtX190ZFwiPnt7IGRldmljZS5uYW1lIH19PC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJkZXZpY2UtaXRlbV9fdGRcIj57eyBkZXZpY2UuZGV2aWNlVHlwZSB9fTwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwiZGV2aWNlLWl0ZW1fX3RkXCI+XHJcbiAgICAgICAgPHNwYW4gY2xhc3M9XCJkZXZpY2UtYXNzb2NpYXRlZC1saW5lXCIgKm5nRm9yPVwibGV0IGxpbmUgb2YgZGV2aWNlLmxpbmVBc3NvY2lhdGlvbnNcIj57e2xpbmUuZGlyZWN0b3J5TnVtYmVyPy5kaXJlY3RvcnlOdW1iZXJ9fSB8IDwvc3Bhbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJkZXZpY2UtaXRlbV9fdGRcIj57eyBkZXZpY2UuZGVzY3JpcHRpb24gfX08L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cImRldmljZS1pdGVtX190ZFwiPlxyXG4gICAgICAgIDxtYXQtc2xpZGUtdG9nZ2xlIGNsYXNzPVwiZGV2aWNlLXNsaWRlLXRvZ2dsZVwiIFtkaXNhYmxlZF09XCJ0cnVlXCIgW2NoZWNrZWRdPVwiZGV2aWNlLnBsYXJTZXJ2aWNlXCI+PC9tYXQtc2xpZGUtdG9nZ2xlPlxyXG4gICAgICA8L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cImRldmljZS1pdGVtX19hY3Rpb25zLW1lbnVcIiBzdHlsZT1cInRleHQtYWxpZ246IHJpZ2h0O1wiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJkZXZpY2UtaXRlbV9fbW9yZVwiPlxyXG48IS0tICAgICAgICAgIDxtYXQtaWNvbj5tb3JlX3ZlcnQ8L21hdC1pY29uPi0tPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gIDwvbmctY29udGFpbmVyPlxyXG48L2Rpdj5cclxuIl19