@ng-atomic/components 2.0.0 → 3.1.0

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 (941) hide show
  1. package/atoms/chips-input/chips-input.module.d.ts +9 -7
  2. package/atoms/chips-input/package.json +5 -5
  3. package/atoms/smart-menu-button/package.json +5 -5
  4. package/atoms/smart-menu-button/smart-menu-button.module.d.ts +8 -6
  5. package/esm2020/atoms/chips-input/chips-input.atom.mjs +53 -0
  6. package/esm2020/atoms/chips-input/chips-input.module.mjs +48 -0
  7. package/esm2020/atoms/chips-input/chips.manager.mjs +32 -0
  8. package/esm2020/atoms/chips-input/index.mjs +3 -0
  9. package/esm2020/atoms/chips-input/ng-atomic-components-atoms-chips-input.mjs +5 -0
  10. package/esm2020/atoms/smart-menu-button/index.mjs +3 -0
  11. package/esm2020/atoms/smart-menu-button/ng-atomic-components-atoms-smart-menu-button.mjs +5 -0
  12. package/esm2020/atoms/smart-menu-button/smart-menu-button.atom.mjs +23 -0
  13. package/esm2020/atoms/smart-menu-button/smart-menu-button.module.mjs +42 -0
  14. package/esm2020/frames/auto-layout/auto-layout.frame.mjs +11 -0
  15. package/esm2020/frames/auto-layout/auto-layout.module.mjs +27 -0
  16. package/esm2020/frames/auto-layout/index.mjs +3 -0
  17. package/esm2020/frames/auto-layout/ng-atomic-components-frames-auto-layout.mjs +5 -0
  18. package/esm2020/frames/card/card.frame.mjs +12 -0
  19. package/esm2020/frames/card/card.module.mjs +34 -0
  20. package/esm2020/frames/card/index.mjs +3 -0
  21. package/esm2020/frames/card/ng-atomic-components-frames-card.mjs +5 -0
  22. package/esm2020/frames/drawer/drawer.frame.mjs +25 -0
  23. package/esm2020/frames/drawer/drawer.module.mjs +27 -0
  24. package/esm2020/frames/drawer/index.mjs +3 -0
  25. package/esm2020/frames/drawer/ng-atomic-components-frames-drawer.mjs +5 -0
  26. package/esm2020/frames/line-up/index.mjs +3 -0
  27. package/esm2020/frames/line-up/line-up.animations.mjs +67 -0
  28. package/esm2020/frames/line-up/line-up.frame.mjs +61 -0
  29. package/esm2020/frames/line-up/line-up.module.mjs +27 -0
  30. package/esm2020/frames/line-up/ng-atomic-components-frames-line-up.mjs +5 -0
  31. package/esm2020/frames/line-up/resize-observer.mjs +27 -0
  32. package/esm2020/frames/line-up-v2/index.mjs +3 -0
  33. package/esm2020/frames/line-up-v2/line-up.animations.mjs +64 -0
  34. package/esm2020/frames/line-up-v2/line-up.frame.mjs +90 -0
  35. package/esm2020/frames/line-up-v2/line-up.module.mjs +27 -0
  36. package/esm2020/frames/line-up-v2/ng-atomic-components-frames-line-up-v2.mjs +5 -0
  37. package/esm2020/frames/line-up-v2/resize-observer.mjs +13 -0
  38. package/esm2020/frames/overlay/index.mjs +3 -0
  39. package/esm2020/frames/overlay/ng-atomic-components-frames-overlay.mjs +5 -0
  40. package/esm2020/frames/overlay/overlay.animations.mjs +28 -0
  41. package/esm2020/frames/overlay/overlay.frame.mjs +26 -0
  42. package/esm2020/frames/overlay/overlay.module.mjs +29 -0
  43. package/esm2020/frames/overlay-v2/index.mjs +3 -0
  44. package/esm2020/frames/overlay-v2/ng-atomic-components-frames-overlay-v2.mjs +5 -0
  45. package/esm2020/frames/overlay-v2/overlay.animations.mjs +28 -0
  46. package/esm2020/frames/overlay-v2/overlay.frame.mjs +17 -0
  47. package/esm2020/frames/overlay-v2/overlay.module.mjs +29 -0
  48. package/esm2020/frames/scroll/index.mjs +3 -0
  49. package/esm2020/frames/scroll/ng-atomic-components-frames-scroll.mjs +5 -0
  50. package/esm2020/frames/scroll/scroll.frame.mjs +12 -0
  51. package/esm2020/frames/scroll/scroll.module.mjs +31 -0
  52. package/esm2020/frames/smart-menu/index.mjs +3 -0
  53. package/esm2020/frames/smart-menu/ng-atomic-components-frames-smart-menu.mjs +5 -0
  54. package/esm2020/frames/smart-menu/smart-menu.frame.mjs +33 -0
  55. package/esm2020/frames/smart-menu/smart-menu.module.mjs +23 -0
  56. package/esm2020/index.mjs +2 -0
  57. package/esm2020/molecules/actions-column/actions-column.module.mjs +53 -0
  58. package/esm2020/molecules/actions-column/actions-column.molecule.mjs +72 -0
  59. package/esm2020/molecules/actions-column/index.mjs +3 -0
  60. package/esm2020/molecules/actions-column/ng-atomic-components-molecules-actions-column.mjs +5 -0
  61. package/esm2020/molecules/checkbox-column/checkbox-column.module.mjs +43 -0
  62. package/esm2020/molecules/checkbox-column/checkbox-column.molecule.mjs +62 -0
  63. package/esm2020/molecules/checkbox-column/index.mjs +3 -0
  64. package/esm2020/molecules/checkbox-column/ng-atomic-components-molecules-checkbox-column.mjs +5 -0
  65. package/esm2020/molecules/chips-input-field/chips-input-field.module.mjs +34 -0
  66. package/esm2020/molecules/chips-input-field/chips-input-field.molecule.mjs +21 -0
  67. package/esm2020/molecules/chips-input-field/index.mjs +3 -0
  68. package/esm2020/molecules/chips-input-field/ng-atomic-components-molecules-chips-input-field.mjs +5 -0
  69. package/esm2020/molecules/date-input-field/date-input-field.module.mjs +40 -0
  70. package/esm2020/molecules/date-input-field/date-input-field.molecule.mjs +38 -0
  71. package/esm2020/molecules/date-input-field/index.mjs +3 -0
  72. package/esm2020/molecules/date-input-field/ng-atomic-components-molecules-date-input-field.mjs +5 -0
  73. package/esm2020/molecules/select-input-field/index.mjs +3 -0
  74. package/esm2020/molecules/select-input-field/ng-atomic-components-molecules-select-input-field.mjs +5 -0
  75. package/esm2020/molecules/select-input-field/select-input-field.module.mjs +38 -0
  76. package/esm2020/molecules/select-input-field/select-input-field.molecule.mjs +29 -0
  77. package/esm2020/molecules/smart-column/index.mjs +3 -0
  78. package/esm2020/molecules/smart-column/ng-atomic-components-molecules-smart-column.mjs +5 -0
  79. package/esm2020/molecules/smart-column/smart-column.module.mjs +45 -0
  80. package/esm2020/molecules/smart-column/smart-column.molecule.mjs +31 -0
  81. package/esm2020/molecules/text-input-field/index.mjs +3 -0
  82. package/esm2020/molecules/text-input-field/ng-atomic-components-molecules-text-input-field.mjs +5 -0
  83. package/esm2020/molecules/text-input-field/text-input-field.module.mjs +38 -0
  84. package/esm2020/molecules/text-input-field/text-input-field.molecule.mjs +34 -0
  85. package/esm2020/molecules/textarea-field/index.mjs +3 -0
  86. package/esm2020/molecules/textarea-field/ng-atomic-components-molecules-textarea-field.mjs +5 -0
  87. package/esm2020/molecules/textarea-field/textarea-field.module.mjs +30 -0
  88. package/esm2020/molecules/textarea-field/textarea-field.molecule.mjs +24 -0
  89. package/esm2020/ng-atomic-components.mjs +5 -0
  90. package/esm2020/organisms/action-buttons-section/action-buttons-section.module.mjs +34 -0
  91. package/esm2020/organisms/action-buttons-section/action-buttons-section.organism.mjs +22 -0
  92. package/esm2020/organisms/action-buttons-section/index.mjs +3 -0
  93. package/esm2020/organisms/action-buttons-section/ng-atomic-components-organisms-action-buttons-section.mjs +5 -0
  94. package/esm2020/organisms/back-navigator/back-navigator.module.mjs +49 -0
  95. package/esm2020/organisms/back-navigator/back-navigator.organism.mjs +34 -0
  96. package/esm2020/organisms/back-navigator/index.mjs +3 -0
  97. package/esm2020/organisms/back-navigator/ng-atomic-components-organisms-back-navigator.mjs +5 -0
  98. package/esm2020/organisms/card-input-section/card-input-section.module.mjs +30 -0
  99. package/esm2020/organisms/card-input-section/card-input-section.organism.mjs +24 -0
  100. package/esm2020/organisms/card-input-section/index.mjs +3 -0
  101. package/esm2020/organisms/card-input-section/ng-atomic-components-organisms-card-input-section.mjs +5 -0
  102. package/esm2020/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.module.mjs +34 -0
  103. package/esm2020/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.organism.mjs +29 -0
  104. package/esm2020/organisms/cvc-and-exp-input-section/index.mjs +3 -0
  105. package/esm2020/organisms/cvc-and-exp-input-section/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs +5 -0
  106. package/esm2020/organisms/date-input-section/date-input-section.module.mjs +31 -0
  107. package/esm2020/organisms/date-input-section/date-input-section.organism.mjs +24 -0
  108. package/esm2020/organisms/date-input-section/index.mjs +3 -0
  109. package/esm2020/organisms/date-input-section/ng-atomic-components-organisms-date-input-section.mjs +5 -0
  110. package/esm2020/organisms/heading/heading.module.mjs +27 -0
  111. package/esm2020/organisms/heading/heading.organism.mjs +17 -0
  112. package/esm2020/organisms/heading/index.mjs +3 -0
  113. package/esm2020/organisms/heading/ng-atomic-components-organisms-heading.mjs +5 -0
  114. package/esm2020/organisms/menu/index.mjs +3 -0
  115. package/esm2020/organisms/menu/menu.module.mjs +31 -0
  116. package/esm2020/organisms/menu/menu.organism.mjs +23 -0
  117. package/esm2020/organisms/menu/ng-atomic-components-organisms-menu.mjs +5 -0
  118. package/esm2020/organisms/navigator/index.mjs +3 -0
  119. package/esm2020/organisms/navigator/navigator.module.mjs +45 -0
  120. package/esm2020/organisms/navigator/navigator.organism.mjs +34 -0
  121. package/esm2020/organisms/navigator/ng-atomic-components-organisms-navigator.mjs +5 -0
  122. package/esm2020/organisms/paginator/index.mjs +3 -0
  123. package/esm2020/organisms/paginator/ng-atomic-components-organisms-paginator.mjs +5 -0
  124. package/esm2020/organisms/paginator/paginator.module.mjs +48 -0
  125. package/esm2020/organisms/paginator/paginator.organism.mjs +32 -0
  126. package/esm2020/organisms/select-input-section/index.mjs +3 -0
  127. package/esm2020/organisms/select-input-section/ng-atomic-components-organisms-select-input-section.mjs +5 -0
  128. package/esm2020/organisms/select-input-section/select-input-section.module.mjs +34 -0
  129. package/esm2020/organisms/select-input-section/select-input-section.organism.mjs +24 -0
  130. package/esm2020/organisms/smart-table/index.mjs +3 -0
  131. package/esm2020/organisms/smart-table/ng-atomic-components-organisms-smart-table.mjs +5 -0
  132. package/esm2020/organisms/smart-table/smart-table.module.mjs +76 -0
  133. package/esm2020/organisms/smart-table/smart-table.organism.mjs +59 -0
  134. package/esm2020/organisms/social-login-section/index.mjs +3 -0
  135. package/esm2020/organisms/social-login-section/ng-atomic-components-organisms-social-login-section.mjs +5 -0
  136. package/esm2020/organisms/social-login-section/social-login-section.module.mjs +38 -0
  137. package/esm2020/organisms/social-login-section/social-login-section.organism.mjs +17 -0
  138. package/esm2020/organisms/text-input-section/index.mjs +3 -0
  139. package/esm2020/organisms/text-input-section/ng-atomic-components-organisms-text-input-section.mjs +5 -0
  140. package/esm2020/organisms/text-input-section/text-input-section.module.mjs +38 -0
  141. package/esm2020/organisms/text-input-section/text-input-section.organism.mjs +29 -0
  142. package/esm2020/organisms/textarea-section/index.mjs +3 -0
  143. package/esm2020/organisms/textarea-section/ng-atomic-components-organisms-textarea-section.mjs +5 -0
  144. package/esm2020/organisms/textarea-section/textarea-section.module.mjs +30 -0
  145. package/esm2020/organisms/textarea-section/textarea-section.organism.mjs +17 -0
  146. package/esm2020/organisms/top-navigator/index.mjs +3 -0
  147. package/esm2020/organisms/top-navigator/ng-atomic-components-organisms-top-navigator.mjs +5 -0
  148. package/esm2020/organisms/top-navigator/top-navigator.module.mjs +49 -0
  149. package/esm2020/organisms/top-navigator/top-navigator.organism.mjs +24 -0
  150. package/esm2020/pages/_index/index.mjs +3 -0
  151. package/esm2020/pages/_index/index.module.mjs +38 -0
  152. package/esm2020/pages/_index/index.page.mjs +15 -0
  153. package/esm2020/pages/_index/ng-atomic-components-pages-_index.mjs +5 -0
  154. package/esm2020/pages/blank/blank.module.mjs +32 -0
  155. package/esm2020/pages/blank/blank.page.mjs +15 -0
  156. package/esm2020/pages/blank/blank.route.mjs +6 -0
  157. package/esm2020/pages/blank/index.mjs +4 -0
  158. package/esm2020/pages/blank/ng-atomic-components-pages-blank.mjs +5 -0
  159. package/esm2020/templates/entrance/entrance.module.mjs +57 -0
  160. package/esm2020/templates/entrance/entrance.template.mjs +42 -0
  161. package/esm2020/templates/entrance/index.mjs +3 -0
  162. package/esm2020/templates/entrance/ng-atomic-components-templates-entrance.mjs +5 -0
  163. package/esm2020/templates/loading/index.mjs +3 -0
  164. package/esm2020/templates/loading/loading.module.mjs +38 -0
  165. package/esm2020/templates/loading/loading.template.mjs +12 -0
  166. package/esm2020/templates/loading/ng-atomic-components-templates-loading.mjs +5 -0
  167. package/esm2020/templates/menu/index.mjs +3 -0
  168. package/esm2020/templates/menu/menu.module.mjs +34 -0
  169. package/esm2020/templates/menu/menu.template.mjs +20 -0
  170. package/esm2020/templates/menu/ng-atomic-components-templates-menu.mjs +5 -0
  171. package/esm2020/templates/smart-crud/index.mjs +3 -0
  172. package/esm2020/templates/smart-crud/ng-atomic-components-templates-smart-crud.mjs +5 -0
  173. package/esm2020/templates/smart-crud/smart-crud.module.mjs +80 -0
  174. package/esm2020/templates/smart-crud/smart-crud.template.mjs +71 -0
  175. package/esm2020/templates/smart-index/index.mjs +3 -0
  176. package/esm2020/templates/smart-index/ng-atomic-components-templates-smart-index.mjs +5 -0
  177. package/esm2020/templates/smart-index/smart-index.module.mjs +53 -0
  178. package/esm2020/templates/smart-index/smart-index.template.mjs +93 -0
  179. package/fesm2015/ng-atomic-components-atoms-chips-input.mjs +132 -0
  180. package/fesm2015/ng-atomic-components-atoms-chips-input.mjs.map +1 -0
  181. package/fesm2015/ng-atomic-components-atoms-smart-menu-button.mjs +69 -0
  182. package/fesm2015/ng-atomic-components-atoms-smart-menu-button.mjs.map +1 -0
  183. package/fesm2015/ng-atomic-components-frames-auto-layout.mjs +42 -0
  184. package/fesm2015/ng-atomic-components-frames-auto-layout.mjs.map +1 -0
  185. package/fesm2015/ng-atomic-components-frames-card.mjs +50 -0
  186. package/fesm2015/ng-atomic-components-frames-card.mjs.map +1 -0
  187. package/fesm2015/ng-atomic-components-frames-drawer.mjs +56 -0
  188. package/fesm2015/ng-atomic-components-frames-drawer.mjs.map +1 -0
  189. package/fesm2015/ng-atomic-components-frames-line-up-v2.mjs +194 -0
  190. package/fesm2015/ng-atomic-components-frames-line-up-v2.mjs.map +1 -0
  191. package/fesm2015/ng-atomic-components-frames-line-up.mjs +182 -0
  192. package/fesm2015/ng-atomic-components-frames-line-up.mjs.map +1 -0
  193. package/fesm2015/ng-atomic-components-frames-overlay-v2.mjs +77 -0
  194. package/fesm2015/ng-atomic-components-frames-overlay-v2.mjs.map +1 -0
  195. package/fesm2015/ng-atomic-components-frames-overlay.mjs +86 -0
  196. package/fesm2015/ng-atomic-components-frames-overlay.mjs.map +1 -0
  197. package/fesm2015/ng-atomic-components-frames-scroll.mjs +47 -0
  198. package/fesm2015/ng-atomic-components-frames-scroll.mjs.map +1 -0
  199. package/fesm2015/ng-atomic-components-frames-smart-menu.mjs +60 -0
  200. package/fesm2015/ng-atomic-components-frames-smart-menu.mjs.map +1 -0
  201. package/fesm2015/ng-atomic-components-molecules-actions-column.mjs +132 -0
  202. package/fesm2015/ng-atomic-components-molecules-actions-column.mjs.map +1 -0
  203. package/fesm2015/ng-atomic-components-molecules-checkbox-column.mjs +111 -0
  204. package/fesm2015/ng-atomic-components-molecules-checkbox-column.mjs.map +1 -0
  205. package/fesm2015/ng-atomic-components-molecules-chips-input-field.mjs +59 -0
  206. package/fesm2015/ng-atomic-components-molecules-chips-input-field.mjs.map +1 -0
  207. package/fesm2015/ng-atomic-components-molecules-date-input-field.mjs +82 -0
  208. package/fesm2015/ng-atomic-components-molecules-date-input-field.mjs.map +1 -0
  209. package/fesm2015/ng-atomic-components-molecules-select-input-field.mjs +71 -0
  210. package/fesm2015/ng-atomic-components-molecules-select-input-field.mjs.map +1 -0
  211. package/fesm2015/ng-atomic-components-molecules-smart-column.mjs +79 -0
  212. package/fesm2015/ng-atomic-components-molecules-smart-column.mjs.map +1 -0
  213. package/fesm2015/ng-atomic-components-molecules-text-input-field.mjs +75 -0
  214. package/fesm2015/ng-atomic-components-molecules-text-input-field.mjs.map +1 -0
  215. package/fesm2015/ng-atomic-components-molecules-textarea-field.mjs +58 -0
  216. package/fesm2015/ng-atomic-components-molecules-textarea-field.mjs.map +1 -0
  217. package/fesm2015/ng-atomic-components-organisms-action-buttons-section.mjs +60 -0
  218. package/fesm2015/ng-atomic-components-organisms-action-buttons-section.mjs.map +1 -0
  219. package/fesm2015/ng-atomic-components-organisms-back-navigator.mjs +87 -0
  220. package/fesm2015/ng-atomic-components-organisms-back-navigator.mjs.map +1 -0
  221. package/fesm2015/ng-atomic-components-organisms-card-input-section.mjs +58 -0
  222. package/fesm2015/ng-atomic-components-organisms-card-input-section.mjs.map +1 -0
  223. package/fesm2015/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs +67 -0
  224. package/fesm2015/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs.map +1 -0
  225. package/fesm2015/ng-atomic-components-organisms-date-input-section.mjs +59 -0
  226. package/fesm2015/ng-atomic-components-organisms-date-input-section.mjs.map +1 -0
  227. package/fesm2015/ng-atomic-components-organisms-heading.mjs +48 -0
  228. package/fesm2015/ng-atomic-components-organisms-heading.mjs.map +1 -0
  229. package/fesm2015/ng-atomic-components-organisms-menu.mjs +58 -0
  230. package/fesm2015/ng-atomic-components-organisms-menu.mjs.map +1 -0
  231. package/fesm2015/ng-atomic-components-organisms-navigator.mjs +83 -0
  232. package/fesm2015/ng-atomic-components-organisms-navigator.mjs.map +1 -0
  233. package/fesm2015/ng-atomic-components-organisms-paginator.mjs +83 -0
  234. package/fesm2015/ng-atomic-components-organisms-paginator.mjs.map +1 -0
  235. package/fesm2015/ng-atomic-components-organisms-select-input-section.mjs +62 -0
  236. package/fesm2015/ng-atomic-components-organisms-select-input-section.mjs.map +1 -0
  237. package/fesm2015/ng-atomic-components-organisms-smart-table.mjs +139 -0
  238. package/fesm2015/ng-atomic-components-organisms-smart-table.mjs.map +1 -0
  239. package/fesm2015/ng-atomic-components-organisms-social-login-section.mjs +59 -0
  240. package/fesm2015/ng-atomic-components-organisms-social-login-section.mjs.map +1 -0
  241. package/fesm2015/ng-atomic-components-organisms-text-input-section.mjs +71 -0
  242. package/fesm2015/ng-atomic-components-organisms-text-input-section.mjs.map +1 -0
  243. package/fesm2015/ng-atomic-components-organisms-textarea-section.mjs +51 -0
  244. package/fesm2015/ng-atomic-components-organisms-textarea-section.mjs.map +1 -0
  245. package/fesm2015/ng-atomic-components-organisms-top-navigator.mjs +77 -0
  246. package/fesm2015/ng-atomic-components-organisms-top-navigator.mjs.map +1 -0
  247. package/fesm2015/ng-atomic-components-pages-_index.mjs +57 -0
  248. package/fesm2015/ng-atomic-components-pages-_index.mjs.map +1 -0
  249. package/fesm2015/ng-atomic-components-pages-blank.mjs +62 -0
  250. package/fesm2015/ng-atomic-components-pages-blank.mjs.map +1 -0
  251. package/fesm2015/ng-atomic-components-templates-entrance.mjs +103 -0
  252. package/fesm2015/ng-atomic-components-templates-entrance.mjs.map +1 -0
  253. package/fesm2015/ng-atomic-components-templates-loading.mjs +54 -0
  254. package/fesm2015/ng-atomic-components-templates-loading.mjs.map +1 -0
  255. package/fesm2015/ng-atomic-components-templates-menu.mjs +58 -0
  256. package/fesm2015/ng-atomic-components-templates-menu.mjs.map +1 -0
  257. package/fesm2015/ng-atomic-components-templates-smart-crud.mjs +153 -0
  258. package/fesm2015/ng-atomic-components-templates-smart-crud.mjs.map +1 -0
  259. package/fesm2015/ng-atomic-components-templates-smart-index.mjs +149 -0
  260. package/fesm2015/ng-atomic-components-templates-smart-index.mjs.map +1 -0
  261. package/fesm2015/ng-atomic-components.mjs +4 -0
  262. package/fesm2015/ng-atomic-components.mjs.map +1 -0
  263. package/fesm2020/ng-atomic-components-atoms-chips-input.mjs +132 -0
  264. package/fesm2020/ng-atomic-components-atoms-chips-input.mjs.map +1 -0
  265. package/fesm2020/ng-atomic-components-atoms-smart-menu-button.mjs +69 -0
  266. package/fesm2020/ng-atomic-components-atoms-smart-menu-button.mjs.map +1 -0
  267. package/fesm2020/ng-atomic-components-frames-auto-layout.mjs +42 -0
  268. package/fesm2020/ng-atomic-components-frames-auto-layout.mjs.map +1 -0
  269. package/fesm2020/ng-atomic-components-frames-card.mjs +50 -0
  270. package/fesm2020/ng-atomic-components-frames-card.mjs.map +1 -0
  271. package/fesm2020/ng-atomic-components-frames-drawer.mjs +55 -0
  272. package/fesm2020/ng-atomic-components-frames-drawer.mjs.map +1 -0
  273. package/fesm2020/ng-atomic-components-frames-line-up-v2.mjs +193 -0
  274. package/fesm2020/ng-atomic-components-frames-line-up-v2.mjs.map +1 -0
  275. package/fesm2020/ng-atomic-components-frames-line-up.mjs +182 -0
  276. package/fesm2020/ng-atomic-components-frames-line-up.mjs.map +1 -0
  277. package/fesm2020/ng-atomic-components-frames-overlay-v2.mjs +77 -0
  278. package/fesm2020/ng-atomic-components-frames-overlay-v2.mjs.map +1 -0
  279. package/fesm2020/ng-atomic-components-frames-overlay.mjs +86 -0
  280. package/fesm2020/ng-atomic-components-frames-overlay.mjs.map +1 -0
  281. package/fesm2020/ng-atomic-components-frames-scroll.mjs +47 -0
  282. package/fesm2020/ng-atomic-components-frames-scroll.mjs.map +1 -0
  283. package/fesm2020/ng-atomic-components-frames-smart-menu.mjs +60 -0
  284. package/fesm2020/ng-atomic-components-frames-smart-menu.mjs.map +1 -0
  285. package/fesm2020/ng-atomic-components-molecules-actions-column.mjs +129 -0
  286. package/fesm2020/ng-atomic-components-molecules-actions-column.mjs.map +1 -0
  287. package/fesm2020/ng-atomic-components-molecules-checkbox-column.mjs +109 -0
  288. package/fesm2020/ng-atomic-components-molecules-checkbox-column.mjs.map +1 -0
  289. package/fesm2020/ng-atomic-components-molecules-chips-input-field.mjs +59 -0
  290. package/fesm2020/ng-atomic-components-molecules-chips-input-field.mjs.map +1 -0
  291. package/fesm2020/ng-atomic-components-molecules-date-input-field.mjs +82 -0
  292. package/fesm2020/ng-atomic-components-molecules-date-input-field.mjs.map +1 -0
  293. package/fesm2020/ng-atomic-components-molecules-select-input-field.mjs +71 -0
  294. package/fesm2020/ng-atomic-components-molecules-select-input-field.mjs.map +1 -0
  295. package/fesm2020/ng-atomic-components-molecules-smart-column.mjs +78 -0
  296. package/fesm2020/ng-atomic-components-molecules-smart-column.mjs.map +1 -0
  297. package/fesm2020/ng-atomic-components-molecules-text-input-field.mjs +75 -0
  298. package/fesm2020/ng-atomic-components-molecules-text-input-field.mjs.map +1 -0
  299. package/fesm2020/ng-atomic-components-molecules-textarea-field.mjs +58 -0
  300. package/fesm2020/ng-atomic-components-molecules-textarea-field.mjs.map +1 -0
  301. package/fesm2020/ng-atomic-components-organisms-action-buttons-section.mjs +60 -0
  302. package/fesm2020/ng-atomic-components-organisms-action-buttons-section.mjs.map +1 -0
  303. package/fesm2020/ng-atomic-components-organisms-back-navigator.mjs +87 -0
  304. package/fesm2020/ng-atomic-components-organisms-back-navigator.mjs.map +1 -0
  305. package/fesm2020/ng-atomic-components-organisms-card-input-section.mjs +58 -0
  306. package/fesm2020/ng-atomic-components-organisms-card-input-section.mjs.map +1 -0
  307. package/fesm2020/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs +67 -0
  308. package/fesm2020/ng-atomic-components-organisms-cvc-and-exp-input-section.mjs.map +1 -0
  309. package/fesm2020/ng-atomic-components-organisms-date-input-section.mjs +59 -0
  310. package/fesm2020/ng-atomic-components-organisms-date-input-section.mjs.map +1 -0
  311. package/fesm2020/ng-atomic-components-organisms-heading.mjs +48 -0
  312. package/fesm2020/ng-atomic-components-organisms-heading.mjs.map +1 -0
  313. package/fesm2020/ng-atomic-components-organisms-menu.mjs +58 -0
  314. package/fesm2020/ng-atomic-components-organisms-menu.mjs.map +1 -0
  315. package/fesm2020/ng-atomic-components-organisms-navigator.mjs +83 -0
  316. package/fesm2020/ng-atomic-components-organisms-navigator.mjs.map +1 -0
  317. package/fesm2020/ng-atomic-components-organisms-paginator.mjs +83 -0
  318. package/fesm2020/ng-atomic-components-organisms-paginator.mjs.map +1 -0
  319. package/fesm2020/ng-atomic-components-organisms-select-input-section.mjs +62 -0
  320. package/fesm2020/ng-atomic-components-organisms-select-input-section.mjs.map +1 -0
  321. package/fesm2020/ng-atomic-components-organisms-smart-table.mjs +139 -0
  322. package/fesm2020/ng-atomic-components-organisms-smart-table.mjs.map +1 -0
  323. package/fesm2020/ng-atomic-components-organisms-social-login-section.mjs +59 -0
  324. package/fesm2020/ng-atomic-components-organisms-social-login-section.mjs.map +1 -0
  325. package/fesm2020/ng-atomic-components-organisms-text-input-section.mjs +71 -0
  326. package/fesm2020/ng-atomic-components-organisms-text-input-section.mjs.map +1 -0
  327. package/fesm2020/ng-atomic-components-organisms-textarea-section.mjs +51 -0
  328. package/fesm2020/ng-atomic-components-organisms-textarea-section.mjs.map +1 -0
  329. package/fesm2020/ng-atomic-components-organisms-top-navigator.mjs +77 -0
  330. package/fesm2020/ng-atomic-components-organisms-top-navigator.mjs.map +1 -0
  331. package/fesm2020/ng-atomic-components-pages-_index.mjs +57 -0
  332. package/fesm2020/ng-atomic-components-pages-_index.mjs.map +1 -0
  333. package/fesm2020/ng-atomic-components-pages-blank.mjs +62 -0
  334. package/fesm2020/ng-atomic-components-pages-blank.mjs.map +1 -0
  335. package/fesm2020/ng-atomic-components-templates-entrance.mjs +103 -0
  336. package/fesm2020/ng-atomic-components-templates-entrance.mjs.map +1 -0
  337. package/fesm2020/ng-atomic-components-templates-loading.mjs +54 -0
  338. package/fesm2020/ng-atomic-components-templates-loading.mjs.map +1 -0
  339. package/fesm2020/ng-atomic-components-templates-menu.mjs +58 -0
  340. package/fesm2020/ng-atomic-components-templates-menu.mjs.map +1 -0
  341. package/fesm2020/ng-atomic-components-templates-smart-crud.mjs +154 -0
  342. package/fesm2020/ng-atomic-components-templates-smart-crud.mjs.map +1 -0
  343. package/fesm2020/ng-atomic-components-templates-smart-index.mjs +150 -0
  344. package/fesm2020/ng-atomic-components-templates-smart-index.mjs.map +1 -0
  345. package/fesm2020/ng-atomic-components.mjs +4 -0
  346. package/fesm2020/ng-atomic-components.mjs.map +1 -0
  347. package/frames/auto-layout/auto-layout.module.d.ts +2 -1
  348. package/frames/auto-layout/package.json +5 -5
  349. package/frames/card/card.module.d.ts +2 -1
  350. package/frames/card/package.json +5 -5
  351. package/frames/drawer/drawer.module.d.ts +2 -1
  352. package/frames/drawer/package.json +5 -5
  353. package/frames/line-up/line-up.module.d.ts +2 -1
  354. package/frames/line-up/package.json +5 -5
  355. package/frames/line-up-v2/line-up.module.d.ts +2 -1
  356. package/frames/line-up-v2/package.json +5 -5
  357. package/frames/overlay/overlay.module.d.ts +2 -1
  358. package/frames/overlay/package.json +5 -5
  359. package/frames/overlay-v2/overlay.module.d.ts +2 -1
  360. package/frames/overlay-v2/package.json +5 -5
  361. package/frames/scroll/package.json +5 -5
  362. package/frames/scroll/scroll.module.d.ts +2 -1
  363. package/frames/smart-menu/package.json +5 -5
  364. package/frames/smart-menu/smart-menu.module.d.ts +2 -1
  365. package/molecules/actions-column/actions-column.module.d.ts +2 -1
  366. package/molecules/actions-column/package.json +5 -5
  367. package/molecules/checkbox-column/checkbox-column.module.d.ts +2 -1
  368. package/molecules/checkbox-column/package.json +5 -5
  369. package/molecules/chips-input-field/chips-input-field.module.d.ts +2 -1
  370. package/molecules/chips-input-field/package.json +5 -5
  371. package/molecules/date-input-field/date-input-field.module.d.ts +2 -1
  372. package/molecules/date-input-field/package.json +5 -5
  373. package/molecules/select-input-field/package.json +5 -5
  374. package/molecules/select-input-field/select-input-field.module.d.ts +2 -1
  375. package/molecules/smart-column/package.json +5 -5
  376. package/molecules/smart-column/smart-column.module.d.ts +2 -1
  377. package/molecules/text-input-field/package.json +5 -5
  378. package/molecules/text-input-field/text-input-field.module.d.ts +2 -1
  379. package/molecules/textarea-field/package.json +5 -5
  380. package/molecules/textarea-field/textarea-field.module.d.ts +2 -1
  381. package/organisms/action-buttons-section/action-buttons-section.module.d.ts +2 -1
  382. package/organisms/action-buttons-section/package.json +5 -5
  383. package/organisms/back-navigator/back-navigator.module.d.ts +2 -1
  384. package/organisms/back-navigator/package.json +5 -5
  385. package/organisms/card-input-section/card-input-section.module.d.ts +2 -1
  386. package/organisms/card-input-section/package.json +5 -5
  387. package/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.module.d.ts +2 -1
  388. package/organisms/cvc-and-exp-input-section/package.json +5 -5
  389. package/organisms/date-input-section/date-input-section.module.d.ts +2 -1
  390. package/organisms/date-input-section/package.json +5 -5
  391. package/organisms/heading/heading.module.d.ts +2 -1
  392. package/organisms/heading/package.json +5 -5
  393. package/organisms/menu/menu.module.d.ts +2 -1
  394. package/organisms/menu/package.json +5 -5
  395. package/organisms/navigator/navigator.module.d.ts +2 -1
  396. package/organisms/navigator/package.json +5 -5
  397. package/organisms/paginator/package.json +5 -5
  398. package/organisms/paginator/paginator.module.d.ts +2 -1
  399. package/organisms/select-input-section/package.json +5 -5
  400. package/organisms/select-input-section/select-input-section.module.d.ts +2 -1
  401. package/organisms/smart-table/package.json +5 -5
  402. package/organisms/smart-table/smart-table.module.d.ts +14 -12
  403. package/organisms/social-login-section/package.json +5 -5
  404. package/organisms/social-login-section/social-login-section.module.d.ts +6 -4
  405. package/organisms/text-input-section/package.json +5 -5
  406. package/organisms/text-input-section/text-input-section.module.d.ts +6 -4
  407. package/organisms/textarea-section/package.json +5 -5
  408. package/organisms/textarea-section/textarea-section.module.d.ts +2 -1
  409. package/organisms/top-navigator/package.json +5 -5
  410. package/organisms/top-navigator/top-navigator.module.d.ts +8 -6
  411. package/package.json +353 -16
  412. package/pages/_index/index.module.d.ts +6 -4
  413. package/pages/_index/package.json +5 -5
  414. package/pages/blank/blank.module.d.ts +6 -4
  415. package/pages/blank/package.json +5 -5
  416. package/templates/entrance/entrance.module.d.ts +2 -1
  417. package/templates/entrance/package.json +5 -5
  418. package/templates/loading/loading.module.d.ts +6 -4
  419. package/templates/loading/package.json +5 -5
  420. package/templates/menu/menu.module.d.ts +6 -4
  421. package/templates/menu/package.json +5 -5
  422. package/templates/smart-crud/package.json +5 -5
  423. package/templates/smart-crud/smart-crud.module.d.ts +14 -12
  424. package/templates/smart-index/package.json +5 -5
  425. package/templates/smart-index/smart-index.module.d.ts +2 -1
  426. package/bundles/ng-atomic-components-atoms-chips-input.umd.js +0 -478
  427. package/bundles/ng-atomic-components-atoms-chips-input.umd.js.map +0 -1
  428. package/bundles/ng-atomic-components-atoms-smart-menu-button.umd.js +0 -97
  429. package/bundles/ng-atomic-components-atoms-smart-menu-button.umd.js.map +0 -1
  430. package/bundles/ng-atomic-components-frames-auto-layout.umd.js +0 -79
  431. package/bundles/ng-atomic-components-frames-auto-layout.umd.js.map +0 -1
  432. package/bundles/ng-atomic-components-frames-card.umd.js +0 -86
  433. package/bundles/ng-atomic-components-frames-card.umd.js.map +0 -1
  434. package/bundles/ng-atomic-components-frames-drawer.umd.js +0 -96
  435. package/bundles/ng-atomic-components-frames-drawer.umd.js.map +0 -1
  436. package/bundles/ng-atomic-components-frames-line-up-v2.umd.js +0 -559
  437. package/bundles/ng-atomic-components-frames-line-up-v2.umd.js.map +0 -1
  438. package/bundles/ng-atomic-components-frames-line-up.umd.js +0 -570
  439. package/bundles/ng-atomic-components-frames-line-up.umd.js.map +0 -1
  440. package/bundles/ng-atomic-components-frames-overlay-v2.umd.js +0 -111
  441. package/bundles/ng-atomic-components-frames-overlay-v2.umd.js.map +0 -1
  442. package/bundles/ng-atomic-components-frames-overlay.umd.js +0 -119
  443. package/bundles/ng-atomic-components-frames-overlay.umd.js.map +0 -1
  444. package/bundles/ng-atomic-components-frames-scroll.umd.js +0 -83
  445. package/bundles/ng-atomic-components-frames-scroll.umd.js.map +0 -1
  446. package/bundles/ng-atomic-components-frames-smart-menu.umd.js +0 -99
  447. package/bundles/ng-atomic-components-frames-smart-menu.umd.js.map +0 -1
  448. package/bundles/ng-atomic-components-molecules-actions-column.umd.js +0 -166
  449. package/bundles/ng-atomic-components-molecules-actions-column.umd.js.map +0 -1
  450. package/bundles/ng-atomic-components-molecules-checkbox-column.umd.js +0 -148
  451. package/bundles/ng-atomic-components-molecules-checkbox-column.umd.js.map +0 -1
  452. package/bundles/ng-atomic-components-molecules-chips-input-field.umd.js +0 -92
  453. package/bundles/ng-atomic-components-molecules-chips-input-field.umd.js.map +0 -1
  454. package/bundles/ng-atomic-components-molecules-date-input-field.umd.js +0 -113
  455. package/bundles/ng-atomic-components-molecules-date-input-field.umd.js.map +0 -1
  456. package/bundles/ng-atomic-components-molecules-select-input-field.umd.js +0 -104
  457. package/bundles/ng-atomic-components-molecules-select-input-field.umd.js.map +0 -1
  458. package/bundles/ng-atomic-components-molecules-smart-column.umd.js +0 -430
  459. package/bundles/ng-atomic-components-molecules-smart-column.umd.js.map +0 -1
  460. package/bundles/ng-atomic-components-molecules-text-input-field.umd.js +0 -108
  461. package/bundles/ng-atomic-components-molecules-text-input-field.umd.js.map +0 -1
  462. package/bundles/ng-atomic-components-molecules-textarea-field.umd.js +0 -93
  463. package/bundles/ng-atomic-components-molecules-textarea-field.umd.js.map +0 -1
  464. package/bundles/ng-atomic-components-organisms-action-buttons-section.umd.js +0 -95
  465. package/bundles/ng-atomic-components-organisms-action-buttons-section.umd.js.map +0 -1
  466. package/bundles/ng-atomic-components-organisms-back-navigator.umd.js +0 -118
  467. package/bundles/ng-atomic-components-organisms-back-navigator.umd.js.map +0 -1
  468. package/bundles/ng-atomic-components-organisms-card-input-section.umd.js +0 -91
  469. package/bundles/ng-atomic-components-organisms-card-input-section.umd.js.map +0 -1
  470. package/bundles/ng-atomic-components-organisms-cvc-and-exp-input-section.umd.js +0 -416
  471. package/bundles/ng-atomic-components-organisms-cvc-and-exp-input-section.umd.js.map +0 -1
  472. package/bundles/ng-atomic-components-organisms-date-input-section.umd.js +0 -93
  473. package/bundles/ng-atomic-components-organisms-date-input-section.umd.js.map +0 -1
  474. package/bundles/ng-atomic-components-organisms-heading.umd.js +0 -83
  475. package/bundles/ng-atomic-components-organisms-heading.umd.js.map +0 -1
  476. package/bundles/ng-atomic-components-organisms-menu.umd.js +0 -91
  477. package/bundles/ng-atomic-components-organisms-menu.umd.js.map +0 -1
  478. package/bundles/ng-atomic-components-organisms-navigator.umd.js +0 -114
  479. package/bundles/ng-atomic-components-organisms-navigator.umd.js.map +0 -1
  480. package/bundles/ng-atomic-components-organisms-paginator.umd.js +0 -115
  481. package/bundles/ng-atomic-components-organisms-paginator.umd.js.map +0 -1
  482. package/bundles/ng-atomic-components-organisms-select-input-section.umd.js +0 -95
  483. package/bundles/ng-atomic-components-organisms-select-input-section.umd.js.map +0 -1
  484. package/bundles/ng-atomic-components-organisms-smart-table.umd.js +0 -484
  485. package/bundles/ng-atomic-components-organisms-smart-table.umd.js.map +0 -1
  486. package/bundles/ng-atomic-components-organisms-social-login-section.umd.js +0 -89
  487. package/bundles/ng-atomic-components-organisms-social-login-section.umd.js.map +0 -1
  488. package/bundles/ng-atomic-components-organisms-text-input-section.umd.js +0 -99
  489. package/bundles/ng-atomic-components-organisms-text-input-section.umd.js.map +0 -1
  490. package/bundles/ng-atomic-components-organisms-textarea-section.umd.js +0 -85
  491. package/bundles/ng-atomic-components-organisms-textarea-section.umd.js.map +0 -1
  492. package/bundles/ng-atomic-components-organisms-top-navigator.umd.js +0 -105
  493. package/bundles/ng-atomic-components-organisms-top-navigator.umd.js.map +0 -1
  494. package/bundles/ng-atomic-components-pages-_index.umd.js +0 -84
  495. package/bundles/ng-atomic-components-pages-_index.umd.js.map +0 -1
  496. package/bundles/ng-atomic-components-pages-blank.umd.js +0 -90
  497. package/bundles/ng-atomic-components-pages-blank.umd.js.map +0 -1
  498. package/bundles/ng-atomic-components-templates-entrance.umd.js +0 -132
  499. package/bundles/ng-atomic-components-templates-entrance.umd.js.map +0 -1
  500. package/bundles/ng-atomic-components-templates-loading.umd.js +0 -86
  501. package/bundles/ng-atomic-components-templates-loading.umd.js.map +0 -1
  502. package/bundles/ng-atomic-components-templates-menu.umd.js +0 -88
  503. package/bundles/ng-atomic-components-templates-menu.umd.js.map +0 -1
  504. package/bundles/ng-atomic-components-templates-smart-crud.umd.js +0 -507
  505. package/bundles/ng-atomic-components-templates-smart-crud.umd.js.map +0 -1
  506. package/bundles/ng-atomic-components-templates-smart-index.umd.js +0 -192
  507. package/bundles/ng-atomic-components-templates-smart-index.umd.js.map +0 -1
  508. package/bundles/ng-atomic-components.umd.js +0 -11
  509. package/bundles/ng-atomic-components.umd.js.map +0 -1
  510. package/esm2015/atoms/chips-input/chips-input.atom.js +0 -57
  511. package/esm2015/atoms/chips-input/chips-input.atom.js.map +0 -1
  512. package/esm2015/atoms/chips-input/chips-input.module.js +0 -43
  513. package/esm2015/atoms/chips-input/chips-input.module.js.map +0 -1
  514. package/esm2015/atoms/chips-input/chips.manager.js +0 -32
  515. package/esm2015/atoms/chips-input/chips.manager.js.map +0 -1
  516. package/esm2015/atoms/chips-input/index.js +0 -3
  517. package/esm2015/atoms/chips-input/index.js.map +0 -1
  518. package/esm2015/atoms/chips-input/ng-atomic-components-atoms-chips-input.js +0 -5
  519. package/esm2015/atoms/chips-input/ng-atomic-components-atoms-chips-input.js.map +0 -1
  520. package/esm2015/atoms/smart-menu-button/index.js +0 -3
  521. package/esm2015/atoms/smart-menu-button/index.js.map +0 -1
  522. package/esm2015/atoms/smart-menu-button/ng-atomic-components-atoms-smart-menu-button.js +0 -5
  523. package/esm2015/atoms/smart-menu-button/ng-atomic-components-atoms-smart-menu-button.js.map +0 -1
  524. package/esm2015/atoms/smart-menu-button/smart-menu-button.atom.js +0 -28
  525. package/esm2015/atoms/smart-menu-button/smart-menu-button.atom.js.map +0 -1
  526. package/esm2015/atoms/smart-menu-button/smart-menu-button.module.js +0 -37
  527. package/esm2015/atoms/smart-menu-button/smart-menu-button.module.js.map +0 -1
  528. package/esm2015/frames/auto-layout/auto-layout.frame.js +0 -16
  529. package/esm2015/frames/auto-layout/auto-layout.frame.js.map +0 -1
  530. package/esm2015/frames/auto-layout/auto-layout.module.js +0 -26
  531. package/esm2015/frames/auto-layout/auto-layout.module.js.map +0 -1
  532. package/esm2015/frames/auto-layout/index.js +0 -3
  533. package/esm2015/frames/auto-layout/index.js.map +0 -1
  534. package/esm2015/frames/auto-layout/ng-atomic-components-frames-auto-layout.js +0 -5
  535. package/esm2015/frames/auto-layout/ng-atomic-components-frames-auto-layout.js.map +0 -1
  536. package/esm2015/frames/card/card.frame.js +0 -17
  537. package/esm2015/frames/card/card.frame.js.map +0 -1
  538. package/esm2015/frames/card/card.module.js +0 -33
  539. package/esm2015/frames/card/card.module.js.map +0 -1
  540. package/esm2015/frames/card/index.js +0 -3
  541. package/esm2015/frames/card/index.js.map +0 -1
  542. package/esm2015/frames/card/ng-atomic-components-frames-card.js +0 -5
  543. package/esm2015/frames/card/ng-atomic-components-frames-card.js.map +0 -1
  544. package/esm2015/frames/drawer/drawer.frame.js +0 -31
  545. package/esm2015/frames/drawer/drawer.frame.js.map +0 -1
  546. package/esm2015/frames/drawer/drawer.module.js +0 -26
  547. package/esm2015/frames/drawer/drawer.module.js.map +0 -1
  548. package/esm2015/frames/drawer/index.js +0 -3
  549. package/esm2015/frames/drawer/index.js.map +0 -1
  550. package/esm2015/frames/drawer/ng-atomic-components-frames-drawer.js +0 -5
  551. package/esm2015/frames/drawer/ng-atomic-components-frames-drawer.js.map +0 -1
  552. package/esm2015/frames/line-up/index.js +0 -3
  553. package/esm2015/frames/line-up/index.js.map +0 -1
  554. package/esm2015/frames/line-up/line-up.animations.js +0 -67
  555. package/esm2015/frames/line-up/line-up.animations.js.map +0 -1
  556. package/esm2015/frames/line-up/line-up.frame.js +0 -68
  557. package/esm2015/frames/line-up/line-up.frame.js.map +0 -1
  558. package/esm2015/frames/line-up/line-up.module.js +0 -26
  559. package/esm2015/frames/line-up/line-up.module.js.map +0 -1
  560. package/esm2015/frames/line-up/ng-atomic-components-frames-line-up.js +0 -5
  561. package/esm2015/frames/line-up/ng-atomic-components-frames-line-up.js.map +0 -1
  562. package/esm2015/frames/line-up/resize-observer.js +0 -27
  563. package/esm2015/frames/line-up/resize-observer.js.map +0 -1
  564. package/esm2015/frames/line-up-v2/index.js +0 -3
  565. package/esm2015/frames/line-up-v2/index.js.map +0 -1
  566. package/esm2015/frames/line-up-v2/line-up.animations.js +0 -64
  567. package/esm2015/frames/line-up-v2/line-up.animations.js.map +0 -1
  568. package/esm2015/frames/line-up-v2/line-up.frame.js +0 -97
  569. package/esm2015/frames/line-up-v2/line-up.frame.js.map +0 -1
  570. package/esm2015/frames/line-up-v2/line-up.module.js +0 -26
  571. package/esm2015/frames/line-up-v2/line-up.module.js.map +0 -1
  572. package/esm2015/frames/line-up-v2/ng-atomic-components-frames-line-up-v2.js +0 -5
  573. package/esm2015/frames/line-up-v2/ng-atomic-components-frames-line-up-v2.js.map +0 -1
  574. package/esm2015/frames/line-up-v2/resize-observer.js +0 -13
  575. package/esm2015/frames/line-up-v2/resize-observer.js.map +0 -1
  576. package/esm2015/frames/overlay/index.js +0 -3
  577. package/esm2015/frames/overlay/index.js.map +0 -1
  578. package/esm2015/frames/overlay/ng-atomic-components-frames-overlay.js +0 -5
  579. package/esm2015/frames/overlay/ng-atomic-components-frames-overlay.js.map +0 -1
  580. package/esm2015/frames/overlay/overlay.animations.js +0 -28
  581. package/esm2015/frames/overlay/overlay.animations.js.map +0 -1
  582. package/esm2015/frames/overlay/overlay.frame.js +0 -32
  583. package/esm2015/frames/overlay/overlay.frame.js.map +0 -1
  584. package/esm2015/frames/overlay/overlay.module.js +0 -28
  585. package/esm2015/frames/overlay/overlay.module.js.map +0 -1
  586. package/esm2015/frames/overlay-v2/index.js +0 -3
  587. package/esm2015/frames/overlay-v2/index.js.map +0 -1
  588. package/esm2015/frames/overlay-v2/ng-atomic-components-frames-overlay-v2.js +0 -5
  589. package/esm2015/frames/overlay-v2/ng-atomic-components-frames-overlay-v2.js.map +0 -1
  590. package/esm2015/frames/overlay-v2/overlay.animations.js +0 -28
  591. package/esm2015/frames/overlay-v2/overlay.animations.js.map +0 -1
  592. package/esm2015/frames/overlay-v2/overlay.frame.js +0 -23
  593. package/esm2015/frames/overlay-v2/overlay.frame.js.map +0 -1
  594. package/esm2015/frames/overlay-v2/overlay.module.js +0 -28
  595. package/esm2015/frames/overlay-v2/overlay.module.js.map +0 -1
  596. package/esm2015/frames/scroll/index.js +0 -3
  597. package/esm2015/frames/scroll/index.js.map +0 -1
  598. package/esm2015/frames/scroll/ng-atomic-components-frames-scroll.js +0 -5
  599. package/esm2015/frames/scroll/ng-atomic-components-frames-scroll.js.map +0 -1
  600. package/esm2015/frames/scroll/scroll.frame.js +0 -17
  601. package/esm2015/frames/scroll/scroll.frame.js.map +0 -1
  602. package/esm2015/frames/scroll/scroll.module.js +0 -30
  603. package/esm2015/frames/scroll/scroll.module.js.map +0 -1
  604. package/esm2015/frames/smart-menu/index.js +0 -3
  605. package/esm2015/frames/smart-menu/index.js.map +0 -1
  606. package/esm2015/frames/smart-menu/ng-atomic-components-frames-smart-menu.js +0 -5
  607. package/esm2015/frames/smart-menu/ng-atomic-components-frames-smart-menu.js.map +0 -1
  608. package/esm2015/frames/smart-menu/smart-menu.frame.js +0 -39
  609. package/esm2015/frames/smart-menu/smart-menu.frame.js.map +0 -1
  610. package/esm2015/frames/smart-menu/smart-menu.module.js +0 -22
  611. package/esm2015/frames/smart-menu/smart-menu.module.js.map +0 -1
  612. package/esm2015/index.js +0 -2
  613. package/esm2015/index.js.map +0 -1
  614. package/esm2015/molecules/actions-column/actions-column.module.js +0 -52
  615. package/esm2015/molecules/actions-column/actions-column.module.js.map +0 -1
  616. package/esm2015/molecules/actions-column/actions-column.molecule.js +0 -79
  617. package/esm2015/molecules/actions-column/actions-column.molecule.js.map +0 -1
  618. package/esm2015/molecules/actions-column/index.js +0 -3
  619. package/esm2015/molecules/actions-column/index.js.map +0 -1
  620. package/esm2015/molecules/actions-column/ng-atomic-components-molecules-actions-column.js +0 -5
  621. package/esm2015/molecules/actions-column/ng-atomic-components-molecules-actions-column.js.map +0 -1
  622. package/esm2015/molecules/checkbox-column/checkbox-column.module.js +0 -42
  623. package/esm2015/molecules/checkbox-column/checkbox-column.module.js.map +0 -1
  624. package/esm2015/molecules/checkbox-column/checkbox-column.molecule.js +0 -68
  625. package/esm2015/molecules/checkbox-column/checkbox-column.molecule.js.map +0 -1
  626. package/esm2015/molecules/checkbox-column/index.js +0 -3
  627. package/esm2015/molecules/checkbox-column/index.js.map +0 -1
  628. package/esm2015/molecules/checkbox-column/ng-atomic-components-molecules-checkbox-column.js +0 -5
  629. package/esm2015/molecules/checkbox-column/ng-atomic-components-molecules-checkbox-column.js.map +0 -1
  630. package/esm2015/molecules/chips-input-field/chips-input-field.module.js +0 -33
  631. package/esm2015/molecules/chips-input-field/chips-input-field.module.js.map +0 -1
  632. package/esm2015/molecules/chips-input-field/chips-input-field.molecule.js +0 -26
  633. package/esm2015/molecules/chips-input-field/chips-input-field.molecule.js.map +0 -1
  634. package/esm2015/molecules/chips-input-field/index.js +0 -3
  635. package/esm2015/molecules/chips-input-field/index.js.map +0 -1
  636. package/esm2015/molecules/chips-input-field/ng-atomic-components-molecules-chips-input-field.js +0 -5
  637. package/esm2015/molecules/chips-input-field/ng-atomic-components-molecules-chips-input-field.js.map +0 -1
  638. package/esm2015/molecules/date-input-field/date-input-field.module.js +0 -39
  639. package/esm2015/molecules/date-input-field/date-input-field.module.js.map +0 -1
  640. package/esm2015/molecules/date-input-field/date-input-field.molecule.js +0 -44
  641. package/esm2015/molecules/date-input-field/date-input-field.molecule.js.map +0 -1
  642. package/esm2015/molecules/date-input-field/index.js +0 -3
  643. package/esm2015/molecules/date-input-field/index.js.map +0 -1
  644. package/esm2015/molecules/date-input-field/ng-atomic-components-molecules-date-input-field.js +0 -5
  645. package/esm2015/molecules/date-input-field/ng-atomic-components-molecules-date-input-field.js.map +0 -1
  646. package/esm2015/molecules/select-input-field/index.js +0 -3
  647. package/esm2015/molecules/select-input-field/index.js.map +0 -1
  648. package/esm2015/molecules/select-input-field/ng-atomic-components-molecules-select-input-field.js +0 -5
  649. package/esm2015/molecules/select-input-field/ng-atomic-components-molecules-select-input-field.js.map +0 -1
  650. package/esm2015/molecules/select-input-field/select-input-field.module.js +0 -37
  651. package/esm2015/molecules/select-input-field/select-input-field.module.js.map +0 -1
  652. package/esm2015/molecules/select-input-field/select-input-field.molecule.js +0 -35
  653. package/esm2015/molecules/select-input-field/select-input-field.molecule.js.map +0 -1
  654. package/esm2015/molecules/smart-column/index.js +0 -3
  655. package/esm2015/molecules/smart-column/index.js.map +0 -1
  656. package/esm2015/molecules/smart-column/ng-atomic-components-molecules-smart-column.js +0 -5
  657. package/esm2015/molecules/smart-column/ng-atomic-components-molecules-smart-column.js.map +0 -1
  658. package/esm2015/molecules/smart-column/smart-column.module.js +0 -44
  659. package/esm2015/molecules/smart-column/smart-column.module.js.map +0 -1
  660. package/esm2015/molecules/smart-column/smart-column.molecule.js +0 -38
  661. package/esm2015/molecules/smart-column/smart-column.molecule.js.map +0 -1
  662. package/esm2015/molecules/text-input-field/index.js +0 -3
  663. package/esm2015/molecules/text-input-field/index.js.map +0 -1
  664. package/esm2015/molecules/text-input-field/ng-atomic-components-molecules-text-input-field.js +0 -5
  665. package/esm2015/molecules/text-input-field/ng-atomic-components-molecules-text-input-field.js.map +0 -1
  666. package/esm2015/molecules/text-input-field/text-input-field.module.js +0 -37
  667. package/esm2015/molecules/text-input-field/text-input-field.module.js.map +0 -1
  668. package/esm2015/molecules/text-input-field/text-input-field.molecule.js +0 -40
  669. package/esm2015/molecules/text-input-field/text-input-field.molecule.js.map +0 -1
  670. package/esm2015/molecules/textarea-field/index.js +0 -3
  671. package/esm2015/molecules/textarea-field/index.js.map +0 -1
  672. package/esm2015/molecules/textarea-field/ng-atomic-components-molecules-textarea-field.js +0 -5
  673. package/esm2015/molecules/textarea-field/ng-atomic-components-molecules-textarea-field.js.map +0 -1
  674. package/esm2015/molecules/textarea-field/textarea-field.module.js +0 -29
  675. package/esm2015/molecules/textarea-field/textarea-field.module.js.map +0 -1
  676. package/esm2015/molecules/textarea-field/textarea-field.molecule.js +0 -30
  677. package/esm2015/molecules/textarea-field/textarea-field.molecule.js.map +0 -1
  678. package/esm2015/ng-atomic-components.js +0 -5
  679. package/esm2015/ng-atomic-components.js.map +0 -1
  680. package/esm2015/organisms/action-buttons-section/action-buttons-section.module.js +0 -33
  681. package/esm2015/organisms/action-buttons-section/action-buttons-section.module.js.map +0 -1
  682. package/esm2015/organisms/action-buttons-section/action-buttons-section.organism.js +0 -28
  683. package/esm2015/organisms/action-buttons-section/action-buttons-section.organism.js.map +0 -1
  684. package/esm2015/organisms/action-buttons-section/index.js +0 -3
  685. package/esm2015/organisms/action-buttons-section/index.js.map +0 -1
  686. package/esm2015/organisms/action-buttons-section/ng-atomic-components-organisms-action-buttons-section.js +0 -5
  687. package/esm2015/organisms/action-buttons-section/ng-atomic-components-organisms-action-buttons-section.js.map +0 -1
  688. package/esm2015/organisms/back-navigator/back-navigator.module.js +0 -48
  689. package/esm2015/organisms/back-navigator/back-navigator.module.js.map +0 -1
  690. package/esm2015/organisms/back-navigator/back-navigator.organism.js +0 -39
  691. package/esm2015/organisms/back-navigator/back-navigator.organism.js.map +0 -1
  692. package/esm2015/organisms/back-navigator/index.js +0 -3
  693. package/esm2015/organisms/back-navigator/index.js.map +0 -1
  694. package/esm2015/organisms/back-navigator/ng-atomic-components-organisms-back-navigator.js +0 -5
  695. package/esm2015/organisms/back-navigator/ng-atomic-components-organisms-back-navigator.js.map +0 -1
  696. package/esm2015/organisms/card-input-section/card-input-section.module.js +0 -29
  697. package/esm2015/organisms/card-input-section/card-input-section.module.js.map +0 -1
  698. package/esm2015/organisms/card-input-section/card-input-section.organism.js +0 -29
  699. package/esm2015/organisms/card-input-section/card-input-section.organism.js.map +0 -1
  700. package/esm2015/organisms/card-input-section/index.js +0 -3
  701. package/esm2015/organisms/card-input-section/index.js.map +0 -1
  702. package/esm2015/organisms/card-input-section/ng-atomic-components-organisms-card-input-section.js +0 -5
  703. package/esm2015/organisms/card-input-section/ng-atomic-components-organisms-card-input-section.js.map +0 -1
  704. package/esm2015/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.module.js +0 -33
  705. package/esm2015/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.module.js.map +0 -1
  706. package/esm2015/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.organism.js +0 -34
  707. package/esm2015/organisms/cvc-and-exp-input-section/cvc-and-exp-input-section.organism.js.map +0 -1
  708. package/esm2015/organisms/cvc-and-exp-input-section/index.js +0 -3
  709. package/esm2015/organisms/cvc-and-exp-input-section/index.js.map +0 -1
  710. package/esm2015/organisms/cvc-and-exp-input-section/ng-atomic-components-organisms-cvc-and-exp-input-section.js +0 -5
  711. package/esm2015/organisms/cvc-and-exp-input-section/ng-atomic-components-organisms-cvc-and-exp-input-section.js.map +0 -1
  712. package/esm2015/organisms/date-input-section/date-input-section.module.js +0 -30
  713. package/esm2015/organisms/date-input-section/date-input-section.module.js.map +0 -1
  714. package/esm2015/organisms/date-input-section/date-input-section.organism.js +0 -30
  715. package/esm2015/organisms/date-input-section/date-input-section.organism.js.map +0 -1
  716. package/esm2015/organisms/date-input-section/index.js +0 -3
  717. package/esm2015/organisms/date-input-section/index.js.map +0 -1
  718. package/esm2015/organisms/date-input-section/ng-atomic-components-organisms-date-input-section.js +0 -5
  719. package/esm2015/organisms/date-input-section/ng-atomic-components-organisms-date-input-section.js.map +0 -1
  720. package/esm2015/organisms/heading/heading.module.js +0 -26
  721. package/esm2015/organisms/heading/heading.module.js.map +0 -1
  722. package/esm2015/organisms/heading/heading.organism.js +0 -22
  723. package/esm2015/organisms/heading/heading.organism.js.map +0 -1
  724. package/esm2015/organisms/heading/index.js +0 -3
  725. package/esm2015/organisms/heading/index.js.map +0 -1
  726. package/esm2015/organisms/heading/ng-atomic-components-organisms-heading.js +0 -5
  727. package/esm2015/organisms/heading/ng-atomic-components-organisms-heading.js.map +0 -1
  728. package/esm2015/organisms/menu/index.js +0 -3
  729. package/esm2015/organisms/menu/index.js.map +0 -1
  730. package/esm2015/organisms/menu/menu.module.js +0 -30
  731. package/esm2015/organisms/menu/menu.module.js.map +0 -1
  732. package/esm2015/organisms/menu/menu.organism.js +0 -28
  733. package/esm2015/organisms/menu/menu.organism.js.map +0 -1
  734. package/esm2015/organisms/menu/ng-atomic-components-organisms-menu.js +0 -5
  735. package/esm2015/organisms/menu/ng-atomic-components-organisms-menu.js.map +0 -1
  736. package/esm2015/organisms/navigator/index.js +0 -3
  737. package/esm2015/organisms/navigator/index.js.map +0 -1
  738. package/esm2015/organisms/navigator/navigator.module.js +0 -44
  739. package/esm2015/organisms/navigator/navigator.module.js.map +0 -1
  740. package/esm2015/organisms/navigator/navigator.organism.js +0 -39
  741. package/esm2015/organisms/navigator/navigator.organism.js.map +0 -1
  742. package/esm2015/organisms/navigator/ng-atomic-components-organisms-navigator.js +0 -5
  743. package/esm2015/organisms/navigator/ng-atomic-components-organisms-navigator.js.map +0 -1
  744. package/esm2015/organisms/paginator/index.js +0 -3
  745. package/esm2015/organisms/paginator/index.js.map +0 -1
  746. package/esm2015/organisms/paginator/ng-atomic-components-organisms-paginator.js +0 -5
  747. package/esm2015/organisms/paginator/ng-atomic-components-organisms-paginator.js.map +0 -1
  748. package/esm2015/organisms/paginator/paginator.module.js +0 -47
  749. package/esm2015/organisms/paginator/paginator.module.js.map +0 -1
  750. package/esm2015/organisms/paginator/paginator.organism.js +0 -38
  751. package/esm2015/organisms/paginator/paginator.organism.js.map +0 -1
  752. package/esm2015/organisms/select-input-section/index.js +0 -3
  753. package/esm2015/organisms/select-input-section/index.js.map +0 -1
  754. package/esm2015/organisms/select-input-section/ng-atomic-components-organisms-select-input-section.js +0 -5
  755. package/esm2015/organisms/select-input-section/ng-atomic-components-organisms-select-input-section.js.map +0 -1
  756. package/esm2015/organisms/select-input-section/select-input-section.module.js +0 -33
  757. package/esm2015/organisms/select-input-section/select-input-section.module.js.map +0 -1
  758. package/esm2015/organisms/select-input-section/select-input-section.organism.js +0 -29
  759. package/esm2015/organisms/select-input-section/select-input-section.organism.js.map +0 -1
  760. package/esm2015/organisms/smart-table/index.js +0 -3
  761. package/esm2015/organisms/smart-table/index.js.map +0 -1
  762. package/esm2015/organisms/smart-table/ng-atomic-components-organisms-smart-table.js +0 -5
  763. package/esm2015/organisms/smart-table/ng-atomic-components-organisms-smart-table.js.map +0 -1
  764. package/esm2015/organisms/smart-table/smart-table.module.js +0 -71
  765. package/esm2015/organisms/smart-table/smart-table.module.js.map +0 -1
  766. package/esm2015/organisms/smart-table/smart-table.organism.js +0 -65
  767. package/esm2015/organisms/smart-table/smart-table.organism.js.map +0 -1
  768. package/esm2015/organisms/social-login-section/index.js +0 -3
  769. package/esm2015/organisms/social-login-section/index.js.map +0 -1
  770. package/esm2015/organisms/social-login-section/ng-atomic-components-organisms-social-login-section.js +0 -5
  771. package/esm2015/organisms/social-login-section/ng-atomic-components-organisms-social-login-section.js.map +0 -1
  772. package/esm2015/organisms/social-login-section/social-login-section.module.js +0 -33
  773. package/esm2015/organisms/social-login-section/social-login-section.module.js.map +0 -1
  774. package/esm2015/organisms/social-login-section/social-login-section.organism.js +0 -22
  775. package/esm2015/organisms/social-login-section/social-login-section.organism.js.map +0 -1
  776. package/esm2015/organisms/text-input-section/index.js +0 -3
  777. package/esm2015/organisms/text-input-section/index.js.map +0 -1
  778. package/esm2015/organisms/text-input-section/ng-atomic-components-organisms-text-input-section.js +0 -5
  779. package/esm2015/organisms/text-input-section/ng-atomic-components-organisms-text-input-section.js.map +0 -1
  780. package/esm2015/organisms/text-input-section/text-input-section.module.js +0 -33
  781. package/esm2015/organisms/text-input-section/text-input-section.module.js.map +0 -1
  782. package/esm2015/organisms/text-input-section/text-input-section.organism.js +0 -33
  783. package/esm2015/organisms/text-input-section/text-input-section.organism.js.map +0 -1
  784. package/esm2015/organisms/textarea-section/index.js +0 -3
  785. package/esm2015/organisms/textarea-section/index.js.map +0 -1
  786. package/esm2015/organisms/textarea-section/ng-atomic-components-organisms-textarea-section.js +0 -5
  787. package/esm2015/organisms/textarea-section/ng-atomic-components-organisms-textarea-section.js.map +0 -1
  788. package/esm2015/organisms/textarea-section/textarea-section.module.js +0 -29
  789. package/esm2015/organisms/textarea-section/textarea-section.module.js.map +0 -1
  790. package/esm2015/organisms/textarea-section/textarea-section.organism.js +0 -22
  791. package/esm2015/organisms/textarea-section/textarea-section.organism.js.map +0 -1
  792. package/esm2015/organisms/top-navigator/index.js +0 -3
  793. package/esm2015/organisms/top-navigator/index.js.map +0 -1
  794. package/esm2015/organisms/top-navigator/ng-atomic-components-organisms-top-navigator.js +0 -5
  795. package/esm2015/organisms/top-navigator/ng-atomic-components-organisms-top-navigator.js.map +0 -1
  796. package/esm2015/organisms/top-navigator/top-navigator.module.js +0 -44
  797. package/esm2015/organisms/top-navigator/top-navigator.module.js.map +0 -1
  798. package/esm2015/organisms/top-navigator/top-navigator.organism.js +0 -29
  799. package/esm2015/organisms/top-navigator/top-navigator.organism.js.map +0 -1
  800. package/esm2015/pages/_index/index.js +0 -3
  801. package/esm2015/pages/_index/index.js.map +0 -1
  802. package/esm2015/pages/_index/index.module.js +0 -33
  803. package/esm2015/pages/_index/index.module.js.map +0 -1
  804. package/esm2015/pages/_index/index.page.js +0 -15
  805. package/esm2015/pages/_index/index.page.js.map +0 -1
  806. package/esm2015/pages/_index/ng-atomic-components-pages-_index.js +0 -5
  807. package/esm2015/pages/_index/ng-atomic-components-pages-_index.js.map +0 -1
  808. package/esm2015/pages/blank/blank.module.js +0 -27
  809. package/esm2015/pages/blank/blank.module.js.map +0 -1
  810. package/esm2015/pages/blank/blank.page.js +0 -15
  811. package/esm2015/pages/blank/blank.page.js.map +0 -1
  812. package/esm2015/pages/blank/blank.route.js +0 -6
  813. package/esm2015/pages/blank/blank.route.js.map +0 -1
  814. package/esm2015/pages/blank/index.js +0 -4
  815. package/esm2015/pages/blank/index.js.map +0 -1
  816. package/esm2015/pages/blank/ng-atomic-components-pages-blank.js +0 -5
  817. package/esm2015/pages/blank/ng-atomic-components-pages-blank.js.map +0 -1
  818. package/esm2015/templates/entrance/entrance.module.js +0 -56
  819. package/esm2015/templates/entrance/entrance.module.js.map +0 -1
  820. package/esm2015/templates/entrance/entrance.template.js +0 -48
  821. package/esm2015/templates/entrance/entrance.template.js.map +0 -1
  822. package/esm2015/templates/entrance/index.js +0 -3
  823. package/esm2015/templates/entrance/index.js.map +0 -1
  824. package/esm2015/templates/entrance/ng-atomic-components-templates-entrance.js +0 -5
  825. package/esm2015/templates/entrance/ng-atomic-components-templates-entrance.js.map +0 -1
  826. package/esm2015/templates/loading/index.js +0 -3
  827. package/esm2015/templates/loading/index.js.map +0 -1
  828. package/esm2015/templates/loading/loading.module.js +0 -33
  829. package/esm2015/templates/loading/loading.module.js.map +0 -1
  830. package/esm2015/templates/loading/loading.template.js +0 -17
  831. package/esm2015/templates/loading/loading.template.js.map +0 -1
  832. package/esm2015/templates/loading/ng-atomic-components-templates-loading.js +0 -5
  833. package/esm2015/templates/loading/ng-atomic-components-templates-loading.js.map +0 -1
  834. package/esm2015/templates/menu/index.js +0 -3
  835. package/esm2015/templates/menu/index.js.map +0 -1
  836. package/esm2015/templates/menu/menu.module.js +0 -29
  837. package/esm2015/templates/menu/menu.module.js.map +0 -1
  838. package/esm2015/templates/menu/menu.template.js +0 -25
  839. package/esm2015/templates/menu/menu.template.js.map +0 -1
  840. package/esm2015/templates/menu/ng-atomic-components-templates-menu.js +0 -5
  841. package/esm2015/templates/menu/ng-atomic-components-templates-menu.js.map +0 -1
  842. package/esm2015/templates/smart-crud/index.js +0 -3
  843. package/esm2015/templates/smart-crud/index.js.map +0 -1
  844. package/esm2015/templates/smart-crud/ng-atomic-components-templates-smart-crud.js +0 -5
  845. package/esm2015/templates/smart-crud/ng-atomic-components-templates-smart-crud.js.map +0 -1
  846. package/esm2015/templates/smart-crud/smart-crud.module.js +0 -75
  847. package/esm2015/templates/smart-crud/smart-crud.module.js.map +0 -1
  848. package/esm2015/templates/smart-crud/smart-crud.template.js +0 -77
  849. package/esm2015/templates/smart-crud/smart-crud.template.js.map +0 -1
  850. package/esm2015/templates/smart-index/index.js +0 -3
  851. package/esm2015/templates/smart-index/index.js.map +0 -1
  852. package/esm2015/templates/smart-index/ng-atomic-components-templates-smart-index.js +0 -5
  853. package/esm2015/templates/smart-index/ng-atomic-components-templates-smart-index.js.map +0 -1
  854. package/esm2015/templates/smart-index/smart-index.module.js +0 -52
  855. package/esm2015/templates/smart-index/smart-index.module.js.map +0 -1
  856. package/esm2015/templates/smart-index/smart-index.template.js +0 -99
  857. package/esm2015/templates/smart-index/smart-index.template.js.map +0 -1
  858. package/fesm2015/ng-atomic-components-atoms-chips-input.js +0 -131
  859. package/fesm2015/ng-atomic-components-atoms-chips-input.js.map +0 -1
  860. package/fesm2015/ng-atomic-components-atoms-smart-menu-button.js +0 -69
  861. package/fesm2015/ng-atomic-components-atoms-smart-menu-button.js.map +0 -1
  862. package/fesm2015/ng-atomic-components-frames-auto-layout.js +0 -46
  863. package/fesm2015/ng-atomic-components-frames-auto-layout.js.map +0 -1
  864. package/fesm2015/ng-atomic-components-frames-card.js +0 -54
  865. package/fesm2015/ng-atomic-components-frames-card.js.map +0 -1
  866. package/fesm2015/ng-atomic-components-frames-drawer.js +0 -60
  867. package/fesm2015/ng-atomic-components-frames-drawer.js.map +0 -1
  868. package/fesm2015/ng-atomic-components-frames-line-up-v2.js +0 -199
  869. package/fesm2015/ng-atomic-components-frames-line-up-v2.js.map +0 -1
  870. package/fesm2015/ng-atomic-components-frames-line-up.js +0 -188
  871. package/fesm2015/ng-atomic-components-frames-line-up.js.map +0 -1
  872. package/fesm2015/ng-atomic-components-frames-overlay-v2.js +0 -82
  873. package/fesm2015/ng-atomic-components-frames-overlay-v2.js.map +0 -1
  874. package/fesm2015/ng-atomic-components-frames-overlay.js +0 -91
  875. package/fesm2015/ng-atomic-components-frames-overlay.js.map +0 -1
  876. package/fesm2015/ng-atomic-components-frames-scroll.js +0 -51
  877. package/fesm2015/ng-atomic-components-frames-scroll.js.map +0 -1
  878. package/fesm2015/ng-atomic-components-frames-smart-menu.js +0 -65
  879. package/fesm2015/ng-atomic-components-frames-smart-menu.js.map +0 -1
  880. package/fesm2015/ng-atomic-components-molecules-actions-column.js +0 -135
  881. package/fesm2015/ng-atomic-components-molecules-actions-column.js.map +0 -1
  882. package/fesm2015/ng-atomic-components-molecules-checkbox-column.js +0 -114
  883. package/fesm2015/ng-atomic-components-molecules-checkbox-column.js.map +0 -1
  884. package/fesm2015/ng-atomic-components-molecules-chips-input-field.js +0 -63
  885. package/fesm2015/ng-atomic-components-molecules-chips-input-field.js.map +0 -1
  886. package/fesm2015/ng-atomic-components-molecules-date-input-field.js +0 -87
  887. package/fesm2015/ng-atomic-components-molecules-date-input-field.js.map +0 -1
  888. package/fesm2015/ng-atomic-components-molecules-select-input-field.js +0 -76
  889. package/fesm2015/ng-atomic-components-molecules-select-input-field.js.map +0 -1
  890. package/fesm2015/ng-atomic-components-molecules-smart-column.js +0 -84
  891. package/fesm2015/ng-atomic-components-molecules-smart-column.js.map +0 -1
  892. package/fesm2015/ng-atomic-components-molecules-text-input-field.js +0 -80
  893. package/fesm2015/ng-atomic-components-molecules-text-input-field.js.map +0 -1
  894. package/fesm2015/ng-atomic-components-molecules-textarea-field.js +0 -63
  895. package/fesm2015/ng-atomic-components-molecules-textarea-field.js.map +0 -1
  896. package/fesm2015/ng-atomic-components-organisms-action-buttons-section.js +0 -65
  897. package/fesm2015/ng-atomic-components-organisms-action-buttons-section.js.map +0 -1
  898. package/fesm2015/ng-atomic-components-organisms-back-navigator.js +0 -91
  899. package/fesm2015/ng-atomic-components-organisms-back-navigator.js.map +0 -1
  900. package/fesm2015/ng-atomic-components-organisms-card-input-section.js +0 -62
  901. package/fesm2015/ng-atomic-components-organisms-card-input-section.js.map +0 -1
  902. package/fesm2015/ng-atomic-components-organisms-cvc-and-exp-input-section.js +0 -71
  903. package/fesm2015/ng-atomic-components-organisms-cvc-and-exp-input-section.js.map +0 -1
  904. package/fesm2015/ng-atomic-components-organisms-date-input-section.js +0 -64
  905. package/fesm2015/ng-atomic-components-organisms-date-input-section.js.map +0 -1
  906. package/fesm2015/ng-atomic-components-organisms-heading.js +0 -52
  907. package/fesm2015/ng-atomic-components-organisms-heading.js.map +0 -1
  908. package/fesm2015/ng-atomic-components-organisms-menu.js +0 -62
  909. package/fesm2015/ng-atomic-components-organisms-menu.js.map +0 -1
  910. package/fesm2015/ng-atomic-components-organisms-navigator.js +0 -87
  911. package/fesm2015/ng-atomic-components-organisms-navigator.js.map +0 -1
  912. package/fesm2015/ng-atomic-components-organisms-paginator.js +0 -88
  913. package/fesm2015/ng-atomic-components-organisms-paginator.js.map +0 -1
  914. package/fesm2015/ng-atomic-components-organisms-select-input-section.js +0 -66
  915. package/fesm2015/ng-atomic-components-organisms-select-input-section.js.map +0 -1
  916. package/fesm2015/ng-atomic-components-organisms-smart-table.js +0 -140
  917. package/fesm2015/ng-atomic-components-organisms-smart-table.js.map +0 -1
  918. package/fesm2015/ng-atomic-components-organisms-social-login-section.js +0 -59
  919. package/fesm2015/ng-atomic-components-organisms-social-login-section.js.map +0 -1
  920. package/fesm2015/ng-atomic-components-organisms-text-input-section.js +0 -70
  921. package/fesm2015/ng-atomic-components-organisms-text-input-section.js.map +0 -1
  922. package/fesm2015/ng-atomic-components-organisms-textarea-section.js +0 -55
  923. package/fesm2015/ng-atomic-components-organisms-textarea-section.js.map +0 -1
  924. package/fesm2015/ng-atomic-components-organisms-top-navigator.js +0 -77
  925. package/fesm2015/ng-atomic-components-organisms-top-navigator.js.map +0 -1
  926. package/fesm2015/ng-atomic-components-pages-_index.js +0 -52
  927. package/fesm2015/ng-atomic-components-pages-_index.js.map +0 -1
  928. package/fesm2015/ng-atomic-components-pages-blank.js +0 -57
  929. package/fesm2015/ng-atomic-components-pages-blank.js.map +0 -1
  930. package/fesm2015/ng-atomic-components-templates-entrance.js +0 -108
  931. package/fesm2015/ng-atomic-components-templates-entrance.js.map +0 -1
  932. package/fesm2015/ng-atomic-components-templates-loading.js +0 -54
  933. package/fesm2015/ng-atomic-components-templates-loading.js.map +0 -1
  934. package/fesm2015/ng-atomic-components-templates-menu.js +0 -58
  935. package/fesm2015/ng-atomic-components-templates-menu.js.map +0 -1
  936. package/fesm2015/ng-atomic-components-templates-smart-crud.js +0 -155
  937. package/fesm2015/ng-atomic-components-templates-smart-crud.js.map +0 -1
  938. package/fesm2015/ng-atomic-components-templates-smart-index.js +0 -155
  939. package/fesm2015/ng-atomic-components-templates-smart-index.js.map +0 -1
  940. package/fesm2015/ng-atomic-components.js +0 -4
  941. package/fesm2015/ng-atomic-components.js.map +0 -1
