@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,2 @@
1
+ export * from './search-input-clear.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3NlYXJjaC1pbnB1dC1jbGVhci9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0NBQWdDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQnO1xuIl19
@@ -0,0 +1,22 @@
1
+ import { AsyncPipe } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, inject, Input, ViewEncapsulation } from '@angular/core';
3
+ import { INPUT_TOKEN } from '../../../../directives';
4
+ import { SEARCH_INPUT_TOKEN } from '../../directives';
5
+ import * as i0 from "@angular/core";
6
+ export class SearchInputClearComponent {
7
+ constructor() {
8
+ this.searchInput = inject(SEARCH_INPUT_TOKEN);
9
+ this.input = inject(INPUT_TOKEN);
10
+ }
11
+ }
12
+ SearchInputClearComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputClearComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
13
+ SearchInputClearComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: SearchInputClearComponent, isStandalone: true, selector: "et-search-input-clear", inputs: { ariaLabel: "ariaLabel" }, host: { classAttribute: "et-search-input-clear" }, ngImport: i0, template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"searchInput._clear(); input.focusInputVia()\"\n class=\"et-search-input-clear-button\"\n type=\"button\"\n>\n <ng-content />\n</button>\n", styles: [""], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: SearchInputClearComponent, decorators: [{
15
+ type: Component,
16
+ args: [{ selector: 'et-search-input-clear', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
17
+ class: 'et-search-input-clear',
18
+ }, imports: [AsyncPipe], template: "<button\n [attr.aria-controls]=\"input.id\"\n [attr.aria-label]=\"ariaLabel || null\"\n [disabled]=\"input.disabled$ | async\"\n (click)=\"searchInput._clear(); input.focusInputVia()\"\n class=\"et-search-input-clear-button\"\n type=\"button\"\n>\n <ng-content />\n</button>\n" }]
19
+ }], propDecorators: { ariaLabel: [{
20
+ type: Input
21
+ }] } });
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLWlucHV0LWNsZWFyLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3BhcnRpYWxzL3NlYXJjaC1pbnB1dC1jbGVhci9zZWFyY2gtaW5wdXQtY2xlYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvaW5wdXQvcGFydGlhbHMvc2VhcmNoLWlucHV0LWNsZWFyL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDNUMsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3JHLE9BQU8sRUFBRSxXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNyRCxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7QUFjdEQsTUFBTSxPQUFPLHlCQUF5QjtJQVp0QztRQWFxQixnQkFBVyxHQUFHLE1BQU0sQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDO1FBQ3pDLFVBQUssR0FBRyxNQUFNLENBQUMsV0FBVyxDQUFDLENBQUM7S0FJaEQ7O3NIQU5ZLHlCQUF5QjswR0FBekIseUJBQXlCLHdLQ2pCdEMsNlJBVUEscURES1ksU0FBUzsyRkFFUix5QkFBeUI7a0JBWnJDLFNBQVM7K0JBQ0UsdUJBQXVCLGNBR3JCLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsdUJBQXVCO3FCQUMvQixXQUNRLENBQUMsU0FBUyxDQUFDOzhCQU9wQixTQUFTO3NCQURSLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgaW5qZWN0LCBJbnB1dCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElOUFVUX1RPS0VOIH0gZnJvbSAnLi4vLi4vLi4vLi4vZGlyZWN0aXZlcyc7XG5pbXBvcnQgeyBTRUFSQ0hfSU5QVVRfVE9LRU4gfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtc2VhcmNoLWlucHV0LWNsZWFyJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3NlYXJjaC1pbnB1dC1jbGVhci5jb21wb25lbnQuc2NzcyddLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtc2VhcmNoLWlucHV0LWNsZWFyJyxcbiAgfSxcbiAgaW1wb3J0czogW0FzeW5jUGlwZV0sXG59KVxuZXhwb3J0IGNsYXNzIFNlYXJjaElucHV0Q2xlYXJDb21wb25lbnQge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgc2VhcmNoSW5wdXQgPSBpbmplY3QoU0VBUkNIX0lOUFVUX1RPS0VOKTtcbiAgcHJvdGVjdGVkIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0KElOUFVUX1RPS0VOKTtcblxuICBASW5wdXQoKVxuICBhcmlhTGFiZWw/OiBzdHJpbmc7XG59XG4iLCI8YnV0dG9uXG4gIFthdHRyLmFyaWEtY29udHJvbHNdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5hcmlhLWxhYmVsXT1cImFyaWFMYWJlbCB8fCBudWxsXCJcbiAgW2Rpc2FibGVkXT1cImlucHV0LmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgKGNsaWNrKT1cInNlYXJjaElucHV0Ll9jbGVhcigpOyBpbnB1dC5mb2N1c0lucHV0VmlhKClcIlxuICBjbGFzcz1cImV0LXNlYXJjaC1pbnB1dC1jbGVhci1idXR0b25cIlxuICB0eXBlPVwiYnV0dG9uXCJcbj5cbiAgPG5nLWNvbnRlbnQgLz5cbjwvYnV0dG9uPlxuIl19
@@ -0,0 +1,5 @@
1
+ export * from './components/public-api';
2
+ export * from './directives/public-api';
3
+ export * from './input.imports';
4
+ export * from './partials/public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2lucHV0L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyx1QkFBdUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQuaW1wb3J0cyc7XG5leHBvcnQgKiBmcm9tICcuL3BhcnRpYWxzL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9sYWJlbC9jb21wb25lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,51 @@
1
+ import { AsyncPipe } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, inject, InjectionToken, ViewEncapsulation } from '@angular/core';
3
+ import { FormFieldStateService } from '../../../../services';
4
+ import * as i0 from "@angular/core";
5
+ export const LABEL_TOKEN = new InjectionToken('ET_LABEL_COMPONENT_TOKEN');
6
+ let nextUniqueId = 0;
7
+ export class LabelComponent {
8
+ constructor() {
9
+ this.formFieldStateService = inject(FormFieldStateService);
10
+ this.id = `et-label-${++nextUniqueId}`;
11
+ }
12
+ }
13
+ LabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
14
+ LabelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: LabelComponent, isStandalone: true, selector: "et-label", host: { classAttribute: "et-label" }, providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }], exportAs: ["etLabel"], ngImport: i0, template: `
15
+ <label
16
+ [attr.for]="formFieldStateService.inputId$ | async"
17
+ [attr.aria-owns]="formFieldStateService.inputId$ | async"
18
+ [id]="id"
19
+ class="et-label-native-label"
20
+ >
21
+ <ng-content />
22
+ </label>
23
+ <ng-content select="[etLabelSuffix]" />
24
+ `, isInline: true, dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelComponent, decorators: [{
26
+ type: Component,
27
+ args: [{
28
+ selector: 'et-label',
29
+ template: `
30
+ <label
31
+ [attr.for]="formFieldStateService.inputId$ | async"
32
+ [attr.aria-owns]="formFieldStateService.inputId$ | async"
33
+ [id]="id"
34
+ class="et-label-native-label"
35
+ >
36
+ <ng-content />
37
+ </label>
38
+ <ng-content select="[etLabelSuffix]" />
39
+ `,
40
+ encapsulation: ViewEncapsulation.None,
41
+ changeDetection: ChangeDetectionStrategy.OnPush,
42
+ standalone: true,
43
+ exportAs: 'etLabel',
44
+ imports: [AsyncPipe],
45
+ providers: [{ provide: LABEL_TOKEN, useExisting: LabelComponent }],
46
+ host: {
47
+ class: 'et-label',
48
+ },
49
+ }]
50
+ }] });
51
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvbGFiZWwvY29tcG9uZW50cy9sYWJlbC9sYWJlbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUM5RyxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFN0QsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUFpQiwwQkFBMEIsQ0FBQyxDQUFDO0FBRTFGLElBQUksWUFBWSxHQUFHLENBQUMsQ0FBQztBQXlCckIsTUFBTSxPQUFPLGNBQWM7SUF2QjNCO1FBd0JxQiwwQkFBcUIsR0FBRyxNQUFNLENBQUMscUJBQXFCLENBQUMsQ0FBQztRQUVoRSxPQUFFLEdBQUcsWUFBWSxFQUFFLFlBQVksRUFBRSxDQUFDO0tBQzVDOzsyR0FKWSxjQUFjOytGQUFkLGNBQWMsNkZBTGQsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxFQUFFLGNBQWMsRUFBRSxDQUFDLGlEQWhCeEQ7Ozs7Ozs7Ozs7R0FVVCx1REFLUyxTQUFTOzJGQU1SLGNBQWM7a0JBdkIxQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxVQUFVO29CQUNwQixRQUFRLEVBQUU7Ozs7Ozs7Ozs7R0FVVDtvQkFDRCxhQUFhLEVBQUUsaUJBQWlCLENBQUMsSUFBSTtvQkFDckMsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsU0FBUztvQkFDbkIsT0FBTyxFQUFFLENBQUMsU0FBUyxDQUFDO29CQUNwQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxnQkFBZ0IsRUFBRSxDQUFDO29CQUNsRSxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLFVBQVU7cUJBQ2xCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtRmllbGRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5cbmV4cG9ydCBjb25zdCBMQUJFTF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxMYWJlbENvbXBvbmVudD4oJ0VUX0xBQkVMX0NPTVBPTkVOVF9UT0tFTicpO1xuXG5sZXQgbmV4dFVuaXF1ZUlkID0gMDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtbGFiZWwnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxsYWJlbFxuICAgICAgW2F0dHIuZm9yXT1cImZvcm1GaWVsZFN0YXRlU2VydmljZS5pbnB1dElkJCB8IGFzeW5jXCJcbiAgICAgIFthdHRyLmFyaWEtb3duc109XCJmb3JtRmllbGRTdGF0ZVNlcnZpY2UuaW5wdXRJZCQgfCBhc3luY1wiXG4gICAgICBbaWRdPVwiaWRcIlxuICAgICAgY2xhc3M9XCJldC1sYWJlbC1uYXRpdmUtbGFiZWxcIlxuICAgID5cbiAgICAgIDxuZy1jb250ZW50IC8+XG4gICAgPC9sYWJlbD5cbiAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbZXRMYWJlbFN1ZmZpeF1cIiAvPlxuICBgLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldExhYmVsJyxcbiAgaW1wb3J0czogW0FzeW5jUGlwZV0sXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogTEFCRUxfVE9LRU4sIHVzZUV4aXN0aW5nOiBMYWJlbENvbXBvbmVudCB9XSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtbGFiZWwnLFxuICB9LFxufSlcbmV4cG9ydCBjbGFzcyBMYWJlbENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBmb3JtRmllbGRTdGF0ZVNlcnZpY2UgPSBpbmplY3QoRm9ybUZpZWxkU3RhdGVTZXJ2aWNlKTtcblxuICByZWFkb25seSBpZCA9IGBldC1sYWJlbC0keysrbmV4dFVuaXF1ZUlkfWA7XG59XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './label.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2NvbXBvbmVudHMvbGFiZWwvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sYWJlbC5jb21wb25lbnQnO1xuIl19
@@ -0,0 +1,2 @@
1
+ export * from './label/public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2NvbXBvbmVudHMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9CQUFvQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sYWJlbC9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9sYWJlbC9kaXJlY3RpdmVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,33 @@
1
+ import { coerceBooleanProperty } from '@angular/cdk/coercion';
2
+ import { Directive, HostBinding, Input } from '@angular/core';
3
+ import * as i0 from "@angular/core";
4
+ export class LabelSuffixDirective {
5
+ constructor() {
6
+ this._showToScreenReader = false;
7
+ }
8
+ get showToScreenReader() {
9
+ return this._showToScreenReader;
10
+ }
11
+ set showToScreenReader(value) {
12
+ this._showToScreenReader = coerceBooleanProperty(value);
13
+ }
14
+ get _attrAriaHidden() {
15
+ return this.showToScreenReader ? null : 'true';
16
+ }
17
+ }
18
+ LabelSuffixDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelSuffixDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
19
+ LabelSuffixDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: LabelSuffixDirective, isStandalone: true, selector: "[etLabelSuffix]", inputs: { showToScreenReader: "showToScreenReader" }, host: { properties: { "attr.aria-hidden": "this._attrAriaHidden" } }, exportAs: ["etLabelSuffix"], ngImport: i0 });
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: LabelSuffixDirective, decorators: [{
21
+ type: Directive,
22
+ args: [{
23
+ selector: '[etLabelSuffix]',
24
+ standalone: true,
25
+ exportAs: 'etLabelSuffix',
26
+ }]
27
+ }], propDecorators: { showToScreenReader: [{
28
+ type: Input
29
+ }], _attrAriaHidden: [{
30
+ type: HostBinding,
31
+ args: ['attr.aria-hidden']
32
+ }] } });
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwtc3VmZml4LmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvbGFiZWwtc3VmZml4L2xhYmVsLXN1ZmZpeC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsV0FBVyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPOUQsTUFBTSxPQUFPLG9CQUFvQjtJQUxqQztRQWFVLHdCQUFtQixHQUFHLEtBQUssQ0FBQztLQU1yQztJQWJDLElBQ0ksa0JBQWtCO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLG1CQUFtQixDQUFDO0lBQ2xDLENBQUM7SUFDRCxJQUFJLGtCQUFrQixDQUFDLEtBQW1CO1FBQ3hDLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMxRCxDQUFDO0lBR0QsSUFDWSxlQUFlO1FBQ3pCLE9BQU8sSUFBSSxDQUFDLGtCQUFrQixDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLE1BQU0sQ0FBQztJQUNqRCxDQUFDOztpSEFiVSxvQkFBb0I7cUdBQXBCLG9CQUFvQjsyRkFBcEIsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxpQkFBaUI7b0JBQzNCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixRQUFRLEVBQUUsZUFBZTtpQkFDMUI7OEJBR0ssa0JBQWtCO3NCQURyQixLQUFLO2dCQVVNLGVBQWU7c0JBRDFCLFdBQVc7dUJBQUMsa0JBQWtCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQm9vbGVhbklucHV0LCBjb2VyY2VCb29sZWFuUHJvcGVydHkgfSBmcm9tICdAYW5ndWxhci9jZGsvY29lcmNpb24nO1xuaW1wb3J0IHsgRGlyZWN0aXZlLCBIb3N0QmluZGluZywgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiAnW2V0TGFiZWxTdWZmaXhdJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgZXhwb3J0QXM6ICdldExhYmVsU3VmZml4Jyxcbn0pXG5leHBvcnQgY2xhc3MgTGFiZWxTdWZmaXhEaXJlY3RpdmUge1xuICBASW5wdXQoKVxuICBnZXQgc2hvd1RvU2NyZWVuUmVhZGVyKCk6IGJvb2xlYW4ge1xuICAgIHJldHVybiB0aGlzLl9zaG93VG9TY3JlZW5SZWFkZXI7XG4gIH1cbiAgc2V0IHNob3dUb1NjcmVlblJlYWRlcih2YWx1ZTogQm9vbGVhbklucHV0KSB7XG4gICAgdGhpcy5fc2hvd1RvU2NyZWVuUmVhZGVyID0gY29lcmNlQm9vbGVhblByb3BlcnR5KHZhbHVlKTtcbiAgfVxuICBwcml2YXRlIF9zaG93VG9TY3JlZW5SZWFkZXIgPSBmYWxzZTtcblxuICBASG9zdEJpbmRpbmcoJ2F0dHIuYXJpYS1oaWRkZW4nKVxuICBwcml2YXRlIGdldCBfYXR0ckFyaWFIaWRkZW4oKSB7XG4gICAgcmV0dXJuIHRoaXMuc2hvd1RvU2NyZWVuUmVhZGVyID8gbnVsbCA6ICd0cnVlJztcbiAgfVxufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './label-suffix.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvbGFiZWwtc3VmZml4L3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYywwQkFBMEIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vbGFiZWwtc3VmZml4LmRpcmVjdGl2ZSc7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './label-suffix/public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2RpcmVjdGl2ZXMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDJCQUEyQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9sYWJlbC1zdWZmaXgvcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,4 @@
1
+ import { LabelComponent } from './components';
2
+ import { LabelSuffixDirective } from './directives';
3
+ export const LabelImports = [LabelComponent, LabelSuffixDirective];
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFiZWwuaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL2xhYmVsLmltcG9ydHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUM5QyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFFcEQsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHLENBQUMsY0FBYyxFQUFFLG9CQUFvQixDQUFVLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBMYWJlbENvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBMYWJlbFN1ZmZpeERpcmVjdGl2ZSB9IGZyb20gJy4vZGlyZWN0aXZlcyc7XG5cbmV4cG9ydCBjb25zdCBMYWJlbEltcG9ydHMgPSBbTGFiZWxDb21wb25lbnQsIExhYmVsU3VmZml4RGlyZWN0aXZlXSBhcyBjb25zdDtcbiJdfQ==
@@ -0,0 +1,4 @@
1
+ export * from './components/public-api';
2
+ export * from './directives/public-api';
3
+ export * from './label.imports';
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL2xhYmVsL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsaUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NvbXBvbmVudHMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xhYmVsLmltcG9ydHMnO1xuIl19
@@ -0,0 +1,10 @@
1
+ export * from './checkbox/public-api';
2
+ export * from './error/public-api';
3
+ export * from './input/public-api';
4
+ export * from './label/public-api';
5
+ export * from './radio/public-api';
6
+ export * from './segmented-button/public-api';
7
+ export * from './select/public-api';
8
+ export * from './slide-toggle/public-api';
9
+ export * from './slider/public-api';
10
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyxxQkFBcUIsQ0FBQztBQUNwQyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NoZWNrYm94L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9lcnJvci9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaW5wdXQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL2xhYmVsL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yYWRpby9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vc2VnbWVudGVkLWJ1dHRvbi9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vc2VsZWN0L3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9zbGlkZS10b2dnbGUvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3NsaWRlci9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9jb21wb25lbnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,4 @@
1
+ export * from './radio-field/public-api';
2
+ export * from './radio-group/public-api';
3
+ export * from './radio/public-api';
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcmFkaW8tZmllbGQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3JhZGlvLWdyb3VwL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yYWRpby9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './radio.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcmFkaW8vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby5jb21wb25lbnQnO1xuIl19
@@ -0,0 +1,27 @@
1
+ import { AsyncPipe, NgClass } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, inject, ViewEncapsulation } from '@angular/core';
3
+ import { InputDirective, NativeInputRefDirective } from '../../../../directives';
4
+ import { InputBase } from '../../../../utils';
5
+ import { RadioDirective, RADIO_GROUP_TOKEN, RADIO_TOKEN } from '../../directives';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "../../directives/radio/radio.directive";
8
+ import * as i2 from "../../../../directives/input/input.directive";
9
+ export class RadioComponent extends InputBase {
10
+ constructor() {
11
+ super(...arguments);
12
+ this.radio = inject(RADIO_TOKEN);
13
+ this.radioGroup = inject(RADIO_GROUP_TOKEN);
14
+ }
15
+ }
16
+ RadioComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
17
+ RadioComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioComponent, isStandalone: true, selector: "et-radio", host: { classAttribute: "et-radio" }, usesInheritance: true, hostDirectives: [{ directive: i1.RadioDirective, inputs: ["value", "value", "disabled", "disabled"] }, { directive: i2.InputDirective, inputs: ["autocomplete", "autocomplete"] }], ngImport: i0, template: "<input\n [attr.tabindex]=\"(radio.disabled$ | async) ? -1 : 0\"\n [attr.checked]=\"(radio.checked$ | async) || null\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [disabled]=\"radio.disabled$ | async\"\n [attr.id]=\"input.id\"\n [attr.name]=\"radioGroup.name\"\n (click)=\"radio._onInputInteraction($event)\"\n (blur)=\"radio._controlTouched()\"\n class=\"et-radio-native-input\"\n type=\"radio\"\n etNativeInputRef\n/>\n\n<div [ngClass]=\"{ 'et-radio-check--active': radio.checked$ | async }\" class=\"et-radio-check\"></div>\n", styles: [":where(.et-radio){--et-radio-size: 25px;--et-radio-check-size: 10px;--et-radio-border-radius: 50%;--et-radio-border-color: #e5e5e5;--et-radio-state-color: #e5e5e5;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);border:1px solid var(--et-radio-border-color);border-radius:var(--et-radio-border-radius);display:inline-grid}:where(.et-radio-check){inline-size:var(--et-radio-check-size);block-size:var(--et-radio-check-size);border-radius:var(--et-radio-border-radius)}:where(.et-radio-check).et-radio-check--active{background-color:var(--et-radio-state-color)}.et-radio{position:relative;align-items:center;justify-items:center}.et-radio-native-input,.et-radio-check{grid-area:1/1/2/2}.et-radio-native-input{z-index:1;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);opacity:0;margin:0;border:none}.et-radio:not(.et-radio--disabled) .et-radio-native-input{cursor:pointer}\n"], dependencies: [{ kind: "pipe", type: AsyncPipe, name: "async" }, { kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NativeInputRefDirective, selector: "input[etNativeInputRef], textarea[etNativeInputRef], select[etNativeInputRef], button[etNativeInputRef]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioComponent, decorators: [{
19
+ type: Component,
20
+ args: [{ selector: 'et-radio', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
21
+ class: 'et-radio',
22
+ }, imports: [AsyncPipe, NgClass, NativeInputRefDirective], hostDirectives: [
23
+ { directive: RadioDirective, inputs: ['value', 'disabled'] },
24
+ { directive: InputDirective, inputs: ['autocomplete'] },
25
+ ], template: "<input\n [attr.tabindex]=\"(radio.disabled$ | async) ? -1 : 0\"\n [attr.checked]=\"(radio.checked$ | async) || null\"\n [attr.aria-labelledby]=\"input.labelId$ | async\"\n [attr.aria-required]=\"(input.required$ | async) || null\"\n [disabled]=\"radio.disabled$ | async\"\n [attr.id]=\"input.id\"\n [attr.name]=\"radioGroup.name\"\n (click)=\"radio._onInputInteraction($event)\"\n (blur)=\"radio._controlTouched()\"\n class=\"et-radio-native-input\"\n type=\"radio\"\n etNativeInputRef\n/>\n\n<div [ngClass]=\"{ 'et-radio-check--active': radio.checked$ | async }\" class=\"et-radio-check\"></div>\n", styles: [":where(.et-radio){--et-radio-size: 25px;--et-radio-check-size: 10px;--et-radio-border-radius: 50%;--et-radio-border-color: #e5e5e5;--et-radio-state-color: #e5e5e5;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);border:1px solid var(--et-radio-border-color);border-radius:var(--et-radio-border-radius);display:inline-grid}:where(.et-radio-check){inline-size:var(--et-radio-check-size);block-size:var(--et-radio-check-size);border-radius:var(--et-radio-border-radius)}:where(.et-radio-check).et-radio-check--active{background-color:var(--et-radio-state-color)}.et-radio{position:relative;align-items:center;justify-items:center}.et-radio-native-input,.et-radio-check{grid-area:1/1/2/2}.et-radio-native-input{z-index:1;inline-size:var(--et-radio-size);block-size:var(--et-radio-size);opacity:0;margin:0;border:none}.et-radio:not(.et-radio--disabled) .et-radio-native-input{cursor:pointer}\n"] }]
26
+ }] });
27
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby9yYWRpby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9jb21wb25lbnRzL3JhZGlvL3JhZGlvLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsT0FBTyxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDckQsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDOUYsT0FBTyxFQUFFLGNBQWMsRUFBRSx1QkFBdUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBQ2pGLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxtQkFBbUIsQ0FBQztBQUM5QyxPQUFPLEVBQUUsY0FBYyxFQUFFLGlCQUFpQixFQUFFLFdBQVcsRUFBRSxNQUFNLGtCQUFrQixDQUFDOzs7O0FBa0JsRixNQUFNLE9BQU8sY0FBZSxTQUFRLFNBQVM7SUFoQjdDOztRQWlCcUIsVUFBSyxHQUFHLE1BQU0sQ0FBQyxXQUFXLENBQUMsQ0FBQztRQUM1QixlQUFVLEdBQUcsTUFBTSxDQUFDLGlCQUFpQixDQUFDLENBQUM7S0FDM0Q7OzJHQUhZLGNBQWM7K0ZBQWQsY0FBYyxxVEN0QjNCLG9tQkFnQkEsNjdCREFZLFNBQVMsOENBQUUsT0FBTyxvRkFBRSx1QkFBdUI7MkZBTTFDLGNBQWM7a0JBaEIxQixTQUFTOytCQUNFLFVBQVUsY0FHUixJQUFJLG1CQUNDLHVCQUF1QixDQUFDLE1BQU0saUJBQ2hDLGlCQUFpQixDQUFDLElBQUksUUFDL0I7d0JBQ0osS0FBSyxFQUFFLFVBQVU7cUJBQ2xCLFdBQ1EsQ0FBQyxTQUFTLEVBQUUsT0FBTyxFQUFFLHVCQUF1QixDQUFDLGtCQUN0Qzt3QkFDZCxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsT0FBTyxFQUFFLFVBQVUsQ0FBQyxFQUFFO3dCQUM1RCxFQUFFLFNBQVMsRUFBRSxjQUFjLEVBQUUsTUFBTSxFQUFFLENBQUMsY0FBYyxDQUFDLEVBQUU7cUJBQ3hEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQXN5bmNQaXBlLCBOZ0NsYXNzIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIGluamVjdCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBOYXRpdmVJbnB1dFJlZkRpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgSW5wdXRCYXNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vdXRpbHMnO1xuaW1wb3J0IHsgUmFkaW9EaXJlY3RpdmUsIFJBRElPX0dST1VQX1RPS0VOLCBSQURJT19UT0tFTiB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1yYWRpbycsXG4gIHRlbXBsYXRlVXJsOiAnLi9yYWRpby5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3JhZGlvLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1yYWRpbycsXG4gIH0sXG4gIGltcG9ydHM6IFtBc3luY1BpcGUsIE5nQ2xhc3MsIE5hdGl2ZUlucHV0UmVmRGlyZWN0aXZlXSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtcbiAgICB7IGRpcmVjdGl2ZTogUmFkaW9EaXJlY3RpdmUsIGlucHV0czogWyd2YWx1ZScsICdkaXNhYmxlZCddIH0sXG4gICAgeyBkaXJlY3RpdmU6IElucHV0RGlyZWN0aXZlLCBpbnB1dHM6IFsnYXV0b2NvbXBsZXRlJ10gfSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9Db21wb25lbnQgZXh0ZW5kcyBJbnB1dEJhc2Uge1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgcmFkaW8gPSBpbmplY3QoUkFESU9fVE9LRU4pO1xuICBwcm90ZWN0ZWQgcmVhZG9ubHkgcmFkaW9Hcm91cCA9IGluamVjdChSQURJT19HUk9VUF9UT0tFTik7XG59XG4iLCI8aW5wdXRcbiAgW2F0dHIudGFiaW5kZXhdPVwiKHJhZGlvLmRpc2FibGVkJCB8IGFzeW5jKSA/IC0xIDogMFwiXG4gIFthdHRyLmNoZWNrZWRdPVwiKHJhZGlvLmNoZWNrZWQkIHwgYXN5bmMpIHx8IG51bGxcIlxuICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiaW5wdXQubGFiZWxJZCQgfCBhc3luY1wiXG4gIFthdHRyLmFyaWEtcmVxdWlyZWRdPVwiKGlucHV0LnJlcXVpcmVkJCB8IGFzeW5jKSB8fCBudWxsXCJcbiAgW2Rpc2FibGVkXT1cInJhZGlvLmRpc2FibGVkJCB8IGFzeW5jXCJcbiAgW2F0dHIuaWRdPVwiaW5wdXQuaWRcIlxuICBbYXR0ci5uYW1lXT1cInJhZGlvR3JvdXAubmFtZVwiXG4gIChjbGljayk9XCJyYWRpby5fb25JbnB1dEludGVyYWN0aW9uKCRldmVudClcIlxuICAoYmx1cik9XCJyYWRpby5fY29udHJvbFRvdWNoZWQoKVwiXG4gIGNsYXNzPVwiZXQtcmFkaW8tbmF0aXZlLWlucHV0XCJcbiAgdHlwZT1cInJhZGlvXCJcbiAgZXROYXRpdmVJbnB1dFJlZlxuLz5cblxuPGRpdiBbbmdDbGFzc109XCJ7ICdldC1yYWRpby1jaGVjay0tYWN0aXZlJzogcmFkaW8uY2hlY2tlZCQgfCBhc3luYyB9XCIgY2xhc3M9XCJldC1yYWRpby1jaGVja1wiPjwvZGl2PlxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './radio-field.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcmFkaW8tZmllbGQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1maWVsZC5jb21wb25lbnQnO1xuIl19
@@ -0,0 +1,35 @@
1
+ import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';
2
+ import { StaticFormFieldDirective } from '../../../../directives';
3
+ import { RadioFieldDirective } from '../../directives';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "../../../../directives/static-form-field/static-form-field.directive";
6
+ import * as i2 from "../../directives/radio-field/radio-field.directive";
7
+ export class RadioFieldComponent {
8
+ }
9
+ RadioFieldComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10
+ RadioFieldComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioFieldComponent, isStandalone: true, selector: "et-radio-field", host: { classAttribute: "et-form-field et-radio-field" }, hostDirectives: [{ directive: i1.StaticFormFieldDirective }, { directive: i2.RadioFieldDirective }], ngImport: i0, template: `
11
+ <div class="et-radio-field-container">
12
+ <ng-content select="et-radio" />
13
+ <ng-content select="et-label" />
14
+ </div>
15
+ `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldComponent, decorators: [{
17
+ type: Component,
18
+ args: [{
19
+ selector: 'et-radio-field',
20
+ template: `
21
+ <div class="et-radio-field-container">
22
+ <ng-content select="et-radio" />
23
+ <ng-content select="et-label" />
24
+ </div>
25
+ `,
26
+ standalone: true,
27
+ changeDetection: ChangeDetectionStrategy.OnPush,
28
+ encapsulation: ViewEncapsulation.None,
29
+ host: {
30
+ class: 'et-form-field et-radio-field',
31
+ },
32
+ hostDirectives: [StaticFormFieldDirective, RadioFieldDirective],
33
+ }]
34
+ }] });
35
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby1maWVsZC9yYWRpby1maWVsZC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNsRSxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQzs7OztBQWtCdkQsTUFBTSxPQUFPLG1CQUFtQjs7Z0hBQW5CLG1CQUFtQjtvR0FBbkIsbUJBQW1CLHlPQWRwQjs7Ozs7R0FLVDsyRkFTVSxtQkFBbUI7a0JBaEIvQixTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxnQkFBZ0I7b0JBQzFCLFFBQVEsRUFBRTs7Ozs7R0FLVDtvQkFDRCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsZUFBZSxFQUFFLHVCQUF1QixDQUFDLE1BQU07b0JBQy9DLGFBQWEsRUFBRSxpQkFBaUIsQ0FBQyxJQUFJO29CQUNyQyxJQUFJLEVBQUU7d0JBQ0osS0FBSyxFQUFFLDhCQUE4QjtxQkFDdEM7b0JBQ0QsY0FBYyxFQUFFLENBQUMsd0JBQXdCLEVBQUUsbUJBQW1CLENBQUM7aUJBQ2hFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgVmlld0VuY2Fwc3VsYXRpb24gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFN0YXRpY0Zvcm1GaWVsZERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgUmFkaW9GaWVsZERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uL2RpcmVjdGl2ZXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdldC1yYWRpby1maWVsZCcsXG4gIHRlbXBsYXRlOiBgXG4gICAgPGRpdiBjbGFzcz1cImV0LXJhZGlvLWZpZWxkLWNvbnRhaW5lclwiPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZXQtcmFkaW9cIiAvPlxuICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiZXQtbGFiZWxcIiAvPlxuICAgIDwvZGl2PlxuICBgLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgZW5jYXBzdWxhdGlvbjogVmlld0VuY2Fwc3VsYXRpb24uTm9uZSxcbiAgaG9zdDoge1xuICAgIGNsYXNzOiAnZXQtZm9ybS1maWVsZCBldC1yYWRpby1maWVsZCcsXG4gIH0sXG4gIGhvc3REaXJlY3RpdmVzOiBbU3RhdGljRm9ybUZpZWxkRGlyZWN0aXZlLCBSYWRpb0ZpZWxkRGlyZWN0aXZlXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9GaWVsZENvbXBvbmVudCB7fVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './radio-group.component';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2NvbXBvbmVudHMvcmFkaW8tZ3JvdXAvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1ncm91cC5jb21wb25lbnQnO1xuIl19
@@ -0,0 +1,43 @@
1
+ import { AsyncPipe } from '@angular/common';
2
+ import { ChangeDetectionStrategy, Component, forwardRef, inject, ViewEncapsulation } from '@angular/core';
3
+ import { DynamicFormGroupDirective, StaticFormGroupDirective, WriteableInputDirective } from '../../../../directives';
4
+ import { InputStateService } from '../../../../services';
5
+ import { ErrorComponent } from '../../../error';
6
+ import { RadioGroupDirective } from '../../directives';
7
+ import * as i0 from "@angular/core";
8
+ import * as i1 from "../../../../directives/static-form-group/static-form-group.directive";
9
+ import * as i2 from "../../../../directives/writeable-input/writeable-input.directive";
10
+ import * as i3 from "../../../../directives/dynamic-form-group/dynamic-form-group.directive";
11
+ import * as i4 from "../../directives/radio-group/radio-group.directive";
12
+ export class RadioGroupComponent {
13
+ constructor() {
14
+ this.inputState = inject(InputStateService);
15
+ }
16
+ }
17
+ RadioGroupComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
18
+ RadioGroupComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.7", type: RadioGroupComponent, isStandalone: true, selector: "et-radio-group", host: { classAttribute: "et-form-group et-radio-group" }, hostDirectives: [{ directive: i1.StaticFormGroupDirective }, { directive: i2.WriteableInputDirective }, { directive: i0.forwardRef(function () { return i3.DynamicFormGroupDirective; }), inputs: ["hideErrorMessage", "hideErrorMessage"] }, { directive: i4.RadioGroupDirective }], ngImport: i0, template: `
19
+ <div class="et-radio-group-container">
20
+ <ng-content select="et-radio-field" />
21
+ </div>
22
+ <et-error [errors]="inputState.errors$ | async" />
23
+ `, isInline: true, styles: [":where(.et-radio-group){display:block}\n"], dependencies: [{ kind: "component", type: ErrorComponent, selector: "et-error", inputs: ["errors"] }, { kind: "pipe", type: AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None });
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupComponent, decorators: [{
25
+ type: Component,
26
+ args: [{ selector: 'et-radio-group', template: `
27
+ <div class="et-radio-group-container">
28
+ <ng-content select="et-radio-field" />
29
+ </div>
30
+ <et-error [errors]="inputState.errors$ | async" />
31
+ `, standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, host: {
32
+ class: 'et-form-group et-radio-group',
33
+ }, hostDirectives: [
34
+ StaticFormGroupDirective,
35
+ WriteableInputDirective,
36
+ {
37
+ directive: forwardRef(() => DynamicFormGroupDirective),
38
+ inputs: ['hideErrorMessage'],
39
+ },
40
+ RadioGroupDirective,
41
+ ], imports: [ErrorComponent, AsyncPipe], styles: [":where(.et-radio-group){display:block}\n"] }]
42
+ }] });
43
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZ3JvdXAuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vY29tcG9uZW50cy9yYWRpby1ncm91cC9yYWRpby1ncm91cC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVDLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRyxPQUFPLEVBQUUseUJBQXlCLEVBQUUsd0JBQXdCLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN0SCxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQztBQUN6RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDaEQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sa0JBQWtCLENBQUM7Ozs7OztBQTRCdkQsTUFBTSxPQUFPLG1CQUFtQjtJQTFCaEM7UUEyQnFCLGVBQVUsR0FBRyxNQUFNLENBQUMsaUJBQWlCLENBQUMsQ0FBQztLQUMzRDs7Z0hBRlksbUJBQW1CO29HQUFuQixtQkFBbUIsMFpBeEJwQjs7Ozs7R0FLVCxrSEFpQlMsY0FBYyxvRUFBRSxTQUFTOzJGQUV4QixtQkFBbUI7a0JBMUIvQixTQUFTOytCQUNFLGdCQUFnQixZQUNoQjs7Ozs7R0FLVCxjQUVXLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxpQkFDaEMsaUJBQWlCLENBQUMsSUFBSSxRQUMvQjt3QkFDSixLQUFLLEVBQUUsOEJBQThCO3FCQUN0QyxrQkFDZTt3QkFDZCx3QkFBd0I7d0JBQ3hCLHVCQUF1Qjt3QkFDdkI7NEJBQ0UsU0FBUyxFQUFFLFVBQVUsQ0FBQyxHQUFHLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQzs0QkFDdEQsTUFBTSxFQUFFLENBQUMsa0JBQWtCLENBQUM7eUJBQzdCO3dCQUNELG1CQUFtQjtxQkFDcEIsV0FDUSxDQUFDLGNBQWMsRUFBRSxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBc3luY1BpcGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgZm9yd2FyZFJlZiwgaW5qZWN0LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRHluYW1pY0Zvcm1Hcm91cERpcmVjdGl2ZSwgU3RhdGljRm9ybUdyb3VwRGlyZWN0aXZlLCBXcml0ZWFibGVJbnB1dERpcmVjdGl2ZSB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgSW5wdXRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBFcnJvckNvbXBvbmVudCB9IGZyb20gJy4uLy4uLy4uL2Vycm9yJztcbmltcG9ydCB7IFJhZGlvR3JvdXBEaXJlY3RpdmUgfSBmcm9tICcuLi8uLi9kaXJlY3RpdmVzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZXQtcmFkaW8tZ3JvdXAnLFxuICB0ZW1wbGF0ZTogYFxuICAgIDxkaXYgY2xhc3M9XCJldC1yYWRpby1ncm91cC1jb250YWluZXJcIj5cbiAgICAgIDxuZy1jb250ZW50IHNlbGVjdD1cImV0LXJhZGlvLWZpZWxkXCIgLz5cbiAgICA8L2Rpdj5cbiAgICA8ZXQtZXJyb3IgW2Vycm9yc109XCJpbnB1dFN0YXRlLmVycm9ycyQgfCBhc3luY1wiIC8+XG4gIGAsXG4gIHN0eWxlVXJsczogWycuL3JhZGlvLWdyb3VwLmNvbXBvbmVudC5zY3NzJ10sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBob3N0OiB7XG4gICAgY2xhc3M6ICdldC1mb3JtLWdyb3VwIGV0LXJhZGlvLWdyb3VwJyxcbiAgfSxcbiAgaG9zdERpcmVjdGl2ZXM6IFtcbiAgICBTdGF0aWNGb3JtR3JvdXBEaXJlY3RpdmUsXG4gICAgV3JpdGVhYmxlSW5wdXREaXJlY3RpdmUsXG4gICAge1xuICAgICAgZGlyZWN0aXZlOiBmb3J3YXJkUmVmKCgpID0+IER5bmFtaWNGb3JtR3JvdXBEaXJlY3RpdmUpLFxuICAgICAgaW5wdXRzOiBbJ2hpZGVFcnJvck1lc3NhZ2UnXSxcbiAgICB9LFxuICAgIFJhZGlvR3JvdXBEaXJlY3RpdmUsXG4gIF0sXG4gIGltcG9ydHM6IFtFcnJvckNvbXBvbmVudCwgQXN5bmNQaXBlXSxcbn0pXG5leHBvcnQgY2xhc3MgUmFkaW9Hcm91cENvbXBvbmVudCB7XG4gIHByb3RlY3RlZCByZWFkb25seSBpbnB1dFN0YXRlID0gaW5qZWN0KElucHV0U3RhdGVTZXJ2aWNlKTtcbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9kaXJlY3RpdmVzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,4 @@
1
+ export * from './radio-field/public-api';
2
+ export * from './radio-group/public-api';
3
+ export * from './radio/public-api';
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMsMEJBQTBCLENBQUM7QUFDekMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcmFkaW8tZmllbGQvcHVibGljLWFwaSc7XG5leHBvcnQgKiBmcm9tICcuL3JhZGlvLWdyb3VwL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9yYWRpby9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby9kaXJlY3RpdmVzL3JhZGlvL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export * from './radio.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcmFkaW8vcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,63 @@
1
+ import { coerceBooleanProperty } from '@angular/cdk/coercion';
2
+ import { Directive, inject, InjectionToken, Input } from '@angular/core';
3
+ import { createReactiveBindings, DestroyService } from '@ethlete/core';
4
+ import { BehaviorSubject, combineLatest, map } from 'rxjs';
5
+ import { INPUT_TOKEN } from '../../../../directives';
6
+ import * as i0 from "@angular/core";
7
+ export const RADIO_TOKEN = new InjectionToken('ET_RADIO_DIRECTIVE_TOKEN');
8
+ export class RadioDirective {
9
+ constructor() {
10
+ this.input = inject(INPUT_TOKEN);
11
+ this._value$ = new BehaviorSubject(null);
12
+ this._disabled$ = new BehaviorSubject(false);
13
+ this.checked$ = combineLatest([this.input.value$, this._value$]).pipe(map(([inputValue, value]) => inputValue === value));
14
+ this.disabled$ = combineLatest([this.input.disabled$, this._disabled$]).pipe(map(([inputDisabled, disabled]) => inputDisabled || disabled));
15
+ this._bindings = createReactiveBindings({
16
+ attribute: ['class.et-radio--checked'],
17
+ observable: this.checked$,
18
+ }, {
19
+ attribute: ['class.et-radio--disabled'],
20
+ observable: this.disabled$,
21
+ });
22
+ }
23
+ get value() {
24
+ return this._value$.getValue();
25
+ }
26
+ set value(value) {
27
+ this._value$.next(value);
28
+ }
29
+ get disabled() {
30
+ return this._disabled$.getValue();
31
+ }
32
+ set disabled(value) {
33
+ this._disabled$.next(coerceBooleanProperty(value));
34
+ }
35
+ _onInputInteraction(event) {
36
+ event.stopPropagation();
37
+ if (this.disabled) {
38
+ return;
39
+ }
40
+ this.input._updateValue(this.value);
41
+ this.input._markAsTouched();
42
+ this.input._setShouldDisplayError(true);
43
+ }
44
+ _controlTouched() {
45
+ this.input._markAsTouched();
46
+ this.input._setShouldDisplayError(true);
47
+ }
48
+ }
49
+ RadioDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
50
+ RadioDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RadioDirective, isStandalone: true, inputs: { value: "value", disabled: "disabled" }, providers: [{ provide: RADIO_TOKEN, useExisting: RadioDirective }, DestroyService], exportAs: ["etRadio"], ngImport: i0 });
51
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioDirective, decorators: [{
52
+ type: Directive,
53
+ args: [{
54
+ standalone: true,
55
+ providers: [{ provide: RADIO_TOKEN, useExisting: RadioDirective }, DestroyService],
56
+ exportAs: 'etRadio',
57
+ }]
58
+ }], propDecorators: { value: [{
59
+ type: Input
60
+ }], disabled: [{
61
+ type: Input
62
+ }] } });
63
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vZGlyZWN0aXZlcy9yYWRpby9yYWRpby5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFnQixxQkFBcUIsRUFBRSxNQUFNLHVCQUF1QixDQUFDO0FBQzVFLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLGNBQWMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN2RSxPQUFPLEVBQUUsZUFBZSxFQUFFLGFBQWEsRUFBRSxHQUFHLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDM0QsT0FBTyxFQUFrQixXQUFXLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQzs7QUFHckUsTUFBTSxDQUFDLE1BQU0sV0FBVyxHQUFHLElBQUksY0FBYyxDQUFpQiwwQkFBMEIsQ0FBQyxDQUFDO0FBTzFGLE1BQU0sT0FBTyxjQUFjO0lBTDNCO1FBTVcsVUFBSyxHQUFHLE1BQU0sQ0FBNkIsV0FBVyxDQUFDLENBQUM7UUFTekQsWUFBTyxHQUFHLElBQUksZUFBZSxDQUFhLElBQUksQ0FBQyxDQUFDO1FBU2hELGVBQVUsR0FBRyxJQUFJLGVBQWUsQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUV2QyxhQUFRLEdBQUcsYUFBYSxDQUFDLENBQUMsSUFBSSxDQUFDLEtBQUssQ0FBQyxNQUFNLEVBQUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUN2RSxHQUFHLENBQUMsQ0FBQyxDQUFDLFVBQVUsRUFBRSxLQUFLLENBQUMsRUFBRSxFQUFFLENBQUMsVUFBVSxLQUFLLEtBQUssQ0FBQyxDQUNuRCxDQUFDO1FBRU8sY0FBUyxHQUFHLGFBQWEsQ0FBQyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDOUUsR0FBRyxDQUFDLENBQUMsQ0FBQyxhQUFhLEVBQUUsUUFBUSxDQUFDLEVBQUUsRUFBRSxDQUFDLGFBQWEsSUFBSSxRQUFRLENBQUMsQ0FDOUQsQ0FBQztRQUVPLGNBQVMsR0FBRyxzQkFBc0IsQ0FDekM7WUFDRSxTQUFTLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztZQUN0QyxVQUFVLEVBQUUsSUFBSSxDQUFDLFFBQVE7U0FDMUIsRUFDRDtZQUNFLFNBQVMsRUFBRSxDQUFDLDBCQUEwQixDQUFDO1lBQ3ZDLFVBQVUsRUFBRSxJQUFJLENBQUMsU0FBUztTQUMzQixDQUNGLENBQUM7S0FtQkg7SUF0REMsSUFDSSxLQUFLO1FBQ1AsT0FBTyxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ2pDLENBQUM7SUFDRCxJQUFJLEtBQUssQ0FBQyxLQUFpQjtRQUN6QixJQUFJLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUMzQixDQUFDO0lBR0QsSUFDSSxRQUFRO1FBQ1YsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxDQUFDO0lBQ3BDLENBQUM7SUFDRCxJQUFJLFFBQVEsQ0FBQyxLQUFtQjtRQUM5QixJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQ3JELENBQUM7SUFzQkQsbUJBQW1CLENBQUMsS0FBWTtRQUM5QixLQUFLLENBQUMsZUFBZSxFQUFFLENBQUM7UUFFeEIsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2pCLE9BQU87U0FDUjtRQUVELElBQUksQ0FBQyxLQUFLLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUVwQyxJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQztJQUVELGVBQWU7UUFDYixJQUFJLENBQUMsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQzVCLElBQUksQ0FBQyxLQUFLLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDMUMsQ0FBQzs7MkdBeERVLGNBQWM7K0ZBQWQsY0FBYyxtRkFIZCxDQUFDLEVBQUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxXQUFXLEVBQUUsY0FBYyxFQUFFLEVBQUUsY0FBYyxDQUFDOzJGQUd2RSxjQUFjO2tCQUwxQixTQUFTO21CQUFDO29CQUNULFVBQVUsRUFBRSxJQUFJO29CQUNoQixTQUFTLEVBQUUsQ0FBQyxFQUFFLE9BQU8sRUFBRSxXQUFXLEVBQUUsV0FBVyxnQkFBZ0IsRUFBRSxFQUFFLGNBQWMsQ0FBQztvQkFDbEYsUUFBUSxFQUFFLFNBQVM7aUJBQ3BCOzhCQUtLLEtBQUs7c0JBRFIsS0FBSztnQkFVRixRQUFRO3NCQURYLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBCb29sZWFuSW5wdXQsIGNvZXJjZUJvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJ0Bhbmd1bGFyL2Nkay9jb2VyY2lvbic7XG5pbXBvcnQgeyBEaXJlY3RpdmUsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzLCBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgQmVoYXZpb3JTdWJqZWN0LCBjb21iaW5lTGF0ZXN0LCBtYXAgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7IElucHV0RGlyZWN0aXZlLCBJTlBVVF9UT0tFTiB9IGZyb20gJy4uLy4uLy4uLy4uL2RpcmVjdGl2ZXMnO1xuaW1wb3J0IHsgUmFkaW9WYWx1ZSB9IGZyb20gJy4uLy4uL3R5cGVzJztcblxuZXhwb3J0IGNvbnN0IFJBRElPX1RPS0VOID0gbmV3IEluamVjdGlvblRva2VuPFJhZGlvRGlyZWN0aXZlPignRVRfUkFESU9fRElSRUNUSVZFX1RPS0VOJyk7XG5cbkBEaXJlY3RpdmUoe1xuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IFJBRElPX1RPS0VOLCB1c2VFeGlzdGluZzogUmFkaW9EaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxuICBleHBvcnRBczogJ2V0UmFkaW8nLFxufSlcbmV4cG9ydCBjbGFzcyBSYWRpb0RpcmVjdGl2ZSB7XG4gIHJlYWRvbmx5IGlucHV0ID0gaW5qZWN0PElucHV0RGlyZWN0aXZlPFJhZGlvVmFsdWU+PihJTlBVVF9UT0tFTik7XG5cbiAgQElucHV0KClcbiAgZ2V0IHZhbHVlKCkge1xuICAgIHJldHVybiB0aGlzLl92YWx1ZSQuZ2V0VmFsdWUoKTtcbiAgfVxuICBzZXQgdmFsdWUodmFsdWU6IFJhZGlvVmFsdWUpIHtcbiAgICB0aGlzLl92YWx1ZSQubmV4dCh2YWx1ZSk7XG4gIH1cbiAgcHJpdmF0ZSBfdmFsdWUkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxSYWRpb1ZhbHVlPihudWxsKTtcblxuICBASW5wdXQoKVxuICBnZXQgZGlzYWJsZWQoKTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuX2Rpc2FibGVkJC5nZXRWYWx1ZSgpO1xuICB9XG4gIHNldCBkaXNhYmxlZCh2YWx1ZTogQm9vbGVhbklucHV0KSB7XG4gICAgdGhpcy5fZGlzYWJsZWQkLm5leHQoY29lcmNlQm9vbGVhblByb3BlcnR5KHZhbHVlKSk7XG4gIH1cbiAgcHJpdmF0ZSBfZGlzYWJsZWQkID0gbmV3IEJlaGF2aW9yU3ViamVjdChmYWxzZSk7XG5cbiAgcmVhZG9ubHkgY2hlY2tlZCQgPSBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LnZhbHVlJCwgdGhpcy5fdmFsdWUkXSkucGlwZShcbiAgICBtYXAoKFtpbnB1dFZhbHVlLCB2YWx1ZV0pID0+IGlucHV0VmFsdWUgPT09IHZhbHVlKSxcbiAgKTtcblxuICByZWFkb25seSBkaXNhYmxlZCQgPSBjb21iaW5lTGF0ZXN0KFt0aGlzLmlucHV0LmRpc2FibGVkJCwgdGhpcy5fZGlzYWJsZWQkXSkucGlwZShcbiAgICBtYXAoKFtpbnB1dERpc2FibGVkLCBkaXNhYmxlZF0pID0+IGlucHV0RGlzYWJsZWQgfHwgZGlzYWJsZWQpLFxuICApO1xuXG4gIHJlYWRvbmx5IF9iaW5kaW5ncyA9IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MoXG4gICAge1xuICAgICAgYXR0cmlidXRlOiBbJ2NsYXNzLmV0LXJhZGlvLS1jaGVja2VkJ10sXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLmNoZWNrZWQkLFxuICAgIH0sXG4gICAge1xuICAgICAgYXR0cmlidXRlOiBbJ2NsYXNzLmV0LXJhZGlvLS1kaXNhYmxlZCddLFxuICAgICAgb2JzZXJ2YWJsZTogdGhpcy5kaXNhYmxlZCQsXG4gICAgfSxcbiAgKTtcblxuICBfb25JbnB1dEludGVyYWN0aW9uKGV2ZW50OiBFdmVudCkge1xuICAgIGV2ZW50LnN0b3BQcm9wYWdhdGlvbigpO1xuXG4gICAgaWYgKHRoaXMuZGlzYWJsZWQpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICB0aGlzLmlucHV0Ll91cGRhdGVWYWx1ZSh0aGlzLnZhbHVlKTtcblxuICAgIHRoaXMuaW5wdXQuX21hcmtBc1RvdWNoZWQoKTtcbiAgICB0aGlzLmlucHV0Ll9zZXRTaG91bGREaXNwbGF5RXJyb3IodHJ1ZSk7XG4gIH1cblxuICBfY29udHJvbFRvdWNoZWQoKSB7XG4gICAgdGhpcy5pbnB1dC5fbWFya0FzVG91Y2hlZCgpO1xuICAgIHRoaXMuaW5wdXQuX3NldFNob3VsZERpc3BsYXlFcnJvcih0cnVlKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './radio-field.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcmFkaW8tZmllbGQvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1maWVsZC5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,40 @@
1
+ import { ContentChildren, Directive, forwardRef, inject, InjectionToken } from '@angular/core';
2
+ import { createReactiveBindings, DestroyService, TypedQueryList } from '@ethlete/core';
3
+ import { combineLatest, map, startWith, switchMap } from 'rxjs';
4
+ import { InputStateService } from '../../../../services';
5
+ import { RADIO_TOKEN } from '../radio';
6
+ import * as i0 from "@angular/core";
7
+ export const RADIO_FIELD_TOKEN = new InjectionToken('ET_RADIO_FIELD_DIRECTIVE_TOKEN');
8
+ export class RadioFieldDirective {
9
+ constructor() {
10
+ this.inputState = inject(InputStateService);
11
+ this._bindings = createReactiveBindings();
12
+ }
13
+ ngAfterContentInit() {
14
+ if (!this._radio) {
15
+ return;
16
+ }
17
+ this._bindings.push({
18
+ attribute: 'class.et-radio-field--checked',
19
+ observable: this._radio.changes.pipe(startWith(this._radio)).pipe(switchMap((radios) => combineLatest(radios.map((radio) => radio.checked$))), map((checked) => checked.some((value) => value))),
20
+ });
21
+ this._bindings.push({
22
+ attribute: 'class.et-radio-field--disabled',
23
+ observable: this._radio.changes.pipe(startWith(this._radio)).pipe(switchMap((radios) => combineLatest(radios.map((radio) => radio.disabled$))), map((disabled) => disabled.some((value) => value))),
24
+ });
25
+ }
26
+ }
27
+ RadioFieldDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
28
+ RadioFieldDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RadioFieldDirective, isStandalone: true, providers: [{ provide: RADIO_FIELD_TOKEN, useExisting: RadioFieldDirective }, DestroyService], queries: [{ propertyName: "_radio", predicate: i0.forwardRef(function () { return RADIO_TOKEN; }), descendants: true }], exportAs: ["etRadioField"], ngImport: i0 });
29
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioFieldDirective, decorators: [{
30
+ type: Directive,
31
+ args: [{
32
+ standalone: true,
33
+ providers: [{ provide: RADIO_FIELD_TOKEN, useExisting: RadioFieldDirective }, DestroyService],
34
+ exportAs: 'etRadioField',
35
+ }]
36
+ }], propDecorators: { _radio: [{
37
+ type: ContentChildren,
38
+ args: [forwardRef(() => RADIO_TOKEN), { descendants: true }]
39
+ }] } });
40
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZmllbGQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vZGlyZWN0aXZlcy9yYWRpby1maWVsZC9yYWRpby1maWVsZC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFvQixlQUFlLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2pILE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxjQUFjLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3ZGLE9BQU8sRUFBRSxhQUFhLEVBQUUsR0FBRyxFQUFFLFNBQVMsRUFBRSxTQUFTLEVBQUUsTUFBTSxNQUFNLENBQUM7QUFDaEUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sc0JBQXNCLENBQUM7QUFFekQsT0FBTyxFQUFFLFdBQVcsRUFBa0IsTUFBTSxVQUFVLENBQUM7O0FBRXZELE1BQU0sQ0FBQyxNQUFNLGlCQUFpQixHQUFHLElBQUksY0FBYyxDQUFzQixnQ0FBZ0MsQ0FBQyxDQUFDO0FBTzNHLE1BQU0sT0FBTyxtQkFBbUI7SUFMaEM7UUFNVyxlQUFVLEdBQUcsTUFBTSxDQUFnQyxpQkFBaUIsQ0FBQyxDQUFDO1FBRXRFLGNBQVMsR0FBRyxzQkFBc0IsRUFBRSxDQUFDO0tBMEIvQztJQXJCQyxrQkFBa0I7UUFDaEIsSUFBSSxDQUFDLElBQUksQ0FBQyxNQUFNLEVBQUU7WUFDaEIsT0FBTztTQUNSO1FBRUQsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUM7WUFDbEIsU0FBUyxFQUFFLCtCQUErQjtZQUMxQyxVQUFVLEVBQUUsSUFBSSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQy9ELFNBQVMsQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsYUFBYSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLEVBQzNFLEdBQUcsQ0FBQyxDQUFDLE9BQU8sRUFBRSxFQUFFLENBQUMsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FDakQ7U0FDRixDQUFDLENBQUM7UUFFSCxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQztZQUNsQixTQUFTLEVBQUUsZ0NBQWdDO1lBQzNDLFVBQVUsRUFBRSxJQUFJLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQyxJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FDL0QsU0FBUyxDQUFDLENBQUMsTUFBTSxFQUFFLEVBQUUsQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxDQUFDLEtBQUssRUFBRSxFQUFFLENBQUMsS0FBSyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsRUFDNUUsR0FBRyxDQUFDLENBQUMsUUFBUSxFQUFFLEVBQUUsQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLENBQUMsS0FBSyxFQUFFLEVBQUUsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUNuRDtTQUNGLENBQUMsQ0FBQztJQUNMLENBQUM7O2dIQTVCVSxtQkFBbUI7b0dBQW5CLG1CQUFtQixpQ0FIbkIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxXQUFXLEVBQUUsbUJBQW1CLEVBQUUsRUFBRSxjQUFjLENBQUMsb0ZBUTNELFdBQVc7MkZBTGxDLG1CQUFtQjtrQkFML0IsU0FBUzttQkFBQztvQkFDVCxVQUFVLEVBQUUsSUFBSTtvQkFDaEIsU0FBUyxFQUFFLENBQUMsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsV0FBVyxxQkFBcUIsRUFBRSxFQUFFLGNBQWMsQ0FBQztvQkFDN0YsUUFBUSxFQUFFLGNBQWM7aUJBQ3pCOzhCQU9TLE1BQU07c0JBRGIsZUFBZTt1QkFBQyxVQUFVLENBQUMsR0FBRyxFQUFFLENBQUMsV0FBVyxDQUFDLEVBQUUsRUFBRSxXQUFXLEVBQUUsSUFBSSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQWZ0ZXJDb250ZW50SW5pdCwgQ29udGVudENoaWxkcmVuLCBEaXJlY3RpdmUsIGZvcndhcmRSZWYsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MsIERlc3Ryb3lTZXJ2aWNlLCBUeXBlZFF1ZXJ5TGlzdCB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgY29tYmluZUxhdGVzdCwgbWFwLCBzdGFydFdpdGgsIHN3aXRjaE1hcCB9IGZyb20gJ3J4anMnO1xuaW1wb3J0IHsgSW5wdXRTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5pbXBvcnQgeyBSYWRpb1ZhbHVlIH0gZnJvbSAnLi4vLi4vdHlwZXMnO1xuaW1wb3J0IHsgUkFESU9fVE9LRU4sIFJhZGlvRGlyZWN0aXZlIH0gZnJvbSAnLi4vcmFkaW8nO1xuXG5leHBvcnQgY29uc3QgUkFESU9fRklFTERfVE9LRU4gPSBuZXcgSW5qZWN0aW9uVG9rZW48UmFkaW9GaWVsZERpcmVjdGl2ZT4oJ0VUX1JBRElPX0ZJRUxEX0RJUkVDVElWRV9UT0tFTicpO1xuXG5ARGlyZWN0aXZlKHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBSQURJT19GSUVMRF9UT0tFTiwgdXNlRXhpc3Rpbmc6IFJhZGlvRmllbGREaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxuICBleHBvcnRBczogJ2V0UmFkaW9GaWVsZCcsXG59KVxuZXhwb3J0IGNsYXNzIFJhZGlvRmllbGREaXJlY3RpdmUgaW1wbGVtZW50cyBBZnRlckNvbnRlbnRJbml0IHtcbiAgcmVhZG9ubHkgaW5wdXRTdGF0ZSA9IGluamVjdDxJbnB1dFN0YXRlU2VydmljZTxSYWRpb1ZhbHVlPj4oSW5wdXRTdGF0ZVNlcnZpY2UpO1xuXG4gIHJlYWRvbmx5IF9iaW5kaW5ncyA9IGNyZWF0ZVJlYWN0aXZlQmluZGluZ3MoKTtcblxuICBAQ29udGVudENoaWxkcmVuKGZvcndhcmRSZWYoKCkgPT4gUkFESU9fVE9LRU4pLCB7IGRlc2NlbmRhbnRzOiB0cnVlIH0pXG4gIHByaXZhdGUgX3JhZGlvPzogVHlwZWRRdWVyeUxpc3Q8UmFkaW9EaXJlY3RpdmU+O1xuXG4gIG5nQWZ0ZXJDb250ZW50SW5pdCgpOiB2b2lkIHtcbiAgICBpZiAoIXRoaXMuX3JhZGlvKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgdGhpcy5fYmluZGluZ3MucHVzaCh7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1yYWRpby1maWVsZC0tY2hlY2tlZCcsXG4gICAgICBvYnNlcnZhYmxlOiB0aGlzLl9yYWRpby5jaGFuZ2VzLnBpcGUoc3RhcnRXaXRoKHRoaXMuX3JhZGlvKSkucGlwZShcbiAgICAgICAgc3dpdGNoTWFwKChyYWRpb3MpID0+IGNvbWJpbmVMYXRlc3QocmFkaW9zLm1hcCgocmFkaW8pID0+IHJhZGlvLmNoZWNrZWQkKSkpLFxuICAgICAgICBtYXAoKGNoZWNrZWQpID0+IGNoZWNrZWQuc29tZSgodmFsdWUpID0+IHZhbHVlKSksXG4gICAgICApLFxuICAgIH0pO1xuXG4gICAgdGhpcy5fYmluZGluZ3MucHVzaCh7XG4gICAgICBhdHRyaWJ1dGU6ICdjbGFzcy5ldC1yYWRpby1maWVsZC0tZGlzYWJsZWQnLFxuICAgICAgb2JzZXJ2YWJsZTogdGhpcy5fcmFkaW8uY2hhbmdlcy5waXBlKHN0YXJ0V2l0aCh0aGlzLl9yYWRpbykpLnBpcGUoXG4gICAgICAgIHN3aXRjaE1hcCgocmFkaW9zKSA9PiBjb21iaW5lTGF0ZXN0KHJhZGlvcy5tYXAoKHJhZGlvKSA9PiByYWRpby5kaXNhYmxlZCQpKSksXG4gICAgICAgIG1hcCgoZGlzYWJsZWQpID0+IGRpc2FibGVkLnNvbWUoKHZhbHVlKSA9PiB2YWx1ZSkpLFxuICAgICAgKSxcbiAgICB9KTtcbiAgfVxufVxuIl19
@@ -0,0 +1,2 @@
1
+ export * from './radio-group.directive';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL2RpcmVjdGl2ZXMvcmFkaW8tZ3JvdXAvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9yYWRpby1ncm91cC5kaXJlY3RpdmUnO1xuIl19
@@ -0,0 +1,36 @@
1
+ import { Directive, inject, InjectionToken } from '@angular/core';
2
+ import { createReactiveBindings, DestroyService } from '@ethlete/core';
3
+ import { map } from 'rxjs';
4
+ import { FormGroupStateService } from '../../../../services';
5
+ import * as i0 from "@angular/core";
6
+ export const RADIO_GROUP_TOKEN = new InjectionToken('ET_RADIO_GROUP_DIRECTIVE_TOKEN');
7
+ let nextUniqueId = 0;
8
+ export class RadioGroupDirective {
9
+ constructor() {
10
+ this._formGroupStateService = inject(FormGroupStateService);
11
+ this.name = `et-radio-group-${++nextUniqueId}`;
12
+ this._bindings = createReactiveBindings({
13
+ attribute: 'aria-labelledby',
14
+ observable: this._formGroupStateService.describedBy$.pipe(map((describedBy) => {
15
+ return {
16
+ render: !!describedBy,
17
+ value: `${describedBy}`,
18
+ };
19
+ })),
20
+ });
21
+ }
22
+ }
23
+ RadioGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
24
+ RadioGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.7", type: RadioGroupDirective, isStandalone: true, host: { attributes: { "role": "radiogroup" } }, providers: [{ provide: RADIO_GROUP_TOKEN, useExisting: RadioGroupDirective }, DestroyService], exportAs: ["etRadioGroup"], ngImport: i0 });
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.7", ngImport: i0, type: RadioGroupDirective, decorators: [{
26
+ type: Directive,
27
+ args: [{
28
+ standalone: true,
29
+ providers: [{ provide: RADIO_GROUP_TOKEN, useExisting: RadioGroupDirective }, DestroyService],
30
+ exportAs: 'etRadioGroup',
31
+ host: {
32
+ role: 'radiogroup',
33
+ },
34
+ }]
35
+ }] });
36
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8tZ3JvdXAuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jZGsvc3JjL2xpYi9jb21wb25lbnRzL2Zvcm1zL2NvbXBvbmVudHMvcmFkaW8vZGlyZWN0aXZlcy9yYWRpby1ncm91cC9yYWRpby1ncm91cC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2xFLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDdkUsT0FBTyxFQUFFLEdBQUcsRUFBRSxNQUFNLE1BQU0sQ0FBQztBQUMzQixPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSxzQkFBc0IsQ0FBQzs7QUFFN0QsTUFBTSxDQUFDLE1BQU0saUJBQWlCLEdBQUcsSUFBSSxjQUFjLENBQXNCLGdDQUFnQyxDQUFDLENBQUM7QUFFM0csSUFBSSxZQUFZLEdBQUcsQ0FBQyxDQUFDO0FBVXJCLE1BQU0sT0FBTyxtQkFBbUI7SUFSaEM7UUFTbUIsMkJBQXNCLEdBQUcsTUFBTSxDQUFDLHFCQUFxQixDQUFDLENBQUM7UUFFL0QsU0FBSSxHQUFHLGtCQUFrQixFQUFFLFlBQVksRUFBRSxDQUFDO1FBRTFDLGNBQVMsR0FBRyxzQkFBc0IsQ0FBQztZQUMxQyxTQUFTLEVBQUUsaUJBQWlCO1lBQzVCLFVBQVUsRUFBRSxJQUFJLENBQUMsc0JBQXNCLENBQUMsWUFBWSxDQUFDLElBQUksQ0FDdkQsR0FBRyxDQUFDLENBQUMsV0FBVyxFQUFFLEVBQUU7Z0JBQ2xCLE9BQU87b0JBQ0wsTUFBTSxFQUFFLENBQUMsQ0FBQyxXQUFXO29CQUNyQixLQUFLLEVBQUUsR0FBRyxXQUFXLEVBQUU7aUJBQ3hCLENBQUM7WUFDSixDQUFDLENBQUMsQ0FDSDtTQUNGLENBQUMsQ0FBQztLQUNKOztnSEFoQlksbUJBQW1CO29HQUFuQixtQkFBbUIsaUZBTm5CLENBQUMsRUFBRSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsV0FBVyxFQUFFLG1CQUFtQixFQUFFLEVBQUUsY0FBYyxDQUFDOzJGQU1sRixtQkFBbUI7a0JBUi9CLFNBQVM7bUJBQUM7b0JBQ1QsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFNBQVMsRUFBRSxDQUFDLEVBQUUsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFdBQVcscUJBQXFCLEVBQUUsRUFBRSxjQUFjLENBQUM7b0JBQzdGLFFBQVEsRUFBRSxjQUFjO29CQUN4QixJQUFJLEVBQUU7d0JBQ0osSUFBSSxFQUFFLFlBQVk7cUJBQ25CO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBpbmplY3QsIEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzLCBEZXN0cm95U2VydmljZSB9IGZyb20gJ0BldGhsZXRlL2NvcmUnO1xuaW1wb3J0IHsgbWFwIH0gZnJvbSAncnhqcyc7XG5pbXBvcnQgeyBGb3JtR3JvdXBTdGF0ZVNlcnZpY2UgfSBmcm9tICcuLi8uLi8uLi8uLi9zZXJ2aWNlcyc7XG5cbmV4cG9ydCBjb25zdCBSQURJT19HUk9VUF9UT0tFTiA9IG5ldyBJbmplY3Rpb25Ub2tlbjxSYWRpb0dyb3VwRGlyZWN0aXZlPignRVRfUkFESU9fR1JPVVBfRElSRUNUSVZFX1RPS0VOJyk7XG5cbmxldCBuZXh0VW5pcXVlSWQgPSAwO1xuXG5ARGlyZWN0aXZlKHtcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBSQURJT19HUk9VUF9UT0tFTiwgdXNlRXhpc3Rpbmc6IFJhZGlvR3JvdXBEaXJlY3RpdmUgfSwgRGVzdHJveVNlcnZpY2VdLFxuICBleHBvcnRBczogJ2V0UmFkaW9Hcm91cCcsXG4gIGhvc3Q6IHtcbiAgICByb2xlOiAncmFkaW9ncm91cCcsXG4gIH0sXG59KVxuZXhwb3J0IGNsYXNzIFJhZGlvR3JvdXBEaXJlY3RpdmUge1xuICBwcml2YXRlIHJlYWRvbmx5IF9mb3JtR3JvdXBTdGF0ZVNlcnZpY2UgPSBpbmplY3QoRm9ybUdyb3VwU3RhdGVTZXJ2aWNlKTtcblxuICByZWFkb25seSBuYW1lID0gYGV0LXJhZGlvLWdyb3VwLSR7KytuZXh0VW5pcXVlSWR9YDtcblxuICByZWFkb25seSBfYmluZGluZ3MgPSBjcmVhdGVSZWFjdGl2ZUJpbmRpbmdzKHtcbiAgICBhdHRyaWJ1dGU6ICdhcmlhLWxhYmVsbGVkYnknLFxuICAgIG9ic2VydmFibGU6IHRoaXMuX2Zvcm1Hcm91cFN0YXRlU2VydmljZS5kZXNjcmliZWRCeSQucGlwZShcbiAgICAgIG1hcCgoZGVzY3JpYmVkQnkpID0+IHtcbiAgICAgICAgcmV0dXJuIHtcbiAgICAgICAgICByZW5kZXI6ICEhZGVzY3JpYmVkQnksXG4gICAgICAgICAgdmFsdWU6IGAke2Rlc2NyaWJlZEJ5fWAsXG4gICAgICAgIH07XG4gICAgICB9KSxcbiAgICApLFxuICB9KTtcbn1cbiJdfQ==
@@ -0,0 +1,5 @@
1
+ export * from './components/public-api';
2
+ export * from './directives/public-api';
3
+ export * from './radio.imports';
4
+ export * from './types/public-api';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsaUJBQWlCLENBQUM7QUFDaEMsY0FBYyxvQkFBb0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vcmFkaW8uaW1wb3J0cyc7XG5leHBvcnQgKiBmcm9tICcuL3R5cGVzL3B1YmxpYy1hcGknO1xuIl19
@@ -0,0 +1,3 @@
1
+ import { RadioComponent, RadioFieldComponent, RadioGroupComponent } from './components';
2
+ export const RadioImports = [RadioComponent, RadioFieldComponent, RadioGroupComponent];
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8uaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL3JhZGlvLmltcG9ydHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxtQkFBbUIsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUV4RixNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUcsQ0FBQyxjQUFjLEVBQUUsbUJBQW1CLEVBQUUsbUJBQW1CLENBQVUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFJhZGlvQ29tcG9uZW50LCBSYWRpb0ZpZWxkQ29tcG9uZW50LCBSYWRpb0dyb3VwQ29tcG9uZW50IH0gZnJvbSAnLi9jb21wb25lbnRzJztcblxuZXhwb3J0IGNvbnN0IFJhZGlvSW1wb3J0cyA9IFtSYWRpb0NvbXBvbmVudCwgUmFkaW9GaWVsZENvbXBvbmVudCwgUmFkaW9Hcm91cENvbXBvbmVudF0gYXMgY29uc3Q7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby90eXBlcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export * from './radio.types';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY2RrL3NyYy9saWIvY29tcG9uZW50cy9mb3Jtcy9jb21wb25lbnRzL3JhZGlvL3R5cGVzL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxlQUFlLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3JhZGlvLnR5cGVzJztcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmFkaW8udHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9yYWRpby90eXBlcy9yYWRpby50eXBlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHR5cGUgUmFkaW9WYWx1ZSA9IHN0cmluZyB8IG51bWJlciB8IGJvb2xlYW4gfCBudWxsO1xuIl19
@@ -0,0 +1,2 @@
1
+ export * from './public-api';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Nkay9zcmMvbGliL2NvbXBvbmVudHMvZm9ybXMvY29tcG9uZW50cy9zZWdtZW50ZWQtYnV0dG9uL2NvbXBvbmVudHMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19