@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,349 @@
1
+ import { Component, ElementRef, Input, Renderer2, ViewChild } from '@angular/core';
2
+ import { Subject } from 'rxjs';
3
+ import { takeUntil } from 'rxjs/operators';
4
+ import { DomElement } from './dom.element';
5
+ import { DraggedPlaceholder } from './dragged.placeholder';
6
+ import * as i0 from "@angular/core";
7
+ export class AdsDragAndDropListComponent {
8
+ /** @ignore */
9
+ constructor(renderer) {
10
+ this.renderer = renderer;
11
+ /** If total items count is less than this value, drag&drop will be disabled */
12
+ this.minCountToDrag = 2;
13
+ /** Provide subject element, which will allow to refresh the list. NOTE: refreshing is required every time the list is updated from the outside */
14
+ this.refresh = new Subject();
15
+ /** @ignore */
16
+ this.draggedElement = null;
17
+ /** @ignore */
18
+ this.draggedPlaceholder = null;
19
+ /** @ignore */
20
+ this.unsubscribeFunctions = new Map();
21
+ /** @ignore */
22
+ this.ngUnsubscribe = new Subject();
23
+ this.draggedOverElement = null;
24
+ /** @ignore */
25
+ this.onDragStart = (event) => {
26
+ /**
27
+ * NOTE: register dragover for document body to overcome Firefox issue where clientX and clientY are 0 in 'drag' event
28
+ */
29
+ this.unsubscribeFromDocumentDragOver = this.renderer.listen(document.body, 'dragover', this.onDragOverBody);
30
+ /**
31
+ * store currently dragged element
32
+ */
33
+ this.draggedElement = this.getElement(event);
34
+ /**
35
+ * replace default browser dragged element with the custom one
36
+ */
37
+ this.draggedPlaceholder = new DraggedPlaceholder(this.draggedElement, this.draggableList?.nativeElement, event, this.renderer);
38
+ /**
39
+ * mark dragged element with special class
40
+ */
41
+ this.draggedElement.isDragged();
42
+ /**
43
+ * block drop into the dragged element
44
+ */
45
+ this.draggedElement.blockDrop();
46
+ };
47
+ /** @ignore */
48
+ this.onDragEnd = () => {
49
+ /**
50
+ * remove special class from dragged element mark dragged element
51
+ */
52
+ this.draggedElement?.isNotDragged();
53
+ this.draggedElement = null;
54
+ /**
55
+ * if we subscribed to document dragover - unsubscribe from it
56
+ */
57
+ if (this.unsubscribeFromDocumentDragOver) {
58
+ this.unsubscribeFromDocumentDragOver();
59
+ }
60
+ /**
61
+ * remove dragged placeholder from DOM
62
+ */
63
+ this.draggedPlaceholder?.remove();
64
+ this.draggedPlaceholder = null;
65
+ };
66
+ /** @ignore
67
+ * NOTE: we rely on onDragOver instead of DragEnter and DragLeave because those events also fire when we enter and leave
68
+ * child elements - the behavior we don't need
69
+ */
70
+ this.onDragOver = (event) => {
71
+ /**
72
+ * NOTE: this is required for "drop" event to work
73
+ */
74
+ event.preventDefault();
75
+ /**
76
+ * do nothing if we have no dragged element, or we are still over the same element
77
+ */
78
+ if (!this.draggedElement || this.draggedOverElement?.dom === event.currentTarget) {
79
+ return;
80
+ }
81
+ /**
82
+ * make sure previous dragged over element is marked as "dragged out"
83
+ */
84
+ this.unselectDraggedOverElement();
85
+ this.draggedOverElement = this.getElement(event);
86
+ /**
87
+ * do nothing if dragged element and element, we are dragging over is the same
88
+ */
89
+ if (this.isDraggingOverSelf(this.draggedOverElement)) {
90
+ return;
91
+ }
92
+ this.draggedOverElement.draggedOver();
93
+ /**
94
+ * if drop is blocked - add special class to the dragged element
95
+ */
96
+ if (this.canDrop()) {
97
+ this.draggedOverElement.unblockDrop();
98
+ }
99
+ else {
100
+ this.draggedOverElement.blockDrop();
101
+ }
102
+ };
103
+ /** @ignore */
104
+ this.onDrop = (event) => {
105
+ /**
106
+ * if drop is blocked - do nothing
107
+ */
108
+ if (!this.canDrop())
109
+ return;
110
+ this.unselectDraggedOverElement();
111
+ const target = this.getElement(event);
112
+ /**
113
+ * preserve drop blocked state before cleaning classes - it will be needed later
114
+ */
115
+ const isTargetBlocked = target.isDropBlocked();
116
+ this.getElement(event).draggedOut();
117
+ /**
118
+ * if we have no dragged element, we are dropping on self or target is blocked - do nothing
119
+ */
120
+ if (!this.draggedElement || this.isDraggingOverSelf(target) || isTargetBlocked) {
121
+ return;
122
+ }
123
+ const sourceIndex = this.getElementIndex(this.draggedElement);
124
+ const targetIndex = this.getElementIndex(target);
125
+ /**
126
+ * if source index is less than target index - means we are dragging down;
127
+ * otherwise we are dragging up
128
+ * NOTE: we utilise "before" method for element insertion in both cases, because "after" can
129
+ * break order of "drag-static" elements (if they are present)
130
+ */
131
+ if (sourceIndex < targetIndex) {
132
+ const allElements = this.getAllElements();
133
+ /**
134
+ * loop through all element beginning with next to the currently dragged element
135
+ * and ending with drop target element and move all of them up;
136
+ * this will result in target element being moved down to required position
137
+ */
138
+ for (let i = sourceIndex + 1; i <= targetIndex; i++) {
139
+ const target = allElements[i];
140
+ if (target) {
141
+ this.draggedElement.dom.before(target);
142
+ }
143
+ }
144
+ }
145
+ else {
146
+ target.dom.before(this.draggedElement.dom);
147
+ }
148
+ /**
149
+ * if possible emit indexes old and new indexes of the repositioned items
150
+ */
151
+ if (this.dropCallback) {
152
+ this.dropCallback({
153
+ before: sourceIndex,
154
+ after: this.getElementIndex(this.draggedElement),
155
+ }, {
156
+ before: targetIndex,
157
+ after: this.getElementIndex(target),
158
+ });
159
+ }
160
+ };
161
+ /** @ignore */
162
+ this.onMouseEnter = (event) => {
163
+ this.setCanDrag(this.getElement(event));
164
+ };
165
+ /** @ignore */
166
+ this.onDragOverBody = (event) => {
167
+ this.draggedPlaceholder?.reposition(event);
168
+ };
169
+ }
170
+ /** @ignore */
171
+ ngOnInit() {
172
+ /**
173
+ * if refresh command was emitted - refresh elements
174
+ * NOTE: we do it in timeout to allow DOM to redraw first
175
+ */
176
+ this.refresh.pipe(takeUntil(this.ngUnsubscribe)).subscribe(() => {
177
+ setTimeout(() => this.refreshElements());
178
+ });
179
+ }
180
+ /** @ignore */
181
+ ngAfterContentInit() {
182
+ this.refreshElements();
183
+ }
184
+ /** @ignore */
185
+ ngOnDestroy() {
186
+ this.unsubscribeFromEventListeners();
187
+ this.ngUnsubscribe.next();
188
+ this.ngUnsubscribe.complete();
189
+ }
190
+ /** @ignore */
191
+ onListDragLeave(event) {
192
+ /**
193
+ * if we dragged out of the element - unselect it
194
+ */
195
+ if (event.relatedTarget instanceof HTMLElement &&
196
+ this.draggedOverElement &&
197
+ !this.draggedOverElement.dom.contains(event.relatedTarget)) {
198
+ this.unselectDraggedOverElement();
199
+ }
200
+ }
201
+ /** @ignore */
202
+ unselectDraggedOverElement() {
203
+ /**
204
+ * make sure previous dragged over element is marked as "dragged out"
205
+ */
206
+ this.draggedOverElement?.draggedOut();
207
+ this.draggedOverElement = null;
208
+ }
209
+ /** @ignore */
210
+ setCanDrag(element) {
211
+ /**
212
+ * if special class is set for the element - forbid dragging
213
+ */
214
+ if (!element.canDrag()) {
215
+ element.makeUnDraggable();
216
+ return;
217
+ }
218
+ /**
219
+ * make sure dragging the item is not forbidden by external function
220
+ */
221
+ if (this.canDragCallback) {
222
+ if (this.canDragCallback(this.getElementIndex(element))) {
223
+ element.makeDraggable();
224
+ }
225
+ else {
226
+ element.makeUnDraggable();
227
+ }
228
+ return;
229
+ }
230
+ element.makeDraggable();
231
+ }
232
+ /** @ignore */
233
+ canDrop() {
234
+ if (!this.draggedElement || !this.draggedOverElement)
235
+ return false;
236
+ /**
237
+ * if special class is set for the element - forbid dropping;
238
+ * otherwise make sure dropping over the item is not forbidden by external function
239
+ */
240
+ if (!this.draggedOverElement.canDrop()) {
241
+ return false;
242
+ }
243
+ else if (this.canDropCallback) {
244
+ return this.canDropCallback(this.getElementIndex(this.draggedElement), this.getElementIndex(this.draggedOverElement));
245
+ }
246
+ return true;
247
+ }
248
+ /** @ignore */
249
+ refreshElements() {
250
+ /**
251
+ * unsubscribe from all event listeners
252
+ */
253
+ this.unsubscribeFromEventListeners();
254
+ /**
255
+ * make sure no placeholder are still visible
256
+ */
257
+ document.querySelectorAll('.' + "dragged-placeholder" /* dragAndDropListClass.DRAGGED_PLACEHOLDER */).forEach((element) => {
258
+ element.remove();
259
+ });
260
+ /**
261
+ * get all elements that can participate in drag and drop
262
+ */
263
+ const elements = this.getAllElements();
264
+ /**
265
+ * make sure we have enough elements to continue
266
+ */
267
+ if (elements.length < this.minCountToDrag) {
268
+ return;
269
+ }
270
+ /**
271
+ * add required callbacks to all elements,
272
+ * preserving their unsubscribe functions
273
+ */
274
+ elements.forEach((element) => {
275
+ const functions = {};
276
+ functions['dragstart'] = this.renderer.listen(element, 'dragstart', this.onDragStart);
277
+ functions['dragend'] = this.renderer.listen(element, 'dragend', this.onDragEnd);
278
+ functions['dragover'] = this.renderer.listen(element, 'dragover', this.onDragOver);
279
+ functions['drop'] = this.renderer.listen(element, 'drop', this.onDrop);
280
+ functions['mouseenter'] = this.renderer.listen(element, 'mouseenter', this.onMouseEnter);
281
+ this.unsubscribeFunctions.set(element, functions);
282
+ });
283
+ }
284
+ /** @ignore */
285
+ unsubscribeFromEventListeners() {
286
+ this.unsubscribeFunctions.forEach((collection) => {
287
+ Object.values(collection).forEach((func) => func());
288
+ });
289
+ this.unsubscribeFunctions = new Map();
290
+ }
291
+ /** @ignore */
292
+ getAllElements() {
293
+ const result = [];
294
+ if (this.draggableList) {
295
+ /**
296
+ * loop through immediate children of the list
297
+ */
298
+ Array.from(this.draggableList.nativeElement.children).forEach((element) => {
299
+ /**
300
+ * element is static if it has both "no-drop" and "no-drag" classes
301
+ */
302
+ const isStatic = element.classList.contains("no-drop" /* dragAndDropListClass.NO_DROP */) &&
303
+ element.classList.contains("no-drag" /* dragAndDropListClass.NO_DRAG */);
304
+ /**
305
+ * ignore static elements and dragged placeholder element from the list
306
+ */
307
+ if (!isStatic && !element.classList.contains("dragged-placeholder" /* dragAndDropListClass.DRAGGED_PLACEHOLDER */)) {
308
+ result.push(element);
309
+ }
310
+ });
311
+ }
312
+ return result;
313
+ }
314
+ /** @ignore */
315
+ getElement(event) {
316
+ return new DomElement(event.currentTarget);
317
+ }
318
+ /** @ignore */
319
+ getElementIndex(element) {
320
+ return this.getAllElements().indexOf(element.dom);
321
+ }
322
+ /** @ignore */
323
+ isDraggingOverSelf(element) {
324
+ return this.draggedElement?.dom === element?.dom;
325
+ }
326
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
327
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsDragAndDropListComponent, selector: "ads-drag-and-drop-list", inputs: { dropCallback: "dropCallback", canDropCallback: "canDropCallback", canDragCallback: "canDragCallback", minCountToDrag: "minCountToDrag", refresh: "refresh" }, viewQueries: [{ propertyName: "draggableList", first: true, predicate: ["draggableList"], descendants: true, read: ElementRef, static: true }, { propertyName: "dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<div class=\"draggable-list\" #draggableList (dragleave)=\"onListDragLeave($event)\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}:host ::ng-deep .draggable-list>*{box-sizing:border-box;background-color:var(--color-white)}:host ::ng-deep .draggable-list>*[draggable=true]{cursor:move}:host ::ng-deep .draggable-list>*.is-dragged{opacity:.25}:host ::ng-deep .draggable-list>*:not(.drag-placeholder){width:100%}:host ::ng-deep .draggable-list>*.dragged-over:not(.drop-blocked){background-color:var(--color-light-30)}\n"] }); }
328
+ }
329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListComponent, decorators: [{
330
+ type: Component,
331
+ args: [{ selector: 'ads-drag-and-drop-list', template: "<div class=\"draggable-list\" #draggableList (dragleave)=\"onListDragLeave($event)\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}:host ::ng-deep .draggable-list>*{box-sizing:border-box;background-color:var(--color-white)}:host ::ng-deep .draggable-list>*[draggable=true]{cursor:move}:host ::ng-deep .draggable-list>*.is-dragged{opacity:.25}:host ::ng-deep .draggable-list>*:not(.drag-placeholder){width:100%}:host ::ng-deep .draggable-list>*.dragged-over:not(.drop-blocked){background-color:var(--color-light-30)}\n"] }]
332
+ }], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { draggableList: [{
333
+ type: ViewChild,
334
+ args: ['draggableList', { read: ElementRef, static: true }]
335
+ }], dynamicContent: [{
336
+ type: ViewChild,
337
+ args: ['dynamicContent', { read: ElementRef, static: true }]
338
+ }], dropCallback: [{
339
+ type: Input
340
+ }], canDropCallback: [{
341
+ type: Input
342
+ }], canDragCallback: [{
343
+ type: Input
344
+ }], minCountToDrag: [{
345
+ type: Input
346
+ }], refresh: [{
347
+ type: Input
348
+ }] } });
349
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhZy1hbmQtZHJvcC1saXN0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9kcmFnLWFuZC1kcm9wLWxpc3QvZHJhZy1hbmQtZHJvcC1saXN0LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9kcmFnLWFuZC1kcm9wLWxpc3QvZHJhZy1hbmQtZHJvcC1saXN0LmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBb0IsU0FBUyxFQUFFLFVBQVUsRUFBRSxLQUFLLEVBQXFCLFNBQVMsRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDeEgsT0FBTyxFQUFFLE9BQU8sRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMvQixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDM0MsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQzs7QUFZM0QsTUFBTSxPQUFPLDJCQUEyQjtJQWtDdEMsY0FBYztJQUNkLFlBQW9CLFFBQW1CO1FBQW5CLGFBQVEsR0FBUixRQUFRLENBQVc7UUFwQnZDLCtFQUErRTtRQUN0RSxtQkFBYyxHQUFHLENBQUMsQ0FBQztRQUU1QixtSkFBbUo7UUFDMUksWUFBTyxHQUFrQixJQUFJLE9BQU8sRUFBUSxDQUFDO1FBRXRELGNBQWM7UUFDTixtQkFBYyxHQUFzQixJQUFJLENBQUM7UUFDakQsY0FBYztRQUNOLHVCQUFrQixHQUE4QixJQUFJLENBQUM7UUFHN0QsY0FBYztRQUNOLHlCQUFvQixHQUF1RCxJQUFJLEdBQUcsRUFBRSxDQUFDO1FBQzdGLGNBQWM7UUFDTixrQkFBYSxHQUFrQixJ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QkFHRyxPQUFPO3NCQUFmLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBZnRlckNvbnRlbnRJbml0LCBDb21wb25lbnQsIEVsZW1lbnRSZWYsIElucHV0LCBPbkRlc3Ryb3ksIE9uSW5pdCwgUmVuZGVyZXIyLCBWaWV3Q2hpbGQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN1YmplY3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IHRha2VVbnRpbCB9IGZyb20gJ3J4anMvb3BlcmF0b3JzJztcbmltcG9ydCB7IERvbUVsZW1lbnQgfSBmcm9tICcuL2RvbS5lbGVtZW50JztcbmltcG9ydCB7IERyYWdnZWRQbGFjZWhvbGRlciB9IGZyb20gJy4vZHJhZ2dlZC5wbGFjZWhvbGRlcic7XG5pbXBvcnQgeyBkcmFnQW5kRHJvcExpc3RDbGFzcyB9IGZyb20gJy4vZHJhZy1hbmQtZHJvcC1saXN0LmVudW1zJztcbmltcG9ydCB7IEdFTkVSSUNfQ09MTEVDVElPTiB9IGZyb20gJ0Bhc2NlbnRnbC9hZHMtdXRpbHMnO1xuXG5leHBvcnQgdHlwZSBEUk9QX0NBTExCQUNLX0lOREVYRVMgPSB7IGJlZm9yZTogbnVtYmVyOyBhZnRlcjogbnVtYmVyIH07XG5leHBvcnQgdHlwZSBVTlNVQlNDUklCRV9GVU5DVElPTlNfQ09MTEVDVElPTiA9IEdFTkVSSUNfQ09MTEVDVElPTjwoKSA9PiB2b2lkPjtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYWRzLWRyYWctYW5kLWRyb3AtbGlzdCcsXG4gIHN0eWxlVXJsczogWydkcmFnLWFuZC1kcm9wLWxpc3QuY29tcG9uZW50LnNjc3MnXSxcbiAgdGVtcGxhdGVVcmw6ICdkcmFnLWFuZC1kcm9wLWxpc3QuY29tcG9uZW50Lmh0bWwnLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNEcmFnQW5kRHJvcExpc3RDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQsIEFmdGVyQ29udGVudEluaXQsIE9uRGVzdHJveSB7XG4gIC8qKiBAaWdub3JlICovXG4gIEBWaWV3Q2hpbGQoJ2RyYWdnYWJsZUxpc3QnLCB7IHJlYWQ6IEVsZW1lbnRSZWYsIHN0YXRpYzogdHJ1ZSB9KSBkcmFnZ2FibGVMaXN0PzogRWxlbWVudFJlZjtcbiAgLyoqIEBpZ25vcmUgKi9cbiAgQFZpZXdDaGlsZCgnZHluYW1pY0NvbnRlbnQnLCB7IHJlYWQ6IEVsZW1lbnRSZWYsIHN0YXRpYzogdHJ1ZSB9KSBkeW5hbWljQ29udGVudD86IEVsZW1lbnRSZWY7XG5cbiAgLyoqIFRoaXMgZXh0ZXJuYWwgbWV0aG9kIHdpbGwgYmUgY2FsbGVkIGFmdGVyIHRoZSBpdGVtIGlzIGRyb3BwZWQgaW50byBuZXcgcG9zaXRpb24gKi9cbiAgQElucHV0KCkgZHJvcENhbGxiYWNrPzogKHNvdXJjZUluZGV4ZXM6IERST1BfQ0FMTEJBQ0tfSU5ERVhFUywgdGFyZ2V0SW5kZXhlczogRFJPUF9DQUxMQkFDS19JTkRFWEVTKSA9PiB2b2lkO1xuXG4gIC8qKiBDYWxsYmFjayBmdW5jdGlvbiB0aGF0IGNhbiBiZSB1c2VkIHRvIGRldGVybWluZSBpZiBpdGVtIGNhbiBiZSBkcm9wcGVkIG9uIHRoZSBzZWxlY3RlZCB0YXJnZXQgKi9cbiAgQElucHV0KCkgY2FuRHJvcENhbGxiYWNrPzogKHNvdXJjZUluZGV4OiBudW1iZXIsIHRhcmdldEluZGV4OiBudW1iZXIpID0+IGJvb2xlYW47XG5cbiAgLyoqIENhbGxiYWNrIGZ1bmN0aW9uIHRoYXQgY2FuIGJlIHVzZWQgdG8gZGV0ZXJtaW5lIGlmIGl0ZW0gY2FuIGJlIGRyYWdnZWQgKi9cbiAgQElucHV0KCkgY2FuRHJhZ0NhbGxiYWNrPzogKHNvdXJjZUluZGV4OiBudW1iZXIpID0+IGJvb2xlYW47XG5cbiAgLyoqIElmIHRvdGFsIGl0ZW1zIGNvdW50IGlzIGxlc3MgdGhhbiB0aGlzIHZhbHVlLCBkcmFnJmRyb3Agd2lsbCBiZSBkaXNhYmxlZCAqL1xuICBASW5wdXQoKSBtaW5Db3VudFRvRHJhZyA9IDI7XG5cbiAgLyoqIFByb3ZpZGUgc3ViamVjdCBlbGVtZW50LCB3aGljaCB3aWxsIGFsbG93IHRvIHJlZnJlc2ggdGhlIGxpc3QuIE5PVEU6IHJlZnJlc2hpbmcgaXMgcmVxdWlyZWQgZXZlcnkgdGltZSB0aGUgbGlzdCBpcyB1cGRhdGVkIGZyb20gdGhlIG91dHNpZGUgICovXG4gIEBJbnB1dCgpIHJlZnJlc2g6IFN1YmplY3Q8dm9pZD4gPSBuZXcgU3ViamVjdDx2b2lkPigpO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIHByaXZhdGUgZHJhZ2dlZEVsZW1lbnQ6IERvbUVsZW1lbnQgfCBudWxsID0gbnVsbDtcbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBkcmFnZ2VkUGxhY2Vob2xkZXI6IERyYWdnZWRQbGFjZWhvbGRlciB8IG51bGwgPSBudWxsO1xuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIHVuc3Vic2NyaWJlRnJvbURvY3VtZW50RHJhZ092ZXI/OiAoKSA9PiB2b2lkO1xuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIHVuc3Vic2NyaWJlRnVuY3Rpb25zOiBNYXA8SFRNTEVsZW1lbnQsIFVOU1VCU0NSSUJFX0ZVTkNUSU9OU19DT0xMRUNUSU9OPiA9IG5ldyBNYXAoKTtcbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBuZ1Vuc3Vic2NyaWJlOiBTdWJqZWN0PHZvaWQ+ID0gbmV3IFN1YmplY3QoKTtcblxuICBwcml2YXRlIGRyYWdnZWRPdmVyRWxlbWVudDogRG9tRWxlbWVudCB8IG51bGwgPSBudWxsO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMikge31cblxuICAvKiogQGlnbm9yZSAqL1xuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICAvKipcbiAgICAgKiBpZiByZWZyZXNoIGNvbW1hbmQgd2FzIGVtaXR0ZWQgLSByZWZyZXNoIGVsZW1lbnRzXG4gICAgICogTk9URTogd2UgZG8gaXQgaW4gdGltZW91dCB0byBhbGxvdyBET00gdG8gcmVkcmF3IGZpcnN0XG4gICAgICovXG4gICAgdGhpcy5yZWZyZXNoLnBpcGUodGFrZVVudGlsKHRoaXMubmdVbnN1YnNjcmliZSkpLnN1YnNjcmliZSgoKTogdm9pZCA9PiB7XG4gICAgICBzZXRUaW1lb3V0KCgpID0+IHRoaXMucmVmcmVzaEVsZW1lbnRzKCkpO1xuICAgIH0pO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgbmdBZnRlckNvbnRlbnRJbml0KCk6IHZvaWQge1xuICAgIHRoaXMucmVmcmVzaEVsZW1lbnRzKCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLnVuc3Vic2NyaWJlRnJvbUV2ZW50TGlzdGVuZXJzKCk7XG4gICAgdGhpcy5uZ1Vuc3Vic2NyaWJlLm5leHQoKTtcbiAgICB0aGlzLm5nVW5zdWJzY3JpYmUuY29tcGxldGUoKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIG9uTGlzdERyYWdMZWF2ZShldmVudDogRHJhZ0V2ZW50KTogdm9pZCB7XG4gICAgLyoqXG4gICAgICogaWYgd2UgZHJhZ2dlZCBvdXQgb2YgdGhlIGVsZW1lbnQgLSB1bnNlbGVjdCBpdFxuICAgICAqL1xuICAgIGlmIChcbiAgICAgIGV2ZW50LnJlbGF0ZWRUYXJnZXQgaW5zdGFuY2VvZiBIVE1MRWxlbWVudCAmJlxuICAgICAgdGhpcy5kcmFnZ2VkT3ZlckVsZW1lbnQgJiZcbiAgICAgICF0aGlzLmRyYWdnZWRPdmVyRWxlbWVudC5kb20uY29udGFpbnMoZXZlbnQucmVsYXRlZFRhcmdldClcbiAgICApIHtcbiAgICAgIHRoaXMudW5zZWxlY3REcmFnZ2VkT3ZlckVsZW1lbnQoKTtcbiAgICB9XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBvbkRyYWdTdGFydCA9IChldmVudDogRHJhZ0V2ZW50KTogdm9pZCA9PiB7XG4gICAgLyoqXG4gICAgICogTk9URTogcmVnaXN0ZXIgZHJhZ292ZXIgZm9yIGRvY3VtZW50IGJvZHkgdG8gb3ZlcmNvbWUgRmlyZWZveCBpc3N1ZSB3aGVyZSBjbGllbnRYIGFuZCBjbGllbnRZIGFyZSAwIGluICdkcmFnJyBldmVudFxuICAgICAqL1xuICAgIHRoaXMudW5zdWJzY3JpYmVGcm9tRG9jdW1lbnREcmFnT3ZlciA9IHRoaXMucmVuZGVyZXIubGlzdGVuKGRvY3VtZW50LmJvZHksICdkcmFnb3ZlcicsIHRoaXMub25EcmFnT3ZlckJvZHkpO1xuXG4gICAgLyoqXG4gICAgICogc3RvcmUgY3VycmVudGx5IGRyYWdnZWQgZWxlbWVudFxuICAgICAqL1xuICAgIHRoaXMuZHJhZ2dlZEVsZW1lbnQgPSB0aGlzLmdldEVsZW1lbnQoZXZlbnQpO1xuXG4gICAgLyoqXG4gICAgICogcmVwbGFjZSBkZWZhdWx0IGJyb3dzZXIgZHJhZ2dlZCBlbGVtZW50IHdpdGggdGhlIGN1c3RvbSBvbmVcbiAgICAgKi9cbiAgICB0aGlzLmRyYWdnZWRQbGFjZWhvbGRlciA9IG5ldyBEcmFnZ2VkUGxhY2Vob2xkZXIoXG4gICAgICB0aGlzLmRyYWdnZWRFbGVtZW50LFxuICAgICAgdGhpcy5kcmFnZ2FibGVMaXN0Py5uYXRpdmVFbGVtZW50LFxuICAgICAgZXZlbnQsXG4gICAgICB0aGlzLnJlbmRlcmVyLFxuICAgICk7XG5cbiAgICAvKipcbiAgICAgKiBtYXJrIGRyYWdnZWQgZWxlbWVudCB3aXRoIHNwZWNpYWwgY2xhc3NcbiAgICAgKi9cbiAgICB0aGlzLmRyYWdnZWRFbGVtZW50LmlzRHJhZ2dlZCgpO1xuXG4gICAgLyoqXG4gICAgICogYmxvY2sgZHJvcCBpbnRvIHRoZSBkcmFnZ2VkIGVsZW1lbnRcbiAgICAgKi9cbiAgICB0aGlzLmRyYWdnZWRFbGVtZW50LmJsb2NrRHJvcCgpO1xuICB9O1xuXG4gIC8qKiBAaWdub3JlICovXG4gIG9uRHJhZ0VuZCA9ICgpOiB2b2lkID0+IHtcbiAgICAvKipcbiAgICAgKiByZW1vdmUgc3BlY2lhbCBjbGFzcyBmcm9tIGRyYWdnZWQgZWxlbWVudCBtYXJrIGRyYWdnZWQgZWxlbWVudFxuICAgICAqL1xuICAgIHRoaXMuZHJhZ2dlZEVsZW1lbnQ/LmlzTm90RHJhZ2dlZCgpO1xuXG4gICAgdGhpcy5kcmFnZ2VkRWxlbWVudCA9IG51bGw7XG5cbiAgICAvKipcbiAgICAgKiBpZiB3ZSBzdWJzY3JpYmVkIHRvIGRvY3VtZW50IGRyYWdvdmVyIC0gdW5zdWJzY3JpYmUgZnJvbSBpdFxuICAgICAqL1xuICAgIGlmICh0aGlzLnVuc3Vic2NyaWJlRnJvbURvY3VtZW50RHJhZ092ZXIpIHtcbiAgICAgIHRoaXMudW5zdWJzY3JpYmVGcm9tRG9jdW1lbnREcmFnT3ZlcigpO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIHJlbW92ZSBkcmFnZ2VkIHBsYWNlaG9sZGVyIGZyb20gRE9NXG4gICAgICovXG4gICAgdGhpcy5kcmFnZ2VkUGxhY2Vob2xkZXI/LnJlbW92ZSgpO1xuICAgIHRoaXMuZHJhZ2dlZFBsYWNlaG9sZGVyID0gbnVsbDtcbiAgfTtcblxuICAvKiogQGlnbm9yZVxuICAgKiBOT1RFOiB3ZSByZWx5IG9uICBvbkRyYWdPdmVyIGluc3RlYWQgb2YgRHJhZ0VudGVyIGFuZCBEcmFnTGVhdmUgYmVjYXVzZSB0aG9zZSBldmVudHMgYWxzbyBmaXJlIHdoZW4gd2UgZW50ZXIgYW5kIGxlYXZlXG4gICAqIGNoaWxkIGVsZW1lbnRzIC0gdGhlIGJlaGF2aW9yIHdlIGRvbid0IG5lZWRcbiAgICovXG4gIG9uRHJhZ092ZXIgPSAoZXZlbnQ6IERyYWdFdmVudCk6IHZvaWQgPT4ge1xuICAgIC8qKlxuICAgICAqIE5PVEU6IHRoaXMgaXMgcmVxdWlyZWQgZm9yIFwiZHJvcFwiIGV2ZW50IHRvIHdvcmtcbiAgICAgKi9cbiAgICBldmVudC5wcmV2ZW50RGVmYXVsdCgpO1xuXG4gICAgLyoqXG4gICAgICogZG8gbm90aGluZyBpZiB3ZSBoYXZlIG5vIGRyYWdnZWQgZWxlbWVudCwgb3Igd2UgYXJlIHN0aWxsIG92ZXIgdGhlIHNhbWUgZWxlbWVudFxuICAgICAqL1xuICAgIGlmICghdGhpcy5kcmFnZ2VkRWxlbWVudCB8fCB0aGlzLmRyYWdnZWRPdmVyRWxlbWVudD8uZG9tID09PSBldmVudC5jdXJyZW50VGFyZ2V0KSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogbWFrZSBzdXJlIHByZXZpb3VzIGRyYWdnZWQgb3ZlciBlbGVtZW50IGlzIG1hcmtlZCBhcyBcImRyYWdnZWQgb3V0XCJcbiAgICAgKi9cbiAgICB0aGlzLnVuc2VsZWN0RHJhZ2dlZE92ZXJFbGVtZW50KCk7XG5cbiAgICB0aGlzLmRyYWdnZWRPdmVyRWxlbWVudCA9IHRoaXMuZ2V0RWxlbWVudChldmVudCk7XG5cbiAgICAvKipcbiAgICAgKiBkbyBub3RoaW5nIGlmIGRyYWdnZWQgZWxlbWVudCBhbmQgZWxlbWVudCwgd2UgYXJlIGRyYWdnaW5nIG92ZXIgaXMgdGhlIHNhbWVcbiAgICAgKi9cbiAgICBpZiAodGhpcy5pc0RyYWdnaW5nT3ZlclNlbGYodGhpcy5kcmFnZ2VkT3ZlckVsZW1lbnQpKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy5kcmFnZ2VkT3ZlckVsZW1lbnQuZHJhZ2dlZE92ZXIoKTtcblxuICAgIC8qKlxuICAgICAqIGlmIGRyb3AgaXMgYmxvY2tlZCAtIGFkZCBzcGVjaWFsIGNsYXNzIHRvIHRoZSBkcmFnZ2VkIGVsZW1lbnRcbiAgICAgKi9cbiAgICBpZiAodGhpcy5jYW5Ecm9wKCkpIHtcbiAgICAgIHRoaXMuZHJhZ2dlZE92ZXJFbGVtZW50LnVuYmxvY2tEcm9wKCk7XG4gICAgfSBlbHNlIHtcbiAgICAgIHRoaXMuZHJhZ2dlZE92ZXJFbGVtZW50LmJsb2NrRHJvcCgpO1xuICAgIH1cbiAgfTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBvbkRyb3AgPSAoZXZlbnQ6IERyYWdFdmVudCk6IHZvaWQgPT4ge1xuICAgIC8qKlxuICAgICAqIGlmIGRyb3AgaXMgYmxvY2tlZCAtIGRvIG5vdGhpbmdcbiAgICAgKi9cbiAgICBpZiAoIXRoaXMuY2FuRHJvcCgpKSByZXR1cm47XG5cbiAgICB0aGlzLnVuc2VsZWN0RHJhZ2dlZE92ZXJFbGVtZW50KCk7XG5cbiAgICBjb25zdCB0YXJnZXQ6IERvbUVsZW1lbnQgPSB0aGlzLmdldEVsZW1lbnQoZXZlbnQpO1xuXG4gICAgLyoqXG4gICAgICogcHJlc2VydmUgZHJvcCBibG9ja2VkIHN0YXRlIGJlZm9yZSBjbGVhbmluZyBjbGFzc2VzIC0gaXQgd2lsbCBiZSBuZWVkZWQgbGF0ZXJcbiAgICAgKi9cbiAgICBjb25zdCBpc1RhcmdldEJsb2NrZWQ6IGJvb2xlYW4gPSB0YXJnZXQuaXNEcm9wQmxvY2tlZCgpO1xuXG4gICAgdGhpcy5nZXRFbGVtZW50KGV2ZW50KS5kcmFnZ2VkT3V0KCk7XG5cbiAgICAvKipcbiAgICAgKiBpZiB3ZSBoYXZlIG5vIGRyYWdnZWQgZWxlbWVudCwgd2UgYXJlIGRyb3BwaW5nIG9uIHNlbGYgb3IgdGFyZ2V0IGlzIGJsb2NrZWQgLSBkbyBub3RoaW5nXG4gICAgICovXG4gICAgaWYgKCF0aGlzLmRyYWdnZWRFbGVtZW50IHx8IHRoaXMuaXNEcmFnZ2luZ092ZXJTZWxmKHRhcmdldCkgfHwgaXNUYXJnZXRCbG9ja2VkKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgY29uc3Qgc291cmNlSW5kZXg6IG51bWJlciA9IHRoaXMuZ2V0RWxlbWVudEluZGV4KHRoaXMuZHJhZ2dlZEVsZW1lbnQpO1xuICAgIGNvbnN0IHRhcmdldEluZGV4OiBudW1iZXIgPSB0aGlzLmdldEVsZW1lbnRJbmRleCh0YXJnZXQpO1xuXG4gICAgLyoqXG4gICAgICogaWYgc291cmNlIGluZGV4IGlzIGxlc3MgdGhhbiB0YXJnZXQgaW5kZXggLSBtZWFucyB3ZSBhcmUgZHJhZ2dpbmcgZG93bjtcbiAgICAgKiBvdGhlcndpc2Ugd2UgYXJlIGRyYWdnaW5nIHVwXG4gICAgICogTk9URTogd2UgdXRpbGlzZSBcImJlZm9yZVwiIG1ldGhvZCBmb3IgZWxlbWVudCBpbnNlcnRpb24gaW4gYm90aCBjYXNlcywgYmVjYXVzZSBcImFmdGVyXCIgY2FuXG4gICAgICogYnJlYWsgb3JkZXIgb2YgXCJkcmFnLXN0YXRpY1wiIGVsZW1lbnRzIChpZiB0aGV5IGFyZSBwcmVzZW50KVxuICAgICAqL1xuICAgIGlmIChzb3VyY2VJbmRleCA8IHRhcmdldEluZGV4KSB7XG4gICAgICBjb25zdCBhbGxFbGVtZW50czogSFRNTEVsZW1lbnRbXSA9IHRoaXMuZ2V0QWxsRWxlbWVudHMoKTtcblxuICAgICAgLyoqXG4gICAgICAgKiBsb29wIHRocm91Z2ggYWxsIGVsZW1lbnQgYmVnaW5uaW5nIHdpdGggbmV4dCB0byB0aGUgY3VycmVudGx5IGRyYWdnZWQgZWxlbWVudFxuICAgICAgICogYW5kIGVuZGluZyB3aXRoIGRyb3AgdGFyZ2V0IGVsZW1lbnQgYW5kIG1vdmUgYWxsIG9mIHRoZW0gdXA7XG4gICAgICAgKiB0aGlzIHdpbGwgcmVzdWx0IGluIHRhcmdldCBlbGVtZW50IGJlaW5nIG1vdmVkIGRvd24gdG8gcmVxdWlyZWQgcG9zaXRpb25cbiAgICAgICAqL1xuICAgICAgZm9yIChsZXQgaTogbnVtYmVyID0gc291cmNlSW5kZXggKyAxOyBpIDw9IHRhcmdldEluZGV4OyBpKyspIHtcbiAgICAgICAgY29uc3QgdGFyZ2V0OiBIVE1MRWxlbWVudCA9IGFsbEVsZW1lbnRzW2ldO1xuXG4gICAgICAgIGlmICh0YXJnZXQpIHtcbiAgICAgICAgICB0aGlzLmRyYWdnZWRFbGVtZW50LmRvbS5iZWZvcmUodGFyZ2V0KTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH0gZWxzZSB7XG4gICAgICB0YXJnZXQuZG9tLmJlZm9yZSh0aGlzLmRyYWdnZWRFbGVtZW50LmRvbSk7XG4gICAgfVxuXG4gICAgLyoqXG4gICAgICogaWYgcG9zc2libGUgZW1pdCBpbmRleGVzIG9sZCBhbmQgbmV3IGluZGV4ZXMgb2YgdGhlIHJlcG9zaXRpb25lZCBpdGVtc1xuICAgICAqL1xuICAgIGlmICh0aGlzLmRyb3BDYWxsYmFjaykge1xuICAgICAgdGhpcy5kcm9wQ2FsbGJhY2soXG4gICAgICAgIHtcbiAgICAgICAgICBiZWZvcmU6IHNvdXJjZUluZGV4LFxuICAgICAgICAgIGFmdGVyOiB0aGlzLmdldEVsZW1lbnRJbmRleCh0aGlzLmRyYWdnZWRFbGVtZW50KSxcbiAgICAgICAgfSxcbiAgICAgICAge1xuICAgICAgICAgIGJlZm9yZTogdGFyZ2V0SW5kZXgsXG4gICAgICAgICAgYWZ0ZXI6IHRoaXMuZ2V0RWxlbWVudEluZGV4KHRhcmdldCksXG4gICAgICAgIH0sXG4gICAgICApO1xuICAgIH1cbiAgfTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBvbk1vdXNlRW50ZXIgPSAoZXZlbnQ6IE1vdXNlRXZlbnQpOiB2b2lkID0+IHtcbiAgICB0aGlzLnNldENhbkRyYWcodGhpcy5nZXRFbGVtZW50KGV2ZW50KSk7XG4gIH07XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSB1bnNlbGVjdERyYWdnZWRPdmVyRWxlbWVudCgpOiB2b2lkIHtcbiAgICAvKipcbiAgICAgKiBtYWtlIHN1cmUgcHJldmlvdXMgZHJhZ2dlZCBvdmVyIGVsZW1lbnQgaXMgbWFya2VkIGFzIFwiZHJhZ2dlZCBvdXRcIlxuICAgICAqL1xuICAgIHRoaXMuZHJhZ2dlZE92ZXJFbGVtZW50Py5kcmFnZ2VkT3V0KCk7XG4gICAgdGhpcy5kcmFnZ2VkT3ZlckVsZW1lbnQgPSBudWxsO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBzZXRDYW5EcmFnKGVsZW1lbnQ6IERvbUVsZW1lbnQpOiB2b2lkIHtcbiAgICAvKipcbiAgICAgKiBpZiBzcGVjaWFsIGNsYXNzIGlzIHNldCBmb3IgdGhlIGVsZW1lbnQgLSBmb3JiaWQgZHJhZ2dpbmdcbiAgICAgKi9cbiAgICBpZiAoIWVsZW1lbnQuY2FuRHJhZygpKSB7XG4gICAgICBlbGVtZW50Lm1ha2VVbkRyYWdnYWJsZSgpO1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIC8qKlxuICAgICAqIG1ha2Ugc3VyZSBkcmFnZ2luZyB0aGUgaXRlbSBpcyBub3QgZm9yYmlkZGVuIGJ5IGV4dGVybmFsIGZ1bmN0aW9uXG4gICAgICovXG4gICAgaWYgKHRoaXMuY2FuRHJhZ0NhbGxiYWNrKSB7XG4gICAgICBpZiAodGhpcy5jYW5EcmFnQ2FsbGJhY2sodGhpcy5nZXRFbGVtZW50SW5kZXgoZWxlbWVudCkpKSB7XG4gICAgICAgIGVsZW1lbnQubWFrZURyYWdnYWJsZSgpO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgZWxlbWVudC5tYWtlVW5EcmFnZ2FibGUoKTtcbiAgICAgIH1cbiAgICAgIHJldHVybjtcbiAgICB9XG4gICAgZWxlbWVudC5tYWtlRHJhZ2dhYmxlKCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIG9uRHJhZ092ZXJCb2R5ID0gKGV2ZW50OiBEcmFnRXZlbnQpOiB2b2lkID0+IHtcbiAgICB0aGlzLmRyYWdnZWRQbGFjZWhvbGRlcj8ucmVwb3NpdGlvbihldmVudCk7XG4gIH07XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBjYW5Ecm9wKCk6IGJvb2xlYW4ge1xuICAgIGlmICghdGhpcy5kcmFnZ2VkRWxlbWVudCB8fCAhdGhpcy5kcmFnZ2VkT3ZlckVsZW1lbnQpIHJldHVybiBmYWxzZTtcblxuICAgIC8qKlxuICAgICAqIGlmIHNwZWNpYWwgY2xhc3MgaXMgc2V0IGZvciB0aGUgZWxlbWVudCAtIGZvcmJpZCBkcm9wcGluZztcbiAgICAgKiBvdGhlcndpc2UgbWFrZSBzdXJlIGRyb3BwaW5nIG92ZXIgdGhlIGl0ZW0gaXMgbm90IGZvcmJpZGRlbiBieSBleHRlcm5hbCBmdW5jdGlvblxuICAgICAqL1xuICAgIGlmICghdGhpcy5kcmFnZ2VkT3ZlckVsZW1lbnQuY2FuRHJvcCgpKSB7XG4gICAgICByZXR1cm4gZmFsc2U7XG4gICAgfSBlbHNlIGlmICh0aGlzLmNhbkRyb3BDYWxsYmFjaykge1xuICAgICAgcmV0dXJuIHRoaXMuY2FuRHJvcENhbGxiYWNrKFxuICAgICAgICB0aGlzLmdldEVsZW1lbnRJbmRleCh0aGlzLmRyYWdnZWRFbGVtZW50KSxcbiAgICAgICAgdGhpcy5nZXRFbGVtZW50SW5kZXgodGhpcy5kcmFnZ2VkT3ZlckVsZW1lbnQpLFxuICAgICAgKTtcbiAgICB9XG5cbiAgICByZXR1cm4gdHJ1ZTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHByaXZhdGUgcmVmcmVzaEVsZW1lbnRzKCk6IHZvaWQge1xuICAgIC8qKlxuICAgICAqIHVuc3Vic2NyaWJlIGZyb20gYWxsIGV2ZW50IGxpc3RlbmVyc1xuICAgICAqL1xuICAgIHRoaXMudW5zdWJzY3JpYmVGcm9tRXZlbnRMaXN0ZW5lcnMoKTtcblxuICAgIC8qKlxuICAgICAqIG1ha2Ugc3VyZSBubyBwbGFjZWhvbGRlciBhcmUgc3RpbGwgdmlzaWJsZVxuICAgICAqL1xuICAgIGRvY3VtZW50LnF1ZXJ5U2VsZWN0b3JBbGwoJy4nICsgZHJhZ0FuZERyb3BMaXN0Q2xhc3MuRFJBR0dFRF9QTEFDRUhPTERFUikuZm9yRWFjaCgoZWxlbWVudCkgPT4ge1xuICAgICAgZWxlbWVudC5yZW1vdmUoKTtcbiAgICB9KTtcblxuICAgIC8qKlxuICAgICAqIGdldCBhbGwgZWxlbWVudHMgdGhhdCBjYW4gcGFydGljaXBhdGUgaW4gZHJhZyBhbmQgZHJvcFxuICAgICAqL1xuICAgIGNvbnN0IGVsZW1lbnRzOiBIVE1MRWxlbWVudFtdID0gdGhpcy5nZXRBbGxFbGVtZW50cygpO1xuXG4gICAgLyoqXG4gICAgICogbWFrZSBzdXJlIHdlIGhhdmUgZW5vdWdoIGVsZW1lbnRzIHRvIGNvbnRpbnVlXG4gICAgICovXG4gICAgaWYgKGVsZW1lbnRzLmxlbmd0aCA8IHRoaXMubWluQ291bnRUb0RyYWcpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICAvKipcbiAgICAgKiBhZGQgcmVxdWlyZWQgY2FsbGJhY2tzIHRvIGFsbCBlbGVtZW50cyxcbiAgICAgKiBwcmVzZXJ2aW5nIHRoZWlyIHVuc3Vic2NyaWJlIGZ1bmN0aW9uc1xuICAgICAqL1xuICAgIGVsZW1lbnRzLmZvckVhY2goKGVsZW1lbnQ6IEhUTUxFbGVtZW50KTogdm9pZCA9PiB7XG4gICAgICBjb25zdCBmdW5jdGlvbnM6IFVOU1VCU0NSSUJFX0ZVTkNUSU9OU19DT0xMRUNUSU9OID0ge307XG5cbiAgICAgIGZ1bmN0aW9uc1snZHJhZ3N0YXJ0J10gPSB0aGlzLnJlbmRlcmVyLmxpc3RlbihlbGVtZW50LCAnZHJhZ3N0YXJ0JywgdGhpcy5vbkRyYWdTdGFydCk7XG4gICAgICBmdW5jdGlvbnNbJ2RyYWdlbmQnXSA9IHRoaXMucmVuZGVyZXIubGlzdGVuKGVsZW1lbnQsICdkcmFnZW5kJywgdGhpcy5vbkRyYWdFbmQpO1xuICAgICAgZnVuY3Rpb25zWydkcmFnb3ZlciddID0gdGhpcy5yZW5kZXJlci5saXN0ZW4oZWxlbWVudCwgJ2RyYWdvdmVyJywgdGhpcy5vbkRyYWdPdmVyKTtcbiAgICAgIGZ1bmN0aW9uc1snZHJvcCddID0gdGhpcy5yZW5kZXJlci5saXN0ZW4oZWxlbWVudCwgJ2Ryb3AnLCB0aGlzLm9uRHJvcCk7XG4gICAgICBmdW5jdGlvbnNbJ21vdXNlZW50ZXInXSA9IHRoaXMucmVuZGVyZXIubGlzdGVuKGVsZW1lbnQsICdtb3VzZWVudGVyJywgdGhpcy5vbk1vdXNlRW50ZXIpO1xuXG4gICAgICB0aGlzLnVuc3Vic2NyaWJlRnVuY3Rpb25zLnNldChlbGVtZW50LCBmdW5jdGlvbnMpO1xuICAgIH0pO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSB1bnN1YnNjcmliZUZyb21FdmVudExpc3RlbmVycygpOiB2b2lkIHtcbiAgICB0aGlzLnVuc3Vic2NyaWJlRnVuY3Rpb25zLmZvckVhY2goKGNvbGxlY3Rpb24pID0+IHtcbiAgICAgIE9iamVjdC52YWx1ZXMoY29sbGVjdGlvbikuZm9yRWFjaCgoZnVuYykgPT4gZnVuYygpKTtcbiAgICB9KTtcblxuICAgIHRoaXMudW5zdWJzY3JpYmVGdW5jdGlvbnMgPSBuZXcgTWFwKCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIGdldEFsbEVsZW1lbnRzKCk6IEhUTUxFbGVtZW50W10ge1xuICAgIGNvbnN0IHJlc3VsdDogSFRNTEVsZW1lbnRbXSA9IFtdO1xuXG4gICAgaWYgKHRoaXMuZHJhZ2dhYmxlTGlzdCkge1xuICAgICAgLyoqXG4gICAgICAgKiBsb29wIHRocm91Z2ggaW1tZWRpYXRlIGNoaWxkcmVuIG9mIHRoZSBsaXN0XG4gICAgICAgKi9cbiAgICAgICg8SFRNTEVsZW1lbnRbXT5BcnJheS5mcm9tKHRoaXMuZHJhZ2dhYmxlTGlzdC5uYXRpdmVFbGVtZW50LmNoaWxkcmVuKSkuZm9yRWFjaCgoZWxlbWVudDogSFRNTEVsZW1lbnQpOiB2b2lkID0+IHtcbiAgICAgICAgLyoqXG4gICAgICAgICAqIGVsZW1lbnQgaXMgc3RhdGljIGlmIGl0IGhhcyBib3RoIFwibm8tZHJvcFwiIGFuZCBcIm5vLWRyYWdcIiBjbGFzc2VzXG4gICAgICAgICAqL1xuICAgICAgICBjb25zdCBpc1N0YXRpYzogYm9vbGVhbiA9XG4gICAgICAgICAgZWxlbWVudC5jbGFzc0xpc3QuY29udGFpbnMoZHJhZ0FuZERyb3BMaXN0Q2xhc3MuTk9fRFJPUCkgJiZcbiAgICAgICAgICBlbGVtZW50LmNsYXNzTGlzdC5jb250YWlucyhkcmFnQW5kRHJvcExpc3RDbGFzcy5OT19EUkFHKTtcblxuICAgICAgICAvKipcbiAgICAgICAgICogaWdub3JlIHN0YXRpYyBlbGVtZW50cyBhbmQgZHJhZ2dlZCBwbGFjZWhvbGRlciBlbGVtZW50IGZyb20gdGhlIGxpc3RcbiAgICAgICAgICovXG4gICAgICAgIGlmICghaXNTdGF0aWMgJiYgIWVsZW1lbnQuY2xhc3NMaXN0LmNvbnRhaW5zKGRyYWdBbmREcm9wTGlzdENsYXNzLkRSQUdHRURfUExBQ0VIT0xERVIpKSB7XG4gICAgICAgICAgcmVzdWx0LnB1c2goZWxlbWVudCk7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICAgIH1cblxuICAgIHJldHVybiByZXN1bHQ7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIGdldEVsZW1lbnQoZXZlbnQ6IERyYWdFdmVudCB8IE1vdXNlRXZlbnQpOiBEb21FbGVtZW50IHtcbiAgICByZXR1cm4gbmV3IERvbUVsZW1lbnQoPEhUTUxFbGVtZW50PmV2ZW50LmN1cnJlbnRUYXJnZXQpO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgcHJpdmF0ZSBnZXRFbGVtZW50SW5kZXgoZWxlbWVudDogRG9tRWxlbWVudCk6IG51bWJlciB7XG4gICAgcmV0dXJuIHRoaXMuZ2V0QWxsRWxlbWVudHMoKS5pbmRleE9mKGVsZW1lbnQuZG9tKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHByaXZhdGUgaXNEcmFnZ2luZ092ZXJTZWxmKGVsZW1lbnQ6IERvbUVsZW1lbnQgfCBudWxsKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuZHJhZ2dlZEVsZW1lbnQ/LmRvbSA9PT0gZWxlbWVudD8uZG9tO1xuICB9XG59XG4iLCI8ZGl2IGNsYXNzPVwiZHJhZ2dhYmxlLWxpc3RcIiAjZHJhZ2dhYmxlTGlzdCAoZHJhZ2xlYXZlKT1cIm9uTGlzdERyYWdMZWF2ZSgkZXZlbnQpXCI+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvZGl2PlxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhZy1hbmQtZHJvcC1saXN0LmVudW1zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2RyYWctYW5kLWRyb3AtbGlzdC9kcmFnLWFuZC1kcm9wLWxpc3QuZW51bXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBlbnVtIGRyYWdBbmREcm9wTGlzdENsYXNzIHtcbiAgTk9fRFJBRyA9ICduby1kcmFnJyxcbiAgTk9fRFJPUCA9ICduby1kcm9wJyxcbiAgRFJBR0dFRF9PVkVSID0gJ2RyYWdnZWQtb3ZlcicsXG4gIERST1BfQkxPQ0tFRCA9ICdkcm9wLWJsb2NrZWQnLFxuICBJU19EUkFHR0VEID0gJ2lzLWRyYWdnZWQnLFxuICBEUkFHR0VEX1BMQUNFSE9MREVSID0gJ2RyYWdnZWQtcGxhY2Vob2xkZXInLFxufVxuIl19
@@ -0,0 +1,18 @@
1
+ import { CommonModule } from '@angular/common';
2
+ import { NgModule } from '@angular/core';
3
+ import { AdsDragAndDropListComponent } from './drag-and-drop-list.component';
4
+ import * as i0 from "@angular/core";
5
+ export class AdsDragAndDropListModule {
6
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListModule, declarations: [AdsDragAndDropListComponent], imports: [CommonModule], exports: [AdsDragAndDropListComponent] }); }
8
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListModule, imports: [CommonModule] }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListModule, decorators: [{
11
+ type: NgModule,
12
+ args: [{
13
+ imports: [CommonModule],
14
+ exports: [AdsDragAndDropListComponent],
15
+ declarations: [AdsDragAndDropListComponent],
16
+ }]
17
+ }] });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhZy1hbmQtZHJvcC1saXN0Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9kcmFnLWFuZC1kcm9wLWxpc3QvZHJhZy1hbmQtZHJvcC1saXN0Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQzs7QUFPN0UsTUFBTSxPQUFPLHdCQUF3Qjs4R0FBeEIsd0JBQXdCOytHQUF4Qix3QkFBd0IsaUJBRnBCLDJCQUEyQixhQUZoQyxZQUFZLGFBQ1osMkJBQTJCOytHQUcxQix3QkFBd0IsWUFKekIsWUFBWTs7MkZBSVgsd0JBQXdCO2tCQUxwQyxRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLFlBQVksQ0FBQztvQkFDdkIsT0FBTyxFQUFFLENBQUMsMkJBQTJCLENBQUM7b0JBQ3RDLFlBQVksRUFBRSxDQUFDLDJCQUEyQixDQUFDO2lCQUM1QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWRzRHJhZ0FuZERyb3BMaXN0Q29tcG9uZW50IH0gZnJvbSAnLi9kcmFnLWFuZC1kcm9wLWxpc3QuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFtBZHNEcmFnQW5kRHJvcExpc3RDb21wb25lbnRdLFxuICBkZWNsYXJhdGlvbnM6IFtBZHNEcmFnQW5kRHJvcExpc3RDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNEcmFnQW5kRHJvcExpc3RNb2R1bGUge31cbiJdfQ==
@@ -0,0 +1,63 @@
1
+ export class DraggedPlaceholder {
2
+ constructor(element, container, event, renderer) {
3
+ this.renderer = renderer;
4
+ this.positions = { x: 0, y: 0 };
5
+ this.cursorPos = { x: 0, y: 0 };
6
+ this.domElement = element.clone();
7
+ /**
8
+ * get target element DOMRect data
9
+ */
10
+ const targetRect = element.dom.getBoundingClientRect();
11
+ /**
12
+ * save cursor position relative to target element
13
+ * this will help calculate dragged item position relative to the cursor
14
+ */
15
+ this.positions = {
16
+ x: event.clientX - targetRect.left,
17
+ y: event.clientY - targetRect.top,
18
+ };
19
+ this.hideDefaultDragPlaceholder(event);
20
+ /**
21
+ * add clone to the list
22
+ */
23
+ container.append(this.domElement);
24
+ this.scrollUnsubscribeFunction = this.renderer.listen('document', 'scroll', () => {
25
+ this.setDomPosition();
26
+ });
27
+ /**
28
+ * make initial placeholder positioning
29
+ */
30
+ this.reposition(event);
31
+ }
32
+ remove() {
33
+ this.domElement.remove();
34
+ if (this.scrollUnsubscribeFunction) {
35
+ this.scrollUnsubscribeFunction();
36
+ }
37
+ }
38
+ reposition(event) {
39
+ this.cursorPos = { x: event.clientX, y: event.clientY };
40
+ this.setDomPosition();
41
+ }
42
+ setDomPosition() {
43
+ /**
44
+ * position placeholder relative to the cursor
45
+ */
46
+ this.domElement.style.left = this.cursorPos.x - this.positions.x + 'px';
47
+ this.domElement.style.top = this.cursorPos.y - this.positions.y + 'px';
48
+ }
49
+ hideDefaultDragPlaceholder(event) {
50
+ const placeholder = document.createElement('img');
51
+ placeholder.src = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';
52
+ Object.assign(placeholder.style, {
53
+ display: 'block',
54
+ width: '0',
55
+ height: '0',
56
+ });
57
+ /**
58
+ * replace default browser drag placeholder with transparent image
59
+ */
60
+ event.dataTransfer?.setDragImage(placeholder, 0, 0);
61
+ }
62
+ }
63
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHJhZ2dlZC5wbGFjZWhvbGRlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9kcmFnLWFuZC1kcm9wLWxpc3QvZHJhZ2dlZC5wbGFjZWhvbGRlci50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFLQSxNQUFNLE9BQU8sa0JBQWtCO0lBTTdCLFlBQ0UsT0FBbUIsRUFDbkIsU0FBc0IsRUFDdEIsS0FBZ0IsRUFDUixRQUFtQjtRQUFuQixhQUFRLEdBQVIsUUFBUSxDQUFXO1FBUlosY0FBUyxHQUE2QixFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDO1FBRTlELGNBQVMsR0FBVyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDO1FBUXpDLElBQUksQ0FBQyxVQUFVLEdBQUcsT0FBTyxDQUFDLEtBQUssRUFBRSxDQUFDO1FBRWxDOztXQUVHO1FBQ0gsTUFBTSxVQUFVLEdBQVksT0FBTyxDQUFDLEdBQUcsQ0FBQyxxQkFBcUIsRUFBRSxDQUFDO1FBRWhFOzs7V0FHRztRQUNILElBQUksQ0FBQyxTQUFTLEdBQUc7WUFDZixDQUFDLEVBQUUsS0FBSyxDQUFDLE9BQU8sR0FBRyxVQUFVLENBQUMsSUFBSTtZQUNsQyxDQUFDLEVBQUUsS0FBSyxDQUFDLE9BQU8sR0FBRyxVQUFVLENBQUMsR0FBRztTQUNsQyxDQUFDO1FBRUYsSUFBSSxDQUFDLDBCQUEwQixDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRXZDOztXQUVHO1FBQ0gsU0FBUyxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUM7UUFFbEMsSUFBSSxDQUFDLHlCQUF5QixHQUFHLElBQUksQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLFVBQVUsRUFBRSxRQUFRLEVBQUUsR0FBUyxFQUFFO1lBQ3JGLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztRQUN4QixDQUFDLENBQUMsQ0FBQztRQUVIOztXQUVHO1FBQ0gsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUN6QixDQUFDO0lBRUQsTUFBTTtRQUNKLElBQUksQ0FBQyxVQUFVLENBQUMsTUFBTSxFQUFFLENBQUM7UUFFekIsSUFBSSxJQUFJLENBQUMseUJBQXlCLEVBQUUsQ0FBQztZQUNuQyxJQUFJLENBQUMseUJBQXlCLEVBQUUsQ0FBQztRQUNuQyxDQUFDO0lBQ0gsQ0FBQztJQUVELFVBQVUsQ0FBQyxLQUFpQjtRQUMxQixJQUFJLENBQUMsU0FBUyxHQUFHLEVBQUUsQ0FBQyxFQUFFLEtBQUssQ0FBQyxPQUFPLEVBQUUsQ0FBQyxFQUFFLEtBQUssQ0FBQyxPQUFPLEVBQUUsQ0FBQztRQUN4RCxJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7SUFDeEIsQ0FBQztJQUVPLGNBQWM7UUFDcEI7O1dBRUc7UUFDSCxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQUssQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLEdBQUcsSUFBSSxDQUFDO1FBQ3hFLElBQUksQ0FBQyxVQUFVLENBQUMsS0FBSyxDQUFDLEdBQUcsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLENBQUMsR0FBRyxJQUFJLENBQUM7SUFDekUsQ0FBQztJQUVPLDBCQUEwQixDQUFDLEtBQWdCO1FBQ2pELE1BQU0sV0FBVyxHQUFxQixRQUFRLENBQUMsYUFBYSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBQ3BFLFdBQVcsQ0FBQyxHQUFHLEdBQUcsb0ZBQW9GLENBQUM7UUFFdkcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxXQUFXLENBQUMsS0FBSyxFQUFFO1lBQy9CLE9BQU8sRUFBRSxPQUFPO1lBQ2hCLEtBQUssRUFBRSxHQUFHO1lBQ1YsTUFBTSxFQUFFLEdBQUc7U0FDWixDQUFDLENBQUM7UUFFSDs7V0FFRztRQUNILEtBQUssQ0FBQyxZQUFZLEVBQUUsWUFBWSxDQUFDLFdBQVcsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDdEQsQ0FBQztDQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRG9tRWxlbWVudCB9IGZyb20gJy4vZG9tLmVsZW1lbnQnO1xuaW1wb3J0IHsgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbnR5cGUgQ09PUkRTID0geyB4OiBudW1iZXI7IHk6IG51bWJlciB9O1xuXG5leHBvcnQgY2xhc3MgRHJhZ2dlZFBsYWNlaG9sZGVyIHtcbiAgcmVhZG9ubHkgZG9tRWxlbWVudDogSFRNTEVsZW1lbnQ7XG4gIHByaXZhdGUgcmVhZG9ubHkgcG9zaXRpb25zOiB7IHg6IG51bWJlcjsgeTogbnVtYmVyIH0gPSB7IHg6IDAsIHk6IDAgfTtcbiAgcHJpdmF0ZSByZWFkb25seSBzY3JvbGxVbnN1YnNjcmliZUZ1bmN0aW9uPzogKCkgPT4gdm9pZDtcbiAgcHJpdmF0ZSBjdXJzb3JQb3M6IENPT1JEUyA9IHsgeDogMCwgeTogMCB9O1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIGVsZW1lbnQ6IERvbUVsZW1lbnQsXG4gICAgY29udGFpbmVyOiBIVE1MRWxlbWVudCxcbiAgICBldmVudDogRHJhZ0V2ZW50LFxuICAgIHByaXZhdGUgcmVuZGVyZXI6IFJlbmRlcmVyMixcbiAgKSB7XG4gICAgdGhpcy5kb21FbGVtZW50ID0gZWxlbWVudC5jbG9uZSgpO1xuXG4gICAgLyoqXG4gICAgICogZ2V0IHRhcmdldCBlbGVtZW50IERPTVJlY3QgZGF0YVxuICAgICAqL1xuICAgIGNvbnN0IHRhcmdldFJlY3Q6IERPTVJlY3QgPSBlbGVtZW50LmRvbS5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKTtcblxuICAgIC8qKlxuICAgICAqIHNhdmUgY3Vyc29yIHBvc2l0aW9uIHJlbGF0aXZlIHRvIHRhcmdldCBlbGVtZW50XG4gICAgICogdGhpcyB3aWxsIGhlbHAgY2FsY3VsYXRlIGRyYWdnZWQgaXRlbSBwb3NpdGlvbiByZWxhdGl2ZSB0byB0aGUgY3Vyc29yXG4gICAgICovXG4gICAgdGhpcy5wb3NpdGlvbnMgPSB7XG4gICAgICB4OiBldmVudC5jbGllbnRYIC0gdGFyZ2V0UmVjdC5sZWZ0LFxuICAgICAgeTogZXZlbnQuY2xpZW50WSAtIHRhcmdldFJlY3QudG9wLFxuICAgIH07XG5cbiAgICB0aGlzLmhpZGVEZWZhdWx0RHJhZ1BsYWNlaG9sZGVyKGV2ZW50KTtcblxuICAgIC8qKlxuICAgICAqIGFkZCBjbG9uZSB0byB0aGUgbGlzdFxuICAgICAqL1xuICAgIGNvbnRhaW5lci5hcHBlbmQodGhpcy5kb21FbGVtZW50KTtcblxuICAgIHRoaXMuc2Nyb2xsVW5zdWJzY3JpYmVGdW5jdGlvbiA9IHRoaXMucmVuZGVyZXIubGlzdGVuKCdkb2N1bWVudCcsICdzY3JvbGwnLCAoKTogdm9pZCA9PiB7XG4gICAgICB0aGlzLnNldERvbVBvc2l0aW9uKCk7XG4gICAgfSk7XG5cbiAgICAvKipcbiAgICAgKiBtYWtlIGluaXRpYWwgcGxhY2Vob2xkZXIgcG9zaXRpb25pbmdcbiAgICAgKi9cbiAgICB0aGlzLnJlcG9zaXRpb24oZXZlbnQpO1xuICB9XG5cbiAgcmVtb3ZlKCk6IHZvaWQge1xuICAgIHRoaXMuZG9tRWxlbWVudC5yZW1vdmUoKTtcblxuICAgIGlmICh0aGlzLnNjcm9sbFVuc3Vic2NyaWJlRnVuY3Rpb24pIHtcbiAgICAgIHRoaXMuc2Nyb2xsVW5zdWJzY3JpYmVGdW5jdGlvbigpO1xuICAgIH1cbiAgfVxuXG4gIHJlcG9zaXRpb24oZXZlbnQ6IE1vdXNlRXZlbnQpOiB2b2lkIHtcbiAgICB0aGlzLmN1cnNvclBvcyA9IHsgeDogZXZlbnQuY2xpZW50WCwgeTogZXZlbnQuY2xpZW50WSB9O1xuICAgIHRoaXMuc2V0RG9tUG9zaXRpb24oKTtcbiAgfVxuXG4gIHByaXZhdGUgc2V0RG9tUG9zaXRpb24oKTogdm9pZCB7XG4gICAgLyoqXG4gICAgICogcG9zaXRpb24gcGxhY2Vob2xkZXIgcmVsYXRpdmUgdG8gdGhlIGN1cnNvclxuICAgICAqL1xuICAgIHRoaXMuZG9tRWxlbWVudC5zdHlsZS5sZWZ0ID0gdGhpcy5jdXJzb3JQb3MueCAtIHRoaXMucG9zaXRpb25zLnggKyAncHgnO1xuICAgIHRoaXMuZG9tRWxlbWVudC5zdHlsZS50b3AgPSB0aGlzLmN1cnNvclBvcy55IC0gdGhpcy5wb3NpdGlvbnMueSArICdweCc7XG4gIH1cblxuICBwcml2YXRlIGhpZGVEZWZhdWx0RHJhZ1BsYWNlaG9sZGVyKGV2ZW50OiBEcmFnRXZlbnQpOiB2b2lkIHtcbiAgICBjb25zdCBwbGFjZWhvbGRlcjogSFRNTEltYWdlRWxlbWVudCA9IGRvY3VtZW50LmNyZWF0ZUVsZW1lbnQoJ2ltZycpO1xuICAgIHBsYWNlaG9sZGVyLnNyYyA9ICdkYXRhOmltYWdlL2dpZjtiYXNlNjQsUjBsR09EbGhBUUFCQUlBQUFQLy8vd0FBQUNINUJBRUFBQUFBTEFBQUFBQUJBQUVBQUFJQ1JBRUFPdz09JztcblxuICAgIE9iamVjdC5hc3NpZ24ocGxhY2Vob2xkZXIuc3R5bGUsIHtcbiAgICAgIGRpc3BsYXk6ICdibG9jaycsXG4gICAgICB3aWR0aDogJzAnLFxuICAgICAgaGVpZ2h0OiAnMCcsXG4gICAgfSk7XG5cbiAgICAvKipcbiAgICAgKiByZXBsYWNlIGRlZmF1bHQgYnJvd3NlciBkcmFnIHBsYWNlaG9sZGVyIHdpdGggdHJhbnNwYXJlbnQgaW1hZ2VcbiAgICAgKi9cbiAgICBldmVudC5kYXRhVHJhbnNmZXI/LnNldERyYWdJbWFnZShwbGFjZWhvbGRlciwgMCwgMCk7XG4gIH1cbn1cbiJdfQ==
@@ -0,0 +1,3 @@
1
+ export * from './drag-and-drop-list.component';
2
+ export * from './drag-and-drop-list.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9kcmFnLWFuZC1kcm9wLWxpc3QvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGdDQUFnQyxDQUFDO0FBQy9DLGNBQWMsNkJBQTZCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2RyYWctYW5kLWRyb3AtbGlzdC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9kcmFnLWFuZC1kcm9wLWxpc3QubW9kdWxlJztcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNjZW50Z2wtYWRzLXVpLXNyYy1saWItY29tcG9uZW50cy1lcnJvci1wYWdlLWVycm9yLXBhZ2UtY29kZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9lcnJvci1wYWdlL2Vycm9yLXBhZ2UtY29kZS9hc2NlbnRnbC1hZHMtdWktc3JjLWxpYi1jb21wb25lbnRzLWVycm9yLXBhZ2UtZXJyb3ItcGFnZS1jb2RlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,14 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class AdsErrorPageCodeComponent {
4
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsErrorPageCodeComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsErrorPageCodeComponent, selector: "ads-error-page-code", ngImport: i0, template: ``, isInline: true }); }
6
+ }
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsErrorPageCodeComponent, decorators: [{
8
+ type: Component,
9
+ args: [{
10
+ selector: 'ads-error-page-code',
11
+ template: ``,
12
+ }]
13
+ }] });
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItcGFnZS1jb2RlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9lcnJvci1wYWdlL2Vycm9yLXBhZ2UtY29kZS9lcnJvci1wYWdlLWNvZGUuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBTTFDLE1BQU0sT0FBTyx5QkFBeUI7OEdBQXpCLHlCQUF5QjtrR0FBekIseUJBQXlCLDJEQUYxQixFQUFFOzsyRkFFRCx5QkFBeUI7a0JBSnJDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHFCQUFxQjtvQkFDL0IsUUFBUSxFQUFFLEVBQUU7aUJBQ2IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYWRzLWVycm9yLXBhZ2UtY29kZScsXG4gIHRlbXBsYXRlOiBgYCxcbn0pXG5leHBvcnQgY2xhc3MgQWRzRXJyb3JQYWdlQ29kZUNvbXBvbmVudCB7fVxuIl19
@@ -0,0 +1,18 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { AdsErrorPageCodeComponent } from './error-page-code.component';
4
+ import * as i0 from "@angular/core";
5
+ export class AdsErrorPageCodeModule {
6
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsErrorPageCodeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsErrorPageCodeModule, declarations: [AdsErrorPageCodeComponent], imports: [CommonModule], exports: [AdsErrorPageCodeComponent] }); }
8
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsErrorPageCodeModule, imports: [CommonModule] }); }
9
+ }
10
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsErrorPageCodeModule, decorators: [{
11
+ type: NgModule,
12
+ args: [{
13
+ imports: [CommonModule],
14
+ declarations: [AdsErrorPageCodeComponent],
15
+ exports: [AdsErrorPageCodeComponent],
16
+ }]
17
+ }] });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXJyb3ItcGFnZS1jb2RlLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9lcnJvci1wYWdlL2Vycm9yLXBhZ2UtY29kZS9lcnJvci1wYWdlLWNvZGUubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDZCQUE2QixDQUFDOztBQU94RSxNQUFNLE9BQU8sc0JBQXNCOzhHQUF0QixzQkFBc0I7K0dBQXRCLHNCQUFzQixpQkFIbEIseUJBQXlCLGFBRDlCLFlBQVksYUFFWix5QkFBeUI7K0dBRXhCLHNCQUFzQixZQUp2QixZQUFZOzsyRkFJWCxzQkFBc0I7a0JBTGxDLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixZQUFZLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztvQkFDekMsT0FBTyxFQUFFLENBQUMseUJBQXlCLENBQUM7aUJBQ3JDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBBZHNFcnJvclBhZ2VDb2RlQ29tcG9uZW50IH0gZnJvbSAnLi9lcnJvci1wYWdlLWNvZGUuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGRlY2xhcmF0aW9uczogW0Fkc0Vycm9yUGFnZUNvZGVDb21wb25lbnRdLFxuICBleHBvcnRzOiBbQWRzRXJyb3JQYWdlQ29kZUNvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIEFkc0Vycm9yUGFnZUNvZGVNb2R1bGUge31cbiJdfQ==
@@ -0,0 +1,3 @@
1
+ export * from './error-page-code.component';
2
+ export * from './error-page-code.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9lcnJvci1wYWdlL2Vycm9yLXBhZ2UtY29kZS9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZXJyb3ItcGFnZS1jb2RlLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2Vycm9yLXBhZ2UtY29kZS5tb2R1bGUnO1xuIl19
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNjZW50Z2wtYWRzLXVpLXNyYy1saWItY29tcG9uZW50cy1mb290ZXIuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvZm9vdGVyL2FzY2VudGdsLWFkcy11aS1zcmMtbGliLWNvbXBvbmVudHMtZm9vdGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXNjZW50Z2wtYWRzLXVpLXNyYy1saWItY29tcG9uZW50cy1mb290ZXItY29udGFpbmVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2Zvb3Rlci9jb250YWluZXIvYXNjZW50Z2wtYWRzLXVpLXNyYy1saWItY29tcG9uZW50cy1mb290ZXItY29udGFpbmVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,11 @@
1
+ import { Component } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class AdsFooterContainerComponent {
4
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsFooterContainerComponent, selector: "ads-footer-container", ngImport: i0, template: "<footer>\n <ng-content></ng-content>\n</footer>\n", styles: ["footer{height:107px;box-sizing:border-box;padding:24px;border-top:1px solid var(--color-light);background-color:var(--color-muted-50);width:100%}@media screen and (max-width: 959px){footer{height:auto}}\n"] }); }
6
+ }
7
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterContainerComponent, decorators: [{
8
+ type: Component,
9
+ args: [{ selector: 'ads-footer-container', template: "<footer>\n <ng-content></ng-content>\n</footer>\n", styles: ["footer{height:107px;box-sizing:border-box;padding:24px;border-top:1px solid var(--color-light);background-color:var(--color-muted-50);width:100%}@media screen and (max-width: 959px){footer{height:auto}}\n"] }]
10
+ }] });
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLWNvbnRhaW5lci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvZm9vdGVyL2NvbnRhaW5lci9mb290ZXItY29udGFpbmVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9mb290ZXIvY29udGFpbmVyL2Zvb3Rlci1jb250YWluZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPMUMsTUFBTSxPQUFPLDJCQUEyQjs4R0FBM0IsMkJBQTJCO2tHQUEzQiwyQkFBMkIsNERDUHhDLG9EQUdBOzsyRkRJYSwyQkFBMkI7a0JBTHZDLFNBQVM7K0JBQ0Usc0JBQXNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Fkcy1mb290ZXItY29udGFpbmVyJyxcbiAgc3R5bGVVcmxzOiBbJ2Zvb3Rlci1jb250YWluZXIuY29tcG9uZW50LnNjc3MnXSxcbiAgdGVtcGxhdGVVcmw6ICdmb290ZXItY29udGFpbmVyLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgQWRzRm9vdGVyQ29udGFpbmVyQ29tcG9uZW50IHt9XG4iLCI8Zm9vdGVyPlxuICA8bmctY29udGVudD48L25nLWNvbnRlbnQ+XG48L2Zvb3Rlcj5cbiJdfQ==
@@ -0,0 +1,16 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { AdsFooterContainerComponent } from './footer-container.component';
3
+ import * as i0 from "@angular/core";
4
+ export class AdsFooterContainerModule {
5
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
6
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterContainerModule, declarations: [AdsFooterContainerComponent], exports: [AdsFooterContainerComponent] }); }
7
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterContainerModule }); }
8
+ }
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterContainerModule, decorators: [{
10
+ type: NgModule,
11
+ args: [{
12
+ exports: [AdsFooterContainerComponent],
13
+ declarations: [AdsFooterContainerComponent],
14
+ }]
15
+ }] });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9vdGVyLWNvbnRhaW5lci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvZm9vdGVyL2NvbnRhaW5lci9mb290ZXItY29udGFpbmVyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLDhCQUE4QixDQUFDOztBQU0zRSxNQUFNLE9BQU8sd0JBQXdCOzhHQUF4Qix3QkFBd0I7K0dBQXhCLHdCQUF3QixpQkFGcEIsMkJBQTJCLGFBRGhDLDJCQUEyQjsrR0FHMUIsd0JBQXdCOzsyRkFBeEIsd0JBQXdCO2tCQUpwQyxRQUFRO21CQUFDO29CQUNSLE9BQU8sRUFBRSxDQUFDLDJCQUEyQixDQUFDO29CQUN0QyxZQUFZLEVBQUUsQ0FBQywyQkFBMkIsQ0FBQztpQkFDNUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWRzRm9vdGVyQ29udGFpbmVyQ29tcG9uZW50IH0gZnJvbSAnLi9mb290ZXItY29udGFpbmVyLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGV4cG9ydHM6IFtBZHNGb290ZXJDb250YWluZXJDb21wb25lbnRdLFxuICBkZWNsYXJhdGlvbnM6IFtBZHNGb290ZXJDb250YWluZXJDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNGb290ZXJDb250YWluZXJNb2R1bGUge31cbiJdfQ==
@@ -0,0 +1,3 @@
1
+ export * from './footer-container.component';
2
+ export * from './footer-container.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9mb290ZXIvY29udGFpbmVyL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mb290ZXItY29udGFpbmVyLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL2Zvb3Rlci1jb250YWluZXIubW9kdWxlJztcbiJdfQ==