@ascentgl/ads-ui 0.0.7 → 0.0.9

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 (483) hide show
  1. package/esm2022/index.mjs +5 -24
  2. package/esm2022/lib/components/badge/numeric-badge.component.mjs +1 -1
  3. package/esm2022/lib/components/card/card.component.mjs +2 -2
  4. package/esm2022/lib/components/expansion-panel/expansion-panel.component.mjs +8 -4
  5. package/esm2022/lib/components/expansion-panel/expansion-panel.module.mjs +5 -3
  6. package/esm2022/lib/components/form-fields/abstracts/abstract.base.component.mjs +3 -3
  7. package/esm2022/lib/components/form-fields/common/error/error.component.mjs +3 -3
  8. package/esm2022/lib/components/form-fields/common/success/success.component.mjs +3 -3
  9. package/esm2022/lib/components/form-fields/dropdowns/dropdown/dropdown.component.mjs +3 -3
  10. package/esm2022/lib/components/form-fields/input/input.component.mjs +3 -3
  11. package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.mjs +3 -3
  12. package/esm2022/lib/components/form-fields/search-fields/search-input/search-input.component.mjs +3 -3
  13. package/esm2022/lib/components/logo/primary-logo/primary-logo.component.mjs +4 -3
  14. package/esm2022/lib/components/{submenu/submenu-heading → nav-bar/nav-menu}/index.mjs +1 -1
  15. package/esm2022/lib/components/nav-bar/nav-menu/nav-menu.component.mjs +29 -0
  16. package/esm2022/lib/components/nav-bar/nav-menu/nav-menu.module.mjs +40 -0
  17. package/esm2022/lib/components/nav-bar/nav-menu/nav-menu.types.mjs +2 -0
  18. package/esm2022/lib/components/nav-bar/nav-menu/public-api.mjs +3 -0
  19. package/esm2022/lib/components/{submenu/submenu-item → nav-bar/side-nav-bar}/index.mjs +1 -1
  20. package/esm2022/lib/components/nav-bar/side-nav-bar/nav-item.types.mjs +2 -0
  21. package/esm2022/lib/components/{submenu/submenu-item → nav-bar/side-nav-bar}/public-api.mjs +3 -3
  22. package/esm2022/lib/components/nav-bar/side-nav-bar/side-nav-bar.component.mjs +71 -0
  23. package/esm2022/lib/components/nav-bar/side-nav-bar/side-nav-bar.module.mjs +42 -0
  24. package/esm2022/lib/components/steppers/numeric-stepper/components/numeric-step.component.mjs +22 -0
  25. package/esm2022/lib/components/{navigation/navigation-item → steppers/numeric-stepper}/index.mjs +1 -1
  26. package/esm2022/lib/components/steppers/numeric-stepper/numeric-stepper.component.mjs +19 -0
  27. package/esm2022/lib/components/steppers/numeric-stepper/numeric-stepper.module.mjs +21 -0
  28. package/esm2022/lib/components/steppers/numeric-stepper/public-api.mjs +3 -0
  29. package/esm2022/lib/components/{submenu/submenu-container → steppers/vertical-stepper}/index.mjs +1 -1
  30. package/esm2022/lib/components/steppers/vertical-stepper/public-api.mjs +5 -0
  31. package/esm2022/lib/components/steppers/vertical-stepper/vertical-helpers.mjs +98 -0
  32. package/esm2022/lib/components/steppers/vertical-stepper/vertical-step.type.mjs +12 -0
  33. package/esm2022/lib/components/steppers/vertical-stepper/vertical-stepper.component.mjs +125 -0
  34. package/esm2022/lib/components/steppers/vertical-stepper/vertical-stepper.module.mjs +28 -0
  35. package/esm2022/lib/components/tags/tag/tag.component.mjs +2 -2
  36. package/esm2022/src/lib/components/card/card.component.mjs +2 -2
  37. package/esm2022/src/lib/components/logo/primary-logo/primary-logo.component.mjs +4 -3
  38. package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs +2 -2
  39. package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs.map +1 -1
  40. package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +3 -2
  41. package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs.map +1 -1
  42. package/fesm2022/ascentgl-ads-ui.mjs +1366 -2715
  43. package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
  44. package/index.d.ts +4 -23
  45. package/lib/components/badge/numeric-badge.component.d.ts +1 -1
  46. package/lib/components/expansion-panel/expansion-panel.component.d.ts +7 -1
  47. package/lib/components/expansion-panel/expansion-panel.module.d.ts +1 -1
  48. package/lib/components/{nav-menu → nav-bar/nav-menu}/nav-menu.component.d.ts +1 -3
  49. package/lib/components/{nav-menu → nav-bar/nav-menu}/nav-menu.module.d.ts +3 -4
  50. package/lib/components/{nav-menu → nav-bar/nav-menu}/nav-menu.types.d.ts +1 -1
  51. package/lib/components/nav-bar/side-nav-bar/nav-item.types.d.ts +6 -0
  52. package/lib/components/nav-bar/side-nav-bar/public-api.d.ts +2 -0
  53. package/lib/components/nav-bar/side-nav-bar/side-nav-bar.component.d.ts +40 -0
  54. package/lib/components/nav-bar/side-nav-bar/side-nav-bar.module.d.ts +12 -0
  55. package/lib/components/steppers/numeric-stepper/components/numeric-step.component.d.ts +10 -0
  56. package/lib/components/steppers/numeric-stepper/numeric-stepper.component.d.ts +16 -0
  57. package/lib/components/steppers/numeric-stepper/numeric-stepper.module.d.ts +11 -0
  58. package/lib/components/steppers/numeric-stepper/public-api.d.ts +2 -0
  59. package/{src/lib/components → lib/components/steppers}/vertical-stepper/vertical-step.type.d.ts +0 -2
  60. package/package.json +35 -160
  61. package/esm2022/lib/components/main-menu/index.mjs +0 -2
  62. package/esm2022/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.mjs +0 -22
  63. package/esm2022/lib/components/main-menu/main-menu.component.mjs +0 -76
  64. package/esm2022/lib/components/main-menu/main-menu.module.mjs +0 -45
  65. package/esm2022/lib/components/main-menu/main-menu.types.mjs +0 -2
  66. package/esm2022/lib/components/main-menu/public-api.mjs +0 -4
  67. package/esm2022/lib/components/nav-menu/index.mjs +0 -2
  68. package/esm2022/lib/components/nav-menu/nav-menu.component.mjs +0 -32
  69. package/esm2022/lib/components/nav-menu/nav-menu.module.mjs +0 -22
  70. package/esm2022/lib/components/nav-menu/nav-menu.types.mjs +0 -2
  71. package/esm2022/lib/components/nav-menu/public-api.mjs +0 -3
  72. package/esm2022/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.mjs +0 -46
  73. package/esm2022/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.mjs +0 -18
  74. package/esm2022/lib/components/navigation/dashboard-edit-icon/index.mjs +0 -2
  75. package/esm2022/lib/components/navigation/dashboard-edit-icon/public-api.mjs +0 -3
  76. package/esm2022/lib/components/navigation/index.mjs +0 -2
  77. package/esm2022/lib/components/navigation/navigation-actions-container/index.mjs +0 -2
  78. package/esm2022/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.mjs +0 -20
  79. package/esm2022/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.mjs +0 -18
  80. package/esm2022/lib/components/navigation/navigation-actions-container/public-api.mjs +0 -3
  81. package/esm2022/lib/components/navigation/navigation-collapse-handle/index.mjs +0 -2
  82. package/esm2022/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.mjs +0 -48
  83. package/esm2022/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.mjs +0 -18
  84. package/esm2022/lib/components/navigation/navigation-collapse-handle/public-api.mjs +0 -3
  85. package/esm2022/lib/components/navigation/navigation-header/index.mjs +0 -2
  86. package/esm2022/lib/components/navigation/navigation-header/navigation-header.component.mjs +0 -25
  87. package/esm2022/lib/components/navigation/navigation-header/navigation-header.module.mjs +0 -16
  88. package/esm2022/lib/components/navigation/navigation-header/public-api.mjs +0 -3
  89. package/esm2022/lib/components/navigation/navigation-item/navigation-item.component.mjs +0 -74
  90. package/esm2022/lib/components/navigation/navigation-item/navigation-item.module.mjs +0 -21
  91. package/esm2022/lib/components/navigation/navigation-item/public-api.mjs +0 -3
  92. package/esm2022/lib/components/navigation/navigation-items-container/index.mjs +0 -2
  93. package/esm2022/lib/components/navigation/navigation-items-container/navigation-items-container.component.mjs +0 -11
  94. package/esm2022/lib/components/navigation/navigation-items-container/navigation-items-container.module.mjs +0 -16
  95. package/esm2022/lib/components/navigation/navigation-items-container/public-api.mjs +0 -3
  96. package/esm2022/lib/components/navigation/navigation.component.mjs +0 -25
  97. package/esm2022/lib/components/navigation/navigation.module.mjs +0 -16
  98. package/esm2022/lib/components/navigation/public-api.mjs +0 -3
  99. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/index.mjs +0 -2
  100. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/public-api.mjs +0 -3
  101. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.mjs +0 -11
  102. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.mjs +0 -16
  103. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/index.mjs +0 -2
  104. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/public-api.mjs +0 -3
  105. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.mjs +0 -67
  106. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.mjs +0 -21
  107. package/esm2022/lib/components/navigation/sub-navigation-item/index.mjs +0 -2
  108. package/esm2022/lib/components/navigation/sub-navigation-item/public-api.mjs +0 -3
  109. package/esm2022/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.mjs +0 -36
  110. package/esm2022/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.mjs +0 -18
  111. package/esm2022/lib/components/navigation/sub-navigation-items-container/index.mjs +0 -2
  112. package/esm2022/lib/components/navigation/sub-navigation-items-container/public-api.mjs +0 -3
  113. package/esm2022/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.mjs +0 -11
  114. package/esm2022/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.mjs +0 -16
  115. package/esm2022/lib/components/progress-stepper/index.mjs +0 -2
  116. package/esm2022/lib/components/progress-stepper/progress-step.types.mjs +0 -2
  117. package/esm2022/lib/components/progress-stepper/progress-stepper.component.mjs +0 -106
  118. package/esm2022/lib/components/progress-stepper/progress-stepper.module.mjs +0 -27
  119. package/esm2022/lib/components/progress-stepper/public-api.mjs +0 -4
  120. package/esm2022/lib/components/rating/index.mjs +0 -2
  121. package/esm2022/lib/components/rating/public-api.mjs +0 -3
  122. package/esm2022/lib/components/rating/rating.component.mjs +0 -69
  123. package/esm2022/lib/components/rating/rating.module.mjs +0 -19
  124. package/esm2022/lib/components/stepper-condensed/condensed-helpers.mjs +0 -97
  125. package/esm2022/lib/components/stepper-condensed/condensed-step.type.mjs +0 -12
  126. package/esm2022/lib/components/stepper-condensed/index.mjs +0 -2
  127. package/esm2022/lib/components/stepper-condensed/public-api.mjs +0 -5
  128. package/esm2022/lib/components/stepper-condensed/stepper-condensed.component.mjs +0 -149
  129. package/esm2022/lib/components/stepper-condensed/stepper-condensed.module.mjs +0 -28
  130. package/esm2022/lib/components/submenu/submenu-container/public-api.mjs +0 -3
  131. package/esm2022/lib/components/submenu/submenu-container/submenu-container.component.mjs +0 -22
  132. package/esm2022/lib/components/submenu/submenu-container/submenu-container.module.mjs +0 -18
  133. package/esm2022/lib/components/submenu/submenu-heading/public-api.mjs +0 -3
  134. package/esm2022/lib/components/submenu/submenu-heading/submenu-heading.component.mjs +0 -17
  135. package/esm2022/lib/components/submenu/submenu-heading/submenu-heading.module.mjs +0 -18
  136. package/esm2022/lib/components/submenu/submenu-item/submenu-item.component.mjs +0 -28
  137. package/esm2022/lib/components/submenu/submenu-item/submenu-item.module.mjs +0 -19
  138. package/esm2022/lib/components/submenu/submenu-secondary-item/index.mjs +0 -2
  139. package/esm2022/lib/components/submenu/submenu-secondary-item/public-api.mjs +0 -3
  140. package/esm2022/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.mjs +0 -33
  141. package/esm2022/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.mjs +0 -19
  142. package/esm2022/lib/components/timeline-stepper/index.mjs +0 -2
  143. package/esm2022/lib/components/timeline-stepper/public-api.mjs +0 -5
  144. package/esm2022/lib/components/timeline-stepper/timeline-helpers.mjs +0 -97
  145. package/esm2022/lib/components/timeline-stepper/timeline-step.type.mjs +0 -12
  146. package/esm2022/lib/components/timeline-stepper/timeline-stepper.component.mjs +0 -148
  147. package/esm2022/lib/components/timeline-stepper/timeline-stepper.module.mjs +0 -28
  148. package/esm2022/lib/components/vertical-stepper/index.mjs +0 -2
  149. package/esm2022/lib/components/vertical-stepper/public-api.mjs +0 -5
  150. package/esm2022/lib/components/vertical-stepper/vertical-helpers.mjs +0 -98
  151. package/esm2022/lib/components/vertical-stepper/vertical-step.type.mjs +0 -12
  152. package/esm2022/lib/components/vertical-stepper/vertical-stepper.component.mjs +0 -125
  153. package/esm2022/lib/components/vertical-stepper/vertical-stepper.module.mjs +0 -28
  154. package/esm2022/lib/components/wizard-stepper/index.mjs +0 -2
  155. package/esm2022/lib/components/wizard-stepper/public-api.mjs +0 -4
  156. package/esm2022/lib/components/wizard-stepper/wizard-stepper.component.mjs +0 -28
  157. package/esm2022/lib/components/wizard-stepper/wizard-stepper.module.mjs +0 -20
  158. package/esm2022/lib/components/wizard-stepper/wizard-stepper.types.mjs +0 -2
  159. package/esm2022/src/lib/components/main-menu/ascentgl-ads-ui-src-lib-components-main-menu.mjs +0 -5
  160. package/esm2022/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.mjs +0 -22
  161. package/esm2022/src/lib/components/main-menu/main-menu.component.mjs +0 -76
  162. package/esm2022/src/lib/components/main-menu/main-menu.module.mjs +0 -45
  163. package/esm2022/src/lib/components/main-menu/main-menu.types.mjs +0 -2
  164. package/esm2022/src/lib/components/main-menu/public-api.mjs +0 -4
  165. package/esm2022/src/lib/components/navigation/ascentgl-ads-ui-src-lib-components-navigation.mjs +0 -5
  166. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs +0 -5
  167. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.mjs +0 -46
  168. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.mjs +0 -18
  169. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/public-api.mjs +0 -3
  170. package/esm2022/src/lib/components/navigation/navigation-actions-container/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs +0 -5
  171. package/esm2022/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.mjs +0 -20
  172. package/esm2022/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.mjs +0 -18
  173. package/esm2022/src/lib/components/navigation/navigation-actions-container/public-api.mjs +0 -3
  174. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs +0 -5
  175. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.mjs +0 -48
  176. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.mjs +0 -18
  177. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/public-api.mjs +0 -3
  178. package/esm2022/src/lib/components/navigation/navigation-header/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs +0 -5
  179. package/esm2022/src/lib/components/navigation/navigation-header/navigation-header.component.mjs +0 -25
  180. package/esm2022/src/lib/components/navigation/navigation-header/navigation-header.module.mjs +0 -16
  181. package/esm2022/src/lib/components/navigation/navigation-header/public-api.mjs +0 -3
  182. package/esm2022/src/lib/components/navigation/navigation-item/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs +0 -5
  183. package/esm2022/src/lib/components/navigation/navigation-item/navigation-item.component.mjs +0 -74
  184. package/esm2022/src/lib/components/navigation/navigation-item/navigation-item.module.mjs +0 -21
  185. package/esm2022/src/lib/components/navigation/navigation-item/public-api.mjs +0 -3
  186. package/esm2022/src/lib/components/navigation/navigation-items-container/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs +0 -5
  187. package/esm2022/src/lib/components/navigation/navigation-items-container/navigation-items-container.component.mjs +0 -11
  188. package/esm2022/src/lib/components/navigation/navigation-items-container/navigation-items-container.module.mjs +0 -16
  189. package/esm2022/src/lib/components/navigation/navigation-items-container/public-api.mjs +0 -3
  190. package/esm2022/src/lib/components/navigation/navigation.component.mjs +0 -25
  191. package/esm2022/src/lib/components/navigation/navigation.module.mjs +0 -16
  192. package/esm2022/src/lib/components/navigation/public-api.mjs +0 -3
  193. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs +0 -5
  194. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/public-api.mjs +0 -3
  195. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.mjs +0 -11
  196. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.mjs +0 -16
  197. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs +0 -5
  198. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/public-api.mjs +0 -3
  199. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.mjs +0 -67
  200. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.mjs +0 -21
  201. package/esm2022/src/lib/components/navigation/sub-navigation-item/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs +0 -5
  202. package/esm2022/src/lib/components/navigation/sub-navigation-item/public-api.mjs +0 -3
  203. package/esm2022/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.mjs +0 -36
  204. package/esm2022/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.mjs +0 -18
  205. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs +0 -5
  206. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/public-api.mjs +0 -3
  207. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.mjs +0 -11
  208. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.mjs +0 -16
  209. package/esm2022/src/lib/components/progress-stepper/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs +0 -5
  210. package/esm2022/src/lib/components/progress-stepper/progress-step.types.mjs +0 -2
  211. package/esm2022/src/lib/components/progress-stepper/progress-stepper.component.mjs +0 -106
  212. package/esm2022/src/lib/components/progress-stepper/progress-stepper.module.mjs +0 -27
  213. package/esm2022/src/lib/components/progress-stepper/public-api.mjs +0 -4
  214. package/esm2022/src/lib/components/rating/ascentgl-ads-ui-src-lib-components-rating.mjs +0 -5
  215. package/esm2022/src/lib/components/rating/public-api.mjs +0 -3
  216. package/esm2022/src/lib/components/rating/rating.component.mjs +0 -69
  217. package/esm2022/src/lib/components/rating/rating.module.mjs +0 -19
  218. package/esm2022/src/lib/components/submenu/submenu-container/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs +0 -5
  219. package/esm2022/src/lib/components/submenu/submenu-container/public-api.mjs +0 -3
  220. package/esm2022/src/lib/components/submenu/submenu-container/submenu-container.component.mjs +0 -22
  221. package/esm2022/src/lib/components/submenu/submenu-container/submenu-container.module.mjs +0 -18
  222. package/esm2022/src/lib/components/submenu/submenu-heading/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs +0 -5
  223. package/esm2022/src/lib/components/submenu/submenu-heading/public-api.mjs +0 -3
  224. package/esm2022/src/lib/components/submenu/submenu-heading/submenu-heading.component.mjs +0 -17
  225. package/esm2022/src/lib/components/submenu/submenu-heading/submenu-heading.module.mjs +0 -18
  226. package/esm2022/src/lib/components/submenu/submenu-item/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs +0 -5
  227. package/esm2022/src/lib/components/submenu/submenu-item/public-api.mjs +0 -3
  228. package/esm2022/src/lib/components/submenu/submenu-item/submenu-item.component.mjs +0 -28
  229. package/esm2022/src/lib/components/submenu/submenu-item/submenu-item.module.mjs +0 -19
  230. package/esm2022/src/lib/components/submenu/submenu-secondary-item/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs +0 -5
  231. package/esm2022/src/lib/components/submenu/submenu-secondary-item/public-api.mjs +0 -3
  232. package/esm2022/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.mjs +0 -33
  233. package/esm2022/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.mjs +0 -19
  234. package/esm2022/src/lib/components/timeline-stepper/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs +0 -5
  235. package/esm2022/src/lib/components/timeline-stepper/public-api.mjs +0 -5
  236. package/esm2022/src/lib/components/timeline-stepper/timeline-helpers.mjs +0 -97
  237. package/esm2022/src/lib/components/timeline-stepper/timeline-step.type.mjs +0 -12
  238. package/esm2022/src/lib/components/timeline-stepper/timeline-stepper.component.mjs +0 -148
  239. package/esm2022/src/lib/components/timeline-stepper/timeline-stepper.module.mjs +0 -28
  240. package/esm2022/src/lib/components/vertical-stepper/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs +0 -5
  241. package/esm2022/src/lib/components/vertical-stepper/public-api.mjs +0 -5
  242. package/esm2022/src/lib/components/vertical-stepper/vertical-helpers.mjs +0 -98
  243. package/esm2022/src/lib/components/vertical-stepper/vertical-step.type.mjs +0 -12
  244. package/esm2022/src/lib/components/vertical-stepper/vertical-stepper.component.mjs +0 -125
  245. package/esm2022/src/lib/components/vertical-stepper/vertical-stepper.module.mjs +0 -28
  246. package/esm2022/src/lib/components/wizard-stepper/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs +0 -5
  247. package/esm2022/src/lib/components/wizard-stepper/public-api.mjs +0 -4
  248. package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.component.mjs +0 -28
  249. package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.module.mjs +0 -20
  250. package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.types.mjs +0 -2
  251. package/fesm2022/ascentgl-ads-ui-src-lib-components-main-menu.mjs +0 -135
  252. package/fesm2022/ascentgl-ads-ui-src-lib-components-main-menu.mjs.map +0 -1
  253. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs +0 -67
  254. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs.map +0 -1
  255. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs +0 -42
  256. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs.map +0 -1
  257. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs +0 -69
  258. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs.map +0 -1
  259. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs +0 -45
  260. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs.map +0 -1
  261. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs +0 -98
  262. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs.map +0 -1
  263. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs +0 -31
  264. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs.map +0 -1
  265. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs +0 -31
  266. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs.map +0 -1
  267. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs +0 -91
  268. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs.map +0 -1
  269. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs +0 -58
  270. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs.map +0 -1
  271. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs +0 -31
  272. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs.map +0 -1
  273. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation.mjs +0 -45
  274. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation.mjs.map +0 -1
  275. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs +0 -136
  276. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs.map +0 -1
  277. package/fesm2022/ascentgl-ads-ui-src-lib-components-rating.mjs +0 -91
  278. package/fesm2022/ascentgl-ads-ui-src-lib-components-rating.mjs.map +0 -1
  279. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs +0 -44
  280. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs.map +0 -1
  281. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs +0 -39
  282. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs.map +0 -1
  283. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs +0 -51
  284. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs.map +0 -1
  285. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs +0 -56
  286. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs.map +0 -1
  287. package/fesm2022/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs +0 -286
  288. package/fesm2022/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs.map +0 -1
  289. package/fesm2022/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs +0 -264
  290. package/fesm2022/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs.map +0 -1
  291. package/fesm2022/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs +0 -51
  292. package/fesm2022/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs.map +0 -1
  293. package/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.d.ts +0 -11
  294. package/lib/components/main-menu/main-menu.component.d.ts +0 -42
  295. package/lib/components/main-menu/main-menu.module.d.ts +0 -15
  296. package/lib/components/main-menu/main-menu.types.d.ts +0 -8
  297. package/lib/components/main-menu/public-api.d.ts +0 -3
  298. package/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.d.ts +0 -30
  299. package/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.d.ts +0 -8
  300. package/lib/components/navigation/dashboard-edit-icon/public-api.d.ts +0 -2
  301. package/lib/components/navigation/navigation-actions-container/index.d.ts +0 -1
  302. package/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.d.ts +0 -9
  303. package/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.d.ts +0 -8
  304. package/lib/components/navigation/navigation-actions-container/public-api.d.ts +0 -2
  305. package/lib/components/navigation/navigation-collapse-handle/index.d.ts +0 -1
  306. package/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.d.ts +0 -31
  307. package/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.d.ts +0 -8
  308. package/lib/components/navigation/navigation-collapse-handle/public-api.d.ts +0 -2
  309. package/lib/components/navigation/navigation-header/index.d.ts +0 -1
  310. package/lib/components/navigation/navigation-header/navigation-header.component.d.ts +0 -13
  311. package/lib/components/navigation/navigation-header/navigation-header.module.d.ts +0 -7
  312. package/lib/components/navigation/navigation-header/public-api.d.ts +0 -2
  313. package/lib/components/navigation/navigation-item/index.d.ts +0 -1
  314. package/lib/components/navigation/navigation-item/navigation-item.component.d.ts +0 -52
  315. package/lib/components/navigation/navigation-item/navigation-item.module.d.ts +0 -11
  316. package/lib/components/navigation/navigation-item/public-api.d.ts +0 -2
  317. package/lib/components/navigation/navigation-items-container/index.d.ts +0 -1
  318. package/lib/components/navigation/navigation-items-container/navigation-items-container.component.d.ts +0 -5
  319. package/lib/components/navigation/navigation-items-container/navigation-items-container.module.d.ts +0 -7
  320. package/lib/components/navigation/navigation-items-container/public-api.d.ts +0 -2
  321. package/lib/components/navigation/navigation.component.d.ts +0 -13
  322. package/lib/components/navigation/navigation.module.d.ts +0 -7
  323. package/lib/components/navigation/public-api.d.ts +0 -2
  324. package/lib/components/navigation/side-navigation/side-navigation-container/index.d.ts +0 -1
  325. package/lib/components/navigation/side-navigation/side-navigation-container/public-api.d.ts +0 -2
  326. package/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.d.ts +0 -5
  327. package/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.d.ts +0 -7
  328. package/lib/components/navigation/side-navigation/side-navigation-item/index.d.ts +0 -1
  329. package/lib/components/navigation/side-navigation/side-navigation-item/public-api.d.ts +0 -2
  330. package/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.d.ts +0 -45
  331. package/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.d.ts +0 -11
  332. package/lib/components/navigation/sub-navigation-item/index.d.ts +0 -1
  333. package/lib/components/navigation/sub-navigation-item/public-api.d.ts +0 -2
  334. package/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.d.ts +0 -28
  335. package/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.d.ts +0 -8
  336. package/lib/components/navigation/sub-navigation-items-container/index.d.ts +0 -1
  337. package/lib/components/navigation/sub-navigation-items-container/public-api.d.ts +0 -2
  338. package/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.d.ts +0 -5
  339. package/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.d.ts +0 -7
  340. package/lib/components/progress-stepper/index.d.ts +0 -1
  341. package/lib/components/progress-stepper/progress-step.types.d.ts +0 -5
  342. package/lib/components/progress-stepper/progress-stepper.component.d.ts +0 -42
  343. package/lib/components/progress-stepper/progress-stepper.module.d.ts +0 -10
  344. package/lib/components/progress-stepper/public-api.d.ts +0 -3
  345. package/lib/components/rating/index.d.ts +0 -1
  346. package/lib/components/rating/public-api.d.ts +0 -2
  347. package/lib/components/rating/rating.component.d.ts +0 -22
  348. package/lib/components/rating/rating.module.d.ts +0 -9
  349. package/lib/components/stepper-condensed/condensed-helpers.d.ts +0 -24
  350. package/lib/components/stepper-condensed/condensed-step.type.d.ts +0 -43
  351. package/lib/components/stepper-condensed/index.d.ts +0 -1
  352. package/lib/components/stepper-condensed/public-api.d.ts +0 -4
  353. package/lib/components/stepper-condensed/stepper-condensed.component.d.ts +0 -61
  354. package/lib/components/stepper-condensed/stepper-condensed.module.d.ts +0 -11
  355. package/lib/components/submenu/submenu-container/index.d.ts +0 -1
  356. package/lib/components/submenu/submenu-container/public-api.d.ts +0 -2
  357. package/lib/components/submenu/submenu-container/submenu-container.component.d.ts +0 -9
  358. package/lib/components/submenu/submenu-container/submenu-container.module.d.ts +0 -8
  359. package/lib/components/submenu/submenu-heading/index.d.ts +0 -1
  360. package/lib/components/submenu/submenu-heading/public-api.d.ts +0 -2
  361. package/lib/components/submenu/submenu-heading/submenu-heading.component.d.ts +0 -9
  362. package/lib/components/submenu/submenu-heading/submenu-heading.module.d.ts +0 -8
  363. package/lib/components/submenu/submenu-item/index.d.ts +0 -1
  364. package/lib/components/submenu/submenu-item/public-api.d.ts +0 -2
  365. package/lib/components/submenu/submenu-item/submenu-item.component.d.ts +0 -16
  366. package/lib/components/submenu/submenu-item/submenu-item.module.d.ts +0 -9
  367. package/lib/components/submenu/submenu-secondary-item/index.d.ts +0 -1
  368. package/lib/components/submenu/submenu-secondary-item/public-api.d.ts +0 -2
  369. package/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.d.ts +0 -18
  370. package/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.d.ts +0 -9
  371. package/lib/components/timeline-stepper/index.d.ts +0 -1
  372. package/lib/components/timeline-stepper/public-api.d.ts +0 -4
  373. package/lib/components/timeline-stepper/timeline-helpers.d.ts +0 -24
  374. package/lib/components/timeline-stepper/timeline-step.type.d.ts +0 -43
  375. package/lib/components/timeline-stepper/timeline-stepper.component.d.ts +0 -61
  376. package/lib/components/timeline-stepper/timeline-stepper.module.d.ts +0 -11
  377. package/lib/components/vertical-stepper/index.d.ts +0 -1
  378. package/lib/components/vertical-stepper/vertical-step.type.d.ts +0 -45
  379. package/lib/components/wizard-stepper/index.d.ts +0 -1
  380. package/lib/components/wizard-stepper/public-api.d.ts +0 -3
  381. package/lib/components/wizard-stepper/wizard-stepper.component.d.ts +0 -12
  382. package/lib/components/wizard-stepper/wizard-stepper.module.d.ts +0 -10
  383. package/lib/components/wizard-stepper/wizard-stepper.types.d.ts +0 -4
  384. package/src/lib/components/main-menu/index.d.ts +0 -5
  385. package/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.d.ts +0 -11
  386. package/src/lib/components/main-menu/main-menu.component.d.ts +0 -42
  387. package/src/lib/components/main-menu/main-menu.module.d.ts +0 -15
  388. package/src/lib/components/main-menu/main-menu.types.d.ts +0 -8
  389. package/src/lib/components/main-menu/public-api.d.ts +0 -3
  390. package/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.d.ts +0 -30
  391. package/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.d.ts +0 -8
  392. package/src/lib/components/navigation/dashboard-edit-icon/index.d.ts +0 -5
  393. package/src/lib/components/navigation/dashboard-edit-icon/public-api.d.ts +0 -2
  394. package/src/lib/components/navigation/index.d.ts +0 -5
  395. package/src/lib/components/navigation/navigation-actions-container/index.d.ts +0 -5
  396. package/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.d.ts +0 -9
  397. package/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.d.ts +0 -8
  398. package/src/lib/components/navigation/navigation-actions-container/public-api.d.ts +0 -2
  399. package/src/lib/components/navigation/navigation-collapse-handle/index.d.ts +0 -5
  400. package/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.d.ts +0 -31
  401. package/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.d.ts +0 -8
  402. package/src/lib/components/navigation/navigation-collapse-handle/public-api.d.ts +0 -2
  403. package/src/lib/components/navigation/navigation-header/index.d.ts +0 -5
  404. package/src/lib/components/navigation/navigation-header/navigation-header.component.d.ts +0 -13
  405. package/src/lib/components/navigation/navigation-header/navigation-header.module.d.ts +0 -7
  406. package/src/lib/components/navigation/navigation-header/public-api.d.ts +0 -2
  407. package/src/lib/components/navigation/navigation-item/index.d.ts +0 -5
  408. package/src/lib/components/navigation/navigation-item/navigation-item.component.d.ts +0 -52
  409. package/src/lib/components/navigation/navigation-item/navigation-item.module.d.ts +0 -11
  410. package/src/lib/components/navigation/navigation-item/public-api.d.ts +0 -2
  411. package/src/lib/components/navigation/navigation-items-container/index.d.ts +0 -5
  412. package/src/lib/components/navigation/navigation-items-container/navigation-items-container.component.d.ts +0 -5
  413. package/src/lib/components/navigation/navigation-items-container/navigation-items-container.module.d.ts +0 -7
  414. package/src/lib/components/navigation/navigation-items-container/public-api.d.ts +0 -2
  415. package/src/lib/components/navigation/navigation.component.d.ts +0 -13
  416. package/src/lib/components/navigation/navigation.module.d.ts +0 -7
  417. package/src/lib/components/navigation/public-api.d.ts +0 -2
  418. package/src/lib/components/navigation/side-navigation/side-navigation-container/index.d.ts +0 -5
  419. package/src/lib/components/navigation/side-navigation/side-navigation-container/public-api.d.ts +0 -2
  420. package/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.d.ts +0 -5
  421. package/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.d.ts +0 -7
  422. package/src/lib/components/navigation/side-navigation/side-navigation-item/index.d.ts +0 -5
  423. package/src/lib/components/navigation/side-navigation/side-navigation-item/public-api.d.ts +0 -2
  424. package/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.d.ts +0 -45
  425. package/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.d.ts +0 -11
  426. package/src/lib/components/navigation/sub-navigation-item/index.d.ts +0 -5
  427. package/src/lib/components/navigation/sub-navigation-item/public-api.d.ts +0 -2
  428. package/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.d.ts +0 -28
  429. package/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.d.ts +0 -8
  430. package/src/lib/components/navigation/sub-navigation-items-container/index.d.ts +0 -5
  431. package/src/lib/components/navigation/sub-navigation-items-container/public-api.d.ts +0 -2
  432. package/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.d.ts +0 -5
  433. package/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.d.ts +0 -7
  434. package/src/lib/components/progress-stepper/index.d.ts +0 -5
  435. package/src/lib/components/progress-stepper/progress-step.types.d.ts +0 -5
  436. package/src/lib/components/progress-stepper/progress-stepper.component.d.ts +0 -42
  437. package/src/lib/components/progress-stepper/progress-stepper.module.d.ts +0 -10
  438. package/src/lib/components/progress-stepper/public-api.d.ts +0 -3
  439. package/src/lib/components/rating/index.d.ts +0 -5
  440. package/src/lib/components/rating/public-api.d.ts +0 -2
  441. package/src/lib/components/rating/rating.component.d.ts +0 -22
  442. package/src/lib/components/rating/rating.module.d.ts +0 -9
  443. package/src/lib/components/submenu/submenu-container/index.d.ts +0 -5
  444. package/src/lib/components/submenu/submenu-container/public-api.d.ts +0 -2
  445. package/src/lib/components/submenu/submenu-container/submenu-container.component.d.ts +0 -9
  446. package/src/lib/components/submenu/submenu-container/submenu-container.module.d.ts +0 -8
  447. package/src/lib/components/submenu/submenu-heading/index.d.ts +0 -5
  448. package/src/lib/components/submenu/submenu-heading/public-api.d.ts +0 -2
  449. package/src/lib/components/submenu/submenu-heading/submenu-heading.component.d.ts +0 -9
  450. package/src/lib/components/submenu/submenu-heading/submenu-heading.module.d.ts +0 -8
  451. package/src/lib/components/submenu/submenu-item/index.d.ts +0 -5
  452. package/src/lib/components/submenu/submenu-item/public-api.d.ts +0 -2
  453. package/src/lib/components/submenu/submenu-item/submenu-item.component.d.ts +0 -16
  454. package/src/lib/components/submenu/submenu-item/submenu-item.module.d.ts +0 -9
  455. package/src/lib/components/submenu/submenu-secondary-item/index.d.ts +0 -5
  456. package/src/lib/components/submenu/submenu-secondary-item/public-api.d.ts +0 -2
  457. package/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.d.ts +0 -18
  458. package/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.d.ts +0 -9
  459. package/src/lib/components/timeline-stepper/index.d.ts +0 -5
  460. package/src/lib/components/timeline-stepper/public-api.d.ts +0 -4
  461. package/src/lib/components/timeline-stepper/timeline-helpers.d.ts +0 -24
  462. package/src/lib/components/timeline-stepper/timeline-step.type.d.ts +0 -43
  463. package/src/lib/components/timeline-stepper/timeline-stepper.component.d.ts +0 -61
  464. package/src/lib/components/timeline-stepper/timeline-stepper.module.d.ts +0 -11
  465. package/src/lib/components/vertical-stepper/index.d.ts +0 -5
  466. package/src/lib/components/vertical-stepper/public-api.d.ts +0 -4
  467. package/src/lib/components/vertical-stepper/vertical-helpers.d.ts +0 -24
  468. package/src/lib/components/vertical-stepper/vertical-stepper.component.d.ts +0 -58
  469. package/src/lib/components/vertical-stepper/vertical-stepper.module.d.ts +0 -11
  470. package/src/lib/components/wizard-stepper/index.d.ts +0 -5
  471. package/src/lib/components/wizard-stepper/public-api.d.ts +0 -3
  472. package/src/lib/components/wizard-stepper/wizard-stepper.component.d.ts +0 -12
  473. package/src/lib/components/wizard-stepper/wizard-stepper.module.d.ts +0 -10
  474. package/src/lib/components/wizard-stepper/wizard-stepper.types.d.ts +0 -4
  475. /package/lib/components/{main-menu → nav-bar/nav-menu}/index.d.ts +0 -0
  476. /package/lib/components/{nav-menu → nav-bar/nav-menu}/public-api.d.ts +0 -0
  477. /package/lib/components/{nav-menu → nav-bar/side-nav-bar}/index.d.ts +0 -0
  478. /package/lib/components/{navigation/dashboard-edit-icon → steppers/numeric-stepper}/index.d.ts +0 -0
  479. /package/lib/components/{navigation → steppers/vertical-stepper}/index.d.ts +0 -0
  480. /package/lib/components/{vertical-stepper → steppers/vertical-stepper}/public-api.d.ts +0 -0
  481. /package/lib/components/{vertical-stepper → steppers/vertical-stepper}/vertical-helpers.d.ts +0 -0
  482. /package/lib/components/{vertical-stepper → steppers/vertical-stepper}/vertical-stepper.component.d.ts +0 -0
  483. /package/lib/components/{vertical-stepper → steppers/vertical-stepper}/vertical-stepper.module.d.ts +0 -0
