@ascentgl/ads-ui 0.0.1

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 (1302) hide show
  1. package/README.md +7 -0
  2. package/esm2022/ascentgl-ads-ui.mjs +5 -0
  3. package/esm2022/index.mjs +87 -0
  4. package/esm2022/lib/components/avatar/avatar.component.mjs +50 -0
  5. package/esm2022/lib/components/avatar/avatar.module.mjs +19 -0
  6. package/esm2022/lib/components/avatar/avatar.types.mjs +2 -0
  7. package/esm2022/lib/components/avatar/index.mjs +2 -0
  8. package/esm2022/lib/components/avatar/public-api.mjs +3 -0
  9. package/esm2022/lib/components/badge/index.mjs +2 -0
  10. package/esm2022/lib/components/badge/numeric-badge.component.mjs +35 -0
  11. package/esm2022/lib/components/badge/numeric-badge.module.mjs +19 -0
  12. package/esm2022/lib/components/badge/public-api.mjs +3 -0
  13. package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +62 -0
  14. package/esm2022/lib/components/breadcrumb/breadcrumb.module.mjs +21 -0
  15. package/esm2022/lib/components/breadcrumb/breadcrumb.type.mjs +2 -0
  16. package/esm2022/lib/components/breadcrumb/breadcrumb.visual-processor.mjs +151 -0
  17. package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
  18. package/esm2022/lib/components/breadcrumb/public-api.mjs +4 -0
  19. package/esm2022/lib/components/buttons/button/button.component.mjs +31 -0
  20. package/esm2022/lib/components/buttons/button/button.module.mjs +19 -0
  21. package/esm2022/lib/components/buttons/button/index.mjs +2 -0
  22. package/esm2022/lib/components/buttons/button/public-api.mjs +3 -0
  23. package/esm2022/lib/components/buttons/button-container/button-container.component.mjs +17 -0
  24. package/esm2022/lib/components/buttons/button-container/button-container.module.mjs +18 -0
  25. package/esm2022/lib/components/buttons/button-container/index.mjs +2 -0
  26. package/esm2022/lib/components/buttons/button-container/public-api.mjs +3 -0
  27. package/esm2022/lib/components/buttons/icon-button/icon-button.component.mjs +36 -0
  28. package/esm2022/lib/components/buttons/icon-button/icon-button.module.mjs +20 -0
  29. package/esm2022/lib/components/buttons/icon-button/index.mjs +2 -0
  30. package/esm2022/lib/components/buttons/icon-button/public-api.mjs +3 -0
  31. package/esm2022/lib/components/buttons/link-button/index.mjs +2 -0
  32. package/esm2022/lib/components/buttons/link-button/link-button.component.mjs +18 -0
  33. package/esm2022/lib/components/buttons/link-button/link-button.module.mjs +20 -0
  34. package/esm2022/lib/components/buttons/link-button/public-api.mjs +3 -0
  35. package/esm2022/lib/components/buttons/selection-button/index.mjs +2 -0
  36. package/esm2022/lib/components/buttons/selection-button/public-api.mjs +3 -0
  37. package/esm2022/lib/components/buttons/selection-button/selection-button.component.mjs +60 -0
  38. package/esm2022/lib/components/buttons/selection-button/selection-button.module.mjs +20 -0
  39. package/esm2022/lib/components/card/card.component.mjs +11 -0
  40. package/esm2022/lib/components/card/card.module.mjs +18 -0
  41. package/esm2022/lib/components/card/index.mjs +2 -0
  42. package/esm2022/lib/components/card/public-api.mjs +3 -0
  43. package/esm2022/lib/components/chip/chip.component.mjs +45 -0
  44. package/esm2022/lib/components/chip/chip.module.mjs +19 -0
  45. package/esm2022/lib/components/chip/chip.types.mjs +2 -0
  46. package/esm2022/lib/components/chip/index.mjs +2 -0
  47. package/esm2022/lib/components/chip/public-api.mjs +3 -0
  48. package/esm2022/lib/components/divider/divider.component.mjs +43 -0
  49. package/esm2022/lib/components/divider/divider.module.mjs +18 -0
  50. package/esm2022/lib/components/divider/index.mjs +2 -0
  51. package/esm2022/lib/components/divider/public-api.mjs +3 -0
  52. package/esm2022/lib/components/drag-and-drop-list/dom.element.mjs +62 -0
  53. package/esm2022/lib/components/drag-and-drop-list/drag-and-drop-list.component.mjs +349 -0
  54. package/esm2022/lib/components/drag-and-drop-list/drag-and-drop-list.enums.mjs +2 -0
  55. package/esm2022/lib/components/drag-and-drop-list/drag-and-drop-list.module.mjs +18 -0
  56. package/esm2022/lib/components/drag-and-drop-list/dragged.placeholder.mjs +63 -0
  57. package/esm2022/lib/components/drag-and-drop-list/index.mjs +2 -0
  58. package/esm2022/lib/components/drag-and-drop-list/public-api.mjs +3 -0
  59. package/esm2022/lib/components/error-page/error-page-code/error-page-code.component.mjs +14 -0
  60. package/esm2022/lib/components/error-page/error-page-code/error-page-code.module.mjs +18 -0
  61. package/esm2022/lib/components/error-page/error-page-code/index.mjs +2 -0
  62. package/esm2022/lib/components/error-page/error-page-code/public-api.mjs +3 -0
  63. package/esm2022/lib/components/error-page/error-page.component.mjs +110 -0
  64. package/esm2022/lib/components/error-page/error-page.module.mjs +25 -0
  65. package/esm2022/lib/components/error-page/error-page.types.mjs +7 -0
  66. package/esm2022/lib/components/error-page/index.mjs +2 -0
  67. package/esm2022/lib/components/error-page/public-api.mjs +4 -0
  68. package/esm2022/lib/components/expansion-panel/expansion-panel.component.mjs +33 -0
  69. package/esm2022/lib/components/expansion-panel/expansion-panel.module.mjs +36 -0
  70. package/esm2022/lib/components/expansion-panel/index.mjs +2 -0
  71. package/esm2022/lib/components/expansion-panel/public-api.mjs +3 -0
  72. package/esm2022/lib/components/footer/container/footer-container.component.mjs +11 -0
  73. package/esm2022/lib/components/footer/container/footer-container.module.mjs +16 -0
  74. package/esm2022/lib/components/footer/container/index.mjs +2 -0
  75. package/esm2022/lib/components/footer/container/public-api.mjs +3 -0
  76. package/esm2022/lib/components/footer/footer.component.mjs +35 -0
  77. package/esm2022/lib/components/footer/footer.component.types.mjs +2 -0
  78. package/esm2022/lib/components/footer/footer.module.mjs +18 -0
  79. package/esm2022/lib/components/footer/index.mjs +2 -0
  80. package/esm2022/lib/components/footer/public-api.mjs +4 -0
  81. package/esm2022/lib/components/form-fields/abstracts/abstract.base.component.mjs +155 -0
  82. package/esm2022/lib/components/form-fields/abstracts/abstract.dropdown.component.mjs +108 -0
  83. package/esm2022/lib/components/form-fields/abstracts/abstract.input.component.mjs +52 -0
  84. package/esm2022/lib/components/form-fields/area/index.mjs +2 -0
  85. package/esm2022/lib/components/form-fields/area/public-api.mjs +3 -0
  86. package/esm2022/lib/components/form-fields/area/textarea.component.mjs +37 -0
  87. package/esm2022/lib/components/form-fields/area/textarea.module.mjs +55 -0
  88. package/esm2022/lib/components/form-fields/common/dropdown-option-template.directive.mjs +17 -0
  89. package/esm2022/lib/components/form-fields/common/error/error.component.mjs +29 -0
  90. package/esm2022/lib/components/form-fields/common/hint/hint.component.mjs +36 -0
  91. package/esm2022/lib/components/form-fields/common/input.tooltip.component.mjs +38 -0
  92. package/esm2022/lib/components/form-fields/common/success/success.component.mjs +29 -0
  93. package/esm2022/lib/components/form-fields/datepickers/date-picker/datepicker.component.mjs +61 -0
  94. package/esm2022/lib/components/form-fields/datepickers/date-picker/datepicker.module.mjs +87 -0
  95. package/esm2022/lib/components/form-fields/datepickers/date-picker/index.mjs +2 -0
  96. package/esm2022/lib/components/form-fields/datepickers/date-picker/public-api.mjs +3 -0
  97. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/custom-datetime-format.mjs +36 -0
  98. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/custom-datetime.adapter.mjs +49 -0
  99. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetime-picker-format-directive.mjs +66 -0
  100. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetime-template.formatter.mjs +171 -0
  101. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.component.mjs +398 -0
  102. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.module.mjs +87 -0
  103. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/index.mjs +2 -0
  104. package/esm2022/lib/components/form-fields/datepickers/datetime-picker/public-api.mjs +3 -0
  105. package/esm2022/lib/components/form-fields/datepickers/time-picker/index.mjs +2 -0
  106. package/esm2022/lib/components/form-fields/datepickers/time-picker/public-api.mjs +3 -0
  107. package/esm2022/lib/components/form-fields/datepickers/time-picker/timepicker.component.mjs +77 -0
  108. package/esm2022/lib/components/form-fields/datepickers/time-picker/timepicker.module.mjs +90 -0
  109. package/esm2022/lib/components/form-fields/dropdowns/dropdown/dropdown.component.mjs +194 -0
  110. package/esm2022/lib/components/form-fields/dropdowns/dropdown/dropdown.module.mjs +71 -0
  111. package/esm2022/lib/components/form-fields/dropdowns/dropdown/index.mjs +2 -0
  112. package/esm2022/lib/components/form-fields/dropdowns/dropdown/public-api.mjs +3 -0
  113. package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/index.mjs +2 -0
  114. package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.component.mjs +103 -0
  115. package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.module.mjs +67 -0
  116. package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/public-api.mjs +3 -0
  117. package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/index.mjs +2 -0
  118. package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.component.mjs +67 -0
  119. package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.module.mjs +71 -0
  120. package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/public-api.mjs +3 -0
  121. package/esm2022/lib/components/form-fields/input/index.mjs +2 -0
  122. package/esm2022/lib/components/form-fields/input/input.component.mjs +72 -0
  123. package/esm2022/lib/components/form-fields/input/input.module.mjs +55 -0
  124. package/esm2022/lib/components/form-fields/input/public-api.mjs +3 -0
  125. package/esm2022/lib/components/form-fields/search-fields/search-dropdown/index.mjs +2 -0
  126. package/esm2022/lib/components/form-fields/search-fields/search-dropdown/public-api.mjs +3 -0
  127. package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown-highlighter.pipe.mjs +33 -0
  128. package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.mjs +683 -0
  129. package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.types.mjs +2 -0
  130. package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.module.mjs +75 -0
  131. package/esm2022/lib/components/form-fields/search-fields/search-input/index.mjs +2 -0
  132. package/esm2022/lib/components/form-fields/search-fields/search-input/public-api.mjs +3 -0
  133. package/esm2022/lib/components/form-fields/search-fields/search-input/search-input.component.mjs +43 -0
  134. package/esm2022/lib/components/form-fields/search-fields/search-input/search-input.module.mjs +67 -0
  135. package/esm2022/lib/components/form-fields/selection-fields/checkbox/checkbox.component.mjs +47 -0
  136. package/esm2022/lib/components/form-fields/selection-fields/checkbox/checkbox.module.mjs +39 -0
  137. package/esm2022/lib/components/form-fields/selection-fields/checkbox/index.mjs +2 -0
  138. package/esm2022/lib/components/form-fields/selection-fields/checkbox/public-api.mjs +3 -0
  139. package/esm2022/lib/components/form-fields/selection-fields/radio-button/index.mjs +2 -0
  140. package/esm2022/lib/components/form-fields/selection-fields/radio-button/public-api.mjs +3 -0
  141. package/esm2022/lib/components/form-fields/selection-fields/radio-button/radio-button.component.mjs +53 -0
  142. package/esm2022/lib/components/form-fields/selection-fields/radio-button/radio-button.module.mjs +55 -0
  143. package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/index.mjs +2 -0
  144. package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/public-api.mjs +3 -0
  145. package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.component.mjs +56 -0
  146. package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.module.mjs +39 -0
  147. package/esm2022/lib/components/form-fields/selection-fields/slider/index.mjs +2 -0
  148. package/esm2022/lib/components/form-fields/selection-fields/slider/public-api.mjs +3 -0
  149. package/esm2022/lib/components/form-fields/selection-fields/slider/slider.component.mjs +44 -0
  150. package/esm2022/lib/components/form-fields/selection-fields/slider/slider.module.mjs +43 -0
  151. package/esm2022/lib/components/general/color-palette/colors.enums.mjs +39 -0
  152. package/esm2022/lib/components/header/container/header-container.component.mjs +19 -0
  153. package/esm2022/lib/components/header/container/header-container.module.mjs +16 -0
  154. package/esm2022/lib/components/header/container/index.mjs +2 -0
  155. package/esm2022/lib/components/header/container/public-api.mjs +3 -0
  156. package/esm2022/lib/components/header/header.component.mjs +11 -0
  157. package/esm2022/lib/components/header/header.module.mjs +16 -0
  158. package/esm2022/lib/components/header/index.mjs +2 -0
  159. package/esm2022/lib/components/header/org-display-text/index.mjs +2 -0
  160. package/esm2022/lib/components/header/org-display-text/org-display-text.component.mjs +22 -0
  161. package/esm2022/lib/components/header/org-display-text/org-display-text.module.mjs +18 -0
  162. package/esm2022/lib/components/header/org-display-text/public-api.mjs +3 -0
  163. package/esm2022/lib/components/header/public-api.mjs +3 -0
  164. package/esm2022/lib/components/icon-hover/icon-hover.component.mjs +33 -0
  165. package/esm2022/lib/components/icon-hover/icon-hover.module.mjs +16 -0
  166. package/esm2022/lib/components/icon-hover/index.mjs +2 -0
  167. package/esm2022/lib/components/icon-hover/public-api.mjs +3 -0
  168. package/esm2022/lib/components/logo/ascent-logo/ascent-logo.component.mjs +29 -0
  169. package/esm2022/lib/components/logo/ascent-logo/ascent-logo.module.mjs +18 -0
  170. package/esm2022/lib/components/logo/ascent-logo/index.mjs +2 -0
  171. package/esm2022/lib/components/logo/ascent-logo/public-api.mjs +3 -0
  172. package/esm2022/lib/components/logo/primary-logo/index.mjs +2 -0
  173. package/esm2022/lib/components/logo/primary-logo/primary-logo.component.mjs +37 -0
  174. package/esm2022/lib/components/logo/primary-logo/primary-logo.module.mjs +18 -0
  175. package/esm2022/lib/components/logo/primary-logo/public-api.mjs +3 -0
  176. package/esm2022/lib/components/main-menu/index.mjs +2 -0
  177. package/esm2022/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.mjs +22 -0
  178. package/esm2022/lib/components/main-menu/main-menu.component.mjs +76 -0
  179. package/esm2022/lib/components/main-menu/main-menu.module.mjs +45 -0
  180. package/esm2022/lib/components/main-menu/main-menu.types.mjs +2 -0
  181. package/esm2022/lib/components/main-menu/public-api.mjs +4 -0
  182. package/esm2022/lib/components/modal/index.mjs +2 -0
  183. package/esm2022/lib/components/modal/modal.component.mjs +41 -0
  184. package/esm2022/lib/components/modal/modal.module.mjs +22 -0
  185. package/esm2022/lib/components/modal/public-api.mjs +3 -0
  186. package/esm2022/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.mjs +46 -0
  187. package/esm2022/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.mjs +18 -0
  188. package/esm2022/lib/components/navigation/dashboard-edit-icon/index.mjs +2 -0
  189. package/esm2022/lib/components/navigation/dashboard-edit-icon/public-api.mjs +3 -0
  190. package/esm2022/lib/components/navigation/index.mjs +2 -0
  191. package/esm2022/lib/components/navigation/navigation-actions-container/index.mjs +2 -0
  192. package/esm2022/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.mjs +20 -0
  193. package/esm2022/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.mjs +18 -0
  194. package/esm2022/lib/components/navigation/navigation-actions-container/public-api.mjs +3 -0
  195. package/esm2022/lib/components/navigation/navigation-collapse-handle/index.mjs +2 -0
  196. package/esm2022/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.mjs +48 -0
  197. package/esm2022/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.mjs +18 -0
  198. package/esm2022/lib/components/navigation/navigation-collapse-handle/public-api.mjs +3 -0
  199. package/esm2022/lib/components/navigation/navigation-header/index.mjs +2 -0
  200. package/esm2022/lib/components/navigation/navigation-header/navigation-header.component.mjs +25 -0
  201. package/esm2022/lib/components/navigation/navigation-header/navigation-header.module.mjs +16 -0
  202. package/esm2022/lib/components/navigation/navigation-header/public-api.mjs +3 -0
  203. package/esm2022/lib/components/navigation/navigation-item/index.mjs +2 -0
  204. package/esm2022/lib/components/navigation/navigation-item/navigation-item.component.mjs +74 -0
  205. package/esm2022/lib/components/navigation/navigation-item/navigation-item.module.mjs +21 -0
  206. package/esm2022/lib/components/navigation/navigation-item/public-api.mjs +3 -0
  207. package/esm2022/lib/components/navigation/navigation-items-container/index.mjs +2 -0
  208. package/esm2022/lib/components/navigation/navigation-items-container/navigation-items-container.component.mjs +11 -0
  209. package/esm2022/lib/components/navigation/navigation-items-container/navigation-items-container.module.mjs +16 -0
  210. package/esm2022/lib/components/navigation/navigation-items-container/public-api.mjs +3 -0
  211. package/esm2022/lib/components/navigation/navigation.component.mjs +25 -0
  212. package/esm2022/lib/components/navigation/navigation.module.mjs +16 -0
  213. package/esm2022/lib/components/navigation/public-api.mjs +3 -0
  214. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/index.mjs +2 -0
  215. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/public-api.mjs +3 -0
  216. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.mjs +11 -0
  217. package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.mjs +16 -0
  218. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/index.mjs +2 -0
  219. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/public-api.mjs +3 -0
  220. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.mjs +67 -0
  221. package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.mjs +21 -0
  222. package/esm2022/lib/components/navigation/sub-navigation-item/index.mjs +2 -0
  223. package/esm2022/lib/components/navigation/sub-navigation-item/public-api.mjs +3 -0
  224. package/esm2022/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.mjs +36 -0
  225. package/esm2022/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.mjs +18 -0
  226. package/esm2022/lib/components/navigation/sub-navigation-items-container/index.mjs +2 -0
  227. package/esm2022/lib/components/navigation/sub-navigation-items-container/public-api.mjs +3 -0
  228. package/esm2022/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.mjs +11 -0
  229. package/esm2022/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.mjs +16 -0
  230. package/esm2022/lib/components/pagination/container/index.mjs +2 -0
  231. package/esm2022/lib/components/pagination/container/pagination-container.component.mjs +11 -0
  232. package/esm2022/lib/components/pagination/container/pagination-container.module.mjs +16 -0
  233. package/esm2022/lib/components/pagination/container/public-api.mjs +3 -0
  234. package/esm2022/lib/components/pagination/index.mjs +2 -0
  235. package/esm2022/lib/components/pagination/pagination.component.mjs +85 -0
  236. package/esm2022/lib/components/pagination/pagination.module.mjs +19 -0
  237. package/esm2022/lib/components/pagination/public-api.mjs +3 -0
  238. package/esm2022/lib/components/progress-indicators/progress-bar/index.mjs +2 -0
  239. package/esm2022/lib/components/progress-indicators/progress-bar/progress-bar.component.mjs +78 -0
  240. package/esm2022/lib/components/progress-indicators/progress-bar/progress-bar.module.mjs +19 -0
  241. package/esm2022/lib/components/progress-indicators/progress-bar/public-api.mjs +3 -0
  242. package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/index.mjs +2 -0
  243. package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.mjs +79 -0
  244. package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.mjs +19 -0
  245. package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.mjs +8 -0
  246. package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/public-api.mjs +3 -0
  247. package/esm2022/lib/components/progress-indicators/progress-spinner/index.mjs +2 -0
  248. package/esm2022/lib/components/progress-indicators/progress-spinner/progress-spinner.component.mjs +95 -0
  249. package/esm2022/lib/components/progress-indicators/progress-spinner/progress-spinner.module.mjs +22 -0
  250. package/esm2022/lib/components/progress-indicators/progress-spinner/public-api.mjs +3 -0
  251. package/esm2022/lib/components/progress-stepper/index.mjs +2 -0
  252. package/esm2022/lib/components/progress-stepper/progress-step.types.mjs +2 -0
  253. package/esm2022/lib/components/progress-stepper/progress-stepper.component.mjs +106 -0
  254. package/esm2022/lib/components/progress-stepper/progress-stepper.module.mjs +27 -0
  255. package/esm2022/lib/components/progress-stepper/public-api.mjs +4 -0
  256. package/esm2022/lib/components/rating/index.mjs +2 -0
  257. package/esm2022/lib/components/rating/public-api.mjs +3 -0
  258. package/esm2022/lib/components/rating/rating.component.mjs +69 -0
  259. package/esm2022/lib/components/rating/rating.module.mjs +19 -0
  260. package/esm2022/lib/components/shell-layout/index.mjs +2 -0
  261. package/esm2022/lib/components/shell-layout/public-api.mjs +3 -0
  262. package/esm2022/lib/components/shell-layout/shell-layout.component.mjs +25 -0
  263. package/esm2022/lib/components/shell-layout/shell-layout.module.mjs +18 -0
  264. package/esm2022/lib/components/snackbars/inline-snackbar/index.mjs +2 -0
  265. package/esm2022/lib/components/snackbars/inline-snackbar/inline-snackbar.component.mjs +63 -0
  266. package/esm2022/lib/components/snackbars/inline-snackbar/inline-snackbar.module.mjs +19 -0
  267. package/esm2022/lib/components/snackbars/inline-snackbar/public-api.mjs +3 -0
  268. package/esm2022/lib/components/snackbars/snackbar/index.mjs +2 -0
  269. package/esm2022/lib/components/snackbars/snackbar/public-api.mjs +3 -0
  270. package/esm2022/lib/components/snackbars/snackbar/snackbar.component.mjs +30 -0
  271. package/esm2022/lib/components/snackbars/snackbar/snackbar.module.mjs +21 -0
  272. package/esm2022/lib/components/splash-page/index.mjs +2 -0
  273. package/esm2022/lib/components/splash-page/public-api.mjs +3 -0
  274. package/esm2022/lib/components/splash-page/splash-page.component.mjs +20 -0
  275. package/esm2022/lib/components/splash-page/splash-page.module.mjs +18 -0
  276. package/esm2022/lib/components/stepper-condensed/condensed-helpers.mjs +97 -0
  277. package/esm2022/lib/components/stepper-condensed/condensed-step.type.mjs +12 -0
  278. package/esm2022/lib/components/stepper-condensed/index.mjs +2 -0
  279. package/esm2022/lib/components/stepper-condensed/public-api.mjs +5 -0
  280. package/esm2022/lib/components/stepper-condensed/stepper-condensed.component.mjs +149 -0
  281. package/esm2022/lib/components/stepper-condensed/stepper-condensed.module.mjs +28 -0
  282. package/esm2022/lib/components/submenu/submenu-container/index.mjs +2 -0
  283. package/esm2022/lib/components/submenu/submenu-container/public-api.mjs +3 -0
  284. package/esm2022/lib/components/submenu/submenu-container/submenu-container.component.mjs +22 -0
  285. package/esm2022/lib/components/submenu/submenu-container/submenu-container.module.mjs +18 -0
  286. package/esm2022/lib/components/submenu/submenu-heading/index.mjs +2 -0
  287. package/esm2022/lib/components/submenu/submenu-heading/public-api.mjs +3 -0
  288. package/esm2022/lib/components/submenu/submenu-heading/submenu-heading.component.mjs +17 -0
  289. package/esm2022/lib/components/submenu/submenu-heading/submenu-heading.module.mjs +18 -0
  290. package/esm2022/lib/components/submenu/submenu-item/index.mjs +2 -0
  291. package/esm2022/lib/components/submenu/submenu-item/public-api.mjs +3 -0
  292. package/esm2022/lib/components/submenu/submenu-item/submenu-item.component.mjs +28 -0
  293. package/esm2022/lib/components/submenu/submenu-item/submenu-item.module.mjs +19 -0
  294. package/esm2022/lib/components/submenu/submenu-secondary-item/index.mjs +2 -0
  295. package/esm2022/lib/components/submenu/submenu-secondary-item/public-api.mjs +3 -0
  296. package/esm2022/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.mjs +33 -0
  297. package/esm2022/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.mjs +19 -0
  298. package/esm2022/lib/components/table/index.mjs +2 -0
  299. package/esm2022/lib/components/table/public-api.mjs +3 -0
  300. package/esm2022/lib/components/table/table.component.mjs +81 -0
  301. package/esm2022/lib/components/table/table.module.mjs +20 -0
  302. package/esm2022/lib/components/tags/create-tag/create-tag.component.mjs +218 -0
  303. package/esm2022/lib/components/tags/create-tag/create-tag.module.mjs +43 -0
  304. package/esm2022/lib/components/tags/create-tag/index.mjs +2 -0
  305. package/esm2022/lib/components/tags/create-tag/public-api.mjs +3 -0
  306. package/esm2022/lib/components/tags/tag/index.mjs +2 -0
  307. package/esm2022/lib/components/tags/tag/public-api.mjs +4 -0
  308. package/esm2022/lib/components/tags/tag/tag.component.mjs +68 -0
  309. package/esm2022/lib/components/tags/tag/tag.module.mjs +19 -0
  310. package/esm2022/lib/components/tags/tag/tag.types.mjs +2 -0
  311. package/esm2022/lib/components/tags/tag-container/index.mjs +2 -0
  312. package/esm2022/lib/components/tags/tag-container/public-api.mjs +3 -0
  313. package/esm2022/lib/components/tags/tag-container/tag-container.component.mjs +11 -0
  314. package/esm2022/lib/components/tags/tag-container/tag-container.module.mjs +18 -0
  315. package/esm2022/lib/components/timeline-stepper/index.mjs +2 -0
  316. package/esm2022/lib/components/timeline-stepper/public-api.mjs +5 -0
  317. package/esm2022/lib/components/timeline-stepper/timeline-helpers.mjs +97 -0
  318. package/esm2022/lib/components/timeline-stepper/timeline-step.type.mjs +12 -0
  319. package/esm2022/lib/components/timeline-stepper/timeline-stepper.component.mjs +148 -0
  320. package/esm2022/lib/components/timeline-stepper/timeline-stepper.module.mjs +28 -0
  321. package/esm2022/lib/components/vertical-stepper/index.mjs +2 -0
  322. package/esm2022/lib/components/vertical-stepper/public-api.mjs +5 -0
  323. package/esm2022/lib/components/vertical-stepper/vertical-helpers.mjs +98 -0
  324. package/esm2022/lib/components/vertical-stepper/vertical-step.type.mjs +12 -0
  325. package/esm2022/lib/components/vertical-stepper/vertical-stepper.component.mjs +125 -0
  326. package/esm2022/lib/components/vertical-stepper/vertical-stepper.module.mjs +28 -0
  327. package/esm2022/lib/components/widgets/widget-actions/index.mjs +2 -0
  328. package/esm2022/lib/components/widgets/widget-actions/public-api.mjs +3 -0
  329. package/esm2022/lib/components/widgets/widget-actions/widget-actions.component.mjs +11 -0
  330. package/esm2022/lib/components/widgets/widget-actions/widget-actions.module.mjs +16 -0
  331. package/esm2022/lib/components/widgets/widget-bar/index.mjs +2 -0
  332. package/esm2022/lib/components/widgets/widget-bar/public-api.mjs +3 -0
  333. package/esm2022/lib/components/widgets/widget-bar/widget-bar.component.mjs +20 -0
  334. package/esm2022/lib/components/widgets/widget-bar/widget-bar.module.mjs +18 -0
  335. package/esm2022/lib/components/widgets/widget-container/index.mjs +2 -0
  336. package/esm2022/lib/components/widgets/widget-container/public-api.mjs +3 -0
  337. package/esm2022/lib/components/widgets/widget-container/widget-container.component.mjs +11 -0
  338. package/esm2022/lib/components/widgets/widget-container/widget-container.module.mjs +18 -0
  339. package/esm2022/lib/components/widgets/widget-footer/index.mjs +2 -0
  340. package/esm2022/lib/components/widgets/widget-footer/public-api.mjs +3 -0
  341. package/esm2022/lib/components/widgets/widget-footer/widget-footer.component.mjs +11 -0
  342. package/esm2022/lib/components/widgets/widget-footer/widget-footer.module.mjs +18 -0
  343. package/esm2022/lib/components/widgets/widget-header/index.mjs +2 -0
  344. package/esm2022/lib/components/widgets/widget-header/public-api.mjs +3 -0
  345. package/esm2022/lib/components/widgets/widget-header/widget-header.component.mjs +11 -0
  346. package/esm2022/lib/components/widgets/widget-header/widget-header.module.mjs +18 -0
  347. package/esm2022/lib/components/widgets/widget-preview/index.mjs +2 -0
  348. package/esm2022/lib/components/widgets/widget-preview/public-api.mjs +3 -0
  349. package/esm2022/lib/components/widgets/widget-preview/widget-preview.component.mjs +25 -0
  350. package/esm2022/lib/components/widgets/widget-preview/widget-preview.module.mjs +18 -0
  351. package/esm2022/lib/components/widgets/widget-thumbnail/index.mjs +2 -0
  352. package/esm2022/lib/components/widgets/widget-thumbnail/public-api.mjs +3 -0
  353. package/esm2022/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.mjs +100 -0
  354. package/esm2022/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.mjs +20 -0
  355. package/esm2022/lib/components/widgets/widget-thumbnail-container/index.mjs +2 -0
  356. package/esm2022/lib/components/widgets/widget-thumbnail-container/public-api.mjs +3 -0
  357. package/esm2022/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.mjs +12 -0
  358. package/esm2022/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.mjs +18 -0
  359. package/esm2022/lib/components/widgets/widget-title/index.mjs +2 -0
  360. package/esm2022/lib/components/widgets/widget-title/public-api.mjs +3 -0
  361. package/esm2022/lib/components/widgets/widget-title/widget-title.component.mjs +22 -0
  362. package/esm2022/lib/components/widgets/widget-title/widget-title.module.mjs +18 -0
  363. package/esm2022/lib/components/wizard-stepper/index.mjs +2 -0
  364. package/esm2022/lib/components/wizard-stepper/public-api.mjs +4 -0
  365. package/esm2022/lib/components/wizard-stepper/wizard-stepper.component.mjs +28 -0
  366. package/esm2022/lib/components/wizard-stepper/wizard-stepper.module.mjs +20 -0
  367. package/esm2022/lib/components/wizard-stepper/wizard-stepper.types.mjs +2 -0
  368. package/esm2022/lib/services/viewport/viewport.service.interface.mjs +2 -0
  369. package/esm2022/lib/services/viewport/viewport.service.mjs +32 -0
  370. package/esm2022/lib/services/window/window.service.interface.mjs +2 -0
  371. package/esm2022/lib/services/window/window.service.mjs +29 -0
  372. package/esm2022/src/lib/components/avatar/ascentgl-ads-ui-src-lib-components-avatar.mjs +5 -0
  373. package/esm2022/src/lib/components/avatar/avatar.component.mjs +50 -0
  374. package/esm2022/src/lib/components/avatar/avatar.module.mjs +19 -0
  375. package/esm2022/src/lib/components/avatar/avatar.types.mjs +2 -0
  376. package/esm2022/src/lib/components/avatar/public-api.mjs +3 -0
  377. package/esm2022/src/lib/components/buttons/button-container/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs +5 -0
  378. package/esm2022/src/lib/components/buttons/button-container/button-container.component.mjs +17 -0
  379. package/esm2022/src/lib/components/buttons/button-container/button-container.module.mjs +18 -0
  380. package/esm2022/src/lib/components/buttons/button-container/public-api.mjs +3 -0
  381. package/esm2022/src/lib/components/buttons/selection-button/ascentgl-ads-ui-src-lib-components-buttons-selection-button.mjs +5 -0
  382. package/esm2022/src/lib/components/buttons/selection-button/public-api.mjs +3 -0
  383. package/esm2022/src/lib/components/buttons/selection-button/selection-button.component.mjs +60 -0
  384. package/esm2022/src/lib/components/buttons/selection-button/selection-button.module.mjs +20 -0
  385. package/esm2022/src/lib/components/card/ascentgl-ads-ui-src-lib-components-card.mjs +5 -0
  386. package/esm2022/src/lib/components/card/card.component.mjs +11 -0
  387. package/esm2022/src/lib/components/card/card.module.mjs +18 -0
  388. package/esm2022/src/lib/components/card/public-api.mjs +3 -0
  389. package/esm2022/src/lib/components/divider/ascentgl-ads-ui-src-lib-components-divider.mjs +5 -0
  390. package/esm2022/src/lib/components/divider/divider.component.mjs +43 -0
  391. package/esm2022/src/lib/components/divider/divider.module.mjs +18 -0
  392. package/esm2022/src/lib/components/divider/public-api.mjs +3 -0
  393. package/esm2022/src/lib/components/drag-and-drop-list/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +5 -0
  394. package/esm2022/src/lib/components/drag-and-drop-list/dom.element.mjs +62 -0
  395. package/esm2022/src/lib/components/drag-and-drop-list/drag-and-drop-list.component.mjs +349 -0
  396. package/esm2022/src/lib/components/drag-and-drop-list/drag-and-drop-list.enums.mjs +2 -0
  397. package/esm2022/src/lib/components/drag-and-drop-list/drag-and-drop-list.module.mjs +18 -0
  398. package/esm2022/src/lib/components/drag-and-drop-list/dragged.placeholder.mjs +63 -0
  399. package/esm2022/src/lib/components/drag-and-drop-list/public-api.mjs +3 -0
  400. package/esm2022/src/lib/components/error-page/error-page-code/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs +5 -0
  401. package/esm2022/src/lib/components/error-page/error-page-code/error-page-code.component.mjs +14 -0
  402. package/esm2022/src/lib/components/error-page/error-page-code/error-page-code.module.mjs +18 -0
  403. package/esm2022/src/lib/components/error-page/error-page-code/public-api.mjs +3 -0
  404. package/esm2022/src/lib/components/footer/ascentgl-ads-ui-src-lib-components-footer.mjs +5 -0
  405. package/esm2022/src/lib/components/footer/container/ascentgl-ads-ui-src-lib-components-footer-container.mjs +5 -0
  406. package/esm2022/src/lib/components/footer/container/footer-container.component.mjs +11 -0
  407. package/esm2022/src/lib/components/footer/container/footer-container.module.mjs +16 -0
  408. package/esm2022/src/lib/components/footer/container/public-api.mjs +3 -0
  409. package/esm2022/src/lib/components/footer/footer.component.mjs +35 -0
  410. package/esm2022/src/lib/components/footer/footer.component.types.mjs +2 -0
  411. package/esm2022/src/lib/components/footer/footer.module.mjs +18 -0
  412. package/esm2022/src/lib/components/footer/public-api.mjs +4 -0
  413. package/esm2022/src/lib/components/header/ascentgl-ads-ui-src-lib-components-header.mjs +5 -0
  414. package/esm2022/src/lib/components/header/container/ascentgl-ads-ui-src-lib-components-header-container.mjs +5 -0
  415. package/esm2022/src/lib/components/header/container/header-container.component.mjs +19 -0
  416. package/esm2022/src/lib/components/header/container/header-container.module.mjs +16 -0
  417. package/esm2022/src/lib/components/header/container/public-api.mjs +3 -0
  418. package/esm2022/src/lib/components/header/header.component.mjs +11 -0
  419. package/esm2022/src/lib/components/header/header.module.mjs +16 -0
  420. package/esm2022/src/lib/components/header/org-display-text/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs +5 -0
  421. package/esm2022/src/lib/components/header/org-display-text/org-display-text.component.mjs +22 -0
  422. package/esm2022/src/lib/components/header/org-display-text/org-display-text.module.mjs +18 -0
  423. package/esm2022/src/lib/components/header/org-display-text/public-api.mjs +3 -0
  424. package/esm2022/src/lib/components/header/public-api.mjs +3 -0
  425. package/esm2022/src/lib/components/logo/primary-logo/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +5 -0
  426. package/esm2022/src/lib/components/logo/primary-logo/primary-logo.component.mjs +37 -0
  427. package/esm2022/src/lib/components/logo/primary-logo/primary-logo.module.mjs +18 -0
  428. package/esm2022/src/lib/components/logo/primary-logo/public-api.mjs +3 -0
  429. package/esm2022/src/lib/components/main-menu/ascentgl-ads-ui-src-lib-components-main-menu.mjs +5 -0
  430. package/esm2022/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.mjs +22 -0
  431. package/esm2022/src/lib/components/main-menu/main-menu.component.mjs +76 -0
  432. package/esm2022/src/lib/components/main-menu/main-menu.module.mjs +45 -0
  433. package/esm2022/src/lib/components/main-menu/main-menu.types.mjs +2 -0
  434. package/esm2022/src/lib/components/main-menu/public-api.mjs +4 -0
  435. package/esm2022/src/lib/components/navigation/ascentgl-ads-ui-src-lib-components-navigation.mjs +5 -0
  436. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs +5 -0
  437. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.mjs +46 -0
  438. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.mjs +18 -0
  439. package/esm2022/src/lib/components/navigation/dashboard-edit-icon/public-api.mjs +3 -0
  440. package/esm2022/src/lib/components/navigation/navigation-actions-container/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs +5 -0
  441. package/esm2022/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.mjs +20 -0
  442. package/esm2022/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.mjs +18 -0
  443. package/esm2022/src/lib/components/navigation/navigation-actions-container/public-api.mjs +3 -0
  444. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs +5 -0
  445. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.mjs +48 -0
  446. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.mjs +18 -0
  447. package/esm2022/src/lib/components/navigation/navigation-collapse-handle/public-api.mjs +3 -0
  448. package/esm2022/src/lib/components/navigation/navigation-header/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs +5 -0
  449. package/esm2022/src/lib/components/navigation/navigation-header/navigation-header.component.mjs +25 -0
  450. package/esm2022/src/lib/components/navigation/navigation-header/navigation-header.module.mjs +16 -0
  451. package/esm2022/src/lib/components/navigation/navigation-header/public-api.mjs +3 -0
  452. package/esm2022/src/lib/components/navigation/navigation-item/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs +5 -0
  453. package/esm2022/src/lib/components/navigation/navigation-item/navigation-item.component.mjs +74 -0
  454. package/esm2022/src/lib/components/navigation/navigation-item/navigation-item.module.mjs +21 -0
  455. package/esm2022/src/lib/components/navigation/navigation-item/public-api.mjs +3 -0
  456. package/esm2022/src/lib/components/navigation/navigation-items-container/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs +5 -0
  457. package/esm2022/src/lib/components/navigation/navigation-items-container/navigation-items-container.component.mjs +11 -0
  458. package/esm2022/src/lib/components/navigation/navigation-items-container/navigation-items-container.module.mjs +16 -0
  459. package/esm2022/src/lib/components/navigation/navigation-items-container/public-api.mjs +3 -0
  460. package/esm2022/src/lib/components/navigation/navigation.component.mjs +25 -0
  461. package/esm2022/src/lib/components/navigation/navigation.module.mjs +16 -0
  462. package/esm2022/src/lib/components/navigation/public-api.mjs +3 -0
  463. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs +5 -0
  464. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/public-api.mjs +3 -0
  465. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.mjs +11 -0
  466. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.mjs +16 -0
  467. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs +5 -0
  468. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/public-api.mjs +3 -0
  469. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.mjs +67 -0
  470. package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.mjs +21 -0
  471. package/esm2022/src/lib/components/navigation/sub-navigation-item/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs +5 -0
  472. package/esm2022/src/lib/components/navigation/sub-navigation-item/public-api.mjs +3 -0
  473. package/esm2022/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.mjs +36 -0
  474. package/esm2022/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.mjs +18 -0
  475. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs +5 -0
  476. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/public-api.mjs +3 -0
  477. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.mjs +11 -0
  478. package/esm2022/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.mjs +16 -0
  479. package/esm2022/src/lib/components/pagination/ascentgl-ads-ui-src-lib-components-pagination.mjs +5 -0
  480. package/esm2022/src/lib/components/pagination/container/ascentgl-ads-ui-src-lib-components-pagination-container.mjs +5 -0
  481. package/esm2022/src/lib/components/pagination/container/pagination-container.component.mjs +11 -0
  482. package/esm2022/src/lib/components/pagination/container/pagination-container.module.mjs +16 -0
  483. package/esm2022/src/lib/components/pagination/container/public-api.mjs +3 -0
  484. package/esm2022/src/lib/components/pagination/pagination.component.mjs +85 -0
  485. package/esm2022/src/lib/components/pagination/pagination.module.mjs +19 -0
  486. package/esm2022/src/lib/components/pagination/public-api.mjs +3 -0
  487. package/esm2022/src/lib/components/progress-indicators/progress-bar/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs +5 -0
  488. package/esm2022/src/lib/components/progress-indicators/progress-bar/progress-bar.component.mjs +78 -0
  489. package/esm2022/src/lib/components/progress-indicators/progress-bar/progress-bar.module.mjs +19 -0
  490. package/esm2022/src/lib/components/progress-indicators/progress-bar/public-api.mjs +3 -0
  491. package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs +5 -0
  492. package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.mjs +79 -0
  493. package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.mjs +19 -0
  494. package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.mjs +8 -0
  495. package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/public-api.mjs +3 -0
  496. package/esm2022/src/lib/components/progress-indicators/progress-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs +5 -0
  497. package/esm2022/src/lib/components/progress-indicators/progress-spinner/progress-spinner.component.mjs +95 -0
  498. package/esm2022/src/lib/components/progress-indicators/progress-spinner/progress-spinner.module.mjs +22 -0
  499. package/esm2022/src/lib/components/progress-indicators/progress-spinner/public-api.mjs +3 -0
  500. package/esm2022/src/lib/components/progress-stepper/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs +5 -0
  501. package/esm2022/src/lib/components/progress-stepper/progress-step.types.mjs +2 -0
  502. package/esm2022/src/lib/components/progress-stepper/progress-stepper.component.mjs +106 -0
  503. package/esm2022/src/lib/components/progress-stepper/progress-stepper.module.mjs +27 -0
  504. package/esm2022/src/lib/components/progress-stepper/public-api.mjs +4 -0
  505. package/esm2022/src/lib/components/rating/ascentgl-ads-ui-src-lib-components-rating.mjs +5 -0
  506. package/esm2022/src/lib/components/rating/public-api.mjs +3 -0
  507. package/esm2022/src/lib/components/rating/rating.component.mjs +69 -0
  508. package/esm2022/src/lib/components/rating/rating.module.mjs +19 -0
  509. package/esm2022/src/lib/components/shell-layout/ascentgl-ads-ui-src-lib-components-shell-layout.mjs +5 -0
  510. package/esm2022/src/lib/components/shell-layout/public-api.mjs +3 -0
  511. package/esm2022/src/lib/components/shell-layout/shell-layout.component.mjs +25 -0
  512. package/esm2022/src/lib/components/shell-layout/shell-layout.module.mjs +18 -0
  513. package/esm2022/src/lib/components/splash-page/ascentgl-ads-ui-src-lib-components-splash-page.mjs +5 -0
  514. package/esm2022/src/lib/components/splash-page/public-api.mjs +3 -0
  515. package/esm2022/src/lib/components/splash-page/splash-page.component.mjs +20 -0
  516. package/esm2022/src/lib/components/splash-page/splash-page.module.mjs +18 -0
  517. package/esm2022/src/lib/components/submenu/submenu-container/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs +5 -0
  518. package/esm2022/src/lib/components/submenu/submenu-container/public-api.mjs +3 -0
  519. package/esm2022/src/lib/components/submenu/submenu-container/submenu-container.component.mjs +22 -0
  520. package/esm2022/src/lib/components/submenu/submenu-container/submenu-container.module.mjs +18 -0
  521. package/esm2022/src/lib/components/submenu/submenu-heading/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs +5 -0
  522. package/esm2022/src/lib/components/submenu/submenu-heading/public-api.mjs +3 -0
  523. package/esm2022/src/lib/components/submenu/submenu-heading/submenu-heading.component.mjs +17 -0
  524. package/esm2022/src/lib/components/submenu/submenu-heading/submenu-heading.module.mjs +18 -0
  525. package/esm2022/src/lib/components/submenu/submenu-item/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs +5 -0
  526. package/esm2022/src/lib/components/submenu/submenu-item/public-api.mjs +3 -0
  527. package/esm2022/src/lib/components/submenu/submenu-item/submenu-item.component.mjs +28 -0
  528. package/esm2022/src/lib/components/submenu/submenu-item/submenu-item.module.mjs +19 -0
  529. package/esm2022/src/lib/components/submenu/submenu-secondary-item/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs +5 -0
  530. package/esm2022/src/lib/components/submenu/submenu-secondary-item/public-api.mjs +3 -0
  531. package/esm2022/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.mjs +33 -0
  532. package/esm2022/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.mjs +19 -0
  533. package/esm2022/src/lib/components/tags/tag-container/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +5 -0
  534. package/esm2022/src/lib/components/tags/tag-container/public-api.mjs +3 -0
  535. package/esm2022/src/lib/components/tags/tag-container/tag-container.component.mjs +11 -0
  536. package/esm2022/src/lib/components/tags/tag-container/tag-container.module.mjs +18 -0
  537. package/esm2022/src/lib/components/timeline-stepper/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs +5 -0
  538. package/esm2022/src/lib/components/timeline-stepper/public-api.mjs +5 -0
  539. package/esm2022/src/lib/components/timeline-stepper/timeline-helpers.mjs +97 -0
  540. package/esm2022/src/lib/components/timeline-stepper/timeline-step.type.mjs +12 -0
  541. package/esm2022/src/lib/components/timeline-stepper/timeline-stepper.component.mjs +148 -0
  542. package/esm2022/src/lib/components/timeline-stepper/timeline-stepper.module.mjs +28 -0
  543. package/esm2022/src/lib/components/vertical-stepper/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs +5 -0
  544. package/esm2022/src/lib/components/vertical-stepper/public-api.mjs +5 -0
  545. package/esm2022/src/lib/components/vertical-stepper/vertical-helpers.mjs +98 -0
  546. package/esm2022/src/lib/components/vertical-stepper/vertical-step.type.mjs +12 -0
  547. package/esm2022/src/lib/components/vertical-stepper/vertical-stepper.component.mjs +125 -0
  548. package/esm2022/src/lib/components/vertical-stepper/vertical-stepper.module.mjs +28 -0
  549. package/esm2022/src/lib/components/widgets/widget-actions/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs +5 -0
  550. package/esm2022/src/lib/components/widgets/widget-actions/public-api.mjs +3 -0
  551. package/esm2022/src/lib/components/widgets/widget-actions/widget-actions.component.mjs +11 -0
  552. package/esm2022/src/lib/components/widgets/widget-actions/widget-actions.module.mjs +16 -0
  553. package/esm2022/src/lib/components/widgets/widget-bar/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs +5 -0
  554. package/esm2022/src/lib/components/widgets/widget-bar/public-api.mjs +3 -0
  555. package/esm2022/src/lib/components/widgets/widget-bar/widget-bar.component.mjs +20 -0
  556. package/esm2022/src/lib/components/widgets/widget-bar/widget-bar.module.mjs +18 -0
  557. package/esm2022/src/lib/components/widgets/widget-container/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs +5 -0
  558. package/esm2022/src/lib/components/widgets/widget-container/public-api.mjs +3 -0
  559. package/esm2022/src/lib/components/widgets/widget-container/widget-container.component.mjs +11 -0
  560. package/esm2022/src/lib/components/widgets/widget-container/widget-container.module.mjs +18 -0
  561. package/esm2022/src/lib/components/widgets/widget-footer/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs +5 -0
  562. package/esm2022/src/lib/components/widgets/widget-footer/public-api.mjs +3 -0
  563. package/esm2022/src/lib/components/widgets/widget-footer/widget-footer.component.mjs +11 -0
  564. package/esm2022/src/lib/components/widgets/widget-footer/widget-footer.module.mjs +18 -0
  565. package/esm2022/src/lib/components/widgets/widget-header/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs +5 -0
  566. package/esm2022/src/lib/components/widgets/widget-header/public-api.mjs +3 -0
  567. package/esm2022/src/lib/components/widgets/widget-header/widget-header.component.mjs +11 -0
  568. package/esm2022/src/lib/components/widgets/widget-header/widget-header.module.mjs +18 -0
  569. package/esm2022/src/lib/components/widgets/widget-preview/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs +5 -0
  570. package/esm2022/src/lib/components/widgets/widget-preview/public-api.mjs +3 -0
  571. package/esm2022/src/lib/components/widgets/widget-preview/widget-preview.component.mjs +25 -0
  572. package/esm2022/src/lib/components/widgets/widget-preview/widget-preview.module.mjs +18 -0
  573. package/esm2022/src/lib/components/widgets/widget-thumbnail/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs +5 -0
  574. package/esm2022/src/lib/components/widgets/widget-thumbnail/public-api.mjs +3 -0
  575. package/esm2022/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.mjs +100 -0
  576. package/esm2022/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.mjs +20 -0
  577. package/esm2022/src/lib/components/widgets/widget-thumbnail-container/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs +5 -0
  578. package/esm2022/src/lib/components/widgets/widget-thumbnail-container/public-api.mjs +3 -0
  579. package/esm2022/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.mjs +12 -0
  580. package/esm2022/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.mjs +18 -0
  581. package/esm2022/src/lib/components/widgets/widget-title/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs +5 -0
  582. package/esm2022/src/lib/components/widgets/widget-title/public-api.mjs +3 -0
  583. package/esm2022/src/lib/components/widgets/widget-title/widget-title.component.mjs +22 -0
  584. package/esm2022/src/lib/components/widgets/widget-title/widget-title.module.mjs +18 -0
  585. package/esm2022/src/lib/components/wizard-stepper/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs +5 -0
  586. package/esm2022/src/lib/components/wizard-stepper/public-api.mjs +4 -0
  587. package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.component.mjs +28 -0
  588. package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.module.mjs +20 -0
  589. package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.types.mjs +2 -0
  590. package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs +72 -0
  591. package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs.map +1 -0
  592. package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs +39 -0
  593. package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs.map +1 -0
  594. package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-selection-button.mjs +83 -0
  595. package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-selection-button.mjs.map +1 -0
  596. package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs +33 -0
  597. package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs.map +1 -0
  598. package/fesm2022/ascentgl-ads-ui-src-lib-components-divider.mjs +65 -0
  599. package/fesm2022/ascentgl-ads-ui-src-lib-components-divider.mjs.map +1 -0
  600. package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +494 -0
  601. package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs.map +1 -0
  602. package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs +36 -0
  603. package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs.map +1 -0
  604. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs +31 -0
  605. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs.map +1 -0
  606. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs +57 -0
  607. package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs.map +1 -0
  608. package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs +39 -0
  609. package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs.map +1 -0
  610. package/fesm2022/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs +44 -0
  611. package/fesm2022/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs.map +1 -0
  612. package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs +31 -0
  613. package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs.map +1 -0
  614. package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +59 -0
  615. package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs.map +1 -0
  616. package/fesm2022/ascentgl-ads-ui-src-lib-components-main-menu.mjs +135 -0
  617. package/fesm2022/ascentgl-ads-ui-src-lib-components-main-menu.mjs.map +1 -0
  618. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs +67 -0
  619. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs.map +1 -0
  620. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs +42 -0
  621. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs.map +1 -0
  622. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs +69 -0
  623. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs.map +1 -0
  624. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs +45 -0
  625. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs.map +1 -0
  626. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs +98 -0
  627. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs.map +1 -0
  628. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs +31 -0
  629. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs.map +1 -0
  630. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs +31 -0
  631. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs.map +1 -0
  632. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs +91 -0
  633. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs.map +1 -0
  634. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs +58 -0
  635. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs.map +1 -0
  636. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs +31 -0
  637. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs.map +1 -0
  638. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation.mjs +45 -0
  639. package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation.mjs.map +1 -0
  640. package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination-container.mjs +31 -0
  641. package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination-container.mjs.map +1 -0
  642. package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination.mjs +107 -0
  643. package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination.mjs.map +1 -0
  644. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs +100 -0
  645. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs.map +1 -0
  646. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs +109 -0
  647. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs.map +1 -0
  648. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs +120 -0
  649. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs.map +1 -0
  650. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs +136 -0
  651. package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs.map +1 -0
  652. package/fesm2022/ascentgl-ads-ui-src-lib-components-rating.mjs +91 -0
  653. package/fesm2022/ascentgl-ads-ui-src-lib-components-rating.mjs.map +1 -0
  654. package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs +47 -0
  655. package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs.map +1 -0
  656. package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs +42 -0
  657. package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs.map +1 -0
  658. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs +44 -0
  659. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs.map +1 -0
  660. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs +39 -0
  661. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs.map +1 -0
  662. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs +51 -0
  663. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs.map +1 -0
  664. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs +56 -0
  665. package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs.map +1 -0
  666. package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +33 -0
  667. package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs.map +1 -0
  668. package/fesm2022/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs +286 -0
  669. package/fesm2022/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs.map +1 -0
  670. package/fesm2022/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs +264 -0
  671. package/fesm2022/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs.map +1 -0
  672. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs +31 -0
  673. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs.map +1 -0
  674. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs +42 -0
  675. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs.map +1 -0
  676. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs +33 -0
  677. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs.map +1 -0
  678. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs +33 -0
  679. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs.map +1 -0
  680. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs +33 -0
  681. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs.map +1 -0
  682. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs +47 -0
  683. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs.map +1 -0
  684. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs +34 -0
  685. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs.map +1 -0
  686. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs +123 -0
  687. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs.map +1 -0
  688. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs +44 -0
  689. package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs.map +1 -0
  690. package/fesm2022/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs +51 -0
  691. package/fesm2022/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs.map +1 -0
  692. package/fesm2022/ascentgl-ads-ui.mjs +8117 -0
  693. package/fesm2022/ascentgl-ads-ui.mjs.map +1 -0
  694. package/index.d.ts +86 -0
  695. package/lib/components/avatar/avatar.component.d.ts +30 -0
  696. package/lib/components/avatar/avatar.module.d.ts +9 -0
  697. package/lib/components/avatar/avatar.types.d.ts +1 -0
  698. package/lib/components/avatar/index.d.ts +1 -0
  699. package/lib/components/avatar/public-api.d.ts +2 -0
  700. package/lib/components/badge/index.d.ts +1 -0
  701. package/lib/components/badge/numeric-badge.component.d.ts +22 -0
  702. package/lib/components/badge/numeric-badge.module.d.ts +9 -0
  703. package/lib/components/badge/public-api.d.ts +2 -0
  704. package/lib/components/breadcrumb/breadcrumb.component.d.ts +37 -0
  705. package/lib/components/breadcrumb/breadcrumb.module.d.ts +11 -0
  706. package/lib/components/breadcrumb/breadcrumb.type.d.ts +7 -0
  707. package/lib/components/breadcrumb/breadcrumb.visual-processor.d.ts +16 -0
  708. package/lib/components/breadcrumb/index.d.ts +1 -0
  709. package/lib/components/breadcrumb/public-api.d.ts +3 -0
  710. package/lib/components/buttons/button/button.component.d.ts +24 -0
  711. package/lib/components/buttons/button/button.module.d.ts +9 -0
  712. package/lib/components/buttons/button/index.d.ts +1 -0
  713. package/lib/components/buttons/button/public-api.d.ts +2 -0
  714. package/lib/components/buttons/button-container/button-container.component.d.ts +9 -0
  715. package/lib/components/buttons/button-container/button-container.module.d.ts +8 -0
  716. package/lib/components/buttons/button-container/index.d.ts +1 -0
  717. package/lib/components/buttons/button-container/public-api.d.ts +2 -0
  718. package/lib/components/buttons/icon-button/icon-button.component.d.ts +25 -0
  719. package/lib/components/buttons/icon-button/icon-button.module.d.ts +10 -0
  720. package/lib/components/buttons/icon-button/index.d.ts +1 -0
  721. package/lib/components/buttons/icon-button/public-api.d.ts +2 -0
  722. package/lib/components/buttons/link-button/index.d.ts +1 -0
  723. package/lib/components/buttons/link-button/link-button.component.d.ts +9 -0
  724. package/lib/components/buttons/link-button/link-button.module.d.ts +10 -0
  725. package/lib/components/buttons/link-button/public-api.d.ts +2 -0
  726. package/lib/components/buttons/selection-button/index.d.ts +1 -0
  727. package/lib/components/buttons/selection-button/public-api.d.ts +2 -0
  728. package/lib/components/buttons/selection-button/selection-button.component.d.ts +40 -0
  729. package/lib/components/buttons/selection-button/selection-button.module.d.ts +10 -0
  730. package/lib/components/card/card.component.d.ts +5 -0
  731. package/lib/components/card/card.module.d.ts +8 -0
  732. package/lib/components/card/index.d.ts +1 -0
  733. package/lib/components/card/public-api.d.ts +2 -0
  734. package/lib/components/chip/chip.component.d.ts +27 -0
  735. package/lib/components/chip/chip.module.d.ts +9 -0
  736. package/lib/components/chip/chip.types.d.ts +4 -0
  737. package/lib/components/chip/index.d.ts +1 -0
  738. package/lib/components/chip/public-api.d.ts +2 -0
  739. package/lib/components/divider/divider.component.d.ts +26 -0
  740. package/lib/components/divider/divider.module.d.ts +8 -0
  741. package/lib/components/divider/index.d.ts +1 -0
  742. package/lib/components/divider/public-api.d.ts +2 -0
  743. package/lib/components/drag-and-drop-list/dom.element.d.ts +17 -0
  744. package/lib/components/drag-and-drop-list/drag-and-drop-list.component.d.ts +82 -0
  745. package/lib/components/drag-and-drop-list/drag-and-drop-list.enums.d.ts +8 -0
  746. package/lib/components/drag-and-drop-list/drag-and-drop-list.module.d.ts +8 -0
  747. package/lib/components/drag-and-drop-list/dragged.placeholder.d.ts +14 -0
  748. package/lib/components/drag-and-drop-list/index.d.ts +1 -0
  749. package/lib/components/drag-and-drop-list/public-api.d.ts +2 -0
  750. package/lib/components/error-page/error-page-code/error-page-code.component.d.ts +5 -0
  751. package/lib/components/error-page/error-page-code/error-page-code.module.d.ts +8 -0
  752. package/lib/components/error-page/error-page-code/index.d.ts +1 -0
  753. package/lib/components/error-page/error-page-code/public-api.d.ts +2 -0
  754. package/lib/components/error-page/error-page.component.d.ts +49 -0
  755. package/lib/components/error-page/error-page.module.d.ts +15 -0
  756. package/lib/components/error-page/error-page.types.d.ts +22 -0
  757. package/lib/components/error-page/index.d.ts +1 -0
  758. package/lib/components/error-page/public-api.d.ts +3 -0
  759. package/lib/components/expansion-panel/expansion-panel.component.d.ts +21 -0
  760. package/lib/components/expansion-panel/expansion-panel.module.d.ts +10 -0
  761. package/lib/components/expansion-panel/index.d.ts +1 -0
  762. package/lib/components/expansion-panel/public-api.d.ts +2 -0
  763. package/lib/components/footer/container/footer-container.component.d.ts +5 -0
  764. package/lib/components/footer/container/footer-container.module.d.ts +7 -0
  765. package/lib/components/footer/container/index.d.ts +1 -0
  766. package/lib/components/footer/container/public-api.d.ts +2 -0
  767. package/lib/components/footer/footer.component.d.ts +22 -0
  768. package/lib/components/footer/footer.component.types.d.ts +12 -0
  769. package/lib/components/footer/footer.module.d.ts +8 -0
  770. package/lib/components/footer/index.d.ts +1 -0
  771. package/lib/components/footer/public-api.d.ts +3 -0
  772. package/lib/components/form-fields/abstracts/abstract.base.component.d.ts +57 -0
  773. package/lib/components/form-fields/abstracts/abstract.dropdown.component.d.ts +44 -0
  774. package/lib/components/form-fields/abstracts/abstract.input.component.d.ts +24 -0
  775. package/lib/components/form-fields/area/index.d.ts +1 -0
  776. package/lib/components/form-fields/area/public-api.d.ts +2 -0
  777. package/lib/components/form-fields/area/textarea.component.d.ts +12 -0
  778. package/lib/components/form-fields/area/textarea.module.d.ts +17 -0
  779. package/lib/components/form-fields/common/dropdown-option-template.directive.d.ts +11 -0
  780. package/lib/components/form-fields/common/error/error.component.d.ts +7 -0
  781. package/lib/components/form-fields/common/hint/hint.component.d.ts +11 -0
  782. package/lib/components/form-fields/common/input.tooltip.component.d.ts +11 -0
  783. package/lib/components/form-fields/common/success/success.component.d.ts +7 -0
  784. package/lib/components/form-fields/datepickers/date-picker/datepicker.component.d.ts +24 -0
  785. package/lib/components/form-fields/datepickers/date-picker/datepicker.module.d.ts +22 -0
  786. package/lib/components/form-fields/datepickers/date-picker/index.d.ts +1 -0
  787. package/lib/components/form-fields/datepickers/date-picker/public-api.d.ts +2 -0
  788. package/lib/components/form-fields/datepickers/datetime-picker/custom-datetime-format.d.ts +18 -0
  789. package/lib/components/form-fields/datepickers/datetime-picker/custom-datetime.adapter.d.ts +11 -0
  790. package/lib/components/form-fields/datepickers/datetime-picker/datetime-picker-format-directive.d.ts +22 -0
  791. package/lib/components/form-fields/datepickers/datetime-picker/datetime-template.formatter.d.ts +13 -0
  792. package/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.component.d.ts +118 -0
  793. package/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.module.d.ts +21 -0
  794. package/lib/components/form-fields/datepickers/datetime-picker/index.d.ts +1 -0
  795. package/lib/components/form-fields/datepickers/datetime-picker/public-api.d.ts +2 -0
  796. package/lib/components/form-fields/datepickers/time-picker/index.d.ts +1 -0
  797. package/lib/components/form-fields/datepickers/time-picker/public-api.d.ts +2 -0
  798. package/lib/components/form-fields/datepickers/time-picker/timepicker.component.d.ts +26 -0
  799. package/lib/components/form-fields/datepickers/time-picker/timepicker.module.d.ts +22 -0
  800. package/lib/components/form-fields/dropdowns/dropdown/dropdown.component.d.ts +64 -0
  801. package/lib/components/form-fields/dropdowns/dropdown/dropdown.module.d.ts +21 -0
  802. package/lib/components/form-fields/dropdowns/dropdown/index.d.ts +1 -0
  803. package/lib/components/form-fields/dropdowns/dropdown/public-api.d.ts +2 -0
  804. package/lib/components/form-fields/dropdowns/input-dropdown/index.d.ts +1 -0
  805. package/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.component.d.ts +47 -0
  806. package/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.module.d.ts +20 -0
  807. package/lib/components/form-fields/dropdowns/input-dropdown/public-api.d.ts +2 -0
  808. package/lib/components/form-fields/dropdowns/multi-select-dropdown/index.d.ts +1 -0
  809. package/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.component.d.ts +26 -0
  810. package/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.module.d.ts +21 -0
  811. package/lib/components/form-fields/dropdowns/multi-select-dropdown/public-api.d.ts +2 -0
  812. package/lib/components/form-fields/input/index.d.ts +1 -0
  813. package/lib/components/form-fields/input/input.component.d.ts +29 -0
  814. package/lib/components/form-fields/input/input.module.d.ts +17 -0
  815. package/lib/components/form-fields/input/public-api.d.ts +2 -0
  816. package/lib/components/form-fields/search-fields/search-dropdown/index.d.ts +1 -0
  817. package/lib/components/form-fields/search-fields/search-dropdown/public-api.d.ts +2 -0
  818. package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown-highlighter.pipe.d.ts +13 -0
  819. package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.d.ts +195 -0
  820. package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.types.d.ts +10 -0
  821. package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.module.d.ts +22 -0
  822. package/lib/components/form-fields/search-fields/search-input/index.d.ts +1 -0
  823. package/lib/components/form-fields/search-fields/search-input/public-api.d.ts +2 -0
  824. package/lib/components/form-fields/search-fields/search-input/search-input.component.d.ts +15 -0
  825. package/lib/components/form-fields/search-fields/search-input/search-input.module.d.ts +20 -0
  826. package/lib/components/form-fields/selection-fields/checkbox/checkbox.component.d.ts +17 -0
  827. package/lib/components/form-fields/selection-fields/checkbox/checkbox.module.d.ts +13 -0
  828. package/lib/components/form-fields/selection-fields/checkbox/index.d.ts +1 -0
  829. package/lib/components/form-fields/selection-fields/checkbox/public-api.d.ts +2 -0
  830. package/lib/components/form-fields/selection-fields/radio-button/index.d.ts +1 -0
  831. package/lib/components/form-fields/selection-fields/radio-button/public-api.d.ts +2 -0
  832. package/lib/components/form-fields/selection-fields/radio-button/radio-button.component.d.ts +28 -0
  833. package/lib/components/form-fields/selection-fields/radio-button/radio-button.module.d.ts +17 -0
  834. package/lib/components/form-fields/selection-fields/slide-toggle/index.d.ts +1 -0
  835. package/lib/components/form-fields/selection-fields/slide-toggle/public-api.d.ts +2 -0
  836. package/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.component.d.ts +19 -0
  837. package/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.module.d.ts +13 -0
  838. package/lib/components/form-fields/selection-fields/slider/index.d.ts +1 -0
  839. package/lib/components/form-fields/selection-fields/slider/public-api.d.ts +2 -0
  840. package/lib/components/form-fields/selection-fields/slider/slider.component.d.ts +20 -0
  841. package/lib/components/form-fields/selection-fields/slider/slider.module.d.ts +14 -0
  842. package/lib/components/general/color-palette/colors.enums.d.ts +37 -0
  843. package/lib/components/header/container/header-container.component.d.ts +9 -0
  844. package/lib/components/header/container/header-container.module.d.ts +7 -0
  845. package/lib/components/header/container/index.d.ts +1 -0
  846. package/lib/components/header/container/public-api.d.ts +2 -0
  847. package/lib/components/header/header.component.d.ts +5 -0
  848. package/lib/components/header/header.module.d.ts +7 -0
  849. package/lib/components/header/index.d.ts +1 -0
  850. package/lib/components/header/org-display-text/index.d.ts +1 -0
  851. package/lib/components/header/org-display-text/org-display-text.component.d.ts +13 -0
  852. package/lib/components/header/org-display-text/org-display-text.module.d.ts +8 -0
  853. package/lib/components/header/org-display-text/public-api.d.ts +2 -0
  854. package/lib/components/header/public-api.d.ts +2 -0
  855. package/lib/components/icon-hover/icon-hover.component.d.ts +23 -0
  856. package/lib/components/icon-hover/icon-hover.module.d.ts +7 -0
  857. package/lib/components/icon-hover/index.d.ts +1 -0
  858. package/lib/components/icon-hover/public-api.d.ts +2 -0
  859. package/lib/components/logo/ascent-logo/ascent-logo.component.d.ts +19 -0
  860. package/lib/components/logo/ascent-logo/ascent-logo.module.d.ts +8 -0
  861. package/lib/components/logo/ascent-logo/index.d.ts +1 -0
  862. package/lib/components/logo/ascent-logo/public-api.d.ts +2 -0
  863. package/lib/components/logo/primary-logo/index.d.ts +1 -0
  864. package/lib/components/logo/primary-logo/primary-logo.component.d.ts +21 -0
  865. package/lib/components/logo/primary-logo/primary-logo.module.d.ts +8 -0
  866. package/lib/components/logo/primary-logo/public-api.d.ts +2 -0
  867. package/lib/components/main-menu/index.d.ts +1 -0
  868. package/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.d.ts +11 -0
  869. package/lib/components/main-menu/main-menu.component.d.ts +42 -0
  870. package/lib/components/main-menu/main-menu.module.d.ts +15 -0
  871. package/lib/components/main-menu/main-menu.types.d.ts +8 -0
  872. package/lib/components/main-menu/public-api.d.ts +3 -0
  873. package/lib/components/modal/index.d.ts +1 -0
  874. package/lib/components/modal/modal.component.d.ts +27 -0
  875. package/lib/components/modal/modal.module.d.ts +12 -0
  876. package/lib/components/modal/public-api.d.ts +2 -0
  877. package/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.d.ts +30 -0
  878. package/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.d.ts +8 -0
  879. package/lib/components/navigation/dashboard-edit-icon/index.d.ts +1 -0
  880. package/lib/components/navigation/dashboard-edit-icon/public-api.d.ts +2 -0
  881. package/lib/components/navigation/index.d.ts +1 -0
  882. package/lib/components/navigation/navigation-actions-container/index.d.ts +1 -0
  883. package/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.d.ts +9 -0
  884. package/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.d.ts +8 -0
  885. package/lib/components/navigation/navigation-actions-container/public-api.d.ts +2 -0
  886. package/lib/components/navigation/navigation-collapse-handle/index.d.ts +1 -0
  887. package/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.d.ts +31 -0
  888. package/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.d.ts +8 -0
  889. package/lib/components/navigation/navigation-collapse-handle/public-api.d.ts +2 -0
  890. package/lib/components/navigation/navigation-header/index.d.ts +1 -0
  891. package/lib/components/navigation/navigation-header/navigation-header.component.d.ts +13 -0
  892. package/lib/components/navigation/navigation-header/navigation-header.module.d.ts +7 -0
  893. package/lib/components/navigation/navigation-header/public-api.d.ts +2 -0
  894. package/lib/components/navigation/navigation-item/index.d.ts +1 -0
  895. package/lib/components/navigation/navigation-item/navigation-item.component.d.ts +52 -0
  896. package/lib/components/navigation/navigation-item/navigation-item.module.d.ts +11 -0
  897. package/lib/components/navigation/navigation-item/public-api.d.ts +2 -0
  898. package/lib/components/navigation/navigation-items-container/index.d.ts +1 -0
  899. package/lib/components/navigation/navigation-items-container/navigation-items-container.component.d.ts +5 -0
  900. package/lib/components/navigation/navigation-items-container/navigation-items-container.module.d.ts +7 -0
  901. package/lib/components/navigation/navigation-items-container/public-api.d.ts +2 -0
  902. package/lib/components/navigation/navigation.component.d.ts +13 -0
  903. package/lib/components/navigation/navigation.module.d.ts +7 -0
  904. package/lib/components/navigation/public-api.d.ts +2 -0
  905. package/lib/components/navigation/side-navigation/side-navigation-container/index.d.ts +1 -0
  906. package/lib/components/navigation/side-navigation/side-navigation-container/public-api.d.ts +2 -0
  907. package/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.d.ts +5 -0
  908. package/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.d.ts +7 -0
  909. package/lib/components/navigation/side-navigation/side-navigation-item/index.d.ts +1 -0
  910. package/lib/components/navigation/side-navigation/side-navigation-item/public-api.d.ts +2 -0
  911. package/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.d.ts +45 -0
  912. package/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.d.ts +11 -0
  913. package/lib/components/navigation/sub-navigation-item/index.d.ts +1 -0
  914. package/lib/components/navigation/sub-navigation-item/public-api.d.ts +2 -0
  915. package/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.d.ts +28 -0
  916. package/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.d.ts +8 -0
  917. package/lib/components/navigation/sub-navigation-items-container/index.d.ts +1 -0
  918. package/lib/components/navigation/sub-navigation-items-container/public-api.d.ts +2 -0
  919. package/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.d.ts +5 -0
  920. package/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.d.ts +7 -0
  921. package/lib/components/pagination/container/index.d.ts +1 -0
  922. package/lib/components/pagination/container/pagination-container.component.d.ts +5 -0
  923. package/lib/components/pagination/container/pagination-container.module.d.ts +7 -0
  924. package/lib/components/pagination/container/public-api.d.ts +2 -0
  925. package/lib/components/pagination/index.d.ts +1 -0
  926. package/lib/components/pagination/pagination.component.d.ts +41 -0
  927. package/lib/components/pagination/pagination.module.d.ts +9 -0
  928. package/lib/components/pagination/public-api.d.ts +2 -0
  929. package/lib/components/progress-indicators/progress-bar/index.d.ts +1 -0
  930. package/lib/components/progress-indicators/progress-bar/progress-bar.component.d.ts +48 -0
  931. package/lib/components/progress-indicators/progress-bar/progress-bar.module.d.ts +9 -0
  932. package/lib/components/progress-indicators/progress-bar/public-api.d.ts +2 -0
  933. package/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts +1 -0
  934. package/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.d.ts +33 -0
  935. package/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.d.ts +9 -0
  936. package/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.d.ts +6 -0
  937. package/lib/components/progress-indicators/progress-indicator-spinner/public-api.d.ts +2 -0
  938. package/lib/components/progress-indicators/progress-spinner/index.d.ts +1 -0
  939. package/lib/components/progress-indicators/progress-spinner/progress-spinner.component.d.ts +37 -0
  940. package/lib/components/progress-indicators/progress-spinner/progress-spinner.module.d.ts +11 -0
  941. package/lib/components/progress-indicators/progress-spinner/public-api.d.ts +2 -0
  942. package/lib/components/progress-stepper/index.d.ts +1 -0
  943. package/lib/components/progress-stepper/progress-step.types.d.ts +5 -0
  944. package/lib/components/progress-stepper/progress-stepper.component.d.ts +42 -0
  945. package/lib/components/progress-stepper/progress-stepper.module.d.ts +10 -0
  946. package/lib/components/progress-stepper/public-api.d.ts +3 -0
  947. package/lib/components/rating/index.d.ts +1 -0
  948. package/lib/components/rating/public-api.d.ts +2 -0
  949. package/lib/components/rating/rating.component.d.ts +22 -0
  950. package/lib/components/rating/rating.module.d.ts +9 -0
  951. package/lib/components/shell-layout/index.d.ts +1 -0
  952. package/lib/components/shell-layout/public-api.d.ts +2 -0
  953. package/lib/components/shell-layout/shell-layout.component.d.ts +13 -0
  954. package/lib/components/shell-layout/shell-layout.module.d.ts +8 -0
  955. package/lib/components/snackbars/inline-snackbar/index.d.ts +1 -0
  956. package/lib/components/snackbars/inline-snackbar/inline-snackbar.component.d.ts +31 -0
  957. package/lib/components/snackbars/inline-snackbar/inline-snackbar.module.d.ts +9 -0
  958. package/lib/components/snackbars/inline-snackbar/public-api.d.ts +2 -0
  959. package/lib/components/snackbars/snackbar/index.d.ts +1 -0
  960. package/lib/components/snackbars/snackbar/public-api.d.ts +2 -0
  961. package/lib/components/snackbars/snackbar/snackbar.component.d.ts +22 -0
  962. package/lib/components/snackbars/snackbar/snackbar.module.d.ts +11 -0
  963. package/lib/components/splash-page/index.d.ts +1 -0
  964. package/lib/components/splash-page/public-api.d.ts +2 -0
  965. package/lib/components/splash-page/splash-page.component.d.ts +14 -0
  966. package/lib/components/splash-page/splash-page.module.d.ts +8 -0
  967. package/lib/components/stepper-condensed/condensed-helpers.d.ts +24 -0
  968. package/lib/components/stepper-condensed/condensed-step.type.d.ts +43 -0
  969. package/lib/components/stepper-condensed/index.d.ts +1 -0
  970. package/lib/components/stepper-condensed/public-api.d.ts +4 -0
  971. package/lib/components/stepper-condensed/stepper-condensed.component.d.ts +61 -0
  972. package/lib/components/stepper-condensed/stepper-condensed.module.d.ts +11 -0
  973. package/lib/components/submenu/submenu-container/index.d.ts +1 -0
  974. package/lib/components/submenu/submenu-container/public-api.d.ts +2 -0
  975. package/lib/components/submenu/submenu-container/submenu-container.component.d.ts +9 -0
  976. package/lib/components/submenu/submenu-container/submenu-container.module.d.ts +8 -0
  977. package/lib/components/submenu/submenu-heading/index.d.ts +1 -0
  978. package/lib/components/submenu/submenu-heading/public-api.d.ts +2 -0
  979. package/lib/components/submenu/submenu-heading/submenu-heading.component.d.ts +9 -0
  980. package/lib/components/submenu/submenu-heading/submenu-heading.module.d.ts +8 -0
  981. package/lib/components/submenu/submenu-item/index.d.ts +1 -0
  982. package/lib/components/submenu/submenu-item/public-api.d.ts +2 -0
  983. package/lib/components/submenu/submenu-item/submenu-item.component.d.ts +16 -0
  984. package/lib/components/submenu/submenu-item/submenu-item.module.d.ts +9 -0
  985. package/lib/components/submenu/submenu-secondary-item/index.d.ts +1 -0
  986. package/lib/components/submenu/submenu-secondary-item/public-api.d.ts +2 -0
  987. package/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.d.ts +18 -0
  988. package/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.d.ts +9 -0
  989. package/lib/components/table/index.d.ts +1 -0
  990. package/lib/components/table/public-api.d.ts +2 -0
  991. package/lib/components/table/table.component.d.ts +35 -0
  992. package/lib/components/table/table.module.d.ts +10 -0
  993. package/lib/components/tags/create-tag/create-tag.component.d.ts +85 -0
  994. package/lib/components/tags/create-tag/create-tag.module.d.ts +14 -0
  995. package/lib/components/tags/create-tag/index.d.ts +1 -0
  996. package/lib/components/tags/create-tag/public-api.d.ts +2 -0
  997. package/lib/components/tags/tag/index.d.ts +1 -0
  998. package/lib/components/tags/tag/public-api.d.ts +3 -0
  999. package/lib/components/tags/tag/tag.component.d.ts +34 -0
  1000. package/lib/components/tags/tag/tag.module.d.ts +9 -0
  1001. package/lib/components/tags/tag/tag.types.d.ts +6 -0
  1002. package/lib/components/tags/tag-container/index.d.ts +1 -0
  1003. package/lib/components/tags/tag-container/public-api.d.ts +2 -0
  1004. package/lib/components/tags/tag-container/tag-container.component.d.ts +5 -0
  1005. package/lib/components/tags/tag-container/tag-container.module.d.ts +8 -0
  1006. package/lib/components/timeline-stepper/index.d.ts +1 -0
  1007. package/lib/components/timeline-stepper/public-api.d.ts +4 -0
  1008. package/lib/components/timeline-stepper/timeline-helpers.d.ts +24 -0
  1009. package/lib/components/timeline-stepper/timeline-step.type.d.ts +43 -0
  1010. package/lib/components/timeline-stepper/timeline-stepper.component.d.ts +61 -0
  1011. package/lib/components/timeline-stepper/timeline-stepper.module.d.ts +11 -0
  1012. package/lib/components/vertical-stepper/index.d.ts +1 -0
  1013. package/lib/components/vertical-stepper/public-api.d.ts +4 -0
  1014. package/lib/components/vertical-stepper/vertical-helpers.d.ts +24 -0
  1015. package/lib/components/vertical-stepper/vertical-step.type.d.ts +45 -0
  1016. package/lib/components/vertical-stepper/vertical-stepper.component.d.ts +58 -0
  1017. package/lib/components/vertical-stepper/vertical-stepper.module.d.ts +11 -0
  1018. package/lib/components/widgets/widget-actions/index.d.ts +1 -0
  1019. package/lib/components/widgets/widget-actions/public-api.d.ts +2 -0
  1020. package/lib/components/widgets/widget-actions/widget-actions.component.d.ts +5 -0
  1021. package/lib/components/widgets/widget-actions/widget-actions.module.d.ts +7 -0
  1022. package/lib/components/widgets/widget-bar/index.d.ts +1 -0
  1023. package/lib/components/widgets/widget-bar/public-api.d.ts +2 -0
  1024. package/lib/components/widgets/widget-bar/widget-bar.component.d.ts +9 -0
  1025. package/lib/components/widgets/widget-bar/widget-bar.module.d.ts +8 -0
  1026. package/lib/components/widgets/widget-container/index.d.ts +1 -0
  1027. package/lib/components/widgets/widget-container/public-api.d.ts +2 -0
  1028. package/lib/components/widgets/widget-container/widget-container.component.d.ts +5 -0
  1029. package/lib/components/widgets/widget-container/widget-container.module.d.ts +8 -0
  1030. package/lib/components/widgets/widget-footer/index.d.ts +1 -0
  1031. package/lib/components/widgets/widget-footer/public-api.d.ts +2 -0
  1032. package/lib/components/widgets/widget-footer/widget-footer.component.d.ts +5 -0
  1033. package/lib/components/widgets/widget-footer/widget-footer.module.d.ts +8 -0
  1034. package/lib/components/widgets/widget-header/index.d.ts +1 -0
  1035. package/lib/components/widgets/widget-header/public-api.d.ts +2 -0
  1036. package/lib/components/widgets/widget-header/widget-header.component.d.ts +5 -0
  1037. package/lib/components/widgets/widget-header/widget-header.module.d.ts +8 -0
  1038. package/lib/components/widgets/widget-preview/index.d.ts +1 -0
  1039. package/lib/components/widgets/widget-preview/public-api.d.ts +2 -0
  1040. package/lib/components/widgets/widget-preview/widget-preview.component.d.ts +28 -0
  1041. package/lib/components/widgets/widget-preview/widget-preview.module.d.ts +8 -0
  1042. package/lib/components/widgets/widget-thumbnail/index.d.ts +1 -0
  1043. package/lib/components/widgets/widget-thumbnail/public-api.d.ts +2 -0
  1044. package/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.d.ts +68 -0
  1045. package/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.d.ts +10 -0
  1046. package/lib/components/widgets/widget-thumbnail-container/index.d.ts +1 -0
  1047. package/lib/components/widgets/widget-thumbnail-container/public-api.d.ts +2 -0
  1048. package/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.d.ts +5 -0
  1049. package/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.d.ts +8 -0
  1050. package/lib/components/widgets/widget-title/index.d.ts +1 -0
  1051. package/lib/components/widgets/widget-title/public-api.d.ts +2 -0
  1052. package/lib/components/widgets/widget-title/widget-title.component.d.ts +13 -0
  1053. package/lib/components/widgets/widget-title/widget-title.module.d.ts +8 -0
  1054. package/lib/components/wizard-stepper/index.d.ts +1 -0
  1055. package/lib/components/wizard-stepper/public-api.d.ts +3 -0
  1056. package/lib/components/wizard-stepper/wizard-stepper.component.d.ts +12 -0
  1057. package/lib/components/wizard-stepper/wizard-stepper.module.d.ts +10 -0
  1058. package/lib/components/wizard-stepper/wizard-stepper.types.d.ts +4 -0
  1059. package/lib/services/viewport/viewport.service.d.ts +22 -0
  1060. package/lib/services/viewport/viewport.service.interface.d.ts +6 -0
  1061. package/lib/services/window/window.service.d.ts +12 -0
  1062. package/lib/services/window/window.service.interface.d.ts +7 -0
  1063. package/package.json +340 -0
  1064. package/src/assets/sass/ads-ui/abstracts/_functions.scss +15 -0
  1065. package/src/assets/sass/ads-ui/abstracts/_mixins.scss +88 -0
  1066. package/src/assets/sass/ads-ui/abstracts/_variables.scss +125 -0
  1067. package/src/assets/sass/ads-ui/base/_reset.scss +41 -0
  1068. package/src/assets/sass/ads-ui/base/_typography.scss +188 -0
  1069. package/src/assets/sass/ads-ui/base/_utilities.scss +105 -0
  1070. package/src/assets/sass/ads-ui/main.scss +9 -0
  1071. package/src/assets/sass/ads-ui/overrides/_ag-grid.scss +2 -0
  1072. package/src/assets/sass/ads-ui/overrides/_angular-material.scss +10 -0
  1073. package/src/assets/sass/ads-ui/overrides/angular-material/_bottom-sheet.scss +10 -0
  1074. package/src/assets/sass/ads-ui/overrides/angular-material/_datetimepicker.scss +250 -0
  1075. package/src/assets/sass/ads-ui/overrides/angular-material/_dropdown.scss +32 -0
  1076. package/src/assets/sass/ads-ui/overrides/angular-material/_expansion-panel.scss +19 -0
  1077. package/src/assets/sass/ads-ui/overrides/angular-material/_html.scss +18 -0
  1078. package/src/assets/sass/ads-ui/overrides/angular-material/_mat-list.scss +45 -0
  1079. package/src/assets/sass/ads-ui/overrides/angular-material/_modal.scss +42 -0
  1080. package/src/assets/sass/ads-ui/overrides/angular-material/_search-dropdown-modal.scss +32 -0
  1081. package/src/assets/sass/ads-ui/overrides/angular-material/_snackbar.scss +37 -0
  1082. package/src/assets/sass/ads-ui/overrides/angular-material/_tabs.scss +63 -0
  1083. package/src/assets/sass/ads-ui/overrides/angular-material/_tooltip.scss +73 -0
  1084. package/src/assets/sass/ads-ui/themes/_ads-palette.scss +98 -0
  1085. package/src/lib/components/avatar/avatar.component.d.ts +30 -0
  1086. package/src/lib/components/avatar/avatar.module.d.ts +9 -0
  1087. package/src/lib/components/avatar/avatar.types.d.ts +1 -0
  1088. package/src/lib/components/avatar/index.d.ts +5 -0
  1089. package/src/lib/components/avatar/public-api.d.ts +2 -0
  1090. package/src/lib/components/buttons/button-container/button-container.component.d.ts +9 -0
  1091. package/src/lib/components/buttons/button-container/button-container.module.d.ts +8 -0
  1092. package/src/lib/components/buttons/button-container/index.d.ts +5 -0
  1093. package/src/lib/components/buttons/button-container/public-api.d.ts +2 -0
  1094. package/src/lib/components/buttons/selection-button/index.d.ts +5 -0
  1095. package/src/lib/components/buttons/selection-button/public-api.d.ts +2 -0
  1096. package/src/lib/components/buttons/selection-button/selection-button.component.d.ts +40 -0
  1097. package/src/lib/components/buttons/selection-button/selection-button.module.d.ts +10 -0
  1098. package/src/lib/components/card/card.component.d.ts +5 -0
  1099. package/src/lib/components/card/card.module.d.ts +8 -0
  1100. package/src/lib/components/card/index.d.ts +5 -0
  1101. package/src/lib/components/card/public-api.d.ts +2 -0
  1102. package/src/lib/components/divider/divider.component.d.ts +26 -0
  1103. package/src/lib/components/divider/divider.module.d.ts +8 -0
  1104. package/src/lib/components/divider/index.d.ts +5 -0
  1105. package/src/lib/components/divider/public-api.d.ts +2 -0
  1106. package/src/lib/components/drag-and-drop-list/dom.element.d.ts +17 -0
  1107. package/src/lib/components/drag-and-drop-list/drag-and-drop-list.component.d.ts +82 -0
  1108. package/src/lib/components/drag-and-drop-list/drag-and-drop-list.enums.d.ts +8 -0
  1109. package/src/lib/components/drag-and-drop-list/drag-and-drop-list.module.d.ts +8 -0
  1110. package/src/lib/components/drag-and-drop-list/dragged.placeholder.d.ts +14 -0
  1111. package/src/lib/components/drag-and-drop-list/index.d.ts +5 -0
  1112. package/src/lib/components/drag-and-drop-list/public-api.d.ts +2 -0
  1113. package/src/lib/components/error-page/error-page-code/error-page-code.component.d.ts +5 -0
  1114. package/src/lib/components/error-page/error-page-code/error-page-code.module.d.ts +8 -0
  1115. package/src/lib/components/error-page/error-page-code/index.d.ts +5 -0
  1116. package/src/lib/components/error-page/error-page-code/public-api.d.ts +2 -0
  1117. package/src/lib/components/footer/container/footer-container.component.d.ts +5 -0
  1118. package/src/lib/components/footer/container/footer-container.module.d.ts +7 -0
  1119. package/src/lib/components/footer/container/index.d.ts +5 -0
  1120. package/src/lib/components/footer/container/public-api.d.ts +2 -0
  1121. package/src/lib/components/footer/footer.component.d.ts +22 -0
  1122. package/src/lib/components/footer/footer.component.types.d.ts +12 -0
  1123. package/src/lib/components/footer/footer.module.d.ts +8 -0
  1124. package/src/lib/components/footer/index.d.ts +5 -0
  1125. package/src/lib/components/footer/public-api.d.ts +3 -0
  1126. package/src/lib/components/header/container/header-container.component.d.ts +9 -0
  1127. package/src/lib/components/header/container/header-container.module.d.ts +7 -0
  1128. package/src/lib/components/header/container/index.d.ts +5 -0
  1129. package/src/lib/components/header/container/public-api.d.ts +2 -0
  1130. package/src/lib/components/header/header.component.d.ts +5 -0
  1131. package/src/lib/components/header/header.module.d.ts +7 -0
  1132. package/src/lib/components/header/index.d.ts +5 -0
  1133. package/src/lib/components/header/org-display-text/index.d.ts +5 -0
  1134. package/src/lib/components/header/org-display-text/org-display-text.component.d.ts +13 -0
  1135. package/src/lib/components/header/org-display-text/org-display-text.module.d.ts +8 -0
  1136. package/src/lib/components/header/org-display-text/public-api.d.ts +2 -0
  1137. package/src/lib/components/header/public-api.d.ts +2 -0
  1138. package/src/lib/components/logo/primary-logo/index.d.ts +5 -0
  1139. package/src/lib/components/logo/primary-logo/primary-logo.component.d.ts +21 -0
  1140. package/src/lib/components/logo/primary-logo/primary-logo.module.d.ts +8 -0
  1141. package/src/lib/components/logo/primary-logo/public-api.d.ts +2 -0
  1142. package/src/lib/components/main-menu/index.d.ts +5 -0
  1143. package/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.d.ts +11 -0
  1144. package/src/lib/components/main-menu/main-menu.component.d.ts +42 -0
  1145. package/src/lib/components/main-menu/main-menu.module.d.ts +15 -0
  1146. package/src/lib/components/main-menu/main-menu.types.d.ts +8 -0
  1147. package/src/lib/components/main-menu/public-api.d.ts +3 -0
  1148. package/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.d.ts +30 -0
  1149. package/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.d.ts +8 -0
  1150. package/src/lib/components/navigation/dashboard-edit-icon/index.d.ts +5 -0
  1151. package/src/lib/components/navigation/dashboard-edit-icon/public-api.d.ts +2 -0
  1152. package/src/lib/components/navigation/index.d.ts +5 -0
  1153. package/src/lib/components/navigation/navigation-actions-container/index.d.ts +5 -0
  1154. package/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.d.ts +9 -0
  1155. package/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.d.ts +8 -0
  1156. package/src/lib/components/navigation/navigation-actions-container/public-api.d.ts +2 -0
  1157. package/src/lib/components/navigation/navigation-collapse-handle/index.d.ts +5 -0
  1158. package/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.d.ts +31 -0
  1159. package/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.d.ts +8 -0
  1160. package/src/lib/components/navigation/navigation-collapse-handle/public-api.d.ts +2 -0
  1161. package/src/lib/components/navigation/navigation-header/index.d.ts +5 -0
  1162. package/src/lib/components/navigation/navigation-header/navigation-header.component.d.ts +13 -0
  1163. package/src/lib/components/navigation/navigation-header/navigation-header.module.d.ts +7 -0
  1164. package/src/lib/components/navigation/navigation-header/public-api.d.ts +2 -0
  1165. package/src/lib/components/navigation/navigation-item/index.d.ts +5 -0
  1166. package/src/lib/components/navigation/navigation-item/navigation-item.component.d.ts +52 -0
  1167. package/src/lib/components/navigation/navigation-item/navigation-item.module.d.ts +11 -0
  1168. package/src/lib/components/navigation/navigation-item/public-api.d.ts +2 -0
  1169. package/src/lib/components/navigation/navigation-items-container/index.d.ts +5 -0
  1170. package/src/lib/components/navigation/navigation-items-container/navigation-items-container.component.d.ts +5 -0
  1171. package/src/lib/components/navigation/navigation-items-container/navigation-items-container.module.d.ts +7 -0
  1172. package/src/lib/components/navigation/navigation-items-container/public-api.d.ts +2 -0
  1173. package/src/lib/components/navigation/navigation.component.d.ts +13 -0
  1174. package/src/lib/components/navigation/navigation.module.d.ts +7 -0
  1175. package/src/lib/components/navigation/public-api.d.ts +2 -0
  1176. package/src/lib/components/navigation/side-navigation/side-navigation-container/index.d.ts +5 -0
  1177. package/src/lib/components/navigation/side-navigation/side-navigation-container/public-api.d.ts +2 -0
  1178. package/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.d.ts +5 -0
  1179. package/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.d.ts +7 -0
  1180. package/src/lib/components/navigation/side-navigation/side-navigation-item/index.d.ts +5 -0
  1181. package/src/lib/components/navigation/side-navigation/side-navigation-item/public-api.d.ts +2 -0
  1182. package/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.d.ts +45 -0
  1183. package/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.d.ts +11 -0
  1184. package/src/lib/components/navigation/sub-navigation-item/index.d.ts +5 -0
  1185. package/src/lib/components/navigation/sub-navigation-item/public-api.d.ts +2 -0
  1186. package/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.d.ts +28 -0
  1187. package/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.d.ts +8 -0
  1188. package/src/lib/components/navigation/sub-navigation-items-container/index.d.ts +5 -0
  1189. package/src/lib/components/navigation/sub-navigation-items-container/public-api.d.ts +2 -0
  1190. package/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.d.ts +5 -0
  1191. package/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.d.ts +7 -0
  1192. package/src/lib/components/pagination/container/index.d.ts +5 -0
  1193. package/src/lib/components/pagination/container/pagination-container.component.d.ts +5 -0
  1194. package/src/lib/components/pagination/container/pagination-container.module.d.ts +7 -0
  1195. package/src/lib/components/pagination/container/public-api.d.ts +2 -0
  1196. package/src/lib/components/pagination/index.d.ts +5 -0
  1197. package/src/lib/components/pagination/pagination.component.d.ts +41 -0
  1198. package/src/lib/components/pagination/pagination.module.d.ts +9 -0
  1199. package/src/lib/components/pagination/public-api.d.ts +2 -0
  1200. package/src/lib/components/progress-indicators/progress-bar/index.d.ts +5 -0
  1201. package/src/lib/components/progress-indicators/progress-bar/progress-bar.component.d.ts +48 -0
  1202. package/src/lib/components/progress-indicators/progress-bar/progress-bar.module.d.ts +9 -0
  1203. package/src/lib/components/progress-indicators/progress-bar/public-api.d.ts +2 -0
  1204. package/src/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts +5 -0
  1205. package/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.d.ts +33 -0
  1206. package/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.d.ts +9 -0
  1207. package/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.d.ts +6 -0
  1208. package/src/lib/components/progress-indicators/progress-indicator-spinner/public-api.d.ts +2 -0
  1209. package/src/lib/components/progress-indicators/progress-spinner/index.d.ts +5 -0
  1210. package/src/lib/components/progress-indicators/progress-spinner/progress-spinner.component.d.ts +37 -0
  1211. package/src/lib/components/progress-indicators/progress-spinner/progress-spinner.module.d.ts +11 -0
  1212. package/src/lib/components/progress-indicators/progress-spinner/public-api.d.ts +2 -0
  1213. package/src/lib/components/progress-stepper/index.d.ts +5 -0
  1214. package/src/lib/components/progress-stepper/progress-step.types.d.ts +5 -0
  1215. package/src/lib/components/progress-stepper/progress-stepper.component.d.ts +42 -0
  1216. package/src/lib/components/progress-stepper/progress-stepper.module.d.ts +10 -0
  1217. package/src/lib/components/progress-stepper/public-api.d.ts +3 -0
  1218. package/src/lib/components/rating/index.d.ts +5 -0
  1219. package/src/lib/components/rating/public-api.d.ts +2 -0
  1220. package/src/lib/components/rating/rating.component.d.ts +22 -0
  1221. package/src/lib/components/rating/rating.module.d.ts +9 -0
  1222. package/src/lib/components/shell-layout/index.d.ts +5 -0
  1223. package/src/lib/components/shell-layout/public-api.d.ts +2 -0
  1224. package/src/lib/components/shell-layout/shell-layout.component.d.ts +13 -0
  1225. package/src/lib/components/shell-layout/shell-layout.module.d.ts +8 -0
  1226. package/src/lib/components/splash-page/index.d.ts +5 -0
  1227. package/src/lib/components/splash-page/public-api.d.ts +2 -0
  1228. package/src/lib/components/splash-page/splash-page.component.d.ts +14 -0
  1229. package/src/lib/components/splash-page/splash-page.module.d.ts +8 -0
  1230. package/src/lib/components/submenu/submenu-container/index.d.ts +5 -0
  1231. package/src/lib/components/submenu/submenu-container/public-api.d.ts +2 -0
  1232. package/src/lib/components/submenu/submenu-container/submenu-container.component.d.ts +9 -0
  1233. package/src/lib/components/submenu/submenu-container/submenu-container.module.d.ts +8 -0
  1234. package/src/lib/components/submenu/submenu-heading/index.d.ts +5 -0
  1235. package/src/lib/components/submenu/submenu-heading/public-api.d.ts +2 -0
  1236. package/src/lib/components/submenu/submenu-heading/submenu-heading.component.d.ts +9 -0
  1237. package/src/lib/components/submenu/submenu-heading/submenu-heading.module.d.ts +8 -0
  1238. package/src/lib/components/submenu/submenu-item/index.d.ts +5 -0
  1239. package/src/lib/components/submenu/submenu-item/public-api.d.ts +2 -0
  1240. package/src/lib/components/submenu/submenu-item/submenu-item.component.d.ts +16 -0
  1241. package/src/lib/components/submenu/submenu-item/submenu-item.module.d.ts +9 -0
  1242. package/src/lib/components/submenu/submenu-secondary-item/index.d.ts +5 -0
  1243. package/src/lib/components/submenu/submenu-secondary-item/public-api.d.ts +2 -0
  1244. package/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.d.ts +18 -0
  1245. package/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.d.ts +9 -0
  1246. package/src/lib/components/tags/tag-container/index.d.ts +5 -0
  1247. package/src/lib/components/tags/tag-container/public-api.d.ts +2 -0
  1248. package/src/lib/components/tags/tag-container/tag-container.component.d.ts +5 -0
  1249. package/src/lib/components/tags/tag-container/tag-container.module.d.ts +8 -0
  1250. package/src/lib/components/timeline-stepper/index.d.ts +5 -0
  1251. package/src/lib/components/timeline-stepper/public-api.d.ts +4 -0
  1252. package/src/lib/components/timeline-stepper/timeline-helpers.d.ts +24 -0
  1253. package/src/lib/components/timeline-stepper/timeline-step.type.d.ts +43 -0
  1254. package/src/lib/components/timeline-stepper/timeline-stepper.component.d.ts +61 -0
  1255. package/src/lib/components/timeline-stepper/timeline-stepper.module.d.ts +11 -0
  1256. package/src/lib/components/vertical-stepper/index.d.ts +5 -0
  1257. package/src/lib/components/vertical-stepper/public-api.d.ts +4 -0
  1258. package/src/lib/components/vertical-stepper/vertical-helpers.d.ts +24 -0
  1259. package/src/lib/components/vertical-stepper/vertical-step.type.d.ts +45 -0
  1260. package/src/lib/components/vertical-stepper/vertical-stepper.component.d.ts +58 -0
  1261. package/src/lib/components/vertical-stepper/vertical-stepper.module.d.ts +11 -0
  1262. package/src/lib/components/widgets/widget-actions/index.d.ts +5 -0
  1263. package/src/lib/components/widgets/widget-actions/public-api.d.ts +2 -0
  1264. package/src/lib/components/widgets/widget-actions/widget-actions.component.d.ts +5 -0
  1265. package/src/lib/components/widgets/widget-actions/widget-actions.module.d.ts +7 -0
  1266. package/src/lib/components/widgets/widget-bar/index.d.ts +5 -0
  1267. package/src/lib/components/widgets/widget-bar/public-api.d.ts +2 -0
  1268. package/src/lib/components/widgets/widget-bar/widget-bar.component.d.ts +9 -0
  1269. package/src/lib/components/widgets/widget-bar/widget-bar.module.d.ts +8 -0
  1270. package/src/lib/components/widgets/widget-container/index.d.ts +5 -0
  1271. package/src/lib/components/widgets/widget-container/public-api.d.ts +2 -0
  1272. package/src/lib/components/widgets/widget-container/widget-container.component.d.ts +5 -0
  1273. package/src/lib/components/widgets/widget-container/widget-container.module.d.ts +8 -0
  1274. package/src/lib/components/widgets/widget-footer/index.d.ts +5 -0
  1275. package/src/lib/components/widgets/widget-footer/public-api.d.ts +2 -0
  1276. package/src/lib/components/widgets/widget-footer/widget-footer.component.d.ts +5 -0
  1277. package/src/lib/components/widgets/widget-footer/widget-footer.module.d.ts +8 -0
  1278. package/src/lib/components/widgets/widget-header/index.d.ts +5 -0
  1279. package/src/lib/components/widgets/widget-header/public-api.d.ts +2 -0
  1280. package/src/lib/components/widgets/widget-header/widget-header.component.d.ts +5 -0
  1281. package/src/lib/components/widgets/widget-header/widget-header.module.d.ts +8 -0
  1282. package/src/lib/components/widgets/widget-preview/index.d.ts +5 -0
  1283. package/src/lib/components/widgets/widget-preview/public-api.d.ts +2 -0
  1284. package/src/lib/components/widgets/widget-preview/widget-preview.component.d.ts +28 -0
  1285. package/src/lib/components/widgets/widget-preview/widget-preview.module.d.ts +8 -0
  1286. package/src/lib/components/widgets/widget-thumbnail/index.d.ts +5 -0
  1287. package/src/lib/components/widgets/widget-thumbnail/public-api.d.ts +2 -0
  1288. package/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.d.ts +68 -0
  1289. package/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.d.ts +10 -0
  1290. package/src/lib/components/widgets/widget-thumbnail-container/index.d.ts +5 -0
  1291. package/src/lib/components/widgets/widget-thumbnail-container/public-api.d.ts +2 -0
  1292. package/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.d.ts +5 -0
  1293. package/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.d.ts +8 -0
  1294. package/src/lib/components/widgets/widget-title/index.d.ts +5 -0
  1295. package/src/lib/components/widgets/widget-title/public-api.d.ts +2 -0
  1296. package/src/lib/components/widgets/widget-title/widget-title.component.d.ts +13 -0
  1297. package/src/lib/components/widgets/widget-title/widget-title.module.d.ts +8 -0
  1298. package/src/lib/components/wizard-stepper/index.d.ts +5 -0
  1299. package/src/lib/components/wizard-stepper/public-api.d.ts +3 -0
  1300. package/src/lib/components/wizard-stepper/wizard-stepper.component.d.ts +12 -0
  1301. package/src/lib/components/wizard-stepper/wizard-stepper.module.d.ts +10 -0
  1302. package/src/lib/components/wizard-stepper/wizard-stepper.types.d.ts +4 -0
