@ethlete/cdk 2.3.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 (1172) hide show
  1. package/CHANGELOG.md +761 -0
  2. package/README.md +7 -0
  3. package/esm2020/ethlete-cdk.mjs +5 -0
  4. package/esm2020/index.mjs +2 -0
  5. package/esm2020/lib/components/accordion/accordion.imports.mjs +11 -0
  6. package/esm2020/lib/components/accordion/components/accordion/accordion.component.animations.mjs +9 -0
  7. package/esm2020/lib/components/accordion/components/accordion/accordion.component.constants.mjs +3 -0
  8. package/esm2020/lib/components/accordion/components/accordion/accordion.component.mjs +86 -0
  9. package/esm2020/lib/components/accordion/components/accordion/index.mjs +2 -0
  10. package/esm2020/lib/components/accordion/components/accordion/public-api.mjs +4 -0
  11. package/esm2020/lib/components/accordion/components/accordion-group/accordion-group.component.mjs +53 -0
  12. package/esm2020/lib/components/accordion/components/accordion-group/public-api.mjs +2 -0
  13. package/esm2020/lib/components/accordion/components/index.mjs +2 -0
  14. package/esm2020/lib/components/accordion/components/public-api.mjs +3 -0
  15. package/esm2020/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.mjs +17 -0
  16. package/esm2020/lib/components/accordion/partials/accordion-hint/public-api.mjs +2 -0
  17. package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.mjs +3 -0
  18. package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.mjs +20 -0
  19. package/esm2020/lib/components/accordion/partials/accordion-hint-wrapper/public-api.mjs +3 -0
  20. package/esm2020/lib/components/accordion/partials/accordion-label/accordion-label.directive.mjs +17 -0
  21. package/esm2020/lib/components/accordion/partials/accordion-label/public-api.mjs +2 -0
  22. package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.mjs +3 -0
  23. package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.mjs +20 -0
  24. package/esm2020/lib/components/accordion/partials/accordion-label-wrapper/public-api.mjs +3 -0
  25. package/esm2020/lib/components/accordion/partials/index.mjs +2 -0
  26. package/esm2020/lib/components/accordion/partials/public-api.mjs +5 -0
  27. package/esm2020/lib/components/accordion/public-api.mjs +4 -0
  28. package/esm2020/lib/components/bracket/bracket.imports.mjs +4 -0
  29. package/esm2020/lib/components/bracket/components/bracket/bracket.component.mjs +342 -0
  30. package/esm2020/lib/components/bracket/components/bracket/bracket.component.types.mjs +2 -0
  31. package/esm2020/lib/components/bracket/components/bracket/public-api.mjs +3 -0
  32. package/esm2020/lib/components/bracket/components/index.mjs +2 -0
  33. package/esm2020/lib/components/bracket/components/public-api.mjs +2 -0
  34. package/esm2020/lib/components/bracket/constants/bracket.constants.mjs +12 -0
  35. package/esm2020/lib/components/bracket/constants/index.mjs +2 -0
  36. package/esm2020/lib/components/bracket/constants/public-api.mjs +2 -0
  37. package/esm2020/lib/components/bracket/directives/bracket-match/bracket-match.directive.mjs +19 -0
  38. package/esm2020/lib/components/bracket/directives/bracket-match/index.mjs +2 -0
  39. package/esm2020/lib/components/bracket/directives/bracket-match/public-api.mjs +2 -0
  40. package/esm2020/lib/components/bracket/directives/bracket-round/bracket-round.directive.mjs +19 -0
  41. package/esm2020/lib/components/bracket/directives/bracket-round/index.mjs +2 -0
  42. package/esm2020/lib/components/bracket/directives/bracket-round/public-api.mjs +2 -0
  43. package/esm2020/lib/components/bracket/directives/index.mjs +2 -0
  44. package/esm2020/lib/components/bracket/directives/public-api.mjs +3 -0
  45. package/esm2020/lib/components/bracket/partials/bracket-match/bracket-match.component.mjs +19 -0
  46. package/esm2020/lib/components/bracket/partials/bracket-match/index.mjs +2 -0
  47. package/esm2020/lib/components/bracket/partials/bracket-match/public-api.mjs +2 -0
  48. package/esm2020/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.mjs +19 -0
  49. package/esm2020/lib/components/bracket/partials/bracket-round-header/index.mjs +2 -0
  50. package/esm2020/lib/components/bracket/partials/bracket-round-header/public-api.mjs +2 -0
  51. package/esm2020/lib/components/bracket/partials/index.mjs +2 -0
  52. package/esm2020/lib/components/bracket/partials/public-api.mjs +3 -0
  53. package/esm2020/lib/components/bracket/public-api.mjs +8 -0
  54. package/esm2020/lib/components/bracket/types/bracket-config.types.mjs +2 -0
  55. package/esm2020/lib/components/bracket/types/bracket.types.mjs +2 -0
  56. package/esm2020/lib/components/bracket/types/index.mjs +2 -0
  57. package/esm2020/lib/components/bracket/types/public-api.mjs +3 -0
  58. package/esm2020/lib/components/bracket/utils/bracket-config.utils.mjs +13 -0
  59. package/esm2020/lib/components/bracket/utils/bracket.utils.mjs +335 -0
  60. package/esm2020/lib/components/bracket/utils/index.mjs +2 -0
  61. package/esm2020/lib/components/bracket/utils/public-api.mjs +3 -0
  62. package/esm2020/lib/components/button/button.imports.mjs +3 -0
  63. package/esm2020/lib/components/button/components/button/button.component.mjs +18 -0
  64. package/esm2020/lib/components/button/components/button/public-api.mjs +2 -0
  65. package/esm2020/lib/components/button/components/index.mjs +2 -0
  66. package/esm2020/lib/components/button/components/public-api.mjs +3 -0
  67. package/esm2020/lib/components/button/components/query-button/public-api.mjs +2 -0
  68. package/esm2020/lib/components/button/components/query-button/query-button.component.mjs +25 -0
  69. package/esm2020/lib/components/button/directives/button/button.directive.mjs +83 -0
  70. package/esm2020/lib/components/button/directives/button/index.mjs +2 -0
  71. package/esm2020/lib/components/button/directives/button/public-api.mjs +2 -0
  72. package/esm2020/lib/components/button/directives/index.mjs +2 -0
  73. package/esm2020/lib/components/button/directives/public-api.mjs +3 -0
  74. package/esm2020/lib/components/button/directives/query-button/public-api.mjs +2 -0
  75. package/esm2020/lib/components/button/directives/query-button/query-button.directive.mjs +110 -0
  76. package/esm2020/lib/components/button/public-api.mjs +4 -0
  77. package/esm2020/lib/components/forms/components/checkbox/checkbox.imports.mjs +9 -0
  78. package/esm2020/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.mjs +23 -0
  79. package/esm2020/lib/components/forms/components/checkbox/components/checkbox/public-api.mjs +2 -0
  80. package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.mjs +54 -0
  81. package/esm2020/lib/components/forms/components/checkbox/components/checkbox-field/public-api.mjs +2 -0
  82. package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.mjs +18 -0
  83. package/esm2020/lib/components/forms/components/checkbox/components/checkbox-group/public-api.mjs +2 -0
  84. package/esm2020/lib/components/forms/components/checkbox/components/index.mjs +2 -0
  85. package/esm2020/lib/components/forms/components/checkbox/components/public-api.mjs +4 -0
  86. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +44 -0
  87. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/index.mjs +2 -0
  88. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox/public-api.mjs +2 -0
  89. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +36 -0
  90. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.mjs +2 -0
  91. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.mjs +80 -0
  92. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/index.mjs +2 -0
  93. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.mjs +2 -0
  94. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +38 -0
  95. package/esm2020/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.mjs +2 -0
  96. package/esm2020/lib/components/forms/components/checkbox/directives/index.mjs +2 -0
  97. package/esm2020/lib/components/forms/components/checkbox/directives/public-api.mjs +5 -0
  98. package/esm2020/lib/components/forms/components/checkbox/public-api.mjs +4 -0
  99. package/esm2020/lib/components/forms/components/error/components/error/error.component.mjs +56 -0
  100. package/esm2020/lib/components/forms/components/error/components/error/public-api.mjs +2 -0
  101. package/esm2020/lib/components/forms/components/error/components/public-api.mjs +2 -0
  102. package/esm2020/lib/components/forms/components/error/index.mjs +2 -0
  103. package/esm2020/lib/components/forms/components/error/public-api.mjs +2 -0
  104. package/esm2020/lib/components/forms/components/index.mjs +2 -0
  105. package/esm2020/lib/components/forms/components/input/components/email-input/email-input.component.mjs +24 -0
  106. package/esm2020/lib/components/forms/components/input/components/email-input/public-api.mjs +2 -0
  107. package/esm2020/lib/components/forms/components/input/components/index.mjs +2 -0
  108. package/esm2020/lib/components/forms/components/input/components/input-field/input-field.component.mjs +57 -0
  109. package/esm2020/lib/components/forms/components/input/components/input-field/public-api.mjs +2 -0
  110. package/esm2020/lib/components/forms/components/input/components/number-input/number-input.component.mjs +24 -0
  111. package/esm2020/lib/components/forms/components/input/components/number-input/public-api.mjs +2 -0
  112. package/esm2020/lib/components/forms/components/input/components/password-input/password-input.component.mjs +24 -0
  113. package/esm2020/lib/components/forms/components/input/components/password-input/public-api.mjs +2 -0
  114. package/esm2020/lib/components/forms/components/input/components/public-api.mjs +8 -0
  115. package/esm2020/lib/components/forms/components/input/components/search-input/public-api.mjs +2 -0
  116. package/esm2020/lib/components/forms/components/input/components/search-input/search-input.component.mjs +24 -0
  117. package/esm2020/lib/components/forms/components/input/components/text-input/public-api.mjs +2 -0
  118. package/esm2020/lib/components/forms/components/input/components/text-input/text-input.component.mjs +24 -0
  119. package/esm2020/lib/components/forms/components/input/components/textarea-input/public-api.mjs +2 -0
  120. package/esm2020/lib/components/forms/components/input/components/textarea-input/textarea-input.component.mjs +43 -0
  121. package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.mjs +52 -0
  122. package/esm2020/lib/components/forms/components/input/directives/autosize-textarea/public-api.mjs +2 -0
  123. package/esm2020/lib/components/forms/components/input/directives/email-input/email-input.directive.mjs +50 -0
  124. package/esm2020/lib/components/forms/components/input/directives/email-input/public-api.mjs +2 -0
  125. package/esm2020/lib/components/forms/components/input/directives/index.mjs +2 -0
  126. package/esm2020/lib/components/forms/components/input/directives/number-input/number-input.directive.mjs +51 -0
  127. package/esm2020/lib/components/forms/components/input/directives/number-input/public-api.mjs +2 -0
  128. package/esm2020/lib/components/forms/components/input/directives/password-input/password-input.directive.mjs +54 -0
  129. package/esm2020/lib/components/forms/components/input/directives/password-input/public-api.mjs +2 -0
  130. package/esm2020/lib/components/forms/components/input/directives/public-api.mjs +8 -0
  131. package/esm2020/lib/components/forms/components/input/directives/search-input/public-api.mjs +2 -0
  132. package/esm2020/lib/components/forms/components/input/directives/search-input/search-input.directive.mjs +54 -0
  133. package/esm2020/lib/components/forms/components/input/directives/text-input/public-api.mjs +2 -0
  134. package/esm2020/lib/components/forms/components/input/directives/text-input/text-input.directive.mjs +50 -0
  135. package/esm2020/lib/components/forms/components/input/directives/textarea-input/index.mjs +2 -0
  136. package/esm2020/lib/components/forms/components/input/directives/textarea-input/public-api.mjs +2 -0
  137. package/esm2020/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.mjs +50 -0
  138. package/esm2020/lib/components/forms/components/input/input.imports.mjs +19 -0
  139. package/esm2020/lib/components/forms/components/input/partials/index.mjs +2 -0
  140. package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.mjs +22 -0
  141. package/esm2020/lib/components/forms/components/input/partials/password-input-toggle/public-api.mjs +2 -0
  142. package/esm2020/lib/components/forms/components/input/partials/public-api.mjs +3 -0
  143. package/esm2020/lib/components/forms/components/input/partials/search-input-clear/public-api.mjs +2 -0
  144. package/esm2020/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.mjs +22 -0
  145. package/esm2020/lib/components/forms/components/input/public-api.mjs +5 -0
  146. package/esm2020/lib/components/forms/components/label/components/index.mjs +2 -0
  147. package/esm2020/lib/components/forms/components/label/components/label/label.component.mjs +51 -0
  148. package/esm2020/lib/components/forms/components/label/components/label/public-api.mjs +2 -0
  149. package/esm2020/lib/components/forms/components/label/components/public-api.mjs +2 -0
  150. package/esm2020/lib/components/forms/components/label/directives/index.mjs +2 -0
  151. package/esm2020/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.mjs +33 -0
  152. package/esm2020/lib/components/forms/components/label/directives/label-suffix/public-api.mjs +2 -0
  153. package/esm2020/lib/components/forms/components/label/directives/public-api.mjs +2 -0
  154. package/esm2020/lib/components/forms/components/label/label.imports.mjs +4 -0
  155. package/esm2020/lib/components/forms/components/label/public-api.mjs +4 -0
  156. package/esm2020/lib/components/forms/components/public-api.mjs +10 -0
  157. package/esm2020/lib/components/forms/components/radio/components/index.mjs +2 -0
  158. package/esm2020/lib/components/forms/components/radio/components/public-api.mjs +4 -0
  159. package/esm2020/lib/components/forms/components/radio/components/radio/public-api.mjs +2 -0
  160. package/esm2020/lib/components/forms/components/radio/components/radio/radio.component.mjs +27 -0
  161. package/esm2020/lib/components/forms/components/radio/components/radio-field/public-api.mjs +2 -0
  162. package/esm2020/lib/components/forms/components/radio/components/radio-field/radio-field.component.mjs +35 -0
  163. package/esm2020/lib/components/forms/components/radio/components/radio-group/public-api.mjs +2 -0
  164. package/esm2020/lib/components/forms/components/radio/components/radio-group/radio-group.component.mjs +43 -0
  165. package/esm2020/lib/components/forms/components/radio/directives/index.mjs +2 -0
  166. package/esm2020/lib/components/forms/components/radio/directives/public-api.mjs +4 -0
  167. package/esm2020/lib/components/forms/components/radio/directives/radio/index.mjs +2 -0
  168. package/esm2020/lib/components/forms/components/radio/directives/radio/public-api.mjs +2 -0
  169. package/esm2020/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +63 -0
  170. package/esm2020/lib/components/forms/components/radio/directives/radio-field/public-api.mjs +2 -0
  171. package/esm2020/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +40 -0
  172. package/esm2020/lib/components/forms/components/radio/directives/radio-group/public-api.mjs +2 -0
  173. package/esm2020/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +36 -0
  174. package/esm2020/lib/components/forms/components/radio/public-api.mjs +5 -0
  175. package/esm2020/lib/components/forms/components/radio/radio.imports.mjs +3 -0
  176. package/esm2020/lib/components/forms/components/radio/types/index.mjs +2 -0
  177. package/esm2020/lib/components/forms/components/radio/types/public-api.mjs +2 -0
  178. package/esm2020/lib/components/forms/components/radio/types/radio.types.mjs +2 -0
  179. package/esm2020/lib/components/forms/components/segmented-button/components/index.mjs +2 -0
  180. package/esm2020/lib/components/forms/components/segmented-button/components/public-api.mjs +4 -0
  181. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/index.mjs +2 -0
  182. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/public-api.mjs +2 -0
  183. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.mjs +37 -0
  184. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/index.mjs +2 -0
  185. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.mjs +2 -0
  186. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.mjs +25 -0
  187. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/index.mjs +2 -0
  188. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.mjs +2 -0
  189. package/esm2020/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.mjs +43 -0
  190. package/esm2020/lib/components/forms/components/segmented-button/directives/index.mjs +2 -0
  191. package/esm2020/lib/components/forms/components/segmented-button/directives/public-api.mjs +4 -0
  192. package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/index.mjs +2 -0
  193. package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.mjs +2 -0
  194. package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +73 -0
  195. package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.mjs +2 -0
  196. package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +40 -0
  197. package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.mjs +2 -0
  198. package/esm2020/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +68 -0
  199. package/esm2020/lib/components/forms/components/segmented-button/public-api.mjs +5 -0
  200. package/esm2020/lib/components/forms/components/segmented-button/segmented-button.imports.mjs +7 -0
  201. package/esm2020/lib/components/forms/components/segmented-button/types/index.mjs +2 -0
  202. package/esm2020/lib/components/forms/components/segmented-button/types/public-api.mjs +2 -0
  203. package/esm2020/lib/components/forms/components/segmented-button/types/segmented-button.types.mjs +2 -0
  204. package/esm2020/lib/components/forms/components/select/components/index.mjs +2 -0
  205. package/esm2020/lib/components/forms/components/select/components/native-select/native-select.component.mjs +24 -0
  206. package/esm2020/lib/components/forms/components/select/components/native-select/public-api.mjs +2 -0
  207. package/esm2020/lib/components/forms/components/select/components/native-select-option/native-select-option.component.mjs +32 -0
  208. package/esm2020/lib/components/forms/components/select/components/native-select-option/public-api.mjs +2 -0
  209. package/esm2020/lib/components/forms/components/select/components/public-api.mjs +4 -0
  210. package/esm2020/lib/components/forms/components/select/components/select-field/public-api.mjs +2 -0
  211. package/esm2020/lib/components/forms/components/select/components/select-field/select-field.component.mjs +53 -0
  212. package/esm2020/lib/components/forms/components/select/directives/index.mjs +2 -0
  213. package/esm2020/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.mjs +58 -0
  214. package/esm2020/lib/components/forms/components/select/directives/native-select-input/public-api.mjs +2 -0
  215. package/esm2020/lib/components/forms/components/select/directives/native-select-option/index.mjs +2 -0
  216. package/esm2020/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.mjs +56 -0
  217. package/esm2020/lib/components/forms/components/select/directives/native-select-option/public-api.mjs +2 -0
  218. package/esm2020/lib/components/forms/components/select/directives/public-api.mjs +3 -0
  219. package/esm2020/lib/components/forms/components/select/native-select.imports.mjs +13 -0
  220. package/esm2020/lib/components/forms/components/select/public-api.mjs +5 -0
  221. package/esm2020/lib/components/forms/components/select/types/index.mjs +2 -0
  222. package/esm2020/lib/components/forms/components/select/types/public-api.mjs +2 -0
  223. package/esm2020/lib/components/forms/components/select/types/select.types.mjs +2 -0
  224. package/esm2020/lib/components/forms/components/slide-toggle/components/index.mjs +2 -0
  225. package/esm2020/lib/components/forms/components/slide-toggle/components/public-api.mjs +3 -0
  226. package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.mjs +2 -0
  227. package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.mjs +23 -0
  228. package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.mjs +2 -0
  229. package/esm2020/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.mjs +51 -0
  230. package/esm2020/lib/components/forms/components/slide-toggle/directives/index.mjs +2 -0
  231. package/esm2020/lib/components/forms/components/slide-toggle/directives/public-api.mjs +2 -0
  232. package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.mjs +2 -0
  233. package/esm2020/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +40 -0
  234. package/esm2020/lib/components/forms/components/slide-toggle/public-api.mjs +4 -0
  235. package/esm2020/lib/components/forms/components/slide-toggle/slide-toggle.imports.mjs +3 -0
  236. package/esm2020/lib/components/forms/components/slider/components/index.mjs +2 -0
  237. package/esm2020/lib/components/forms/components/slider/components/public-api.mjs +3 -0
  238. package/esm2020/lib/components/forms/components/slider/components/slider/public-api.mjs +2 -0
  239. package/esm2020/lib/components/forms/components/slider/components/slider/slider.component.mjs +342 -0
  240. package/esm2020/lib/components/forms/components/slider/components/slider-field/public-api.mjs +2 -0
  241. package/esm2020/lib/components/forms/components/slider/components/slider-field/slider-field.component.mjs +51 -0
  242. package/esm2020/lib/components/forms/components/slider/public-api.mjs +3 -0
  243. package/esm2020/lib/components/forms/components/slider/slider.imports.mjs +3 -0
  244. package/esm2020/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.mjs +42 -0
  245. package/esm2020/lib/components/forms/directives/dynamic-form-field/public-api.mjs +2 -0
  246. package/esm2020/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.mjs +42 -0
  247. package/esm2020/lib/components/forms/directives/dynamic-form-group/public-api.mjs +2 -0
  248. package/esm2020/lib/components/forms/directives/if-input-empty/if-input-empty.directive.mjs +41 -0
  249. package/esm2020/lib/components/forms/directives/if-input-empty/public-api.mjs +2 -0
  250. package/esm2020/lib/components/forms/directives/if-input-filled/if-input-filled.directive.mjs +41 -0
  251. package/esm2020/lib/components/forms/directives/if-input-filled/public-api.mjs +2 -0
  252. package/esm2020/lib/components/forms/directives/index.mjs +2 -0
  253. package/esm2020/lib/components/forms/directives/input/index.mjs +2 -0
  254. package/esm2020/lib/components/forms/directives/input/input.directive.mjs +233 -0
  255. package/esm2020/lib/components/forms/directives/input/public-api.mjs +2 -0
  256. package/esm2020/lib/components/forms/directives/input-prefix/input-prefix.directive.mjs +30 -0
  257. package/esm2020/lib/components/forms/directives/input-prefix/public-api.mjs +2 -0
  258. package/esm2020/lib/components/forms/directives/input-suffix/input-suffix.directive.mjs +30 -0
  259. package/esm2020/lib/components/forms/directives/input-suffix/public-api.mjs +2 -0
  260. package/esm2020/lib/components/forms/directives/native-input-ref/index.mjs +2 -0
  261. package/esm2020/lib/components/forms/directives/native-input-ref/native-input-ref.directive.mjs +19 -0
  262. package/esm2020/lib/components/forms/directives/native-input-ref/public-api.mjs +2 -0
  263. package/esm2020/lib/components/forms/directives/public-api.mjs +12 -0
  264. package/esm2020/lib/components/forms/directives/static-form-field/public-api.mjs +2 -0
  265. package/esm2020/lib/components/forms/directives/static-form-field/static-form-field.directive.mjs +78 -0
  266. package/esm2020/lib/components/forms/directives/static-form-group/public-api.mjs +2 -0
  267. package/esm2020/lib/components/forms/directives/static-form-group/static-form-group.directive.mjs +29 -0
  268. package/esm2020/lib/components/forms/directives/writeable-input/public-api.mjs +2 -0
  269. package/esm2020/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +71 -0
  270. package/esm2020/lib/components/forms/public-api.mjs +5 -0
  271. package/esm2020/lib/components/forms/services/default-validator-errors.service.mjs +51 -0
  272. package/esm2020/lib/components/forms/services/form-field-state.service.mjs +24 -0
  273. package/esm2020/lib/components/forms/services/form-group-state.service.mjs +21 -0
  274. package/esm2020/lib/components/forms/services/index.mjs +2 -0
  275. package/esm2020/lib/components/forms/services/input-state.service.mjs +35 -0
  276. package/esm2020/lib/components/forms/services/public-api.mjs +5 -0
  277. package/esm2020/lib/components/forms/types/index.mjs +2 -0
  278. package/esm2020/lib/components/forms/types/input.types.mjs +2 -0
  279. package/esm2020/lib/components/forms/types/public-api.mjs +2 -0
  280. package/esm2020/lib/components/forms/utils/decorated-form-field.base.mjs +22 -0
  281. package/esm2020/lib/components/forms/utils/decorated-input.base.mjs +44 -0
  282. package/esm2020/lib/components/forms/utils/index.mjs +2 -0
  283. package/esm2020/lib/components/forms/utils/input.base.mjs +20 -0
  284. package/esm2020/lib/components/forms/utils/public-api.mjs +4 -0
  285. package/esm2020/lib/components/icons/chevron-icon/chevron-icon.component.mjs +36 -0
  286. package/esm2020/lib/components/icons/chevron-icon/index.mjs +2 -0
  287. package/esm2020/lib/components/icons/chevron-icon/public-api.mjs +2 -0
  288. package/esm2020/lib/components/icons/icon.imports.mjs +3 -0
  289. package/esm2020/lib/components/icons/index.mjs +2 -0
  290. package/esm2020/lib/components/icons/public-api.mjs +3 -0
  291. package/esm2020/lib/components/masonry/components/index.mjs +2 -0
  292. package/esm2020/lib/components/masonry/components/masonry/masonry.component.mjs +199 -0
  293. package/esm2020/lib/components/masonry/components/masonry/public-api.mjs +2 -0
  294. package/esm2020/lib/components/masonry/components/public-api.mjs +2 -0
  295. package/esm2020/lib/components/masonry/masonry.imports.mjs +4 -0
  296. package/esm2020/lib/components/masonry/partials/index.mjs +2 -0
  297. package/esm2020/lib/components/masonry/partials/masonry-item/masonry-item.component.mjs +74 -0
  298. package/esm2020/lib/components/masonry/partials/masonry-item/public-api.mjs +2 -0
  299. package/esm2020/lib/components/masonry/partials/public-api.mjs +2 -0
  300. package/esm2020/lib/components/masonry/public-api.mjs +5 -0
  301. package/esm2020/lib/components/masonry/types/masonry.types.mjs +2 -0
  302. package/esm2020/lib/components/masonry/types/public-api.mjs +2 -0
  303. package/esm2020/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.mjs +14 -0
  304. package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.mjs +51 -0
  305. package/esm2020/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.mjs +2 -0
  306. package/esm2020/lib/components/overlay/components/bottom-sheet/components/index.mjs +2 -0
  307. package/esm2020/lib/components/overlay/components/bottom-sheet/components/public-api.mjs +2 -0
  308. package/esm2020/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.mjs +30 -0
  309. package/esm2020/lib/components/overlay/components/bottom-sheet/constants/index.mjs +2 -0
  310. package/esm2020/lib/components/overlay/components/bottom-sheet/constants/public-api.mjs +2 -0
  311. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.mjs +43 -0
  312. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.mjs +2 -0
  313. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.mjs +103 -0
  314. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.mjs +2 -0
  315. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.mjs +49 -0
  316. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.mjs +2 -0
  317. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/index.mjs +2 -0
  318. package/esm2020/lib/components/overlay/components/bottom-sheet/partials/public-api.mjs +4 -0
  319. package/esm2020/lib/components/overlay/components/bottom-sheet/public-api.mjs +8 -0
  320. package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.mjs +113 -0
  321. package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.mjs +48 -0
  322. package/esm2020/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.mjs +31 -0
  323. package/esm2020/lib/components/overlay/components/bottom-sheet/services/index.mjs +2 -0
  324. package/esm2020/lib/components/overlay/components/bottom-sheet/services/public-api.mjs +4 -0
  325. package/esm2020/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.mjs +2 -0
  326. package/esm2020/lib/components/overlay/components/bottom-sheet/types/index.mjs +2 -0
  327. package/esm2020/lib/components/overlay/components/bottom-sheet/types/public-api.mjs +2 -0
  328. package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.mjs +7 -0
  329. package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.mjs +93 -0
  330. package/esm2020/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.mjs +18 -0
  331. package/esm2020/lib/components/overlay/components/bottom-sheet/utils/index.mjs +2 -0
  332. package/esm2020/lib/components/overlay/components/bottom-sheet/utils/public-api.mjs +4 -0
  333. package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.mjs +51 -0
  334. package/esm2020/lib/components/overlay/components/dialog/components/dialog-container/public-api.mjs +2 -0
  335. package/esm2020/lib/components/overlay/components/dialog/components/index.mjs +2 -0
  336. package/esm2020/lib/components/overlay/components/dialog/components/public-api.mjs +2 -0
  337. package/esm2020/lib/components/overlay/components/dialog/constants/dialog.constants.mjs +32 -0
  338. package/esm2020/lib/components/overlay/components/dialog/constants/index.mjs +2 -0
  339. package/esm2020/lib/components/overlay/components/dialog/constants/public-api.mjs +2 -0
  340. package/esm2020/lib/components/overlay/components/dialog/dialog.imports.mjs +10 -0
  341. package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.mjs +64 -0
  342. package/esm2020/lib/components/overlay/components/dialog/partials/dialog-close/public-api.mjs +2 -0
  343. package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.mjs +43 -0
  344. package/esm2020/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.mjs +2 -0
  345. package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.mjs +49 -0
  346. package/esm2020/lib/components/overlay/components/dialog/partials/dialog-title/public-api.mjs +2 -0
  347. package/esm2020/lib/components/overlay/components/dialog/partials/index.mjs +2 -0
  348. package/esm2020/lib/components/overlay/components/dialog/partials/public-api.mjs +4 -0
  349. package/esm2020/lib/components/overlay/components/dialog/public-api.mjs +8 -0
  350. package/esm2020/lib/components/overlay/components/dialog/services/dialog-base.service.mjs +109 -0
  351. package/esm2020/lib/components/overlay/components/dialog/services/dialog.service.mjs +31 -0
  352. package/esm2020/lib/components/overlay/components/dialog/services/index.mjs +2 -0
  353. package/esm2020/lib/components/overlay/components/dialog/services/public-api.mjs +3 -0
  354. package/esm2020/lib/components/overlay/components/dialog/types/dialog.types.mjs +2 -0
  355. package/esm2020/lib/components/overlay/components/dialog/types/index.mjs +2 -0
  356. package/esm2020/lib/components/overlay/components/dialog/types/public-api.mjs +2 -0
  357. package/esm2020/lib/components/overlay/components/dialog/utils/dialog-config.mjs +7 -0
  358. package/esm2020/lib/components/overlay/components/dialog/utils/dialog-ref.mjs +114 -0
  359. package/esm2020/lib/components/overlay/components/dialog/utils/dialog.utils.mjs +18 -0
  360. package/esm2020/lib/components/overlay/components/dialog/utils/index.mjs +2 -0
  361. package/esm2020/lib/components/overlay/components/dialog/utils/public-api.mjs +4 -0
  362. package/esm2020/lib/components/overlay/components/index.mjs +2 -0
  363. package/esm2020/lib/components/overlay/components/public-api.mjs +5 -0
  364. package/esm2020/lib/components/overlay/components/toggletip/components/index.mjs +2 -0
  365. package/esm2020/lib/components/overlay/components/toggletip/components/public-api.mjs +2 -0
  366. package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/public-api.mjs +2 -0
  367. package/esm2020/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.mjs +62 -0
  368. package/esm2020/lib/components/overlay/components/toggletip/constants/index.mjs +2 -0
  369. package/esm2020/lib/components/overlay/components/toggletip/constants/public-api.mjs +2 -0
  370. package/esm2020/lib/components/overlay/components/toggletip/constants/toggletip.constants.mjs +11 -0
  371. package/esm2020/lib/components/overlay/components/toggletip/directives/index.mjs +2 -0
  372. package/esm2020/lib/components/overlay/components/toggletip/directives/public-api.mjs +2 -0
  373. package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/public-api.mjs +2 -0
  374. package/esm2020/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.mjs +196 -0
  375. package/esm2020/lib/components/overlay/components/toggletip/public-api.mjs +7 -0
  376. package/esm2020/lib/components/overlay/components/toggletip/toggletip.imports.mjs +3 -0
  377. package/esm2020/lib/components/overlay/components/toggletip/types/index.mjs +2 -0
  378. package/esm2020/lib/components/overlay/components/toggletip/types/public-api.mjs +2 -0
  379. package/esm2020/lib/components/overlay/components/toggletip/types/toggletip.types.mjs +2 -0
  380. package/esm2020/lib/components/overlay/components/toggletip/utils/index.mjs +2 -0
  381. package/esm2020/lib/components/overlay/components/toggletip/utils/public-api.mjs +3 -0
  382. package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip-config.mjs +6 -0
  383. package/esm2020/lib/components/overlay/components/toggletip/utils/toggletip.util.mjs +6 -0
  384. package/esm2020/lib/components/overlay/components/tooltip/components/index.mjs +2 -0
  385. package/esm2020/lib/components/overlay/components/tooltip/components/public-api.mjs +2 -0
  386. package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/public-api.mjs +2 -0
  387. package/esm2020/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.mjs +60 -0
  388. package/esm2020/lib/components/overlay/components/tooltip/constants/index.mjs +2 -0
  389. package/esm2020/lib/components/overlay/components/tooltip/constants/public-api.mjs +2 -0
  390. package/esm2020/lib/components/overlay/components/tooltip/constants/tooltip.constants.mjs +11 -0
  391. package/esm2020/lib/components/overlay/components/tooltip/directives/index.mjs +2 -0
  392. package/esm2020/lib/components/overlay/components/tooltip/directives/public-api.mjs +2 -0
  393. package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/public-api.mjs +2 -0
  394. package/esm2020/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.mjs +240 -0
  395. package/esm2020/lib/components/overlay/components/tooltip/public-api.mjs +7 -0
  396. package/esm2020/lib/components/overlay/components/tooltip/tooltip.imports.mjs +3 -0
  397. package/esm2020/lib/components/overlay/components/tooltip/types/index.mjs +2 -0
  398. package/esm2020/lib/components/overlay/components/tooltip/types/public-api.mjs +2 -0
  399. package/esm2020/lib/components/overlay/components/tooltip/types/tooltip.types.mjs +2 -0
  400. package/esm2020/lib/components/overlay/components/tooltip/utils/index.mjs +2 -0
  401. package/esm2020/lib/components/overlay/components/tooltip/utils/public-api.mjs +3 -0
  402. package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip-config.mjs +6 -0
  403. package/esm2020/lib/components/overlay/components/tooltip/utils/tooltip.util.mjs +6 -0
  404. package/esm2020/lib/components/overlay/public-api.mjs +4 -0
  405. package/esm2020/lib/components/overlay/services/dynamic-overlay.service.mjs +29 -0
  406. package/esm2020/lib/components/overlay/services/public-api.mjs +2 -0
  407. package/esm2020/lib/components/overlay/types/dynamic-overlay.types.mjs +2 -0
  408. package/esm2020/lib/components/overlay/types/index.mjs +2 -0
  409. package/esm2020/lib/components/overlay/types/public-api.mjs +2 -0
  410. package/esm2020/lib/components/pagination/components/index.mjs +2 -0
  411. package/esm2020/lib/components/pagination/components/pagination/pagination.component.mjs +105 -0
  412. package/esm2020/lib/components/pagination/components/pagination/public-api.mjs +2 -0
  413. package/esm2020/lib/components/pagination/components/public-api.mjs +2 -0
  414. package/esm2020/lib/components/pagination/pagination.imports.mjs +3 -0
  415. package/esm2020/lib/components/pagination/partials/index.mjs +2 -0
  416. package/esm2020/lib/components/pagination/partials/pagination-link/pagination-link.directive.mjs +32 -0
  417. package/esm2020/lib/components/pagination/partials/pagination-link/public-api.mjs +2 -0
  418. package/esm2020/lib/components/pagination/partials/public-api.mjs +2 -0
  419. package/esm2020/lib/components/pagination/public-api.mjs +5 -0
  420. package/esm2020/lib/components/pagination/services/index.mjs +2 -0
  421. package/esm2020/lib/components/pagination/services/pagination-head.service.mjs +59 -0
  422. package/esm2020/lib/components/pagination/services/public-api.mjs +2 -0
  423. package/esm2020/lib/components/pagination/types/index.mjs +2 -0
  424. package/esm2020/lib/components/pagination/types/pagination.types.mjs +2 -0
  425. package/esm2020/lib/components/pagination/types/public-api.mjs +2 -0
  426. package/esm2020/lib/components/pagination/utils/index.mjs +2 -0
  427. package/esm2020/lib/components/pagination/utils/pagination.util.mjs +79 -0
  428. package/esm2020/lib/components/pagination/utils/public-api.mjs +2 -0
  429. package/esm2020/lib/components/picture/picture-data.directive.mjs +55 -0
  430. package/esm2020/lib/components/picture/picture.component.mjs +40 -0
  431. package/esm2020/lib/components/picture/picture.component.types.mjs +2 -0
  432. package/esm2020/lib/components/picture/public-api.mjs +4 -0
  433. package/esm2020/lib/components/progress-spinner/progress-spinner.component.mjs +105 -0
  434. package/esm2020/lib/components/progress-spinner/public-api.mjs +2 -0
  435. package/esm2020/lib/components/public-api.mjs +16 -0
  436. package/esm2020/lib/components/scrollable/components/index.mjs +2 -0
  437. package/esm2020/lib/components/scrollable/components/public-api.mjs +2 -0
  438. package/esm2020/lib/components/scrollable/components/scrollable/public-api.mjs +2 -0
  439. package/esm2020/lib/components/scrollable/components/scrollable/scrollable.component.mjs +129 -0
  440. package/esm2020/lib/components/scrollable/index.mjs +2 -0
  441. package/esm2020/lib/components/scrollable/public-api.mjs +3 -0
  442. package/esm2020/lib/components/scrollable/scrollable.imports.mjs +3 -0
  443. package/esm2020/lib/components/skeleton/components/index.mjs +2 -0
  444. package/esm2020/lib/components/skeleton/components/public-api.mjs +2 -0
  445. package/esm2020/lib/components/skeleton/components/skeleton/public-api.mjs +2 -0
  446. package/esm2020/lib/components/skeleton/components/skeleton/skeleton.component.mjs +31 -0
  447. package/esm2020/lib/components/skeleton/partials/index.mjs +2 -0
  448. package/esm2020/lib/components/skeleton/partials/public-api.mjs +2 -0
  449. package/esm2020/lib/components/skeleton/partials/skeleton-item/public-api.mjs +2 -0
  450. package/esm2020/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.mjs +19 -0
  451. package/esm2020/lib/components/skeleton/public-api.mjs +4 -0
  452. package/esm2020/lib/components/skeleton/skeleton.imports.mjs +4 -0
  453. package/esm2020/lib/components/sort/components/index.mjs +2 -0
  454. package/esm2020/lib/components/sort/components/public-api.mjs +2 -0
  455. package/esm2020/lib/components/sort/components/sort-header/public-api.mjs +3 -0
  456. package/esm2020/lib/components/sort/components/sort-header/sort-header.component.mjs +224 -0
  457. package/esm2020/lib/components/sort/components/sort-header/sort-header.types.mjs +2 -0
  458. package/esm2020/lib/components/sort/index.mjs +2 -0
  459. package/esm2020/lib/components/sort/partials/index.mjs +2 -0
  460. package/esm2020/lib/components/sort/partials/public-api.mjs +2 -0
  461. package/esm2020/lib/components/sort/partials/sort/public-api.mjs +3 -0
  462. package/esm2020/lib/components/sort/partials/sort/sort.directive.mjs +157 -0
  463. package/esm2020/lib/components/sort/partials/sort/sort.types.mjs +2 -0
  464. package/esm2020/lib/components/sort/public-api.mjs +6 -0
  465. package/esm2020/lib/components/sort/services/index.mjs +2 -0
  466. package/esm2020/lib/components/sort/services/public-api.mjs +2 -0
  467. package/esm2020/lib/components/sort/services/sort-header-intl.mjs +23 -0
  468. package/esm2020/lib/components/sort/sort.imports.mjs +8 -0
  469. package/esm2020/lib/components/sort/types/index.mjs +2 -0
  470. package/esm2020/lib/components/sort/types/public-api.mjs +2 -0
  471. package/esm2020/lib/components/sort/types/sort-direction.mjs +2 -0
  472. package/esm2020/lib/components/table/components/index.mjs +2 -0
  473. package/esm2020/lib/components/table/components/public-api.mjs +2 -0
  474. package/esm2020/lib/components/table/components/table/public-api.mjs +2 -0
  475. package/esm2020/lib/components/table/components/table/table.component.mjs +141 -0
  476. package/esm2020/lib/components/table/constants/index.mjs +2 -0
  477. package/esm2020/lib/components/table/constants/public-api.mjs +2 -0
  478. package/esm2020/lib/components/table/constants/table-data-source.constants.mjs +2 -0
  479. package/esm2020/lib/components/table/index.mjs +2 -0
  480. package/esm2020/lib/components/table/partials/cells/cell/cell.directive.mjs +18 -0
  481. package/esm2020/lib/components/table/partials/cells/cell/index.mjs +2 -0
  482. package/esm2020/lib/components/table/partials/cells/cell/public-api.mjs +2 -0
  483. package/esm2020/lib/components/table/partials/cells/cell-def/cell-def.directive.mjs +16 -0
  484. package/esm2020/lib/components/table/partials/cells/cell-def/index.mjs +2 -0
  485. package/esm2020/lib/components/table/partials/cells/cell-def/public-api.mjs +2 -0
  486. package/esm2020/lib/components/table/partials/cells/column-def/column-def.directive.mjs +44 -0
  487. package/esm2020/lib/components/table/partials/cells/column-def/index.mjs +2 -0
  488. package/esm2020/lib/components/table/partials/cells/column-def/public-api.mjs +2 -0
  489. package/esm2020/lib/components/table/partials/cells/footer-cell/footer-cell.directive.mjs +18 -0
  490. package/esm2020/lib/components/table/partials/cells/footer-cell/public-api.mjs +2 -0
  491. package/esm2020/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.mjs +16 -0
  492. package/esm2020/lib/components/table/partials/cells/footer-cell-def/public-api.mjs +2 -0
  493. package/esm2020/lib/components/table/partials/cells/header-cell/header-cell.directive.mjs +19 -0
  494. package/esm2020/lib/components/table/partials/cells/header-cell/index.mjs +2 -0
  495. package/esm2020/lib/components/table/partials/cells/header-cell/public-api.mjs +2 -0
  496. package/esm2020/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.mjs +16 -0
  497. package/esm2020/lib/components/table/partials/cells/header-cell-def/index.mjs +2 -0
  498. package/esm2020/lib/components/table/partials/cells/header-cell-def/public-api.mjs +2 -0
  499. package/esm2020/lib/components/table/partials/cells/public-api.mjs +9 -0
  500. package/esm2020/lib/components/table/partials/cells/text-column/public-api.mjs +2 -0
  501. package/esm2020/lib/components/table/partials/cells/text-column/text-column.component.mjs +55 -0
  502. package/esm2020/lib/components/table/partials/index.mjs +2 -0
  503. package/esm2020/lib/components/table/partials/public-api.mjs +5 -0
  504. package/esm2020/lib/components/table/partials/rows/footer-row/footer-row.component.mjs +26 -0
  505. package/esm2020/lib/components/table/partials/rows/footer-row/public-api.mjs +2 -0
  506. package/esm2020/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.mjs +26 -0
  507. package/esm2020/lib/components/table/partials/rows/footer-row-def/public-api.mjs +2 -0
  508. package/esm2020/lib/components/table/partials/rows/header-row/header-row.component.mjs +26 -0
  509. package/esm2020/lib/components/table/partials/rows/header-row/public-api.mjs +2 -0
  510. package/esm2020/lib/components/table/partials/rows/header-row-def/header-row-def.directive.mjs +26 -0
  511. package/esm2020/lib/components/table/partials/rows/header-row-def/public-api.mjs +2 -0
  512. package/esm2020/lib/components/table/partials/rows/no-data-row/no-data-row.directive.mjs +20 -0
  513. package/esm2020/lib/components/table/partials/rows/no-data-row/public-api.mjs +2 -0
  514. package/esm2020/lib/components/table/partials/rows/public-api.mjs +9 -0
  515. package/esm2020/lib/components/table/partials/rows/recycle-rows/public-api.mjs +2 -0
  516. package/esm2020/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.mjs +16 -0
  517. package/esm2020/lib/components/table/partials/rows/row/public-api.mjs +2 -0
  518. package/esm2020/lib/components/table/partials/rows/row/row.component.mjs +26 -0
  519. package/esm2020/lib/components/table/partials/rows/row-def/public-api.mjs +2 -0
  520. package/esm2020/lib/components/table/partials/rows/row-def/row-def.directive.mjs +26 -0
  521. package/esm2020/lib/components/table/partials/table-busy/public-api.mjs +2 -0
  522. package/esm2020/lib/components/table/partials/table-busy/table-busy.directive.mjs +18 -0
  523. package/esm2020/lib/components/table/partials/table-busy-outlet/public-api.mjs +2 -0
  524. package/esm2020/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.mjs +15 -0
  525. package/esm2020/lib/components/table/public-api.mjs +7 -0
  526. package/esm2020/lib/components/table/table.imports.mjs +23 -0
  527. package/esm2020/lib/components/table/types/index.mjs +2 -0
  528. package/esm2020/lib/components/table/types/public-api.mjs +2 -0
  529. package/esm2020/lib/components/table/types/table-data-source.types.mjs +2 -0
  530. package/esm2020/lib/components/table/utils/public-api.mjs +2 -0
  531. package/esm2020/lib/components/table/utils/table-data-source.mjs +168 -0
  532. package/esm2020/lib/components/tabs/animations/index.mjs +2 -0
  533. package/esm2020/lib/components/tabs/animations/public-api.mjs +2 -0
  534. package/esm2020/lib/components/tabs/animations/tabs.animations.mjs +26 -0
  535. package/esm2020/lib/components/tabs/components/index.mjs +2 -0
  536. package/esm2020/lib/components/tabs/components/inline-tabs/inline-tabs.component.mjs +261 -0
  537. package/esm2020/lib/components/tabs/components/inline-tabs/public-api.mjs +2 -0
  538. package/esm2020/lib/components/tabs/components/nav-tabs/nav-tabs.component.mjs +86 -0
  539. package/esm2020/lib/components/tabs/components/nav-tabs/public-api.mjs +2 -0
  540. package/esm2020/lib/components/tabs/components/public-api.mjs +3 -0
  541. package/esm2020/lib/components/tabs/partials/index.mjs +2 -0
  542. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.mjs +100 -0
  543. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.mjs +2 -0
  544. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.mjs +135 -0
  545. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.mjs +2 -0
  546. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.mjs +2 -0
  547. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.mjs +25 -0
  548. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.mjs +2 -0
  549. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.mjs +2 -0
  550. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.mjs +22 -0
  551. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.mjs +2 -0
  552. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.mjs +43 -0
  553. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.mjs +2 -0
  554. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.mjs +2 -0
  555. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.mjs +30 -0
  556. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.mjs +2 -0
  557. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.mjs +2 -0
  558. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.mjs +48 -0
  559. package/esm2020/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.mjs +2 -0
  560. package/esm2020/lib/components/tabs/partials/inline-tabs/public-api.mjs +8 -0
  561. package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.mjs +2 -0
  562. package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.mjs +203 -0
  563. package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.mjs +2 -0
  564. package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.mjs +2 -0
  565. package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.mjs +37 -0
  566. package/esm2020/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.mjs +2 -0
  567. package/esm2020/lib/components/tabs/partials/nav-tabs/public-api.mjs +3 -0
  568. package/esm2020/lib/components/tabs/partials/public-api.mjs +3 -0
  569. package/esm2020/lib/components/tabs/public-api.mjs +7 -0
  570. package/esm2020/lib/components/tabs/tab.imports.mjs +16 -0
  571. package/esm2020/lib/components/tabs/types/public-api.mjs +2 -0
  572. package/esm2020/lib/components/tabs/types/tab-config.types.mjs +3 -0
  573. package/esm2020/lib/components/tabs/utils/active-tab-underline.util.mjs +111 -0
  574. package/esm2020/lib/components/tabs/utils/index.mjs +2 -0
  575. package/esm2020/lib/components/tabs/utils/paginated-tab-header.directive.mjs +284 -0
  576. package/esm2020/lib/components/tabs/utils/public-api.mjs +3 -0
  577. package/esm2020/lib/public-api.mjs +4 -0
  578. package/esm2020/lib/services/index.mjs +2 -0
  579. package/esm2020/lib/services/public-api.mjs +2 -0
  580. package/esm2020/lib/services/swipe-handler.service.mjs +88 -0
  581. package/esm2020/lib/types/index.mjs +2 -0
  582. package/esm2020/lib/types/public-api.mjs +2 -0
  583. package/esm2020/lib/types/swipe.types.mjs +2 -0
  584. package/fesm2015/ethlete-cdk.mjs +9106 -0
  585. package/fesm2015/ethlete-cdk.mjs.map +1 -0
  586. package/fesm2020/ethlete-cdk.mjs +9037 -0
  587. package/fesm2020/ethlete-cdk.mjs.map +1 -0
  588. package/index.d.ts +1 -0
  589. package/lib/components/accordion/accordion.imports.d.ts +3 -0
  590. package/lib/components/accordion/components/accordion/accordion.component.animations.d.ts +3 -0
  591. package/lib/components/accordion/components/accordion/accordion.component.constants.d.ts +3 -0
  592. package/lib/components/accordion/components/accordion/accordion.component.d.ts +30 -0
  593. package/lib/components/accordion/components/accordion/index.d.ts +1 -0
  594. package/lib/components/accordion/components/accordion/public-api.d.ts +3 -0
  595. package/lib/components/accordion/components/accordion-group/accordion-group.component.d.ts +13 -0
  596. package/lib/components/accordion/components/accordion-group/public-api.d.ts +1 -0
  597. package/lib/components/accordion/components/index.d.ts +1 -0
  598. package/lib/components/accordion/components/public-api.d.ts +2 -0
  599. package/lib/components/accordion/partials/accordion-hint/accordion-hint.directive.d.ts +5 -0
  600. package/lib/components/accordion/partials/accordion-hint/public-api.d.ts +1 -0
  601. package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.constants.d.ts +3 -0
  602. package/lib/components/accordion/partials/accordion-hint-wrapper/accordion-hint-wrapper.directive.d.ts +8 -0
  603. package/lib/components/accordion/partials/accordion-hint-wrapper/public-api.d.ts +2 -0
  604. package/lib/components/accordion/partials/accordion-label/accordion-label.directive.d.ts +5 -0
  605. package/lib/components/accordion/partials/accordion-label/public-api.d.ts +1 -0
  606. package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.constants.d.ts +3 -0
  607. package/lib/components/accordion/partials/accordion-label-wrapper/accordion-label-wrapper.directive.d.ts +8 -0
  608. package/lib/components/accordion/partials/accordion-label-wrapper/public-api.d.ts +2 -0
  609. package/lib/components/accordion/partials/index.d.ts +1 -0
  610. package/lib/components/accordion/partials/public-api.d.ts +4 -0
  611. package/lib/components/accordion/public-api.d.ts +3 -0
  612. package/lib/components/bracket/bracket.imports.d.ts +3 -0
  613. package/lib/components/bracket/components/bracket/bracket.component.d.ts +55 -0
  614. package/lib/components/bracket/components/bracket/bracket.component.types.d.ts +5 -0
  615. package/lib/components/bracket/components/bracket/public-api.d.ts +2 -0
  616. package/lib/components/bracket/components/index.d.ts +1 -0
  617. package/lib/components/bracket/components/public-api.d.ts +1 -0
  618. package/lib/components/bracket/constants/bracket.constants.d.ts +8 -0
  619. package/lib/components/bracket/constants/index.d.ts +1 -0
  620. package/lib/components/bracket/constants/public-api.d.ts +1 -0
  621. package/lib/components/bracket/directives/bracket-match/bracket-match.directive.d.ts +8 -0
  622. package/lib/components/bracket/directives/bracket-match/index.d.ts +1 -0
  623. package/lib/components/bracket/directives/bracket-match/public-api.d.ts +1 -0
  624. package/lib/components/bracket/directives/bracket-round/bracket-round.directive.d.ts +8 -0
  625. package/lib/components/bracket/directives/bracket-round/index.d.ts +1 -0
  626. package/lib/components/bracket/directives/bracket-round/public-api.d.ts +1 -0
  627. package/lib/components/bracket/directives/index.d.ts +1 -0
  628. package/lib/components/bracket/directives/public-api.d.ts +2 -0
  629. package/lib/components/bracket/partials/bracket-match/bracket-match.component.d.ts +8 -0
  630. package/lib/components/bracket/partials/bracket-match/index.d.ts +1 -0
  631. package/lib/components/bracket/partials/bracket-match/public-api.d.ts +1 -0
  632. package/lib/components/bracket/partials/bracket-round-header/bracket-round-header.component.d.ts +8 -0
  633. package/lib/components/bracket/partials/bracket-round-header/index.d.ts +1 -0
  634. package/lib/components/bracket/partials/bracket-round-header/public-api.d.ts +1 -0
  635. package/lib/components/bracket/partials/index.d.ts +1 -0
  636. package/lib/components/bracket/partials/public-api.d.ts +2 -0
  637. package/lib/components/bracket/public-api.d.ts +7 -0
  638. package/lib/components/bracket/types/bracket-config.types.d.ts +5 -0
  639. package/lib/components/bracket/types/bracket.types.d.ts +30 -0
  640. package/lib/components/bracket/types/index.d.ts +1 -0
  641. package/lib/components/bracket/types/public-api.d.ts +2 -0
  642. package/lib/components/bracket/utils/bracket-config.utils.d.ts +6 -0
  643. package/lib/components/bracket/utils/bracket.utils.d.ts +37 -0
  644. package/lib/components/bracket/utils/index.d.ts +1 -0
  645. package/lib/components/bracket/utils/public-api.d.ts +2 -0
  646. package/lib/components/button/button.imports.d.ts +2 -0
  647. package/lib/components/button/components/button/button.component.d.ts +8 -0
  648. package/lib/components/button/components/button/public-api.d.ts +1 -0
  649. package/lib/components/button/components/index.d.ts +1 -0
  650. package/lib/components/button/components/public-api.d.ts +2 -0
  651. package/lib/components/button/components/query-button/public-api.d.ts +1 -0
  652. package/lib/components/button/components/query-button/query-button.component.d.ts +9 -0
  653. package/lib/components/button/directives/button/button.directive.d.ts +25 -0
  654. package/lib/components/button/directives/button/index.d.ts +1 -0
  655. package/lib/components/button/directives/button/public-api.d.ts +1 -0
  656. package/lib/components/button/directives/index.d.ts +1 -0
  657. package/lib/components/button/directives/public-api.d.ts +2 -0
  658. package/lib/components/button/directives/query-button/public-api.d.ts +1 -0
  659. package/lib/components/button/directives/query-button/query-button.directive.d.ts +24 -0
  660. package/lib/components/button/public-api.d.ts +3 -0
  661. package/lib/components/forms/components/checkbox/checkbox.imports.d.ts +3 -0
  662. package/lib/components/forms/components/checkbox/components/checkbox/checkbox.component.d.ts +10 -0
  663. package/lib/components/forms/components/checkbox/components/checkbox/public-api.d.ts +1 -0
  664. package/lib/components/forms/components/checkbox/components/checkbox-field/checkbox-field.component.d.ts +11 -0
  665. package/lib/components/forms/components/checkbox/components/checkbox-field/public-api.d.ts +1 -0
  666. package/lib/components/forms/components/checkbox/components/checkbox-group/checkbox-group.component.d.ts +7 -0
  667. package/lib/components/forms/components/checkbox/components/checkbox-group/public-api.d.ts +1 -0
  668. package/lib/components/forms/components/checkbox/components/index.d.ts +1 -0
  669. package/lib/components/forms/components/checkbox/components/public-api.d.ts +3 -0
  670. package/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.d.ts +15 -0
  671. package/lib/components/forms/components/checkbox/directives/checkbox/index.d.ts +1 -0
  672. package/lib/components/forms/components/checkbox/directives/checkbox/public-api.d.ts +1 -0
  673. package/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.d.ts +12 -0
  674. package/lib/components/forms/components/checkbox/directives/checkbox-field/public-api.d.ts +1 -0
  675. package/lib/components/forms/components/checkbox/directives/checkbox-group/checkbox-group.directive.d.ts +18 -0
  676. package/lib/components/forms/components/checkbox/directives/checkbox-group/index.d.ts +1 -0
  677. package/lib/components/forms/components/checkbox/directives/checkbox-group/public-api.d.ts +1 -0
  678. package/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.d.ts +13 -0
  679. package/lib/components/forms/components/checkbox/directives/checkbox-group-control/public-api.d.ts +1 -0
  680. package/lib/components/forms/components/checkbox/directives/index.d.ts +1 -0
  681. package/lib/components/forms/components/checkbox/directives/public-api.d.ts +4 -0
  682. package/lib/components/forms/components/checkbox/public-api.d.ts +3 -0
  683. package/lib/components/forms/components/error/components/error/error.component.d.ts +16 -0
  684. package/lib/components/forms/components/error/components/error/public-api.d.ts +1 -0
  685. package/lib/components/forms/components/error/components/public-api.d.ts +1 -0
  686. package/lib/components/forms/components/error/index.d.ts +1 -0
  687. package/lib/components/forms/components/error/public-api.d.ts +1 -0
  688. package/lib/components/forms/components/index.d.ts +1 -0
  689. package/lib/components/forms/components/input/components/email-input/email-input.component.d.ts +10 -0
  690. package/lib/components/forms/components/input/components/email-input/public-api.d.ts +1 -0
  691. package/lib/components/forms/components/input/components/index.d.ts +1 -0
  692. package/lib/components/forms/components/input/components/input-field/input-field.component.d.ts +11 -0
  693. package/lib/components/forms/components/input/components/input-field/public-api.d.ts +1 -0
  694. package/lib/components/forms/components/input/components/number-input/number-input.component.d.ts +10 -0
  695. package/lib/components/forms/components/input/components/number-input/public-api.d.ts +1 -0
  696. package/lib/components/forms/components/input/components/password-input/password-input.component.d.ts +10 -0
  697. package/lib/components/forms/components/input/components/password-input/public-api.d.ts +1 -0
  698. package/lib/components/forms/components/input/components/public-api.d.ts +7 -0
  699. package/lib/components/forms/components/input/components/search-input/public-api.d.ts +1 -0
  700. package/lib/components/forms/components/input/components/search-input/search-input.component.d.ts +10 -0
  701. package/lib/components/forms/components/input/components/text-input/public-api.d.ts +1 -0
  702. package/lib/components/forms/components/input/components/text-input/text-input.component.d.ts +10 -0
  703. package/lib/components/forms/components/input/components/textarea-input/public-api.d.ts +1 -0
  704. package/lib/components/forms/components/input/components/textarea-input/textarea-input.component.d.ts +17 -0
  705. package/lib/components/forms/components/input/directives/autosize-textarea/autosize-textarea.directive.d.ts +12 -0
  706. package/lib/components/forms/components/input/directives/autosize-textarea/public-api.d.ts +1 -0
  707. package/lib/components/forms/components/input/directives/email-input/email-input.directive.d.ts +13 -0
  708. package/lib/components/forms/components/input/directives/email-input/public-api.d.ts +1 -0
  709. package/lib/components/forms/components/input/directives/index.d.ts +1 -0
  710. package/lib/components/forms/components/input/directives/number-input/number-input.directive.d.ts +13 -0
  711. package/lib/components/forms/components/input/directives/number-input/public-api.d.ts +1 -0
  712. package/lib/components/forms/components/input/directives/password-input/password-input.directive.d.ts +16 -0
  713. package/lib/components/forms/components/input/directives/password-input/public-api.d.ts +1 -0
  714. package/lib/components/forms/components/input/directives/public-api.d.ts +7 -0
  715. package/lib/components/forms/components/input/directives/search-input/public-api.d.ts +1 -0
  716. package/lib/components/forms/components/input/directives/search-input/search-input.directive.d.ts +14 -0
  717. package/lib/components/forms/components/input/directives/text-input/public-api.d.ts +1 -0
  718. package/lib/components/forms/components/input/directives/text-input/text-input.directive.d.ts +13 -0
  719. package/lib/components/forms/components/input/directives/textarea-input/index.d.ts +1 -0
  720. package/lib/components/forms/components/input/directives/textarea-input/public-api.d.ts +1 -0
  721. package/lib/components/forms/components/input/directives/textarea-input/textarea-input.directive.d.ts +13 -0
  722. package/lib/components/forms/components/input/input.imports.d.ts +4 -0
  723. package/lib/components/forms/components/input/partials/index.d.ts +1 -0
  724. package/lib/components/forms/components/input/partials/password-input-toggle/password-input-toggle.component.d.ts +8 -0
  725. package/lib/components/forms/components/input/partials/password-input-toggle/public-api.d.ts +1 -0
  726. package/lib/components/forms/components/input/partials/public-api.d.ts +2 -0
  727. package/lib/components/forms/components/input/partials/search-input-clear/public-api.d.ts +1 -0
  728. package/lib/components/forms/components/input/partials/search-input-clear/search-input-clear.component.d.ts +8 -0
  729. package/lib/components/forms/components/input/public-api.d.ts +4 -0
  730. package/lib/components/forms/components/label/components/index.d.ts +1 -0
  731. package/lib/components/forms/components/label/components/label/label.component.d.ts +10 -0
  732. package/lib/components/forms/components/label/components/label/public-api.d.ts +1 -0
  733. package/lib/components/forms/components/label/components/public-api.d.ts +1 -0
  734. package/lib/components/forms/components/label/directives/index.d.ts +1 -0
  735. package/lib/components/forms/components/label/directives/label-suffix/label-suffix.directive.d.ts +10 -0
  736. package/lib/components/forms/components/label/directives/label-suffix/public-api.d.ts +1 -0
  737. package/lib/components/forms/components/label/directives/public-api.d.ts +1 -0
  738. package/lib/components/forms/components/label/label.imports.d.ts +3 -0
  739. package/lib/components/forms/components/label/public-api.d.ts +3 -0
  740. package/lib/components/forms/components/public-api.d.ts +9 -0
  741. package/lib/components/forms/components/radio/components/index.d.ts +1 -0
  742. package/lib/components/forms/components/radio/components/public-api.d.ts +3 -0
  743. package/lib/components/forms/components/radio/components/radio/public-api.d.ts +1 -0
  744. package/lib/components/forms/components/radio/components/radio/radio.component.d.ts +11 -0
  745. package/lib/components/forms/components/radio/components/radio-field/public-api.d.ts +1 -0
  746. package/lib/components/forms/components/radio/components/radio-field/radio-field.component.d.ts +7 -0
  747. package/lib/components/forms/components/radio/components/radio-group/public-api.d.ts +1 -0
  748. package/lib/components/forms/components/radio/components/radio-group/radio-group.component.d.ts +11 -0
  749. package/lib/components/forms/components/radio/directives/index.d.ts +1 -0
  750. package/lib/components/forms/components/radio/directives/public-api.d.ts +3 -0
  751. package/lib/components/forms/components/radio/directives/radio/index.d.ts +1 -0
  752. package/lib/components/forms/components/radio/directives/radio/public-api.d.ts +1 -0
  753. package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +22 -0
  754. package/lib/components/forms/components/radio/directives/radio-field/public-api.d.ts +1 -0
  755. package/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.d.ts +13 -0
  756. package/lib/components/forms/components/radio/directives/radio-group/public-api.d.ts +1 -0
  757. package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts +10 -0
  758. package/lib/components/forms/components/radio/public-api.d.ts +4 -0
  759. package/lib/components/forms/components/radio/radio.imports.d.ts +2 -0
  760. package/lib/components/forms/components/radio/types/index.d.ts +1 -0
  761. package/lib/components/forms/components/radio/types/public-api.d.ts +1 -0
  762. package/lib/components/forms/components/radio/types/radio.types.d.ts +1 -0
  763. package/lib/components/forms/components/segmented-button/components/index.d.ts +1 -0
  764. package/lib/components/forms/components/segmented-button/components/public-api.d.ts +3 -0
  765. package/lib/components/forms/components/segmented-button/components/segmented-button/index.d.ts +1 -0
  766. package/lib/components/forms/components/segmented-button/components/segmented-button/public-api.d.ts +1 -0
  767. package/lib/components/forms/components/segmented-button/components/segmented-button/segmented-button.component.d.ts +14 -0
  768. package/lib/components/forms/components/segmented-button/components/segmented-button-field/index.d.ts +1 -0
  769. package/lib/components/forms/components/segmented-button/components/segmented-button-field/public-api.d.ts +1 -0
  770. package/lib/components/forms/components/segmented-button/components/segmented-button-field/segmented-button-field.component.d.ts +7 -0
  771. package/lib/components/forms/components/segmented-button/components/segmented-button-group/index.d.ts +1 -0
  772. package/lib/components/forms/components/segmented-button/components/segmented-button-group/public-api.d.ts +1 -0
  773. package/lib/components/forms/components/segmented-button/components/segmented-button-group/segmented-button-group.component.d.ts +11 -0
  774. package/lib/components/forms/components/segmented-button/directives/index.d.ts +1 -0
  775. package/lib/components/forms/components/segmented-button/directives/public-api.d.ts +3 -0
  776. package/lib/components/forms/components/segmented-button/directives/segmented-button/index.d.ts +1 -0
  777. package/lib/components/forms/components/segmented-button/directives/segmented-button/public-api.d.ts +1 -0
  778. package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +26 -0
  779. package/lib/components/forms/components/segmented-button/directives/segmented-button-field/public-api.d.ts +1 -0
  780. package/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.d.ts +13 -0
  781. package/lib/components/forms/components/segmented-button/directives/segmented-button-group/public-api.d.ts +1 -0
  782. package/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.d.ts +14 -0
  783. package/lib/components/forms/components/segmented-button/public-api.d.ts +4 -0
  784. package/lib/components/forms/components/segmented-button/segmented-button.imports.d.ts +2 -0
  785. package/lib/components/forms/components/segmented-button/types/index.d.ts +1 -0
  786. package/lib/components/forms/components/segmented-button/types/public-api.d.ts +1 -0
  787. package/lib/components/forms/components/segmented-button/types/segmented-button.types.d.ts +1 -0
  788. package/lib/components/forms/components/select/components/index.d.ts +1 -0
  789. package/lib/components/forms/components/select/components/native-select/native-select.component.d.ts +10 -0
  790. package/lib/components/forms/components/select/components/native-select/public-api.d.ts +1 -0
  791. package/lib/components/forms/components/select/components/native-select-option/native-select-option.component.d.ts +11 -0
  792. package/lib/components/forms/components/select/components/native-select-option/public-api.d.ts +1 -0
  793. package/lib/components/forms/components/select/components/public-api.d.ts +3 -0
  794. package/lib/components/forms/components/select/components/select-field/public-api.d.ts +1 -0
  795. package/lib/components/forms/components/select/components/select-field/select-field.component.d.ts +11 -0
  796. package/lib/components/forms/components/select/directives/index.d.ts +1 -0
  797. package/lib/components/forms/components/select/directives/native-select-input/native-select-input.directive.d.ts +18 -0
  798. package/lib/components/forms/components/select/directives/native-select-input/public-api.d.ts +1 -0
  799. package/lib/components/forms/components/select/directives/native-select-option/index.d.ts +1 -0
  800. package/lib/components/forms/components/select/directives/native-select-option/native-select-option.directive.d.ts +22 -0
  801. package/lib/components/forms/components/select/directives/native-select-option/public-api.d.ts +1 -0
  802. package/lib/components/forms/components/select/directives/public-api.d.ts +2 -0
  803. package/lib/components/forms/components/select/native-select.imports.d.ts +4 -0
  804. package/lib/components/forms/components/select/public-api.d.ts +4 -0
  805. package/lib/components/forms/components/select/types/index.d.ts +1 -0
  806. package/lib/components/forms/components/select/types/public-api.d.ts +1 -0
  807. package/lib/components/forms/components/select/types/select.types.d.ts +1 -0
  808. package/lib/components/forms/components/slide-toggle/components/index.d.ts +1 -0
  809. package/lib/components/forms/components/slide-toggle/components/public-api.d.ts +2 -0
  810. package/lib/components/forms/components/slide-toggle/components/slide-toggle/public-api.d.ts +1 -0
  811. package/lib/components/forms/components/slide-toggle/components/slide-toggle/slide-toggle.component.d.ts +10 -0
  812. package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/public-api.d.ts +1 -0
  813. package/lib/components/forms/components/slide-toggle/components/slide-toggle-field/slide-toggle-field.component.d.ts +10 -0
  814. package/lib/components/forms/components/slide-toggle/directives/index.d.ts +1 -0
  815. package/lib/components/forms/components/slide-toggle/directives/public-api.d.ts +1 -0
  816. package/lib/components/forms/components/slide-toggle/directives/slide-toggle/public-api.d.ts +1 -0
  817. package/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.d.ts +13 -0
  818. package/lib/components/forms/components/slide-toggle/public-api.d.ts +3 -0
  819. package/lib/components/forms/components/slide-toggle/slide-toggle.imports.d.ts +2 -0
  820. package/lib/components/forms/components/slider/components/index.d.ts +1 -0
  821. package/lib/components/forms/components/slider/components/public-api.d.ts +2 -0
  822. package/lib/components/forms/components/slider/components/slider/public-api.d.ts +1 -0
  823. package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +64 -0
  824. package/lib/components/forms/components/slider/components/slider-field/public-api.d.ts +1 -0
  825. package/lib/components/forms/components/slider/components/slider-field/slider-field.component.d.ts +10 -0
  826. package/lib/components/forms/components/slider/public-api.d.ts +2 -0
  827. package/lib/components/forms/components/slider/slider.imports.d.ts +2 -0
  828. package/lib/components/forms/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +12 -0
  829. package/lib/components/forms/directives/dynamic-form-field/public-api.d.ts +1 -0
  830. package/lib/components/forms/directives/dynamic-form-group/dynamic-form-group.directive.d.ts +12 -0
  831. package/lib/components/forms/directives/dynamic-form-group/public-api.d.ts +1 -0
  832. package/lib/components/forms/directives/if-input-empty/if-input-empty.directive.d.ts +12 -0
  833. package/lib/components/forms/directives/if-input-empty/public-api.d.ts +1 -0
  834. package/lib/components/forms/directives/if-input-filled/if-input-filled.directive.d.ts +12 -0
  835. package/lib/components/forms/directives/if-input-filled/public-api.d.ts +1 -0
  836. package/lib/components/forms/directives/index.d.ts +1 -0
  837. package/lib/components/forms/directives/input/index.d.ts +1 -0
  838. package/lib/components/forms/directives/input/input.directive.d.ts +62 -0
  839. package/lib/components/forms/directives/input/public-api.d.ts +1 -0
  840. package/lib/components/forms/directives/input-prefix/input-prefix.directive.d.ts +7 -0
  841. package/lib/components/forms/directives/input-prefix/public-api.d.ts +1 -0
  842. package/lib/components/forms/directives/input-suffix/input-suffix.directive.d.ts +7 -0
  843. package/lib/components/forms/directives/input-suffix/public-api.d.ts +1 -0
  844. package/lib/components/forms/directives/native-input-ref/index.d.ts +1 -0
  845. package/lib/components/forms/directives/native-input-ref/native-input-ref.directive.d.ts +8 -0
  846. package/lib/components/forms/directives/native-input-ref/public-api.d.ts +1 -0
  847. package/lib/components/forms/directives/public-api.d.ts +11 -0
  848. package/lib/components/forms/directives/static-form-field/public-api.d.ts +1 -0
  849. package/lib/components/forms/directives/static-form-field/static-form-field.directive.d.ts +15 -0
  850. package/lib/components/forms/directives/static-form-group/public-api.d.ts +1 -0
  851. package/lib/components/forms/directives/static-form-group/static-form-group.directive.d.ts +7 -0
  852. package/lib/components/forms/directives/writeable-input/public-api.d.ts +1 -0
  853. package/lib/components/forms/directives/writeable-input/writeable-input.directive.d.ts +20 -0
  854. package/lib/components/forms/public-api.d.ts +4 -0
  855. package/lib/components/forms/services/default-validator-errors.service.d.ts +17 -0
  856. package/lib/components/forms/services/form-field-state.service.d.ts +14 -0
  857. package/lib/components/forms/services/form-group-state.service.d.ts +10 -0
  858. package/lib/components/forms/services/index.d.ts +1 -0
  859. package/lib/components/forms/services/input-state.service.d.ts +28 -0
  860. package/lib/components/forms/services/public-api.d.ts +4 -0
  861. package/lib/components/forms/types/index.d.ts +1 -0
  862. package/lib/components/forms/types/input.types.d.ts +25 -0
  863. package/lib/components/forms/types/public-api.d.ts +1 -0
  864. package/lib/components/forms/utils/decorated-form-field.base.d.ts +7 -0
  865. package/lib/components/forms/utils/decorated-input.base.d.ts +15 -0
  866. package/lib/components/forms/utils/index.d.ts +1 -0
  867. package/lib/components/forms/utils/input.base.d.ts +10 -0
  868. package/lib/components/forms/utils/public-api.d.ts +3 -0
  869. package/lib/components/icons/chevron-icon/chevron-icon.component.d.ts +5 -0
  870. package/lib/components/icons/chevron-icon/index.d.ts +1 -0
  871. package/lib/components/icons/chevron-icon/public-api.d.ts +1 -0
  872. package/lib/components/icons/icon.imports.d.ts +2 -0
  873. package/lib/components/icons/index.d.ts +1 -0
  874. package/lib/components/icons/public-api.d.ts +2 -0
  875. package/lib/components/masonry/components/index.d.ts +1 -0
  876. package/lib/components/masonry/components/masonry/masonry.component.d.ts +34 -0
  877. package/lib/components/masonry/components/masonry/public-api.d.ts +1 -0
  878. package/lib/components/masonry/components/public-api.d.ts +1 -0
  879. package/lib/components/masonry/masonry.imports.d.ts +3 -0
  880. package/lib/components/masonry/partials/index.d.ts +1 -0
  881. package/lib/components/masonry/partials/masonry-item/masonry-item.component.d.ts +20 -0
  882. package/lib/components/masonry/partials/masonry-item/public-api.d.ts +1 -0
  883. package/lib/components/masonry/partials/public-api.d.ts +1 -0
  884. package/lib/components/masonry/public-api.d.ts +4 -0
  885. package/lib/components/masonry/types/masonry.types.d.ts +4 -0
  886. package/lib/components/masonry/types/public-api.d.ts +1 -0
  887. package/lib/components/overlay/components/bottom-sheet/bottom-sheet.imports.d.ts +14 -0
  888. package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/bottom-sheet-container.component.d.ts +14 -0
  889. package/lib/components/overlay/components/bottom-sheet/components/bottom-sheet-container/public-api.d.ts +1 -0
  890. package/lib/components/overlay/components/bottom-sheet/components/index.d.ts +1 -0
  891. package/lib/components/overlay/components/bottom-sheet/components/public-api.d.ts +1 -0
  892. package/lib/components/overlay/components/bottom-sheet/constants/bottom-sheet.constants.d.ts +17 -0
  893. package/lib/components/overlay/components/bottom-sheet/constants/index.d.ts +1 -0
  894. package/lib/components/overlay/components/bottom-sheet/constants/public-api.d.ts +1 -0
  895. package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/bottom-sheet-container-base.component.d.ts +16 -0
  896. package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-container-base/public-api.d.ts +1 -0
  897. package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/bottom-sheet-drag-handle.component.d.ts +22 -0
  898. package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-drag-handle/public-api.d.ts +1 -0
  899. package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/bottom-sheet-title.directive.d.ts +11 -0
  900. package/lib/components/overlay/components/bottom-sheet/partials/bottom-sheet-title/public-api.d.ts +1 -0
  901. package/lib/components/overlay/components/bottom-sheet/partials/index.d.ts +1 -0
  902. package/lib/components/overlay/components/bottom-sheet/partials/public-api.d.ts +3 -0
  903. package/lib/components/overlay/components/bottom-sheet/public-api.d.ts +7 -0
  904. package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-base.service.d.ts +35 -0
  905. package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet-swipe-handler.service.d.ts +11 -0
  906. package/lib/components/overlay/components/bottom-sheet/services/bottom-sheet.service.d.ts +11 -0
  907. package/lib/components/overlay/components/bottom-sheet/services/index.d.ts +1 -0
  908. package/lib/components/overlay/components/bottom-sheet/services/public-api.d.ts +3 -0
  909. package/lib/components/overlay/components/bottom-sheet/types/bottom-sheet.types.d.ts +84 -0
  910. package/lib/components/overlay/components/bottom-sheet/types/index.d.ts +1 -0
  911. package/lib/components/overlay/components/bottom-sheet/types/public-api.d.ts +1 -0
  912. package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-config.d.ts +2 -0
  913. package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet-ref.d.ts +29 -0
  914. package/lib/components/overlay/components/bottom-sheet/utils/bottom-sheet.utils.d.ts +13 -0
  915. package/lib/components/overlay/components/bottom-sheet/utils/index.d.ts +1 -0
  916. package/lib/components/overlay/components/bottom-sheet/utils/public-api.d.ts +3 -0
  917. package/lib/components/overlay/components/dialog/components/dialog-container/dialog-container.component.d.ts +14 -0
  918. package/lib/components/overlay/components/dialog/components/dialog-container/public-api.d.ts +1 -0
  919. package/lib/components/overlay/components/dialog/components/index.d.ts +1 -0
  920. package/lib/components/overlay/components/dialog/components/public-api.d.ts +1 -0
  921. package/lib/components/overlay/components/dialog/constants/dialog.constants.d.ts +15 -0
  922. package/lib/components/overlay/components/dialog/constants/index.d.ts +1 -0
  923. package/lib/components/overlay/components/dialog/constants/public-api.d.ts +1 -0
  924. package/lib/components/overlay/components/dialog/dialog.imports.d.ts +14 -0
  925. package/lib/components/overlay/components/dialog/partials/dialog-close/dialog-close.directive.d.ts +16 -0
  926. package/lib/components/overlay/components/dialog/partials/dialog-close/public-api.d.ts +1 -0
  927. package/lib/components/overlay/components/dialog/partials/dialog-container-base/dialog-container-base.component.d.ts +16 -0
  928. package/lib/components/overlay/components/dialog/partials/dialog-container-base/public-api.d.ts +1 -0
  929. package/lib/components/overlay/components/dialog/partials/dialog-title/dialog-title.directive.d.ts +11 -0
  930. package/lib/components/overlay/components/dialog/partials/dialog-title/public-api.d.ts +1 -0
  931. package/lib/components/overlay/components/dialog/partials/index.d.ts +1 -0
  932. package/lib/components/overlay/components/dialog/partials/public-api.d.ts +3 -0
  933. package/lib/components/overlay/components/dialog/public-api.d.ts +7 -0
  934. package/lib/components/overlay/components/dialog/services/dialog-base.service.d.ts +35 -0
  935. package/lib/components/overlay/components/dialog/services/dialog.service.d.ts +11 -0
  936. package/lib/components/overlay/components/dialog/services/index.d.ts +1 -0
  937. package/lib/components/overlay/components/dialog/services/public-api.d.ts +2 -0
  938. package/lib/components/overlay/components/dialog/types/dialog.types.d.ts +142 -0
  939. package/lib/components/overlay/components/dialog/types/index.d.ts +1 -0
  940. package/lib/components/overlay/components/dialog/types/public-api.d.ts +1 -0
  941. package/lib/components/overlay/components/dialog/utils/dialog-config.d.ts +2 -0
  942. package/lib/components/overlay/components/dialog/utils/dialog-ref.d.ts +31 -0
  943. package/lib/components/overlay/components/dialog/utils/dialog.utils.d.ts +13 -0
  944. package/lib/components/overlay/components/dialog/utils/index.d.ts +1 -0
  945. package/lib/components/overlay/components/dialog/utils/public-api.d.ts +3 -0
  946. package/lib/components/overlay/components/index.d.ts +1 -0
  947. package/lib/components/overlay/components/public-api.d.ts +4 -0
  948. package/lib/components/overlay/components/toggletip/components/index.d.ts +1 -0
  949. package/lib/components/overlay/components/toggletip/components/public-api.d.ts +1 -0
  950. package/lib/components/overlay/components/toggletip/components/toggletip/public-api.d.ts +1 -0
  951. package/lib/components/overlay/components/toggletip/components/toggletip/toggletip.component.d.ts +19 -0
  952. package/lib/components/overlay/components/toggletip/constants/index.d.ts +1 -0
  953. package/lib/components/overlay/components/toggletip/constants/public-api.d.ts +1 -0
  954. package/lib/components/overlay/components/toggletip/constants/toggletip.constants.d.ts +6 -0
  955. package/lib/components/overlay/components/toggletip/directives/index.d.ts +1 -0
  956. package/lib/components/overlay/components/toggletip/directives/public-api.d.ts +1 -0
  957. package/lib/components/overlay/components/toggletip/directives/toggletip/public-api.d.ts +1 -0
  958. package/lib/components/overlay/components/toggletip/directives/toggletip/toggletip.directive.d.ts +38 -0
  959. package/lib/components/overlay/components/toggletip/public-api.d.ts +6 -0
  960. package/lib/components/overlay/components/toggletip/toggletip.imports.d.ts +2 -0
  961. package/lib/components/overlay/components/toggletip/types/index.d.ts +1 -0
  962. package/lib/components/overlay/components/toggletip/types/public-api.d.ts +1 -0
  963. package/lib/components/overlay/components/toggletip/types/toggletip.types.d.ts +31 -0
  964. package/lib/components/overlay/components/toggletip/utils/index.d.ts +1 -0
  965. package/lib/components/overlay/components/toggletip/utils/public-api.d.ts +2 -0
  966. package/lib/components/overlay/components/toggletip/utils/toggletip-config.d.ts +2 -0
  967. package/lib/components/overlay/components/toggletip/utils/toggletip.util.d.ts +5 -0
  968. package/lib/components/overlay/components/tooltip/components/index.d.ts +1 -0
  969. package/lib/components/overlay/components/tooltip/components/public-api.d.ts +1 -0
  970. package/lib/components/overlay/components/tooltip/components/tooltip/public-api.d.ts +1 -0
  971. package/lib/components/overlay/components/tooltip/components/tooltip/tooltip.component.d.ts +19 -0
  972. package/lib/components/overlay/components/tooltip/constants/index.d.ts +1 -0
  973. package/lib/components/overlay/components/tooltip/constants/public-api.d.ts +1 -0
  974. package/lib/components/overlay/components/tooltip/constants/tooltip.constants.d.ts +6 -0
  975. package/lib/components/overlay/components/tooltip/directives/index.d.ts +1 -0
  976. package/lib/components/overlay/components/tooltip/directives/public-api.d.ts +1 -0
  977. package/lib/components/overlay/components/tooltip/directives/tooltip/public-api.d.ts +1 -0
  978. package/lib/components/overlay/components/tooltip/directives/tooltip/tooltip.directive.d.ts +44 -0
  979. package/lib/components/overlay/components/tooltip/public-api.d.ts +6 -0
  980. package/lib/components/overlay/components/tooltip/tooltip.imports.d.ts +2 -0
  981. package/lib/components/overlay/components/tooltip/types/index.d.ts +1 -0
  982. package/lib/components/overlay/components/tooltip/types/public-api.d.ts +1 -0
  983. package/lib/components/overlay/components/tooltip/types/tooltip.types.d.ts +31 -0
  984. package/lib/components/overlay/components/tooltip/utils/index.d.ts +1 -0
  985. package/lib/components/overlay/components/tooltip/utils/public-api.d.ts +2 -0
  986. package/lib/components/overlay/components/tooltip/utils/tooltip-config.d.ts +2 -0
  987. package/lib/components/overlay/components/tooltip/utils/tooltip.util.d.ts +5 -0
  988. package/lib/components/overlay/public-api.d.ts +3 -0
  989. package/lib/components/overlay/services/dynamic-overlay.service.d.ts +17 -0
  990. package/lib/components/overlay/services/public-api.d.ts +1 -0
  991. package/lib/components/overlay/types/dynamic-overlay.types.d.ts +8 -0
  992. package/lib/components/overlay/types/index.d.ts +1 -0
  993. package/lib/components/overlay/types/public-api.d.ts +1 -0
  994. package/lib/components/pagination/components/index.d.ts +1 -0
  995. package/lib/components/pagination/components/pagination/pagination.component.d.ts +31 -0
  996. package/lib/components/pagination/components/pagination/public-api.d.ts +1 -0
  997. package/lib/components/pagination/components/public-api.d.ts +1 -0
  998. package/lib/components/pagination/pagination.imports.d.ts +2 -0
  999. package/lib/components/pagination/partials/index.d.ts +1 -0
  1000. package/lib/components/pagination/partials/pagination-link/pagination-link.directive.d.ts +10 -0
  1001. package/lib/components/pagination/partials/pagination-link/public-api.d.ts +1 -0
  1002. package/lib/components/pagination/partials/public-api.d.ts +1 -0
  1003. package/lib/components/pagination/public-api.d.ts +4 -0
  1004. package/lib/components/pagination/services/index.d.ts +1 -0
  1005. package/lib/components/pagination/services/pagination-head.service.d.ts +16 -0
  1006. package/lib/components/pagination/services/public-api.d.ts +1 -0
  1007. package/lib/components/pagination/types/index.d.ts +1 -0
  1008. package/lib/components/pagination/types/pagination.types.d.ts +18 -0
  1009. package/lib/components/pagination/types/public-api.d.ts +1 -0
  1010. package/lib/components/pagination/utils/index.d.ts +1 -0
  1011. package/lib/components/pagination/utils/pagination.util.d.ts +2 -0
  1012. package/lib/components/pagination/utils/public-api.d.ts +1 -0
  1013. package/lib/components/picture/picture-data.directive.d.ts +21 -0
  1014. package/lib/components/picture/picture.component.d.ts +12 -0
  1015. package/lib/components/picture/picture.component.types.d.ts +4 -0
  1016. package/lib/components/picture/public-api.d.ts +3 -0
  1017. package/lib/components/progress-spinner/progress-spinner.component.d.ts +35 -0
  1018. package/lib/components/progress-spinner/public-api.d.ts +1 -0
  1019. package/lib/components/public-api.d.ts +15 -0
  1020. package/lib/components/scrollable/components/index.d.ts +1 -0
  1021. package/lib/components/scrollable/components/public-api.d.ts +1 -0
  1022. package/lib/components/scrollable/components/scrollable/public-api.d.ts +1 -0
  1023. package/lib/components/scrollable/components/scrollable/scrollable.component.d.ts +38 -0
  1024. package/lib/components/scrollable/index.d.ts +1 -0
  1025. package/lib/components/scrollable/public-api.d.ts +2 -0
  1026. package/lib/components/scrollable/scrollable.imports.d.ts +2 -0
  1027. package/lib/components/skeleton/components/index.d.ts +1 -0
  1028. package/lib/components/skeleton/components/public-api.d.ts +1 -0
  1029. package/lib/components/skeleton/components/skeleton/public-api.d.ts +1 -0
  1030. package/lib/components/skeleton/components/skeleton/skeleton.component.d.ts +10 -0
  1031. package/lib/components/skeleton/partials/index.d.ts +1 -0
  1032. package/lib/components/skeleton/partials/public-api.d.ts +1 -0
  1033. package/lib/components/skeleton/partials/skeleton-item/public-api.d.ts +1 -0
  1034. package/lib/components/skeleton/partials/skeleton-item/skeleton-item.component.d.ts +6 -0
  1035. package/lib/components/skeleton/public-api.d.ts +3 -0
  1036. package/lib/components/skeleton/skeleton.imports.d.ts +3 -0
  1037. package/lib/components/sort/components/index.d.ts +1 -0
  1038. package/lib/components/sort/components/public-api.d.ts +1 -0
  1039. package/lib/components/sort/components/sort-header/public-api.d.ts +2 -0
  1040. package/lib/components/sort/components/sort-header/sort-header.component.d.ts +56 -0
  1041. package/lib/components/sort/components/sort-header/sort-header.types.d.ts +9 -0
  1042. package/lib/components/sort/index.d.ts +1 -0
  1043. package/lib/components/sort/partials/index.d.ts +1 -0
  1044. package/lib/components/sort/partials/public-api.d.ts +1 -0
  1045. package/lib/components/sort/partials/sort/public-api.d.ts +2 -0
  1046. package/lib/components/sort/partials/sort/sort.directive.d.ts +43 -0
  1047. package/lib/components/sort/partials/sort/sort.types.d.ts +15 -0
  1048. package/lib/components/sort/public-api.d.ts +5 -0
  1049. package/lib/components/sort/services/index.d.ts +1 -0
  1050. package/lib/components/sort/services/public-api.d.ts +1 -0
  1051. package/lib/components/sort/services/sort-header-intl.d.ts +14 -0
  1052. package/lib/components/sort/sort.imports.d.ts +8 -0
  1053. package/lib/components/sort/types/index.d.ts +1 -0
  1054. package/lib/components/sort/types/public-api.d.ts +1 -0
  1055. package/lib/components/sort/types/sort-direction.d.ts +1 -0
  1056. package/lib/components/table/components/index.d.ts +1 -0
  1057. package/lib/components/table/components/public-api.d.ts +1 -0
  1058. package/lib/components/table/components/table/public-api.d.ts +1 -0
  1059. package/lib/components/table/components/table/table.component.d.ts +26 -0
  1060. package/lib/components/table/constants/index.d.ts +1 -0
  1061. package/lib/components/table/constants/public-api.d.ts +1 -0
  1062. package/lib/components/table/constants/table-data-source.constants.d.ts +1 -0
  1063. package/lib/components/table/index.d.ts +1 -0
  1064. package/lib/components/table/partials/cells/cell/cell.directive.d.ts +6 -0
  1065. package/lib/components/table/partials/cells/cell/index.d.ts +1 -0
  1066. package/lib/components/table/partials/cells/cell/public-api.d.ts +1 -0
  1067. package/lib/components/table/partials/cells/cell-def/cell-def.directive.d.ts +6 -0
  1068. package/lib/components/table/partials/cells/cell-def/index.d.ts +1 -0
  1069. package/lib/components/table/partials/cells/cell-def/public-api.d.ts +1 -0
  1070. package/lib/components/table/partials/cells/column-def/column-def.directive.d.ts +12 -0
  1071. package/lib/components/table/partials/cells/column-def/index.d.ts +1 -0
  1072. package/lib/components/table/partials/cells/column-def/public-api.d.ts +1 -0
  1073. package/lib/components/table/partials/cells/footer-cell/footer-cell.directive.d.ts +6 -0
  1074. package/lib/components/table/partials/cells/footer-cell/public-api.d.ts +1 -0
  1075. package/lib/components/table/partials/cells/footer-cell-def/footer-cell-def.directive.d.ts +6 -0
  1076. package/lib/components/table/partials/cells/footer-cell-def/public-api.d.ts +1 -0
  1077. package/lib/components/table/partials/cells/header-cell/header-cell.directive.d.ts +6 -0
  1078. package/lib/components/table/partials/cells/header-cell/index.d.ts +1 -0
  1079. package/lib/components/table/partials/cells/header-cell/public-api.d.ts +1 -0
  1080. package/lib/components/table/partials/cells/header-cell-def/header-cell-def.directive.d.ts +6 -0
  1081. package/lib/components/table/partials/cells/header-cell-def/index.d.ts +1 -0
  1082. package/lib/components/table/partials/cells/header-cell-def/public-api.d.ts +1 -0
  1083. package/lib/components/table/partials/cells/public-api.d.ts +8 -0
  1084. package/lib/components/table/partials/cells/text-column/public-api.d.ts +1 -0
  1085. package/lib/components/table/partials/cells/text-column/text-column.component.d.ts +7 -0
  1086. package/lib/components/table/partials/index.d.ts +1 -0
  1087. package/lib/components/table/partials/public-api.d.ts +4 -0
  1088. package/lib/components/table/partials/rows/footer-row/footer-row.component.d.ts +6 -0
  1089. package/lib/components/table/partials/rows/footer-row/public-api.d.ts +1 -0
  1090. package/lib/components/table/partials/rows/footer-row-def/footer-row-def.directive.d.ts +8 -0
  1091. package/lib/components/table/partials/rows/footer-row-def/public-api.d.ts +1 -0
  1092. package/lib/components/table/partials/rows/header-row/header-row.component.d.ts +6 -0
  1093. package/lib/components/table/partials/rows/header-row/public-api.d.ts +1 -0
  1094. package/lib/components/table/partials/rows/header-row-def/header-row-def.directive.d.ts +8 -0
  1095. package/lib/components/table/partials/rows/header-row-def/public-api.d.ts +1 -0
  1096. package/lib/components/table/partials/rows/no-data-row/no-data-row.directive.d.ts +7 -0
  1097. package/lib/components/table/partials/rows/no-data-row/public-api.d.ts +1 -0
  1098. package/lib/components/table/partials/rows/public-api.d.ts +8 -0
  1099. package/lib/components/table/partials/rows/recycle-rows/public-api.d.ts +1 -0
  1100. package/lib/components/table/partials/rows/recycle-rows/recycle-rows.directive.d.ts +5 -0
  1101. package/lib/components/table/partials/rows/row/public-api.d.ts +1 -0
  1102. package/lib/components/table/partials/rows/row/row.component.d.ts +6 -0
  1103. package/lib/components/table/partials/rows/row-def/public-api.d.ts +1 -0
  1104. package/lib/components/table/partials/rows/row-def/row-def.directive.d.ts +8 -0
  1105. package/lib/components/table/partials/table-busy/public-api.d.ts +1 -0
  1106. package/lib/components/table/partials/table-busy/table-busy.directive.d.ts +9 -0
  1107. package/lib/components/table/partials/table-busy-outlet/public-api.d.ts +1 -0
  1108. package/lib/components/table/partials/table-busy-outlet/table-busy-outlet.directive.d.ts +10 -0
  1109. package/lib/components/table/public-api.d.ts +6 -0
  1110. package/lib/components/table/table.imports.d.ts +3 -0
  1111. package/lib/components/table/types/index.d.ts +1 -0
  1112. package/lib/components/table/types/public-api.d.ts +1 -0
  1113. package/lib/components/table/types/table-data-source.types.d.ts +15 -0
  1114. package/lib/components/table/utils/public-api.d.ts +1 -0
  1115. package/lib/components/table/utils/table-data-source.d.ts +33 -0
  1116. package/lib/components/tabs/animations/index.d.ts +1 -0
  1117. package/lib/components/tabs/animations/public-api.d.ts +1 -0
  1118. package/lib/components/tabs/animations/tabs.animations.d.ts +4 -0
  1119. package/lib/components/tabs/components/index.d.ts +1 -0
  1120. package/lib/components/tabs/components/inline-tabs/inline-tabs.component.d.ts +72 -0
  1121. package/lib/components/tabs/components/inline-tabs/public-api.d.ts +1 -0
  1122. package/lib/components/tabs/components/nav-tabs/nav-tabs.component.d.ts +28 -0
  1123. package/lib/components/tabs/components/nav-tabs/public-api.d.ts +1 -0
  1124. package/lib/components/tabs/components/public-api.d.ts +2 -0
  1125. package/lib/components/tabs/partials/index.d.ts +1 -0
  1126. package/lib/components/tabs/partials/inline-tabs/inline-tab/inline-tab.component.d.ts +41 -0
  1127. package/lib/components/tabs/partials/inline-tabs/inline-tab/public-api.d.ts +1 -0
  1128. package/lib/components/tabs/partials/inline-tabs/inline-tab-body/inline-tab-body.component.d.ts +39 -0
  1129. package/lib/components/tabs/partials/inline-tabs/inline-tab-body/public-api.d.ts +1 -0
  1130. package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/index.d.ts +1 -0
  1131. package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/inline-tab-body-host.directive.d.ts +8 -0
  1132. package/lib/components/tabs/partials/inline-tabs/inline-tab-body-host/public-api.d.ts +1 -0
  1133. package/lib/components/tabs/partials/inline-tabs/inline-tab-content/index.d.ts +1 -0
  1134. package/lib/components/tabs/partials/inline-tabs/inline-tab-content/inline-tab-content.directive.d.ts +9 -0
  1135. package/lib/components/tabs/partials/inline-tabs/inline-tab-content/public-api.d.ts +1 -0
  1136. package/lib/components/tabs/partials/inline-tabs/inline-tab-header/inline-tab-header.component.d.ts +19 -0
  1137. package/lib/components/tabs/partials/inline-tabs/inline-tab-header/public-api.d.ts +1 -0
  1138. package/lib/components/tabs/partials/inline-tabs/inline-tab-label/index.d.ts +1 -0
  1139. package/lib/components/tabs/partials/inline-tabs/inline-tab-label/inline-tab-label.directive.d.ts +11 -0
  1140. package/lib/components/tabs/partials/inline-tabs/inline-tab-label/public-api.d.ts +1 -0
  1141. package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/index.d.ts +1 -0
  1142. package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/inline-tab-label-wrapper.directive.d.ts +17 -0
  1143. package/lib/components/tabs/partials/inline-tabs/inline-tab-label-wrapper/public-api.d.ts +1 -0
  1144. package/lib/components/tabs/partials/inline-tabs/public-api.d.ts +7 -0
  1145. package/lib/components/tabs/partials/nav-tabs/nav-tab-link/index.d.ts +1 -0
  1146. package/lib/components/tabs/partials/nav-tabs/nav-tab-link/nav-tab-link.directive.d.ts +48 -0
  1147. package/lib/components/tabs/partials/nav-tabs/nav-tab-link/public-api.d.ts +1 -0
  1148. package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/index.d.ts +1 -0
  1149. package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/nav-tabs-outlet.component.d.ts +10 -0
  1150. package/lib/components/tabs/partials/nav-tabs/nav-tabs-outlet/public-api.d.ts +1 -0
  1151. package/lib/components/tabs/partials/nav-tabs/public-api.d.ts +2 -0
  1152. package/lib/components/tabs/partials/public-api.d.ts +2 -0
  1153. package/lib/components/tabs/public-api.d.ts +6 -0
  1154. package/lib/components/tabs/tab.imports.d.ts +3 -0
  1155. package/lib/components/tabs/types/public-api.d.ts +1 -0
  1156. package/lib/components/tabs/types/tab-config.types.d.ts +8 -0
  1157. package/lib/components/tabs/utils/active-tab-underline.util.d.ts +41 -0
  1158. package/lib/components/tabs/utils/index.d.ts +1 -0
  1159. package/lib/components/tabs/utils/paginated-tab-header.directive.d.ts +79 -0
  1160. package/lib/components/tabs/utils/public-api.d.ts +2 -0
  1161. package/lib/public-api.d.ts +3 -0
  1162. package/lib/services/index.d.ts +1 -0
  1163. package/lib/services/public-api.d.ts +1 -0
  1164. package/lib/services/swipe-handler.service.d.ts +12 -0
  1165. package/lib/types/index.d.ts +1 -0
  1166. package/lib/types/public-api.d.ts +1 -0
  1167. package/lib/types/swipe.types.d.ts +19 -0
  1168. package/package.json +37 -0
  1169. package/src/lib/styles/active-tab-underline.css +50 -0
  1170. package/src/lib/styles/cdk.css +11 -0
  1171. package/src/lib/styles/easing.css +40 -0
  1172. package/src/lib/styles/index.css +3 -0
