@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,26 @@
1
+ import { CdkHeaderRow, CdkTableModule, CDK_ROW_TEMPLATE } from '@angular/cdk/table';
2
+ import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/cdk/table";
5
+ export class HeaderRowComponent extends CdkHeaderRow {
6
+ }
7
+ HeaderRowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
8
+ HeaderRowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: HeaderRowComponent, isStandalone: true, selector: "et-header-row, tr[et-header-row]", host: { attributes: { "role": "row" }, classAttribute: "et-header-row et-data-table__header-row" }, providers: [{ provide: CdkHeaderRow, useExisting: HeaderRowComponent }], exportAs: ["etHeaderRow"], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "directive", type: i1.CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowComponent, decorators: [{
10
+ type: Component,
11
+ args: [{
12
+ selector: 'et-header-row, tr[et-header-row]',
13
+ template: CDK_ROW_TEMPLATE,
14
+ host: {
15
+ class: 'et-header-row et-data-table__header-row',
16
+ role: 'row',
17
+ },
18
+ changeDetection: ChangeDetectionStrategy.Default,
19
+ encapsulation: ViewEncapsulation.None,
20
+ exportAs: 'etHeaderRow',
21
+ providers: [{ provide: CdkHeaderRow, useExisting: HeaderRowComponent }],
22
+ standalone: true,
23
+ imports: [CdkTableModule],
24
+ }]
25
+ }] });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLXJvdy5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvcGFydGlhbHMvcm93cy9oZWFkZXItcm93L2hlYWRlci1yb3cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsY0FBYyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDcEYsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBZ0J0RixNQUFNLE9BQU8sa0JBQW1CLFNBQVEsWUFBWTs7K0dBQXZDLGtCQUFrQjttR0FBbEIsa0JBQWtCLG1MQUpsQixDQUFDLEVBQUUsT0FBTyxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsa0JBQWtCLEVBQUUsQ0FBQyxvTEFFN0QsY0FBYzsyRkFFYixrQkFBa0I7a0JBZDlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGtDQUFrQztvQkFDNUMsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSx5Q0FBeUM7d0JBQ2hELElBQUksRUFBRSxLQUFLO3FCQUNaO29CQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxPQUFPO29CQUNoRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsUUFBUSxFQUFFLGFBQWE7b0JBQ3ZCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLFlBQVksRUFBRSxXQUFXLG9CQUFvQixFQUFFLENBQUM7b0JBQ3ZFLFVBQVUsRUFBRSxJQUFJO29CQUNoQixPQUFPLEVBQUUsQ0FBQyxjQUFjLENBQUM7aUJBQzFCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrSGVhZGVyUm93LCBDZGtUYWJsZU1vZHVsZSwgQ0RLX1JPV19URU1QTEFURSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay90YWJsZSc7XG5pbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1oZWFkZXItcm93LCB0cltldC1oZWFkZXItcm93XScsXG4gIHRlbXBsYXRlOiBDREtfUk9XX1RFTVBMQVRFLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1oZWFkZXItcm93IGV0LWRhdGEtdGFibGVfX2hlYWRlci1yb3cnLFxuICAgIHJvbGU6ICdyb3cnLFxuICB9LFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LkRlZmF1bHQsXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmUsXG4gIGV4cG9ydEFzOiAnZXRIZWFkZXJSb3cnLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka0hlYWRlclJvdywgdXNlRXhpc3Rpbmc6IEhlYWRlclJvd0NvbXBvbmVudCB9XSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW0Nka1RhYmxlTW9kdWxlXSxcbn0pXG5leHBvcnQgY2xhc3MgSGVhZGVyUm93Q29tcG9uZW50IGV4dGVuZHMgQ2RrSGVhZGVyUm93IHt9XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './header-row.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL2hlYWRlci1yb3cvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9oZWFkZXItcm93LmNvbXBvbmVudCc7XG4iXX0=
@@ -0,0 +1,26 @@
1
+ import { CdkHeaderRowDef, CDK_TABLE } from '@angular/cdk/table';
2
+ import { Directive, Inject, IterableDiffers, Optional, TemplateRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export class HeaderRowDefDirective extends CdkHeaderRowDef {
5
+ constructor(template, _differs, _table) {
6
+ super(template, _differs, _table);
7
+ }
8
+ }
9
+ HeaderRowDefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowDefDirective, deps: [{ token: i0.TemplateRef }, { token: i0.IterableDiffers }, { token: CDK_TABLE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
10
+ HeaderRowDefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: HeaderRowDefDirective, isStandalone: true, selector: "[etHeaderRowDef]", inputs: { columns: ["etHeaderRowDef", "columns"], sticky: ["etHeaderRowDefSticky", "sticky"] }, providers: [{ provide: CdkHeaderRowDef, useExisting: HeaderRowDefDirective }], usesInheritance: true, ngImport: i0 });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: HeaderRowDefDirective, decorators: [{
12
+ type: Directive,
13
+ args: [{
14
+ selector: '[etHeaderRowDef]',
15
+ providers: [{ provide: CdkHeaderRowDef, useExisting: HeaderRowDefDirective }],
16
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
17
+ inputs: ['columns: etHeaderRowDef', 'sticky: etHeaderRowDefSticky'],
18
+ standalone: true,
19
+ }]
20
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.IterableDiffers }, { type: undefined, decorators: [{
21
+ type: Inject,
22
+ args: [CDK_TABLE]
23
+ }, {
24
+ type: Optional
25
+ }] }]; } });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlL3BhcnRpYWxzL3Jvd3MvaGVhZGVyLXJvdy1kZWYvaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxlQUFlLEVBQUUsU0FBUyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDaEUsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsZUFBZSxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBUzFGLE1BQU0sT0FBTyxxQkFBc0IsU0FBUSxlQUFlO0lBQ3hELFlBQ0UsUUFBOEIsRUFDOUIsUUFBeUIsRUFDTSxNQUFnQjtRQUUvQyxLQUFLLENBQUMsUUFBUSxFQUFFLFFBQVEsRUFBRSxNQUFNLENBQUMsQ0FBQztJQUNwQyxDQUFDOztrSEFQVSxxQkFBcUIsNEVBSXRCLFNBQVM7c0dBSlIscUJBQXFCLCtKQUxyQixDQUFDLEVBQUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxXQUFXLEVBQUUscUJBQXFCLEVBQUUsQ0FBQzsyRkFLbEUscUJBQXFCO2tCQVBqQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxrQkFBa0I7b0JBQzVCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLGVBQWUsRUFBRSxXQUFXLHVCQUF1QixFQUFFLENBQUM7b0JBQzdFLHVFQUF1RTtvQkFDdkUsTUFBTSxFQUFFLENBQUMseUJBQXlCLEVBQUUsOEJBQThCLENBQUM7b0JBQ25FLFVBQVUsRUFBRSxJQUFJO2lCQUNqQjs7MEJBS0ksTUFBTTsyQkFBQyxTQUFTOzswQkFBRyxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrSGVhZGVyUm93RGVmLCBDREtfVEFCTEUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBJbmplY3QsIEl0ZXJhYmxlRGlmZmVycywgT3B0aW9uYWwsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tldEhlYWRlclJvd0RlZl0nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka0hlYWRlclJvd0RlZiwgdXNlRXhpc3Rpbmc6IEhlYWRlclJvd0RlZkRpcmVjdGl2ZSB9XSxcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1pbnB1dHMtbWV0YWRhdGEtcHJvcGVydHlcbiAgaW5wdXRzOiBbJ2NvbHVtbnM6IGV0SGVhZGVyUm93RGVmJywgJ3N0aWNreTogZXRIZWFkZXJSb3dEZWZTdGlja3knXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgSGVhZGVyUm93RGVmRGlyZWN0aXZlIGV4dGVuZHMgQ2RrSGVhZGVyUm93RGVmIHtcbiAgY29uc3RydWN0b3IoXG4gICAgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPHVua25vd24+LFxuICAgIF9kaWZmZXJzOiBJdGVyYWJsZURpZmZlcnMsXG4gICAgQEluamVjdChDREtfVEFCTEUpIEBPcHRpb25hbCgpIF90YWJsZT86IHVua25vd24sXG4gICkge1xuICAgIHN1cGVyKHRlbXBsYXRlLCBfZGlmZmVycywgX3RhYmxlKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './header-row-def.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL2hlYWRlci1yb3ctZGVmL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw0QkFBNEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vaGVhZGVyLXJvdy1kZWYuZGlyZWN0aXZlJztcbiJdfQ==
@@ -0,0 +1,20 @@
1
+ import { CdkNoDataRow } from '@angular/cdk/table';
2
+ import { Directive } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export class NoDataRowDirective extends CdkNoDataRow {
5
+ constructor() {
6
+ super(...arguments);
7
+ this._contentClassName = 'et-no-data-row';
8
+ }
9
+ }
10
+ NoDataRowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NoDataRowDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
11
+ NoDataRowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: NoDataRowDirective, isStandalone: true, selector: "ng-template[etNoDataRow]", providers: [{ provide: CdkNoDataRow, useExisting: NoDataRowDirective }], usesInheritance: true, ngImport: i0 });
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: NoDataRowDirective, decorators: [{
13
+ type: Directive,
14
+ args: [{
15
+ selector: 'ng-template[etNoDataRow]',
16
+ providers: [{ provide: CdkNoDataRow, useExisting: NoDataRowDirective }],
17
+ standalone: true,
18
+ }]
19
+ }] });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm8tZGF0YS1yb3cuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlL3BhcnRpYWxzL3Jvd3Mvbm8tZGF0YS1yb3cvbm8tZGF0YS1yb3cuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUNsRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU8xQyxNQUFNLE9BQU8sa0JBQW1CLFNBQVEsWUFBWTtJQUxwRDs7UUFNVyxzQkFBaUIsR0FBRyxnQkFBZ0IsQ0FBQztLQUMvQzs7K0dBRlksa0JBQWtCO21HQUFsQixrQkFBa0IsdUVBSGxCLENBQUMsRUFBRSxPQUFPLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxrQkFBa0IsRUFBRSxDQUFDOzJGQUc1RCxrQkFBa0I7a0JBTDlCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDBCQUEwQjtvQkFDcEMsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsWUFBWSxFQUFFLFdBQVcsb0JBQW9CLEVBQUUsQ0FBQztvQkFDdkUsVUFBVSxFQUFFLElBQUk7aUJBQ2pCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrTm9EYXRhUm93IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICduZy10ZW1wbGF0ZVtldE5vRGF0YVJvd10nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka05vRGF0YVJvdywgdXNlRXhpc3Rpbmc6IE5vRGF0YVJvd0RpcmVjdGl2ZSB9XSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgTm9EYXRhUm93RGlyZWN0aXZlIGV4dGVuZHMgQ2RrTm9EYXRhUm93IHtcbiAgb3ZlcnJpZGUgX2NvbnRlbnRDbGFzc05hbWUgPSAnZXQtbm8tZGF0YS1yb3cnO1xufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './no-data-row.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL25vLWRhdGEtcm93L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbm8tZGF0YS1yb3cuZGlyZWN0aXZlJztcbiJdfQ==
@@ -0,0 +1,9 @@
1
+ export * from './footer-row/public-api';
2
+ export * from './footer-row-def/public-api';
3
+ export * from './header-row/public-api';
4
+ export * from './header-row-def/public-api';
5
+ export * from './no-data-row/public-api';
6
+ export * from './recycle-rows/public-api';
7
+ export * from './row/public-api';
8
+ export * from './row-def/public-api';
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLDZCQUE2QixDQUFDO0FBQzVDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMkJBQTJCLENBQUM7QUFDMUMsY0FBYyxrQkFBa0IsQ0FBQztBQUNqQyxjQUFjLHNCQUFzQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mb290ZXItcm93L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9mb290ZXItcm93LWRlZi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaGVhZGVyLXJvdy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaGVhZGVyLXJvdy1kZWYvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL25vLWRhdGEtcm93L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yZWN5Y2xlLXJvd3MvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3Jvdy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcm93LWRlZi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './recycle-rows.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3JlY3ljbGUtcm93cy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3JlY3ljbGUtcm93cy5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,16 @@
1
+ import { _RecycleViewRepeaterStrategy, _VIEW_REPEATER_STRATEGY } from '@angular/cdk/collections';
2
+ import { Directive } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export class RecycleRowsDirective {
5
+ }
6
+ RecycleRowsDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RecycleRowsDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
7
+ RecycleRowsDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RecycleRowsDirective, isStandalone: true, selector: "et-table[recycleRows], table[et-table][recycleRows]", providers: [{ provide: _VIEW_REPEATER_STRATEGY, useClass: _RecycleViewRepeaterStrategy }], ngImport: i0 });
8
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RecycleRowsDirective, decorators: [{
9
+ type: Directive,
10
+ args: [{
11
+ selector: 'et-table[recycleRows], table[et-table][recycleRows]',
12
+ providers: [{ provide: _VIEW_REPEATER_STRATEGY, useClass: _RecycleViewRepeaterStrategy }],
13
+ standalone: true,
14
+ }]
15
+ }] });
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjeWNsZS1yb3dzLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3JlY3ljbGUtcm93cy9yZWN5Y2xlLXJvd3MuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQ2pHLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBTzFDLE1BQU0sT0FBTyxvQkFBb0I7O2lIQUFwQixvQkFBb0I7cUdBQXBCLG9CQUFvQixrR0FIcEIsQ0FBQyxFQUFFLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxRQUFRLEVBQUUsNEJBQTRCLEVBQUUsQ0FBQzsyRkFHOUUsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxxREFBcUQ7b0JBQy9ELFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFFBQVEsRUFBRSw0QkFBNEIsRUFBRSxDQUFDO29CQUN6RixVQUFVLEVBQUUsSUFBSTtpQkFDakIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBfUmVjeWNsZVZpZXdSZXBlYXRlclN0cmF0ZWd5LCBfVklFV19SRVBFQVRFUl9TVFJBVEVHWSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2xsZWN0aW9ucyc7XG5pbXBvcnQgeyBEaXJlY3RpdmUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnZXQtdGFibGVbcmVjeWNsZVJvd3NdLCB0YWJsZVtldC10YWJsZV1bcmVjeWNsZVJvd3NdJyxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBfVklFV19SRVBFQVRFUl9TVFJBVEVHWSwgdXNlQ2xhc3M6IF9SZWN5Y2xlVmlld1JlcGVhdGVyU3RyYXRlZ3kgfV0sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG59KVxuZXhwb3J0IGNsYXNzIFJlY3ljbGVSb3dzRGlyZWN0aXZlIHt9XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './row.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3Jvdy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsaUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3Jvdy5jb21wb25lbnQnO1xuIl19
@@ -0,0 +1,26 @@
1
+ import { CdkRow, CdkTableModule, CDK_ROW_TEMPLATE } from '@angular/cdk/table';
2
+ import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/cdk/table";
5
+ export class RowComponent extends CdkRow {
6
+ }
7
+ RowComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
8
+ RowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RowComponent, isStandalone: true, selector: "et-row, [et-row], [et-row]", host: { attributes: { "role": "row" }, classAttribute: "et-row et-data-table__row" }, providers: [{ provide: CdkRow, useExisting: RowComponent }], exportAs: ["etRow"], usesInheritance: true, ngImport: i0, template: "<ng-container cdkCellOutlet></ng-container>", isInline: true, dependencies: [{ kind: "ngmodule", type: CdkTableModule }, { kind: "directive", type: i1.CdkCellOutlet, selector: "[cdkCellOutlet]" }], changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowComponent, decorators: [{
10
+ type: Component,
11
+ args: [{
12
+ selector: 'et-row, [et-row], [et-row]',
13
+ template: CDK_ROW_TEMPLATE,
14
+ host: {
15
+ class: 'et-row et-data-table__row',
16
+ role: 'row',
17
+ },
18
+ changeDetection: ChangeDetectionStrategy.Default,
19
+ encapsulation: ViewEncapsulation.None,
20
+ exportAs: 'etRow',
21
+ providers: [{ provide: CdkRow, useExisting: RowComponent }],
22
+ standalone: true,
23
+ imports: [CdkTableModule],
24
+ }]
25
+ }] });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm93LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3Jvdy9yb3cuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDOUUsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBZ0J0RixNQUFNLE9BQU8sWUFBYSxTQUFRLE1BQU07O3lHQUEzQixZQUFZOzZGQUFaLFlBQVksK0pBSlosQ0FBQyxFQUFFLE9BQU8sRUFBRSxNQUFNLEVBQUUsV0FBVyxFQUFFLFlBQVksRUFBRSxDQUFDLDhLQUVqRCxjQUFjOzJGQUViLFlBQVk7a0JBZHhCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLDRCQUE0QjtvQkFDdEMsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsSUFBSSxFQUFFO3dCQUNKLEtBQUssRUFBRSwyQkFBMkI7d0JBQ2xDLElBQUksRUFBRSxLQUFLO3FCQUNaO29CQUNELGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxPQUFPO29CQUNoRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsUUFBUSxFQUFFLE9BQU87b0JBQ2pCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLE1BQU0sRUFBRSxXQUFXLGNBQWMsRUFBRSxDQUFDO29CQUMzRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsT0FBTyxFQUFFLENBQUMsY0FBYyxDQUFDO2lCQUMxQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENka1JvdywgQ2RrVGFibGVNb2R1bGUsIENES19ST1dfVEVNUExBVEUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtcm93LCBbZXQtcm93XSwgW2V0LXJvd10nLFxuICB0ZW1wbGF0ZTogQ0RLX1JPV19URU1QTEFURSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtcm93IGV0LWRhdGEtdGFibGVfX3JvdycsXG4gICAgcm9sZTogJ3JvdycsXG4gIH0sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuRGVmYXVsdCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgZXhwb3J0QXM6ICdldFJvdycsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogQ2RrUm93LCB1c2VFeGlzdGluZzogUm93Q29tcG9uZW50IH1dLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbQ2RrVGFibGVNb2R1bGVdLFxufSlcbmV4cG9ydCBjbGFzcyBSb3dDb21wb25lbnQgZXh0ZW5kcyBDZGtSb3cge31cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './row-def.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy9yb3dzL3Jvdy1kZWYvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yb3ctZGVmLmRpcmVjdGl2ZSc7XG4iXX0=
@@ -0,0 +1,26 @@
1
+ import { CdkRowDef, CDK_TABLE } from '@angular/cdk/table';
2
+ import { Directive, Inject, IterableDiffers, Optional, TemplateRef } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export class RowDefDirective extends CdkRowDef {
5
+ constructor(template, _differs, _table) {
6
+ super(template, _differs, _table);
7
+ }
8
+ }
9
+ RowDefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowDefDirective, deps: [{ token: i0.TemplateRef }, { token: i0.IterableDiffers }, { token: CDK_TABLE, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
10
+ RowDefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RowDefDirective, isStandalone: true, selector: "[etRowDef]", inputs: { columns: ["etRowDefColumns", "columns"], when: ["etRowDefWhen", "when"] }, providers: [{ provide: CdkRowDef, useExisting: RowDefDirective }], usesInheritance: true, ngImport: i0 });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RowDefDirective, decorators: [{
12
+ type: Directive,
13
+ args: [{
14
+ selector: '[etRowDef]',
15
+ providers: [{ provide: CdkRowDef, useExisting: RowDefDirective }],
16
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
17
+ inputs: ['columns: etRowDefColumns', 'when: etRowDefWhen'],
18
+ standalone: true,
19
+ }]
20
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef }, { type: i0.IterableDiffers }, { type: undefined, decorators: [{
21
+ type: Inject,
22
+ args: [CDK_TABLE]
23
+ }, {
24
+ type: Optional
25
+ }] }]; } });
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm93LWRlZi5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvcGFydGlhbHMvcm93cy9yb3ctZGVmL3Jvdy1kZWYuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsU0FBUyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFDMUQsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsZUFBZSxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBUzFGLE1BQU0sT0FBTyxlQUFtQixTQUFRLFNBQVk7SUFDbEQsWUFDRSxRQUE4QixFQUM5QixRQUF5QixFQUNNLE1BQWdCO1FBRS9DLEtBQUssQ0FBQyxRQUFRLEVBQUUsUUFBUSxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQ3BDLENBQUM7OzRHQVBVLGVBQWUsNEVBSWhCLFNBQVM7Z0dBSlIsZUFBZSw4SUFMZixDQUFDLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLEVBQUUsZUFBZSxFQUFFLENBQUM7MkZBS3RELGVBQWU7a0JBUDNCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLFlBQVk7b0JBQ3RCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLFNBQVMsRUFBRSxXQUFXLGlCQUFpQixFQUFFLENBQUM7b0JBQ2pFLHVFQUF1RTtvQkFDdkUsTUFBTSxFQUFFLENBQUMsMEJBQTBCLEVBQUUsb0JBQW9CLENBQUM7b0JBQzFELFVBQVUsRUFBRSxJQUFJO2lCQUNqQjs7MEJBS0ksTUFBTTsyQkFBQyxTQUFTOzswQkFBRyxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2RrUm93RGVmLCBDREtfVEFCTEUgfSBmcm9tICdAYW5ndWxhci9jZGsvdGFibGUnO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBJbmplY3QsIEl0ZXJhYmxlRGlmZmVycywgT3B0aW9uYWwsIFRlbXBsYXRlUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogJ1tldFJvd0RlZl0nLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IENka1Jvd0RlZiwgdXNlRXhpc3Rpbmc6IFJvd0RlZkRpcmVjdGl2ZSB9XSxcbiAgLy8gZXNsaW50LWRpc2FibGUtbmV4dC1saW5lIEBhbmd1bGFyLWVzbGludC9uby1pbnB1dHMtbWV0YWRhdGEtcHJvcGVydHlcbiAgaW5wdXRzOiBbJ2NvbHVtbnM6IGV0Um93RGVmQ29sdW1ucycsICd3aGVuOiBldFJvd0RlZldoZW4nXSxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgUm93RGVmRGlyZWN0aXZlPFQ+IGV4dGVuZHMgQ2RrUm93RGVmPFQ+IHtcbiAgY29uc3RydWN0b3IoXG4gICAgdGVtcGxhdGU6IFRlbXBsYXRlUmVmPHVua25vd24+LFxuICAgIF9kaWZmZXJzOiBJdGVyYWJsZURpZmZlcnMsXG4gICAgQEluamVjdChDREtfVEFCTEUpIEBPcHRpb25hbCgpIF90YWJsZT86IHVua25vd24sXG4gICkge1xuICAgIHN1cGVyKHRlbXBsYXRlLCBfZGlmZmVycywgX3RhYmxlKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './table-busy.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy90YWJsZS1idXN5L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vdGFibGUtYnVzeS5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,18 @@
1
+ import { Directive, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class TableBusyDirective {
4
+ constructor(templateRef) {
5
+ this.templateRef = templateRef;
6
+ this._contentClassName = 'et-table-busy';
7
+ }
8
+ }
9
+ TableBusyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyDirective, deps: [{ token: i0.TemplateRef }], target: i0.ɵɵFactoryTarget.Directive });
10
+ TableBusyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: TableBusyDirective, isStandalone: true, selector: "ng-template[etTableBusy]", ngImport: i0 });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyDirective, decorators: [{
12
+ type: Directive,
13
+ args: [{
14
+ selector: 'ng-template[etTableBusy]',
15
+ standalone: true,
16
+ }]
17
+ }], ctorParameters: function () { return [{ type: i0.TemplateRef }]; } });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYnVzeS5kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvcGFydGlhbHMvdGFibGUtYnVzeS90YWJsZS1idXN5LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFdBQVcsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFNdkQsTUFBTSxPQUFPLGtCQUFrQjtJQUc3QixZQUFtQixXQUFpQztRQUFqQyxnQkFBVyxHQUFYLFdBQVcsQ0FBc0I7UUFGcEQsc0JBQWlCLEdBQUcsZUFBZSxDQUFDO0lBRW1CLENBQUM7OytHQUg3QyxrQkFBa0I7bUdBQWxCLGtCQUFrQjsyRkFBbEIsa0JBQWtCO2tCQUo5QixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSwwQkFBMEI7b0JBQ3BDLFVBQVUsRUFBRSxJQUFJO2lCQUNqQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgVGVtcGxhdGVSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnbmctdGVtcGxhdGVbZXRUYWJsZUJ1c3ldJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbn0pXG5leHBvcnQgY2xhc3MgVGFibGVCdXN5RGlyZWN0aXZlIHtcbiAgX2NvbnRlbnRDbGFzc05hbWUgPSAnZXQtdGFibGUtYnVzeSc7XG5cbiAgY29uc3RydWN0b3IocHVibGljIHRlbXBsYXRlUmVmOiBUZW1wbGF0ZVJlZjx1bmtub3duPikge31cbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './table-busy-outlet.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wYXJ0aWFscy90YWJsZS1idXN5LW91dGxldC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsK0JBQStCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYmxlLWJ1c3ktb3V0bGV0LmRpcmVjdGl2ZSc7XG4iXX0=
@@ -0,0 +1,15 @@
1
+ import { Directive, ElementRef, ViewContainerRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export class TableBusyOutletDirective {
4
+ constructor(viewContainer, elementRef) {
5
+ this.viewContainer = viewContainer;
6
+ this.elementRef = elementRef;
7
+ }
8
+ }
9
+ TableBusyOutletDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyOutletDirective, deps: [{ token: i0.ViewContainerRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
10
+ TableBusyOutletDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: TableBusyOutletDirective, isStandalone: true, selector: "[tableBusyOutlet]", ngImport: i0 });
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: TableBusyOutletDirective, decorators: [{
12
+ type: Directive,
13
+ args: [{ selector: '[tableBusyOutlet]', standalone: true }]
14
+ }], ctorParameters: function () { return [{ type: i0.ViewContainerRef }, { type: i0.ElementRef }]; } });
15
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtYnVzeS1vdXRsZXQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYmxlL3BhcnRpYWxzL3RhYmxlLWJ1c3ktb3V0bGV0L3RhYmxlLWJ1c3ktb3V0bGV0LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFHeEUsTUFBTSxPQUFPLHdCQUF3QjtJQUNuQyxZQUFtQixhQUErQixFQUFTLFVBQXNCO1FBQTlELGtCQUFhLEdBQWIsYUFBYSxDQUFrQjtRQUFTLGVBQVUsR0FBVixVQUFVLENBQVk7SUFBRyxDQUFDOztxSEFEMUUsd0JBQXdCO3lHQUF4Qix3QkFBd0I7MkZBQXhCLHdCQUF3QjtrQkFEcEMsU0FBUzttQkFBQyxFQUFFLFFBQVEsRUFBRSxtQkFBbUIsRUFBRSxVQUFVLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUm93T3V0bGV0IH0gZnJvbSAnQGFuZ3VsYXIvY2RrL3RhYmxlJztcbmltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgVmlld0NvbnRhaW5lclJlZiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHsgc2VsZWN0b3I6ICdbdGFibGVCdXN5T3V0bGV0XScsIHN0YW5kYWxvbmU6IHRydWUgfSlcbmV4cG9ydCBjbGFzcyBUYWJsZUJ1c3lPdXRsZXREaXJlY3RpdmUgaW1wbGVtZW50cyBSb3dPdXRsZXQge1xuICBjb25zdHJ1Y3RvcihwdWJsaWMgdmlld0NvbnRhaW5lcjogVmlld0NvbnRhaW5lclJlZiwgcHVibGljIGVsZW1lbnRSZWY6IEVsZW1lbnRSZWYpIHt9XG59XG4iXX0=
@@ -0,0 +1,7 @@
1
+ export * from './components/public-api';
2
+ export * from './constants/public-api';
3
+ export * from './partials/public-api';
4
+ export * from './table.imports';
5
+ export * from './types/public-api';
6
+ export * from './utils/public-api';
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9jb25zdGFudHMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3BhcnRpYWxzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi90YWJsZS5pbXBvcnRzJztcbmV4cG9ydCAqIGZyb20gJy4vdHlwZXMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3V0aWxzL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,23 @@
1
+ import { TableComponent } from './components';
2
+ import { CellDefDirective, CellDirective, ColumnDefDirective, FooterCellDefDirective, FooterCellDirective, FooterRowComponent, FooterRowDefDirective, HeaderCellDefDirective, HeaderCellDirective, HeaderRowComponent, HeaderRowDefDirective, NoDataRowDirective, RecycleRowsDirective, RowComponent, RowDefDirective, TableBusyDirective, TextColumnComponent, } from './partials';
3
+ export const TableImports = [
4
+ TableComponent,
5
+ RecycleRowsDirective,
6
+ HeaderCellDefDirective,
7
+ HeaderRowDefDirective,
8
+ ColumnDefDirective,
9
+ CellDefDirective,
10
+ RowDefDirective,
11
+ FooterCellDefDirective,
12
+ FooterRowDefDirective,
13
+ HeaderCellDirective,
14
+ CellDirective,
15
+ FooterCellDirective,
16
+ HeaderRowComponent,
17
+ RowComponent,
18
+ FooterRowComponent,
19
+ NoDataRowDirective,
20
+ TextColumnComponent,
21
+ TableBusyDirective,
22
+ ];
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUuaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS90YWJsZS5pbXBvcnRzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDOUMsT0FBTyxFQUNMLGdCQUFnQixFQUNoQixhQUFhLEVBQ2Isa0JBQWtCLEVBQ2xCLHNCQUFzQixFQUN0QixtQkFBbUIsRUFDbkIsa0JBQWtCLEVBQ2xCLHFCQUFxQixFQUNyQixzQkFBc0IsRUFDdEIsbUJBQW1CLEVBQ25CLGtCQUFrQixFQUNsQixxQkFBcUIsRUFDckIsa0JBQWtCLEVBQ2xCLG9CQUFvQixFQUNwQixZQUFZLEVBQ1osZUFBZSxFQUNmLGtCQUFrQixFQUNsQixtQkFBbUIsR0FDcEIsTUFBTSxZQUFZLENBQUM7QUFFcEIsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHO0lBQzFCLGNBQWM7SUFDZCxvQkFBb0I7SUFDcEIsc0JBQXNCO0lBQ3RCLHFCQUFxQjtJQUNyQixrQkFBa0I7SUFDbEIsZ0JBQWdCO0lBQ2hCLGVBQWU7SUFDZixzQkFBc0I7SUFDdEIscUJBQXFCO0lBQ3JCLG1CQUFtQjtJQUNuQixhQUFhO0lBQ2IsbUJBQW1CO0lBQ25CLGtCQUFrQjtJQUNsQixZQUFZO0lBQ1osa0JBQWtCO0lBQ2xCLGtCQUFrQjtJQUNsQixtQkFBbUI7SUFDbkIsa0JBQWtCO0NBQ1YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFRhYmxlQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzJztcbmltcG9ydCB7XG4gIENlbGxEZWZEaXJlY3RpdmUsXG4gIENlbGxEaXJlY3RpdmUsXG4gIENvbHVtbkRlZkRpcmVjdGl2ZSxcbiAgRm9vdGVyQ2VsbERlZkRpcmVjdGl2ZSxcbiAgRm9vdGVyQ2VsbERpcmVjdGl2ZSxcbiAgRm9vdGVyUm93Q29tcG9uZW50LFxuICBGb290ZXJSb3dEZWZEaXJlY3RpdmUsXG4gIEhlYWRlckNlbGxEZWZEaXJlY3RpdmUsXG4gIEhlYWRlckNlbGxEaXJlY3RpdmUsXG4gIEhlYWRlclJvd0NvbXBvbmVudCxcbiAgSGVhZGVyUm93RGVmRGlyZWN0aXZlLFxuICBOb0RhdGFSb3dEaXJlY3RpdmUsXG4gIFJlY3ljbGVSb3dzRGlyZWN0aXZlLFxuICBSb3dDb21wb25lbnQsXG4gIFJvd0RlZkRpcmVjdGl2ZSxcbiAgVGFibGVCdXN5RGlyZWN0aXZlLFxuICBUZXh0Q29sdW1uQ29tcG9uZW50LFxufSBmcm9tICcuL3BhcnRpYWxzJztcblxuZXhwb3J0IGNvbnN0IFRhYmxlSW1wb3J0cyA9IFtcbiAgVGFibGVDb21wb25lbnQsXG4gIFJlY3ljbGVSb3dzRGlyZWN0aXZlLFxuICBIZWFkZXJDZWxsRGVmRGlyZWN0aXZlLFxuICBIZWFkZXJSb3dEZWZEaXJlY3RpdmUsXG4gIENvbHVtbkRlZkRpcmVjdGl2ZSxcbiAgQ2VsbERlZkRpcmVjdGl2ZSxcbiAgUm93RGVmRGlyZWN0aXZlLFxuICBGb290ZXJDZWxsRGVmRGlyZWN0aXZlLFxuICBGb290ZXJSb3dEZWZEaXJlY3RpdmUsXG4gIEhlYWRlckNlbGxEaXJlY3RpdmUsXG4gIENlbGxEaXJlY3RpdmUsXG4gIEZvb3RlckNlbGxEaXJlY3RpdmUsXG4gIEhlYWRlclJvd0NvbXBvbmVudCxcbiAgUm93Q29tcG9uZW50LFxuICBGb290ZXJSb3dDb21wb25lbnQsXG4gIE5vRGF0YVJvd0RpcmVjdGl2ZSxcbiAgVGV4dENvbHVtbkNvbXBvbmVudCxcbiAgVGFibGVCdXN5RGlyZWN0aXZlLFxuXSBhcyBjb25zdDtcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvdHlwZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,2 @@
1
+ export * from './table-data-source.types';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS90eXBlcy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYmxlLWRhdGEtc291cmNlLnR5cGVzJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtZGF0YS1zb3VyY2UudHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvdHlwZXMvdGFibGUtZGF0YS1zb3VyY2UudHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9ic2VydmFibGUsIFN1YmplY3QgfSBmcm9tICdyeGpzJztcblxuZXhwb3J0IGludGVyZmFjZSBUYWJsZURhdGFTb3VyY2VQYWdlRXZlbnQge1xuICBwYWdlSW5kZXg6IG51bWJlcjtcbiAgcGFnZVNpemU6IG51bWJlcjtcbiAgbGVuZ3RoOiBudW1iZXI7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgVGFibGVEYXRhU291cmNlUGFnaW5hdG9yIHtcbiAgcGFnZTogU3ViamVjdDxUYWJsZURhdGFTb3VyY2VQYWdlRXZlbnQ+O1xuICBwYWdlSW5kZXg6IG51bWJlcjtcbiAgaW5pdGlhbGl6ZWQ6IE9ic2VydmFibGU8dm9pZD47XG4gIHBhZ2VTaXplOiBudW1iZXI7XG4gIGxlbmd0aDogbnVtYmVyO1xuICBmaXJzdFBhZ2U6ICgpID0+IHZvaWQ7XG4gIGxhc3RQYWdlOiAoKSA9PiB2b2lkO1xufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './table-data-source';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJsZS91dGlscy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3RhYmxlLWRhdGEtc291cmNlJztcbiJdfQ==
@@ -0,0 +1,168 @@
1
+ import { BehaviorSubject, combineLatest, merge, of, Subject, map } from 'rxjs';
2
+ import { DataSource } from '@angular/cdk/collections';
3
+ import { _isNumberValue } from '@angular/cdk/coercion';
4
+ import { MAX_SAFE_INTEGER } from '../constants';
5
+ export class TableDataSource extends DataSource {
6
+ get data() {
7
+ return this._data.value;
8
+ }
9
+ set data(data) {
10
+ data = Array.isArray(data) ? data : [];
11
+ this._data.next(data);
12
+ if (!this._renderChangesSubscription) {
13
+ this._filterData(data);
14
+ }
15
+ }
16
+ get filter() {
17
+ return this._filter.value;
18
+ }
19
+ set filter(filter) {
20
+ this._filter.next(filter);
21
+ if (!this._renderChangesSubscription) {
22
+ this._filterData(this.data);
23
+ }
24
+ }
25
+ get sort() {
26
+ return this._sort;
27
+ }
28
+ set sort(sort) {
29
+ this._sort = sort;
30
+ this._updateChangeSubscription();
31
+ }
32
+ get paginator() {
33
+ return this._paginator;
34
+ }
35
+ set paginator(paginator) {
36
+ this._paginator = paginator;
37
+ this._updateChangeSubscription();
38
+ }
39
+ constructor(initialData = []) {
40
+ super();
41
+ this._renderData = new BehaviorSubject([]);
42
+ this._filter = new BehaviorSubject('');
43
+ this._internalPageChanges = new Subject();
44
+ this._renderChangesSubscription = null;
45
+ this.filteredData = [];
46
+ this._sort = null;
47
+ this._paginator = null;
48
+ this.sortingDataAccessor = (data, sortHeaderId) => {
49
+ const value = data[sortHeaderId];
50
+ if (_isNumberValue(value)) {
51
+ const numberValue = Number(value);
52
+ return numberValue < MAX_SAFE_INTEGER ? numberValue : value;
53
+ }
54
+ return value;
55
+ };
56
+ this.sortData = (data, sort) => {
57
+ const active = sort.active;
58
+ const direction = sort.direction;
59
+ if (!active || direction == '') {
60
+ return data;
61
+ }
62
+ return data.sort((a, b) => {
63
+ let valueA = this.sortingDataAccessor(a, active);
64
+ let valueB = this.sortingDataAccessor(b, active);
65
+ const valueAType = typeof valueA;
66
+ const valueBType = typeof valueB;
67
+ if (valueAType !== valueBType) {
68
+ if (valueAType === 'number') {
69
+ valueA += '';
70
+ }
71
+ if (valueBType === 'number') {
72
+ valueB += '';
73
+ }
74
+ }
75
+ let comparatorResult = 0;
76
+ if (valueA != null && valueB != null) {
77
+ if (valueA > valueB) {
78
+ comparatorResult = 1;
79
+ }
80
+ else if (valueA < valueB) {
81
+ comparatorResult = -1;
82
+ }
83
+ }
84
+ else if (valueA != null) {
85
+ comparatorResult = 1;
86
+ }
87
+ else if (valueB != null) {
88
+ comparatorResult = -1;
89
+ }
90
+ return comparatorResult * (direction == 'asc' ? 1 : -1);
91
+ });
92
+ };
93
+ this.filterPredicate = (data, filter) => {
94
+ const dataStr = Object.keys(data)
95
+ .reduce((currentTerm, key) => {
96
+ return currentTerm + data[key] + '◬';
97
+ }, '')
98
+ .toLowerCase();
99
+ const transformedFilter = filter.trim().toLowerCase();
100
+ return dataStr.indexOf(transformedFilter) != -1;
101
+ };
102
+ this._data = new BehaviorSubject(initialData);
103
+ this._updateChangeSubscription();
104
+ }
105
+ _updateChangeSubscription() {
106
+ const sortChange = this._sort
107
+ ? merge(this._sort.sortChange, this._sort.initialized)
108
+ : of(null);
109
+ const pageChange = this._paginator
110
+ ? merge(this._paginator.page, this._internalPageChanges, this._paginator.initialized)
111
+ : of(null);
112
+ const dataStream = this._data;
113
+ const filteredData = combineLatest([dataStream, this._filter]).pipe(map(([data]) => this._filterData(data)));
114
+ const orderedData = combineLatest([filteredData, sortChange]).pipe(map(([data]) => this._orderData(data)));
115
+ const paginatedData = combineLatest([orderedData, pageChange]).pipe(map(([data]) => this._pageData(data)));
116
+ this._renderChangesSubscription?.unsubscribe();
117
+ this._renderChangesSubscription = paginatedData.subscribe((data) => this._renderData.next(data));
118
+ }
119
+ _filterData(data) {
120
+ this.filteredData =
121
+ this.filter == null || this.filter === '' ? data : data.filter((obj) => this.filterPredicate(obj, this.filter));
122
+ if (this.paginator) {
123
+ this._updatePaginator(this.filteredData.length);
124
+ }
125
+ return this.filteredData;
126
+ }
127
+ _orderData(data) {
128
+ if (!this.sort) {
129
+ return data;
130
+ }
131
+ return this.sortData(data.slice(), this.sort);
132
+ }
133
+ _pageData(data) {
134
+ if (!this.paginator) {
135
+ return data;
136
+ }
137
+ const startIndex = this.paginator.pageIndex * this.paginator.pageSize;
138
+ return data.slice(startIndex, startIndex + this.paginator.pageSize);
139
+ }
140
+ _updatePaginator(filteredDataLength) {
141
+ Promise.resolve().then(() => {
142
+ const paginator = this.paginator;
143
+ if (!paginator) {
144
+ return;
145
+ }
146
+ paginator.length = filteredDataLength;
147
+ if (paginator.pageIndex > 0) {
148
+ const lastPageIndex = Math.ceil(paginator.length / paginator.pageSize) - 1 || 0;
149
+ const newPageIndex = Math.min(paginator.pageIndex, lastPageIndex);
150
+ if (newPageIndex !== paginator.pageIndex) {
151
+ paginator.pageIndex = newPageIndex;
152
+ this._internalPageChanges.next();
153
+ }
154
+ }
155
+ });
156
+ }
157
+ connect() {
158
+ if (!this._renderChangesSubscription) {
159
+ this._updateChangeSubscription();
160
+ }
161
+ return this._renderData;
162
+ }
163
+ disconnect() {
164
+ this._renderChangesSubscription?.unsubscribe();
165
+ this._renderChangesSubscription = null;
166
+ }
167
+ }
168
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFibGUtZGF0YS1zb3VyY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFibGUvdXRpbHMvdGFibGUtZGF0YS1zb3VyY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsS0FBSyxFQUFjLEVBQUUsRUFBRSxPQUFPLEVBQWdCLEdBQUcsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUN6RyxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFFdEQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBRXZELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUVoRCxNQUFNLE9BQU8sZUFBa0YsU0FBUSxVQUFhO0lBU2xILElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQyxLQUFLLENBQUM7SUFDMUIsQ0FBQztJQUNELElBQUksSUFBSSxDQUFDLElBQVM7UUFDaEIsSUFBSSxHQUFHLEtBQUssQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1FBRXRCLElBQUksQ0FBQyxJQUFJLENBQUMsMEJBQTBCLEVBQUU7WUFDcEMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsQ0FBQztTQUN4QjtJQUNILENBQUM7SUFFRCxJQUFJLE1BQU07UUFDUixPQUFPLElBQUksQ0FBQyxPQUFPLENBQUMsS0FBSyxDQUFDO0lBQzVCLENBQUM7SUFDRCxJQUFJLE1BQU0sQ0FBQyxNQUFjO1FBQ3ZCLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxD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eyBCZWhhdmlvclN1YmplY3QsIGNvbWJpbmVMYXRlc3QsIG1lcmdlLCBPYnNlcnZhYmxlLCBvZiwgU3ViamVjdCwgU3Vic2NyaXB0aW9uLCBtYXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IERhdGFTb3VyY2UgfSBmcm9tICdAYW5ndWxhci9jZGsvY29sbGVjdGlvbnMnO1xuaW1wb3J0IHsgU29ydERpcmVjdGl2ZSwgU29ydCB9IGZyb20gJy4uLy4uL3NvcnQnO1xuaW1wb3J0IHsgX2lzTnVtYmVyVmFsdWUgfSBmcm9tICdAYW5ndWxhci9jZGsvY29lcmNpb24nO1xuaW1wb3J0IHsgVGFibGVEYXRhU291cmNlUGFnZUV2ZW50LCBUYWJsZURhdGFTb3VyY2VQYWdpbmF0b3IgfSBmcm9tICcuLi90eXBlcyc7XG5pbXBvcnQgeyBNQVhfU0FGRV9JTlRFR0VSIH0gZnJvbSAnLi4vY29uc3RhbnRzJztcblxuZXhwb3J0IGNsYXNzIFRhYmxlRGF0YVNvdXJjZTxULCBQIGV4dGVuZHMgVGFibGVEYXRhU291cmNlUGFnaW5hdG9yID0gVGFibGVEYXRhU291cmNlUGFnaW5hdG9yPiBleHRlbmRzIERhdGFTb3VyY2U8VD4ge1xuICBwcml2YXRlIHJlYWRvbmx5IF9kYXRhOiBCZWhhdmlvclN1YmplY3Q8VFtdPjtcbiAgcHJpdmF0ZSByZWFkb25seSBfcmVuZGVyRGF0YSA9IG5ldyBCZWhhdmlvclN1YmplY3Q8VFtdPihbXSk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2ZpbHRlciA9IG5ldyBCZWhhdmlvclN1YmplY3Q8c3RyaW5nPignJyk7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2ludGVybmFsUGFnZUNoYW5nZXMgPSBuZXcgU3ViamVjdDx2b2lkPigpO1xuXG4gIF9yZW5kZXJDaGFuZ2VzU3Vic2NyaXB0aW9uOiBTdWJzY3JpcHRpb24gfCBudWxsID0gbnVsbDtcbiAgZmlsdGVyZWREYXRhOiBUW10gPSBbXTtcblxuICBnZXQgZGF0YSgpIHtcbiAgICByZXR1cm4gdGhpcy5fZGF0YS52YWx1ZTtcbiAgfVxuICBzZXQgZGF0YShkYXRhOiBUW10pIHtcbiAgICBkYXRhID0gQXJyYXkuaXNBcnJheShkYXRhKSA/IGRhdGEgOiBbXTtcbiAgICB0aGlzLl9kYXRhLm5leHQoZGF0YSk7XG5cbiAgICBpZiAoIXRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24pIHtcbiAgICAgIHRoaXMuX2ZpbHRlckRhdGEoZGF0YSk7XG4gICAgfVxuICB9XG5cbiAgZ2V0IGZpbHRlcigpOiBzdHJpbmcge1xuICAgIHJldHVybiB0aGlzLl9maWx0ZXIudmFsdWU7XG4gIH1cbiAgc2V0IGZpbHRlcihmaWx0ZXI6IHN0cmluZykge1xuICAgIHRoaXMuX2ZpbHRlci5uZXh0KGZpbHRlcik7XG5cbiAgICBpZiAoIXRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24pIHtcbiAgICAgIHRoaXMuX2ZpbHRlckRhdGEodGhpcy5kYXRhKTtcbiAgICB9XG4gIH1cblxuICBnZXQgc29ydCgpOiBTb3J0RGlyZWN0aXZlIHwgbnVsbCB7XG4gICAgcmV0dXJuIHRoaXMuX3NvcnQ7XG4gIH1cbiAgc2V0IHNvcnQoc29ydDogU29ydERpcmVjdGl2ZSB8IG51bGwpIHtcbiAgICB0aGlzLl9zb3J0ID0gc29ydDtcbiAgICB0aGlzLl91cGRhdGVDaGFuZ2VTdWJzY3JpcHRpb24oKTtcbiAgfVxuICBwcml2YXRlIF9zb3J0OiBTb3J0RGlyZWN0aXZlIHwgbnVsbCA9IG51bGw7XG5cbiAgZ2V0IHBhZ2luYXRvcigpOiBQIHwgbnVsbCB7XG4gICAgcmV0dXJuIHRoaXMuX3BhZ2luYXRvcjtcbiAgfVxuICBzZXQgcGFnaW5hdG9yKHBhZ2luYXRvcjogUCB8IG51bGwpIHtcbiAgICB0aGlzLl9wYWdpbmF0b3IgPSBwYWdpbmF0b3I7XG4gICAgdGhpcy5fdXBkYXRlQ2hhbmdlU3Vic2NyaXB0aW9uKCk7XG4gIH1cbiAgcHJpdmF0ZSBfcGFnaW5hdG9yOiBQIHwgbnVsbCA9IG51bGw7XG5cbiAgc29ydGluZ0RhdGFBY2Nlc3NvcjogKGRhdGE6IFQsIHNvcnRIZWFkZXJJZDogc3RyaW5nKSA9PiBzdHJpbmcgfCBudW1iZXIgPSAoXG4gICAgZGF0YTogVCxcbiAgICBzb3J0SGVhZGVySWQ6IHN0cmluZyxcbiAgKTogc3RyaW5nIHwgbnVtYmVyID0+IHtcbiAgICBjb25zdCB2YWx1ZSA9IChkYXRhIGFzIHVua25vd24gYXMgUmVjb3JkPHN0cmluZywgdW5rbm93bj4pW3NvcnRIZWFkZXJJZF07XG5cbiAgICBpZiAoX2lzTnVtYmVyVmFsdWUodmFsdWUpKSB7XG4gICAgICBjb25zdCBudW1iZXJWYWx1ZSA9IE51bWJlcih2YWx1ZSk7XG5cbiAgICAgIHJldHVybiBudW1iZXJWYWx1ZSA8IE1BWF9TQUZFX0lOVEVHRVIgPyBudW1iZXJWYWx1ZSA6ICh2YWx1ZSBhcyBudW1iZXIpO1xuICAgIH1cblxuICAgIHJldHVybiB2YWx1ZSBhcyBzdHJpbmc7XG4gIH07XG5cbiAgc29ydERhdGE6IChkYXRhOiBUW10sIHNvcnQ6IFNvcnREaXJlY3RpdmUpID0+IFRbXSA9IChkYXRhOiBUW10sIHNvcnQ6IFNvcnREaXJlY3RpdmUpOiBUW10gPT4ge1xuICAgIGNvbnN0IGFjdGl2ZSA9IHNvcnQuYWN0aXZlO1xuICAgIGNvbnN0IGRpcmVjdGlvbiA9IHNvcnQuZGlyZWN0aW9uO1xuICAgIGlmICghYWN0aXZlIHx8IGRpcmVjdGlvbiA9PSAnJykge1xuICAgICAgcmV0dXJuIGRhdGE7XG4gICAgfVxuXG4gICAgcmV0dXJuIGRhdGEuc29ydCgoYSwgYikgPT4ge1xuICAgICAgbGV0IHZhbHVlQSA9IHRoaXMuc29ydGluZ0RhdGFBY2Nlc3NvcihhLCBhY3RpdmUpO1xuICAgICAgbGV0IHZhbHVlQiA9IHRoaXMuc29ydGluZ0RhdGFBY2Nlc3NvcihiLCBhY3RpdmUpO1xuXG4gICAgICBjb25zdCB2YWx1ZUFUeXBlID0gdHlwZW9mIHZhbHVlQTtcbiAgICAgIGNvbnN0IHZhbHVlQlR5cGUgPSB0eXBlb2YgdmFsdWVCO1xuXG4gICAgICBpZiAodmFsdWVBVHlwZSAhPT0gdmFsdWVCVHlwZSkge1xuICAgICAgICBpZiAodmFsdWVBVHlwZSA9PT0gJ251bWJlcicpIHtcbiAgICAgICAgICB2YWx1ZUEgKz0gJyc7XG4gICAgICAgIH1cbiAgICAgICAgaWYgKHZhbHVlQlR5cGUgPT09ICdudW1iZXInKSB7XG4gICAgICAgICAgdmFsdWVCICs9ICcnO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgIGxldCBjb21wYXJhdG9yUmVzdWx0ID0gMDtcbiAgICAgIGlmICh2YWx1ZUEgIT0gbnVsbCAmJiB2YWx1ZUIgIT0gbnVsbCkge1xuICAgICAgICBpZiAodmFsdWVBID4gdmFsdWVCKSB7XG4gICAgICAgICAgY29tcGFyYXRvclJlc3VsdCA9IDE7XG4gICAgICAgIH0gZWxzZSBpZiAodmFsdWVBIDwgdmFsdWVCKSB7XG4gICAgICAgICAgY29tcGFyYXRvclJlc3VsdCA9IC0xO1xuICAgICAgICB9XG4gICAgICB9IGVsc2UgaWYgKHZhbHVlQSAhPSBudWxsKSB7XG4gICAgICAgIGNvbXBhcmF0b3JSZXN1bHQgPSAxO1xuICAgICAgfSBlbHNlIGlmICh2YWx1ZUIgIT0gbnVsbCkge1xuICAgICAgICBjb21wYXJhdG9yUmVzdWx0ID0gLTE7XG4gICAgICB9XG5cbiAgICAgIHJldHVybiBjb21wYXJhdG9yUmVzdWx0ICogKGRpcmVjdGlvbiA9PSAnYXNjJyA/IDEgOiAtMSk7XG4gICAgfSk7XG4gIH07XG5cbiAgZmlsdGVyUHJlZGljYXRlOiAoZGF0YTogVCwgZmlsdGVyOiBzdHJpbmcpID0+IGJvb2xlYW4gPSAoZGF0YTogVCwgZmlsdGVyOiBzdHJpbmcpOiBib29sZWFuID0+IHtcbiAgICBjb25zdCBkYXRhU3RyID0gT2JqZWN0LmtleXMoZGF0YSBhcyB1bmtub3duIGFzIFJlY29yZDxzdHJpbmcsIHVua25vd24+KVxuICAgICAgLnJlZHVjZSgoY3VycmVudFRlcm06IHN0cmluZywga2V5OiBzdHJpbmcpID0+IHtcbiAgICAgICAgcmV0dXJuIGN1cnJlbnRUZXJtICsgKGRhdGEgYXMgdW5rbm93biBhcyBSZWNvcmQ8c3RyaW5nLCB1bmtub3duPilba2V5XSArICfil6wnO1xuICAgICAgfSwgJycpXG4gICAgICAudG9Mb3dlckNhc2UoKTtcblxuICAgIGNvbnN0IHRyYW5zZm9ybWVkRmlsdGVyID0gZmlsdGVyLnRyaW0oKS50b0xvd2VyQ2FzZSgpO1xuXG4gICAgcmV0dXJuIGRhdGFTdHIuaW5kZXhPZih0cmFuc2Zvcm1lZEZpbHRlcikgIT0gLTE7XG4gIH07XG5cbiAgY29uc3RydWN0b3IoaW5pdGlhbERhdGE6IFRbXSA9IFtdKSB7XG4gICAgc3VwZXIoKTtcbiAgICB0aGlzLl9kYXRhID0gbmV3IEJlaGF2aW9yU3ViamVjdDxUW10+KGluaXRpYWxEYXRhKTtcbiAgICB0aGlzLl91cGRhdGVDaGFuZ2VTdWJzY3JpcHRpb24oKTtcbiAgfVxuXG4gIF91cGRhdGVDaGFuZ2VTdWJzY3JpcHRpb24oKSB7XG4gICAgY29uc3Qgc29ydENoYW5nZTogT2JzZXJ2YWJsZTxTb3J0IHwgbnVsbCB8IHZvaWQ+ID0gdGhpcy5fc29ydFxuICAgICAgPyAobWVyZ2UodGhpcy5fc29ydC5zb3J0Q2hhbmdlLCB0aGlzLl9zb3J0LmluaXRpYWxpemVkKSBhcyBPYnNlcnZhYmxlPFNvcnQgfCB2b2lkPilcbiAgICAgIDogb2YobnVsbCk7XG4gICAgY29uc3QgcGFnZUNoYW5nZTogT2JzZXJ2YWJsZTxUYWJsZURhdGFTb3VyY2VQYWdlRXZlbnQgfCBudWxsIHwgdm9pZD4gPSB0aGlzLl9wYWdpbmF0b3JcbiAgICAgID8gKG1lcmdlKFxuICAgICAgICAgIHRoaXMuX3BhZ2luYXRvci5wYWdlLFxuICAgICAgICAgIHRoaXMuX2ludGVybmFsUGFnZUNoYW5nZXMsXG4gICAgICAgICAgdGhpcy5fcGFnaW5hdG9yLmluaXRpYWxpemVkLFxuICAgICAgICApIGFzIE9ic2VydmFibGU8VGFibGVEYXRhU291cmNlUGFnZUV2ZW50IHwgdm9pZD4pXG4gICAgICA6IG9mKG51bGwpO1xuICAgIGNvbnN0IGRhdGFTdHJlYW0gPSB0aGlzLl9kYXRhO1xuXG4gICAgY29uc3QgZmlsdGVyZWREYXRhID0gY29tYmluZUxhdGVzdChbZGF0YVN0cmVhbSwgdGhpcy5fZmlsdGVyXSkucGlwZShtYXAoKFtkYXRhXSkgPT4gdGhpcy5fZmlsdGVyRGF0YShkYXRhKSkpO1xuXG4gICAgY29uc3Qgb3JkZXJlZERhdGEgPSBjb21iaW5lTGF0ZXN0KFtmaWx0ZXJlZERhdGEsIHNvcnRDaGFuZ2VdKS5waXBlKG1hcCgoW2RhdGFdKSA9PiB0aGlzLl9vcmRlckRhdGEoZGF0YSkpKTtcblxuICAgIGNvbnN0IHBhZ2luYXRlZERhdGEgPSBjb21iaW5lTGF0ZXN0KFtvcmRlcmVkRGF0YSwgcGFnZUNoYW5nZV0pLnBpcGUobWFwKChbZGF0YV0pID0+IHRoaXMuX3BhZ2VEYXRhKGRhdGEpKSk7XG5cbiAgICB0aGlzLl9yZW5kZXJDaGFuZ2VzU3Vic2NyaXB0aW9uPy51bnN1YnNjcmliZSgpO1xuICAgIHRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24gPSBwYWdpbmF0ZWREYXRhLnN1YnNjcmliZSgoZGF0YSkgPT4gdGhpcy5fcmVuZGVyRGF0YS5uZXh0KGRhdGEpKTtcbiAgfVxuXG4gIF9maWx0ZXJEYXRhKGRhdGE6IFRbXSkge1xuICAgIHRoaXMuZmlsdGVyZWREYXRhID1cbiAgICAgIHRoaXMuZmlsdGVyID09IG51bGwgfHwgdGhpcy5maWx0ZXIgPT09ICcnID8gZGF0YSA6IGRhdGEuZmlsdGVyKChvYmopID0+IHRoaXMuZmlsdGVyUHJlZGljYXRlKG9iaiwgdGhpcy5maWx0ZXIpKTtcblxuICAgIGlmICh0aGlzLnBhZ2luYXRvcikge1xuICAgICAgdGhpcy5fdXBkYXRlUGFnaW5hdG9yKHRoaXMuZmlsdGVyZWREYXRhLmxlbmd0aCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuZmlsdGVyZWREYXRhO1xuICB9XG5cbiAgX29yZGVyRGF0YShkYXRhOiBUW10pOiBUW10ge1xuICAgIGlmICghdGhpcy5zb3J0KSB7XG4gICAgICByZXR1cm4gZGF0YTtcbiAgICB9XG5cbiAgICByZXR1cm4gdGhpcy5zb3J0RGF0YShkYXRhLnNsaWNlKCksIHRoaXMuc29ydCk7XG4gIH1cblxuICBfcGFnZURhdGEoZGF0YTogVFtdKTogVFtdIHtcbiAgICBpZiAoIXRoaXMucGFnaW5hdG9yKSB7XG4gICAgICByZXR1cm4gZGF0YTtcbiAgICB9XG5cbiAgICBjb25zdCBzdGFydEluZGV4ID0gdGhpcy5wYWdpbmF0b3IucGFnZUluZGV4ICogdGhpcy5wYWdpbmF0b3IucGFnZVNpemU7XG4gICAgcmV0dXJuIGRhdGEuc2xpY2Uoc3RhcnRJbmRleCwgc3RhcnRJbmRleCArIHRoaXMucGFnaW5hdG9yLnBhZ2VTaXplKTtcbiAgfVxuXG4gIF91cGRhdGVQYWdpbmF0b3IoZmlsdGVyZWREYXRhTGVuZ3RoOiBudW1iZXIpIHtcbiAgICBQcm9taXNlLnJlc29sdmUoKS50aGVuKCgpID0+IHtcbiAgICAgIGNvbnN0IHBhZ2luYXRvciA9IHRoaXMucGFnaW5hdG9yO1xuXG4gICAgICBpZiAoIXBhZ2luYXRvcikge1xuICAgICAgICByZXR1cm47XG4gICAgICB9XG5cbiAgICAgIHBhZ2luYXRvci5sZW5ndGggPSBmaWx0ZXJlZERhdGFMZW5ndGg7XG5cbiAgICAgIGlmIChwYWdpbmF0b3IucGFnZUluZGV4ID4gMCkge1xuICAgICAgICBjb25zdCBsYXN0UGFnZUluZGV4ID0gTWF0aC5jZWlsKHBhZ2luYXRvci5sZW5ndGggLyBwYWdpbmF0b3IucGFnZVNpemUpIC0gMSB8fCAwO1xuICAgICAgICBjb25zdCBuZXdQYWdlSW5kZXggPSBNYXRoLm1pbihwYWdpbmF0b3IucGFnZUluZGV4LCBsYXN0UGFnZUluZGV4KTtcblxuICAgICAgICBpZiAobmV3UGFnZUluZGV4ICE9PSBwYWdpbmF0b3IucGFnZUluZGV4KSB7XG4gICAgICAgICAgcGFnaW5hdG9yLnBhZ2VJbmRleCA9IG5ld1BhZ2VJbmRleDtcblxuICAgICAgICAgIHRoaXMuX2ludGVybmFsUGFnZUNoYW5nZXMubmV4dCgpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfSk7XG4gIH1cblxuICBjb25uZWN0KCkge1xuICAgIGlmICghdGhpcy5fcmVuZGVyQ2hhbmdlc1N1YnNjcmlwdGlvbikge1xuICAgICAgdGhpcy5fdXBkYXRlQ2hhbmdlU3Vic2NyaXB0aW9uKCk7XG4gICAgfVxuXG4gICAgcmV0dXJuIHRoaXMuX3JlbmRlckRhdGE7XG4gIH1cblxuICBkaXNjb25uZWN0KCkge1xuICAgIHRoaXMuX3JlbmRlckNoYW5nZXNTdWJzY3JpcHRpb24/LnVuc3Vic2NyaWJlKCk7XG4gICAgdGhpcy5fcmVuZGVyQ2hhbmdlc1N1YnNjcmlwdGlvbiA9IG51bGw7XG4gIH1cbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFicy9hbmltYXRpb25zL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './tabs.animations';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy90YWJzL2FuaW1hdGlvbnMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi90YWJzLmFuaW1hdGlvbnMnO1xuIl19
@@ -0,0 +1,26 @@
1
+ import { animate, state, style, transition, trigger } from '@angular/animations';
2
+ export const tabAnimations = {
3
+ translateTab: trigger('translateTab', [
4
+ state('center, void, left-origin-center, right-origin-center', style({ transform: 'none' })),
5
+ state('left', style({
6
+ transform: 'translate3d(-100%, 0, 0)',
7
+ minHeight: '1px',
8
+ visibility: 'hidden',
9
+ })),
10
+ state('right', style({
11
+ transform: 'translate3d(100%, 0, 0)',
12
+ minHeight: '1px',
13
+ visibility: 'hidden',
14
+ })),
15
+ transition('* => left, * => right, left => center, right => center', animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)')),
16
+ transition('void => left-origin-center', [
17
+ style({ transform: 'translate3d(-100%, 0, 0)', visibility: 'hidden' }),
18
+ animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)'),
19
+ ]),
20
+ transition('void => right-origin-center', [
21
+ style({ transform: 'translate3d(100%, 0, 0)', visibility: 'hidden' }),
22
+ animate('{{animationDuration}} cubic-bezier(0.35, 0, 0.25, 1)'),
23
+ ]),
24
+ ]),
25
+ };
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFicy5hbmltYXRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL3RhYnMvYW5pbWF0aW9ucy90YWJzLmFuaW1hdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLE9BQU8sRUFBRSxLQUFLLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxPQUFPLEVBQTRCLE1BQU0scUJBQXFCLENBQUM7QUFFM0csTUFBTSxDQUFDLE1BQU0sYUFBYSxHQUV0QjtJQUNGLFlBQVksRUFBRSxPQUFPLENBQUMsY0FBYyxFQUFFO1FBQ3BDLEtBQUssQ0FBQyx1REFBdUQsRUFBRSxLQUFLLENBQUMsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLENBQUMsQ0FBQztRQUU1RixLQUFLLENBQ0gsTUFBTSxFQUNOLEtBQUssQ0FBQztZQUNKLFNBQVMsRUFBRSwwQkFBMEI7WUFDckMsU0FBUyxFQUFFLEtBQUs7WUFDaEIsVUFBVSxFQUFFLFFBQVE7U0FDckIsQ0FBQyxDQUNIO1FBQ0QsS0FBSyxDQUNILE9BQU8sRUFDUCxLQUFLLENBQUM7WUFDSixTQUFTLEVBQUUseUJBQXlCO1lBQ3BDLFNBQVMsRUFBRSxLQUFLO1lBQ2hCLFVBQVUsRUFBRSxRQUFRO1NBQ3JCLENBQUMsQ0FDSDtRQUVELFVBQVUsQ0FDUix3REFBd0QsRUFDeEQsT0FBTyxDQUFDLHNEQUFzRCxDQUFDLENBQ2hFO1FBQ0QsVUFBVSxDQUFDLDRCQUE0QixFQUFFO1lBQ3ZDLEtBQUssQ0FBQyxFQUFFLFNBQVMsRUFBRSwwQkFBMEIsRUFBRSxVQUFVLEVBQUUsUUFBUSxFQUFFLENBQUM7WUFDdEUsT0FBTyxDQUFDLHNEQUFzRCxDQUFDO1NBQ2hFLENBQUM7UUFDRixVQUFVLENBQUMsNkJBQTZCLEVBQUU7WUFDeEMsS0FBSyxDQUFDLEVBQUUsU0FBUyxFQUFFLHlCQUF5QixFQUFFLFVBQVUsRUFBRSxRQUFRLEVBQUUsQ0FBQztZQUNyRSxPQUFPLENBQUMsc0RBQXNELENBQUM7U0FDaEUsQ0FBQztLQUNILENBQUM7Q0FDSCxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgYW5pbWF0ZSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyLCBBbmltYXRpb25UcmlnZ2VyTWV0YWRhdGEgfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcblxuZXhwb3J0IGNvbnN0IHRhYkFuaW1hdGlvbnM6IHtcbiAgcmVhZG9ubHkgdHJhbnNsYXRlVGFiOiBBbmltYXRpb25UcmlnZ2VyTWV0YWRhdGE7XG59ID0ge1xuICB0cmFuc2xhdGVUYWI6IHRyaWdnZXIoJ3RyYW5zbGF0ZVRhYicsIFtcbiAgICBzdGF0ZSgnY2VudGVyLCB2b2lkLCBsZWZ0LW9yaWdpbi1jZW50ZXIsIHJpZ2h0LW9yaWdpbi1jZW50ZXInLCBzdHlsZSh7IHRyYW5zZm9ybTogJ25vbmUnIH0pKSxcblxuICAgIHN0YXRlKFxuICAgICAgJ2xlZnQnLFxuICAgICAgc3R5bGUoe1xuICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgtMTAwJSwgMCwgMCknLFxuICAgICAgICBtaW5IZWlnaHQ6ICcxcHgnLFxuICAgICAgICB2aXNpYmlsaXR5OiAnaGlkZGVuJyxcbiAgICAgIH0pLFxuICAgICksXG4gICAgc3RhdGUoXG4gICAgICAncmlnaHQnLFxuICAgICAgc3R5bGUoe1xuICAgICAgICB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgxMDAlLCAwLCAwKScsXG4gICAgICAgIG1pbkhlaWdodDogJzFweCcsXG4gICAgICAgIHZpc2liaWxpdHk6ICdoaWRkZW4nLFxuICAgICAgfSksXG4gICAgKSxcblxuICAgIHRyYW5zaXRpb24oXG4gICAgICAnKiA9PiBsZWZ0LCAqID0+IHJpZ2h0LCBsZWZ0ID0+IGNlbnRlciwgcmlnaHQgPT4gY2VudGVyJyxcbiAgICAgIGFuaW1hdGUoJ3t7YW5pbWF0aW9uRHVyYXRpb259fSBjdWJpYy1iZXppZXIoMC4zNSwgMCwgMC4yNSwgMSknKSxcbiAgICApLFxuICAgIHRyYW5zaXRpb24oJ3ZvaWQgPT4gbGVmdC1vcmlnaW4tY2VudGVyJywgW1xuICAgICAgc3R5bGUoeyB0cmFuc2Zvcm06ICd0cmFuc2xhdGUzZCgtMTAwJSwgMCwgMCknLCB2aXNpYmlsaXR5OiAnaGlkZGVuJyB9KSxcbiAgICAgIGFuaW1hdGUoJ3t7YW5pbWF0aW9uRHVyYXRpb259fSBjdWJpYy1iZXppZXIoMC4zNSwgMCwgMC4yNSwgMSknKSxcbiAgICBdKSxcbiAgICB0cmFuc2l0aW9uKCd2b2lkID0+IHJpZ2h0LW9yaWdpbi1jZW50ZXInLCBbXG4gICAgICBzdHlsZSh7IHRyYW5zZm9ybTogJ3RyYW5zbGF0ZTNkKDEwMCUsIDAsIDApJywgdmlzaWJpbGl0eTogJ2hpZGRlbicgfSksXG4gICAgICBhbmltYXRlKCd7e2FuaW1hdGlvbkR1cmF0aW9ufX0gY3ViaWMtYmV6aWVyKDAuMzUsIDAsIDAuMjUsIDEpJyksXG4gICAgXSksXG4gIF0pLFxufTtcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvdGFicy9jb21wb25lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==