@@ -0,0 +1,398 @@
1
+ import { Input, Component, ChangeDetectorRef, ViewChild, ElementRef, inject, } from '@angular/core';
2
+ import { AbstractInputComponent } from '../../abstracts/abstract.input.component';
3
+ import { Validators } from '@angular/forms';
4
+ import { adsIconCross, adsIconDatepicker, adsIconTimepicker } from '@ascentgl/ads-icons/icons';
5
+ import { add } from 'date-fns';
6
+ import { FORMAT_DATETIME } from './custom-datetime-format';
7
+ import { MatDatetimepickerComponent } from '@mat-datetimepicker/core';
8
+ import { DatetimeTemplateFormatter } from './datetime-template.formatter';
9
+ import * as i0 from "@angular/core";
10
+ import * as i1 from "@angular/common";
11
+ import * as i2 from "@angular/material/form-field";
12
+ import * as i3 from "@angular/material/input";
13
+ import * as i4 from "@angular/forms";
14
+ import * as i5 from "@ascentgl/ads-icons";
15
+ import * as i6 from "@mat-datetimepicker/core";
16
+ import * as i7 from "./datetime-picker-format-directive";
17
+ import * as i8 from "@angular/material/button";
18
+ import * as i9 from "../../common/input.tooltip.component";
19
+ import * as i10 from "../../common/error/error.component";
20
+ import * as i11 from "../../common/hint/hint.component";
21
+ import * as i12 from "../../common/success/success.component";
22
+ export class AdsDatetimepickerComponent extends AbstractInputComponent {
23
+ constructor() {
24
+ super();
25
+ /** Choose between 12 and 24 hour time input mode. NOTE: twelveHour=true may have minor issues when allowPastValues=false */
26
+ this.twelveHour = false;
27
+ /** Allow or forbid choosing date values from the past */
28
+ this.allowPastValues = true;
29
+ /** Set to inputting value manually */
30
+ this.allowManualInput = true;
31
+ /** Whether to use key shortcuts ("y", "n", "t") for setting the value */
32
+ this.useShortcuts = true;
33
+ /** Set to use custom display format, overriding the one, provided by locale */
34
+ this.overrideDisplayFormat = true;
35
+ /** Show or hide time picker */
36
+ this.showTimePicker = true;
37
+ /** if overrideDisplayFormat=true, this display format will be used */
38
+ this.customDisplayFormat = FORMAT_DATETIME;
39
+ /** @ignore */
40
+ this.customDisplayFormatOverride = {};
41
+ /** @ignore */
42
+ this.type = 'datetime';
43
+ /** @ignore */
44
+ this.shortcuts = {
45
+ y: -1, //yesterday
46
+ n: 0, //now
47
+ t: 1, //tomorrow
48
+ };
49
+ /** @ignore */
50
+ this.defaultErrorMessages = {
51
+ matDatepickerParse: 'Date and Time must appear in this format: MM/DD/YYYY HH:mm',
52
+ matDatepickerMin: 'The value is too old',
53
+ };
54
+ /** @ignore */
55
+ this.subscriptions = [];
56
+ /** @ignore */
57
+ this.isDisplayValueChangeRegistered = false;
58
+ this.cdr = inject(ChangeDetectorRef);
59
+ this.templateFormatter = new DatetimeTemplateFormatter();
60
+ this.registry.register([adsIconCross, adsIconDatepicker, adsIconTimepicker]);
61
+ }
62
+ /** @ignore */
63
+ ngOnInit() {
64
+ this.setupSubscriptions();
65
+ this.applyCustomFormat();
66
+ this.cdr.detectChanges();
67
+ }
68
+ /** @ignore */
69
+ ngOnChanges(changes) {
70
+ if (changes.customDisplayFormat || changes.showTimePicker) {
71
+ this.applyCustomFormat();
72
+ }
73
+ if (changes.offset && !changes.offset.isFirstChange()) {
74
+ this.syncDisplayedValue();
75
+ }
76
+ super.ngOnChanges(changes);
77
+ }
78
+ /** @ignore */
79
+ ngOnDestroy() {
80
+ this.subscriptions.forEach((subscription) => subscription.unsubscribe());
81
+ }
82
+ /** @ignore */
83
+ toggle(event) {
84
+ event.stopPropagation();
85
+ if (this.picker?.opened) {
86
+ this.picker.close();
87
+ }
88
+ else {
89
+ this.picker?.open();
90
+ }
91
+ }
92
+ /** @ignore */
93
+ get showExclamation() {
94
+ return this.showExclamationOnError && this.displayControl.invalid && this.displayControl.touched;
95
+ }
96
+ get canClear() {
97
+ return this.showClearButton && !!this.input?.nativeElement.value;
98
+ }
99
+ /** @ignore */
100
+ canShowError() {
101
+ return !!this.displayControl.errors && (this.displayControl.touched || this.immediateValidation);
102
+ }
103
+ /** @ignore */
104
+ displayFirstError(control = this.displayControl) {
105
+ /**
106
+ * if we have format error - make sure to show it first
107
+ */
108
+ if (this.displayControl.errors?.matDatepickerParse) {
109
+ this.displayControl.setErrors({ matDatepickerParse: this.displayControl.errors?.matDatepickerParse });
110
+ }
111
+ return super.displayFirstError(control);
112
+ }
113
+ /** @ignore */
114
+ onKeyDown(event) {
115
+ if (!(event.target instanceof HTMLInputElement)) {
116
+ return;
117
+ }
118
+ /**
119
+ * blur input to make sure the value is applied
120
+ */
121
+ if (event.key === 'Enter' && event.target instanceof HTMLInputElement) {
122
+ this.setMinValue();
123
+ event.target.blur();
124
+ return;
125
+ }
126
+ if (!this.useShortcuts) {
127
+ return;
128
+ }
129
+ const shortcutOffset = this.shortcuts[event.key.toLowerCase()];
130
+ /**
131
+ * if one of the shortcuts was clicked - set current date value accordingly
132
+ */
133
+ if (shortcutOffset !== undefined) {
134
+ /**
135
+ * create date object. taking into account shortcut offset (yesterday, now, tomorrow)
136
+ */
137
+ const value = this.createDate(shortcutOffset);
138
+ /**
139
+ * set date object to required offset value, and apply it to valueControl
140
+ * (it will eventually sync displayControl too)
141
+ */
142
+ this.onChanged(this.dateToRequiredOffset(value).toISOString());
143
+ event.preventDefault();
144
+ }
145
+ }
146
+ /** @ignore */
147
+ touchControls() {
148
+ if (!this.displayControl.touched) {
149
+ this.displayControl.markAsTouched();
150
+ }
151
+ if (!this.valueControl.touched) {
152
+ this.valueControl.markAsTouched();
153
+ }
154
+ if (!this.displayControl.dirty) {
155
+ this.displayControl.markAsDirty();
156
+ }
157
+ if (!this.valueControl.dirty) {
158
+ this.valueControl.markAsDirty();
159
+ }
160
+ }
161
+ /** @ignore */
162
+ clear(event) {
163
+ /**
164
+ * stop even propagation so that calendar won't open on "clear" button click
165
+ */
166
+ event.stopPropagation();
167
+ this.displayControl.setValue(null);
168
+ this.onChanged(this.displayControl.value);
169
+ }
170
+ /** @ignore */
171
+ mousedown(event) {
172
+ event.preventDefault();
173
+ }
174
+ /** @ignore */
175
+ onOpened() {
176
+ this.templateFormatter.reset();
177
+ this.setMinValue();
178
+ this.isDisplayValueChangeRegistered = false;
179
+ }
180
+ /** @ignore */
181
+ onClosed() {
182
+ /**
183
+ * NOTE: this is needed to override an issue when closing a dropdown passes focus to input
184
+ * when allowManualInput is false
185
+ */
186
+ if (!this.allowManualInput) {
187
+ this.input?.nativeElement.blur();
188
+ }
189
+ /**
190
+ * if control value is empty, displayControl with be cleared (brought to initial state)
191
+ */
192
+ this.syncEmptyValues();
193
+ /**
194
+ * focus on control value and select time part
195
+ */
196
+ if (!this.showTimePicker && this.isDisplayValueChangeRegistered && this.type !== 'date') {
197
+ this.input?.nativeElement.focus();
198
+ const spacePosition = this.input?.nativeElement.value.lastIndexOf(' ');
199
+ const totalLength = this.input?.nativeElement.value.length;
200
+ if (spacePosition > -1) {
201
+ this.input?.nativeElement.setSelectionRange(spacePosition + 1, spacePosition + (totalLength - spacePosition));
202
+ }
203
+ }
204
+ }
205
+ /** @ignore */
206
+ onChanged(event) {
207
+ const value = event === null ? null : typeof event == 'string' ? event : event.value;
208
+ /**
209
+ * sync valueControl errors with displayControl errors
210
+ * NOTE: this is needed for "invalid format" errors that are calculated for displayControl
211
+ * by MatDatetimepicker component
212
+ */
213
+ this.valueControl.setErrors(this.displayControl.errors);
214
+ this.onDisplayedValueChange(value ? new Date(value) : null);
215
+ /**
216
+ * mark controls as touched and dirty to ensure proper error display
217
+ */
218
+ this.touchControls();
219
+ }
220
+ onViewChanged(view) {
221
+ this.templateFormatter.run(view);
222
+ }
223
+ /** @ignore */
224
+ touchInvalid(control) {
225
+ super.touchInvalid(control);
226
+ super.touchInvalid(this.displayControl);
227
+ }
228
+ /** @ignore */
229
+ applyCustomFormat() {
230
+ this.customDisplayFormatOverride = {};
231
+ if (this.overrideDisplayFormat) {
232
+ this.customDisplayFormatOverride.datetimeInput = this.customDisplayFormat;
233
+ }
234
+ if (!this.showTimePicker) {
235
+ if (this.overrideDisplayFormat) {
236
+ this.customDisplayFormatOverride.dateInput = this.customDisplayFormat;
237
+ }
238
+ else {
239
+ this.customDisplayFormatOverride.dateInput = FORMAT_DATETIME;
240
+ }
241
+ }
242
+ }
243
+ /** @ignore */
244
+ setControlValue(control, value = null, emitEvent = true) {
245
+ if (control.value !== value) {
246
+ control.setValue(value, { emitEvent: emitEvent });
247
+ }
248
+ }
249
+ /** @ignore */
250
+ onSyncDisplayedValue(valueToApply = this.valueControl.value) {
251
+ /**
252
+ * always make sure that date string is in UTC format
253
+ */
254
+ const value = new Date(valueToApply + (valueToApply.endsWith('Z') ? '' : 'Z'));
255
+ this.setControlValue(this.displayControl, this.dateToRequiredOffset(value).toISOString());
256
+ }
257
+ /** @ignore */
258
+ onDisplayedValueChange(value) {
259
+ let newValue = null;
260
+ if (value) {
261
+ newValue = this.displayedValueToControlValue(value);
262
+ }
263
+ /**
264
+ * only set value if it did change
265
+ */
266
+ if (newValue === this.valueControl.value) {
267
+ return;
268
+ }
269
+ /**
270
+ * set control value reverting offset calculation
271
+ */
272
+ this.setControlValue(this.valueControl, newValue);
273
+ }
274
+ /** @ignore */
275
+ displayedValueToControlValue(value) {
276
+ return this.dateToActualOffset(value).toISOString();
277
+ }
278
+ /** @ignore */
279
+ setMinValue() {
280
+ /**
281
+ * calculate minimum allowed datetime if needed
282
+ */
283
+ if (!this.allowPastValues) {
284
+ this.minDate = this.dateToRequiredOffset().toISOString();
285
+ }
286
+ }
287
+ /** @ignore */
288
+ addOffset(date, offset) {
289
+ return add(date, { minutes: offset });
290
+ }
291
+ /** @ignore */
292
+ removeOffset(date, offset) {
293
+ return add(date, { minutes: offset * -1 });
294
+ }
295
+ /** @ignore */
296
+ getActualDateOffset(value = this.createDate()) {
297
+ return value.getTimezoneOffset() * -1;
298
+ }
299
+ /** @ignore */
300
+ getRequiredOffset(value = this.createDate()) {
301
+ return this.offset ? this.offset * 60 : this.getActualDateOffset(value);
302
+ }
303
+ /** @ignore */
304
+ createDate(daysShift = 0) {
305
+ let value = new Date();
306
+ if (daysShift) {
307
+ value = this.addOffset(value, daysShift * 24 * 60);
308
+ }
309
+ return value;
310
+ }
311
+ /** @ignore */
312
+ setupSubscriptions() {
313
+ /**
314
+ *
315
+ *sync display control statuses with value control status for proper error display
316
+ * make sure "displayControl" disabled state and value are synchronized with "control" disabled state and value
317
+ */
318
+ this.subscriptions.push(this.valueControl.statusChanges.subscribe(() => this.syncState()));
319
+ this.subscriptions.push(this.valueControl.valueChanges.subscribe(() => this.syncDisplayedValue()));
320
+ /**
321
+ * NOTE: registering display value change is needed to know when to focus time part of datetime if showTimePicker is false
322
+ */
323
+ this.subscriptions.push(this.displayControl.valueChanges.subscribe(() => (this.isDisplayValueChangeRegistered = true)));
324
+ /**
325
+ * make sure displayControl has the same validators as control
326
+ */
327
+ this.displayControl.addValidators(this.valueControl.validator ?? []);
328
+ /**
329
+ * required validator must be set manually in this component
330
+ * because valueControl is disconnected from input field
331
+ */
332
+ if (this.required) {
333
+ this.valueControl.addValidators(Validators.required);
334
+ }
335
+ this.valueControl.updateValueAndValidity({ emitEvent: false });
336
+ this.displayControl.updateValueAndValidity({ emitEvent: false });
337
+ /**
338
+ * perform initial synchronizations
339
+ */
340
+ this.syncState();
341
+ this.syncDisplayedValue();
342
+ }
343
+ /** @ignore */
344
+ syncDisplayedValue() {
345
+ /**
346
+ * if control value is empty, displayControl with be cleared (brought to initial state)
347
+ */
348
+ if (this.syncEmptyValues())
349
+ return;
350
+ this.onSyncDisplayedValue();
351
+ }
352
+ /** @ignore */
353
+ syncEmptyValues() {
354
+ if (this.valueControl.value)
355
+ return false;
356
+ this.setControlValue(this.displayControl, this.valueControl.value, false);
357
+ return true;
358
+ }
359
+ /** @ignore */
360
+ dateToRequiredOffset(value = this.createDate()) {
361
+ value = this.removeOffset(value, this.getActualDateOffset(value));
362
+ return this.addOffset(value, this.getRequiredOffset(value));
363
+ }
364
+ /** @ignore */
365
+ dateToActualOffset(value = this.createDate()) {
366
+ value = this.addOffset(value, this.getActualDateOffset(value));
367
+ return this.removeOffset(value, this.getRequiredOffset(value));
368
+ }
369
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDatetimepickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
370
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsDatetimepickerComponent, selector: "ads-datetimepicker", inputs: { twelveHour: "twelveHour", offset: "offset", allowPastValues: "allowPastValues", allowManualInput: "allowManualInput", useShortcuts: "useShortcuts", overrideDisplayFormat: "overrideDisplayFormat", showTimePicker: "showTimePicker", customDisplayFormat: "customDisplayFormat" }, viewQueries: [{ propertyName: "picker", first: true, predicate: MatDatetimepickerComponent, descendants: true }, { propertyName: "input", first: true, predicate: ["input"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<div [ngStyle]=\"{ minWidth: width }\">\n <mat-form-field\n [ngClass]=\"{\n 'immediate-validation': immediateValidation,\n 'no-left-padding': !showExclamation,\n invalid: canShowError(),\n manual: allowManualInput,\n 'success-label': canShowSuccess(),\n 'x-small': smallSize,\n }\"\n [ngStyle]=\"{ width: width }\"\n >\n @if ((label || required) && !smallSize) {\n <mat-label>{{ label }}</mat-label>\n }\n <mat-datetimepicker\n #datetimePicker\n (viewChanged)=\"onViewChanged($event)\"\n (opened)=\"onOpened()\"\n (closed)=\"onClosed()\"\n [type]=\"type === 'datetime' ? (showTimePicker ? 'datetime' : 'date') : type\"\n [openOnFocus]=\"!allowManualInput\"\n [twelvehour]=\"twelveHour\"\n [timeInterval]=\"5\"\n [mode]=\"'portrait'\"\n />\n <input\n (dateChange)=\"onChanged($event)\"\n dateTimePickerFormat\n [overrideDisplayFormat]=\"overrideDisplayFormat || (type === 'datetime' ? !showTimePicker : false)\"\n [customDisplayFormat]=\"customDisplayFormatOverride\"\n [ngClass]=\"{ invisible: !valueControl.value }\"\n #input\n matInput\n (keydown)=\"allowManualInput ? onKeyDown($event) : null\"\n (input)=\"touchControls()\"\n (blur)=\"touchControls()\"\n [tabIndex]=\"allowManualInput ? 0 : -1\"\n [min]=\"minDate || null\"\n [readonly]=\"!allowManualInput\"\n [formControl]=\"displayControl\"\n [matDatetimepicker]=\"datetimePicker\"\n autocomplete=\"false\"\n [id]=\"id\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n />\n @if (type === 'time') {\n <button\n matTextSuffix\n type=\"button\"\n mat-icon-button\n (click)=\"toggle($event)\"\n [disabled]=\"!showTimePicker\"\n class=\"action-icon\"\n >\n <ads-icon class=\"picker\" name=\"timepicker\" [size]=\"smallSize ? 'xxs' : 'sm'\" [stroke]=\"'iconPrimary'\" />\n </button>\n } @else {\n <button matTextSuffix type=\"button\" mat-icon-button (click)=\"toggle($event)\" class=\"action-icon\">\n <ads-icon class=\"picker\" name=\"datepicker\" [size]=\"smallSize ? 'xxs' : 'sm'\" [stroke]=\"'iconPrimary'\" />\n @if (type === 'datetime') {\n <ads-icon\n class=\"sub-timepicker mat-mdc-button-persistent-ripple picker\"\n name=\"timepicker\"\n size=\"xxs\"\n [stroke]=\"'iconPrimary'\"\n />\n }\n </button>\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 </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@if (tooltip) {\n <ads-input-tooltip [tooltip]=\"tooltip\" />\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", "button .sub-timepicker{position:absolute;top:18%;left:18%;background-color:var(--color-white);border-radius:50%}mat-form-field:not(.manual) ::ng-deep .mdc-text-field{cursor:pointer}mat-form-field:not(.manual) ::ng-deep .mdc-text-field input{cursor:pointer}::ng-deep .mdc-text-field:hover button .sub-timepicker{background-color:var(--color-light-30)}\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.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.MatDatetimepickerComponent, selector: "mat-datetimepicker", inputs: ["multiYearSelector", "twelvehour", "startView", "mode", "timeInterval", "ariaNextMonthLabel", "ariaPrevMonthLabel", "ariaNextYearLabel", "ariaPrevYearLabel", "preventSameDateTimeSelection", "panelClass", "startAt", "openOnFocus", "type", "touchUi", "disabled"], outputs: ["selectedChanged", "opened", "closed", "viewChanged"], exportAs: ["matDatetimepicker"] }, { kind: "directive", type: i6.MatDatetimepickerInputDirective, selector: "input[matDatetimepicker]", inputs: ["matDatetimepicker", "matDatepickerFilter", "value", "min", "max", "disabled"], outputs: ["dateChange", "dateInput"], exportAs: ["matDatepickerInput"] }, { kind: "directive", type: i7.DateTimePickerFormatDirective, selector: "[dateTimePickerFormat]", inputs: ["customDisplayFormat", "overrideDisplayFormat"] }, { kind: "component", type: i8.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }, { kind: "component", type: i9.AdsInputTooltipComponent, selector: "ads-input-tooltip", inputs: ["tooltip", "smallSize"] }, { kind: "component", type: i10.AdsErrorComponent, selector: "ads-error", inputs: ["error"] }, { kind: "component", type: i11.AdsHintComponent, selector: "ads-hint", inputs: ["control", "hint"] }, { kind: "component", type: i12.AdsSuccessComponent, selector: "ads-success", inputs: ["success"] }] }); }
371
+ }
372
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDatetimepickerComponent, decorators: [{
373
+ type: Component,
374
+ args: [{ selector: 'ads-datetimepicker', template: "<div [ngStyle]=\"{ minWidth: width }\">\n <mat-form-field\n [ngClass]=\"{\n 'immediate-validation': immediateValidation,\n 'no-left-padding': !showExclamation,\n invalid: canShowError(),\n manual: allowManualInput,\n 'success-label': canShowSuccess(),\n 'x-small': smallSize,\n }\"\n [ngStyle]=\"{ width: width }\"\n >\n @if ((label || required) && !smallSize) {\n <mat-label>{{ label }}</mat-label>\n }\n <mat-datetimepicker\n #datetimePicker\n (viewChanged)=\"onViewChanged($event)\"\n (opened)=\"onOpened()\"\n (closed)=\"onClosed()\"\n [type]=\"type === 'datetime' ? (showTimePicker ? 'datetime' : 'date') : type\"\n [openOnFocus]=\"!allowManualInput\"\n [twelvehour]=\"twelveHour\"\n [timeInterval]=\"5\"\n [mode]=\"'portrait'\"\n />\n <input\n (dateChange)=\"onChanged($event)\"\n dateTimePickerFormat\n [overrideDisplayFormat]=\"overrideDisplayFormat || (type === 'datetime' ? !showTimePicker : false)\"\n [customDisplayFormat]=\"customDisplayFormatOverride\"\n [ngClass]=\"{ invisible: !valueControl.value }\"\n #input\n matInput\n (keydown)=\"allowManualInput ? onKeyDown($event) : null\"\n (input)=\"touchControls()\"\n (blur)=\"touchControls()\"\n [tabIndex]=\"allowManualInput ? 0 : -1\"\n [min]=\"minDate || null\"\n [readonly]=\"!allowManualInput\"\n [formControl]=\"displayControl\"\n [matDatetimepicker]=\"datetimePicker\"\n autocomplete=\"false\"\n [id]=\"id\"\n [required]=\"required\"\n [placeholder]=\"placeholder\"\n />\n @if (type === 'time') {\n <button\n matTextSuffix\n type=\"button\"\n mat-icon-button\n (click)=\"toggle($event)\"\n [disabled]=\"!showTimePicker\"\n class=\"action-icon\"\n >\n <ads-icon class=\"picker\" name=\"timepicker\" [size]=\"smallSize ? 'xxs' : 'sm'\" [stroke]=\"'iconPrimary'\" />\n </button>\n } @else {\n <button matTextSuffix type=\"button\" mat-icon-button (click)=\"toggle($event)\" class=\"action-icon\">\n <ads-icon class=\"picker\" name=\"datepicker\" [size]=\"smallSize ? 'xxs' : 'sm'\" [stroke]=\"'iconPrimary'\" />\n @if (type === 'datetime') {\n <ads-icon\n class=\"sub-timepicker mat-mdc-button-persistent-ripple picker\"\n name=\"timepicker\"\n size=\"xxs\"\n [stroke]=\"'iconPrimary'\"\n />\n }\n </button>\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 </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@if (tooltip) {\n <ads-input-tooltip [tooltip]=\"tooltip\" />\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", "button .sub-timepicker{position:absolute;top:18%;left:18%;background-color:var(--color-white);border-radius:50%}mat-form-field:not(.manual) ::ng-deep .mdc-text-field{cursor:pointer}mat-form-field:not(.manual) ::ng-deep .mdc-text-field input{cursor:pointer}::ng-deep .mdc-text-field:hover button .sub-timepicker{background-color:var(--color-light-30)}\n"] }]
375
+ }], ctorParameters: () => [], propDecorators: { picker: [{
376
+ type: ViewChild,
377
+ args: [MatDatetimepickerComponent]
378
+ }], twelveHour: [{
379
+ type: Input
380
+ }], offset: [{
381
+ type: Input
382
+ }], allowPastValues: [{
383
+ type: Input
384
+ }], allowManualInput: [{
385
+ type: Input
386
+ }], useShortcuts: [{
387
+ type: Input
388
+ }], overrideDisplayFormat: [{
389
+ type: Input
390
+ }], showTimePicker: [{
391
+ type: Input
392
+ }], customDisplayFormat: [{
393
+ type: Input
394
+ }], input: [{
395
+ type: ViewChild,
396
+ args: ['input']
397
+ }] } });
398
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWVwaWNrZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGRzL2RhdGVwaWNrZXJzL2RhdGV0aW1lLXBpY2tlci9kYXRldGltZXBpY2tlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvZGF0ZXBpY2tlcnMvZGF0ZXRpbWUtcGlja2VyL2RhdGV0aW1lcGlja2VyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxLQUFLLEVBQ0wsU0FBUyxFQUtULGlCQUFpQixFQUNqQixTQUFTLEVBQ1QsVUFBVSxFQUNWLE1BQU0sR0FDUCxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSwwQ0FBMEMsQ0FBQztBQUNsRixPQUFPLEVBQWUsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFFekQsT0FBTyxFQUFFLFlBQVksRUFBRSxpQkFBaUIsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRy9GLE9BQU8sRUFBRSxHQUFHLEVBQUUsTUFBTSxVQUFVLENBQUM7QUFDL0IsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSwwQkFBMEIsRUFBK0IsTUFBTSwwQkFBMEIsQ0FBQztBQUVuRyxPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQzs7Ozs7Ozs7Ozs7Ozs7QUFPMUUsTUFBTSxPQUFPLDBCQUEyQixTQUFRLHNCQUFzQjtJQStEcEU7UUFDRSxLQUFLLEVBQUUsQ0FBQztRQTVEViw0SEFBNEg7UUFDbkgsZUFBVSxHQUFHLEtBQUssQ0FBQztRQUs1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Q0FBQyxZQUFZLENBQUMsS0FBSyxFQUFFLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQ2pFLENBQUM7OEdBMWJVLDBCQUEwQjtrR0FBMUIsMEJBQTBCLGdZQUUxQiwwQkFBMEIsNktDL0J2QyxnekdBNkZBOzsyRkRoRWEsMEJBQTBCO2tCQUx0QyxTQUFTOytCQUNFLG9CQUFvQjt3REFNUyxNQUFNO3NCQUE1QyxTQUFTO3VCQUFDLDBCQUEwQjtnQkFHNUIsVUFBVTtzQkFBbEIsS0FBSztnQkFHRyxNQUFNO3NCQUFkLEtBQUs7Z0JBR0csZUFBZTtzQkFBdkIsS0FBSztnQkFHRyxnQkFBZ0I7c0JBQXhCLEtBQUs7Z0JBR0csWUFBWTtzQkFBcEIsS0FBSztnQkFHRyxxQkFBcUI7c0JBQTdCLEtBQUs7Z0JBR0csY0FBYztzQkFBdEIsS0FBSztnQkFHRyxtQkFBbUI7c0JBQTNCLEtBQUs7Z0JBR2MsS0FBSztzQkFBeEIsU0FBUzt1QkFBQyxPQUFPIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgSW5wdXQsXG4gIENvbXBvbmVudCxcbiAgT25Jbml0LFxuICBPbkRlc3Ryb3ksXG4gIFNpbXBsZUNoYW5nZSxcbiAgT25DaGFuZ2VzLFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgVmlld0NoaWxkLFxuICBFbGVtZW50UmVmLFxuICBpbmplY3QsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWJzdHJhY3RJbnB1dENvbXBvbmVudCB9IGZyb20gJy4uLy4uL2Fic3RyYWN0cy9hYnN0cmFjdC5pbnB1dC5jb21wb25lbnQnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wsIFZhbGlkYXRvcnMgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBTdWJzY3JpcHRpb24gfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IGFkc0ljb25Dcm9zcywgYWRzSWNvbkRhdGVwaWNrZXIsIGFkc0ljb25UaW1lcGlja2VyIH0gZnJvbSAnQGFzY2VudGdsL2Fkcy1pY29ucy9pY29ucyc7XG5pbXBvcnQgeyBNYXREYXRldGltZXBpY2tlclR5cGUgfSBmcm9tICdAbWF0LWRhdGV0aW1lcGlja2VyL2NvcmUvZGF0ZXRpbWVwaWNrZXIvZGF0ZXRpbWVwaWNrZXItdHlwZSc7XG5pbXBvcnQgeyBHRU5FUklDX0NPTExFQ1RJT04gfSBmcm9tICdAYXNjZW50Z2wvYWRzLXV0aWxzJztcbmltcG9ydCB7IGFkZCB9IGZyb20gJ2RhdGUtZm5zJztcbmltcG9ydCB7IEZPUk1BVF9EQVRFVElNRSB9IGZyb20gJy4vY3VzdG9tLWRhdGV0aW1lLWZvcm1hdCc7XG5pbXBvcnQgeyBNYXREYXRldGltZXBpY2tlckNvbXBvbmVudCwgTWF0RGF0ZXRpbWVwaWNrZXJJbnB1dEV2ZW50IH0gZnJvbSAnQG1hdC1kYXRldGltZXBpY2tlci9jb3JlJztcbmltcG9ydCB7IE1hdENhbGVuZGFyVmlldyB9IGZyb20gJ0BtYXQtZGF0ZXRpbWVwaWNrZXIvY29yZS9kYXRldGltZXBpY2tlci9jYWxlbmRhcic7XG5pbXBvcnQgeyBEYXRldGltZVRlbXBsYXRlRm9ybWF0dGVyIH0gZnJvbSAnLi9kYXRldGltZS10ZW1wbGF0ZS5mb3JtYXR0ZXInO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhZHMtZGF0ZXRpbWVwaWNrZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vZGF0ZXRpbWVwaWNrZXIuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi4vLi4vaW5wdXQvaW5wdXQuY29tcG9uZW50LnNjc3MnLCAnLi9kYXRldGltZXBpY2tlci5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNEYXRldGltZXBpY2tlckNvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0SW5wdXRDb21wb25lbnQgaW1wbGVtZW50cyBPbkNoYW5nZXMsIE9uSW5pdCwgT25EZXN0cm95IHtcbiAgLyoqIEBpZ25vcmUgKi9cbiAgQFZpZXdDaGlsZChNYXREYXRldGltZXBpY2tlckNvbXBvbmVudCkgcGlja2VyPzogTWF0RGF0ZXRpbWVwaWNrZXJDb21wb25lbnQ8dW5rbm93bj47XG5cbiAgLyoqIENob29zZSBiZXR3ZWVuIDEyIGFuZCAyNCBob3VyIHRpbWUgaW5wdXQgbW9kZS4gTk9URTogdHdlbHZlSG91cj10cnVlIG1heSBoYXZlIG1pbm9yIGlzc3VlcyB3aGVuIGFsbG93UGFzdFZhbHVlcz1mYWxzZSAqL1xuICBASW5wdXQoKSB0d2VsdmVIb3VyID0gZmFsc2U7XG5cbiAgLyoqIFNldCB0aW1lIG9mZnNldCByZWxhdGl2ZSB0byBHTVQuIElmIHBhcmFtZXRlciBpcyBvbWl0dGVkIG9mZnNldCB3aWxsIGJlIGNhbGN1bGF0ZWQgYmFzZWQgb24gYnJvd3NlciBpbmZvICovXG4gIEBJbnB1dCgpIG9mZnNldD86IG51bWJlcjtcblxuICAvKiogQWxsb3cgb3IgZm9yYmlkIGNob29zaW5nIGRhdGUgdmFsdWVzIGZyb20gdGhlIHBhc3QgKi9cbiAgQElucHV0KCkgYWxsb3dQYXN0VmFsdWVzID0gdHJ1ZTtcblxuICAvKiogU2V0IHRvIGlucHV0dGluZyB2YWx1ZSBtYW51YWxseSAqL1xuICBASW5wdXQoKSBhbGxvd01hbnVhbElucHV0ID0gdHJ1ZTtcblxuICAvKiogV2hldGhlciB0byB1c2Uga2V5IHNob3J0Y3V0cyAoXCJ5XCIsIFwiblwiLCBcInRcIikgZm9yIHNldHRpbmcgdGhlIHZhbHVlICovXG4gIEBJbnB1dCgpIHVzZVNob3J0Y3V0cyA9IHRydWU7XG5cbiAgLyoqIFNldCB0byB1c2UgY3VzdG9tIGRpc3BsYXkgZm9ybWF0LCBvdmVycmlkaW5nIHRoZSBvbmUsIHByb3ZpZGVkIGJ5IGxvY2FsZSAqL1xuICBASW5wdXQoKSBvdmVycmlkZURpc3BsYXlGb3JtYXQgPSB0cnVlO1xuXG4gIC8qKiBTaG93IG9yIGhpZGUgdGltZSBwaWNrZXIgKi9cbiAgQElucHV0KCkgc2hvd1RpbWVQaWNrZXIgPSB0cnVlO1xuXG4gIC8qKiBpZiBvdmVycmlkZURpc3BsYXlGb3JtYXQ9dHJ1ZSwgdGhpcyBkaXNwbGF5IGZvcm1hdCB3aWxsIGJlIHVzZWQgKi9cbiAgQElucHV0KCkgY3VzdG9tRGlzcGxheUZvcm1hdDogc3RyaW5nID0gRk9STUFUX0RBVEVUSU1FO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIEBWaWV3Q2hpbGQoJ2lucHV0JykgaW5wdXQ/OiBFbGVtZW50UmVmO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIGN1c3RvbURpc3BsYXlGb3JtYXRPdmVycmlkZTogR0VORVJJQ19DT0xMRUNUSU9OID0ge307XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgdHlwZTogTWF0RGF0ZXRpbWVwaWNrZXJUeXBlID0gJ2RhdGV0aW1lJztcblxuICAvKiogQGlnbm9yZSAqL1xuICBtaW5EYXRlPzogc3RyaW5nO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIHByb3RlY3RlZCBzaG9ydGN1dHM6IEdFTkVSSUNfQ09MTEVDVElPTiA9IHtcbiAgICB5OiAtMSwgLy95ZXN0ZXJkYXlcbiAgICBuOiAwLCAvL25vd1xuICAgIHQ6IDEsIC8vdG9tb3Jyb3dcbiAgfTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgZGVmYXVsdEVycm9yTWVzc2FnZXM6IEdFTkVSSUNfQ09MTEVDVElPTjxzdHJpbmc+ID0ge1xuICAgIG1hdERhdGVwaWNrZXJQYXJzZTogJ0RhdGUgYW5kIFRpbWUgbXVzdCBhcHBlYXIgaW4gdGhpcyBmb3JtYXQ6IE1NL0REL1lZWVkgSEg6bW0nLFxuICAgIG1hdERhdGVwaWNrZXJNaW46ICdUaGUgdmFsdWUgaXMgdG9vIG9sZCcsXG4gIH07XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBzdWJzY3JpcHRpb25zOiBTdWJzY3JpcHRpb25bXSA9IFtdO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIHByaXZhdGUgaXNEaXNwbGF5VmFsdWVDaGFuZ2VSZWdpc3RlcmVkID0gZmFsc2U7XG5cbiAgcHJpdmF0ZSBjZHIgPSBpbmplY3QoQ2hhbmdlRGV0ZWN0b3JSZWYpO1xuXG4gIHByaXZhdGUgdGVtcGxhdGVGb3JtYXR0ZXIgPSBuZXcgRGF0ZXRpbWVUZW1wbGF0ZUZvcm1hdHRlcigpO1xuXG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIHN1cGVyKCk7XG4gICAgdGhpcy5yZWdpc3RyeS5yZWdpc3RlcihbYWRzSWNvbkNyb3NzLCBhZHNJY29uRGF0ZXBpY2tlciwgYWRzSWNvblRpbWVwaWNrZXJdKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuc2V0dXBTdWJzY3JpcHRpb25zKCk7XG4gICAgdGhpcy5hcHBseUN1c3RvbUZvcm1hdCgpO1xuICAgIHRoaXMuY2RyLmRldGVjdENoYW5nZXMoKTtcbiAgfVxuICAvKiogQGlnbm9yZSAqL1xuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiB7XG4gICAgY3VzdG9tRGlzcGxheUZvcm1hdDogU2ltcGxlQ2hhbmdlO1xuICAgIG9mZnNldDogU2ltcGxlQ2hhbmdlO1xuICAgIHNob3dUaW1lUGlja2VyOiBTaW1wbGVDaGFuZ2U7XG4gICAgaW1tZWRpYXRlVmFsaWRhdGlvbjogU2ltcGxlQ2hhbmdlO1xuICB9KTogdm9pZCB7XG4gICAgaWYgKGNoYW5nZXMuY3VzdG9tRGlzcGxheUZvcm1hdCB8fCBjaGFuZ2VzLnNob3dUaW1lUGlja2VyKSB7XG4gICAgICB0aGlzLmFwcGx5Q3VzdG9tRm9ybWF0KCk7XG4gICAgfVxuXG4gICAgaWYgKGNoYW5nZXMub2Zmc2V0ICYmICFjaGFuZ2VzLm9mZnNldC5pc0ZpcnN0Q2hhbmdlKCkpIHtcbiAgICAgIHRoaXMuc3luY0Rpc3BsYXllZFZhbHVlKCk7XG4gICAgfVxuXG4gICAgc3VwZXIubmdPbkNoYW5nZXMoY2hhbmdlcyk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLnN1YnNjcmlwdGlvbnMuZm9yRWFjaCgoc3Vic2NyaXB0aW9uKSA9PiBzdWJzY3JpcHRpb24udW5zdWJzY3JpYmUoKSk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICB0b2dnbGUoZXZlbnQ6IE1vdXNlRXZlbnQpOiB2b2lkIHtcbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcbiAgICBpZiAodGhpcy5waWNrZXI/Lm9wZW5lZCkge1xuICAgICAgdGhpcy5waWNrZXIuY2xvc2UoKTtcbiAgICB9IGVsc2Uge1xuICAgICAgdGhpcy5waWNrZXI/Lm9wZW4oKTtcbiAgICB9XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBnZXQgc2hvd0V4Y2xhbWF0aW9uKCkge1xuICAgIHJldHVybiB0aGlzLnNob3dFeGNsYW1hdGlvbk9uRXJyb3IgJiYgdGhpcy5kaXNwbGF5Q29udHJvbC5pbnZhbGlkICYmIHRoaXMuZGlzcGxheUNvbnRyb2wudG91Y2hlZDtcbiAgfVxuXG4gIGdldCBjYW5DbGVhcigpIHtcbiAgICByZXR1cm4gdGhpcy5zaG93Q2xlYXJCdXR0b24gJiYgISF0aGlzLmlucHV0Py5uYXRpdmVFbGVtZW50LnZhbHVlO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgY2FuU2hvd0Vycm9yKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiAhIXRoaXMuZGlzcGxheUNvbnRyb2wuZXJyb3JzICYmICh0aGlzLmRpc3BsYXlDb250cm9sLnRvdWNoZWQgfHwgdGhpcy5pbW1lZGlhdGVWYWxpZGF0aW9uKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIGRpc3BsYXlGaXJzdEVycm9yKGNvbnRyb2w6IEZvcm1Db250cm9sID0gdGhpcy5kaXNwbGF5Q29udHJvbCk6IHN0cmluZyB7XG4gICAgLyoqXG4gICAgICogaWYgd2UgaGF2ZSBmb3JtYXQgZXJyb3IgLSBtYWtlIHN1cmUgdG8gc2hvdyBpdCBmaXJzdFxuICAgICAqL1xuICAgIGlmICh0aGlzLmRpc3BsYXlDb250cm9sLmVycm9ycz8ubWF0RGF0ZXBpY2tlclBhcnNlKSB7XG4gICAgICB0aGlzLmRpc3BsYXlDb250cm9sLnNldEVycm9ycyh7IG1hdERhdGVwaWNrZXJQYXJzZTogdGhpcy5kaXNwbGF5Q29udHJvbC5lcnJvcnM/Lm1hdERhdGVwaWNrZXJQYXJzZSB9KTtcbiAgICB9XG5cbiAgICByZXR1cm4gc3VwZXIuZGlzcGxheUZpcnN0RXJyb3IoY29udHJvbCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBvbktleURvd24oZXZlbnQ6IEtleWJvYXJkRXZlbnQpOiB2b2lkIHtcbiAgICBpZiAoIShldmVudC50YXJnZXQgaW5zdGFuY2VvZiBIVE1MSW5wdXRFbGVtZW50KSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIGJsdXIgaW5wdXQgdG8gbWFrZSBzdXJlIHRoZSB2YWx1ZSBpcyBhcHBsaWVkXG4gICAgICovXG4gICAgaWYgKGV2ZW50LmtleSA9PT0gJ0VudGVyJyAmJiBldmVudC50YXJnZXQgaW5zdGFuY2VvZiBIVE1MSW5wdXRFbGVtZW50KSB7XG4gICAgICB0aGlzLnNldE1pblZhbHVlKCk7XG4gICAgICBldmVudC50YXJnZXQuYmx1cigpO1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGlmICghdGhpcy51c2VTaG9ydGN1dHMpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBjb25zdCBzaG9ydGN1dE9mZnNldCA9IHRoaXMuc2hvcnRjdXRzW2V2ZW50LmtleS50b0xvd2VyQ2FzZSgpXTtcblxuICAgIC8qKlxuICAgICAqIGlmIG9uZSBvZiB0aGUgc2hvcnRjdXRzIHdhcyBjbGlja2VkIC0gc2V0IGN1cnJlbnQgZGF0ZSB2YWx1ZSBhY2NvcmRpbmdseVxuICAgICAqL1xuICAgIGlmIChzaG9ydGN1dE9mZnNldCAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICAvKipcbiAgICAgICAqIGNyZWF0ZSBkYXRlIG9iamVjdC4gdGFraW5nIGludG8gYWNjb3VudCBzaG9ydGN1dCBvZmZzZXQgKHllc3RlcmRheSwgbm93LCB0b21vcnJvdylcbiAgICAgICAqL1xuICAgICAgY29uc3QgdmFsdWU6IERhdGUgPSB0aGlzLmNyZWF0ZURhdGUoc2hvcnRjdXRPZmZzZXQpO1xuXG4gICAgICAvKipcbiAgICAgICAqIHNldCBkYXRlIG9iamVjdCB0byByZXF1aXJlZCBvZmZzZXQgdmFsdWUsIGFuZCBhcHBseSBpdCB0byB2YWx1ZUNvbnRyb2xcbiAgICAgICAqIChpdCB3aWxsIGV2ZW50dWFsbHkgc3luYyBkaXNwbGF5Q29udHJvbCB0b28pXG4gICAgICAgKi9cbiAgICAgIHRoaXMub25DaGFuZ2VkKHRoaXMuZGF0ZVRvUmVxdWlyZWRPZmZzZXQodmFsdWUpLnRvSVNPU3RyaW5nKCkpO1xuXG4gICAgICBldmVudC5wcmV2ZW50RGVmYXVsdCgpO1xuICAgIH1cbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHRvdWNoQ29udHJvbHMoKTogdm9pZCB7XG4gICAgaWYgKCF0aGlzLmRpc3BsYXlDb250cm9sLnRvdWNoZWQpIHtcbiAgICAgIHRoaXMuZGlzcGxheUNvbnRyb2wubWFya0FzVG91Y2hlZCgpO1xuICAgIH1cblxuICAgIGlmICghdGhpcy52YWx1ZUNvbnRyb2wudG91Y2hlZCkge1xuICAgICAgdGhpcy52YWx1ZUNvbnRyb2wubWFya0FzVG91Y2hlZCgpO1xuICAgIH1cblxuICAgIGlmICghdGhpcy5kaXNwbGF5Q29udHJvbC5kaXJ0eSkge1xuICAgICAgdGhpcy5kaXNwbGF5Q29udHJvbC5tYXJrQXNEaXJ0eSgpO1xuICAgIH1cblxuICAgIGlmICghdGhpcy52YWx1ZUNvbnRyb2wuZGlydHkpIHtcbiAgICAgIHRoaXMudmFsdWVDb250cm9sLm1hcmtBc0RpcnR5KCk7XG4gICAgfVxuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgY2xlYXIoZXZlbnQ6IE1vdXNlRXZlbnQpOiB2b2lkIHtcbiAgICAvKipcbiAgICAgKiBzdG9wIGV2ZW4gcHJvcGFnYXRpb24gc28gdGhhdCBjYWxlbmRhciB3b24ndCBvcGVuIG9uIFwiY2xlYXJcIiBidXR0b24gY2xpY2tcbiAgICAgKi9cbiAgICBldmVudC5zdG9wUHJvcGFnYXRpb24oKTtcblxuICAgIHRoaXMuZGlzcGxheUNvbnRyb2wuc2V0VmFsdWUobnVsbCk7XG5cbiAgICB0aGlzLm9uQ2hhbmdlZCh0aGlzLmRpc3BsYXlDb250cm9sLnZhbHVlKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIG1vdXNlZG93bihldmVudDogTW91c2VFdmVudCk6IHZvaWQge1xuICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBvbk9wZW5lZCgpOiB2b2lkIHtcbiAgICB0aGlzLnRlbXBsYXRlRm9ybWF0dGVyLnJlc2V0KCk7XG4gICAgdGhpcy5zZXRNaW5WYWx1ZSgpO1xuICAgIHRoaXMuaXNEaXNwbGF5VmFsdWVDaGFuZ2VSZWdpc3RlcmVkID0gZmFsc2U7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBvbkNsb3NlZCgpOiB2b2lkIHtcbiAgICAvKipcbiAgICAgKiBOT1RFOiB0aGlzIGlzIG5lZWRlZCB0byBvdmVycmlkZSBhbiBpc3N1ZSB3aGVuIGNsb3NpbmcgYSBkcm9wZG93biBwYXNzZXMgZm9jdXMgdG8gaW5wdXRcbiAgICAgKiB3aGVuIGFsbG93TWFudWFsSW5wdXQgaXMgZmFsc2VcbiAgICAgKi9cbiAgICBpZiAoIXRoaXMuYWxsb3dNYW51YWxJbnB1dCkge1xuICAgICAgdGhpcy5pbnB1dD8ubmF0aXZlRWxlbWVudC5ibHVyKCk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogaWYgY29udHJvbCB2YWx1ZSBpcyBlbXB0eSwgZGlzcGxheUNvbnRyb2wgd2l0aCBiZSBjbGVhcmVkIChicm91Z2h0IHRvIGluaXRpYWwgc3RhdGUpXG4gICAgICovXG4gICAgdGhpcy5zeW5jRW1wdHlWYWx1ZXMoKTtcblxuICAgIC8qKlxuICAgICAqIGZvY3VzIG9uIGNvbnRyb2wgdmFsdWUgYW5kIHNlbGVjdCB0aW1lIHBhcnRcbiAgICAgKi9cbiAgICBpZiAoIXRoaXMuc2hvd1RpbWVQaWNrZXIgJiYgdGhpcy5pc0Rpc3BsYXlWYWx1ZUNoYW5nZVJlZ2lzdGVyZWQgJiYgdGhpcy50eXBlICE9PSAnZGF0ZScpIHtcbiAgICAgIHRoaXMuaW5wdXQ/Lm5hdGl2ZUVsZW1lbnQuZm9jdXMoKTtcblxuICAgICAgY29uc3Qgc3BhY2VQb3NpdGlvbiA9IHRoaXMuaW5wdXQ/Lm5hdGl2ZUVsZW1lbnQudmFsdWUubGFzdEluZGV4T2YoJyAnKTtcbiAgICAgIGNvbnN0IHRvdGFsTGVuZ3RoID0gdGhpcy5pbnB1dD8ubmF0aXZlRWxlbWVudC52YWx1ZS5sZW5ndGg7XG5cbiAgICAgIGlmIChzcGFjZVBvc2l0aW9uID4gLTEpIHtcbiAgICAgICAgdGhpcy5pbnB1dD8ubmF0aXZlRWxlbWVudC5zZXRTZWxlY3Rpb25SYW5nZShzcGFjZVBvc2l0aW9uICsgMSwgc3BhY2VQb3NpdGlvbiArICh0b3RhbExlbmd0aCAtIHNwYWNlUG9zaXRpb24pKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBvbkNoYW5nZWQoZXZlbnQ6IE1hdERhdGV0aW1lcGlja2VySW5wdXRFdmVudDxzdHJpbmc+IHwgc3RyaW5nIHwgbnVsbCk6IHZvaWQge1xuICAgIGNvbnN0IHZhbHVlID0gZXZlbnQgPT09IG51bGwgPyBudWxsIDogdHlwZW9mIGV2ZW50ID09ICdzdHJpbmcnID8gZXZlbnQgOiBldmVudC52YWx1ZTtcblxuICAgIC8qKlxuICAgICAqIHN5bmMgdmFsdWVDb250cm9sIGVycm9ycyB3aXRoIGRpc3BsYXlDb250cm9sIGVycm9yc1xuICAgICAqIE5PVEU6IHRoaXMgaXMgbmVlZGVkIGZvciBcImludmFsaWQgZm9ybWF0XCIgZXJyb3JzIHRoYXQgYXJlIGNhbGN1bGF0ZWQgZm9yIGRpc3BsYXlDb250cm9sXG4gICAgICogYnkgTWF0RGF0ZXRpbWVwaWNrZXIgY29tcG9uZW50XG4gICAgICovXG4gICAgdGhpcy52YWx1ZUNvbnRyb2wuc2V0RXJyb3JzKHRoaXMuZGlzcGxheUNvbnRyb2wuZXJyb3JzKTtcblxuICAgIHRoaXMub25EaXNwbGF5ZWRWYWx1ZUNoYW5nZSh2YWx1ZSA/IG5ldyBEYXRlKHZhbHVlKSA6IG51bGwpO1xuXG4gICAgLyoqXG4gICAgICogbWFyayBjb250cm9scyBhcyB0b3VjaGVkIGFuZCBkaXJ0eSB0byBlbnN1cmUgcHJvcGVyIGVycm9yIGRpc3BsYXlcbiAgICAgKi9cbiAgICB0aGlzLnRvdWNoQ29udHJvbHMoKTtcbiAgfVxuXG4gIG9uVmlld0NoYW5nZWQodmlldzogTWF0Q2FsZW5kYXJWaWV3KSB7XG4gICAgdGhpcy50ZW1wbGF0ZUZvcm1hdHRlci5ydW4odmlldyk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcm90ZWN0ZWQgdG91Y2hJbnZhbGlkKGNvbnRyb2w6IEZvcm1Db250cm9sKTogdm9pZCB7XG4gICAgc3VwZXIudG91Y2hJbnZhbGlkKGNvbnRyb2wpO1xuICAgIHN1cGVyLnRvdWNoSW52YWxpZCh0aGlzLmRpc3BsYXlDb250cm9sKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHByb3RlY3RlZCBhcHBseUN1c3RvbUZvcm1hdCgpOiB2b2lkIHtcbiAgICB0aGlzLmN1c3RvbURpc3BsYXlGb3JtYXRPdmVycmlkZSA9IHt9O1xuXG4gICAgaWYgKHRoaXMub3ZlcnJpZGVEaXNwbGF5Rm9ybWF0KSB7XG4gICAgICB0aGlzLmN1c3RvbURpc3BsYXlGb3JtYXRPdmVycmlkZS5kYXRldGltZUlucHV0ID0gdGhpcy5jdXN0b21EaXNwbGF5Rm9ybWF0O1xuICAgIH1cblxuICAgIGlmICghdGhpcy5zaG93VGltZVBpY2tlcikge1xuICAgICAgaWYgKHRoaXMub3ZlcnJpZGVEaXNwbGF5Rm9ybWF0KSB7XG4gICAgICAgIHRoaXMuY3VzdG9tRGlzcGxheUZvcm1hdE92ZXJyaWRlLmRhdGVJbnB1dCA9IHRoaXMuY3VzdG9tRGlzcGxheUZvcm1hdDtcbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIHRoaXMuY3VzdG9tRGlzcGxheUZvcm1hdE92ZXJyaWRlLmRhdGVJbnB1dCA9IEZPUk1BVF9EQVRFVElNRTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcm90ZWN0ZWQgc2V0Q29udHJvbFZhbHVlKGNvbnRyb2w6IEZvcm1Db250cm9sLCB2YWx1ZTogc3RyaW5nIHwgbnVsbCA9IG51bGwsIGVtaXRFdmVudCA9IHRydWUpOiB2b2lkIHtcbiAgICBpZiAoY29udHJvbC52YWx1ZSAhPT0gdmFsdWUpIHtcbiAgICAgIGNvbnRyb2wuc2V0VmFsdWUodmFsdWUsIHsgZW1pdEV2ZW50OiBlbWl0RXZlbnQgfSk7XG4gICAgfVxuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJvdGVjdGVkIG9uU3luY0Rpc3BsYXllZFZhbHVlKHZhbHVlVG9BcHBseTogc3RyaW5nID0gdGhpcy52YWx1ZUNvbnRyb2wudmFsdWUpOiB2b2lkIHtcbiAgICAvKipcbiAgICAgKiBhbHdheXMgbWFrZSBzdXJlIHRoYXQgZGF0ZSBzdHJpbmcgaXMgaW4gVVRDIGZvcm1hdFxuICAgICAqL1xuICAgIGNvbnN0IHZhbHVlOiBEYXRlID0gbmV3IERhdGUodmFsdWVUb0FwcGx5ICsgKHZhbHVlVG9BcHBseS5lbmRzV2l0aCgnWicpID8gJycgOiAnWicpKTtcblxuICAgIHRoaXMuc2V0Q29udHJvbFZhbHVlKHRoaXMuZGlzcGxheUNvbnRyb2wsIHRoaXMuZGF0ZVRvUmVxdWlyZWRPZmZzZXQodmFsdWUpLnRvSVNPU3RyaW5nKCkpO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJvdGVjdGVkIG9uRGlzcGxheWVkVmFsdWVDaGFuZ2UodmFsdWU6IERhdGUgfCBudWxsKTogdm9pZCB7XG4gICAgbGV0IG5ld1ZhbHVlOiBudWxsIHwgc3RyaW5nID0gbnVsbDtcblxuICAgIGlmICh2YWx1ZSkge1xuICAgICAgbmV3VmFsdWUgPSB0aGlzLmRpc3BsYXllZFZhbHVlVG9Db250cm9sVmFsdWUodmFsdWUpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIG9ubHkgc2V0IHZhbHVlIGlmIGl0IGRpZCBjaGFuZ2VcbiAgICAgKi9cbiAgICBpZiAobmV3VmFsdWUgPT09IHRoaXMudmFsdWVDb250cm9sLnZhbHVlKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogc2V0IGNvbnRyb2wgdmFsdWUgcmV2ZXJ0aW5nIG9mZnNldCBjYWxjdWxhdGlvblxuICAgICAqL1xuICAgIHRoaXMuc2V0Q29udHJvbFZhbHVlKHRoaXMudmFsdWVDb250cm9sLCBuZXdWYWx1ZSk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcm90ZWN0ZWQgZGlzcGxheWVkVmFsdWVUb0NvbnRyb2xWYWx1ZSh2YWx1ZTogRGF0ZSk6IHN0cmluZyB7XG4gICAgcmV0dXJuIHRoaXMuZGF0ZVRvQWN0dWFsT2Zmc2V0KHZhbHVlKS50b0lTT1N0cmluZygpO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJvdGVjdGVkIHNldE1pblZhbHVlKCk6IHZvaWQge1xuICAgIC8qKlxuICAgICAqIGNhbGN1bGF0ZSBtaW5pbXVtIGFsbG93ZWQgZGF0ZXRpbWUgaWYgbmVlZGVkXG4gICAgICovXG4gICAgaWYgKCF0aGlzLmFsbG93UGFzdFZhbHVlcykge1xuICAgICAgdGhpcy5taW5EYXRlID0gdGhpcy5kYXRlVG9SZXF1aXJlZE9mZnNldCgpLnRvSVNPU3RyaW5nKCk7XG4gICAgfVxuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJvdGVjdGVkIGFkZE9mZnNldChkYXRlOiBEYXRlLCBvZmZzZXQ6IG51bWJlcik6IERhdGUge1xuICAgIHJldHVybiBhZGQoZGF0ZSwgeyBtaW51dGVzOiBvZmZzZXQgfSk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcm90ZWN0ZWQgcmVtb3ZlT2Zmc2V0KGRhdGU6IERhdGUsIG9mZnNldDogbnVtYmVyKTogRGF0ZSB7XG4gICAgcmV0dXJuIGFkZChkYXRlLCB7IG1pbnV0ZXM6IG9mZnNldCAqIC0xIH0pO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJvdGVjdGVkIGdldEFjdHVhbERhdGVPZmZzZXQodmFsdWU6IERhdGUgPSB0aGlzLmNyZWF0ZURhdGUoKSk6IG51bWJlciB7XG4gICAgcmV0dXJuIHZhbHVlLmdldFRpbWV6b25lT2Zmc2V0KCkgKiAtMTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHByb3RlY3RlZCBnZXRSZXF1aXJlZE9mZnNldCh2YWx1ZTogRGF0ZSA9IHRoaXMuY3JlYXRlRGF0ZSgpKTogbnVtYmVyIHtcbiAgICByZXR1cm4gdGhpcy5vZmZzZXQgPyB0aGlzLm9mZnNldCAqIDYwIDogdGhpcy5nZXRBY3R1YWxEYXRlT2Zmc2V0KHZhbHVlKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHByb3RlY3RlZCBjcmVhdGVEYXRlKGRheXNTaGlmdCA9IDApOiBEYXRlIHtcbiAgICBsZXQgdmFsdWU6IERhdGUgPSBuZXcgRGF0ZSgpO1xuXG4gICAgaWYgKGRheXNTaGlmdCkge1xuICAgICAgdmFsdWUgPSB0aGlzLmFkZE9mZnNldCh2YWx1ZSwgZGF5c1NoaWZ0ICogMjQgKiA2MCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHZhbHVlO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBzZXR1cFN1YnNjcmlwdGlvbnMoKTogdm9pZCB7XG4gICAgLyoqXG4gICAgICpcbiAgICAgKnN5bmMgZGlzcGxheSBjb250cm9sIHN0YXR1c2VzIHdpdGggdmFsdWUgY29udHJvbCBzdGF0dXMgZm9yIHByb3BlciBlcnJvciBkaXNwbGF5XG4gICAgICogbWFrZSBzdXJlIFwiZGlzcGxheUNvbnRyb2xcIiBkaXNhYmxlZCBzdGF0ZSBhbmQgdmFsdWUgYXJlIHN5bmNocm9uaXplZCB3aXRoIFwiY29udHJvbFwiIGRpc2FibGVkIHN0YXRlIGFuZCB2YWx1ZVxuICAgICAqL1xuICAgIHRoaXMuc3Vic2NyaXB0aW9ucy5wdXNoKHRoaXMudmFsdWVDb250cm9sLnN0YXR1c0NoYW5nZXMuc3Vic2NyaWJlKCgpID0+IHRoaXMuc3luY1N0YXRlKCkpKTtcbiAgICB0aGlzLnN1YnNjcmlwdGlvbnMucHVzaCh0aGlzLnZhbHVlQ29udHJvbC52YWx1ZUNoYW5nZXMuc3Vic2NyaWJlKCgpID0+IHRoaXMuc3luY0Rpc3BsYXllZFZhbHVlKCkpKTtcblxuICAgIC8qKlxuICAgICAqIE5PVEU6IHJlZ2lzdGVyaW5nIGRpc3BsYXkgdmFsdWUgY2hhbmdlIGlzIG5lZWRlZCB0byBrbm93IHdoZW4gdG8gZm9jdXMgdGltZSBwYXJ0IG9mIGRhdGV0aW1lIGlmIHNob3dUaW1lUGlja2VyIGlzIGZhbHNlXG4gICAgICovXG4gICAgdGhpcy5zdWJzY3JpcHRpb25zLnB1c2goXG4gICAgICB0aGlzLmRpc3BsYXlDb250cm9sLnZhbHVlQ2hhbmdlcy5zdWJzY3JpYmUoKCkgPT4gKHRoaXMuaXNEaXNwbGF5VmFsdWVDaGFuZ2VSZWdpc3RlcmVkID0gdHJ1ZSkpLFxuICAgICk7XG5cbiAgICAvKipcbiAgICAgKiBtYWtlIHN1cmUgZGlzcGxheUNvbnRyb2wgaGFzIHRoZSBzYW1lIHZhbGlkYXRvcnMgYXMgY29udHJvbFxuICAgICAqL1xuICAgIHRoaXMuZGlzcGxheUNvbnRyb2wuYWRkVmFsaWRhdG9ycyh0aGlzLnZhbHVlQ29udHJvbC52YWxpZGF0b3IgPz8gW10pO1xuICAgIC8qKlxuICAgICAqIHJlcXVpcmVkIHZhbGlkYXRvciBtdXN0IGJlIHNldCBtYW51YWxseSBpbiB0aGlzIGNvbXBvbmVudFxuICAgICAqIGJlY2F1c2UgdmFsdWVDb250cm9sIGlzIGRpc2Nvbm5lY3RlZCBmcm9tIGlucHV0IGZpZWxkXG4gICAgICovXG4gICAgaWYgKHRoaXMucmVxdWlyZWQpIHtcbiAgICAgIHRoaXMudmFsdWVDb250cm9sLmFkZFZhbGlkYXRvcnMoVmFsaWRhdG9ycy5yZXF1aXJlZCk7XG4gICAgfVxuICAgIHRoaXMudmFsdWVDb250cm9sLnVwZGF0ZVZhbHVlQW5kVmFsaWRpdHkoeyBlbWl0RXZlbnQ6IGZhbHNlIH0pO1xuICAgIHRoaXMuZGlzcGxheUNvbnRyb2wudXBkYXRlVmFsdWVBbmRWYWxpZGl0eSh7IGVtaXRFdmVudDogZmFsc2UgfSk7XG4gICAgLyoqXG4gICAgICogcGVyZm9ybSBpbml0aWFsIHN5bmNocm9uaXphdGlvbnNcbiAgICAgKi9cbiAgICB0aGlzLnN5bmNTdGF0ZSgpO1xuICAgIHRoaXMuc3luY0Rpc3BsYXllZFZhbHVlKCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIHN5bmNEaXNwbGF5ZWRWYWx1ZSgpOiB2b2lkIHtcbiAgICAvKipcbiAgICAgKiBpZiBjb250cm9sIHZhbHVlIGlzIGVtcHR5LCBkaXNwbGF5Q29udHJvbCB3aXRoIGJlIGNsZWFyZWQgKGJyb3VnaHQgdG8gaW5pdGlhbCBzdGF0ZSlcbiAgICAgKi9cbiAgICBpZiAodGhpcy5zeW5jRW1wdHlWYWx1ZXMoKSkgcmV0dXJuO1xuXG4gICAgdGhpcy5vblN5bmNEaXNwbGF5ZWRWYWx1ZSgpO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBzeW5jRW1wdHlWYWx1ZXMoKTogYm9vbGVhbiB7XG4gICAgaWYgKHRoaXMudmFsdWVDb250cm9sLnZhbHVlKSByZXR1cm4gZmFsc2U7XG5cbiAgICB0aGlzLnNldENvbnRyb2xWYWx1ZSh0aGlzLmRpc3BsYXlDb250cm9sLCB0aGlzLnZhbHVlQ29udHJvbC52YWx1ZSwgZmFsc2UpO1xuXG4gICAgcmV0dXJuIHRydWU7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIGRhdGVUb1JlcXVpcmVkT2Zmc2V0KHZhbHVlOiBEYXRlID0gdGhpcy5jcmVhdGVEYXRlKCkpOiBEYXRlIHtcbiAgICB2YWx1ZSA9IHRoaXMucmVtb3ZlT2Zmc2V0KHZhbHVlLCB0aGlzLmdldEFjdHVhbERhdGVPZmZzZXQodmFsdWUpKTtcbiAgICByZXR1cm4gdGhpcy5hZGRPZmZzZXQodmFsdWUsIHRoaXMuZ2V0UmVxdWlyZWRPZmZzZXQodmFsdWUpKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHByaXZhdGUgZGF0ZVRvQWN0dWFsT2Zmc2V0KHZhbHVlOiBEYXRlID0gdGhpcy5jcmVhdGVEYXRlKCkpOiBEYXRlIHtcbiAgICB2YWx1ZSA9IHRoaXMuYWRkT2Zmc2V0KHZhbHVlLCB0aGlzLmdldEFjdHVhbERhdGVPZmZzZXQodmFsdWUpKTtcbiAgICByZXR1cm4gdGhpcy5yZW1vdmVPZmZzZXQodmFsdWUsIHRoaXMuZ2V0UmVxdWlyZWRPZmZzZXQodmFsdWUpKTtcbiAgfVxufVxuIiwiPGRpdiBbbmdTdHlsZV09XCJ7IG1pbldpZHRoOiB3aWR0aCB9XCI+XG4gIDxtYXQtZm9ybS1maWVsZFxuICAgIFtuZ0NsYXNzXT1cIntcbiAgICAgICdpbW1lZGlhdGUtdmFsaWRhdGlvbic6IGltbWVkaWF0ZVZhbGlkYXRpb24sXG4gICAgICAnbm8tbGVmdC1wYWRkaW5nJzogIXNob3dFeGNsYW1hdGlvbixcbiAgICAgIGludmFsaWQ6IGNhblNob3dFcnJvcigpLFxuICAgICAgbWFudWFsOiBhbGxvd01hbnVhbElucHV0LFxuICAgICAgJ3N1Y2Nlc3MtbGFiZWwnOiBjYW5TaG93U3VjY2VzcygpLFxuICAgICAgJ3gtc21hbGwnOiBzbWFsbFNpemUsXG4gICAgfVwiXG4gICAgW25nU3R5bGVdPVwieyB3aWR0aDogd2lkdGggfVwiXG4gID5cbiAgICBAaWYgKChsYWJlbCB8fCByZXF1aXJlZCkgJiYgIXNtYWxsU2l6ZSkge1xuICAgICAgPG1hdC1sYWJlbD57eyBsYWJlbCB9fTwvbWF0LWxhYmVsPlxuICAgIH1cbiAgICA8bWF0LWRhdGV0aW1lcGlja2VyXG4gICAgICAjZGF0ZXRpbWVQaWNrZXJcbiAgICAgICh2aWV3Q2hhbmdlZCk9XCJvblZpZXdDaGFuZ2VkKCRldmVudClcIlxuICAgICAgKG9wZW5lZCk9XCJvbk9wZW5lZCgpXCJcbiAgICAgIChjbG9zZWQpPVwib25DbG9zZWQoKVwiXG4gICAgICBbdHlwZV09XCJ0eXBlID09PSAnZGF0ZXRpbWUnID8gKHNob3dUaW1lUGlja2VyID8gJ2RhdGV0aW1lJyA6ICdkYXRlJykgOiB0eXBlXCJcbiAgICAgIFtvcGVuT25Gb2N1c109XCIhYWxsb3dNYW51YWxJbnB1dFwiXG4gICAgICBbdHdlbHZlaG91cl09XCJ0d2VsdmVIb3VyXCJcbiAgICAgIFt0aW1lSW50ZXJ2YWxdPVwiNVwiXG4gICAgICBbbW9kZV09XCIncG9ydHJhaXQnXCJcbiAgICAvPlxuICAgIDxpbnB1dFxuICAgICAgKGRhdGVDaGFuZ2UpPVwib25DaGFuZ2VkKCRldmVudClcIlxuICAgICAgZGF0ZVRpbWVQaWNrZXJGb3JtYXRcbiAgICAgIFtvdmVycmlkZURpc3BsYXlGb3JtYXRdPVwib3ZlcnJpZGVEaXNwbGF5Rm9ybWF0IHx8ICh0eXBlID09PSAnZGF0ZXRpbWUnID8gIXNob3dUaW1lUGlja2VyIDogZmFsc2UpXCJcbiAgICAgIFtjdXN0b21EaXNwbGF5Rm9ybWF0XT1cImN1c3RvbURpc3BsYXlGb3JtYXRPdmVycmlkZVwiXG4gICAgICBbbmdDbGFzc109XCJ7IGludmlzaWJsZTogIXZhbHVlQ29udHJvbC52YWx1ZSB9XCJcbiAgICAgICNpbnB1dFxuICAgICAgbWF0SW5wdXRcbiAgICAgIChrZXlkb3duKT1cImFsbG93TWFudWFsSW5wdXQgPyBvbktleURvd24oJGV2ZW50KSA6IG51bGxcIlxuICAgICAgKGlucHV0KT1cInRvdWNoQ29udHJvbHMoKVwiXG4gICAgICAoYmx1cik9XCJ0b3VjaENvbnRyb2xzKClcIlxuICAgICAgW3RhYkluZGV4XT1cImFsbG93TWFudWFsSW5wdXQgPyAwIDogLTFcIlxuICAgICAgW21pbl09XCJtaW5EYXRlIHx8IG51bGxcIlxuICAgICAgW3JlYWRvbmx5XT1cIiFhbGxvd01hbnVhbElucHV0XCJcbiAgICAgIFtmb3JtQ29udHJvbF09XCJkaXNwbGF5Q29udHJvbFwiXG4gICAgICBbbWF0RGF0ZXRpbWVwaWNrZXJdPVwiZGF0ZXRpbWVQaWNrZXJcIlxuICAgICAgYXV0b2NvbXBsZXRlPVwiZmFsc2VcIlxuICAgICAgW2lkXT1cImlkXCJcbiAgICAgIFtyZXF1aXJlZF09XCJyZXF1aXJlZFwiXG4gICAgICBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIlxuICAgIC8+XG4gICAgQGlmICh0eXBlID09PSAndGltZScpIHtcbiAgICAgIDxidXR0b25cbiAgICAgICAgbWF0VGV4dFN1ZmZpeFxuICAgICAgICB0eXBlPVwiYnV0dG9uXCJcbiAgICAgICAgbWF0LWljb24tYnV0dG9uXG4gICAgICAgIChjbGljayk9XCJ0b2dnbGUoJGV2ZW50KVwiXG4gICAgICAgIFtkaXNhYmxlZF09XCIhc2hvd1RpbWVQaWNrZXJcIlxuICAgICAgICBjbGFzcz1cImFjdGlvbi1pY29uXCJcbiAgICAgID5cbiAgICAgICAgPGFkcy1pY29uIGNsYXNzPVwicGlja2VyXCIgbmFtZT1cInRpbWVwaWNrZXJcIiBbc2l6ZV09XCJzbWFsbFNpemUgPyAneHhzJyA6ICdzbSdcIiBbc3Ryb2tlXT1cIidpY29uUHJpbWFyeSdcIiAvPlxuICAgICAgPC9idXR0b24+XG4gICAgfSBAZWxzZSB7XG4gICAgICA8YnV0dG9uIG1hdFRleHRTdWZmaXggdHlwZT1cImJ1dHRvblwiIG1hdC1pY29uLWJ1dHRvbiAoY2xpY2spPVwidG9nZ2xlKCRldmVudClcIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+XG4gICAgICAgIDxhZHMtaWNvbiBjbGFzcz1cInBpY2tlclwiIG5hbWU9XCJkYXRlcGlja2VyXCIgW3NpemVdPVwic21hbGxTaXplID8gJ3h4cycgOiAnc20nXCIgW3N0cm9rZV09XCInaWNvblByaW1hcnknXCIgLz5cbiAgICAgICAgQGlmICh0eXBlID09PSAnZGF0ZXRpbWUnKSB7XG4gICAgICAgICAgPGFkcy1pY29uXG4gICAgICAgICAgICBjbGFzcz1cInN1Yi10aW1lcGlja2VyIG1hdC1tZGMtYnV0dG9uLXBlcnNpc3RlbnQtcmlwcGxlIHBpY2tlclwiXG4gICAgICAgICAgICBuYW1lPVwidGltZXBpY2tlclwiXG4gICAgICAgICAgICBzaXplPVwieHhzXCJcbiAgICAgICAgICAgIFtzdHJva2VdPVwiJ2ljb25QcmltYXJ5J1wiXG4gICAgICAgICAgLz5cbiAgICAgICAgfVxuICAgICAgPC9idXR0b24+XG4gICAgfVxuXG4gICAgQGlmIChjYW5DbGVhcikge1xuICAgICAgPGJ1dHRvbiBtYXRUZXh0U3VmZml4IHR5cGU9XCJidXR0b25cIiBtYXQtaWNvbi1idXR0b24gKGNsaWNrKT1cImNsZWFyKCRldmVudClcIiBjbGFzcz1cImFjdGlvbi1pY29uXCI+XG4gICAgICAgIDxhZHMtaWNvbiBjbGFzcz1cImNyb3NzLWljb25cIiBuYW1lPVwiY3Jvc3NcIiBbc2l6ZV09XCJzbWFsbFNpemUgPyAneHhzJyA6ICd4cydcIiBbdGhlbWVdPVwiJ2ljb25QcmltYXJ5J1wiIC8+XG4gICAgICA8L2J1dHRvbj5cbiAgICB9XG4gIDwvbWF0LWZvcm0tZmllbGQ+XG4gIEBpZiAoc2hvd0Zvb3Rlcikge1xuICAgIDxkaXYgY2xhc3M9XCJmb290ZXItY29udGFpbmVyXCI+XG4gICAgICBAaWYgKGNhblNob3dFcnJvcigpKSB7XG4gICAgICAgIDxhZHMtZXJyb3IgW2Vycm9yXT1cImRpc3BsYXlGaXJzdEVycm9yKClcIiBbbmdTdHlsZV09XCJ7IHdpZHRoOiB3aWR0aCB9XCIgLz5cbiAgICAgIH0gQGVsc2UgaWYgKGNhblNob3dTdWNjZXNzKCkpIHtcbiAgICAgICAgPGFkcy1zdWNjZXNzIFtzdWNjZXNzXT1cInN1Y2Nlc3NNZXNzYWdlIVwiIFtuZ1N0eWxlXT1cInsgd2lkdGg6IHdpZHRoIH1cIiAvPlxuICAgICAgfSBAZWxzZSBpZiAoaGludCkge1xuICAgICAgICA8YWRzLWhpbnQgW2hpbnRdPVwiaGludFwiIFtjb250cm9sXT1cInZhbHVlQ29udHJvbFwiIFtuZ1N0eWxlXT1cInsgd2lkdGg6IHdpZHRoIH1cIiAvPlxuICAgICAgfVxuICAgIDwvZGl2PlxuICB9XG48L2Rpdj5cbkBpZiAodG9vbHRpcCkge1xuICA8YWRzLWlucHV0LXRvb2x0aXAgW3Rvb2x0aXBdPVwidG9vbHRpcFwiIC8+XG59XG4iXX0=
@@ -0,0 +1,87 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { DateAdapter } from '@angular/material/core';
3
+ import { MatFormFieldModule } from '@angular/material/form-field';
4
+ import { MatInputModule } from '@angular/material/input';
5
+ import { MatDatepickerModule } from '@angular/material/datepicker';
6
+ import { ReactiveFormsModule } from '@angular/forms';
7
+ import { AdsIconModule } from '@ascentgl/ads-icons';
8
+ import { AdsDatetimepickerComponent } from './datetimepicker.component';
9
+ import { MatDatetimepickerModule, MatNativeDatetimeModule } from '@mat-datetimepicker/core';
10
+ import { MatIconModule } from '@angular/material/icon';
11
+ import { CommonModule } from '@angular/common';
12
+ import { DateTimePickerFormatDirectiveModule } from './datetime-picker-format-directive';
13
+ import { MatIconButton } from '@angular/material/button';
14
+ import { AdsInputTooltipComponent } from '../../common/input.tooltip.component';
15
+ import { AdsErrorComponent } from '../../common/error/error.component';
16
+ import { AdsHintComponent } from '../../common/hint/hint.component';
17
+ import { AdsSuccessComponent } from '../../common/success/success.component';
18
+ import { CustomDatetimeAdapter } from './custom-datetime.adapter';
19
+ import * as i0 from "@angular/core";
20
+ export class AdsDatetimepickerModule {
21
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDatetimepickerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
22
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsDatetimepickerModule, declarations: [AdsDatetimepickerComponent], imports: [CommonModule,
23
+ MatDatepickerModule,
24
+ MatFormFieldModule,
25
+ MatNativeDatetimeModule,
26
+ MatInputModule,
27
+ ReactiveFormsModule,
28
+ AdsIconModule,
29
+ MatDatetimepickerModule,
30
+ MatIconModule,
31
+ DateTimePickerFormatDirectiveModule,
32
+ MatIconButton,
33
+ AdsInputTooltipComponent,
34
+ AdsErrorComponent,
35
+ AdsHintComponent,
36
+ AdsSuccessComponent], exports: [AdsDatetimepickerComponent] }); }
37
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDatetimepickerModule, providers: [
38
+ {
39
+ provide: DateAdapter,
40
+ useClass: CustomDatetimeAdapter,
41
+ },
42
+ ], imports: [CommonModule,
43
+ MatDatepickerModule,
44
+ MatFormFieldModule,
45
+ MatNativeDatetimeModule,
46
+ MatInputModule,
47
+ ReactiveFormsModule,
48
+ AdsIconModule,
49
+ MatDatetimepickerModule,
50
+ MatIconModule,
51
+ DateTimePickerFormatDirectiveModule,
52
+ MatIconButton,
53
+ AdsInputTooltipComponent,
54
+ AdsErrorComponent,
55
+ AdsSuccessComponent] }); }
56
+ }
57
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDatetimepickerModule, decorators: [{
58
+ type: NgModule,
59
+ args: [{
60
+ imports: [
61
+ CommonModule,
62
+ MatDatepickerModule,
63
+ MatFormFieldModule,
64
+ MatNativeDatetimeModule,
65
+ MatInputModule,
66
+ ReactiveFormsModule,
67
+ AdsIconModule,
68
+ MatDatetimepickerModule,
69
+ MatIconModule,
70
+ DateTimePickerFormatDirectiveModule,
71
+ MatIconButton,
72
+ AdsInputTooltipComponent,
73
+ AdsErrorComponent,
74
+ AdsHintComponent,
75
+ AdsSuccessComponent,
76
+ ],
77
+ declarations: [AdsDatetimepickerComponent],
78
+ exports: [AdsDatetimepickerComponent],
79
+ providers: [
80
+ {
81
+ provide: DateAdapter,
82
+ useClass: CustomDatetimeAdapter,
83
+ },
84
+ ],
85
+ }]
86
+ }] });
87
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZXRpbWVwaWNrZXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGRzL2RhdGVwaWNrZXJzL2RhdGV0aW1lLXBpY2tlci9kYXRldGltZXBpY2tlci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDckQsT0FBTyxFQUFFLGtCQUFrQixFQUFFLE1BQU0sOEJBQThCLENBQUM7QUFDbEUsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ25FLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGdCQUFnQixDQUFDO0FBQ3JELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNwRCxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUN4RSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUM1RixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFDdkQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxtQ0FBbUMsRUFBRSxNQUFNLG9DQUFvQyxDQUFDO0FBQ3pGLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSwwQkFBMEIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxzQ0FBc0MsQ0FBQztBQUNoRixPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQztBQUN2RSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUNwRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSx3Q0FBd0MsQ0FBQztBQUM3RSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQzs7QUE2QmxFLE1BQU0sT0FBTyx1QkFBdUI7OEdBQXZCLHVCQUF1QjsrR0FBdkIsdUJBQXVCLGlCQVRuQiwwQkFBMEIsYUFoQnZDLFlBQVk7WUFDWixtQkFBbUI7WUFDbkIsa0JBQWtCO1lBQ2xCLHVCQUF1QjtZQUN2QixjQUFjO1lBQ2QsbUJBQW1CO1lBQ25CLGFBQWE7WUFDYix1QkFBdUI7WUFDdkIsYUFBYTtZQUNiLG1DQUFtQztZQUNuQyxhQUFhO1lBQ2Isd0JBQXdCO1lBQ3hCLGlCQUFpQjtZQUNqQixnQkFBZ0I7WUFDaEIsbUJBQW1CLGFBR1gsMEJBQTBCOytHQVF6Qix1QkFBdUIsYUFQdkI7WUFDVDtnQkFDRSxPQUFPLEVBQUUsV0FBVztnQkFDcEIsUUFBUSxFQUFFLHFCQUFxQjthQUNoQztTQUNGLFlBdkJDLFlBQVk7WUFDWixtQkFBbUI7WUFDbkIsa0JBQWtCO1lBQ2xCLHVCQUF1QjtZQUN2QixjQUFjO1lBQ2QsbUJBQW1CO1lBQ25CLGFBQWE7WUFDYix1QkFBdUI7WUFDdkIsYUFBYTtZQUNiLG1DQUFtQztZQUNuQyxhQUFhO1lBQ2Isd0JBQXdCO1lBQ3hCLGlCQUFpQjtZQUVqQixtQkFBbUI7OzJGQVdWLHVCQUF1QjtrQkEzQm5DLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLFlBQVk7d0JBQ1osbUJBQW1CO3dCQUNuQixrQkFBa0I7d0JBQ2xCLHVCQUF1Qjt3QkFDdkIsY0FBYzt3QkFDZCxtQkFBbUI7d0JBQ25CLGFBQWE7d0JBQ2IsdUJBQXVCO3dCQUN2QixhQUFhO3dCQUNiLG1DQUFtQzt3QkFDbkMsYUFBYTt3QkFDYix3QkFBd0I7d0JBQ3hCLGlCQUFpQjt3QkFDakIsZ0JBQWdCO3dCQUNoQixtQkFBbUI7cUJBQ3BCO29CQUNELFlBQVksRUFBRSxDQUFDLDBCQUEwQixDQUFDO29CQUMxQyxPQUFPLEVBQUUsQ0FBQywwQkFBMEIsQ0FBQztvQkFDckMsU0FBUyxFQUFFO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSxXQUFXOzRCQUNwQixRQUFRLEVBQUUscUJBQXFCO3lCQUNoQztxQkFDRjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBEYXRlQWRhcHRlciB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2NvcmUnO1xuaW1wb3J0IHsgTWF0Rm9ybUZpZWxkTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZm9ybS1maWVsZCc7XG5pbXBvcnQgeyBNYXRJbnB1dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2lucHV0JztcbmltcG9ydCB7IE1hdERhdGVwaWNrZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kYXRlcGlja2VyJztcbmltcG9ydCB7IFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBBZHNJY29uTW9kdWxlIH0gZnJvbSAnQGFzY2VudGdsL2Fkcy1pY29ucyc7XG5pbXBvcnQgeyBBZHNEYXRldGltZXBpY2tlckNvbXBvbmVudCB9IGZyb20gJy4vZGF0ZXRpbWVwaWNrZXIuY29tcG9uZW50JztcbmltcG9ydCB7IE1hdERhdGV0aW1lcGlja2VyTW9kdWxlLCBNYXROYXRpdmVEYXRldGltZU1vZHVsZSB9IGZyb20gJ0BtYXQtZGF0ZXRpbWVwaWNrZXIvY29yZSc7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgRGF0ZVRpbWVQaWNrZXJGb3JtYXREaXJlY3RpdmVNb2R1bGUgfSBmcm9tICcuL2RhdGV0aW1lLXBpY2tlci1mb3JtYXQtZGlyZWN0aXZlJztcbmltcG9ydCB7IE1hdEljb25CdXR0b24gfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xuaW1wb3J0IHsgQWRzSW5wdXRUb29sdGlwQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29tbW9uL2lucHV0LnRvb2x0aXAuY29tcG9uZW50JztcbmltcG9ydCB7IEFkc0Vycm9yQ29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29tbW9uL2Vycm9yL2Vycm9yLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBZHNIaW50Q29tcG9uZW50IH0gZnJvbSAnLi4vLi4vY29tbW9uL2hpbnQvaGludC5jb21wb25lbnQnO1xuaW1wb3J0IHsgQWRzU3VjY2Vzc0NvbXBvbmVudCB9IGZyb20gJy4uLy4uL2NvbW1vbi9zdWNjZXNzL3N1Y2Nlc3MuY29tcG9uZW50JztcbmltcG9ydCB7IEN1c3RvbURhdGV0aW1lQWRhcHRlciB9IGZyb20gJy4vY3VzdG9tLWRhdGV0aW1lLmFkYXB0ZXInO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIE1hdERhdGVwaWNrZXJNb2R1bGUsXG4gICAgTWF0Rm9ybUZpZWxkTW9kdWxlLFxuICAgIE1hdE5hdGl2ZURhdGV0aW1lTW9kdWxlLFxuICAgIE1hdElucHV0TW9kdWxlLFxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgQWRzSWNvbk1vZHVsZSxcbiAgICBNYXREYXRldGltZXBpY2tlck1vZHVsZSxcbiAgICBNYXRJY29uTW9kdWxlLFxuICAgIERhdGVUaW1lUGlja2VyRm9ybWF0RGlyZWN0aXZlTW9kdWxlLFxuICAgIE1hdEljb25CdXR0b24sXG4gICAgQWRzSW5wdXRUb29sdGlwQ29tcG9uZW50LFxuICAgIEFkc0Vycm9yQ29tcG9uZW50LFxuICAgIEFkc0hpbnRDb21wb25lbnQsXG4gICAgQWRzU3VjY2Vzc0NvbXBvbmVudCxcbiAgXSxcbiAgZGVjbGFyYXRpb25zOiBbQWRzRGF0ZXRpbWVwaWNrZXJDb21wb25lbnRdLFxuICBleHBvcnRzOiBbQWRzRGF0ZXRpbWVwaWNrZXJDb21wb25lbnRdLFxuICBwcm92aWRlcnM6IFtcbiAgICB7XG4gICAgICBwcm92aWRlOiBEYXRlQWRhcHRlcixcbiAgICAgIHVzZUNsYXNzOiBDdXN0b21EYXRldGltZUFkYXB0ZXIsXG4gICAgfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQWRzRGF0ZXRpbWVwaWNrZXJNb2R1bGUge31cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvZGF0ZXBpY2tlcnMvZGF0ZXRpbWUtcGlja2VyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,3 @@
1
+ export * from './datetimepicker.component';
2
+ export * from './datetimepicker.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9kYXRlcGlja2Vycy9kYXRldGltZS1waWNrZXIvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMseUJBQXlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2RhdGV0aW1lcGlja2VyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2RhdGV0aW1lcGlja2VyLm1vZHVsZSc7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvZGF0ZXBpY2tlcnMvdGltZS1waWNrZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,3 @@
1
+ export * from './timepicker.component';
2
+ export * from './timepicker.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9kYXRlcGlja2Vycy90aW1lLXBpY2tlci9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyxxQkFBcUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vdGltZXBpY2tlci5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi90aW1lcGlja2VyLm1vZHVsZSc7XG4iXX0=