@@ -0,0 +1,19 @@
1
+ import { AsyncPipe, NgIf } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
3
+ import { BracketRoundDirective } from '../../directives';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "../../directives/bracket-round/bracket-round.directive";
6
+ export class BracketRoundHeaderComponent {
7
+ constructor() {
8
+ this.roundData = inject(BracketRoundDirective);
9
+ }
10
+ }
11
+ BracketRoundHeaderComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BracketRoundHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
12
+ BracketRoundHeaderComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: BracketRoundHeaderComponent, isStandalone: true, selector: "et-bracket-round-header", host: { classAttribute: "et-bracket-round-header" }, hostDirectives: [{ directive: i1.BracketRoundDirective }], ngImport: i0, template: "<ng-container *ngIf=\"roundData.round$ | async as round\">\n {{ round.name }}\n</ng-container>\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: BracketRoundHeaderComponent, decorators: [{
14
+ type: Component,
15
+ args: [{ selector: 'et-bracket-round-header', standalone: true, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, host: {
16
+ class: 'et-bracket-round-header',
17
+ }, imports: [AsyncPipe, NgIf], hostDirectives: [BracketRoundDirective], template: "<ng-container *ngIf=\"roundData.round$ | async as round\">\n {{ round.name }}\n</ng-container>\n" }]
18
+ }] });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJhY2tldC1yb3VuZC1oZWFkZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2JyYWNrZXQvcGFydGlhbHMvYnJhY2tldC1yb3VuZC1oZWFkZXIvYnJhY2tldC1yb3VuZC1oZWFkZXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2JyYWNrZXQvcGFydGlhbHMvYnJhY2tldC1yb3VuZC1oZWFkZXIvYnJhY2tldC1yb3VuZC1oZWFkZXIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxJQUFJLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUNsRCxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7O0FBZXpELE1BQU0sT0FBTywyQkFBMkI7SUFieEM7UUFjRSxjQUFTLEdBQUcsTUFBTSxDQUFDLHFCQUFxQixDQUFDLENBQUM7S0FDM0M7O3dIQUZZLDJCQUEyQjs0R0FBM0IsMkJBQTJCLG1NQ2pCeEMsbUdBR0EscUREV1ksU0FBUyw4Q0FBRSxJQUFJOzJGQUdkLDJCQUEyQjtrQkFidkMsU0FBUzsrQkFDRSx5QkFBeUIsY0FHdkIsSUFBSSxpQkFDRCxpQkFBaUIsQ0FBQyxJQUFJLG1CQUNwQix1QkFBdUIsQ0FBQyxNQUFNLFFBQ3pDO3dCQUNKLEtBQUssRUFBRSx5QkFBeUI7cUJBQ2pDLFdBQ1EsQ0FBQyxTQUFTLEVBQUUsSUFBSSxDQUFDLGtCQUNWLENBQUMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUsIE5nSWYgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnJhY2tldFJvdW5kRGlyZWN0aXZlIH0gZnJvbSAnLi4vLi4vZGlyZWN0aXZlcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2V0LWJyYWNrZXQtcm91bmQtaGVhZGVyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2JyYWNrZXQtcm91bmQtaGVhZGVyLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYnJhY2tldC1yb3VuZC1oZWFkZXIuY29tcG9uZW50LnNjc3MnXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LWJyYWNrZXQtcm91bmQtaGVhZGVyJyxcbiAgfSxcbiAgaW1wb3J0czogW0FzeW5jUGlwZSwgTmdJZl0sXG4gIGhvc3REaXJlY3RpdmVzOiBbQnJhY2tldFJvdW5kRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgQnJhY2tldFJvdW5kSGVhZGVyQ29tcG9uZW50IHtcbiAgcm91bmREYXRhID0gaW5qZWN0KEJyYWNrZXRSb3VuZERpcmVjdGl2ZSk7XG59XG4iLCI8bmctY29udGFpbmVyICpuZ0lmPVwicm91bmREYXRhLnJvdW5kJCB8IGFzeW5jIGFzIHJvdW5kXCI+XG4gIHt7IHJvdW5kLm5hbWUgfX1cbjwvbmctY29udGFpbmVyPlxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnJhY2tldC9wYXJ0aWFscy9icmFja2V0LXJvdW5kLWhlYWRlci9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './bracket-round-header.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9icmFja2V0L3BhcnRpYWxzL2JyYWNrZXQtcm91bmQtaGVhZGVyL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxrQ0FBa0MsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYnJhY2tldC1yb3VuZC1oZWFkZXIuY29tcG9uZW50JztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnJhY2tldC9wYXJ0aWFscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './bracket-match/public-api';
2
+ export * from './bracket-round-header/public-api';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9icmFja2V0L3BhcnRpYWxzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLG1DQUFtQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9icmFja2V0LW1hdGNoL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9icmFja2V0LXJvdW5kLWhlYWRlci9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,8 @@
1
+ export * from './bracket.imports';
2
+ export * from './components/public-api';
3
+ export * from './constants/public-api';
4
+ export * from './directives/public-api';
5
+ export * from './partials/public-api';
6
+ export * from './types/public-api';
7
+ export * from './utils/public-api';
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9icmFja2V0L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYnJhY2tldC5pbXBvcnRzJztcbmV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vY29uc3RhbnRzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9wYXJ0aWFscy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vdHlwZXMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3V0aWxzL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJhY2tldC1jb25maWcudHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnJhY2tldC90eXBlcy9icmFja2V0LWNvbmZpZy50eXBlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50VHlwZSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9wb3J0YWwnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEJyYWNrZXRDb25maWcge1xuICByb3VuZEhlYWRlckNvbXBvbmVudDogQ29tcG9uZW50VHlwZTx1bmtub3duPiB8IG51bGw7XG4gIG1hdGNoQ29tcG9uZW50OiBDb21wb25lbnRUeXBlPHVua25vd24+O1xufVxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJhY2tldC50eXBlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9icmFja2V0L3R5cGVzL2JyYWNrZXQudHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE1hdGNoTGlzdFZpZXcsIFJvdW5kU3RhZ2VTdHJ1Y3R1cmVWaWV3IH0gZnJvbSAnQGV0aGxldGUvdHlwZXMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIEJyYWNrZXRSb3VuZCB7XG4gIG1hdGNoQ291bnQ6IG51bWJlcjtcbiAgbmFtZTogc3RyaW5nIHwgbnVsbDtcbiAgbWF0Y2hlczogQnJhY2tldE1hdGNoW107XG4gIGRhdGE6IFJvdW5kU3RhZ2VTdHJ1Y3R1cmVWaWV3O1xuXG4gIHJvdzoge1xuICAgIHN0YXJ0OiBudW1iZXI7XG4gICAgZW5kOiBudW1iZXI7XG4gIH07XG5cbiAgY29sdW1uOiB7XG4gICAgc3RhcnQ6IG51bWJlcjtcbiAgICBlbmQ6IG51bWJlcjtcbiAgfTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBCcmFja2V0TWF0Y2gge1xuICBkYXRhOiBNYXRjaExpc3RWaWV3O1xuXG4gIHJvdzoge1xuICAgIHN0YXJ0OiBudW1iZXI7XG4gICAgZW5kOiBudW1iZXI7XG4gIH07XG5cbiAgcHJldmlvdXNNYXRjaGVzOiB7XG4gICAgcm91bmRJZDogc3RyaW5nO1xuICAgIG1hdGNoSWRzOiBzdHJpbmdbXTtcbiAgfSB8IG51bGw7XG5cbiAgbmV4dE1hdGNoOiB7XG4gICAgcm91bmRJZDogc3RyaW5nO1xuICAgIG1hdGNoSWQ6IHN0cmluZztcbiAgfSB8IG51bGw7XG59XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnJhY2tldC90eXBlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './bracket-config.types';
2
+ export * from './bracket.types';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9icmFja2V0L3R5cGVzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLGlCQUFpQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9icmFja2V0LWNvbmZpZy50eXBlcyc7XG5leHBvcnQgKiBmcm9tICcuL2JyYWNrZXQudHlwZXMnO1xuIl19
@@ -0,0 +1,13 @@
1
+ import { BRACKET_CONFIG_TOKEN, BRACKET_DEFAULT_CONFIG } from '../constants';
2
+ export const createBracketConfig = (globalConfig = {}, localConfig = {}) => ({
3
+ ...BRACKET_DEFAULT_CONFIG,
4
+ ...(globalConfig || {}),
5
+ ...(localConfig || {}),
6
+ });
7
+ export const provideBracketConfig = (config = {}) => {
8
+ return {
9
+ provide: BRACKET_CONFIG_TOKEN,
10
+ useValue: createBracketConfig(config),
11
+ };
12
+ };
13
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJhY2tldC1jb25maWcudXRpbHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnJhY2tldC91dGlscy9icmFja2V0LWNvbmZpZy51dGlscy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFHNUUsTUFBTSxDQUFDLE1BQU0sbUJBQW1CLEdBQUcsQ0FDakMsZUFBMEQsRUFBRSxFQUM1RCxjQUF5RCxFQUFFLEVBQzVDLEVBQUUsQ0FBQyxDQUFDO0lBQ25CLEdBQUcsc0JBQXNCO0lBQ3pCLEdBQUcsQ0FBQyxZQUFZLElBQUksRUFBRSxDQUFDO0lBQ3ZCLEdBQUcsQ0FBQyxXQUFXLElBQUksRUFBRSxDQUFDO0NBQ3ZCLENBQUMsQ0FBQztBQUVILE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLENBQUMsU0FBb0QsRUFBRSxFQUFFLEVBQUU7SUFDN0YsT0FBTztRQUNMLE9BQU8sRUFBRSxvQkFBb0I7UUFDN0IsUUFBUSxFQUFFLG1CQUFtQixDQUFDLE1BQU0sQ0FBQztLQUN0QyxDQUFDO0FBQ0osQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQlJBQ0tFVF9DT05GSUdfVE9LRU4sIEJSQUNLRVRfREVGQVVMVF9DT05GSUcgfSBmcm9tICcuLi9jb25zdGFudHMnO1xuaW1wb3J0IHsgQnJhY2tldENvbmZpZyB9IGZyb20gJy4uL3R5cGVzJztcblxuZXhwb3J0IGNvbnN0IGNyZWF0ZUJyYWNrZXRDb25maWcgPSAoXG4gIGdsb2JhbENvbmZpZzogUGFydGlhbDxCcmFja2V0Q29uZmlnPiB8IG51bGwgfCB1bmRlZmluZWQgPSB7fSxcbiAgbG9jYWxDb25maWc6IFBhcnRpYWw8QnJhY2tldENvbmZpZz4gfCBudWxsIHwgdW5kZWZpbmVkID0ge30sXG4pOiBCcmFja2V0Q29uZmlnID0+ICh7XG4gIC4uLkJSQUNLRVRfREVGQVVMVF9DT05GSUcsXG4gIC4uLihnbG9iYWxDb25maWcgfHwge30pLFxuICAuLi4obG9jYWxDb25maWcgfHwge30pLFxufSk7XG5cbmV4cG9ydCBjb25zdCBwcm92aWRlQnJhY2tldENvbmZpZyA9IChjb25maWc6IFBhcnRpYWw8QnJhY2tldENvbmZpZz4gfCBudWxsIHwgdW5kZWZpbmVkID0ge30pID0+IHtcbiAgcmV0dXJuIHtcbiAgICBwcm92aWRlOiBCUkFDS0VUX0NPTkZJR19UT0tFTixcbiAgICB1c2VWYWx1ZTogY3JlYXRlQnJhY2tldENvbmZpZyhjb25maWcpLFxuICB9O1xufTtcbiJdfQ==
@@ -0,0 +1,335 @@
1
+ let bracketId = 0;
2
+ export const isUpperBracketMatch = (match) => {
3
+ if (!match) {
4
+ return false;
5
+ }
6
+ return (match.round.type === 'winner_bracket' ||
7
+ match.round.type === 'final' ||
8
+ match.round.type === 'normal' ||
9
+ match.round.type === 'reverse_final' ||
10
+ !match.round.type);
11
+ };
12
+ export const orderRounds = (rounds) => {
13
+ const normalRounds = orderRoundsByRoundNumber(rounds.filter((r) => r.round.type === 'normal'));
14
+ const winnerRounds = orderRoundsByRoundNumber(rounds.filter((r) => r.round.type === 'winner_bracket'));
15
+ const loserRounds = orderRoundsByRoundNumber(rounds.filter((r) => r.round.type === 'loser_bracket'));
16
+ const finalRounds = rounds.filter((r) => r.round.type === 'final');
17
+ const reverseFinalRounds = rounds.filter((r) => r.round.type === 'reverse_final');
18
+ const thirdPlaceRounds = rounds.filter((r) => r.round.type === 'third_place');
19
+ return [...winnerRounds, ...normalRounds, ...finalRounds, ...reverseFinalRounds, ...loserRounds, ...thirdPlaceRounds];
20
+ };
21
+ export const orderRoundsByRoundNumber = (rounds) => {
22
+ return rounds.slice(0).sort((a, b) => {
23
+ if (a.round.number < b.round.number) {
24
+ return -1;
25
+ }
26
+ if (a.round.number > b.round.number) {
27
+ return 1;
28
+ }
29
+ return 0;
30
+ });
31
+ };
32
+ export const normalizeRoundType = (roundType) => {
33
+ if (!roundType) {
34
+ return null;
35
+ }
36
+ if (roundType === 'normal' ||
37
+ roundType === 'winner_bracket' ||
38
+ roundType === 'final' ||
39
+ roundType === 'reverse_final') {
40
+ return 'upper';
41
+ }
42
+ return 'lower';
43
+ };
44
+ export class Bracket {
45
+ get winnerRounds() {
46
+ return this._roundsWithMatches.filter((r) => isUpperBracketMatch(r));
47
+ }
48
+ get loserRounds() {
49
+ return this._roundsWithMatches.filter((r) => r.round.type === 'loser_bracket');
50
+ }
51
+ get firstWinnerRound() {
52
+ return this.winnerRounds[0];
53
+ }
54
+ get firstLoserRound() {
55
+ return (this.loserRounds[0] ?? null);
56
+ }
57
+ get winnerRoundCount() {
58
+ return this.winnerRounds.length;
59
+ }
60
+ get loserRoundCount() {
61
+ return this.loserRounds.length;
62
+ }
63
+ get bracketSize() {
64
+ return this.firstWinnerRound.matches.length * 2;
65
+ }
66
+ get bracketType() {
67
+ return !this.loserRoundCount ? 'single' : 'double';
68
+ }
69
+ get winnerBracketRowCount() {
70
+ return this.firstWinnerRound.matches.length;
71
+ }
72
+ get loserBracketRowCount() {
73
+ return this.firstLoserRound?.matches.length ?? 0;
74
+ }
75
+ get totalRowCount() {
76
+ return this.winnerBracketRowCount + this.loserBracketRowCount + 1;
77
+ }
78
+ get totalColCount() {
79
+ return this.bracketType === 'single'
80
+ ? this.winnerRoundCount
81
+ : this.loserRoundCount + (this.winnerRoundCount - this.loserRoundCount / 2) - 1;
82
+ }
83
+ get winnerRowStart() {
84
+ return 1;
85
+ }
86
+ get winnerRowEnd() {
87
+ return this.bracketType === 'single' ? this.totalRowCount : this.totalRowCount - this.winnerBracketRowCount;
88
+ }
89
+ get loserRowStart() {
90
+ return this.winnerBracketRowCount + 1;
91
+ }
92
+ get loserRowEnd() {
93
+ return this.totalRowCount;
94
+ }
95
+ get indexOfLooserRoundStart() {
96
+ return this._roundsWithMatches.findIndex((r) => r.round.type === 'loser_bracket');
97
+ }
98
+ get looserRowAdditionalRoundCount() {
99
+ if (this.bracketType === 'single') {
100
+ return 0;
101
+ }
102
+ const winnerRounds = this._roundsWithMatches.filter((r) => r.round.type === 'winner_bracket');
103
+ const winnerRoundCount = winnerRounds.length;
104
+ const loserRounds = this._roundsWithMatches.filter((r) => r.round.type === 'loser_bracket');
105
+ const loserRoundCount = loserRounds.length;
106
+ return loserRoundCount - winnerRoundCount;
107
+ }
108
+ get isPartialDoubleElimination() {
109
+ return (this.bracketType === 'double' && this.firstWinnerRound.matches.length === this.firstLoserRound?.matches.length);
110
+ }
111
+ constructor(_roundsWithMatches) {
112
+ this._roundsWithMatches = _roundsWithMatches;
113
+ this.id = bracketId++;
114
+ this._transformRound = (currentRound, currentRoundIndex, previousRound, nextRound) => {
115
+ const matchCount = currentRound.matches.length;
116
+ const name = currentRound.round.name;
117
+ const isWinnerBracket = isUpperBracketMatch(currentRound);
118
+ const isDoubleElimination = this.bracketType === 'double';
119
+ let colStart = 0;
120
+ let colEnd = 0;
121
+ let rowStart = isWinnerBracket ? this.winnerRowStart : this.loserRowStart;
122
+ let rowEnd = isWinnerBracket ? this.winnerRowEnd : this.loserRowEnd;
123
+ let firstRoundMatchCount = isWinnerBracket
124
+ ? this.firstWinnerRound.matches.length
125
+ : this.firstLoserRound?.matches.length;
126
+ if (isDoubleElimination) {
127
+ if (isWinnerBracket) {
128
+ if (currentRoundIndex === 0) {
129
+ // The first winner bracket round is always 1 col wide.
130
+ colStart = 1;
131
+ colEnd = 1;
132
+ }
133
+ else {
134
+ const colStartDouble = currentRoundIndex * 2;
135
+ const colEndDouble = colStartDouble + 1;
136
+ const isSemiFinalRound = currentRound.round.type === 'winner_bracket' && matchCount === 1;
137
+ // If the col end is greater than the total looser rounds, then we need to span 2 cols,
138
+ // since the loser bracket will always play 2 rounds per winner bracket round.
139
+ // We also need to span 2 col if the current round is the semi final round AND we have an async start.
140
+ // Async start means that the first winner round's matches length is equal to the first loser round's matches length.
141
+ // This is produced by only showing a part (eg. the last 5 rounds) of a much bigger bracket.
142
+ if (colEndDouble < this.loserRoundCount || (isSemiFinalRound && this.isPartialDoubleElimination)) {
143
+ colStart = colStartDouble;
144
+ // We need to add one to the col to create a actual grid span
145
+ colEnd = colEndDouble + 1;
146
+ }
147
+ else {
148
+ // If the col end is greater than the total looser rounds, then we need to go back to 1 col wide,
149
+ // since this is the point where semi finals, finals (and second chance final) are played
150
+ const overshoot = colEndDouble - this.loserRoundCount;
151
+ let delta = Math.floor(overshoot / 2);
152
+ if (this.isPartialDoubleElimination) {
153
+ delta = delta - 1;
154
+ }
155
+ colStart = colStartDouble - delta;
156
+ colEnd = colStartDouble - delta;
157
+ // If the overshoot is bigger than 1, we need to adjust the row start and end to span over the whole grid,
158
+ // since we are in the final round(s).
159
+ // Overshoot 1 means we are in the semi final round and there is a loser bracket round in this step (the last one).
160
+ if (overshoot > 1) {
161
+ rowStart = 1;
162
+ rowEnd = this.totalRowCount;
163
+ firstRoundMatchCount = this.totalRowCount - 1;
164
+ }
165
+ }
166
+ }
167
+ }
168
+ else if (currentRound.round.type === 'third_place') {
169
+ const hasSecondChanceFinal = this._roundsWithMatches.some((r) => r.round.type === 'reverse_final');
170
+ // Span the third place match form final to second chance final
171
+ if (hasSecondChanceFinal) {
172
+ colStart = currentRoundIndex + 1;
173
+ colEnd = currentRoundIndex + 3;
174
+ }
175
+ else {
176
+ // Keep the third place match in the same col as the final
177
+ colStart = currentRoundIndex + 1;
178
+ colEnd = currentRoundIndex + 1;
179
+ }
180
+ }
181
+ else {
182
+ // Loser bracket rounds are always 1 col wide.
183
+ colStart = currentRoundIndex + 1;
184
+ colEnd = currentRoundIndex + 1;
185
+ }
186
+ }
187
+ else {
188
+ if (currentRound.round.type === 'third_place') {
189
+ // The third place match is always in the same col as the final
190
+ colStart = currentRoundIndex - 1;
191
+ colEnd = currentRoundIndex - 1;
192
+ if (this.winnerRowEnd - 1 === 2) {
193
+ // Special case for 2 match brackets
194
+ rowStart = 2;
195
+ rowEnd = 2;
196
+ }
197
+ else if (this.winnerRowEnd - 1 === 4) {
198
+ // Special case for 4 match brackets
199
+ rowStart = 3;
200
+ rowEnd = 3;
201
+ }
202
+ else if (this.winnerRowEnd - 1 > 4) {
203
+ // Special case for 8+ match brackets. This will result in it being in the same row as the second semi final match.
204
+ rowStart = (this.winnerRowEnd - 1) / 2 + (this.winnerRowEnd - 1) / 2 / 2;
205
+ rowEnd = this.winnerRowEnd;
206
+ }
207
+ }
208
+ else {
209
+ // All other single elimination rounds are always 1 col wide.
210
+ colStart = currentRoundIndex;
211
+ colEnd = currentRoundIndex;
212
+ }
213
+ }
214
+ const matches = currentRound.matches.map((match, matchIndex) => {
215
+ return this._transformMatch(match, matchIndex, rowStart, matchCount, firstRoundMatchCount ?? 0, previousRound, nextRound, currentRound, currentRoundIndex);
216
+ });
217
+ return {
218
+ matchCount,
219
+ name,
220
+ matches,
221
+ data: currentRound.round,
222
+ row: {
223
+ start: rowStart,
224
+ end: rowEnd,
225
+ },
226
+ column: {
227
+ start: colStart,
228
+ end: colEnd,
229
+ },
230
+ };
231
+ };
232
+ this._transformMatch = (match, matchIndex, roundRowStart, matchCount, firstRoundMatchCount, previousRound, nextRound, currentRound, currentRoundIndex) => {
233
+ const diff = firstRoundMatchCount / matchCount;
234
+ let rowStart = roundRowStart + matchIndex * diff;
235
+ let rowEnd = rowStart + diff;
236
+ if (currentRound?.round.type === 'third_place' && this.bracketType === 'single') {
237
+ // Special case for 8+ single elimination brackets. This will result in the current match being in the same row as the second semi final match.
238
+ if (this.winnerRowEnd - 1 > 4) {
239
+ rowStart = (this.winnerRowEnd - 1) / 2;
240
+ rowEnd = this.winnerRowEnd - 1;
241
+ }
242
+ }
243
+ let roundsSameSize = previousRound?.matches.length === matchCount;
244
+ let logicalNextRound = null;
245
+ if ((currentRound?.round.type === 'loser_bracket' && !nextRound) ||
246
+ (currentRound?.round.type === 'loser_bracket' && nextRound?.round.type === 'third_place')) {
247
+ // Transition from last round of looser bracket to semi final round of winner bracket
248
+ logicalNextRound = this._roundsWithMatches[currentRoundIndex - this.looserRowAdditionalRoundCount + 1];
249
+ }
250
+ else if (((currentRound && isUpperBracketMatch(currentRound)) || !currentRound?.round.type) &&
251
+ nextRound?.round.type === 'loser_bracket') {
252
+ // The last winner round (final) does not have a next round, but the next round is the first looser round.
253
+ logicalNextRound = null;
254
+ }
255
+ else {
256
+ logicalNextRound = nextRound;
257
+ }
258
+ const previousMatchA = (roundsSameSize ? previousRound?.matches[matchIndex]?.id : previousRound?.matches[matchIndex * 2]?.id) ?? null;
259
+ let previousMatchB = previousRound?.matches[matchIndex * 2 + 1]?.id ?? null;
260
+ // previousMatchB could be the last loser bracket match
261
+ if (!previousMatchB && currentRound && isUpperBracketMatch(currentRound)) {
262
+ if (this.loserRounds.length === currentRoundIndex + this.looserRowAdditionalRoundCount) {
263
+ previousMatchB = this.loserRounds[currentRoundIndex + this.looserRowAdditionalRoundCount - 1].matches[0].id;
264
+ roundsSameSize = false;
265
+ }
266
+ }
267
+ const nextMatch = logicalNextRound?.matches[Math.floor(matchIndex / 2)]?.id ?? null;
268
+ let previousRoundMatches = null;
269
+ if (previousRound) {
270
+ if (roundsSameSize && previousMatchA) {
271
+ // 1 match to 1 match
272
+ previousRoundMatches = {
273
+ roundId: previousRound.round.id,
274
+ matchIds: [previousMatchA],
275
+ };
276
+ }
277
+ else if (previousMatchA && previousMatchB) {
278
+ // 2 matches to 1 match
279
+ previousRoundMatches = {
280
+ roundId: previousRound.round.id,
281
+ matchIds: [previousMatchA, previousMatchB],
282
+ };
283
+ }
284
+ }
285
+ const nextRoundMatch = nextMatch && logicalNextRound
286
+ ? {
287
+ roundId: logicalNextRound.round.id,
288
+ matchId: nextMatch,
289
+ }
290
+ : null;
291
+ return {
292
+ row: {
293
+ start: rowStart,
294
+ end: rowEnd,
295
+ },
296
+ data: match,
297
+ previousMatches: currentRound?.round.type !== 'third_place' ? previousRoundMatches : null,
298
+ nextMatch: currentRound?.round.type !== 'third_place' ? nextRoundMatch : null,
299
+ };
300
+ };
301
+ this.bracketRounds = this._computeBracket(_roundsWithMatches);
302
+ const rounds = this.bracketRounds.map((r) => r.matches);
303
+ const flatMatches = [];
304
+ for (const round of rounds) {
305
+ for (const match of round) {
306
+ flatMatches.push(match);
307
+ }
308
+ }
309
+ this._bracketMatches = flatMatches;
310
+ }
311
+ getRoundById(roundId) {
312
+ return this.bracketRounds.find((r) => r.data.id === roundId);
313
+ }
314
+ getMatchById(matchId) {
315
+ return this._bracketMatches.find((m) => m.data.id === matchId);
316
+ }
317
+ _computeBracket(data) {
318
+ const rounds = [];
319
+ for (const [index, round] of data.entries()) {
320
+ let relativeIndex = index;
321
+ if (index === this.indexOfLooserRoundStart || index > this.indexOfLooserRoundStart) {
322
+ relativeIndex = index - this.indexOfLooserRoundStart;
323
+ }
324
+ let previousRound = data[index - 1] ?? null;
325
+ const nextRound = data[index + 1] ?? null;
326
+ // Switching to loser bracket should reset the previousRound.
327
+ if (normalizeRoundType(previousRound?.round.type) !== normalizeRoundType(round.round.type)) {
328
+ previousRound = null;
329
+ }
330
+ rounds.push(this._transformRound(round, relativeIndex, previousRound, nextRound));
331
+ }
332
+ return rounds;
333
+ }
334
+ }
335
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJhY2tldC51dGlscy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9icmFja2V0L3V0aWxzL2JyYWNrZXQudXRpbHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBR0EsSUFBSSxTQUFTLEdBQUcsQ0FBQyxDQUFDO0FBRWxCLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFHLENBQUMsS0FBNEQsRUFBRSxFQUFFO0lBQ2xHLElBQUksQ0FBQyxLQUFLLEVBQUU7UUFDVixPQUFPLEtBQUssQ0FBQztLQUNkO0lBRUQsT0FBTyxDQUNMLEtBQUssQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLGdCQUFnQjtRQUNyQyxLQUFLLENBQUMsS0FBSyxDQUFDLElBQUksS0FBSyxPQUFPO1FBQzVCLEtBQUssQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLFFBQVE7UUFDN0IsS0FBSyxDQUFDLEtBQUssQ0FBQyxJQUFJLEtBQUssZUFBZTtRQUNwQyxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUNsQixDQUFDO0FBQ0osQ0FBQyxDQUFDO0FBRUYsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLENBQUMsTUFBNEMsRUFBRSxFQUFFO0lBQzFFLE1BQU0sWUFBWSxHQUFHLHdCQUF3QixDQUFDLE1BQU0sQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsSUFBSSxLQUFLLFFBQVEsQ0FBQyxDQUFDLENBQUM7SUFDL0YsTUFBTSxZQUFZLEdBQUcsd0JBQXdCLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLEtBQUssQ0FBQyxJQUFJLEtBQUssZ0JBQWdCLENBQUMsQ0FBQyxDQUFDO0lBQ3ZHLE1BQU0sV0FBVyxHQUFHLHdCQUF3QixDQUFDLE1BQU0sQ0FBQyxN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QyxDQUFDLElBQUksSUFBSSxDQUFDO1lBRXJGLDZEQUE2RDtZQUM3RCxJQUFJLGtCQUFrQixDQUFDLGFBQWEsRUFBRSxLQUFLLENBQUMsSUFBSSxDQUFDLEtBQUssa0JBQWtCLENBQUMsS0FBSyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsRUFBRTtnQkFDMUYsYUFBYSxHQUFHLElBQUksQ0FBQzthQUN0QjtZQUVELE1BQU0sQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLGVBQWUsQ0FBQyxLQUFLLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBRSxTQUFTLENBQUMsQ0FBQyxDQUFDO1NBQ25GO1FBRUQsT0FBTyxNQUFNLENBQUM7SUFDaEIsQ0FBQztDQTBPRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE1hdGNoTGlzdFZpZXcsIFJvdW5kU3RhZ2VTdHJ1Y3R1cmVXaXRoTWF0Y2hlc1ZpZXcgfSBmcm9tICdAZXRobGV0ZS90eXBlcyc7XG5pbXBvcnQgeyBCcmFja2V0TWF0Y2gsIEJyYWNrZXRSb3VuZCB9IGZyb20gJy4uL3R5cGVzJztcblxubGV0IGJyYWNrZXRJZCA9IDA7XG5cbmV4cG9ydCBjb25zdCBpc1VwcGVyQnJhY2tldE1hdGNoID0gKG1hdGNoOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3IHwgbnVsbCB8IHVuZGVmaW5lZCkgPT4ge1xuICBpZiAoIW1hdGNoKSB7XG4gICAgcmV0dXJuIGZhbHNlO1xuICB9XG5cbiAgcmV0dXJuIChcbiAgICBtYXRjaC5yb3VuZC50eXBlID09PSAnd2lubmVyX2JyYWNrZXQnIHx8XG4gICAgbWF0Y2gucm91bmQudHlwZSA9PT0gJ2ZpbmFsJyB8fFxuICAgIG1hdGNoLnJvdW5kLnR5cGUgPT09ICdub3JtYWwnIHx8XG4gICAgbWF0Y2gucm91bmQudHlwZSA9PT0gJ3JldmVyc2VfZmluYWwnIHx8XG4gICAgIW1hdGNoLnJvdW5kLnR5cGVcbiAgKTtcbn07XG5cbmV4cG9ydCBjb25zdCBvcmRlclJvdW5kcyA9IChyb3VuZHM6IFJvdW5kU3RhZ2VTdHJ1Y3R1cmVXaXRoTWF0Y2hlc1ZpZXdbXSkgPT4ge1xuICBjb25zdCBub3JtYWxSb3VuZHMgPSBvcmRlclJvdW5kc0J5Um91bmROdW1iZXIocm91bmRzLmZpbHRlcigocikgPT4gci5yb3VuZC50eXBlID09PSAnbm9ybWFsJykpO1xuICBjb25zdCB3aW5uZXJSb3VuZHMgPSBvcmRlclJvdW5kc0J5Um91bmROdW1iZXIocm91bmRzLmZpbHRlcigocikgPT4gci5yb3VuZC50eXBlID09PSAnd2lubmVyX2JyYWNrZXQnKSk7XG4gIGNvbnN0IGxvc2VyUm91bmRzID0gb3JkZXJSb3VuZHNCeVJvdW5kTnVtYmVyKHJvdW5kcy5maWx0ZXIoKHIpID0+IHIucm91bmQudHlwZSA9PT0gJ2xvc2VyX2JyYWNrZXQnKSk7XG4gIGNvbnN0IGZpbmFsUm91bmRzID0gcm91bmRzLmZpbHRlcigocikgPT4gci5yb3VuZC50eXBlID09PSAnZmluYWwnKTtcbiAgY29uc3QgcmV2ZXJzZUZpbmFsUm91bmRzID0gcm91bmRzLmZpbHRlcigocikgPT4gci5yb3VuZC50eXBlID09PSAncmV2ZXJzZV9maW5hbCcpO1xuICBjb25zdCB0aGlyZFBsYWNlUm91bmRzID0gcm91bmRzLmZpbHRlcigocikgPT4gci5yb3VuZC50eXBlID09PSAndGhpcmRfcGxhY2UnKTtcblxuICByZXR1cm4gWy4uLndpbm5lclJvdW5kcywgLi4ubm9ybWFsUm91bmRzLCAuLi5maW5hbFJvdW5kcywgLi4ucmV2ZXJzZUZpbmFsUm91bmRzLCAuLi5sb3NlclJvdW5kcywgLi4udGhpcmRQbGFjZVJvdW5kc107XG59O1xuXG5leHBvcnQgY29uc3Qgb3JkZXJSb3VuZHNCeVJvdW5kTnVtYmVyID0gKHJvdW5kczogUm91bmRTdGFnZVN0cnVjdHVyZVdpdGhNYXRjaGVzVmlld1tdKSA9PiB7XG4gIHJldHVybiByb3VuZHMuc2xpY2UoMCkuc29ydCgoYSwgYikgPT4ge1xuICAgIGlmIChhLnJvdW5kLm51bWJlciA8IGIucm91bmQubnVtYmVyKSB7XG4gICAgICByZXR1cm4gLTE7XG4gICAgfVxuICAgIGlmIChhLnJvdW5kLm51bWJlciA+IGIucm91bmQubnVtYmVyKSB7XG4gICAgICByZXR1cm4gMTtcbiAgICB9XG4gICAgcmV0dXJuIDA7XG4gIH0pO1xufTtcblxuZXhwb3J0IGNvbnN0IG5vcm1hbGl6ZVJvdW5kVHlwZSA9IChyb3VuZFR5cGU6IHN0cmluZyB8IG51bGwgfCB1bmRlZmluZWQpID0+IHtcbiAgaWYgKCFyb3VuZFR5cGUpIHtcbiAgICByZXR1cm4gbnVsbDtcbiAgfVxuXG4gIGlmIChcbiAgICByb3VuZFR5cGUgPT09ICdub3JtYWwnIHx8XG4gICAgcm91bmRUeXBlID09PSAnd2lubmVyX2JyYWNrZXQnIHx8XG4gICAgcm91bmRUeXBlID09PSAnZmluYWwnIHx8XG4gICAgcm91bmRUeXBlID09PSAncmV2ZXJzZV9maW5hbCdcbiAgKSB7XG4gICAgcmV0dXJuICd1cHBlcic7XG4gIH1cblxuICByZXR1cm4gJ2xvd2VyJztcbn07XG5cbmV4cG9ydCBjbGFzcyBCcmFja2V0IHtcbiAgZ2V0IHdpbm5lclJvdW5kcygpIHtcbiAgICByZXR1cm4gdGhpcy5fcm91bmRzV2l0aE1hdGNoZXMuZmlsdGVyKChyKSA9PiBpc1VwcGVyQnJhY2tldE1hdGNoKHIpKTtcbiAgfVxuXG4gIGdldCBsb3NlclJvdW5kcygpIHtcbiAgICByZXR1cm4gdGhpcy5fcm91bmRzV2l0aE1hdGNoZXMuZmlsdGVyKChyKSA9PiByLnJvdW5kLnR5cGUgPT09ICdsb3Nlcl9icmFja2V0Jyk7XG4gIH1cblxuICBnZXQgZmlyc3RXaW5uZXJSb3VuZCgpIHtcbiAgICByZXR1cm4gdGhpcy53aW5uZXJSb3VuZHNbMF07XG4gIH1cblxuICBnZXQgZmlyc3RMb3NlclJvdW5kKCkge1xuICAgIHJldHVybiAodGhpcy5sb3NlclJvdW5kc1swXSA/PyBudWxsKSBhcyBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3IHwgbnVsbDtcbiAgfVxuXG4gIGdldCB3aW5uZXJSb3VuZENvdW50KCkge1xuICAgIHJldHVybiB0aGlzLndpbm5lclJvdW5kcy5sZW5ndGg7XG4gIH1cblxuICBnZXQgbG9zZXJSb3VuZENvdW50KCkge1xuICAgIHJldHVybiB0aGlzLmxvc2VyUm91bmRzLmxlbmd0aDtcbiAgfVxuXG4gIGdldCBicmFja2V0U2l6ZSgpIHtcbiAgICByZXR1cm4gdGhpcy5maXJzdFdpbm5lclJvdW5kLm1hdGNoZXMubGVuZ3RoICogMjtcbiAgfVxuXG4gIGdldCBicmFja2V0VHlwZSgpIHtcbiAgICByZXR1cm4gIXRoaXMubG9zZXJSb3VuZENvdW50ID8gJ3NpbmdsZScgOiAnZG91YmxlJztcbiAgfVxuXG4gIGdldCB3aW5uZXJCcmFja2V0Um93Q291bnQoKSB7XG4gICAgcmV0dXJuIHRoaXMuZmlyc3RXaW5uZXJSb3VuZC5tYXRjaGVzLmxlbmd0aDtcbiAgfVxuXG4gIGdldCBsb3NlckJyYWNrZXRSb3dDb3VudCgpIHtcbiAgICByZXR1cm4gdGhpcy5maXJzdExvc2VyUm91bmQ/Lm1hdGNoZXMubGVuZ3RoID8/IDA7XG4gIH1cblxuICBnZXQgdG90YWxSb3dDb3VudCgpIHtcbiAgICByZXR1cm4gdGhpcy53aW5uZXJCcmFja2V0Um93Q291bnQgKyB0aGlzLmxvc2VyQnJhY2tldFJvd0NvdW50ICsgMTtcbiAgfVxuXG4gIGdldCB0b3RhbENvbENvdW50KCkge1xuICAgIHJldHVybiB0aGlzLmJyYWNrZXRUeXBlID09PSAnc2luZ2xlJ1xuICAgICAgPyB0aGlzLndpbm5lclJvdW5kQ291bnRcbiAgICAgIDogdGhpcy5sb3NlclJvdW5kQ291bnQgKyAodGhpcy53aW5uZXJSb3VuZENvdW50IC0gdGhpcy5sb3NlclJvdW5kQ291bnQgLyAyKSAtIDE7XG4gIH1cblxuICBnZXQgd2lubmVyUm93U3RhcnQoKSB7XG4gICAgcmV0dXJuIDE7XG4gIH1cblxuICBnZXQgd2lubmVyUm93RW5kKCkge1xuICAgIHJldHVybiB0aGlzLmJyYWNrZXRUeXBlID09PSAnc2luZ2xlJyA/IHRoaXMudG90YWxSb3dDb3VudCA6IHRoaXMudG90YWxSb3dDb3VudCAtIHRoaXMud2lubmVyQnJhY2tldFJvd0NvdW50O1xuICB9XG5cbiAgZ2V0IGxvc2VyUm93U3RhcnQoKSB7XG4gICAgcmV0dXJuIHRoaXMud2lubmVyQnJhY2tldFJvd0NvdW50ICsgMTtcbiAgfVxuXG4gIGdldCBsb3NlclJvd0VuZCgpIHtcbiAgICByZXR1cm4gdGhpcy50b3RhbFJvd0NvdW50O1xuICB9XG5cbiAgZ2V0IGluZGV4T2ZMb29zZXJSb3VuZFN0YXJ0KCkge1xuICAgIHJldHVybiB0aGlzLl9yb3VuZHNXaXRoTWF0Y2hlcy5maW5kSW5kZXgoKHIpID0+IHIucm91bmQudHlwZSA9PT0gJ2xvc2VyX2JyYWNrZXQnKTtcbiAgfVxuXG4gIGdldCBsb29zZXJSb3dBZGRpdGlvbmFsUm91bmRDb3VudCgpIHtcbiAgICBpZiAodGhpcy5icmFja2V0VHlwZSA9PT0gJ3NpbmdsZScpIHtcbiAgICAgIHJldHVybiAwO1xuICAgIH1cblxuICAgIGNvbnN0IHdpbm5lclJvdW5kcyA9IHRoaXMuX3JvdW5kc1dpdGhNYXRjaGVzLmZpbHRlcigocikgPT4gci5yb3VuZC50eXBlID09PSAnd2lubmVyX2JyYWNrZXQnKTtcbiAgICBjb25zdCB3aW5uZXJSb3VuZENvdW50ID0gd2lubmVyUm91bmRzLmxlbmd0aDtcbiAgICBjb25zdCBsb3NlclJvdW5kcyA9IHRoaXMuX3JvdW5kc1dpdGhNYXRjaGVzLmZpbHRlcigocikgPT4gci5yb3VuZC50eXBlID09PSAnbG9zZXJfYnJhY2tldCcpO1xuICAgIGNvbnN0IGxvc2VyUm91bmRDb3VudCA9IGxvc2VyUm91bmRzLmxlbmd0aDtcblxuICAgIHJldHVybiBsb3NlclJvdW5kQ291bnQgLSB3aW5uZXJSb3VuZENvdW50O1xuICB9XG5cbiAgZ2V0IGlzUGFydGlhbERvdWJsZUVsaW1pbmF0aW9uKCkge1xuICAgIHJldHVybiAoXG4gICAgICB0aGlzLmJyYWNrZXRUeXBlID09PSAnZG91YmxlJyAmJiB0aGlzLmZpcnN0V2lubmVyUm91bmQubWF0Y2hlcy5sZW5ndGggPT09IHRoaXMuZmlyc3RMb3NlclJvdW5kPy5tYXRjaGVzLmxlbmd0aFxuICAgICk7XG4gIH1cblxuICByZWFkb25seSBicmFja2V0Um91bmRzOiBCcmFja2V0Um91bmRbXTtcbiAgcmVhZG9ubHkgaWQgPSBicmFja2V0SWQrKztcblxuICBwcml2YXRlIHJlYWRvbmx5IF9icmFja2V0TWF0Y2hlczogQnJhY2tldE1hdGNoW107XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBfcm91bmRzV2l0aE1hdGNoZXM6IFJvdW5kU3RhZ2VTdHJ1Y3R1cmVXaXRoTWF0Y2hlc1ZpZXdbXSkge1xuICAgIHRoaXMuYnJhY2tldFJvdW5kcyA9IHRoaXMuX2NvbXB1dGVCcmFja2V0KF9yb3VuZHNXaXRoTWF0Y2hlcyk7XG5cbiAgICBjb25zdCByb3VuZHMgPSB0aGlzLmJyYWNrZXRSb3VuZHMubWFwKChyKSA9PiByLm1hdGNoZXMpO1xuICAgIGNvbnN0IGZsYXRNYXRjaGVzOiBCcmFja2V0TWF0Y2hbXSA9IFtdO1xuXG4gICAgZm9yIChjb25zdCByb3VuZCBvZiByb3VuZHMpIHtcbiAgICAgIGZvciAoY29uc3QgbWF0Y2ggb2Ygcm91bmQpIHtcbiAgICAgICAgZmxhdE1hdGNoZXMucHVzaChtYXRjaCk7XG4gICAgICB9XG4gICAgfVxuXG4gICAgdGhpcy5fYnJhY2tldE1hdGNoZXMgPSBmbGF0TWF0Y2hlcztcbiAgfVxuXG4gIGdldFJvdW5kQnlJZChyb3VuZElkOiBzdHJpbmcpIHtcbiAgICByZXR1cm4gdGhpcy5icmFja2V0Um91bmRzLmZpbmQoKHIpID0+IHIuZGF0YS5pZCA9PT0gcm91bmRJZCk7XG4gIH1cblxuICBnZXRNYXRjaEJ5SWQobWF0Y2hJZDogc3RyaW5nKSB7XG4gICAgcmV0dXJuIHRoaXMuX2JyYWNrZXRNYXRjaGVzLmZpbmQoKG0pID0+IG0uZGF0YS5pZCA9PT0gbWF0Y2hJZCk7XG4gIH1cblxuICBwcml2YXRlIF9jb21wdXRlQnJhY2tldChkYXRhOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3W10pIHtcbiAgICBjb25zdCByb3VuZHM6IEJyYWNrZXRSb3VuZFtdID0gW107XG5cbiAgICBmb3IgKGNvbnN0IFtpbmRleCwgcm91bmRdIG9mIGRhdGEuZW50cmllcygpKSB7XG4gICAgICBsZXQgcmVsYXRpdmVJbmRleCA9IGluZGV4O1xuXG4gICAgICBpZiAoaW5kZXggPT09IHRoaXMuaW5kZXhPZkxvb3NlclJvdW5kU3RhcnQgfHwgaW5kZXggPiB0aGlzLmluZGV4T2ZMb29zZXJSb3VuZFN0YXJ0KSB7XG4gICAgICAgIHJlbGF0aXZlSW5kZXggPSBpbmRleCAtIHRoaXMuaW5kZXhPZkxvb3NlclJvdW5kU3RhcnQ7XG4gICAgICB9XG5cbiAgICAgIGxldCBwcmV2aW91c1JvdW5kOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3IHwgbnVsbCA9IGRhdGFbaW5kZXggLSAxXSA/PyBudWxsO1xuICAgICAgY29uc3QgbmV4dFJvdW5kOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3IHwgbnVsbCA9IGRhdGFbaW5kZXggKyAxXSA/PyBudWxsO1xuXG4gICAgICAvLyBTd2l0Y2hpbmcgdG8gbG9zZXIgYnJhY2tldCBzaG91bGQgcmVzZXQgdGhlIHByZXZpb3VzUm91bmQuXG4gICAgICBpZiAobm9ybWFsaXplUm91bmRUeXBlKHByZXZpb3VzUm91bmQ/LnJvdW5kLnR5cGUpICE9PSBub3JtYWxpemVSb3VuZFR5cGUocm91bmQucm91bmQudHlwZSkpIHtcbiAgICAgICAgcHJldmlvdXNSb3VuZCA9IG51bGw7XG4gICAgICB9XG5cbiAgICAgIHJvdW5kcy5wdXNoKHRoaXMuX3RyYW5zZm9ybVJvdW5kKHJvdW5kLCByZWxhdGl2ZUluZGV4LCBwcmV2aW91c1JvdW5kLCBuZXh0Um91bmQpKTtcbiAgICB9XG5cbiAgICByZXR1cm4gcm91bmRzO1xuICB9XG5cbiAgcHJpdmF0ZSBfdHJhbnNmb3JtUm91bmQgPSAoXG4gICAgY3VycmVudFJvdW5kOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3LFxuICAgIGN1cnJlbnRSb3VuZEluZGV4OiBudW1iZXIsXG4gICAgcHJldmlvdXNSb3VuZDogUm91bmRTdGFnZVN0cnVjdHVyZVdpdGhNYXRjaGVzVmlldyB8IG51bGwsXG4gICAgbmV4dFJvdW5kOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3IHwgbnVsbCxcbiAgKTogQnJhY2tldFJvdW5kID0+IHtcbiAgICBjb25zdCBtYXRjaENvdW50ID0gY3VycmVudFJvdW5kLm1hdGNoZXMubGVuZ3RoO1xuICAgIGNvbnN0IG5hbWUgPSBjdXJyZW50Um91bmQucm91bmQubmFtZTtcbiAgICBjb25zdCBpc1dpbm5lckJyYWNrZXQgPSBpc1VwcGVyQnJhY2tldE1hdGNoKGN1cnJlbnRSb3VuZCk7XG4gICAgY29uc3QgaXNEb3VibGVFbGltaW5hdGlvbiA9IHRoaXMuYnJhY2tldFR5cGUgPT09ICdkb3VibGUnO1xuXG4gICAgbGV0IGNvbFN0YXJ0ID0gMDtcbiAgICBsZXQgY29sRW5kID0gMDtcblxuICAgIGxldCByb3dTdGFydCA9IGlzV2lubmVyQnJhY2tldCA/IHRoaXMud2lubmVyUm93U3RhcnQgOiB0aGlzLmxvc2VyUm93U3RhcnQ7XG4gICAgbGV0IHJvd0VuZCA9IGlzV2lubmVyQnJhY2tldCA/IHRoaXMud2lubmVyUm93RW5kIDogdGhpcy5sb3NlclJvd0VuZDtcbiAgICBsZXQgZmlyc3RSb3VuZE1hdGNoQ291bnQgPSBpc1dpbm5lckJyYWNrZXRcbiAgICAgID8gdGhpcy5maXJzdFdpbm5lclJvdW5kLm1hdGNoZXMubGVuZ3RoXG4gICAgICA6IHRoaXMuZmlyc3RMb3NlclJvdW5kPy5tYXRjaGVzLmxlbmd0aDtcblxuICAgIGlmIChpc0RvdWJsZUVsaW1pbmF0aW9uKSB7XG4gICAgICBpZiAoaXNXaW5uZXJCcmFja2V0KSB7XG4gICAgICAgIGlmIChjdXJyZW50Um91bmRJbmRleCA9PT0gMCkge1xuICAgICAgICAgIC8vIFRoZSBmaXJzdCB3aW5uZXIgYnJhY2tldCByb3VuZCBpcyBhbHdheXMgMSBjb2wgd2lkZS5cbiAgICAgICAgICBjb2xTdGFydCA9IDE7XG4gICAgICAgICAgY29sRW5kID0gMTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICBjb25zdCBjb2xTdGFydERvdWJsZSA9IGN1cnJlbnRSb3VuZEluZGV4ICogMjtcbiAgICAgICAgICBjb25zdCBjb2xFbmREb3VibGUgPSBjb2xTdGFydERvdWJsZSArIDE7XG4gICAgICAgICAgY29uc3QgaXNTZW1pRmluYWxSb3VuZCA9IGN1cnJlbnRSb3VuZC5yb3VuZC50eXBlID09PSAnd2lubmVyX2JyYWNrZXQnICYmIG1hdGNoQ291bnQgPT09IDE7XG5cbiAgICAgICAgICAvLyBJZiB0aGUgY29sIGVuZCBpcyBncmVhdGVyIHRoYW4gdGhlIHRvdGFsIGxvb3NlciByb3VuZHMsIHRoZW4gd2UgbmVlZCB0byBzcGFuIDIgY29scyxcbiAgICAgICAgICAvLyBzaW5jZSB0aGUgbG9zZXIgYnJhY2tldCB3aWxsIGFsd2F5cyBwbGF5IDIgcm91bmRzIHBlciB3aW5uZXIgYnJhY2tldCByb3VuZC5cbiAgICAgICAgICAvLyBXZSBhbHNvIG5lZWQgdG8gc3BhbiAyIGNvbCBpZiB0aGUgY3VycmVudCByb3VuZCBpcyB0aGUgc2VtaSBmaW5hbCByb3VuZCBBTkQgd2UgaGF2ZSBhbiBhc3luYyBzdGFydC5cbiAgICAgICAgICAvLyBBc3luYyBzdGFydCBtZWFucyB0aGF0IHRoZSBmaXJzdCB3aW5uZXIgcm91bmQncyBtYXRjaGVzIGxlbmd0aCBpcyBlcXVhbCB0byB0aGUgZmlyc3QgbG9zZXIgcm91bmQncyBtYXRjaGVzIGxlbmd0aC5cbiAgICAgICAgICAvLyBUaGlzIGlzIHByb2R1Y2VkIGJ5IG9ubHkgc2hvd2luZyBhIHBhcnQgKGVnLiB0aGUgbGFzdCA1IHJvdW5kcykgb2YgYSBtdWNoIGJpZ2dlciBicmFja2V0LlxuICAgICAgICAgIGlmIChjb2xFbmREb3VibGUgPCB0aGlzLmxvc2VyUm91bmRDb3VudCB8fCAoaXNTZW1pRmluYWxSb3VuZCAmJiB0aGlzLmlzUGFydGlhbERvdWJsZUVsaW1pbmF0aW9uKSkge1xuICAgICAgICAgICAgY29sU3RhcnQgPSBjb2xTdGFydERvdWJsZTtcblxuICAgICAgICAgICAgLy8gV2UgbmVlZCB0byBhZGQgb25lIHRvIHRoZSBjb2wgdG8gY3JlYXRlIGEgYWN0dWFsIGdyaWQgc3BhblxuICAgICAgICAgICAgY29sRW5kID0gY29sRW5kRG91YmxlICsgMTtcbiAgICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgICAgLy8gSWYgdGhlIGNvbCBlbmQgaXMgZ3JlYXRlciB0aGFuIHRoZSB0b3RhbCBsb29zZXIgcm91bmRzLCB0aGVuIHdlIG5lZWQgdG8gZ28gYmFjayB0byAxIGNvbCB3aWRlLFxuICAgICAgICAgICAgLy8gc2luY2UgdGhpcyBpcyB0aGUgcG9pbnQgd2hlcmUgc2VtaSBmaW5hbHMsIGZpbmFscyAoYW5kIHNlY29uZCBjaGFuY2UgZmluYWwpIGFyZSBwbGF5ZWRcbiAgICAgICAgICAgIGNvbnN0IG92ZXJzaG9vdCA9IGNvbEVuZERvdWJsZSAtIHRoaXMubG9zZXJSb3VuZENvdW50O1xuICAgICAgICAgICAgbGV0IGRlbHRhID0gTWF0aC5mbG9vcihvdmVyc2hvb3QgLyAyKTtcblxuICAgICAgICAgICAgaWYgKHRoaXMuaXNQYXJ0aWFsRG91YmxlRWxpbWluYXRpb24pIHtcbiAgICAgICAgICAgICAgZGVsdGEgPSBkZWx0YSAtIDE7XG4gICAgICAgICAgICB9XG5cbiAgICAgICAgICAgIGNvbFN0YXJ0ID0gY29sU3RhcnREb3VibGUgLSBkZWx0YTtcbiAgICAgICAgICAgIGNvbEVuZCA9IGNvbFN0YXJ0RG91YmxlIC0gZGVsdGE7XG5cbiAgICAgICAgICAgIC8vIElmIHRoZSBvdmVyc2hvb3QgaXMgYmlnZ2VyIHRoYW4gMSwgd2UgbmVlZCB0byBhZGp1c3QgdGhlIHJvdyBzdGFydCBhbmQgZW5kIHRvIHNwYW4gb3ZlciB0aGUgd2hvbGUgZ3JpZCxcbiAgICAgICAgICAgIC8vIHNpbmNlIHdlIGFyZSBpbiB0aGUgZmluYWwgcm91bmQocykuXG4gICAgICAgICAgICAvLyBPdmVyc2hvb3QgMSBtZWFucyB3ZSBhcmUgaW4gdGhlIHNlbWkgZmluYWwgcm91bmQgYW5kIHRoZXJlIGlzIGEgbG9zZXIgYnJhY2tldCByb3VuZCBpbiB0aGlzIHN0ZXAgKHRoZSBsYXN0IG9uZSkuXG4gICAgICAgICAgICBpZiAob3ZlcnNob290ID4gMSkge1xuICAgICAgICAgICAgICByb3dTdGFydCA9IDE7XG4gICAgICAgICAgICAgIHJvd0VuZCA9IHRoaXMudG90YWxSb3dDb3VudDtcbiAgICAgICAgICAgICAgZmlyc3RSb3VuZE1hdGNoQ291bnQgPSB0aGlzLnRvdGFsUm93Q291bnQgLSAxO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfSBlbHNlIGlmIChjdXJyZW50Um91bmQucm91bmQudHlwZSA9PT0gJ3RoaXJkX3BsYWNlJykge1xuICAgICAgICBjb25zdCBoYXNTZWNvbmRDaGFuY2VGaW5hbCA9IHRoaXMuX3JvdW5kc1dpdGhNYXRjaGVzLnNvbWUoKHIpID0+IHIucm91bmQudHlwZSA9PT0gJ3JldmVyc2VfZmluYWwnKTtcblxuICAgICAgICAvLyBTcGFuIHRoZSB0aGlyZCBwbGFjZSBtYXRjaCBmb3JtIGZpbmFsIHRvIHNlY29uZCBjaGFuY2UgZmluYWxcbiAgICAgICAgaWYgKGhhc1NlY29uZENoYW5jZUZpbmFsKSB7XG4gICAgICAgICAgY29sU3RhcnQgPSBjdXJyZW50Um91bmRJbmRleCArIDE7XG4gICAgICAgICAgY29sRW5kID0gY3VycmVudFJvdW5kSW5kZXggKyAzO1xuICAgICAgICB9IGVsc2Uge1xuICAgICAgICAgIC8vIEtlZXAgdGhlIHRoaXJkIHBsYWNlIG1hdGNoIGluIHRoZSBzYW1lIGNvbCBhcyB0aGUgZmluYWxcbiAgICAgICAgICBjb2xTdGFydCA9IGN1cnJlbnRSb3VuZEluZGV4ICsgMTtcbiAgICAgICAgICBjb2xFbmQgPSBjdXJyZW50Um91bmRJbmRleCArIDE7XG4gICAgICAgIH1cbiAgICAgIH0gZWxzZSB7XG4gICAgICAgIC8vIExvc2VyIGJyYWNrZXQgcm91bmRzIGFyZSBhbHdheXMgMSBjb2wgd2lkZS5cbiAgICAgICAgY29sU3RhcnQgPSBjdXJyZW50Um91bmRJbmRleCArIDE7XG4gICAgICAgIGNvbEVuZCA9IGN1cnJlbnRSb3VuZEluZGV4ICsgMTtcbiAgICAgIH1cbiAgICB9IGVsc2Uge1xuICAgICAgaWYgKGN1cnJlbnRSb3VuZC5yb3VuZC50eXBlID09PSAndGhpcmRfcGxhY2UnKSB7XG4gICAgICAgIC8vIFRoZSB0aGlyZCBwbGFjZSBtYXRjaCBpcyBhbHdheXMgaW4gdGhlIHNhbWUgY29sIGFzIHRoZSBmaW5hbFxuICAgICAgICBjb2xTdGFydCA9IGN1cnJlbnRSb3VuZEluZGV4IC0gMTtcbiAgICAgICAgY29sRW5kID0gY3VycmVudFJvdW5kSW5kZXggLSAxO1xuXG4gICAgICAgIGlmICh0aGlzLndpbm5lclJvd0VuZCAtIDEgPT09IDIpIHtcbiAgICAgICAgICAvLyBTcGVjaWFsIGNhc2UgZm9yIDIgbWF0Y2ggYnJhY2tldHNcbiAgICAgICAgICByb3dTdGFydCA9IDI7XG4gICAgICAgICAgcm93RW5kID0gMjtcbiAgICAgICAgfSBlbHNlIGlmICh0aGlzLndpbm5lclJvd0VuZCAtIDEgPT09IDQpIHtcbiAgICAgICAgICAvLyBTcGVjaWFsIGNhc2UgZm9yIDQgbWF0Y2ggYnJhY2tldHNcbiAgICAgICAgICByb3dTdGFydCA9IDM7XG4gICAgICAgICAgcm93RW5kID0gMztcbiAgICAgICAgfSBlbHNlIGlmICh0aGlzLndpbm5lclJvd0VuZCAtIDEgPiA0KSB7XG4gICAgICAgICAgLy8gU3BlY2lhbCBjYXNlIGZvciA4KyBtYXRjaCBicmFja2V0cy4gVGhpcyB3aWxsIHJlc3VsdCBpbiBpdCBiZWluZyBpbiB0aGUgc2FtZSByb3cgYXMgdGhlIHNlY29uZCBzZW1pIGZpbmFsIG1hdGNoLlxuICAgICAgICAgIHJvd1N0YXJ0ID0gKHRoaXMud2lubmVyUm93RW5kIC0gMSkgLyAyICsgKHRoaXMud2lubmVyUm93RW5kIC0gMSkgLyAyIC8gMjtcbiAgICAgICAgICByb3dFbmQgPSB0aGlzLndpbm5lclJvd0VuZDtcbiAgICAgICAgfVxuICAgICAgfSBlbHNlIHtcbiAgICAgICAgLy8gQWxsIG90aGVyIHNpbmdsZSBlbGltaW5hdGlvbiByb3VuZHMgYXJlIGFsd2F5cyAxIGNvbCB3aWRlLlxuICAgICAgICBjb2xTdGFydCA9IGN1cnJlbnRSb3VuZEluZGV4O1xuICAgICAgICBjb2xFbmQgPSBjdXJyZW50Um91bmRJbmRleDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBjb25zdCBtYXRjaGVzID0gY3VycmVudFJvdW5kLm1hdGNoZXMubWFwKChtYXRjaCwgbWF0Y2hJbmRleCkgPT4ge1xuICAgICAgcmV0dXJuIHRoaXMuX3RyYW5zZm9ybU1hdGNoKFxuICAgICAgICBtYXRjaCxcbiAgICAgICAgbWF0Y2hJbmRleCxcbiAgICAgICAgcm93U3RhcnQsXG4gICAgICAgIG1hdGNoQ291bnQsXG4gICAgICAgIGZpcnN0Um91bmRNYXRjaENvdW50ID8/IDAsXG4gICAgICAgIHByZXZpb3VzUm91bmQsXG4gICAgICAgIG5leHRSb3VuZCxcbiAgICAgICAgY3VycmVudFJvdW5kLFxuICAgICAgICBjdXJyZW50Um91bmRJbmRleCxcbiAgICAgICk7XG4gICAgfSk7XG5cbiAgICByZXR1cm4ge1xuICAgICAgbWF0Y2hDb3VudCxcbiAgICAgIG5hbWUsXG4gICAgICBtYXRjaGVzLFxuICAgICAgZGF0YTogY3VycmVudFJvdW5kLnJvdW5kLFxuXG4gICAgICByb3c6IHtcbiAgICAgICAgc3RhcnQ6IHJvd1N0YXJ0LFxuICAgICAgICBlbmQ6IHJvd0VuZCxcbiAgICAgIH0sXG4gICAgICBjb2x1bW46IHtcbiAgICAgICAgc3RhcnQ6IGNvbFN0YXJ0LFxuICAgICAgICBlbmQ6IGNvbEVuZCxcbiAgICAgIH0sXG4gICAgfTtcbiAgfTtcblxuICBwcml2YXRlIF90cmFuc2Zvcm1NYXRjaCA9IChcbiAgICBtYXRjaDogTWF0Y2hMaXN0VmlldyxcbiAgICBtYXRjaEluZGV4OiBudW1iZXIsXG4gICAgcm91bmRSb3dTdGFydDogbnVtYmVyLFxuICAgIG1hdGNoQ291bnQ6IG51bWJlcixcbiAgICBmaXJzdFJvdW5kTWF0Y2hDb3VudDogbnVtYmVyLFxuICAgIHByZXZpb3VzUm91bmQ6IFJvdW5kU3RhZ2VTdHJ1Y3R1cmVXaXRoTWF0Y2hlc1ZpZXcgfCBudWxsLFxuICAgIG5leHRSb3VuZDogUm91bmRTdGFnZVN0cnVjdHVyZVdpdGhNYXRjaGVzVmlldyB8IG51bGwsXG4gICAgY3VycmVudFJvdW5kOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3IHwgbnVsbCxcbiAgICBjdXJyZW50Um91bmRJbmRleDogbnVtYmVyLFxuICApOiBCcmFja2V0TWF0Y2ggPT4ge1xuICAgIGNvbnN0IGRpZmYgPSBmaXJzdFJvdW5kTWF0Y2hDb3VudCAvIG1hdGNoQ291bnQ7XG5cbiAgICBsZXQgcm93U3RhcnQgPSByb3VuZFJvd1N0YXJ0ICsgbWF0Y2hJbmRleCAqIGRpZmY7XG4gICAgbGV0IHJvd0VuZCA9IHJvd1N0YXJ0ICsgZGlmZjtcblxuICAgIGlmIChjdXJyZW50Um91bmQ/LnJvdW5kLnR5cGUgPT09ICd0aGlyZF9wbGFjZScgJiYgdGhpcy5icmFja2V0VHlwZSA9PT0gJ3NpbmdsZScpIHtcbiAgICAgIC8vIFNwZWNpYWwgY2FzZSBmb3IgOCsgc2luZ2xlIGVsaW1pbmF0aW9uIGJyYWNrZXRzLiBUaGlzIHdpbGwgcmVzdWx0IGluIHRoZSBjdXJyZW50IG1hdGNoIGJlaW5nIGluIHRoZSBzYW1lIHJvdyBhcyB0aGUgc2Vjb25kIHNlbWkgZmluYWwgbWF0Y2guXG4gICAgICBpZiAodGhpcy53aW5uZXJSb3dFbmQgLSAxID4gNCkge1xuICAgICAgICByb3dTdGFydCA9ICh0aGlzLndpbm5lclJvd0VuZCAtIDEpIC8gMjtcbiAgICAgICAgcm93RW5kID0gdGhpcy53aW5uZXJSb3dFbmQgLSAxO1xuICAgICAgfVxuICAgIH1cblxuICAgIGxldCByb3VuZHNTYW1lU2l6ZSA9IHByZXZpb3VzUm91bmQ/Lm1hdGNoZXMubGVuZ3RoID09PSBtYXRjaENvdW50O1xuICAgIGxldCBsb2dpY2FsTmV4dFJvdW5kOiBSb3VuZFN0YWdlU3RydWN0dXJlV2l0aE1hdGNoZXNWaWV3IHwgbnVsbCA9IG51bGw7XG5cbiAgICBpZiAoXG4gICAgICAoY3VycmVudFJvdW5kPy5yb3VuZC50eXBlID09PSAnbG9zZXJfYnJhY2tldCcgJiYgIW5leHRSb3VuZCkgfHxcbiAgICAgIChjdXJyZW50Um91bmQ/LnJvdW5kLnR5cGUgPT09ICdsb3Nlcl9icmFja2V0JyAmJiBuZXh0Um91bmQ/LnJvdW5kLnR5cGUgPT09ICd0aGlyZF9wbGFjZScpXG4gICAgKSB7XG4gICAgICAvLyBUcmFuc2l0aW9uIGZyb20gbGFzdCByb3VuZCBvZiBsb29zZXIgYnJhY2tldCB0byBzZW1pIGZpbmFsIHJvdW5kIG9mIHdpbm5lciBicmFja2V0XG4gICAgICBsb2dpY2FsTmV4dFJvdW5kID0gdGhpcy5fcm91bmRzV2l0aE1hdGNoZXNbY3VycmVudFJvdW5kSW5kZXggLSB0aGlzLmxvb3NlclJvd0FkZGl0aW9uYWxSb3VuZENvdW50ICsgMV07XG4gICAgfSBlbHNlIGlmIChcbiAgICAgICgoY3VycmVudFJvdW5kICYmIGlzVXBwZXJCcmFja2V0TWF0Y2goY3VycmVudFJvdW5kKSkgfHwgIWN1cnJlbnRSb3VuZD8ucm91bmQudHlwZSkgJiZcbiAgICAgIG5leHRSb3VuZD8ucm91bmQudHlwZSA9PT0gJ2xvc2VyX2JyYWNrZXQnXG4gICAgKSB7XG4gICAgICAvLyBUaGUgbGFzdCB3aW5uZXIgcm91bmQgKGZpbmFsKSBkb2VzIG5vdCBoYXZlIGEgbmV4dCByb3VuZCwgYnV0IHRoZSBuZXh0IHJvdW5kIGlzIHRoZSBmaXJzdCBsb29zZXIgcm91bmQuXG4gICAgICBsb2dpY2FsTmV4dFJvdW5kID0gbnVsbDtcbiAgICB9IGVsc2Uge1xuICAgICAgbG9naWNhbE5leHRSb3VuZCA9IG5leHRSb3VuZDtcbiAgICB9XG5cbiAgICBjb25zdCBwcmV2aW91c01hdGNoQSA9XG4gICAgICAocm91bmRzU2FtZVNpemUgPyBwcmV2aW91c1JvdW5kPy5tYXRjaGVzW21hdGNoSW5kZXhdPy5pZCA6IHByZXZpb3VzUm91bmQ/Lm1hdGNoZXNbbWF0Y2hJbmRleCAqIDJdPy5pZCkgPz8gbnVsbDtcbiAgICBsZXQgcHJldmlvdXNNYXRjaEIgPSBwcmV2aW91c1JvdW5kPy5tYXRjaGVzW21hdGNoSW5kZXggKiAyICsgMV0/LmlkID8/IG51bGw7XG5cbiAgICAvLyBwcmV2aW91c01hdGNoQiBjb3VsZCBiZSB0aGUgbGFzdCBsb3NlciBicmFja2V0IG1hdGNoXG4gICAgaWYgKCFwcmV2aW91c01hdGNoQiAmJiBjdXJyZW50Um91bmQgJiYgaXNVcHBlckJyYWNrZXRNYXRjaChjdXJyZW50Um91bmQpKSB7XG4gICAgICBpZiAodGhpcy5sb3NlclJvdW5kcy5sZW5ndGggPT09IGN1cnJlbnRSb3VuZEluZGV4ICsgdGhpcy5sb29zZXJSb3dBZGRpdGlvbmFsUm91bmRDb3VudCkge1xuICAgICAgICBwcmV2aW91c01hdGNoQiA9IHRoaXMubG9zZXJSb3VuZHNbY3VycmVudFJvdW5kSW5kZXggKyB0aGlzLmxvb3NlclJvd0FkZGl0aW9uYWxSb3VuZENvdW50IC0gMV0ubWF0Y2hlc1swXS5pZDtcbiAgICAgICAgcm91bmRzU2FtZVNpemUgPSBmYWxzZTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBjb25zdCBuZXh0TWF0Y2ggPSBsb2dpY2FsTmV4dFJvdW5kPy5tYXRjaGVzW01hdGguZmxvb3IobWF0Y2hJbmRleCAvIDIpXT8uaWQgPz8gbnVsbDtcblxuICAgIGxldCBwcmV2aW91c1JvdW5kTWF0Y2hlcyA9IG51bGw7XG5cbiAgICBpZiAocHJldmlvdXNSb3VuZCkge1xuICAgICAgaWYgKHJvdW5kc1NhbWVTaXplICYmIHByZXZpb3VzTWF0Y2hBKSB7XG4gICAgICAgIC8vIDEgbWF0Y2ggdG8gMSBtYXRjaFxuICAgICAgICBwcmV2aW91c1JvdW5kTWF0Y2hlcyA9IHtcbiAgICAgICAgICByb3VuZElkOiBwcmV2aW91c1JvdW5kLnJvdW5kLmlkLFxuICAgICAgICAgIG1hdGNoSWRzOiBbcHJldmlvdXNNYXRjaEFdLFxuICAgICAgICB9O1xuICAgICAgfSBlbHNlIGlmIChwcmV2aW91c01hdGNoQSAmJiBwcmV2aW91c01hdGNoQikge1xuICAgICAgICAvLyAyIG1hdGNoZXMgdG8gMSBtYXRjaFxuICAgICAgICBwcmV2aW91c1JvdW5kTWF0Y2hlcyA9IHtcbiAgICAgICAgICByb3VuZElkOiBwcmV2aW91c1JvdW5kLnJvdW5kLmlkLFxuICAgICAgICAgIG1hdGNoSWRzOiBbcHJldmlvdXNNYXRjaEEsIHByZXZpb3VzTWF0Y2hCXSxcbiAgICAgICAgfTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICBjb25zdCBuZXh0Um91bmRNYXRjaCA9XG4gICAgICBuZXh0TWF0Y2ggJiYgbG9naWNhbE5leHRSb3VuZFxuICAgICAgICA/IHtcbiAgICAgICAgICAgIHJvdW5kSWQ6IGxvZ2ljYWxOZXh0Um91bmQucm91bmQuaWQsXG4gICAgICAgICAgICBtYXRjaElkOiBuZXh0TWF0Y2gsXG4gICAgICAgICAgfVxuICAgICAgICA6IG51bGw7XG5cbiAgICByZXR1cm4ge1xuICAgICAgcm93OiB7XG4gICAgICAgIHN0YXJ0OiByb3dTdGFydCxcbiAgICAgICAgZW5kOiByb3dFbmQsXG4gICAgICB9LFxuICAgICAgZGF0YTogbWF0Y2gsXG5cbiAgICAgIHByZXZpb3VzTWF0Y2hlczogY3VycmVudFJvdW5kPy5yb3VuZC50eXBlICE9PSAndGhpcmRfcGxhY2UnID8gcHJldmlvdXNSb3VuZE1hdGNoZXMgOiBudWxsLFxuICAgICAgbmV4dE1hdGNoOiBjdXJyZW50Um91bmQ/LnJvdW5kLnR5cGUgIT09ICd0aGlyZF9wbGFjZScgPyBuZXh0Um91bmRNYXRjaCA6IG51bGwsXG4gICAgfTtcbiAgfTtcbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnJhY2tldC91dGlscy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './bracket-config.utils';
2
+ export * from './bracket.utils';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9icmFja2V0L3V0aWxzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLGlCQUFpQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9icmFja2V0LWNvbmZpZy51dGlscyc7XG5leHBvcnQgKiBmcm9tICcuL2JyYWNrZXQudXRpbHMnO1xuIl19
@@ -0,0 +1,3 @@
1
+ import { ButtonComponent, QueryButtonComponent } from './components';
2
+ export const ButtonImports = [ButtonComponent, QueryButtonComponent];
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmltcG9ydHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnV0dG9uL2J1dHRvbi5pbXBvcnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxlQUFlLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFFckUsTUFBTSxDQUFDLE1BQU0sYUFBYSxHQUFHLENBQUMsZUFBZSxFQUFFLG9CQUFvQixDQUFVLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCdXR0b25Db21wb25lbnQsIFF1ZXJ5QnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzJztcblxuZXhwb3J0IGNvbnN0IEJ1dHRvbkltcG9ydHMgPSBbQnV0dG9uQ29tcG9uZW50LCBRdWVyeUJ1dHRvbkNvbXBvbmVudF0gYXMgY29uc3Q7XG4iXX0=
@@ -0,0 +1,18 @@
1
+ import { ChangeDetectionStrategy, Component, ViewEncapsulation, inject } from '@angular/core';
2
+ import { ButtonDirective } from '../../directives';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "../../directives/button/button.directive";
5
+ export class ButtonComponent {
6
+ constructor() {
7
+ this.button = inject(ButtonDirective);
8
+ }
9
+ }
10
+ ButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
11
+ ButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: ButtonComponent, isStandalone: true, selector: "[et-button]", host: { classAttribute: "et-button" }, hostDirectives: [{ directive: i1.ButtonDirective, inputs: ["disabled", "disabled", "type", "type", "pressed", "pressed"] }], ngImport: i0, template: "<span class=\"et-button-content\">\n <span class=\"et-button-text\">\n <ng-content></ng-content>\n </span>\n</span>\n", styles: [""], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: ButtonComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: '[et-button]', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, hostDirectives: [{ directive: ButtonDirective, inputs: ['disabled', 'type', 'pressed'] }], host: {
15
+ class: 'et-button',
16
+ }, template: "<span class=\"et-button-content\">\n <span class=\"et-button-text\">\n <ng-content></ng-content>\n </span>\n</span>\n" }]
17
+ }] });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vY29tcG9uZW50cy9idXR0b24vYnV0dG9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vY29tcG9uZW50cy9idXR0b24vYnV0dG9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzlGLE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7O0FBY25ELE1BQU0sT0FBTyxlQUFlO0lBWjVCO1FBYVksV0FBTSxHQUFHLE1BQU0sQ0FBQyxlQUFlLENBQUMsQ0FBQztLQUM1Qzs7NEdBRlksZUFBZTtnR0FBZixlQUFlLDJPQ2Y1Qiw0SEFLQTsyRkRVYSxlQUFlO2tCQVozQixTQUFTOytCQUNFLGFBQWEsY0FHWCxJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksa0JBQ3JCLENBQUMsRUFBRSxTQUFTLEVBQUUsZUFBZSxFQUFFLE1BQU0sRUFBRSxDQUFDLFVBQVUsRUFBRSxNQUFNLEVBQUUsU0FBUyxDQUFDLEVBQUUsQ0FBQyxRQUNuRjt3QkFDSixLQUFLLEVBQUUsV0FBVztxQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBCdXR0b25EaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnW2V0LWJ1dHRvbl0nLFxuICB0ZW1wbGF0ZVVybDogJy4vYnV0dG9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYnV0dG9uLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0RGlyZWN0aXZlczogW3sgZGlyZWN0aXZlOiBCdXR0b25EaXJlY3RpdmUsIGlucHV0czogWydkaXNhYmxlZCcsICd0eXBlJywgJ3ByZXNzZWQnXSB9XSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtYnV0dG9uJyxcbiAgfSxcbn0pXG5leHBvcnQgY2xhc3MgQnV0dG9uQ29tcG9uZW50IHtcbiAgcHJvdGVjdGVkIGJ1dHRvbiA9IGluamVjdChCdXR0b25EaXJlY3RpdmUpO1xufVxuIiwiPHNwYW4gY2xhc3M9XCJldC1idXR0b24tY29udGVudFwiPlxuICA8c3BhbiBjbGFzcz1cImV0LWJ1dHRvbi10ZXh0XCI+XG4gICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICA8L3NwYW4+XG48L3NwYW4+XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './button.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vY29tcG9uZW50cy9idXR0b24vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9idXR0b24uY29tcG9uZW50JztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvYnV0dG9uL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,3 @@
1
+ export * from './button/public-api';
2
+ export * from './query-button/public-api';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vY29tcG9uZW50cy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUM7QUFDcEMsY0FBYywyQkFBMkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vYnV0dG9uL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9xdWVyeS1idXR0b24vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './query-button.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vY29tcG9uZW50cy9xdWVyeS1idXR0b24vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9xdWVyeS1idXR0b24uY29tcG9uZW50JztcbiJdfQ==
@@ -0,0 +1,25 @@
1
+ import { AsyncPipe, NgIf } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, ViewEncapsulation, inject } from '@angular/core';
3
+ import { LetDirective } from '@ethlete/core';
4
+ import { QueryDirective } from '@ethlete/query';
5
+ import { ButtonDirective, QueryButtonDirective } from '../../directives';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "../../directives/query-button/query-button.directive";
8
+ import * as i2 from "../../directives/button/button.directive";
9
+ export class QueryButtonComponent {
10
+ constructor() {
11
+ this.queryButton = inject(QueryButtonDirective);
12
+ }
13
+ }
14
+ QueryButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: QueryButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
15
+ QueryButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: QueryButtonComponent, isStandalone: true, selector: "[et-query-button]", host: { classAttribute: "et-query-button" }, hostDirectives: [{ directive: i1.QueryButtonDirective, inputs: ["query", "query"] }, { directive: i2.ButtonDirective, inputs: ["disabled", "disabled", "type", "type", "pressed", "pressed"] }], ngImport: i0, template: "<ng-container *etLet=\"queryButton.showSuccess$ | async as showSuccess\">\n <ng-container *etLet=\"queryButton.showFailure$ | async as showFailure\">\n <span *etQuery=\"queryButton.query$ | async; loading as loading\" class=\"et-button-content et-query-button-content\">\n <span\n [attr.aria-hidden]=\"loading || showSuccess || showFailure ? 'true' : undefined\"\n class=\"et-button-text et-query-button-text et-query-button-text--default\"\n >\n <ng-content></ng-content>\n </span>\n\n <span *ngIf=\"loading\" class=\"et-query-button-loading\"> </span>\n <span *ngIf=\"loading\" class=\"et-button-text et-query-button-text et-query-button-text--loading\">Loading</span>\n\n <span *ngIf=\"showSuccess\" class=\"et-button-text et-query-button-text et-query-button-text--success\">Success</span>\n <span *ngIf=\"showFailure\" class=\"et-button-text et-query-button-text et-query-button-text--failure\">Failure</span>\n </span>\n </ng-container>\n</ng-container>\n", styles: [".et-query-button .et-button-content{display:grid}.et-query-button .et-query-button-text,.et-query-button .et-query-button-loading{grid-area:1/1/2/2}.et-query-button.et-query-button--loading .et-query-button-text--default,.et-query-button.et-query-button--success .et-query-button-text--default,.et-query-button.et-query-button--failure .et-query-button-text--default{opacity:0;-webkit-user-select:none;user-select:none}\n"], dependencies: [{ kind: "directive", type: QueryDirective, selector: "[etQuery]", inputs: ["etQuery", "etQueryCache"] }, { kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: LetDirective, selector: "[etLet]", inputs: ["etLet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: QueryButtonComponent, decorators: [{
17
+ type: Component,
18
+ args: [{ selector: '[et-query-button]', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, hostDirectives: [
19
+ { directive: QueryButtonDirective, inputs: ['query'] },
20
+ { directive: ButtonDirective, inputs: ['disabled', 'type', 'pressed'] },
21
+ ], imports: [QueryDirective, AsyncPipe, NgIf, LetDirective], host: {
22
+ class: 'et-query-button',
23
+ }, template: "<ng-container *etLet=\"queryButton.showSuccess$ | async as showSuccess\">\n <ng-container *etLet=\"queryButton.showFailure$ | async as showFailure\">\n <span *etQuery=\"queryButton.query$ | async; loading as loading\" class=\"et-button-content et-query-button-content\">\n <span\n [attr.aria-hidden]=\"loading || showSuccess || showFailure ? 'true' : undefined\"\n class=\"et-button-text et-query-button-text et-query-button-text--default\"\n >\n <ng-content></ng-content>\n </span>\n\n <span *ngIf=\"loading\" class=\"et-query-button-loading\"> </span>\n <span *ngIf=\"loading\" class=\"et-button-text et-query-button-text et-query-button-text--loading\">Loading</span>\n\n <span *ngIf=\"showSuccess\" class=\"et-button-text et-query-button-text et-query-button-text--success\">Success</span>\n <span *ngIf=\"showFailure\" class=\"et-button-text et-query-button-text et-query-button-text--failure\">Failure</span>\n </span>\n </ng-container>\n</ng-container>\n", styles: [".et-query-button .et-button-content{display:grid}.et-query-button .et-query-button-text,.et-query-button .et-query-button-loading{grid-area:1/1/2/2}.et-query-button.et-query-button--loading .et-query-button-text--default,.et-query-button.et-query-button--success .et-query-button-text--default,.et-query-button.et-query-button--failure .et-query-button-text--default{opacity:0;-webkit-user-select:none;user-select:none}\n"] }]
24
+ }] });
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVlcnktYnV0dG9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vY29tcG9uZW50cy9xdWVyeS1idXR0b24vcXVlcnktYnV0dG9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9idXR0b24vY29tcG9uZW50cy9xdWVyeS1idXR0b24vcXVlcnktYnV0dG9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsSUFBSSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDbEQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM3QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDaEQsT0FBTyxFQUFFLGVBQWUsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBa0J6RSxNQUFNLE9BQU8sb0JBQW9CO0lBaEJqQztRQWlCWSxnQkFBVyxHQUFHLE1BQU0sQ0FBQyxvQkFBb0IsQ0FBQyxDQUFDO0tBQ3REOztpSEFGWSxvQkFBb0I7cUdBQXBCLG9CQUFvQiwyVEN0QmpDLG1nQ0FrQkEsK2RERFksY0FBYyxzRkFBRSxTQUFTLDhDQUFFLElBQUksNkZBQUUsWUFBWTsyRkFLNUMsb0JBQW9CO2tCQWhCaEMsU0FBUzsrQkFDRSxtQkFBbUIsY0FHakIsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGlCQUNoQyxpQkFBaUIsQ0FBQyxJQUFJLGtCQUNyQjt3QkFDZCxFQUFFLFNBQVMsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLEVBQUUsQ0FBQyxPQUFPLENBQUMsRUFBRTt3QkFDdEQsRUFBRSxTQUFTLEVBQUUsZUFBZSxFQUFFLE1BQU0sRUFBRSxDQUFDLFVBQVUsRUFBRSxNQUFNLEVBQUUsU0FBUyxDQUFDLEVBQUU7cUJBQ3hFLFdBQ1EsQ0FBQyxjQUFjLEVBQUUsU0FBUyxFQUFFLElBQUksRUFBRSxZQUFZLENBQUMsUUFDbEQ7d0JBQ0osS0FBSyxFQUFFLGlCQUFpQjtxQkFDekIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUsIE5nSWYgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24sIGluamVjdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTGV0RGlyZWN0aXZlIH0gZnJvbSAnQGV0aGxldGUvY29yZSc7XG5pbXBvcnQgeyBRdWVyeURpcmVjdGl2ZSB9IGZyb20gJ0BldGhsZXRlL3F1ZXJ5JztcbmltcG9ydCB7IEJ1dHRvbkRpcmVjdGl2ZSwgUXVlcnlCdXR0b25EaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnW2V0LXF1ZXJ5LWJ1dHRvbl0nLFxuICB0ZW1wbGF0ZVVybDogJy4vcXVlcnktYnV0dG9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcXVlcnktYnV0dG9uLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0RGlyZWN0aXZlczogW1xuICAgIHsgZGlyZWN0aXZlOiBRdWVyeUJ1dHRvbkRpcmVjdGl2ZSwgaW5wdXRzOiBbJ3F1ZXJ5J10gfSxcbiAgICB7IGRpcmVjdGl2ZTogQnV0dG9uRGlyZWN0aXZlLCBpbnB1dHM6IFsnZGlzYWJsZWQnLCAndHlwZScsICdwcmVzc2VkJ10gfSxcbiAgXSxcbiAgaW1wb3J0czogW1F1ZXJ5RGlyZWN0aXZlLCBBc3luY1BpcGUsIE5nSWYsIExldERpcmVjdGl2ZV0sXG4gIGhvc3Q6IHtcbiAgICBjbGFzczogJ2V0LXF1ZXJ5LWJ1dHRvbicsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIFF1ZXJ5QnV0dG9uQ29tcG9uZW50IHtcbiAgcHJvdGVjdGVkIHF1ZXJ5QnV0dG9uID0gaW5qZWN0KFF1ZXJ5QnV0dG9uRGlyZWN0aXZlKTtcbn1cbiIsIjxuZy1jb250YWluZXIgKmV0TGV0PVwicXVlcnlCdXR0b24uc2hvd1N1Y2Nlc3MkIHwgYXN5bmMgYXMgc2hvd1N1Y2Nlc3NcIj5cbiAgPG5nLWNvbnRhaW5lciAqZXRMZXQ9XCJxdWVyeUJ1dHRvbi5zaG93RmFpbHVyZSQgfCBhc3luYyBhcyBzaG93RmFpbHVyZVwiPlxuICAgIDxzcGFuICpldFF1ZXJ5PVwicXVlcnlCdXR0b24ucXVlcnkkIHwgYXN5bmM7IGxvYWRpbmcgYXMgbG9hZGluZ1wiIGNsYXNzPVwiZXQtYnV0dG9uLWNvbnRlbnQgZXQtcXVlcnktYnV0dG9uLWNvbnRlbnRcIj5cbiAgICAgIDxzcGFuXG4gICAgICAgIFthdHRyLmFyaWEtaGlkZGVuXT1cImxvYWRpbmcgfHwgc2hvd1N1Y2Nlc3MgfHwgc2hvd0ZhaWx1cmUgPyAndHJ1ZScgOiB1bmRlZmluZWRcIlxuICAgICAgICBjbGFzcz1cImV0LWJ1dHRvbi10ZXh0IGV0LXF1ZXJ5LWJ1dHRvbi10ZXh0IGV0LXF1ZXJ5LWJ1dHRvbi10ZXh0LS1kZWZhdWx0XCJcbiAgICAgID5cbiAgICAgICAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuICAgICAgPC9zcGFuPlxuXG4gICAgICA8c3BhbiAqbmdJZj1cImxvYWRpbmdcIiBjbGFzcz1cImV0LXF1ZXJ5LWJ1dHRvbi1sb2FkaW5nXCI+IDwvc3Bhbj5cbiAgICAgIDxzcGFuICpuZ0lmPVwibG9hZGluZ1wiIGNsYXNzPVwiZXQtYnV0dG9uLXRleHQgZXQtcXVlcnktYnV0dG9uLXRleHQgZXQtcXVlcnktYnV0dG9uLXRleHQtLWxvYWRpbmdcIj5Mb2FkaW5nPC9zcGFuPlxuXG4gICAgICA8c3BhbiAqbmdJZj1cInNob3dTdWNjZXNzXCIgY2xhc3M9XCJldC1idXR0b24tdGV4dCBldC1xdWVyeS1idXR0b24tdGV4dCBldC1xdWVyeS1idXR0b24tdGV4dC0tc3VjY2Vzc1wiPlN1Y2Nlc3M8L3NwYW4+XG4gICAgICA8c3BhbiAqbmdJZj1cInNob3dGYWlsdXJlXCIgY2xhc3M9XCJldC1idXR0b24tdGV4dCBldC1xdWVyeS1idXR0b24tdGV4dCBldC1xdWVyeS1idXR0b24tdGV4dC0tZmFpbHVyZVwiPkZhaWx1cmU8L3NwYW4+XG4gICAgPC9zcGFuPlxuICA8L25nLWNvbnRhaW5lcj5cbjwvbmctY29udGFpbmVyPlxuIl19