@@ -48,11 +48,11 @@ export class AdsInputComponent extends AbstractInputComponent {
48
48
  this.hidePassword = !this.hidePassword;
49
49
  }
50
50
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsInputComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
51
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsInputComponent, selector: "ads-input", inputs: { maxlength: "maxlength", type: "type", pattern: "pattern", defaultValue: "defaultValue", readonly: "readonly", isPasswordField: "isPasswordField" }, viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<div [ngStyle]=\"{ minWidth: width }\">\n <mat-form-field\n [ngClass]=\"{\n 'immediate-validation': immediateValidation,\n 'no-left-padding': canClear,\n readonly: readonly,\n 'success-label': canShowSuccess(),\n 'error-label': canShowError(),\n 'x-small': smallSize,\n }\"\n [ngStyle]=\"{ width: width }\"\n >\n @if ((label || required) && !smallSize) {\n <mat-label>{{ label }}</mat-label>\n }\n <input\n #input\n matInput\n [maxlength]=\"maxlength\"\n [readonly]=\"readonly\"\n [pattern]=\"pattern\"\n [id]=\"id\"\n [type]=\"isPasswordField ? (hidePassword ? 'password' : 'text') : type\"\n [formControl]=\"valueControl\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n />\n\n @if (canClear) {\n <button matTextSuffix type=\"button\" mat-icon-button (click)=\"clear($event)\" class=\"action-icon\">\n <ads-icon class=\"cross-icon\" name=\"cross\" [size]=\"smallSize ? 'xxs' : 'xs'\" [theme]=\"'iconPrimary'\" />\n </button>\n }\n\n @if (isPasswordField && !readonly) {\n <button type=\"button\" mat-icon-button matTextSuffix (click)=\"showHidePassword()\" class=\"action-icon\">\n <ads-icon\n class=\"visibility-eye\"\n [name]=\"hidePassword ? 'visibility_eye_none' : 'visibility_eye'\"\n [size]=\"smallSize ? 'xxs' : 'sm'\"\n theme=\"white\"\n stroke=\"iconPrimary\"\n />\n </button>\n }\n </mat-form-field>\n @if (showFooter) {\n <div class=\"footer-container\">\n @if (canShowError()) {\n <ads-error [error]=\"displayFirstError()\" [ngStyle]=\"{ width: width }\" />\n } @else if (canShowSuccess()) {\n <ads-success [success]=\"successMessage!\" [ngStyle]=\"{ width: width }\" />\n } @else if (hint) {\n <ads-hint [hint]=\"hint\" [control]=\"valueControl\" [ngStyle]=\"{ width: width }\" />\n }\n </div>\n }\n</div>\n\n@if (tooltip) {\n <ads-input-tooltip [tooltip]=\"tooltip\" [smallSize]=\"smallSize\" />\n}\n", styles: [":host{display:flex;gap:12px;align-items:flex-start}:host::ng-deep mat-form-field{--mdc-filled-text-field-input-text-color: var(--color-medium);--mdc-filled-text-field-error-label-text-color: var(--color-error);--mdc-filled-text-field-label-text-color: var(--color-medium);--mdc-filled-text-field-focus-label-text-color: var(--color-medium);--mdc-filled-text-field-hover-label-text-color: var(--color-medium);--mdc-filled-text-field-label-text-size: 16px}:host::ng-deep mat-form-field .mdc-floating-label--float-above{--mdc-filled-text-field-label-text-size: 12px}:host::ng-deep mat-form-field .mdc-text-field{box-sizing:border-box;border-radius:5px;outline:1px solid var(--color-light);outline-offset:-1px;align-items:center;padding:0 12px;cursor:text;height:48px}:host::ng-deep mat-form-field .mdc-text-field .cross-icon{stroke:var(--color-medium)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex{height:100%}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex .mat-mdc-form-field-infix{align-items:center}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input{height:24px}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-outer-spin-button,:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input[type=number]{-moz-appearance:textfield}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .cross-icon,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .visibility-eye,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .picker{stroke:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .chevron-down,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .search-icon{color:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex{align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix{display:flex;align-items:flex-end;width:120px}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label{width:100%}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label .mat-mdc-form-field-required-marker{color:var(--mdc-filled-text-field-error-label-text-color)}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix{display:flex;align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix .mat-mdc-icon-button{display:flex;align-items:center;justify-content:center}:host::ng-deep mat-form-field .action-icon{padding:0;--mdc-icon-button-state-layer-size: 35px}:host::ng-deep mat-form-field .action-icon .mat-mdc-button-touch-target{height:unset;width:unset}:host::ng-deep mat-form-field.x-small .mdc-text-field{height:24px;padding:0 8px}:host::ng-deep mat-form-field.x-small .mdc-text-field .mat-mdc-form-field-input-control{font-size:12px;line-height:16px}:host::ng-deep mat-form-field.x-small .action-icon{--mdc-icon-button-state-layer-size: 22px}:host::ng-deep mat-form-field.readonly .mdc-text-field{background-color:var(--mdc-filled-text-field-disabled-container-color);border:none}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover{background-color:var(--color-light-30);outline:2px solid var(--color-secondary-hover);outline-offset:-2px}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover .visibility-eye{fill:var(--color-light-30)!important}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px;background-color:var(--color-muted)}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field .visibility-eye{fill:var(--color-muted)!important}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper{color:var(--mdc-filled-text-field-label-text-color)}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper:before{content:none}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-error-wrapper,:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-hint-wrapper{position:relative;padding:0}:host::ng-deep mat-form-field .mdc-line-ripple{display:none}:host::ng-deep mat-form-field.success-label .mat-mdc-form-field-required-marker,:host::ng-deep mat-form-field.success-label mat-label{color:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .mdc-text-field{outline:2px solid var(--color-success);outline-offset:-2px}:host::ng-deep mat-form-field.success-label .cross-icon,:host::ng-deep mat-form-field.success-label .visibility-eye,:host::ng-deep mat-form-field.success-label .picker{stroke:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .chevron-down,:host::ng-deep mat-form-field.success-label .search-icon{color:var(--color-success)!important}:host::ng-deep mat-form-field.error-label mat-label{color:var(--color-error)}:host::ng-deep mat-hint{display:inline-block}:host::ng-deep .mat-mdc-form-field-hint-spacer{display:none}.info-tooltip{position:relative;top:12px}mat-error{display:flex;padding-top:2px}mat-error .error{display:flex;align-items:flex-start;gap:2px}mat-error .error ads-icon{position:relative;top:2px}\n", ".footer-container{min-height:22.4px}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i4.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i4.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i5.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }, { kind: "component", type: i6.AdsInputTooltipComponent, selector: "ads-input-tooltip", inputs: ["tooltip", "smallSize"] }, { kind: "component", type: i7.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "component", type: i8.AdsSuccessComponent, selector: "ads-success", inputs: ["success"] }, { kind: "component", type: i9.AdsErrorComponent, selector: "ads-error", inputs: ["error"] }, { kind: "component", type: i10.AdsHintComponent, selector: "ads-hint", inputs: ["control", "hint"] }] }); }
51
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsInputComponent, selector: "ads-input", inputs: { maxlength: "maxlength", type: "type", pattern: "pattern", defaultValue: "defaultValue", readonly: "readonly", isPasswordField: "isPasswordField" }, viewQueries: [{ propertyName: "input", first: true, predicate: ["input"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<div [ngStyle]=\"{ minWidth: width }\">\n <mat-form-field\n [ngClass]=\"{\n 'immediate-validation': immediateValidation,\n 'no-left-padding': canClear,\n readonly: readonly,\n 'success-label': canShowSuccess(),\n 'error-label': canShowError(),\n 'x-small': smallSize,\n }\"\n [ngStyle]=\"{ width: width }\"\n >\n @if ((label || required) && !smallSize) {\n <mat-label>{{ label }}</mat-label>\n }\n <input\n #input\n matInput\n [maxlength]=\"maxlength\"\n [readonly]=\"readonly\"\n [pattern]=\"pattern\"\n [id]=\"id\"\n [type]=\"isPasswordField ? (hidePassword ? 'password' : 'text') : type\"\n [formControl]=\"valueControl\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n />\n\n @if (canClear) {\n <button matTextSuffix type=\"button\" mat-icon-button (click)=\"clear($event)\" class=\"action-icon\">\n <ads-icon class=\"cross-icon\" name=\"cross\" [size]=\"smallSize ? 'xxs' : 'xs'\" [theme]=\"'iconPrimary'\" />\n </button>\n }\n\n @if (isPasswordField && !readonly) {\n <button type=\"button\" mat-icon-button matTextSuffix (click)=\"showHidePassword()\" class=\"action-icon\">\n <ads-icon\n class=\"visibility-eye\"\n [name]=\"hidePassword ? 'visibility_eye_none' : 'visibility_eye'\"\n [size]=\"smallSize ? 'xxs' : 'sm'\"\n stroke=\"iconPrimary\"\n color=\"--color-medium\"\n />\n </button>\n }\n </mat-form-field>\n @if (showFooter) {\n <div class=\"footer-container\">\n @if (canShowError()) {\n <ads-error [error]=\"displayFirstError()\" [ngStyle]=\"{ width: width }\" />\n } @else if (canShowSuccess()) {\n <ads-success [success]=\"successMessage!\" [ngStyle]=\"{ width: width }\" />\n } @else if (hint) {\n <ads-hint [hint]=\"hint\" [control]=\"valueControl\" [ngStyle]=\"{ width: width }\" />\n }\n </div>\n }\n</div>\n\n@if (tooltip) {\n <ads-input-tooltip [tooltip]=\"tooltip\" [smallSize]=\"smallSize\" />\n}\n", styles: [":host{display:flex;gap:12px;align-items:flex-start}:host::ng-deep mat-form-field{--mdc-filled-text-field-input-text-color: var(--color-medium);--mdc-filled-text-field-error-label-text-color: var(--color-error);--mdc-filled-text-field-label-text-color: var(--color-medium);--mdc-filled-text-field-focus-label-text-color: var(--color-medium);--mdc-filled-text-field-hover-label-text-color: var(--color-medium);--mdc-filled-text-field-label-text-size: 16px}:host::ng-deep mat-form-field .mdc-floating-label--float-above{--mdc-filled-text-field-label-text-size: 12px}:host::ng-deep mat-form-field .mdc-text-field{box-sizing:border-box;border-radius:5px;outline:1px solid var(--color-light);outline-offset:-1px;align-items:center;padding:0 12px;cursor:text;height:48px}:host::ng-deep mat-form-field .mdc-text-field .cross-icon{stroke:var(--color-medium)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex{height:100%}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex .mat-mdc-form-field-infix{align-items:center}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input{height:24px}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-outer-spin-button,:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input[type=number]{-moz-appearance:textfield}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .cross-icon,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .visibility-eye,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .picker{stroke:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .chevron-down,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .search-icon{color:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex{align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix{display:flex;align-items:flex-end;width:120px}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label{width:100%}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label .mat-mdc-form-field-required-marker{color:var(--mdc-filled-text-field-error-label-text-color)}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix{display:flex;align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix .mat-mdc-icon-button{display:flex;align-items:center;justify-content:center}:host::ng-deep mat-form-field .action-icon{padding:0;--mdc-icon-button-state-layer-size: 35px}:host::ng-deep mat-form-field .action-icon .mat-mdc-button-touch-target{height:unset;width:unset}:host::ng-deep mat-form-field.x-small .mdc-text-field{height:24px;padding:0 8px}:host::ng-deep mat-form-field.x-small .mdc-text-field .mat-mdc-form-field-input-control{font-size:12px;line-height:16px}:host::ng-deep mat-form-field.x-small .action-icon{--mdc-icon-button-state-layer-size: 22px}:host::ng-deep mat-form-field.readonly .mdc-text-field{background-color:var(--mdc-filled-text-field-disabled-container-color);border:none}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover{background-color:var(--color-light-30);outline:2px solid var(--color-secondary-hover);outline-offset:-2px}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover .visibility-eye{fill:var(--color-light-30)!important}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px;background-color:var(--color-muted)}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field .visibility-eye{fill:var(--color-muted)!important}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper{color:var(--mdc-filled-text-field-label-text-color)}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper:before{content:none}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-error-wrapper,:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-hint-wrapper{position:relative;padding:0}:host::ng-deep mat-form-field .mdc-line-ripple{display:none}:host::ng-deep mat-form-field.success-label .mat-mdc-form-field-required-marker,:host::ng-deep mat-form-field.success-label mat-label{color:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .mdc-text-field{outline:2px solid var(--color-success);outline-offset:-2px}:host::ng-deep mat-form-field.success-label .cross-icon,:host::ng-deep mat-form-field.success-label .visibility-eye,:host::ng-deep mat-form-field.success-label .picker{stroke:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .chevron-down,:host::ng-deep mat-form-field.success-label .search-icon{color:var(--color-success)!important}:host::ng-deep mat-form-field.error-label mat-label{color:var(--color-error)}:host::ng-deep mat-hint{display:inline-block}:host::ng-deep .mat-mdc-form-field-hint-spacer{display:none}.info-tooltip{position:relative;top:12px}mat-error{display:flex;padding-top:2px}mat-error .error{display:flex;align-items:flex-start;gap:2px}mat-error .error ads-icon{position:relative;top:2px}\n", ".footer-container{min-height:22.4px}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2.MatLabel, selector: "mat-label" }, { kind: "directive", type: i2.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "directive", type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i4.MaxLengthValidator, selector: "[maxlength][formControlName],[maxlength][formControl],[maxlength][ngModel]", inputs: ["maxlength"] }, { kind: "directive", type: i4.PatternValidator, selector: "[pattern][formControlName],[pattern][formControl],[pattern][ngModel]", inputs: ["pattern"] }, { kind: "directive", type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "component", type: i5.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }, { kind: "component", type: i6.AdsInputTooltipComponent, selector: "ads-input-tooltip", inputs: ["tooltip", "smallSize"] }, { kind: "component", type: i7.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "component", type: i8.AdsSuccessComponent, selector: "ads-success", inputs: ["success"] }, { kind: "component", type: i9.AdsErrorComponent, selector: "ads-error", inputs: ["error"] }, { kind: "component", type: i10.AdsHintComponent, selector: "ads-hint", inputs: ["control", "hint"] }] }); }
52
52
  }
53
53
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsInputComponent, decorators: [{
54
54
  type: Component,
55
- args: [{ selector: 'ads-input', template: "<div [ngStyle]=\"{ minWidth: width }\">\n <mat-form-field\n [ngClass]=\"{\n 'immediate-validation': immediateValidation,\n 'no-left-padding': canClear,\n readonly: readonly,\n 'success-label': canShowSuccess(),\n 'error-label': canShowError(),\n 'x-small': smallSize,\n }\"\n [ngStyle]=\"{ width: width }\"\n >\n @if ((label || required) && !smallSize) {\n <mat-label>{{ label }}</mat-label>\n }\n <input\n #input\n matInput\n [maxlength]=\"maxlength\"\n [readonly]=\"readonly\"\n [pattern]=\"pattern\"\n [id]=\"id\"\n [type]=\"isPasswordField ? (hidePassword ? 'password' : 'text') : type\"\n [formControl]=\"valueControl\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n />\n\n @if (canClear) {\n <button matTextSuffix type=\"button\" mat-icon-button (click)=\"clear($event)\" class=\"action-icon\">\n <ads-icon class=\"cross-icon\" name=\"cross\" [size]=\"smallSize ? 'xxs' : 'xs'\" [theme]=\"'iconPrimary'\" />\n </button>\n }\n\n @if (isPasswordField && !readonly) {\n <button type=\"button\" mat-icon-button matTextSuffix (click)=\"showHidePassword()\" class=\"action-icon\">\n <ads-icon\n class=\"visibility-eye\"\n [name]=\"hidePassword ? 'visibility_eye_none' : 'visibility_eye'\"\n [size]=\"smallSize ? 'xxs' : 'sm'\"\n theme=\"white\"\n stroke=\"iconPrimary\"\n />\n </button>\n }\n </mat-form-field>\n @if (showFooter) {\n <div class=\"footer-container\">\n @if (canShowError()) {\n <ads-error [error]=\"displayFirstError()\" [ngStyle]=\"{ width: width }\" />\n } @else if (canShowSuccess()) {\n <ads-success [success]=\"successMessage!\" [ngStyle]=\"{ width: width }\" />\n } @else if (hint) {\n <ads-hint [hint]=\"hint\" [control]=\"valueControl\" [ngStyle]=\"{ width: width }\" />\n }\n </div>\n }\n</div>\n\n@if (tooltip) {\n <ads-input-tooltip [tooltip]=\"tooltip\" [smallSize]=\"smallSize\" />\n}\n", styles: [":host{display:flex;gap:12px;align-items:flex-start}:host::ng-deep mat-form-field{--mdc-filled-text-field-input-text-color: var(--color-medium);--mdc-filled-text-field-error-label-text-color: var(--color-error);--mdc-filled-text-field-label-text-color: var(--color-medium);--mdc-filled-text-field-focus-label-text-color: var(--color-medium);--mdc-filled-text-field-hover-label-text-color: var(--color-medium);--mdc-filled-text-field-label-text-size: 16px}:host::ng-deep mat-form-field .mdc-floating-label--float-above{--mdc-filled-text-field-label-text-size: 12px}:host::ng-deep mat-form-field .mdc-text-field{box-sizing:border-box;border-radius:5px;outline:1px solid var(--color-light);outline-offset:-1px;align-items:center;padding:0 12px;cursor:text;height:48px}:host::ng-deep mat-form-field .mdc-text-field .cross-icon{stroke:var(--color-medium)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex{height:100%}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex .mat-mdc-form-field-infix{align-items:center}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input{height:24px}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-outer-spin-button,:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input[type=number]{-moz-appearance:textfield}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .cross-icon,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .visibility-eye,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .picker{stroke:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .chevron-down,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .search-icon{color:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex{align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix{display:flex;align-items:flex-end;width:120px}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label{width:100%}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label .mat-mdc-form-field-required-marker{color:var(--mdc-filled-text-field-error-label-text-color)}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix{display:flex;align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix .mat-mdc-icon-button{display:flex;align-items:center;justify-content:center}:host::ng-deep mat-form-field .action-icon{padding:0;--mdc-icon-button-state-layer-size: 35px}:host::ng-deep mat-form-field .action-icon .mat-mdc-button-touch-target{height:unset;width:unset}:host::ng-deep mat-form-field.x-small .mdc-text-field{height:24px;padding:0 8px}:host::ng-deep mat-form-field.x-small .mdc-text-field .mat-mdc-form-field-input-control{font-size:12px;line-height:16px}:host::ng-deep mat-form-field.x-small .action-icon{--mdc-icon-button-state-layer-size: 22px}:host::ng-deep mat-form-field.readonly .mdc-text-field{background-color:var(--mdc-filled-text-field-disabled-container-color);border:none}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover{background-color:var(--color-light-30);outline:2px solid var(--color-secondary-hover);outline-offset:-2px}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover .visibility-eye{fill:var(--color-light-30)!important}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px;background-color:var(--color-muted)}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field .visibility-eye{fill:var(--color-muted)!important}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper{color:var(--mdc-filled-text-field-label-text-color)}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper:before{content:none}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-error-wrapper,:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-hint-wrapper{position:relative;padding:0}:host::ng-deep mat-form-field .mdc-line-ripple{display:none}:host::ng-deep mat-form-field.success-label .mat-mdc-form-field-required-marker,:host::ng-deep mat-form-field.success-label mat-label{color:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .mdc-text-field{outline:2px solid var(--color-success);outline-offset:-2px}:host::ng-deep mat-form-field.success-label .cross-icon,:host::ng-deep mat-form-field.success-label .visibility-eye,:host::ng-deep mat-form-field.success-label .picker{stroke:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .chevron-down,:host::ng-deep mat-form-field.success-label .search-icon{color:var(--color-success)!important}:host::ng-deep mat-form-field.error-label mat-label{color:var(--color-error)}:host::ng-deep mat-hint{display:inline-block}:host::ng-deep .mat-mdc-form-field-hint-spacer{display:none}.info-tooltip{position:relative;top:12px}mat-error{display:flex;padding-top:2px}mat-error .error{display:flex;align-items:flex-start;gap:2px}mat-error .error ads-icon{position:relative;top:2px}\n", ".footer-container{min-height:22.4px}\n"] }]
55
+ args: [{ selector: 'ads-input', template: "<div [ngStyle]=\"{ minWidth: width }\">\n <mat-form-field\n [ngClass]=\"{\n 'immediate-validation': immediateValidation,\n 'no-left-padding': canClear,\n readonly: readonly,\n 'success-label': canShowSuccess(),\n 'error-label': canShowError(),\n 'x-small': smallSize,\n }\"\n [ngStyle]=\"{ width: width }\"\n >\n @if ((label || required) && !smallSize) {\n <mat-label>{{ label }}</mat-label>\n }\n <input\n #input\n matInput\n [maxlength]=\"maxlength\"\n [readonly]=\"readonly\"\n [pattern]=\"pattern\"\n [id]=\"id\"\n [type]=\"isPasswordField ? (hidePassword ? 'password' : 'text') : type\"\n [formControl]=\"valueControl\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n />\n\n @if (canClear) {\n <button matTextSuffix type=\"button\" mat-icon-button (click)=\"clear($event)\" class=\"action-icon\">\n <ads-icon class=\"cross-icon\" name=\"cross\" [size]=\"smallSize ? 'xxs' : 'xs'\" [theme]=\"'iconPrimary'\" />\n </button>\n }\n\n @if (isPasswordField && !readonly) {\n <button type=\"button\" mat-icon-button matTextSuffix (click)=\"showHidePassword()\" class=\"action-icon\">\n <ads-icon\n class=\"visibility-eye\"\n [name]=\"hidePassword ? 'visibility_eye_none' : 'visibility_eye'\"\n [size]=\"smallSize ? 'xxs' : 'sm'\"\n stroke=\"iconPrimary\"\n color=\"--color-medium\"\n />\n </button>\n }\n </mat-form-field>\n @if (showFooter) {\n <div class=\"footer-container\">\n @if (canShowError()) {\n <ads-error [error]=\"displayFirstError()\" [ngStyle]=\"{ width: width }\" />\n } @else if (canShowSuccess()) {\n <ads-success [success]=\"successMessage!\" [ngStyle]=\"{ width: width }\" />\n } @else if (hint) {\n <ads-hint [hint]=\"hint\" [control]=\"valueControl\" [ngStyle]=\"{ width: width }\" />\n }\n </div>\n }\n</div>\n\n@if (tooltip) {\n <ads-input-tooltip [tooltip]=\"tooltip\" [smallSize]=\"smallSize\" />\n}\n", styles: [":host{display:flex;gap:12px;align-items:flex-start}:host::ng-deep mat-form-field{--mdc-filled-text-field-input-text-color: var(--color-medium);--mdc-filled-text-field-error-label-text-color: var(--color-error);--mdc-filled-text-field-label-text-color: var(--color-medium);--mdc-filled-text-field-focus-label-text-color: var(--color-medium);--mdc-filled-text-field-hover-label-text-color: var(--color-medium);--mdc-filled-text-field-label-text-size: 16px}:host::ng-deep mat-form-field .mdc-floating-label--float-above{--mdc-filled-text-field-label-text-size: 12px}:host::ng-deep mat-form-field .mdc-text-field{box-sizing:border-box;border-radius:5px;outline:1px solid var(--color-light);outline-offset:-1px;align-items:center;padding:0 12px;cursor:text;height:48px}:host::ng-deep mat-form-field .mdc-text-field .cross-icon{stroke:var(--color-medium)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex{height:100%}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--no-label .mat-mdc-form-field-flex .mat-mdc-form-field-infix{align-items:center}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input{height:24px}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-outer-spin-button,:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}:host::ng-deep mat-form-field .mdc-text-field:not(.mdc-text-field--no-label) .mat-mdc-form-field-infix input[type=number]{-moz-appearance:textfield}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .cross-icon,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .visibility-eye,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .picker{stroke:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .chevron-down,:host::ng-deep mat-form-field .mdc-text-field.mdc-text-field--invalid .search-icon{color:var(--color-error)!important}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex{align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix{display:flex;align-items:flex-end;width:120px}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label{width:100%}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-form-field-infix label .mat-mdc-form-field-required-marker{color:var(--mdc-filled-text-field-error-label-text-color)}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix{display:flex;align-items:center}:host::ng-deep mat-form-field .mdc-text-field .mat-mdc-form-field-text-suffix .mat-mdc-icon-button{display:flex;align-items:center;justify-content:center}:host::ng-deep mat-form-field .action-icon{padding:0;--mdc-icon-button-state-layer-size: 35px}:host::ng-deep mat-form-field .action-icon .mat-mdc-button-touch-target{height:unset;width:unset}:host::ng-deep mat-form-field.x-small .mdc-text-field{height:24px;padding:0 8px}:host::ng-deep mat-form-field.x-small .mdc-text-field .mat-mdc-form-field-input-control{font-size:12px;line-height:16px}:host::ng-deep mat-form-field.x-small .action-icon{--mdc-icon-button-state-layer-size: 22px}:host::ng-deep mat-form-field.readonly .mdc-text-field{background-color:var(--mdc-filled-text-field-disabled-container-color);border:none}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover{background-color:var(--color-light-30);outline:2px solid var(--color-secondary-hover);outline-offset:-2px}:host::ng-deep mat-form-field:not(.readonly) .mdc-text-field:hover .visibility-eye{fill:var(--color-light-30)!important}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px;background-color:var(--color-muted)}:host::ng-deep mat-form-field:not(.readonly).mat-focused .mdc-text-field .visibility-eye{fill:var(--color-muted)!important}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field{outline:2px solid var(--color-medium);outline-offset:-2px}:host::ng-deep mat-form-field.immediate-validation .mdc-text-field.mdc-text-field--invalid{outline:2px solid var(--color-error);outline-offset:-2px}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper{color:var(--mdc-filled-text-field-label-text-color)}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper:before{content:none}:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-error-wrapper,:host::ng-deep mat-form-field .mat-mdc-form-field-subscript-wrapper .mat-mdc-form-field-hint-wrapper{position:relative;padding:0}:host::ng-deep mat-form-field .mdc-line-ripple{display:none}:host::ng-deep mat-form-field.success-label .mat-mdc-form-field-required-marker,:host::ng-deep mat-form-field.success-label mat-label{color:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .mdc-text-field{outline:2px solid var(--color-success);outline-offset:-2px}:host::ng-deep mat-form-field.success-label .cross-icon,:host::ng-deep mat-form-field.success-label .visibility-eye,:host::ng-deep mat-form-field.success-label .picker{stroke:var(--color-success)!important}:host::ng-deep mat-form-field.success-label .chevron-down,:host::ng-deep mat-form-field.success-label .search-icon{color:var(--color-success)!important}:host::ng-deep mat-form-field.error-label mat-label{color:var(--color-error)}:host::ng-deep mat-hint{display:inline-block}:host::ng-deep .mat-mdc-form-field-hint-spacer{display:none}.info-tooltip{position:relative;top:12px}mat-error{display:flex;padding-top:2px}mat-error .error{display:flex;align-items:flex-start;gap:2px}mat-error .error ads-icon{position:relative;top:2px}\n", ".footer-container{min-height:22.4px}\n"] }]
56
56
  }], propDecorators: { maxlength: [{
57
57
  type: Input
58
58
  }], type: [{
@@ -69,4 +69,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImpor
69
69
  type: ViewChild,
70
70
  args: ['input']
71
71
  }] } });
72
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGRzL2lucHV0L2lucHV0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9pbnB1dC9pbnB1dC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQVUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2hGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHVDQUF1QyxDQUFDOzs7Ozs7Ozs7Ozs7QUFRL0UsTUFBTSxPQUFPLGlCQUFrQixTQUFRLHNCQUFzQjtJQUw3RDs7UUFNRSxzREFBc0Q7UUFDN0MsY0FBUyxHQUFHLEdBQUcsQ0FBQztRQUV6Qix1RkFBdUY7UUFDOUUsU0FBSSxHQUF5RSxNQUFNLENBQUM7UUFFN0YsMkVBQTJFO1FBQ2xFLFlBQU8sR0FBb0IsRUFBRSxDQUFDO1FBS3ZDLG1DQUFtQztRQUMxQixhQUFRLEdBQUcsS0FBSyxDQUFDO1FBRTFCLG1DQUFtQztRQUMxQixvQkFBZSxHQUFHLEtBQUssQ0FBQztRQUtqQyxjQUFjO1FBQ2QsaUJBQVksR0FBRyxJQUFJLENBQUM7UUFFcEIsY0FBYztRQUNLLHlCQUFvQixHQUErQjtZQUNwRSxPQUFPLEVBQUUsdUNBQXVDO1NBQ2pELENBQUM7S0FtQkg7SUFqQkMsUUFBUTtRQUNOOztXQUVHO1FBQ0gsSUFBSSxJQUFJLENBQUMsWUFBWSxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQ3BDLElBQUksQ0FBQyxZQUFZLEVBQUUsWUFBWSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO2dCQUNsRCxJQUFJLENBQUMsS0FBSyxJQUFJLEtBQUssS0FBSyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7b0JBQzFDLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztnQkFDaEQsQ0FBQztZQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0wsQ0FBQztJQUNILENBQUM7SUFFRCxjQUFjO0lBQ2QsZ0JBQWdCO1FBQ2QsSUFBSSxDQUFDLFlBQVksR0FBRyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUM7SUFDekMsQ0FBQzs4R0E5Q1UsaUJBQWlCO2tHQUFqQixpQkFBaUIsc1VDVDlCLHVpRUE4REE7OzJGRHJEYSxpQkFBaUI7a0JBTDdCLFNBQVM7K0JBQ0UsV0FBVzs4QkFNWixTQUFTO3NCQUFqQixLQUFLO2dCQUdHLElBQUk7c0JBQVosS0FBSztnQkFHRyxPQUFPO3NCQUFmLEtBQUs7Z0JBR0csWUFBWTtzQkFBcEIsS0FBSztnQkFHRyxRQUFRO3NCQUFoQixLQUFLO2dCQUdHLGVBQWU7c0JBQXZCLEtBQUs7Z0JBR2MsS0FBSztzQkFBeEIsU0FBUzt1QkFBQyxPQUFPIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBJbnB1dCwgT25Jbml0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFic3RyYWN0SW5wdXRDb21wb25lbnQgfSBmcm9tICcuLi9hYnN0cmFjdHMvYWJzdHJhY3QuaW5wdXQuY29tcG9uZW50JztcbmltcG9ydCB7IEdFTkVSSUNfQ09MTEVDVElPTiB9IGZyb20gJ0Bhc2NlbnRnbC9hZHMtdXRpbHMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhZHMtaW5wdXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9pbnB1dC5jb21wb25lbnQuc2NzcycsICcuLi9jb21tb24vY29tbW9uLmlucHV0LmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIEFkc0lucHV0Q29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RJbnB1dENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIC8qKiBNYXhpbXVtIGFtb3VudCBvZiBjaGFyYWN0ZXJzIGluIHRoZSBpbnB1dCBmaWVsZCAqL1xuICBASW5wdXQoKSBtYXhsZW5ndGggPSAyNTU7XG5cbiAgLyoqIFBvc3NpYmxlIGlucHV0IHR5cGUgKGFzIHBlciBIVE1MIGRvY3VtZW50YXRpb24pLiBOT1RFOiBub3QgYWxsIHR5cGVzIGFyZSBhbGxvd2VkICovXG4gIEBJbnB1dCgpIHR5cGU6ICd0ZXh0JyB8ICdudW1iZXInIHwgJ2VtYWlsJyB8ICdwYXNzd29yZCcgfCAndXJsJyB8ICdwYXR0ZXJuJyB8ICd0ZWwnID0gJ3RleHQnO1xuXG4gIC8qKiBQcm92aWRlIHJlZ3VsYXIgZXhwcmVzc2lvbiBwYXR0ZXJuIGlmIGlucHV0IHR5cGUgaXMgc2V0IHRvIFwicGF0dGVyblwiICovXG4gIEBJbnB1dCgpIHBhdHRlcm46IHN0cmluZyB8IFJlZ0V4cCA9ICcnO1xuXG4gIC8qKiBQcm92aWRlIFwiZGVmYXVsdFwiIHZhbHVlIHRoYXQgd2lsbCBiZSB1c2VkIHdoZW4gY29udHJvbCB2YWx1ZSBpcyBjbGVhcmVkICovXG4gIEBJbnB1dCgpIGRlZmF1bHRWYWx1ZT86IHVua25vd247XG5cbiAgLyoqIG1hcmsgaW5wdXQgZmllbGQgYXMgcmVhZG9ubHkgKi9cbiAgQElucHV0KCkgcmVhZG9ubHkgPSBmYWxzZTtcblxuICAvKiogbWFyayBpbnB1dCBmaWVsZCBhcyByZWFkb25seSAqL1xuICBASW5wdXQoKSBpc1Bhc3N3b3JkRmllbGQgPSBmYWxzZTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBAVmlld0NoaWxkKCdpbnB1dCcpIGlucHV0PzogRWxlbWVudFJlZjtcblxuICAvKiogQGlnbm9yZSAqL1xuICBoaWRlUGFzc3dvcmQgPSB0cnVlO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIHByb3RlY3RlZCByZWFkb25seSBkZWZhdWx0RXJyb3JNZXNzYWdlczogR0VORVJJQ19DT0xMRUNUSU9OPHN0cmluZz4gPSB7XG4gICAgcGF0dGVybjogJ1Byb3ZpZGVkIHZhbHVlIGRvZXMgbm90IG1hdGNoIHBhdHRlcm4nLFxuICB9O1xuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIC8qKlxuICAgICAqIGlmIGRlZmF1bHQgdmFsdWUgaXMgcHJvdmlkZWQgLSBlbWl0IGl0IHdoZW4gaW5wdXQgaXMgY2xlYXJlZFxuICAgICAqL1xuICAgIGlmICh0aGlzLmRlZmF1bHRWYWx1ZSAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLnZhbHVlQ29udHJvbD8udmFsdWVDaGFuZ2VzLnN1YnNjcmliZSgodmFsdWUpID0+IHtcbiAgICAgICAgaWYgKCF2YWx1ZSAmJiB2YWx1ZSAhPT0gdGhpcy5kZWZhdWx0VmFsdWUpIHtcbiAgICAgICAgICB0aGlzLnZhbHVlQ29udHJvbC5zZXRWYWx1ZSh0aGlzLmRlZmF1bHRWYWx1ZSk7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICAgIH1cbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHNob3dIaWRlUGFzc3dvcmQoKTogdm9pZCB7XG4gICAgdGhpcy5oaWRlUGFzc3dvcmQgPSAhdGhpcy5oaWRlUGFzc3dvcmQ7XG4gIH1cbn1cbiIsIjxkaXYgW25nU3R5bGVdPVwieyBtaW5XaWR0aDogd2lkdGggfVwiPlxuICA8bWF0LWZvcm0tZmllbGRcbiAgICBbbmdDbGFzc109XCJ7XG4gICAgICAnaW1tZWRpYXRlLXZhbGlkYXRpb24nOiBpbW1lZGlhdGVWYWxpZGF0aW9uLFxuICAgICAgJ25vLWxlZnQtcGFkZGluZyc6IGNhbkNsZWFyLFxuICAgICAgcmVhZG9ubHk6IHJlYWRvbmx5LFxuICAgICAgJ3N1Y2Nlc3MtbGFiZWwnOiBjYW5TaG93U3VjY2VzcygpLFxuICAgICAgJ2Vycm9yLWxhYmVsJzogY2FuU2hvd0Vycm9yKCksXG4gICAgICAneC1zbWFsbCc6IHNtYWxsU2l6ZSxcbiAgICB9XCJcbiAgICBbbmdTdHlsZV09XCJ7IHdpZHRoOiB3aWR0aCB9XCJcbiAgPlxuICAgIEBpZiAoKGxhYmVsIHx8IHJlcXVpcmVkKSAmJiAhc21hbGxTaXplKSB7XG4gICAgICA8bWF0LWxhYmVsPnt7IGxhYmVsIH19PC9tYXQtbGFiZWw+XG4gICAgfVxuICAgIDxpbnB1dFxuICAgICAgI2lucHV0XG4gICAgICBtYXRJbnB1dFxuICAgICAgW21heGxlbmd0aF09XCJtYXhsZW5ndGhcIlxuICAgICAgW3JlYWRvbmx5XT1cInJlYWRvbmx5XCJcbiAgICAgIFtwYXR0ZXJuXT1cInBhdHRlcm5cIlxuICAgICAgW2lkXT1cImlkXCJcbiAgICAgIFt0eXBlXT1cImlzUGFzc3dvcmRGaWVsZCA/IChoaWRlUGFzc3dvcmQgPyAncGFzc3dvcmQnIDogJ3RleHQnKSA6IHR5cGVcIlxuICAgICAgW2Zvcm1Db250cm9sXT1cInZhbHVlQ29udHJvbFwiXG4gICAgICBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIlxuICAgICAgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcbiAgICAvPlxuXG4gICAgQGlmIChjYW5DbGVhcikge1xuICAgICAgPGJ1dHRvbiBtYXRUZXh0U3VmZml4IHR5cGU9XCJidXR0b25cIiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cImNsZWFyKCRldmVudClcIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+XG4gICAgICAgIDxhZHMtaWNvbiBjbGFzcz1cImNyb3NzLWljb25cIiBuYW1lPVwiY3Jvc3NcIiBbc2l6ZV09XCJzbWFsbFNpemUgPyAneHhzJyA6ICd4cydcIiBbdGhlbWVdPVwiJ2ljb25QcmltYXJ5J1wiIC8+XG4gICAgICA8L2J1dHRvbj5cbiAgICB9XG5cbiAgICBAaWYgKGlzUGFzc3dvcmRGaWVsZCAmJiAhcmVhZG9ubHkpIHtcbiAgICAgIDxidXR0b24gdHlwZT1cImJ1dHRvblwiIG1hdC1pY29uLWJ1dHRvbiBtYXRUZXh0U3VmZml4IChjbGljayk9XCJzaG93SGlkZVBhc3N3b3JkKClcIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+XG4gICAgICAgIDxhZHMtaWNvblxuICAgICAgICAgIGNsYXNzPVwidmlzaWJpbGl0eS1leWVcIlxuICAgICAgICAgIFtuYW1lXT1cImhpZGVQYXNzd29yZCA/ICd2aXNpYmlsaXR5X2V5ZV9ub25lJyA6ICd2aXNpYmlsaXR5X2V5ZSdcIlxuICAgICAgICAgIFtzaXplXT1cInNtYWxsU2l6ZSA/ICd4eHMnIDogJ3NtJ1wiXG4gICAgICAgICAgdGhlbWU9XCJ3aGl0ZVwiXG4gICAgICAgICAgc3Ryb2tlPVwiaWNvblByaW1hcnlcIlxuICAgICAgICAvPlxuICAgICAgPC9idXR0b24+XG4gICAgfVxuICA8L21hdC1mb3JtLWZpZWxkPlxuICBAaWYgKHNob3dGb290ZXIpIHtcbiAgICA8ZGl2IGNsYXNzPVwiZm9vdGVyLWNvbnRhaW5lclwiPlxuICAgICAgQGlmIChjYW5TaG93RXJyb3IoKSkge1xuICAgICAgICA8YWRzLWVycm9yIFtlcnJvcl09XCJkaXNwbGF5Rmlyc3RFcnJvcigpXCIgW25nU3R5bGVdPVwieyB3aWR0aDogd2lkdGggfVwiIC8+XG4gICAgICB9IEBlbHNlIGlmIChjYW5TaG93U3VjY2VzcygpKSB7XG4gICAgICAgIDxhZHMtc3VjY2VzcyBbc3VjY2Vzc109XCJzdWNjZXNzTWVzc2FnZSFcIiBbbmdTdHlsZV09XCJ7IHdpZHRoOiB3aWR0aCB9XCIgLz5cbiAgICAgIH0gQGVsc2UgaWYgKGhpbnQpIHtcbiAgICAgICAgPGFkcy1oaW50IFtoaW50XT1cImhpbnRcIiBbY29udHJvbF09XCJ2YWx1ZUNvbnRyb2xcIiBbbmdTdHlsZV09XCJ7IHdpZHRoOiB3aWR0aCB9XCIgLz5cbiAgICAgIH1cbiAgICA8L2Rpdj5cbiAgfVxuPC9kaXY+XG5cbkBpZiAodG9vbHRpcCkge1xuICA8YWRzLWlucHV0LXRvb2x0aXAgW3Rvb2x0aXBdPVwidG9vbHRpcFwiIFtzbWFsbFNpemVdPVwic21hbGxTaXplXCIgLz5cbn1cbiJdfQ==
72
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGRzL2lucHV0L2lucHV0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9pbnB1dC9pbnB1dC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQVUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2hGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHVDQUF1QyxDQUFDOzs7Ozs7Ozs7Ozs7QUFRL0UsTUFBTSxPQUFPLGlCQUFrQixTQUFRLHNCQUFzQjtJQUw3RDs7UUFNRSxzREFBc0Q7UUFDN0MsY0FBUyxHQUFHLEdBQUcsQ0FBQztRQUV6Qix1RkFBdUY7UUFDOUUsU0FBSSxHQUF5RSxNQUFNLENBQUM7UUFFN0YsMkVBQTJFO1FBQ2xFLFlBQU8sR0FBb0IsRUFBRSxDQUFDO1FBS3ZDLG1DQUFtQztRQUMxQixhQUFRLEdBQUcsS0FBSyxDQUFDO1FBRTFCLG1DQUFtQztRQUMxQixvQkFBZSxHQUFHLEtBQUssQ0FBQztRQUtqQyxjQUFjO1FBQ2QsaUJBQVksR0FBRyxJQUFJLENBQUM7UUFFcEIsY0FBYztRQUNLLHlCQUFvQixHQUErQjtZQUNwRSxPQUFPLEVBQUUsdUNBQXVDO1NBQ2pELENBQUM7S0FtQkg7SUFqQkMsUUFBUTtRQUNOOztXQUVHO1FBQ0gsSUFBSSxJQUFJLENBQUMsWUFBWSxLQUFLLFNBQVMsRUFBRSxDQUFDO1lBQ3BDLElBQUksQ0FBQyxZQUFZLEVBQUUsWUFBWSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFO2dCQUNsRCxJQUFJLENBQUMsS0FBSyxJQUFJLEtBQUssS0FBSyxJQUFJLENBQUMsWUFBWSxFQUFFLENBQUM7b0JBQzFDLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztnQkFDaEQsQ0FBQztZQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0wsQ0FBQztJQUNILENBQUM7SUFFRCxjQUFjO0lBQ2QsZ0JBQWdCO1FBQ2QsSUFBSSxDQUFDLFlBQVksR0FBRyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUM7SUFDekMsQ0FBQzs4R0E5Q1UsaUJBQWlCO2tHQUFqQixpQkFBaUIsc1VDVDlCLGdqRUE4REE7OzJGRHJEYSxpQkFBaUI7a0JBTDdCLFNBQVM7K0JBQ0UsV0FBVzs4QkFNWixTQUFTO3NCQUFqQixLQUFLO2dCQUdHLElBQUk7c0JBQVosS0FBSztnQkFHRyxPQUFPO3NCQUFmLEtBQUs7Z0JBR0csWUFBWTtzQkFBcEIsS0FBSztnQkFHRyxRQUFRO3NCQUFoQixLQUFLO2dCQUdHLGVBQWU7c0JBQXZCLEtBQUs7Z0JBR2MsS0FBSztzQkFBeEIsU0FBUzt1QkFBQyxPQUFPIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBFbGVtZW50UmVmLCBJbnB1dCwgT25Jbml0LCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFic3RyYWN0SW5wdXRDb21wb25lbnQgfSBmcm9tICcuLi9hYnN0cmFjdHMvYWJzdHJhY3QuaW5wdXQuY29tcG9uZW50JztcbmltcG9ydCB7IEdFTkVSSUNfQ09MTEVDVElPTiB9IGZyb20gJ0Bhc2NlbnRnbC9hZHMtdXRpbHMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhZHMtaW5wdXQnLFxuICB0ZW1wbGF0ZVVybDogJy4vaW5wdXQuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9pbnB1dC5jb21wb25lbnQuc2NzcycsICcuLi9jb21tb24vY29tbW9uLmlucHV0LmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIEFkc0lucHV0Q29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RJbnB1dENvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIC8qKiBNYXhpbXVtIGFtb3VudCBvZiBjaGFyYWN0ZXJzIGluIHRoZSBpbnB1dCBmaWVsZCAqL1xuICBASW5wdXQoKSBtYXhsZW5ndGggPSAyNTU7XG5cbiAgLyoqIFBvc3NpYmxlIGlucHV0IHR5cGUgKGFzIHBlciBIVE1MIGRvY3VtZW50YXRpb24pLiBOT1RFOiBub3QgYWxsIHR5cGVzIGFyZSBhbGxvd2VkICovXG4gIEBJbnB1dCgpIHR5cGU6ICd0ZXh0JyB8ICdudW1iZXInIHwgJ2VtYWlsJyB8ICdwYXNzd29yZCcgfCAndXJsJyB8ICdwYXR0ZXJuJyB8ICd0ZWwnID0gJ3RleHQnO1xuXG4gIC8qKiBQcm92aWRlIHJlZ3VsYXIgZXhwcmVzc2lvbiBwYXR0ZXJuIGlmIGlucHV0IHR5cGUgaXMgc2V0IHRvIFwicGF0dGVyblwiICovXG4gIEBJbnB1dCgpIHBhdHRlcm46IHN0cmluZyB8IFJlZ0V4cCA9ICcnO1xuXG4gIC8qKiBQcm92aWRlIFwiZGVmYXVsdFwiIHZhbHVlIHRoYXQgd2lsbCBiZSB1c2VkIHdoZW4gY29udHJvbCB2YWx1ZSBpcyBjbGVhcmVkICovXG4gIEBJbnB1dCgpIGRlZmF1bHRWYWx1ZT86IHVua25vd247XG5cbiAgLyoqIG1hcmsgaW5wdXQgZmllbGQgYXMgcmVhZG9ubHkgKi9cbiAgQElucHV0KCkgcmVhZG9ubHkgPSBmYWxzZTtcblxuICAvKiogbWFyayBpbnB1dCBmaWVsZCBhcyByZWFkb25seSAqL1xuICBASW5wdXQoKSBpc1Bhc3N3b3JkRmllbGQgPSBmYWxzZTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBAVmlld0NoaWxkKCdpbnB1dCcpIGlucHV0PzogRWxlbWVudFJlZjtcblxuICAvKiogQGlnbm9yZSAqL1xuICBoaWRlUGFzc3dvcmQgPSB0cnVlO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIHByb3RlY3RlZCByZWFkb25seSBkZWZhdWx0RXJyb3JNZXNzYWdlczogR0VORVJJQ19DT0xMRUNUSU9OPHN0cmluZz4gPSB7XG4gICAgcGF0dGVybjogJ1Byb3ZpZGVkIHZhbHVlIGRvZXMgbm90IG1hdGNoIHBhdHRlcm4nLFxuICB9O1xuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIC8qKlxuICAgICAqIGlmIGRlZmF1bHQgdmFsdWUgaXMgcHJvdmlkZWQgLSBlbWl0IGl0IHdoZW4gaW5wdXQgaXMgY2xlYXJlZFxuICAgICAqL1xuICAgIGlmICh0aGlzLmRlZmF1bHRWYWx1ZSAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLnZhbHVlQ29udHJvbD8udmFsdWVDaGFuZ2VzLnN1YnNjcmliZSgodmFsdWUpID0+IHtcbiAgICAgICAgaWYgKCF2YWx1ZSAmJiB2YWx1ZSAhPT0gdGhpcy5kZWZhdWx0VmFsdWUpIHtcbiAgICAgICAgICB0aGlzLnZhbHVlQ29udHJvbC5zZXRWYWx1ZSh0aGlzLmRlZmF1bHRWYWx1ZSk7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICAgIH1cbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHNob3dIaWRlUGFzc3dvcmQoKTogdm9pZCB7XG4gICAgdGhpcy5oaWRlUGFzc3dvcmQgPSAhdGhpcy5oaWRlUGFzc3dvcmQ7XG4gIH1cbn1cbiIsIjxkaXYgW25nU3R5bGVdPVwieyBtaW5XaWR0aDogd2lkdGggfVwiPlxuICA8bWF0LWZvcm0tZmllbGRcbiAgICBbbmdDbGFzc109XCJ7XG4gICAgICAnaW1tZWRpYXRlLXZhbGlkYXRpb24nOiBpbW1lZGlhdGVWYWxpZGF0aW9uLFxuICAgICAgJ25vLWxlZnQtcGFkZGluZyc6IGNhbkNsZWFyLFxuICAgICAgcmVhZG9ubHk6IHJlYWRvbmx5LFxuICAgICAgJ3N1Y2Nlc3MtbGFiZWwnOiBjYW5TaG93U3VjY2VzcygpLFxuICAgICAgJ2Vycm9yLWxhYmVsJzogY2FuU2hvd0Vycm9yKCksXG4gICAgICAneC1zbWFsbCc6IHNtYWxsU2l6ZSxcbiAgICB9XCJcbiAgICBbbmdTdHlsZV09XCJ7IHdpZHRoOiB3aWR0aCB9XCJcbiAgPlxuICAgIEBpZiAoKGxhYmVsIHx8IHJlcXVpcmVkKSAmJiAhc21hbGxTaXplKSB7XG4gICAgICA8bWF0LWxhYmVsPnt7IGxhYmVsIH19PC9tYXQtbGFiZWw+XG4gICAgfVxuICAgIDxpbnB1dFxuICAgICAgI2lucHV0XG4gICAgICBtYXRJbnB1dFxuICAgICAgW21heGxlbmd0aF09XCJtYXhsZW5ndGhcIlxuICAgICAgW3JlYWRvbmx5XT1cInJlYWRvbmx5XCJcbiAgICAgIFtwYXR0ZXJuXT1cInBhdHRlcm5cIlxuICAgICAgW2lkXT1cImlkXCJcbiAgICAgIFt0eXBlXT1cImlzUGFzc3dvcmRGaWVsZCA/IChoaWRlUGFzc3dvcmQgPyAncGFzc3dvcmQnIDogJ3RleHQnKSA6IHR5cGVcIlxuICAgICAgW2Zvcm1Db250cm9sXT1cInZhbHVlQ29udHJvbFwiXG4gICAgICBbcmVxdWlyZWRdPVwicmVxdWlyZWRcIlxuICAgICAgW3BsYWNlaG9sZGVyXT1cInBsYWNlaG9sZGVyXCJcbiAgICAvPlxuXG4gICAgQGlmIChjYW5DbGVhcikge1xuICAgICAgPGJ1dHRvbiBtYXRUZXh0U3VmZml4IHR5cGU9XCJidXR0b25cIiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cImNsZWFyKCRldmVudClcIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+XG4gICAgICAgIDxhZHMtaWNvbiBjbGFzcz1cImNyb3NzLWljb25cIiBuYW1lPVwiY3Jvc3NcIiBbc2l6ZV09XCJzbWFsbFNpemUgPyAneHhzJyA6ICd4cydcIiBbdGhlbWVdPVwiJ2ljb25QcmltYXJ5J1wiIC8+XG4gICAgICA8L2J1dHRvbj5cbiAgICB9XG5cbiAgICBAaWYgKGlzUGFzc3dvcmRGaWVsZCAmJiAhcmVhZG9ubHkpIHtcbiAgICAgIDxidXR0b24gdHlwZT1cImJ1dHRvblwiIG1hdC1pY29uLWJ1dHRvbiBtYXRUZXh0U3VmZml4IChjbGljayk9XCJzaG93SGlkZVBhc3N3b3JkKClcIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+XG4gICAgICAgIDxhZHMtaWNvblxuICAgICAgICAgIGNsYXNzPVwidmlzaWJpbGl0eS1leWVcIlxuICAgICAgICAgIFtuYW1lXT1cImhpZGVQYXNzd29yZCA/ICd2aXNpYmlsaXR5X2V5ZV9ub25lJyA6ICd2aXNpYmlsaXR5X2V5ZSdcIlxuICAgICAgICAgIFtzaXplXT1cInNtYWxsU2l6ZSA/ICd4eHMnIDogJ3NtJ1wiXG4gICAgICAgICAgc3Ryb2tlPVwiaWNvblByaW1hcnlcIlxuICAgICAgICAgIGNvbG9yPVwiLS1jb2xvci1tZWRpdW1cIlxuICAgICAgICAvPlxuICAgICAgPC9idXR0b24+XG4gICAgfVxuICA8L21hdC1mb3JtLWZpZWxkPlxuICBAaWYgKHNob3dGb290ZXIpIHtcbiAgICA8ZGl2IGNsYXNzPVwiZm9vdGVyLWNvbnRhaW5lclwiPlxuICAgICAgQGlmIChjYW5TaG93RXJyb3IoKSkge1xuICAgICAgICA8YWRzLWVycm9yIFtlcnJvcl09XCJkaXNwbGF5Rmlyc3RFcnJvcigpXCIgW25nU3R5bGVdPVwieyB3aWR0aDogd2lkdGggfVwiIC8+XG4gICAgICB9IEBlbHNlIGlmIChjYW5TaG93U3VjY2VzcygpKSB7XG4gICAgICAgIDxhZHMtc3VjY2VzcyBbc3VjY2Vzc109XCJzdWNjZXNzTWVzc2FnZSFcIiBbbmdTdHlsZV09XCJ7IHdpZHRoOiB3aWR0aCB9XCIgLz5cbiAgICAgIH0gQGVsc2UgaWYgKGhpbnQpIHtcbiAgICAgICAgPGFkcy1oaW50IFtoaW50XT1cImhpbnRcIiBbY29udHJvbF09XCJ2YWx1ZUNvbnRyb2xcIiBbbmdTdHlsZV09XCJ7IHdpZHRoOiB3aWR0aCB9XCIgLz5cbiAgICAgIH1cbiAgICA8L2Rpdj5cbiAgfVxuPC9kaXY+XG5cbkBpZiAodG9vbHRpcCkge1xuICA8YWRzLWlucHV0LXRvb2x0aXAgW3Rvb2x0aXBdPVwidG9vbHRpcFwiIFtzbWFsbFNpemVdPVwic21hbGxTaXplXCIgLz5cbn1cbiJdfQ==