@@ -0,0 +1,3 @@
1
+ export { ChipsInputFieldModule } from './chips-input-field.module';
2
+ export * from './chips-input-field.molecule';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL2NoaXBzLWlucHV0LWZpZWxkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDRCQUE0QixDQUFDO0FBQ25FLGNBQWMsOEJBQThCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBDaGlwc0lucHV0RmllbGRNb2R1bGUgfSBmcm9tICcuL2NoaXBzLWlucHV0LWZpZWxkLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2NoaXBzLWlucHV0LWZpZWxkLm1vbGVjdWxlJztcbiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLWNoaXBzLWlucHV0LWZpZWxkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy9jaGlwcy1pbnB1dC1maWVsZC9uZy1hdG9taWMtY29tcG9uZW50cy1tb2xlY3VsZXMtY2hpcHMtaW5wdXQtZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -0,0 +1,40 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ReactiveFormsModule } from '@angular/forms';
4
+ import { MatInputModule } from '@angular/material/input';
5
+ import { MatDatepickerModule } from '@angular/material/datepicker';
6
+ import { MatDayjsDateModule } from '@ng-atomic/common/utils';
7
+ import { ElementsModule } from '@ng-atomic/elements';
8
+ import { DateInputFieldMolecule } from './date-input-field.molecule';
9
+ import * as i0 from "@angular/core";
10
+ export class DateInputFieldModule extends ElementsModule {
11
+ }
12
+ DateInputFieldModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateInputFieldModule, deps: null, target: i0.ɵɵFactoryTarget.NgModule });
13
+ DateInputFieldModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateInputFieldModule, declarations: [DateInputFieldMolecule], imports: [CommonModule,
14
+ ReactiveFormsModule,
15
+ MatInputModule,
16
+ MatDatepickerModule,
17
+ MatDayjsDateModule], exports: [DateInputFieldMolecule] });
18
+ DateInputFieldModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateInputFieldModule, imports: [[
19
+ CommonModule,
20
+ ReactiveFormsModule,
21
+ MatInputModule,
22
+ MatDatepickerModule,
23
+ MatDayjsDateModule,
24
+ ]] });
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateInputFieldModule, decorators: [{
26
+ type: NgModule,
27
+ args: [{
28
+ declarations: [DateInputFieldMolecule],
29
+ imports: [
30
+ CommonModule,
31
+ ReactiveFormsModule,
32
+ MatInputModule,
33
+ MatDatepickerModule,
34
+ MatDayjsDateModule,
35
+ ],
36
+ exports: [DateInputFieldMolecule],
37
+ // providers: [...MAT_DAYJS_JP_PROVIDERS],
38
+ }]
39
+ }] });
40
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1pbnB1dC1maWVsZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL2RhdGUtaW5wdXQtZmllbGQvZGF0ZS1pbnB1dC1maWVsZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQ25FLE9BQU8sRUFBRSxrQkFBa0IsRUFBMEIsTUFBTSx5QkFBeUIsQ0FBQztBQUNyRixPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDckQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7O0FBZ0JyRSxNQUFNLE9BQU8sb0JBQXFCLFNBQVEsY0FBYzs7a0hBQTNDLG9CQUFvQjttSEFBcEIsb0JBQW9CLGlCQVhoQixzQkFBc0IsYUFFbkMsWUFBWTtRQUNaLG1CQUFtQjtRQUNuQixjQUFjO1FBQ2QsbUJBQW1CO1FBQ25CLGtCQUFrQixhQUVWLHNCQUFzQjttSEFHckIsb0JBQW9CLFlBVnRCO1lBQ1AsWUFBWTtZQUNaLG1CQUFtQjtZQUNuQixjQUFjO1lBQ2QsbUJBQW1CO1lBQ25CLGtCQUFrQjtTQUNuQjs0RkFJVSxvQkFBb0I7a0JBWmhDLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMsc0JBQXNCLENBQUM7b0JBQ3RDLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsY0FBYzt3QkFDZCxtQkFBbUI7d0JBQ25CLGtCQUFrQjtxQkFDbkI7b0JBQ0QsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7b0JBQ2pDLDBDQUEwQztpQkFDM0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IFJlYWN0aXZlRm9ybXNNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQgeyBNYXRJbnB1dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2lucHV0JztcbmltcG9ydCB7IE1hdERhdGVwaWNrZXJNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9kYXRlcGlja2VyJztcbmltcG9ydCB7IE1hdERheWpzRGF0ZU1vZHVsZSwgTUFUX0RBWUpTX0pQX1BST1ZJREVSUyB9IGZyb20gJ0BuZy1hdG9taWMvY29tbW9uL3V0aWxzJztcbmltcG9ydCB7IEVsZW1lbnRzTW9kdWxlIH0gZnJvbSAnQG5nLWF0b21pYy9lbGVtZW50cyc7XG5pbXBvcnQgeyBEYXRlSW5wdXRGaWVsZE1vbGVjdWxlIH0gZnJvbSAnLi9kYXRlLWlucHV0LWZpZWxkLm1vbGVjdWxlJztcblxuXG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW0RhdGVJbnB1dEZpZWxkTW9sZWN1bGVdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgTWF0SW5wdXRNb2R1bGUsXG4gICAgTWF0RGF0ZXBpY2tlck1vZHVsZSxcbiAgICBNYXREYXlqc0RhdGVNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtEYXRlSW5wdXRGaWVsZE1vbGVjdWxlXSxcbiAgLy8gcHJvdmlkZXJzOiBbLi4uTUFUX0RBWUpTX0pQX1BST1ZJREVSU10sXG59KVxuZXhwb3J0IGNsYXNzIERhdGVJbnB1dEZpZWxkTW9kdWxlIGV4dGVuZHMgRWxlbWVudHNNb2R1bGUgeyB9XG4iXX0=
@@ -0,0 +1,38 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { FormControl } from '@ngneat/reactive-forms';
3
+ import { filter } from 'rxjs/operators';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "@angular/material/form-field";
6
+ import * as i2 from "@angular/material/datepicker";
7
+ import * as i3 from "@angular/material/input";
8
+ import * as i4 from "@angular/forms";
9
+ import * as i5 from "@angular/common";
10
+ export class DateInputFieldMolecule {
11
+ constructor() {
12
+ this.control = new FormControl();
13
+ this._control = new FormControl();
14
+ this.label = '';
15
+ this.placeholder = '';
16
+ }
17
+ ngOnInit() {
18
+ this.control.valueChanges.pipe(filter(value => this._control.value !== value)).subscribe(value => this._control.setValue(value));
19
+ this._control.valueChanges.subscribe(value => this.control.setValue(value));
20
+ this.control.setValue(this._control.value);
21
+ }
22
+ }
23
+ DateInputFieldMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateInputFieldMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
24
+ DateInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: DateInputFieldMolecule, selector: "molecules-date-input-field", inputs: { _control: ["control", "_control"], label: "label", placeholder: "placeholder", hint: "hint" }, host: { classAttribute: "molecule field" }, ngImport: i0, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <input matInput [formControl]=\"control\" [placeholder]=\"placeholder\" [matDatepicker]=\"picker\">\n <mat-datepicker-toggle matSuffix [for]=\"picker\"></mat-datepicker-toggle>\n <mat-datepicker #picker></mat-datepicker>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-date-input-field-Iw27: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"], components: [{ type: i1.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { type: i2.MatDatepickerToggle, selector: "mat-datepicker-toggle", inputs: ["for", "tabIndex", "aria-label", "disabled", "disableRipple"], exportAs: ["matDatepickerToggle"] }, { type: i2.MatDatepicker, selector: "mat-datepicker", exportAs: ["matDatepicker"] }], directives: [{ type: i1.MatLabel, selector: "mat-label" }, { type: i3.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i2.MatDatepickerInput, selector: "input[matDatepicker]", inputs: ["matDatepicker", "min", "max", "matDatepickerFilter"], exportAs: ["matDatepickerInput"] }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i1.MatSuffix, selector: "[matSuffix]" }, { type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: DateInputFieldMolecule, decorators: [{
26
+ type: Component,
27
+ args: [{ selector: 'molecules-date-input-field', changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'molecule field' }, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <input matInput [formControl]=\"control\" [placeholder]=\"placeholder\" [matDatepicker]=\"picker\">\n <mat-datepicker-toggle matSuffix [for]=\"picker\"></mat-datepicker-toggle>\n <mat-datepicker #picker></mat-datepicker>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-date-input-field-Iw27: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"] }]
28
+ }], propDecorators: { _control: [{
29
+ type: Input,
30
+ args: ['control']
31
+ }], label: [{
32
+ type: Input
33
+ }], placeholder: [{
34
+ type: Input
35
+ }], hint: [{
36
+ type: Input
37
+ }] } });
38
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGF0ZS1pbnB1dC1maWVsZC5tb2xlY3VsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9tb2xlY3VsZXMvZGF0ZS1pbnB1dC1maWVsZC9kYXRlLWlucHV0LWZpZWxkLm1vbGVjdWxlLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy9kYXRlLWlucHV0LWZpZWxkL2RhdGUtaW5wdXQtZmllbGQubW9sZWN1bGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFckQsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLGdCQUFnQixDQUFDOzs7Ozs7O0FBU3hDLE1BQU0sT0FBTyxzQkFBc0I7SUFQbkM7UUFRRSxZQUFPLEdBQUcsSUFBSSxXQUFXLEVBQVMsQ0FBQztRQUczQixhQUFRLEdBQUcsSUFBSSxXQUFXLEVBQVMsQ0FBQztRQUc1QyxVQUFLLEdBQUcsRUFBRSxDQUFDO1FBR1gsZ0JBQVcsR0FBRyxFQUFFLENBQUM7S0FhbEI7SUFSQyxRQUFRO1FBQ04sSUFBSSxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUM1QixNQUFNLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLEtBQUssS0FBSyxLQUFLLENBQUMsQ0FDL0MsQ0FBQyxTQUFTLENBQUMsS0FBSyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO1FBRXBELElBQUksQ0FBQyxRQUFRLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsRUFBRSxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLENBQUM7UUFDNUUsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUM3QyxDQUFDOztvSEF0QlUsc0JBQXNCO3dHQUF0QixzQkFBc0IsdU5DWm5DLHNYQU1pQjs0RkRNSixzQkFBc0I7a0JBUGxDLFNBQVM7K0JBQ0UsNEJBQTRCLG1CQUdyQix1QkFBdUIsQ0FBQyxNQUFNLFFBQ3pDLEVBQUMsS0FBSyxFQUFFLGdCQUFnQixFQUFDOzhCQU12QixRQUFRO3NCQURmLEtBQUs7dUJBQUMsU0FBUztnQkFJaEIsS0FBSztzQkFESixLQUFLO2dCQUlOLFdBQVc7c0JBRFYsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRm9ybUNvbnRyb2wgfSBmcm9tICdAbmduZWF0L3JlYWN0aXZlLWZvcm1zJztcbmltcG9ydCB7IERheWpzIH0gZnJvbSAnZGF5anMnO1xuaW1wb3J0IHsgZmlsdGVyIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdtb2xlY3VsZXMtZGF0ZS1pbnB1dC1maWVsZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi9kYXRlLWlucHV0LWZpZWxkLm1vbGVjdWxlLmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9kYXRlLWlucHV0LWZpZWxkLm1vbGVjdWxlLnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gIGhvc3Q6IHtjbGFzczogJ21vbGVjdWxlIGZpZWxkJ30sXG59KVxuZXhwb3J0IGNsYXNzIERhdGVJbnB1dEZpZWxkTW9sZWN1bGUge1xuICBjb250cm9sID0gbmV3IEZvcm1Db250cm9sPERheWpzPigpO1xuXG4gIEBJbnB1dCgnY29udHJvbCcpXG4gIHByaXZhdGUgX2NvbnRyb2wgPSBuZXcgRm9ybUNvbnRyb2w8RGF5anM+KCk7XG5cbiAgQElucHV0KClcbiAgbGFiZWwgPSAnJztcblxuICBASW5wdXQoKVxuICBwbGFjZWhvbGRlciA9ICcnO1xuXG4gIEBJbnB1dCgpXG4gIGhpbnQ/OiBzdHJpbmc7XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5jb250cm9sLnZhbHVlQ2hhbmdlcy5waXBlKFxuICAgICAgZmlsdGVyKHZhbHVlID0+IHRoaXMuX2NvbnRyb2wudmFsdWUgIT09IHZhbHVlKSxcbiAgICApLnN1YnNjcmliZSh2YWx1ZSA9PiB0aGlzLl9jb250cm9sLnNldFZhbHVlKHZhbHVlKSk7XG5cbiAgICB0aGlzLl9jb250cm9sLnZhbHVlQ2hhbmdlcy5zdWJzY3JpYmUodmFsdWUgPT4gdGhpcy5jb250cm9sLnNldFZhbHVlKHZhbHVlKSk7XG4gICAgdGhpcy5jb250cm9sLnNldFZhbHVlKHRoaXMuX2NvbnRyb2wudmFsdWUpO1xuICB9XG59XG4iLCI8bWF0LWZvcm0tZmllbGQgYXBwZWFyYW5jZT1cIm91dGxpbmVcIj5cbiAgPG1hdC1sYWJlbD57eyBsYWJlbCB9fTwvbWF0LWxhYmVsPlxuICA8aW5wdXQgbWF0SW5wdXQgW2Zvcm1Db250cm9sXT1cImNvbnRyb2xcIiBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIiBbbWF0RGF0ZXBpY2tlcl09XCJwaWNrZXJcIj5cbiAgPG1hdC1kYXRlcGlja2VyLXRvZ2dsZSBtYXRTdWZmaXggW2Zvcl09XCJwaWNrZXJcIj48L21hdC1kYXRlcGlja2VyLXRvZ2dsZT5cbiAgPG1hdC1kYXRlcGlja2VyICNwaWNrZXI+PC9tYXQtZGF0ZXBpY2tlcj5cbiAgPG1hdC1oaW50ICpuZ0lmPVwiaGludFwiPnt7IGhpbnQgfX08L21hdC1oaW50PlxuPC9tYXQtZm9ybS1maWVsZD4iXX0=
@@ -0,0 +1,3 @@
1
+ export { DateInputFieldMolecule } from './date-input-field.molecule';
2
+ export { DateInputFieldModule } from './date-input-field.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL2RhdGUtaW5wdXQtZmllbGQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDckUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBEYXRlSW5wdXRGaWVsZE1vbGVjdWxlIH0gZnJvbSAnLi9kYXRlLWlucHV0LWZpZWxkLm1vbGVjdWxlJztcbmV4cG9ydCB7IERhdGVJbnB1dEZpZWxkTW9kdWxlIH0gZnJvbSAnLi9kYXRlLWlucHV0LWZpZWxkLm1vZHVsZSc7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLWRhdGUtaW5wdXQtZmllbGQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL2RhdGUtaW5wdXQtZmllbGQvbmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLWRhdGUtaW5wdXQtZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -0,0 +1,3 @@
1
+ export { SelectInputFieldModule } from './select-input-field.module';
2
+ export * from './select-input-field.molecule';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL3NlbGVjdC1pbnB1dC1maWVsZC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw2QkFBNkIsQ0FBQztBQUNyRSxjQUFjLCtCQUErQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgU2VsZWN0SW5wdXRGaWVsZE1vZHVsZSB9IGZyb20gJy4vc2VsZWN0LWlucHV0LWZpZWxkLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL3NlbGVjdC1pbnB1dC1maWVsZC5tb2xlY3VsZSc7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLXNlbGVjdC1pbnB1dC1maWVsZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9tb2xlY3VsZXMvc2VsZWN0LWlucHV0LWZpZWxkL25nLWF0b21pYy1jb21wb25lbnRzLW1vbGVjdWxlcy1zZWxlY3QtaW5wdXQtZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -0,0 +1,38 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ReactiveFormsModule } from '@angular/forms';
4
+ import { MatSelectModule } from '@angular/material/select';
5
+ import { ElementsModule } from '@ng-atomic/elements';
6
+ import { SelectInputFieldMolecule } from './select-input-field.molecule';
7
+ import * as i0 from "@angular/core";
8
+ export class SelectInputFieldModule extends ElementsModule {
9
+ }
10
+ SelectInputFieldModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SelectInputFieldModule, deps: null, target: i0.ɵɵFactoryTarget.NgModule });
11
+ SelectInputFieldModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SelectInputFieldModule, declarations: [SelectInputFieldMolecule], imports: [CommonModule,
12
+ ReactiveFormsModule,
13
+ // Materials
14
+ MatSelectModule], exports: [SelectInputFieldMolecule] });
15
+ SelectInputFieldModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SelectInputFieldModule, imports: [[
16
+ CommonModule,
17
+ ReactiveFormsModule,
18
+ // Materials
19
+ MatSelectModule,
20
+ ]] });
21
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SelectInputFieldModule, decorators: [{
22
+ type: NgModule,
23
+ args: [{
24
+ declarations: [
25
+ SelectInputFieldMolecule
26
+ ],
27
+ imports: [
28
+ CommonModule,
29
+ ReactiveFormsModule,
30
+ // Materials
31
+ MatSelectModule,
32
+ ],
33
+ exports: [
34
+ SelectInputFieldMolecule
35
+ ]
36
+ }]
37
+ }] });
38
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LWlucHV0LWZpZWxkLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9tb2xlY3VsZXMvc2VsZWN0LWlucHV0LWZpZWxkL3NlbGVjdC1pbnB1dC1maWVsZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckQsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUVyRCxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSwrQkFBK0IsQ0FBQzs7QUFrQnpFLE1BQU0sT0FBTyxzQkFBdUIsU0FBUSxjQUFjOztvSEFBN0Msc0JBQXNCO3FIQUF0QixzQkFBc0IsaUJBWi9CLHdCQUF3QixhQUd4QixZQUFZO1FBQ1osbUJBQW1CO1FBQ25CLFlBQVk7UUFDWixlQUFlLGFBR2Ysd0JBQXdCO3FIQUdmLHNCQUFzQixZQVZ4QjtZQUNQLFlBQVk7WUFDWixtQkFBbUI7WUFDbkIsWUFBWTtZQUNaLGVBQWU7U0FDaEI7NEZBS1Usc0JBQXNCO2tCQWRsQyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWix3QkFBd0I7cUJBQ3pCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsWUFBWTt3QkFDWixlQUFlO3FCQUNoQjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1Asd0JBQXdCO3FCQUN6QjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgUmVhY3RpdmVGb3Jtc01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IE1hdFNlbGVjdE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3NlbGVjdCc7XG5pbXBvcnQgeyBFbGVtZW50c01vZHVsZSB9IGZyb20gJ0BuZy1hdG9taWMvZWxlbWVudHMnO1xuXG5pbXBvcnQgeyBTZWxlY3RJbnB1dEZpZWxkTW9sZWN1bGUgfSBmcm9tICcuL3NlbGVjdC1pbnB1dC1maWVsZC5tb2xlY3VsZSc7XG5cblxuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtcbiAgICBTZWxlY3RJbnB1dEZpZWxkTW9sZWN1bGVcbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgIC8vIE1hdGVyaWFsc1xuICAgIE1hdFNlbGVjdE1vZHVsZSxcbiAgXSxcbiAgZXhwb3J0czogW1xuICAgIFNlbGVjdElucHV0RmllbGRNb2xlY3VsZVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIFNlbGVjdElucHV0RmllbGRNb2R1bGUgZXh0ZW5kcyBFbGVtZW50c01vZHVsZSB7IH1cbiJdfQ==
@@ -0,0 +1,29 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { FormControl } from '@ngneat/reactive-forms';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/material/form-field";
5
+ import * as i2 from "@angular/material/select";
6
+ import * as i3 from "@angular/material/core";
7
+ import * as i4 from "@angular/forms";
8
+ import * as i5 from "@angular/common";
9
+ export class SelectInputFieldMolecule {
10
+ constructor() {
11
+ this.label = '';
12
+ this.control = new FormControl();
13
+ this.options = [];
14
+ this.value = (item) => item?.value;
15
+ }
16
+ }
17
+ SelectInputFieldMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SelectInputFieldMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
18
+ SelectInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: SelectInputFieldMolecule, selector: "molecules-select-input-field", inputs: { label: "label", control: "control", options: "options" }, host: { classAttribute: "molecule input-field field" }, ngImport: i0, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <mat-select [formControl]=\"control\">\n <mat-option *ngFor=\"let option of options; trackBy value;\" [value]=\"option.value\">\n {{ option.name }}\n </mat-option>\n </mat-select>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-select-input-field-vw3S: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"], components: [{ type: i1.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }, { type: i2.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex"], exportAs: ["matSelect"] }, { type: i3.MatOption, selector: "mat-option", exportAs: ["matOption"] }], directives: [{ type: i1.MatLabel, selector: "mat-label" }, { type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i4.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SelectInputFieldMolecule, decorators: [{
20
+ type: Component,
21
+ args: [{ selector: 'molecules-select-input-field', changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'molecule input-field field' }, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <mat-select [formControl]=\"control\">\n <mat-option *ngFor=\"let option of options; trackBy value;\" [value]=\"option.value\">\n {{ option.name }}\n </mat-option>\n </mat-select>\n</mat-form-field>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-select-input-field-vw3S: var(--horizontal-padding)}:host{display:block;width:100%}:host mat-form-field{width:100%}\n"] }]
22
+ }], propDecorators: { label: [{
23
+ type: Input
24
+ }], control: [{
25
+ type: Input
26
+ }], options: [{
27
+ type: Input
28
+ }] } });
29
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VsZWN0LWlucHV0LWZpZWxkLm1vbGVjdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy9zZWxlY3QtaW5wdXQtZmllbGQvc2VsZWN0LWlucHV0LWZpZWxkLm1vbGVjdWxlLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy9zZWxlY3QtaW5wdXQtZmllbGQvc2VsZWN0LWlucHV0LWZpZWxkLm1vbGVjdWxlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDMUUsT0FBTyxFQUFFLFdBQVcsRUFBRSxNQUFNLHdCQUF3QixDQUFDOzs7Ozs7O0FBY3JELE1BQU0sT0FBTyx3QkFBd0I7SUFQckM7UUFVRSxVQUFLLEdBQVcsRUFBRSxDQUFDO1FBR25CLFlBQU8sR0FBRyxJQUFJLFdBQVcsRUFBSyxDQUFDO1FBRy9CLFlBQU8sR0FBZ0IsRUFBRSxDQUFDO1FBRTFCLFVBQUssR0FBRyxDQUFDLElBQWUsRUFBRSxFQUFFLENBQUMsSUFBSSxFQUFFLEtBQUssQ0FBQztLQUUxQzs7c0hBYlksd0JBQXdCOzBHQUF4Qix3QkFBd0IsZ01DZnJDLHFTQU9pQjs0RkRRSix3QkFBd0I7a0JBUHBDLFNBQVM7K0JBQ0UsOEJBQThCLG1CQUd2Qix1QkFBdUIsQ0FBQyxNQUFNLFFBQ3pDLEVBQUMsS0FBSyxFQUFFLDRCQUE0QixFQUFDOzhCQUszQyxLQUFLO3NCQURKLEtBQUs7Z0JBSU4sT0FBTztzQkFETixLQUFLO2dCQUlOLE9BQU87c0JBRE4sS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtQ29udHJvbCB9IGZyb20gJ0BuZ25lYXQvcmVhY3RpdmUtZm9ybXMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIE9wdGlvbjxUPiB7XG4gIG5hbWU6IHN0cmluZztcbiAgdmFsdWU6IFQ7XG59XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1zZWxlY3QtaW5wdXQtZmllbGQnLFxuICB0ZW1wbGF0ZVVybDogJy4vc2VsZWN0LWlucHV0LWZpZWxkLm1vbGVjdWxlLmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zZWxlY3QtaW5wdXQtZmllbGQubW9sZWN1bGUuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaG9zdDoge2NsYXNzOiAnbW9sZWN1bGUgaW5wdXQtZmllbGQgZmllbGQnfSxcbn0pXG5leHBvcnQgY2xhc3MgU2VsZWN0SW5wdXRGaWVsZE1vbGVjdWxlPFQ+IHtcblxuICBASW5wdXQoKVxuICBsYWJlbDogc3RyaW5nID0gJyc7XG5cbiAgQElucHV0KClcbiAgY29udHJvbCA9IG5ldyBGb3JtQ29udHJvbDxUPigpO1xuXG4gIEBJbnB1dCgpXG4gIG9wdGlvbnM6IE9wdGlvbjxUPltdID0gW107XG5cbiAgdmFsdWUgPSAoaXRlbTogT3B0aW9uPFQ+KSA9PiBpdGVtPy52YWx1ZTsgXG5cbn1cbiIsIjxtYXQtZm9ybS1maWVsZCBhcHBlYXJhbmNlPVwib3V0bGluZVwiPlxuICA8bWF0LWxhYmVsPnt7IGxhYmVsIH19PC9tYXQtbGFiZWw+XG4gIDxtYXQtc2VsZWN0IFtmb3JtQ29udHJvbF09XCJjb250cm9sXCI+XG4gICAgPG1hdC1vcHRpb24gKm5nRm9yPVwibGV0IG9wdGlvbiBvZiBvcHRpb25zOyB0cmFja0J5IHZhbHVlO1wiIFt2YWx1ZV09XCJvcHRpb24udmFsdWVcIj5cbiAgICAgIHt7IG9wdGlvbi5uYW1lIH19XG4gICAgPC9tYXQtb3B0aW9uPlxuICA8L21hdC1zZWxlY3Q+XG48L21hdC1mb3JtLWZpZWxkPiJdfQ==
@@ -0,0 +1,3 @@
1
+ export { SmartColumnModule } from './smart-column.module';
2
+ export * from './smart-column.molecule';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL3NtYXJ0LWNvbHVtbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsaUJBQWlCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQztBQUMxRCxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgU21hcnRDb2x1bW5Nb2R1bGUgfSBmcm9tICcuL3NtYXJ0LWNvbHVtbi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9zbWFydC1jb2x1bW4ubW9sZWN1bGUnO1xuIl19
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLXNtYXJ0LWNvbHVtbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9tb2xlY3VsZXMvc21hcnQtY29sdW1uL25nLWF0b21pYy1jb21wb25lbnRzLW1vbGVjdWxlcy1zbWFydC1jb2x1bW4udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -0,0 +1,45 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatTableModule } from '@angular/material/table';
4
+ import { MatIconModule } from '@angular/material/icon';
5
+ import { SmartExpModule } from '@ng-atomic/common/pipes';
6
+ import { ElementsModule } from '@ng-atomic/elements';
7
+ import { SmartColumnMolecule } from './smart-column.molecule';
8
+ import * as i0 from "@angular/core";
9
+ export class SmartColumnModule extends ElementsModule {
10
+ }
11
+ SmartColumnModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SmartColumnModule, deps: null, target: i0.ɵɵFactoryTarget.NgModule });
12
+ SmartColumnModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SmartColumnModule, declarations: [SmartColumnMolecule], imports: [CommonModule,
13
+ // Pipes
14
+ SmartExpModule,
15
+ // Materials
16
+ MatIconModule,
17
+ MatTableModule], exports: [SmartColumnMolecule] });
18
+ SmartColumnModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SmartColumnModule, imports: [[
19
+ CommonModule,
20
+ // Pipes
21
+ SmartExpModule,
22
+ // Materials
23
+ MatIconModule,
24
+ MatTableModule,
25
+ ]] });
26
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SmartColumnModule, decorators: [{
27
+ type: NgModule,
28
+ args: [{
29
+ declarations: [
30
+ SmartColumnMolecule,
31
+ ],
32
+ imports: [
33
+ CommonModule,
34
+ // Pipes
35
+ SmartExpModule,
36
+ // Materials
37
+ MatIconModule,
38
+ MatTableModule,
39
+ ],
40
+ exports: [
41
+ SmartColumnMolecule
42
+ ]
43
+ }]
44
+ }] });
45
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtY29sdW1uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9tb2xlY3VsZXMvc21hcnQtY29sdW1uL3NtYXJ0LWNvbHVtbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUN2RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDekQsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBRXJELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDOztBQWtCOUQsTUFBTSxPQUFPLGlCQUFrQixTQUFRLGNBQWM7OytHQUF4QyxpQkFBaUI7Z0hBQWpCLGlCQUFpQixpQkFkMUIsbUJBQW1CLGFBR25CLFlBQVk7UUFDWixRQUFRO1FBQ1IsY0FBYztRQUNkLFlBQVk7UUFDWixhQUFhO1FBQ2IsY0FBYyxhQUdkLG1CQUFtQjtnSEFHVixpQkFBaUIsWUFabkI7WUFDUCxZQUFZO1lBQ1osUUFBUTtZQUNSLGNBQWM7WUFDZCxZQUFZO1lBQ1osYUFBYTtZQUNiLGNBQWM7U0FDZjs0RkFLVSxpQkFBaUI7a0JBaEI3QixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRTt3QkFDWixtQkFBbUI7cUJBQ3BCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLFFBQVE7d0JBQ1IsY0FBYzt3QkFDZCxZQUFZO3dCQUNaLGFBQWE7d0JBQ2IsY0FBYztxQkFDZjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsbUJBQW1CO3FCQUNwQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTWF0VGFibGVNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC90YWJsZSc7XG5pbXBvcnQgeyBNYXRJY29uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaWNvbic7XG5pbXBvcnQgeyBTbWFydEV4cE1vZHVsZSB9IGZyb20gJ0BuZy1hdG9taWMvY29tbW9uL3BpcGVzJztcbmltcG9ydCB7IEVsZW1lbnRzTW9kdWxlIH0gZnJvbSAnQG5nLWF0b21pYy9lbGVtZW50cyc7XG5cbmltcG9ydCB7IFNtYXJ0Q29sdW1uTW9sZWN1bGUgfSBmcm9tICcuL3NtYXJ0LWNvbHVtbi5tb2xlY3VsZSc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIFNtYXJ0Q29sdW1uTW9sZWN1bGUsXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgLy8gUGlwZXNcbiAgICBTbWFydEV4cE1vZHVsZSxcbiAgICAvLyBNYXRlcmlhbHNcbiAgICBNYXRJY29uTW9kdWxlLFxuICAgIE1hdFRhYmxlTW9kdWxlLFxuICBdLFxuICBleHBvcnRzOiBbXG4gICAgU21hcnRDb2x1bW5Nb2xlY3VsZVxuICBdXG59KVxuZXhwb3J0IGNsYXNzIFNtYXJ0Q29sdW1uTW9kdWxlIGV4dGVuZHMgRWxlbWVudHNNb2R1bGUgeyB9XG4iXX0=
@@ -0,0 +1,31 @@
1
+ import { ChangeDetectionStrategy, Input, Output, EventEmitter, Component, ViewEncapsulation } from '@angular/core';
2
+ import { MatTextColumn } from '@angular/material/table';
3
+ // TODO(nontangent): 依存を引き剥がす
4
+ import { toObject } from '@ng-atomic/common/utils';
5
+ import { flatten } from 'flat';
6
+ import * as i0 from "@angular/core";
7
+ import * as i1 from "@angular/material/icon";
8
+ import * as i2 from "@angular/material/table";
9
+ import * as i3 from "@angular/common";
10
+ import * as i4 from "@ng-atomic/common/pipes";
11
+ export class SmartColumnMolecule extends MatTextColumn {
12
+ constructor() {
13
+ super(...arguments);
14
+ this.dataAccessor = (data, name) => {
15
+ return name.includes('.') ? flatten(toObject(data))?.[name] : data?.[name];
16
+ };
17
+ this.sort = 'none';
18
+ this.headerClick = new EventEmitter();
19
+ }
20
+ }
21
+ SmartColumnMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SmartColumnMolecule, deps: null, target: i0.ɵɵFactoryTarget.Component });
22
+ SmartColumnMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: SmartColumnMolecule, selector: "molecules-smart-column", inputs: { sort: "sort" }, outputs: { headerClick: "headerClick" }, usesInheritance: true, ngImport: i0, template: "<ng-container matColumnDef>\n <th\n mat-header-cell\n *matHeaderCellDef\n [style.text-align]=\"justify\"\n (click)=\"headerClick.emit()\"\n >\n <p class=\"nowrap\" style=\"display: flex; align-items: center;\">\n <span>{{headerText}}</span>\n <ng-container [ngSwitch]=\"sort\">\n <mat-icon class=\"order\" *ngSwitchCase=\"'asc'\">south</mat-icon>\n <mat-icon class=\"order\" *ngSwitchCase=\"'desc'\">north</mat-icon>\n </ng-container>\n </p>\n </th>\n <td mat-cell *matCellDef=\"let data\" [style.text-align]=\"justify\">\n <p class=\"nowrap\">{{dataAccessor(data, name) | smartExp:name}}</p>\n </td>\n</ng-container>", styles: ["th[mat-header-cell],td[mat-cell]{cursor:pointer}th[mat-header-cell] mat-icon.order,td[mat-cell] mat-icon.order{width:12px;height:12px;font-size:12px}th[mat-header-cell] .nowrap,td[mat-cell] .nowrap{max-width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n"], components: [{ type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i2.MatColumnDef, selector: "[matColumnDef]", inputs: ["sticky", "matColumnDef"] }, { type: i2.MatHeaderCellDef, selector: "[matHeaderCellDef]" }, { type: i2.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { type: i3.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { type: i3.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { type: i2.MatCellDef, selector: "[matCellDef]" }, { type: i2.MatCell, selector: "mat-cell, td[mat-cell]" }], pipes: { "smartExp": i4.SmartExpPipe }, changeDetection: i0.ChangeDetectionStrategy.Default, encapsulation: i0.ViewEncapsulation.None });
23
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: SmartColumnMolecule, decorators: [{
24
+ type: Component,
25
+ args: [{ selector: 'molecules-smart-column', encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.Default, template: "<ng-container matColumnDef>\n <th\n mat-header-cell\n *matHeaderCellDef\n [style.text-align]=\"justify\"\n (click)=\"headerClick.emit()\"\n >\n <p class=\"nowrap\" style=\"display: flex; align-items: center;\">\n <span>{{headerText}}</span>\n <ng-container [ngSwitch]=\"sort\">\n <mat-icon class=\"order\" *ngSwitchCase=\"'asc'\">south</mat-icon>\n <mat-icon class=\"order\" *ngSwitchCase=\"'desc'\">north</mat-icon>\n </ng-container>\n </p>\n </th>\n <td mat-cell *matCellDef=\"let data\" [style.text-align]=\"justify\">\n <p class=\"nowrap\">{{dataAccessor(data, name) | smartExp:name}}</p>\n </td>\n</ng-container>", styles: ["th[mat-header-cell],td[mat-cell]{cursor:pointer}th[mat-header-cell] mat-icon.order,td[mat-cell] mat-icon.order{width:12px;height:12px;font-size:12px}th[mat-header-cell] .nowrap,td[mat-cell] .nowrap{max-width:160px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n"] }]
26
+ }], propDecorators: { sort: [{
27
+ type: Input
28
+ }], headerClick: [{
29
+ type: Output
30
+ }] } });
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic21hcnQtY29sdW1uLm1vbGVjdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy9zbWFydC1jb2x1bW4vc21hcnQtY29sdW1uLm1vbGVjdWxlLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy9zbWFydC1jb2x1bW4vc21hcnQtY29sdW1uLm1vbGVjdWxlLmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLEtBQUssRUFBRSxNQUFNLEVBQUUsWUFBWSxFQUFFLFNBQVMsRUFBRSxpQkFBaUIsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNuSCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0seUJBQXlCLENBQUM7QUFDeEQsNkJBQTZCO0FBQzdCLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUNuRCxPQUFPLEVBQUUsT0FBTyxFQUFFLE1BQU0sTUFBTSxDQUFDOzs7Ozs7QUFTL0IsTUFBTSxPQUFPLG1CQUF1QixTQUFRLGFBQWdCO0lBUDVEOztRQVFFLGlCQUFZLEdBQUcsQ0FBQyxJQUFTLEVBQUUsSUFBWSxFQUFVLEVBQUU7WUFDakQsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxDQUFDLENBQUMsQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLElBQUksQ0FBQyxDQUFDLEVBQUUsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLENBQUMsSUFBSSxFQUFFLENBQUMsSUFBSSxDQUFDLENBQUM7UUFDN0UsQ0FBQyxDQUFBO1FBR0QsU0FBSSxHQUE0QixNQUFNLENBQUM7UUFHdkMsZ0JBQVcsR0FBRyxJQUFJLFlBQVksRUFBUSxDQUFDO0tBRXhDOztpSEFYWSxtQkFBbUI7cUdBQW5CLG1CQUFtQix3SkNiaEMsa3FCQWtCZTs0RkRMRixtQkFBbUI7a0JBUC9CLFNBQVM7K0JBQ0Usd0JBQXdCLGlCQUduQixpQkFBaUIsQ0FBQyxJQUFJLG1CQUNwQix1QkFBdUIsQ0FBQyxPQUFPOzhCQVFoRCxJQUFJO3NCQURILEtBQUs7Z0JBSU4sV0FBVztzQkFEVixNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIElucHV0LCBPdXRwdXQsIEV2ZW50RW1pdHRlciwgQ29tcG9uZW50LCBWaWV3RW5jYXBzdWxhdGlvbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgTWF0VGV4dENvbHVtbiB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL3RhYmxlJztcbi8vIFRPRE8obm9udGFuZ2VudCk6IOS+neWtmOOCkuW8leOBjeWJpeOBjOOBmVxuaW1wb3J0IHsgdG9PYmplY3QgfSBmcm9tICdAbmctYXRvbWljL2NvbW1vbi91dGlscyc7XG5pbXBvcnQgeyBmbGF0dGVuIH0gZnJvbSAnZmxhdCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy1zbWFydC1jb2x1bW4nLFxuICB0ZW1wbGF0ZVVybDogJy4vc21hcnQtY29sdW1uLm1vbGVjdWxlLmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9zbWFydC1jb2x1bW4ubW9sZWN1bGUuc2NzcyddLFxuICBlbmNhcHN1bGF0aW9uOiBWaWV3RW5jYXBzdWxhdGlvbi5Ob25lLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LkRlZmF1bHQsXG59KVxuZXhwb3J0IGNsYXNzIFNtYXJ0Q29sdW1uTW9sZWN1bGU8VD4gZXh0ZW5kcyBNYXRUZXh0Q29sdW1uPFQ+IHtcbiAgZGF0YUFjY2Vzc29yID0gKGRhdGE6IGFueSwgbmFtZTogc3RyaW5nKTogc3RyaW5nID0+IHtcbiAgICByZXR1cm4gbmFtZS5pbmNsdWRlcygnLicpID8gZmxhdHRlbih0b09iamVjdChkYXRhKSk/LltuYW1lXSA6IGRhdGE/LltuYW1lXTtcbiAgfVxuICBcbiAgQElucHV0KClcbiAgc29ydDogJ2FzYycgfCAnZGVzYycgfCAnbm9uZScgPSAnbm9uZSc7XG5cbiAgQE91dHB1dCgpXG4gIGhlYWRlckNsaWNrID0gbmV3IEV2ZW50RW1pdHRlcjx2b2lkPigpO1xuXG59XG4iLCI8bmctY29udGFpbmVyIG1hdENvbHVtbkRlZj5cbiAgPHRoXG4gICAgbWF0LWhlYWRlci1jZWxsXG4gICAgKm1hdEhlYWRlckNlbGxEZWZcbiAgICBbc3R5bGUudGV4dC1hbGlnbl09XCJqdXN0aWZ5XCJcbiAgICAoY2xpY2spPVwiaGVhZGVyQ2xpY2suZW1pdCgpXCJcbiAgPlxuICAgIDxwIGNsYXNzPVwibm93cmFwXCIgc3R5bGU9XCJkaXNwbGF5OiBmbGV4OyBhbGlnbi1pdGVtczogY2VudGVyO1wiPlxuICAgICAgPHNwYW4+e3toZWFkZXJUZXh0fX08L3NwYW4+XG4gICAgICA8bmctY29udGFpbmVyIFtuZ1N3aXRjaF09XCJzb3J0XCI+XG4gICAgICAgIDxtYXQtaWNvbiBjbGFzcz1cIm9yZGVyXCIgKm5nU3dpdGNoQ2FzZT1cIidhc2MnXCI+c291dGg8L21hdC1pY29uPlxuICAgICAgICA8bWF0LWljb24gY2xhc3M9XCJvcmRlclwiICpuZ1N3aXRjaENhc2U9XCInZGVzYydcIj5ub3J0aDwvbWF0LWljb24+XG4gICAgICA8L25nLWNvbnRhaW5lcj5cbiAgICA8L3A+XG4gIDwvdGg+XG4gIDx0ZCBtYXQtY2VsbCAqbWF0Q2VsbERlZj1cImxldCBkYXRhXCIgW3N0eWxlLnRleHQtYWxpZ25dPVwianVzdGlmeVwiPlxuICAgIDxwIGNsYXNzPVwibm93cmFwXCI+e3tkYXRhQWNjZXNzb3IoZGF0YSwgbmFtZSkgfCBzbWFydEV4cDpuYW1lfX08L3A+XG4gIDwvdGQ+XG48L25nLWNvbnRhaW5lcj4iXX0=
@@ -0,0 +1,3 @@
1
+ export { TextInputFieldMolecule } from './text-input-field.molecule';
2
+ export { TextInputFieldModule } from './text-input-field.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL3RleHQtaW5wdXQtZmllbGQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7QUFDckUsT0FBTyxFQUFFLG9CQUFvQixFQUFFLE1BQU0sMkJBQTJCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgeyBUZXh0SW5wdXRGaWVsZE1vbGVjdWxlIH0gZnJvbSAnLi90ZXh0LWlucHV0LWZpZWxkLm1vbGVjdWxlJztcbmV4cG9ydCB7IFRleHRJbnB1dEZpZWxkTW9kdWxlIH0gZnJvbSAnLi90ZXh0LWlucHV0LWZpZWxkLm1vZHVsZSc7XG4iXX0=
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLXRleHQtaW5wdXQtZmllbGQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL3RleHQtaW5wdXQtZmllbGQvbmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLXRleHQtaW5wdXQtZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -0,0 +1,38 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ReactiveFormsModule } from '@angular/forms';
4
+ // import { MatFormFieldModule } from '@angular/material/form-field';
5
+ import { MatInputModule } from '@angular/material/input';
6
+ import { ElementsModule } from '@ng-atomic/elements';
7
+ import { TextInputFieldMolecule } from './text-input-field.molecule';
8
+ import * as i0 from "@angular/core";
9
+ export class TextInputFieldModule extends ElementsModule {
10
+ }
11
+ TextInputFieldModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextInputFieldModule, deps: null, target: i0.ɵɵFactoryTarget.NgModule });
12
+ TextInputFieldModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextInputFieldModule, declarations: [TextInputFieldMolecule], imports: [CommonModule,
13
+ ReactiveFormsModule,
14
+ // Materials
15
+ // MatFormFieldModule,
16
+ MatInputModule], exports: [TextInputFieldMolecule] });
17
+ TextInputFieldModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextInputFieldModule, imports: [[
18
+ CommonModule,
19
+ ReactiveFormsModule,
20
+ // Materials
21
+ // MatFormFieldModule,
22
+ MatInputModule,
23
+ ]] });
24
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextInputFieldModule, decorators: [{
25
+ type: NgModule,
26
+ args: [{
27
+ declarations: [TextInputFieldMolecule],
28
+ imports: [
29
+ CommonModule,
30
+ ReactiveFormsModule,
31
+ // Materials
32
+ // MatFormFieldModule,
33
+ MatInputModule,
34
+ ],
35
+ exports: [TextInputFieldMolecule]
36
+ }]
37
+ }] });
38
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1pbnB1dC1maWVsZC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL3RleHQtaW5wdXQtZmllbGQvdGV4dC1pbnB1dC1maWVsZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDckQscUVBQXFFO0FBQ3JFLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUN6RCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFFckQsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sNkJBQTZCLENBQUM7O0FBZXJFLE1BQU0sT0FBTyxvQkFBcUIsU0FBUSxjQUFjOztrSEFBM0Msb0JBQW9CO21IQUFwQixvQkFBb0IsaUJBVmhCLHNCQUFzQixhQUVuQyxZQUFZO1FBQ1osbUJBQW1CO1FBQ25CLFlBQVk7UUFDWixzQkFBc0I7UUFDdEIsY0FBYyxhQUVOLHNCQUFzQjttSEFFckIsb0JBQW9CLFlBVHRCO1lBQ1AsWUFBWTtZQUNaLG1CQUFtQjtZQUNuQixZQUFZO1lBQ1osc0JBQXNCO1lBQ3RCLGNBQWM7U0FDZjs0RkFHVSxvQkFBb0I7a0JBWGhDLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMsc0JBQXNCLENBQUM7b0JBQ3RDLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLG1CQUFtQjt3QkFDbkIsWUFBWTt3QkFDWixzQkFBc0I7d0JBQ3RCLGNBQWM7cUJBQ2Y7b0JBQ0QsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7aUJBQ2xDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBSZWFjdGl2ZUZvcm1zTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuLy8gaW1wb3J0IHsgTWF0Rm9ybUZpZWxkTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvZm9ybS1maWVsZCc7XG5pbXBvcnQgeyBNYXRJbnB1dE1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL21hdGVyaWFsL2lucHV0JztcbmltcG9ydCB7IEVsZW1lbnRzTW9kdWxlIH0gZnJvbSAnQG5nLWF0b21pYy9lbGVtZW50cyc7XG5cbmltcG9ydCB7IFRleHRJbnB1dEZpZWxkTW9sZWN1bGUgfSBmcm9tICcuL3RleHQtaW5wdXQtZmllbGQubW9sZWN1bGUnO1xuXG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbVGV4dElucHV0RmllbGRNb2xlY3VsZV0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgUmVhY3RpdmVGb3Jtc01vZHVsZSxcbiAgICAvLyBNYXRlcmlhbHNcbiAgICAvLyBNYXRGb3JtRmllbGRNb2R1bGUsXG4gICAgTWF0SW5wdXRNb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtUZXh0SW5wdXRGaWVsZE1vbGVjdWxlXVxufSlcbmV4cG9ydCBjbGFzcyBUZXh0SW5wdXRGaWVsZE1vZHVsZSBleHRlbmRzIEVsZW1lbnRzTW9kdWxlIHsgfVxuIl19
@@ -0,0 +1,34 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import { FormControl } from '@ngneat/reactive-forms';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/material/form-field";
5
+ import * as i2 from "@angular/material/input";
6
+ import * as i3 from "@angular/forms";
7
+ import * as i4 from "@angular/common";
8
+ export class TextInputFieldMolecule {
9
+ constructor() {
10
+ this.type = 'text';
11
+ this.label = 'label';
12
+ this.control = new FormControl();
13
+ this.placeholder = 'placeholder';
14
+ }
15
+ }
16
+ TextInputFieldMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextInputFieldMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
17
+ TextInputFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: TextInputFieldMolecule, selector: "molecules-text-input-field", inputs: { type: "type", name: "name", label: "label", control: "control", placeholder: "placeholder", hint: "hint" }, host: { classAttribute: "molecule field" }, ngImport: i0, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <input matInput [name]=\"name\" [type]=\"type\" [formControl]=\"control\" [placeholder]=\"placeholder\">\n <!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{display:block;width:100%}:host mat-form-field{width:100%}\n"], components: [{ type: i1.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }], directives: [{ type: i1.MatLabel, selector: "mat-label" }, { type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { type: i3.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextInputFieldMolecule, decorators: [{
19
+ type: Component,
20
+ args: [{ selector: 'molecules-text-input-field', changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'molecule field' }, template: "<mat-form-field appearance=\"outline\">\n <mat-label>{{ label }}</mat-label>\n <input matInput [name]=\"name\" [type]=\"type\" [formControl]=\"control\" [placeholder]=\"placeholder\">\n <!-- <mat-icon matSuffix>sentiment_very_satisfied</mat-icon> -->\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{display:block;width:100%}:host mat-form-field{width:100%}\n"] }]
21
+ }], propDecorators: { type: [{
22
+ type: Input
23
+ }], name: [{
24
+ type: Input
25
+ }], label: [{
26
+ type: Input
27
+ }], control: [{
28
+ type: Input
29
+ }], placeholder: [{
30
+ type: Input
31
+ }], hint: [{
32
+ type: Input
33
+ }] } });
34
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1pbnB1dC1maWVsZC5tb2xlY3VsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9tb2xlY3VsZXMvdGV4dC1pbnB1dC1maWVsZC90ZXh0LWlucHV0LWZpZWxkLm1vbGVjdWxlLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy90ZXh0LWlucHV0LWZpZWxkL3RleHQtaW5wdXQtZmllbGQubW9sZWN1bGUuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMxRSxPQUFPLEVBQUUsV0FBVyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7Ozs7OztBQVNyRCxNQUFNLE9BQU8sc0JBQXNCO0lBUG5DO1FBVUUsU0FBSSxHQUFtQyxNQUFNLENBQUM7UUFNOUMsVUFBSyxHQUFHLE9BQU8sQ0FBQztRQUdoQixZQUFPLEdBQUcsSUFBSSxXQUFXLEVBQW1CLENBQUM7UUFHN0MsZ0JBQVcsR0FBRyxhQUFhLENBQUM7S0FLN0I7O29IQXBCWSxzQkFBc0I7d0dBQXRCLHNCQUFzQixvT0NWbkMsb1VBS2lCOzRGREtKLHNCQUFzQjtrQkFQbEMsU0FBUzsrQkFDRSw0QkFBNEIsbUJBR3JCLHVCQUF1QixDQUFDLE1BQU0sUUFDekMsRUFBQyxLQUFLLEVBQUUsZ0JBQWdCLEVBQUM7OEJBSy9CLElBQUk7c0JBREgsS0FBSztnQkFJTixJQUFJO3NCQURILEtBQUs7Z0JBSU4sS0FBSztzQkFESixLQUFLO2dCQUlOLE9BQU87c0JBRE4sS0FBSztnQkFJTixXQUFXO3NCQURWLEtBQUs7Z0JBSU4sSUFBSTtzQkFESCxLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1Db250cm9sIH0gZnJvbSAnQG5nbmVhdC9yZWFjdGl2ZS1mb3Jtcyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy10ZXh0LWlucHV0LWZpZWxkJyxcbiAgdGVtcGxhdGVVcmw6ICcuL3RleHQtaW5wdXQtZmllbGQubW9sZWN1bGUuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL3RleHQtaW5wdXQtZmllbGQubW9sZWN1bGUuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaG9zdDoge2NsYXNzOiAnbW9sZWN1bGUgZmllbGQnfSxcbn0pXG5leHBvcnQgY2xhc3MgVGV4dElucHV0RmllbGRNb2xlY3VsZSB7XG5cbiAgQElucHV0KClcbiAgdHlwZTogJ3RleHQnIHwgJ251bWJlcicgfCAncGFzc3dvcmQnID0gJ3RleHQnO1xuXG4gIEBJbnB1dCgpXG4gIG5hbWU/OiBzdHJpbmc7XG5cbiAgQElucHV0KClcbiAgbGFiZWwgPSAnbGFiZWwnO1xuXG4gIEBJbnB1dCgpXG4gIGNvbnRyb2wgPSBuZXcgRm9ybUNvbnRyb2w8c3RyaW5nIHwgbnVtYmVyPigpO1xuXG4gIEBJbnB1dCgpXG4gIHBsYWNlaG9sZGVyID0gJ3BsYWNlaG9sZGVyJztcblxuICBASW5wdXQoKVxuICBoaW50Pzogc3RyaW5nO1xuXG59XG4iLCI8bWF0LWZvcm0tZmllbGQgYXBwZWFyYW5jZT1cIm91dGxpbmVcIj5cbiAgPG1hdC1sYWJlbD57eyBsYWJlbCB9fTwvbWF0LWxhYmVsPlxuICA8aW5wdXQgbWF0SW5wdXQgW25hbWVdPVwibmFtZVwiIFt0eXBlXT1cInR5cGVcIiBbZm9ybUNvbnRyb2xdPVwiY29udHJvbFwiIFtwbGFjZWhvbGRlcl09XCJwbGFjZWhvbGRlclwiPlxuICA8IS0tIDxtYXQtaWNvbiBtYXRTdWZmaXg+c2VudGltZW50X3Zlcnlfc2F0aXNmaWVkPC9tYXQtaWNvbj4gLS0+XG4gIDxtYXQtaGludCAqbmdJZj1cImhpbnRcIj57eyBoaW50IH19PC9tYXQtaGludD5cbjwvbWF0LWZvcm0tZmllbGQ+Il19
@@ -0,0 +1,3 @@
1
+ export { TextareaFieldMolecule } from './textarea-field.molecule';
2
+ export { TextareaFieldModule } from './textarea-field.module';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL3RleHRhcmVhLWZpZWxkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQ2xFLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHsgVGV4dGFyZWFGaWVsZE1vbGVjdWxlIH0gZnJvbSAnLi90ZXh0YXJlYS1maWVsZC5tb2xlY3VsZSc7XG5leHBvcnQgeyBUZXh0YXJlYUZpZWxkTW9kdWxlIH0gZnJvbSAnLi90ZXh0YXJlYS1maWVsZC5tb2R1bGUnO1xuIl19
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctYXRvbWljLWNvbXBvbmVudHMtbW9sZWN1bGVzLXRleHRhcmVhLWZpZWxkLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy90ZXh0YXJlYS1maWVsZC9uZy1hdG9taWMtY29tcG9uZW50cy1tb2xlY3VsZXMtdGV4dGFyZWEtZmllbGQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -0,0 +1,30 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatInputModule } from '@angular/material/input';
4
+ import { ElementsModule } from '@ng-atomic/elements';
5
+ import { TextareaFieldMolecule } from './textarea-field.molecule';
6
+ import * as i0 from "@angular/core";
7
+ export class TextareaFieldModule extends ElementsModule {
8
+ }
9
+ TextareaFieldModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextareaFieldModule, deps: null, target: i0.ɵɵFactoryTarget.NgModule });
10
+ TextareaFieldModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextareaFieldModule, declarations: [TextareaFieldMolecule], imports: [CommonModule,
11
+ // Material
12
+ MatInputModule], exports: [TextareaFieldMolecule] });
13
+ TextareaFieldModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextareaFieldModule, imports: [[
14
+ CommonModule,
15
+ // Material
16
+ MatInputModule,
17
+ ]] });
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextareaFieldModule, decorators: [{
19
+ type: NgModule,
20
+ args: [{
21
+ declarations: [TextareaFieldMolecule],
22
+ imports: [
23
+ CommonModule,
24
+ // Material
25
+ MatInputModule,
26
+ ],
27
+ exports: [TextareaFieldMolecule]
28
+ }]
29
+ }] });
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEtZmllbGQubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy90ZXh0YXJlYS1maWVsZC90ZXh0YXJlYS1maWVsZC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQ3pELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUVyRCxPQUFPLEVBQUUscUJBQXFCLEVBQUUsTUFBTSwyQkFBMkIsQ0FBQzs7QUFZbEUsTUFBTSxPQUFPLG1CQUFvQixTQUFRLGNBQWM7O2lIQUExQyxtQkFBbUI7a0hBQW5CLG1CQUFtQixpQkFSZixxQkFBcUIsYUFFbEMsWUFBWTtRQUNaLFdBQVc7UUFDWCxjQUFjLGFBRU4scUJBQXFCO2tIQUVwQixtQkFBbUIsWUFQckI7WUFDUCxZQUFZO1lBQ1osV0FBVztZQUNYLGNBQWM7U0FDZjs0RkFHVSxtQkFBbUI7a0JBVC9CLFFBQVE7bUJBQUM7b0JBQ1IsWUFBWSxFQUFFLENBQUMscUJBQXFCLENBQUM7b0JBQ3JDLE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLFdBQVc7d0JBQ1gsY0FBYztxQkFDZjtvQkFDRCxPQUFPLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztpQkFDakMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE1hdElucHV0TW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvbWF0ZXJpYWwvaW5wdXQnO1xuaW1wb3J0IHsgRWxlbWVudHNNb2R1bGUgfSBmcm9tICdAbmctYXRvbWljL2VsZW1lbnRzJztcblxuaW1wb3J0IHsgVGV4dGFyZWFGaWVsZE1vbGVjdWxlIH0gZnJvbSAnLi90ZXh0YXJlYS1maWVsZC5tb2xlY3VsZSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgZGVjbGFyYXRpb25zOiBbVGV4dGFyZWFGaWVsZE1vbGVjdWxlXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICAvLyBNYXRlcmlhbFxuICAgIE1hdElucHV0TW9kdWxlLFxuICBdLFxuICBleHBvcnRzOiBbVGV4dGFyZWFGaWVsZE1vbGVjdWxlXVxufSlcbmV4cG9ydCBjbGFzcyBUZXh0YXJlYUZpZWxkTW9kdWxlIGV4dGVuZHMgRWxlbWVudHNNb2R1bGUgeyB9XG4iXX0=
@@ -0,0 +1,24 @@
1
+ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/material/form-field";
4
+ import * as i2 from "@angular/material/input";
5
+ import * as i3 from "@angular/common";
6
+ export class TextareaFieldMolecule {
7
+ constructor() {
8
+ this.label = 'label';
9
+ this.placeholder = 'placeholder';
10
+ }
11
+ }
12
+ TextareaFieldMolecule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextareaFieldMolecule, deps: [], target: i0.ɵɵFactoryTarget.Component });
13
+ TextareaFieldMolecule.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: TextareaFieldMolecule, selector: "molecules-textarea-field", inputs: { label: "label", hint: "hint", placeholder: "placeholder" }, host: { classAttribute: "molecule field" }, ngImport: i0, template: "<mat-form-field class=\"example-full-width\">\n <mat-label>{{ label }}</mat-label>\n <textarea matInput [placeholder]=\"placeholder\" rows=\"10\"></textarea>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{display:block;width:100%}:host mat-form-field{width:100%}\n"], components: [{ type: i1.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }], directives: [{ type: i1.MatLabel, selector: "mat-label" }, { type: i2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.MatHint, selector: "mat-hint", inputs: ["align", "id"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TextareaFieldMolecule, decorators: [{
15
+ type: Component,
16
+ args: [{ selector: 'molecules-textarea-field', changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'molecule field' }, template: "<mat-form-field class=\"example-full-width\">\n <mat-label>{{ label }}</mat-label>\n <textarea matInput [placeholder]=\"placeholder\" rows=\"10\"></textarea>\n <mat-hint *ngIf=\"hint\">{{ hint }}</mat-hint>\n</mat-form-field>", styles: [":host{display:block;width:100%}:host mat-form-field{width:100%}\n"] }]
17
+ }], propDecorators: { label: [{
18
+ type: Input
19
+ }], hint: [{
20
+ type: Input
21
+ }], placeholder: [{
22
+ type: Input
23
+ }] } });
24
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEtZmllbGQubW9sZWN1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbW9sZWN1bGVzL3RleHRhcmVhLWZpZWxkL3RleHRhcmVhLWZpZWxkLm1vbGVjdWxlLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL21vbGVjdWxlcy90ZXh0YXJlYS1maWVsZC90ZXh0YXJlYS1maWVsZC5tb2xlY3VsZS5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7OztBQVMxRSxNQUFNLE9BQU8scUJBQXFCO0lBUGxDO1FBVUUsVUFBSyxHQUFHLE9BQU8sQ0FBQztRQU1oQixnQkFBVyxHQUFHLGFBQWEsQ0FBQztLQUU3Qjs7bUhBWFkscUJBQXFCO3VHQUFyQixxQkFBcUIsa0xDVGxDLHNPQUlpQjs0RkRLSixxQkFBcUI7a0JBUGpDLFNBQVM7K0JBQ0UsMEJBQTBCLG1CQUduQix1QkFBdUIsQ0FBQyxNQUFNLFFBQ3pDLEVBQUMsS0FBSyxFQUFFLGdCQUFnQixFQUFDOzhCQUsvQixLQUFLO3NCQURKLEtBQUs7Z0JBSU4sSUFBSTtzQkFESCxLQUFLO2dCQUlOLFdBQVc7c0JBRFYsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ21vbGVjdWxlcy10ZXh0YXJlYS1maWVsZCcsXG4gIHRlbXBsYXRlVXJsOiAnLi90ZXh0YXJlYS1maWVsZC5tb2xlY3VsZS5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vdGV4dGFyZWEtZmllbGQubW9sZWN1bGUuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaG9zdDoge2NsYXNzOiAnbW9sZWN1bGUgZmllbGQnfSxcbn0pXG5leHBvcnQgY2xhc3MgVGV4dGFyZWFGaWVsZE1vbGVjdWxlIHtcblxuICBASW5wdXQoKVxuICBsYWJlbCA9ICdsYWJlbCc7XG5cbiAgQElucHV0KClcbiAgaGludD86IHN0cmluZztcblxuICBASW5wdXQoKVxuICBwbGFjZWhvbGRlciA9ICdwbGFjZWhvbGRlcic7XG5cbn1cbiIsIjxtYXQtZm9ybS1maWVsZCBjbGFzcz1cImV4YW1wbGUtZnVsbC13aWR0aFwiPlxuICA8bWF0LWxhYmVsPnt7IGxhYmVsIH19PC9tYXQtbGFiZWw+XG4gIDx0ZXh0YXJlYSBtYXRJbnB1dCBbcGxhY2Vob2xkZXJdPVwicGxhY2Vob2xkZXJcIiByb3dzPVwiMTBcIj48L3RleHRhcmVhPlxuICA8bWF0LWhpbnQgKm5nSWY9XCJoaW50XCI+e3sgaGludCB9fTwvbWF0LWhpbnQ+XG48L21hdC1mb3JtLWZpZWxkPiJdfQ==
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmctYXRvbWljLWNvbXBvbmVudHMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvbmctYXRvbWljLWNvbXBvbmVudHMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
@@ -0,0 +1,34 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatButtonModule } from '@angular/material/button';
4
+ import { ElementsModule } from '@ng-atomic/elements';
5
+ import { ActionButtonsSectionOrganism } from './action-buttons-section.organism';
6
+ import * as i0 from "@angular/core";
7
+ export class ActionButtonsSectionModule extends ElementsModule {
8
+ }
9
+ ActionButtonsSectionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionButtonsSectionModule, deps: null, target: i0.ɵɵFactoryTarget.NgModule });
10
+ ActionButtonsSectionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionButtonsSectionModule, declarations: [ActionButtonsSectionOrganism], imports: [CommonModule,
11
+ // Materials
12
+ MatButtonModule], exports: [ActionButtonsSectionOrganism] });
13
+ ActionButtonsSectionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionButtonsSectionModule, imports: [[
14
+ CommonModule,
15
+ // Materials
16
+ MatButtonModule,
17
+ ]] });
18
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionButtonsSectionModule, decorators: [{
19
+ type: NgModule,
20
+ args: [{
21
+ declarations: [
22
+ ActionButtonsSectionOrganism
23
+ ],
24
+ imports: [
25
+ CommonModule,
26
+ // Materials
27
+ MatButtonModule,
28
+ ],
29
+ exports: [
30
+ ActionButtonsSectionOrganism
31
+ ]
32
+ }]
33
+ }] });
34
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWJ1dHRvbnMtc2VjdGlvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvb3JnYW5pc21zL2FjdGlvbi1idXR0b25zLXNlY3Rpb24vYWN0aW9uLWJ1dHRvbnMtc2VjdGlvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzNELE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUVyRCxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQzs7QUFlakYsTUFBTSxPQUFPLDBCQUEyQixTQUFRLGNBQWM7O3dIQUFqRCwwQkFBMEI7eUhBQTFCLDBCQUEwQixpQkFYbkMsNEJBQTRCLGFBRzVCLFlBQVk7UUFDWixZQUFZO1FBQ1osZUFBZSxhQUdmLDRCQUE0Qjt5SEFHbkIsMEJBQTBCLFlBVDVCO1lBQ1AsWUFBWTtZQUNaLFlBQVk7WUFDWixlQUFlO1NBQ2hCOzRGQUtVLDBCQUEwQjtrQkFidEMsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osNEJBQTRCO3FCQUM3QjtvQkFDRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWixZQUFZO3dCQUNaLGVBQWU7cUJBQ2hCO29CQUNELE9BQU8sRUFBRTt3QkFDUCw0QkFBNEI7cUJBQzdCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBNYXRCdXR0b25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9idXR0b24nO1xuaW1wb3J0IHsgRWxlbWVudHNNb2R1bGUgfSBmcm9tICdAbmctYXRvbWljL2VsZW1lbnRzJztcblxuaW1wb3J0IHsgQWN0aW9uQnV0dG9uc1NlY3Rpb25PcmdhbmlzbSB9IGZyb20gJy4vYWN0aW9uLWJ1dHRvbnMtc2VjdGlvbi5vcmdhbmlzbSc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEFjdGlvbkJ1dHRvbnNTZWN0aW9uT3JnYW5pc21cbiAgXSxcbiAgaW1wb3J0czogW1xuICAgIENvbW1vbk1vZHVsZSxcbiAgICAvLyBNYXRlcmlhbHNcbiAgICBNYXRCdXR0b25Nb2R1bGUsXG4gIF0sXG4gIGV4cG9ydHM6IFtcbiAgICBBY3Rpb25CdXR0b25zU2VjdGlvbk9yZ2FuaXNtXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQWN0aW9uQnV0dG9uc1NlY3Rpb25Nb2R1bGUgZXh0ZW5kcyBFbGVtZW50c01vZHVsZSB7IH1cbiJdfQ==
@@ -0,0 +1,22 @@
1
+ import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/material/button";
4
+ import * as i2 from "@angular/common";
5
+ export class ActionButtonsSectionOrganism {
6
+ constructor() {
7
+ this.actionItems = [];
8
+ this.actionItemClick = new EventEmitter();
9
+ this.trackById = (item) => item.id;
10
+ }
11
+ }
12
+ ActionButtonsSectionOrganism.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionButtonsSectionOrganism, deps: [], target: i0.ɵɵFactoryTarget.Component });
13
+ ActionButtonsSectionOrganism.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ActionButtonsSectionOrganism, selector: "organisms-action-buttons-section", inputs: { actionItems: "actionItems" }, outputs: { actionItemClick: "actionItemClick" }, host: { classAttribute: "organism section" }, ngImport: i0, template: "<ng-container *ngFor=\"let item of actionItems; trackBy: trackById\">\n <button mat-raised-button color=\"primary\" (click)=\"actionItemClick.emit([item])\">{{ item?.name }}</button>\n</ng-container>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-action-buttons-section-h7LK: var(--horizontal-padding)}:host{display:flex;flex-direction:row;grid-gap:8px;gap:8px;width:100%;padding:0 var(--horizontal-padding-SCOPED-IN-action-buttons-section-h7LK);box-sizing:border-box}:host button{width:100%;height:48px}\n"], components: [{ type: i1.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
14
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ActionButtonsSectionOrganism, decorators: [{
15
+ type: Component,
16
+ args: [{ selector: 'organisms-action-buttons-section', changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'organism section' }, template: "<ng-container *ngFor=\"let item of actionItems; trackBy: trackById\">\n <button mat-raised-button color=\"primary\" (click)=\"actionItemClick.emit([item])\">{{ item?.name }}</button>\n</ng-container>", styles: [":host{--horizontal-padding: 16px;--horizontal-padding-SCOPED-IN-action-buttons-section-h7LK: var(--horizontal-padding)}:host{display:flex;flex-direction:row;grid-gap:8px;gap:8px;width:100%;padding:0 var(--horizontal-padding-SCOPED-IN-action-buttons-section-h7LK);box-sizing:border-box}:host button{width:100%;height:48px}\n"] }]
17
+ }], propDecorators: { actionItems: [{
18
+ type: Input
19
+ }], actionItemClick: [{
20
+ type: Output
21
+ }] } });
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWJ1dHRvbnMtc2VjdGlvbi5vcmdhbmlzbS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvY29tcG9uZW50cy9vcmdhbmlzbXMvYWN0aW9uLWJ1dHRvbnMtc2VjdGlvbi9hY3Rpb24tYnV0dG9ucy1zZWN0aW9uLm9yZ2FuaXNtLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9jb21wb25lbnRzL29yZ2FuaXNtcy9hY3Rpb24tYnV0dG9ucy1zZWN0aW9uL2FjdGlvbi1idXR0b25zLXNlY3Rpb24ub3JnYW5pc20uaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsU0FBUyxFQUFFLFlBQVksRUFBRSxLQUFLLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBVWhHLE1BQU0sT0FBTyw0QkFBNEI7SUFQekM7UUFTRSxnQkFBVyxHQUFpQixFQUFFLENBQUM7UUFHL0Isb0JBQWUsR0FBRyxJQUFJLFlBQVksRUFBZ0IsQ0FBQztRQUVuRCxjQUFTLEdBQUcsQ0FBQyxJQUFnQixFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDO0tBQzNDOzswSEFSWSw0QkFBNEI7OEdBQTVCLDRCQUE0QiwrTUNWekMsME1BRWU7NEZEUUYsNEJBQTRCO2tCQVB4QyxTQUFTOytCQUNFLGtDQUFrQyxtQkFHM0IsdUJBQXVCLENBQUMsTUFBTSxRQUN6QyxFQUFDLEtBQUssRUFBRSxrQkFBa0IsRUFBQzs4QkFJakMsV0FBVztzQkFEVixLQUFLO2dCQUlOLGVBQWU7c0JBRGQsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE91dHB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQWN0aW9uSXRlbSB9IGZyb20gJ0BuZy1hdG9taWMvY29tbW9uL21vZGVscyc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ29yZ2FuaXNtcy1hY3Rpb24tYnV0dG9ucy1zZWN0aW9uJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2FjdGlvbi1idXR0b25zLXNlY3Rpb24ub3JnYW5pc20uaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2FjdGlvbi1idXR0b25zLXNlY3Rpb24ub3JnYW5pc20uc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgaG9zdDoge2NsYXNzOiAnb3JnYW5pc20gc2VjdGlvbid9LFxufSlcbmV4cG9ydCBjbGFzcyBBY3Rpb25CdXR0b25zU2VjdGlvbk9yZ2FuaXNtIHtcbiAgQElucHV0KClcbiAgYWN0aW9uSXRlbXM6IEFjdGlvbkl0ZW1bXSA9IFtdO1xuXG4gIEBPdXRwdXQoKVxuICBhY3Rpb25JdGVtQ2xpY2sgPSBuZXcgRXZlbnRFbWl0dGVyPFtBY3Rpb25JdGVtXT4oKTtcblxuICB0cmFja0J5SWQgPSAoaXRlbTogQWN0aW9uSXRlbSkgPT4gaXRlbS5pZDtcbn1cbiIsIjxuZy1jb250YWluZXIgKm5nRm9yPVwibGV0IGl0ZW0gb2YgYWN0aW9uSXRlbXM7IHRyYWNrQnk6IHRyYWNrQnlJZFwiPlxuICA8YnV0dG9uIG1hdC1yYWlzZWQtYnV0dG9uIGNvbG9yPVwicHJpbWFyeVwiIChjbGljayk9XCJhY3Rpb25JdGVtQ2xpY2suZW1pdChbaXRlbV0pXCI+e3sgaXRlbT8ubmFtZSB9fTwvYnV0dG9uPlxuPC9uZy1jb250YWluZXI+Il19
@@ -0,0 +1,3 @@
1
+ export { ActionButtonsSectionModule } from './action-buttons-section.module';
2
+ export * from './action-buttons-section.organism';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL2NvbXBvbmVudHMvb3JnYW5pc21zL2FjdGlvbi1idXR0b25zLXNlY3Rpb24vaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDN0UsY0FBYyxtQ0FBbUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCB7IEFjdGlvbkJ1dHRvbnNTZWN0aW9uTW9kdWxlIH0gZnJvbSAnLi9hY3Rpb24tYnV0dG9ucy1zZWN0aW9uLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2FjdGlvbi1idXR0b25zLXNlY3Rpb24ub3JnYW5pc20nO1xuIl19