@netgrif/components 6.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (725) hide show
  1. package/LICENSE +132 -0
  2. package/README.md +106 -0
  3. package/bundles/netgrif-components.umd.js +4769 -0
  4. package/bundles/netgrif-components.umd.js.map +1 -0
  5. package/bundles/netgrif-components.umd.min.js +16 -0
  6. package/bundles/netgrif-components.umd.min.js.map +1 -0
  7. package/esm2015/lib/admin/admin.module.js +19 -0
  8. package/esm2015/lib/admin/public-api.js +5 -0
  9. package/esm2015/lib/admin/role-assignment/role-assignment.component.js +28 -0
  10. package/esm2015/lib/admin/user-invite/user-invite.component.js +35 -0
  11. package/esm2015/lib/authentication/auth.module.js +15 -0
  12. package/esm2015/lib/authentication/authentication-overlay/authentication-overlay.component.js +35 -0
  13. package/esm2015/lib/authentication/public-api.js +5 -0
  14. package/esm2015/lib/dashboard/cards/barchart-card/barchart-card.component.js +49 -0
  15. package/esm2015/lib/dashboard/cards/count-card/count-card.component.js +22 -0
  16. package/esm2015/lib/dashboard/cards/iframe-card/iframe-card.component.js +23 -0
  17. package/esm2015/lib/dashboard/cards/lineargauge-card/linear-gauge-card.component.js +47 -0
  18. package/esm2015/lib/dashboard/cards/linechart-card/line-chart-card.component.js +59 -0
  19. package/esm2015/lib/dashboard/cards/piechart-card/pie-chart-card.component.js +52 -0
  20. package/esm2015/lib/dashboard/cards/portal-card/portal-card.component.js +47 -0
  21. package/esm2015/lib/dashboard/dashboard-content/dashboard-content.component.js +22 -0
  22. package/esm2015/lib/dashboard/dashboard.module.js +44 -0
  23. package/esm2015/lib/dashboard/public-api.js +12 -0
  24. package/esm2015/lib/data-fields/boolean-field/boolean-field.component.js +28 -0
  25. package/esm2015/lib/data-fields/button-field/button-field.component.js +27 -0
  26. package/esm2015/lib/data-fields/data-field-template/data-field-template.component.js +25 -0
  27. package/esm2015/lib/data-fields/data-fields.module.js +134 -0
  28. package/esm2015/lib/data-fields/date-field/date-field.component.js +30 -0
  29. package/esm2015/lib/data-fields/date-time-field/date-time-field.component.js +30 -0
  30. package/esm2015/lib/data-fields/enumeration-field/enumeration-autocomplete-dynamic-field/enumeration-autocomplete-dynamic-field.component.js +23 -0
  31. package/esm2015/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-select-field.component.js +23 -0
  32. package/esm2015/lib/data-fields/enumeration-field/enumeration-field.component.js +21 -0
  33. package/esm2015/lib/data-fields/enumeration-field/enumeration-icon-field/enumeration-icon-field.component.js +16 -0
  34. package/esm2015/lib/data-fields/enumeration-field/enumeration-list-field/enumeration-list-field.component.js +16 -0
  35. package/esm2015/lib/data-fields/enumeration-field/enumeration-select-field/enumeration-select-field.component.js +16 -0
  36. package/esm2015/lib/data-fields/enumeration-field/enumeration-stepper-field/enumeration-stepper-field.component.js +22 -0
  37. package/esm2015/lib/data-fields/file-field/file-field.component.js +52 -0
  38. package/esm2015/lib/data-fields/file-field/preview-dialog/preview-dialog.component.js +33 -0
  39. package/esm2015/lib/data-fields/file-field-list/file-list-field.component.js +32 -0
  40. package/esm2015/lib/data-fields/filter-field/filter-field-content/filter-field-content.component.js +42 -0
  41. package/esm2015/lib/data-fields/filter-field/filter-field.component.js +27 -0
  42. package/esm2015/lib/data-fields/i18n-field/i18n-divider-field/i18n-divider-field.component.js +16 -0
  43. package/esm2015/lib/data-fields/i18n-field/i18n-field.component.js +21 -0
  44. package/esm2015/lib/data-fields/i18n-field/i18n-text-field/i18n-text-field.component.js +22 -0
  45. package/esm2015/lib/data-fields/multichoice-field/multichoice-field.component.js +21 -0
  46. package/esm2015/lib/data-fields/multichoice-field/multichoice-list-field/multichoice-list-field.component.js +16 -0
  47. package/esm2015/lib/data-fields/multichoice-field/multichoice-select-field/multichoice-select-field.component.js +12 -0
  48. package/esm2015/lib/data-fields/number-field/number-currency-field/number-currency-field.component.js +34 -0
  49. package/esm2015/lib/data-fields/number-field/number-default-field/number-default-field.component.js +22 -0
  50. package/esm2015/lib/data-fields/number-field/number-field.component.js +32 -0
  51. package/esm2015/lib/data-fields/public-api.js +18 -0
  52. package/esm2015/lib/data-fields/required-label/required-label.component.js +20 -0
  53. package/esm2015/lib/data-fields/text-field/html-textarea-field/html-textarea-field.component.js +27 -0
  54. package/esm2015/lib/data-fields/text-field/password-text-field/password-text-field.component.js +26 -0
  55. package/esm2015/lib/data-fields/text-field/rich-textarea-field/rich-textarea-field.component.js +23 -0
  56. package/esm2015/lib/data-fields/text-field/simple-text-field/simple-text-field.component.js +23 -0
  57. package/esm2015/lib/data-fields/text-field/text-field.component.js +21 -0
  58. package/esm2015/lib/data-fields/text-field/textarea-field/textarea-field.component.js +26 -0
  59. package/esm2015/lib/data-fields/user-field/user-field.component.js +32 -0
  60. package/esm2015/lib/forms/email-submission/email-submission-form.component.js +22 -0
  61. package/esm2015/lib/forms/email-submission/email-submission-form.module.js +24 -0
  62. package/esm2015/lib/forms/forgotten-password/forgotten-password-form-component.module.js +22 -0
  63. package/esm2015/lib/forms/forgotten-password/forgotten-password-form.component.js +29 -0
  64. package/esm2015/lib/forms/login/login-form.component.js +25 -0
  65. package/esm2015/lib/forms/login/login-form.module.js +22 -0
  66. package/esm2015/lib/forms/public-api.js +11 -0
  67. package/esm2015/lib/forms/registration/registration-form.component.js +29 -0
  68. package/esm2015/lib/forms/registration/registration-form.module.js +24 -0
  69. package/esm2015/lib/header/header-modes/edit-mode/edit-mode.component.js +26 -0
  70. package/esm2015/lib/header/header-modes/loading-mode/loading-mode.component.js +16 -0
  71. package/esm2015/lib/header/header-modes/search-mode/search-mode.component.js +34 -0
  72. package/esm2015/lib/header/header-modes/sort-mode/sort-mode.component.js +16 -0
  73. package/esm2015/lib/header/header.component.js +36 -0
  74. package/esm2015/lib/header/header.module.js +39 -0
  75. package/esm2015/lib/header/public-api.js +12 -0
  76. package/esm2015/lib/legal/legal-notice/legal-notice.component.js +21 -0
  77. package/esm2015/lib/legal/legal-notice/legal-notice.module.js +17 -0
  78. package/esm2015/lib/legal/public-api.js +5 -0
  79. package/esm2015/lib/navigation/group-navigation-component-resolver/default-components/default-simple-task-view/default-simple-task-view.component.js +54 -0
  80. package/esm2015/lib/navigation/group-navigation-component-resolver/default-components/default-tab-view/default-tab-view.component.js +43 -0
  81. package/esm2015/lib/navigation/group-navigation-component-resolver/default-components/default-tabbed-case-view/default-tabbed-case-view.component.js +67 -0
  82. package/esm2015/lib/navigation/group-navigation-component-resolver/default-components/default-tabbed-task-view/default-tabbed-task-view.component.js +58 -0
  83. package/esm2015/lib/navigation/group-navigation-component-resolver/default-components/model/factory-methods.js +30 -0
  84. package/esm2015/lib/navigation/group-navigation-component-resolver/default-components/model/injected-tabbed-case-view-data-with-navigation-item-task-data.js +2 -0
  85. package/esm2015/lib/navigation/group-navigation-component-resolver/default-group-navigation-component-resolver.service.js +35 -0
  86. package/esm2015/lib/navigation/group-navigation-component-resolver/group-navigation-component-resolver.component.js +30 -0
  87. package/esm2015/lib/navigation/navigation-drawer/navigation-drawer.component.js +30 -0
  88. package/esm2015/lib/navigation/navigation-rail/navigation-rail.component.js +40 -0
  89. package/esm2015/lib/navigation/navigation-tree/navigation-tree.component.js +42 -0
  90. package/esm2015/lib/navigation/navigation.module.js +81 -0
  91. package/esm2015/lib/navigation/public-api.js +9 -0
  92. package/esm2015/lib/navigation/quick-panel/components/internal-link/internal-link.component.js +16 -0
  93. package/esm2015/lib/navigation/quick-panel/components/language-selector/language-selector.component.js +39 -0
  94. package/esm2015/lib/navigation/quick-panel/components/logout-shortcut/logout-shortcut.component.js +32 -0
  95. package/esm2015/lib/navigation/quick-panel/components/quick-panel.component.js +25 -0
  96. package/esm2015/lib/navigation/quick-panel/public-api.js +9 -0
  97. package/esm2015/lib/navigation/quick-panel/quick-panel.module.js +33 -0
  98. package/esm2015/lib/panel/case-panel/case-panel.component.js +50 -0
  99. package/esm2015/lib/panel/immediate/immediate-filter-text/immediate-filter-text.component.js +25 -0
  100. package/esm2015/lib/panel/immediate/immediate-filter-text-content/immediate-filter-text-content.component.js +46 -0
  101. package/esm2015/lib/panel/panel.component.js +22 -0
  102. package/esm2015/lib/panel/panel.module.js +55 -0
  103. package/esm2015/lib/panel/public-api.js +10 -0
  104. package/esm2015/lib/panel/public-workflow-panel/public-workflow-panel.component.js +26 -0
  105. package/esm2015/lib/panel/task-panel/task-panel.component.js +113 -0
  106. package/esm2015/lib/panel/task-panel-list/task-list.component.js +31 -0
  107. package/esm2015/lib/panel/workflow-panel/workflow-panel.component.js +26 -0
  108. package/esm2015/lib/routing/public-api.js +3 -0
  109. package/esm2015/lib/routing/redirect/redirect.component.js +28 -0
  110. package/esm2015/lib/routing/redirect.module.js +12 -0
  111. package/esm2015/lib/search/advanced-search/advanced-search-component/advanced-search.component.js +24 -0
  112. package/esm2015/lib/search/advanced-search/advanced-search.module.js +36 -0
  113. package/esm2015/lib/search/advanced-search/public-api.js +8 -0
  114. package/esm2015/lib/search/advanced-search/search-clause-component/search-clause.component.js +16 -0
  115. package/esm2015/lib/search/advanced-search/search-configuration-input-component/search-configuration-input.component.js +20 -0
  116. package/esm2015/lib/search/advanced-search/search-operand-input-component/search-operand-input.component.js +26 -0
  117. package/esm2015/lib/search/advanced-search/search-predicate-component/search-predicate.component.js +27 -0
  118. package/esm2015/lib/search/fulltext-search-component/fulltext-search.component.js +21 -0
  119. package/esm2015/lib/search/public-api.js +10 -0
  120. package/esm2015/lib/search/search-component/case-search/case-search.component.js +24 -0
  121. package/esm2015/lib/search/search-component/search.component.js +98 -0
  122. package/esm2015/lib/search/search-component/task-search/task-search.component.js +24 -0
  123. package/esm2015/lib/search/search.module.js +36 -0
  124. package/esm2015/lib/side-menu/content-components/filter-selector/filter-selector-list-item/filter-selector-list-item.component.js +16 -0
  125. package/esm2015/lib/side-menu/content-components/filter-selector/filter-selector.component.js +45 -0
  126. package/esm2015/lib/side-menu/content-components/filter-selector/side-menu-filter-selector-component.module.js +27 -0
  127. package/esm2015/lib/side-menu/content-components/import-net/import-net.component.js +44 -0
  128. package/esm2015/lib/side-menu/content-components/import-net/side-menu-import-net-component.module.js +27 -0
  129. package/esm2015/lib/side-menu/content-components/load-filter/load-filter.component.js +54 -0
  130. package/esm2015/lib/side-menu/content-components/load-filter/side-menu-load-filter-component.module.js +28 -0
  131. package/esm2015/lib/side-menu/content-components/new-case/new-case.component.js +48 -0
  132. package/esm2015/lib/side-menu/content-components/new-case/side-menu-new-case-component.module.js +35 -0
  133. package/esm2015/lib/side-menu/content-components/option-selector/option-selector.component.js +22 -0
  134. package/esm2015/lib/side-menu/content-components/option-selector/side-menu-option-selector-component.module.js +30 -0
  135. package/esm2015/lib/side-menu/content-components/public-api.js +19 -0
  136. package/esm2015/lib/side-menu/content-components/save-filter/save-filter.component.js +53 -0
  137. package/esm2015/lib/side-menu/content-components/save-filter/side-menu-save-filter-component.module.js +26 -0
  138. package/esm2015/lib/side-menu/content-components/side-menu-content-component.module.js +50 -0
  139. package/esm2015/lib/side-menu/content-components/user-assign/side-menu-user-assign-component.module.js +36 -0
  140. package/esm2015/lib/side-menu/content-components/user-assign/user-assign-list/user-assign-item/user-assign-item.component.js +19 -0
  141. package/esm2015/lib/side-menu/content-components/user-assign/user-assign-list/user-assign-list.component.js +25 -0
  142. package/esm2015/lib/side-menu/content-components/user-assign/user-assign.component.js +29 -0
  143. package/esm2015/lib/side-menu/public-api.js +7 -0
  144. package/esm2015/lib/side-menu/side-menu-container/side-menu-container.component.js +22 -0
  145. package/esm2015/lib/side-menu/side-menu.module.js +27 -0
  146. package/esm2015/lib/tabs/public-api.js +4 -0
  147. package/esm2015/lib/tabs/tab-creation-detector/tab-creation-detector.component.js +22 -0
  148. package/esm2015/lib/tabs/tab-view/tab-view.component.js +32 -0
  149. package/esm2015/lib/tabs/tabs.module.js +28 -0
  150. package/esm2015/lib/task-content/field-component-resolver/field-component-resolver.component.js +21 -0
  151. package/esm2015/lib/task-content/public-api.js +6 -0
  152. package/esm2015/lib/task-content/task-content/task-content.component.js +36 -0
  153. package/esm2015/lib/task-content/task-content.module.js +32 -0
  154. package/esm2015/lib/toolbar/public-api.js +3 -0
  155. package/esm2015/lib/toolbar/toolbar.component.js +26 -0
  156. package/esm2015/lib/toolbar/toolbar.module.js +22 -0
  157. package/esm2015/lib/user/profile/profile.component.js +22 -0
  158. package/esm2015/lib/user/profile/profile.module.js +20 -0
  159. package/esm2015/lib/user/public-api.js +7 -0
  160. package/esm2015/lib/user/user-card/user-card.component.js +22 -0
  161. package/esm2015/lib/user/user.module.js +22 -0
  162. package/esm2015/lib/view/case-view/case-view.module.js +22 -0
  163. package/esm2015/lib/view/case-view/components/case-list/case-list.component.js +31 -0
  164. package/esm2015/lib/view/public-api.js +10 -0
  165. package/esm2015/lib/view/tree-case-view/tree-case-view.module.js +38 -0
  166. package/esm2015/lib/view/tree-case-view/tree-component/add-child-node/add-child-node.component.js +22 -0
  167. package/esm2015/lib/view/tree-case-view/tree-component/remove-node/remove-node.component.js +22 -0
  168. package/esm2015/lib/view/tree-case-view/tree-component/tree.component.js +23 -0
  169. package/esm2015/lib/view/tree-case-view/tree-task-content/tree-task-content.component.js +55 -0
  170. package/esm2015/lib/view/workflow-view/workflow-view.component.js +36 -0
  171. package/esm2015/lib/view/workflow-view.module.js +36 -0
  172. package/esm2015/netgrif-components.js +43 -0
  173. package/esm2015/public-api.js +22 -0
  174. package/esm5/lib/admin/admin.module.js +23 -0
  175. package/esm5/lib/admin/public-api.js +5 -0
  176. package/esm5/lib/admin/role-assignment/role-assignment.component.js +33 -0
  177. package/esm5/lib/admin/user-invite/user-invite.component.js +40 -0
  178. package/esm5/lib/authentication/auth.module.js +19 -0
  179. package/esm5/lib/authentication/authentication-overlay/authentication-overlay.component.js +40 -0
  180. package/esm5/lib/authentication/public-api.js +5 -0
  181. package/esm5/lib/dashboard/cards/barchart-card/barchart-card.component.js +55 -0
  182. package/esm5/lib/dashboard/cards/count-card/count-card.component.js +27 -0
  183. package/esm5/lib/dashboard/cards/iframe-card/iframe-card.component.js +28 -0
  184. package/esm5/lib/dashboard/cards/lineargauge-card/linear-gauge-card.component.js +52 -0
  185. package/esm5/lib/dashboard/cards/linechart-card/line-chart-card.component.js +65 -0
  186. package/esm5/lib/dashboard/cards/piechart-card/pie-chart-card.component.js +58 -0
  187. package/esm5/lib/dashboard/cards/portal-card/portal-card.component.js +52 -0
  188. package/esm5/lib/dashboard/dashboard-content/dashboard-content.component.js +27 -0
  189. package/esm5/lib/dashboard/dashboard.module.js +48 -0
  190. package/esm5/lib/dashboard/public-api.js +12 -0
  191. package/esm5/lib/data-fields/boolean-field/boolean-field.component.js +33 -0
  192. package/esm5/lib/data-fields/button-field/button-field.component.js +32 -0
  193. package/esm5/lib/data-fields/data-field-template/data-field-template.component.js +30 -0
  194. package/esm5/lib/data-fields/data-fields.module.js +138 -0
  195. package/esm5/lib/data-fields/date-field/date-field.component.js +34 -0
  196. package/esm5/lib/data-fields/date-time-field/date-time-field.component.js +34 -0
  197. package/esm5/lib/data-fields/enumeration-field/enumeration-autocomplete-dynamic-field/enumeration-autocomplete-dynamic-field.component.js +28 -0
  198. package/esm5/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-select-field.component.js +28 -0
  199. package/esm5/lib/data-fields/enumeration-field/enumeration-field.component.js +25 -0
  200. package/esm5/lib/data-fields/enumeration-field/enumeration-icon-field/enumeration-icon-field.component.js +20 -0
  201. package/esm5/lib/data-fields/enumeration-field/enumeration-list-field/enumeration-list-field.component.js +20 -0
  202. package/esm5/lib/data-fields/enumeration-field/enumeration-select-field/enumeration-select-field.component.js +20 -0
  203. package/esm5/lib/data-fields/enumeration-field/enumeration-stepper-field/enumeration-stepper-field.component.js +27 -0
  204. package/esm5/lib/data-fields/file-field/file-field.component.js +57 -0
  205. package/esm5/lib/data-fields/file-field/preview-dialog/preview-dialog.component.js +36 -0
  206. package/esm5/lib/data-fields/file-field-list/file-list-field.component.js +36 -0
  207. package/esm5/lib/data-fields/filter-field/filter-field-content/filter-field-content.component.js +46 -0
  208. package/esm5/lib/data-fields/filter-field/filter-field.component.js +31 -0
  209. package/esm5/lib/data-fields/i18n-field/i18n-divider-field/i18n-divider-field.component.js +20 -0
  210. package/esm5/lib/data-fields/i18n-field/i18n-field.component.js +25 -0
  211. package/esm5/lib/data-fields/i18n-field/i18n-text-field/i18n-text-field.component.js +26 -0
  212. package/esm5/lib/data-fields/multichoice-field/multichoice-field.component.js +25 -0
  213. package/esm5/lib/data-fields/multichoice-field/multichoice-list-field/multichoice-list-field.component.js +20 -0
  214. package/esm5/lib/data-fields/multichoice-field/multichoice-select-field/multichoice-select-field.component.js +19 -0
  215. package/esm5/lib/data-fields/number-field/number-currency-field/number-currency-field.component.js +38 -0
  216. package/esm5/lib/data-fields/number-field/number-default-field/number-default-field.component.js +26 -0
  217. package/esm5/lib/data-fields/number-field/number-field.component.js +36 -0
  218. package/esm5/lib/data-fields/public-api.js +18 -0
  219. package/esm5/lib/data-fields/required-label/required-label.component.js +22 -0
  220. package/esm5/lib/data-fields/text-field/html-textarea-field/html-textarea-field.component.js +32 -0
  221. package/esm5/lib/data-fields/text-field/password-text-field/password-text-field.component.js +31 -0
  222. package/esm5/lib/data-fields/text-field/rich-textarea-field/rich-textarea-field.component.js +28 -0
  223. package/esm5/lib/data-fields/text-field/simple-text-field/simple-text-field.component.js +28 -0
  224. package/esm5/lib/data-fields/text-field/text-field.component.js +25 -0
  225. package/esm5/lib/data-fields/text-field/textarea-field/textarea-field.component.js +31 -0
  226. package/esm5/lib/data-fields/user-field/user-field.component.js +36 -0
  227. package/esm5/lib/forms/email-submission/email-submission-form.component.js +26 -0
  228. package/esm5/lib/forms/email-submission/email-submission-form.module.js +28 -0
  229. package/esm5/lib/forms/forgotten-password/forgotten-password-form-component.module.js +26 -0
  230. package/esm5/lib/forms/forgotten-password/forgotten-password-form.component.js +33 -0
  231. package/esm5/lib/forms/login/login-form.component.js +30 -0
  232. package/esm5/lib/forms/login/login-form.module.js +26 -0
  233. package/esm5/lib/forms/public-api.js +11 -0
  234. package/esm5/lib/forms/registration/registration-form.component.js +33 -0
  235. package/esm5/lib/forms/registration/registration-form.module.js +28 -0
  236. package/esm5/lib/header/header-modes/edit-mode/edit-mode.component.js +31 -0
  237. package/esm5/lib/header/header-modes/loading-mode/loading-mode.component.js +20 -0
  238. package/esm5/lib/header/header-modes/search-mode/search-mode.component.js +39 -0
  239. package/esm5/lib/header/header-modes/sort-mode/sort-mode.component.js +20 -0
  240. package/esm5/lib/header/header.component.js +41 -0
  241. package/esm5/lib/header/header.module.js +43 -0
  242. package/esm5/lib/header/public-api.js +12 -0
  243. package/esm5/lib/legal/legal-notice/legal-notice.component.js +25 -0
  244. package/esm5/lib/legal/legal-notice/legal-notice.module.js +21 -0
  245. package/esm5/lib/legal/public-api.js +5 -0
  246. package/esm5/lib/navigation/group-navigation-component-resolver/default-components/default-simple-task-view/default-simple-task-view.component.js +58 -0
  247. package/esm5/lib/navigation/group-navigation-component-resolver/default-components/default-tab-view/default-tab-view.component.js +45 -0
  248. package/esm5/lib/navigation/group-navigation-component-resolver/default-components/default-tabbed-case-view/default-tabbed-case-view.component.js +71 -0
  249. package/esm5/lib/navigation/group-navigation-component-resolver/default-components/default-tabbed-task-view/default-tabbed-task-view.component.js +62 -0
  250. package/esm5/lib/navigation/group-navigation-component-resolver/default-components/model/factory-methods.js +30 -0
  251. package/esm5/lib/navigation/group-navigation-component-resolver/default-components/model/injected-tabbed-case-view-data-with-navigation-item-task-data.js +2 -0
  252. package/esm5/lib/navigation/group-navigation-component-resolver/default-group-navigation-component-resolver.service.js +39 -0
  253. package/esm5/lib/navigation/group-navigation-component-resolver/group-navigation-component-resolver.component.js +34 -0
  254. package/esm5/lib/navigation/navigation-drawer/navigation-drawer.component.js +35 -0
  255. package/esm5/lib/navigation/navigation-rail/navigation-rail.component.js +44 -0
  256. package/esm5/lib/navigation/navigation-tree/navigation-tree.component.js +46 -0
  257. package/esm5/lib/navigation/navigation.module.js +85 -0
  258. package/esm5/lib/navigation/public-api.js +9 -0
  259. package/esm5/lib/navigation/quick-panel/components/internal-link/internal-link.component.js +20 -0
  260. package/esm5/lib/navigation/quick-panel/components/language-selector/language-selector.component.js +44 -0
  261. package/esm5/lib/navigation/quick-panel/components/logout-shortcut/logout-shortcut.component.js +37 -0
  262. package/esm5/lib/navigation/quick-panel/components/quick-panel.component.js +30 -0
  263. package/esm5/lib/navigation/quick-panel/public-api.js +9 -0
  264. package/esm5/lib/navigation/quick-panel/quick-panel.module.js +37 -0
  265. package/esm5/lib/panel/case-panel/case-panel.component.js +55 -0
  266. package/esm5/lib/panel/immediate/immediate-filter-text/immediate-filter-text.component.js +29 -0
  267. package/esm5/lib/panel/immediate/immediate-filter-text-content/immediate-filter-text-content.component.js +50 -0
  268. package/esm5/lib/panel/panel.component.js +26 -0
  269. package/esm5/lib/panel/panel.module.js +59 -0
  270. package/esm5/lib/panel/public-api.js +10 -0
  271. package/esm5/lib/panel/public-workflow-panel/public-workflow-panel.component.js +30 -0
  272. package/esm5/lib/panel/task-panel/task-panel.component.js +118 -0
  273. package/esm5/lib/panel/task-panel-list/task-list.component.js +36 -0
  274. package/esm5/lib/panel/workflow-panel/workflow-panel.component.js +30 -0
  275. package/esm5/lib/routing/public-api.js +3 -0
  276. package/esm5/lib/routing/redirect/redirect.component.js +30 -0
  277. package/esm5/lib/routing/redirect.module.js +16 -0
  278. package/esm5/lib/search/advanced-search/advanced-search-component/advanced-search.component.js +28 -0
  279. package/esm5/lib/search/advanced-search/advanced-search.module.js +40 -0
  280. package/esm5/lib/search/advanced-search/public-api.js +8 -0
  281. package/esm5/lib/search/advanced-search/search-clause-component/search-clause.component.js +20 -0
  282. package/esm5/lib/search/advanced-search/search-configuration-input-component/search-configuration-input.component.js +25 -0
  283. package/esm5/lib/search/advanced-search/search-operand-input-component/search-operand-input.component.js +31 -0
  284. package/esm5/lib/search/advanced-search/search-predicate-component/search-predicate.component.js +31 -0
  285. package/esm5/lib/search/fulltext-search-component/fulltext-search.component.js +25 -0
  286. package/esm5/lib/search/public-api.js +10 -0
  287. package/esm5/lib/search/search-component/case-search/case-search.component.js +28 -0
  288. package/esm5/lib/search/search-component/search.component.js +105 -0
  289. package/esm5/lib/search/search-component/task-search/task-search.component.js +28 -0
  290. package/esm5/lib/search/search.module.js +40 -0
  291. package/esm5/lib/side-menu/content-components/filter-selector/filter-selector-list-item/filter-selector-list-item.component.js +23 -0
  292. package/esm5/lib/side-menu/content-components/filter-selector/filter-selector.component.js +50 -0
  293. package/esm5/lib/side-menu/content-components/filter-selector/side-menu-filter-selector-component.module.js +31 -0
  294. package/esm5/lib/side-menu/content-components/import-net/import-net.component.js +49 -0
  295. package/esm5/lib/side-menu/content-components/import-net/side-menu-import-net-component.module.js +31 -0
  296. package/esm5/lib/side-menu/content-components/load-filter/load-filter.component.js +58 -0
  297. package/esm5/lib/side-menu/content-components/load-filter/side-menu-load-filter-component.module.js +32 -0
  298. package/esm5/lib/side-menu/content-components/new-case/new-case.component.js +53 -0
  299. package/esm5/lib/side-menu/content-components/new-case/side-menu-new-case-component.module.js +39 -0
  300. package/esm5/lib/side-menu/content-components/option-selector/option-selector.component.js +27 -0
  301. package/esm5/lib/side-menu/content-components/option-selector/side-menu-option-selector-component.module.js +34 -0
  302. package/esm5/lib/side-menu/content-components/public-api.js +19 -0
  303. package/esm5/lib/side-menu/content-components/save-filter/save-filter.component.js +57 -0
  304. package/esm5/lib/side-menu/content-components/save-filter/side-menu-save-filter-component.module.js +30 -0
  305. package/esm5/lib/side-menu/content-components/side-menu-content-component.module.js +54 -0
  306. package/esm5/lib/side-menu/content-components/user-assign/side-menu-user-assign-component.module.js +40 -0
  307. package/esm5/lib/side-menu/content-components/user-assign/user-assign-list/user-assign-item/user-assign-item.component.js +23 -0
  308. package/esm5/lib/side-menu/content-components/user-assign/user-assign-list/user-assign-list.component.js +30 -0
  309. package/esm5/lib/side-menu/content-components/user-assign/user-assign.component.js +34 -0
  310. package/esm5/lib/side-menu/public-api.js +7 -0
  311. package/esm5/lib/side-menu/side-menu-container/side-menu-container.component.js +27 -0
  312. package/esm5/lib/side-menu/side-menu.module.js +31 -0
  313. package/esm5/lib/tabs/public-api.js +4 -0
  314. package/esm5/lib/tabs/tab-creation-detector/tab-creation-detector.component.js +26 -0
  315. package/esm5/lib/tabs/tab-view/tab-view.component.js +37 -0
  316. package/esm5/lib/tabs/tabs.module.js +32 -0
  317. package/esm5/lib/task-content/field-component-resolver/field-component-resolver.component.js +25 -0
  318. package/esm5/lib/task-content/public-api.js +6 -0
  319. package/esm5/lib/task-content/task-content/task-content.component.js +41 -0
  320. package/esm5/lib/task-content/task-content.module.js +36 -0
  321. package/esm5/lib/toolbar/public-api.js +3 -0
  322. package/esm5/lib/toolbar/toolbar.component.js +31 -0
  323. package/esm5/lib/toolbar/toolbar.module.js +26 -0
  324. package/esm5/lib/user/profile/profile.component.js +27 -0
  325. package/esm5/lib/user/profile/profile.module.js +24 -0
  326. package/esm5/lib/user/public-api.js +7 -0
  327. package/esm5/lib/user/user-card/user-card.component.js +27 -0
  328. package/esm5/lib/user/user.module.js +26 -0
  329. package/esm5/lib/view/case-view/case-view.module.js +26 -0
  330. package/esm5/lib/view/case-view/components/case-list/case-list.component.js +36 -0
  331. package/esm5/lib/view/public-api.js +10 -0
  332. package/esm5/lib/view/tree-case-view/tree-case-view.module.js +42 -0
  333. package/esm5/lib/view/tree-case-view/tree-component/add-child-node/add-child-node.component.js +27 -0
  334. package/esm5/lib/view/tree-case-view/tree-component/remove-node/remove-node.component.js +27 -0
  335. package/esm5/lib/view/tree-case-view/tree-component/tree.component.js +28 -0
  336. package/esm5/lib/view/tree-case-view/tree-task-content/tree-task-content.component.js +60 -0
  337. package/esm5/lib/view/workflow-view/workflow-view.component.js +41 -0
  338. package/esm5/lib/view/workflow-view.module.js +40 -0
  339. package/esm5/netgrif-components.js +43 -0
  340. package/esm5/public-api.js +22 -0
  341. package/fesm2015/netgrif-components.js +4034 -0
  342. package/fesm2015/netgrif-components.js.map +1 -0
  343. package/fesm5/netgrif-components.js +4419 -0
  344. package/fesm5/netgrif-components.js.map +1 -0
  345. package/lib/admin/admin.module.d.ts +2 -0
  346. package/lib/admin/public-api.d.ts +2 -0
  347. package/lib/admin/role-assignment/role-assignment.component.d.ts +6 -0
  348. package/lib/admin/user-invite/user-invite.component.d.ts +10 -0
  349. package/lib/authentication/auth.module.d.ts +2 -0
  350. package/lib/authentication/authentication-overlay/authentication-overlay.component.d.ts +10 -0
  351. package/lib/authentication/public-api.d.ts +2 -0
  352. package/lib/dashboard/cards/barchart-card/barchart-card.component.d.ts +14 -0
  353. package/lib/dashboard/cards/count-card/count-card.component.d.ts +6 -0
  354. package/lib/dashboard/cards/iframe-card/iframe-card.component.d.ts +6 -0
  355. package/lib/dashboard/cards/lineargauge-card/linear-gauge-card.component.d.ts +15 -0
  356. package/lib/dashboard/cards/linechart-card/line-chart-card.component.d.ts +16 -0
  357. package/lib/dashboard/cards/piechart-card/pie-chart-card.component.d.ts +17 -0
  358. package/lib/dashboard/cards/portal-card/portal-card.component.d.ts +18 -0
  359. package/lib/dashboard/dashboard-content/dashboard-content.component.d.ts +5 -0
  360. package/lib/dashboard/dashboard.module.d.ts +2 -0
  361. package/lib/dashboard/public-api.d.ts +9 -0
  362. package/lib/data-fields/boolean-field/boolean-field.component.d.ts +7 -0
  363. package/lib/data-fields/button-field/button-field.component.d.ts +6 -0
  364. package/lib/data-fields/data-field-template/data-field-template.component.d.ts +6 -0
  365. package/lib/data-fields/data-fields.module.d.ts +2 -0
  366. package/lib/data-fields/date-field/date-field.component.d.ts +5 -0
  367. package/lib/data-fields/date-time-field/date-time-field.component.d.ts +5 -0
  368. package/lib/data-fields/enumeration-field/enumeration-autocomplete-dynamic-field/enumeration-autocomplete-dynamic-field.component.d.ts +6 -0
  369. package/lib/data-fields/enumeration-field/enumeration-autocomplete-select-field/enumeration-autocomplete-select-field.component.d.ts +6 -0
  370. package/lib/data-fields/enumeration-field/enumeration-field.component.d.ts +4 -0
  371. package/lib/data-fields/enumeration-field/enumeration-icon-field/enumeration-icon-field.component.d.ts +4 -0
  372. package/lib/data-fields/enumeration-field/enumeration-list-field/enumeration-list-field.component.d.ts +4 -0
  373. package/lib/data-fields/enumeration-field/enumeration-select-field/enumeration-select-field.component.d.ts +4 -0
  374. package/lib/data-fields/enumeration-field/enumeration-stepper-field/enumeration-stepper-field.component.d.ts +6 -0
  375. package/lib/data-fields/file-field/file-field.component.d.ts +10 -0
  376. package/lib/data-fields/file-field/preview-dialog/preview-dialog.component.d.ts +11 -0
  377. package/lib/data-fields/file-field-list/file-list-field.component.d.ts +5 -0
  378. package/lib/data-fields/filter-field/filter-field-content/filter-field-content.component.d.ts +8 -0
  379. package/lib/data-fields/filter-field/filter-field.component.d.ts +7 -0
  380. package/lib/data-fields/i18n-field/i18n-divider-field/i18n-divider-field.component.d.ts +4 -0
  381. package/lib/data-fields/i18n-field/i18n-field.component.d.ts +4 -0
  382. package/lib/data-fields/i18n-field/i18n-text-field/i18n-text-field.component.d.ts +5 -0
  383. package/lib/data-fields/multichoice-field/multichoice-field.component.d.ts +4 -0
  384. package/lib/data-fields/multichoice-field/multichoice-list-field/multichoice-list-field.component.d.ts +4 -0
  385. package/lib/data-fields/multichoice-field/multichoice-select-field/multichoice-select-field.component.d.ts +3 -0
  386. package/lib/data-fields/number-field/number-currency-field/number-currency-field.component.d.ts +10 -0
  387. package/lib/data-fields/number-field/number-default-field/number-default-field.component.d.ts +5 -0
  388. package/lib/data-fields/number-field/number-field.component.d.ts +6 -0
  389. package/lib/data-fields/public-api.d.ts +15 -0
  390. package/lib/data-fields/required-label/required-label.component.d.ts +6 -0
  391. package/lib/data-fields/text-field/html-textarea-field/html-textarea-field.component.d.ts +9 -0
  392. package/lib/data-fields/text-field/password-text-field/password-text-field.component.d.ts +9 -0
  393. package/lib/data-fields/text-field/rich-textarea-field/rich-textarea-field.component.d.ts +6 -0
  394. package/lib/data-fields/text-field/simple-text-field/simple-text-field.component.d.ts +6 -0
  395. package/lib/data-fields/text-field/text-field.component.d.ts +4 -0
  396. package/lib/data-fields/text-field/textarea-field/textarea-field.component.d.ts +8 -0
  397. package/lib/data-fields/user-field/user-field.component.d.ts +6 -0
  398. package/lib/forms/email-submission/email-submission-form.component.d.ts +5 -0
  399. package/lib/forms/email-submission/email-submission-form.module.d.ts +2 -0
  400. package/lib/forms/forgotten-password/forgotten-password-form-component.module.d.ts +2 -0
  401. package/lib/forms/forgotten-password/forgotten-password-form.component.d.ts +6 -0
  402. package/lib/forms/login/login-form.component.d.ts +6 -0
  403. package/lib/forms/login/login-form.module.d.ts +2 -0
  404. package/lib/forms/public-api.d.ts +8 -0
  405. package/lib/forms/registration/registration-form.component.d.ts +6 -0
  406. package/lib/forms/registration/registration-form.module.d.ts +2 -0
  407. package/lib/header/header-modes/edit-mode/edit-mode.component.d.ts +7 -0
  408. package/lib/header/header-modes/loading-mode/loading-mode.component.d.ts +4 -0
  409. package/lib/header/header-modes/search-mode/search-mode.component.d.ts +6 -0
  410. package/lib/header/header-modes/sort-mode/sort-mode.component.d.ts +4 -0
  411. package/lib/header/header.component.d.ts +9 -0
  412. package/lib/header/header.module.d.ts +2 -0
  413. package/lib/header/public-api.d.ts +6 -0
  414. package/lib/legal/legal-notice/legal-notice.component.d.ts +4 -0
  415. package/lib/legal/legal-notice/legal-notice.module.d.ts +2 -0
  416. package/lib/legal/public-api.d.ts +2 -0
  417. package/lib/navigation/group-navigation-component-resolver/default-components/default-simple-task-view/default-simple-task-view.component.d.ts +8 -0
  418. package/lib/navigation/group-navigation-component-resolver/default-components/default-tab-view/default-tab-view.component.d.ts +6 -0
  419. package/lib/navigation/group-navigation-component-resolver/default-components/default-tabbed-case-view/default-tabbed-case-view.component.d.ts +10 -0
  420. package/lib/navigation/group-navigation-component-resolver/default-components/default-tabbed-task-view/default-tabbed-task-view.component.d.ts +11 -0
  421. package/lib/navigation/group-navigation-component-resolver/default-components/model/factory-methods.d.ts +25 -0
  422. package/lib/navigation/group-navigation-component-resolver/default-components/model/injected-tabbed-case-view-data-with-navigation-item-task-data.d.ts +9 -0
  423. package/lib/navigation/group-navigation-component-resolver/default-group-navigation-component-resolver.service.d.ts +6 -0
  424. package/lib/navigation/group-navigation-component-resolver/group-navigation-component-resolver.component.d.ts +6 -0
  425. package/lib/navigation/navigation-drawer/navigation-drawer.component.d.ts +9 -0
  426. package/lib/navigation/navigation-rail/navigation-rail.component.d.ts +4 -0
  427. package/lib/navigation/navigation-tree/navigation-tree.component.d.ts +5 -0
  428. package/lib/navigation/navigation.module.d.ts +3 -0
  429. package/lib/navigation/public-api.d.ts +5 -0
  430. package/lib/navigation/quick-panel/components/internal-link/internal-link.component.d.ts +4 -0
  431. package/lib/navigation/quick-panel/components/language-selector/language-selector.component.d.ts +9 -0
  432. package/lib/navigation/quick-panel/components/logout-shortcut/logout-shortcut.component.d.ts +9 -0
  433. package/lib/navigation/quick-panel/components/quick-panel.component.d.ts +6 -0
  434. package/lib/navigation/quick-panel/public-api.d.ts +5 -0
  435. package/lib/navigation/quick-panel/quick-panel.module.d.ts +2 -0
  436. package/lib/panel/case-panel/case-panel.component.d.ts +17 -0
  437. package/lib/panel/immediate/immediate-filter-text/immediate-filter-text.component.d.ts +7 -0
  438. package/lib/panel/immediate/immediate-filter-text-content/immediate-filter-text-content.component.d.ts +8 -0
  439. package/lib/panel/panel.component.d.ts +5 -0
  440. package/lib/panel/panel.module.d.ts +2 -0
  441. package/lib/panel/public-api.d.ts +7 -0
  442. package/lib/panel/public-workflow-panel/public-workflow-panel.component.d.ts +5 -0
  443. package/lib/panel/task-panel/task-panel.component.d.ts +28 -0
  444. package/lib/panel/task-panel-list/task-list.component.d.ts +8 -0
  445. package/lib/panel/workflow-panel/workflow-panel.component.d.ts +5 -0
  446. package/lib/routing/public-api.d.ts +2 -0
  447. package/lib/routing/redirect/redirect.component.d.ts +9 -0
  448. package/lib/routing/redirect.module.d.ts +2 -0
  449. package/lib/search/advanced-search/advanced-search-component/advanced-search.component.d.ts +4 -0
  450. package/lib/search/advanced-search/advanced-search.module.d.ts +2 -0
  451. package/lib/search/advanced-search/public-api.d.ts +5 -0
  452. package/lib/search/advanced-search/search-clause-component/search-clause.component.d.ts +4 -0
  453. package/lib/search/advanced-search/search-configuration-input-component/search-configuration-input.component.d.ts +6 -0
  454. package/lib/search/advanced-search/search-operand-input-component/search-operand-input.component.d.ts +7 -0
  455. package/lib/search/advanced-search/search-predicate-component/search-predicate.component.d.ts +5 -0
  456. package/lib/search/fulltext-search-component/fulltext-search.component.d.ts +4 -0
  457. package/lib/search/public-api.d.ts +6 -0
  458. package/lib/search/search-component/case-search/case-search.component.d.ts +8 -0
  459. package/lib/search/search-component/search.component.d.ts +25 -0
  460. package/lib/search/search-component/task-search/task-search.component.d.ts +8 -0
  461. package/lib/search/search.module.d.ts +2 -0
  462. package/lib/side-menu/content-components/filter-selector/filter-selector-list-item/filter-selector-list-item.component.d.ts +7 -0
  463. package/lib/side-menu/content-components/filter-selector/filter-selector.component.d.ts +26 -0
  464. package/lib/side-menu/content-components/filter-selector/side-menu-filter-selector-component.module.d.ts +2 -0
  465. package/lib/side-menu/content-components/import-net/import-net.component.d.ts +10 -0
  466. package/lib/side-menu/content-components/import-net/side-menu-import-net-component.module.d.ts +2 -0
  467. package/lib/side-menu/content-components/load-filter/load-filter.component.d.ts +10 -0
  468. package/lib/side-menu/content-components/load-filter/side-menu-load-filter-component.module.d.ts +2 -0
  469. package/lib/side-menu/content-components/new-case/new-case.component.d.ts +14 -0
  470. package/lib/side-menu/content-components/new-case/side-menu-new-case-component.module.d.ts +2 -0
  471. package/lib/side-menu/content-components/option-selector/option-selector.component.d.ts +5 -0
  472. package/lib/side-menu/content-components/option-selector/side-menu-option-selector-component.module.d.ts +2 -0
  473. package/lib/side-menu/content-components/public-api.d.ts +15 -0
  474. package/lib/side-menu/content-components/save-filter/save-filter.component.d.ts +6 -0
  475. package/lib/side-menu/content-components/save-filter/side-menu-save-filter-component.module.d.ts +2 -0
  476. package/lib/side-menu/content-components/side-menu-content-component.module.d.ts +2 -0
  477. package/lib/side-menu/content-components/user-assign/side-menu-user-assign-component.module.d.ts +2 -0
  478. package/lib/side-menu/content-components/user-assign/user-assign-list/user-assign-item/user-assign-item.component.d.ts +7 -0
  479. package/lib/side-menu/content-components/user-assign/user-assign-list/user-assign-list.component.d.ts +8 -0
  480. package/lib/side-menu/content-components/user-assign/user-assign.component.d.ts +11 -0
  481. package/lib/side-menu/public-api.d.ts +3 -0
  482. package/lib/side-menu/side-menu-container/side-menu-container.component.d.ts +5 -0
  483. package/lib/side-menu/side-menu.module.d.ts +2 -0
  484. package/lib/tabs/public-api.d.ts +3 -0
  485. package/lib/tabs/tab-creation-detector/tab-creation-detector.component.d.ts +10 -0
  486. package/lib/tabs/tab-view/tab-view.component.d.ts +12 -0
  487. package/lib/tabs/tabs.module.d.ts +2 -0
  488. package/lib/task-content/field-component-resolver/field-component-resolver.component.d.ts +4 -0
  489. package/lib/task-content/public-api.d.ts +3 -0
  490. package/lib/task-content/task-content/task-content.component.d.ts +9 -0
  491. package/lib/task-content/task-content.module.d.ts +2 -0
  492. package/lib/toolbar/public-api.d.ts +2 -0
  493. package/lib/toolbar/toolbar.component.d.ts +7 -0
  494. package/lib/toolbar/toolbar.module.d.ts +2 -0
  495. package/lib/user/profile/profile.component.d.ts +5 -0
  496. package/lib/user/profile/profile.module.d.ts +2 -0
  497. package/lib/user/public-api.d.ts +4 -0
  498. package/lib/user/user-card/user-card.component.d.ts +6 -0
  499. package/lib/user/user.module.d.ts +2 -0
  500. package/lib/view/case-view/case-view.module.d.ts +2 -0
  501. package/lib/view/case-view/components/case-list/case-list.component.d.ts +8 -0
  502. package/lib/view/public-api.d.ts +7 -0
  503. package/lib/view/tree-case-view/tree-case-view.module.d.ts +2 -0
  504. package/lib/view/tree-case-view/tree-component/add-child-node/add-child-node.component.d.ts +5 -0
  505. package/lib/view/tree-case-view/tree-component/remove-node/remove-node.component.d.ts +5 -0
  506. package/lib/view/tree-case-view/tree-component/tree.component.d.ts +5 -0
  507. package/lib/view/tree-case-view/tree-task-content/tree-task-content.component.d.ts +11 -0
  508. package/lib/view/workflow-view/workflow-view.component.d.ts +9 -0
  509. package/lib/view/workflow-view.module.d.ts +2 -0
  510. package/nae-theme.scss +39 -0
  511. package/nae-typography.scss +35 -0
  512. package/netgrif-components.d.ts +43 -0
  513. package/netgrif-components.metadata.json +1 -0
  514. package/package.json +75 -0
  515. package/public-api.d.ts +17 -0
  516. package/schematics/_commons/angular-cli-devkit-core-strings.d.ts +93 -0
  517. package/schematics/_commons/angular-cli-devkit-core-strings.js +167 -0
  518. package/schematics/_commons/angular-cli-devkit-core-strings.js.map +1 -0
  519. package/schematics/_commons/import-to-add.d.ts +5 -0
  520. package/schematics/_commons/import-to-add.js +11 -0
  521. package/schematics/_commons/import-to-add.js.map +1 -0
  522. package/schematics/_commons/view-class-info.d.ts +22 -0
  523. package/schematics/_commons/view-class-info.js +58 -0
  524. package/schematics/_commons/view-class-info.js.map +1 -0
  525. package/schematics/_utility/models/file-data.d.ts +6 -0
  526. package/schematics/_utility/models/file-data.js +3 -0
  527. package/schematics/_utility/models/file-data.js.map +1 -0
  528. package/schematics/_utility/models/file-system-node.d.ts +6 -0
  529. package/schematics/_utility/models/file-system-node.js +12 -0
  530. package/schematics/_utility/models/file-system-node.js.map +1 -0
  531. package/schematics/_utility/models/project-info.d.ts +13 -0
  532. package/schematics/_utility/models/project-info.js +20 -0
  533. package/schematics/_utility/models/project-info.js.map +1 -0
  534. package/schematics/_utility/modified-library-functions.d.ts +24 -0
  535. package/schematics/_utility/modified-library-functions.js +150 -0
  536. package/schematics/_utility/modified-library-functions.js.map +1 -0
  537. package/schematics/_utility/utility-functions.d.ts +67 -0
  538. package/schematics/_utility/utility-functions.js +247 -0
  539. package/schematics/_utility/utility-functions.js.map +1 -0
  540. package/schematics/add/add/index.d.ts +2 -0
  541. package/schematics/add/add/index.js +16 -0
  542. package/schematics/add/add/index.js.map +1 -0
  543. package/schematics/add/create-nc-files/index.d.ts +2 -0
  544. package/schematics/add/create-nc-files/index.js +54 -0
  545. package/schematics/add/create-nc-files/index.js.map +1 -0
  546. package/schematics/add/create-nc-files/schema.json +7 -0
  547. package/schematics/add/custom-themes/files/custom-themes/custom-themes.scss.template +45 -0
  548. package/schematics/add/custom-themes/files/dark-theme/custom-dark-theme.scss.template +17 -0
  549. package/schematics/add/custom-themes/files/light-theme/custom-light-theme.scss.template +17 -0
  550. package/schematics/add/custom-themes/index.d.ts +2 -0
  551. package/schematics/add/custom-themes/index.js +199 -0
  552. package/schematics/add/custom-themes/index.js.map +1 -0
  553. package/schematics/add/custom-themes/schema.json +7 -0
  554. package/schematics/collection.json +47 -0
  555. package/schematics/migrations/4.1/migration-4.1.d.ts +5 -0
  556. package/schematics/migrations/4.1/migration-4.1.js +37 -0
  557. package/schematics/migrations/4.1/migration-4.1.js.map +1 -0
  558. package/schematics/migrations/5.4/migration-5.4.d.ts +5 -0
  559. package/schematics/migrations/5.4/migration-5.4.js +134 -0
  560. package/schematics/migrations/5.4/migration-5.4.js.map +1 -0
  561. package/schematics/migrations/5.4/schema.json +7 -0
  562. package/schematics/migrations.json +15 -0
  563. package/schematics/view/_utility/add-view-to-nae-json.d.ts +3 -0
  564. package/schematics/view/_utility/add-view-to-nae-json.js +57 -0
  565. package/schematics/view/_utility/add-view-to-nae-json.js.map +1 -0
  566. package/schematics/view/_utility/view-service-functions.d.ts +9 -0
  567. package/schematics/view/_utility/view-service-functions.js +59 -0
  568. package/schematics/view/_utility/view-service-functions.js.map +1 -0
  569. package/schematics/view/_utility/view-utility-functions.d.ts +8 -0
  570. package/schematics/view/_utility/view-utility-functions.js +61 -0
  571. package/schematics/view/_utility/view-utility-functions.js.map +1 -0
  572. package/schematics/view/create-view/models/nullable-create-view-arguments.d.ts +11 -0
  573. package/schematics/view/create-view/models/nullable-create-view-arguments.js +3 -0
  574. package/schematics/view/create-view/models/nullable-create-view-arguments.js.map +1 -0
  575. package/schematics/view/create-view/schema.json +7 -0
  576. package/schematics/view/create-view/schematic-create-view.d.ts +2 -0
  577. package/schematics/view/create-view/schematic-create-view.js +80 -0
  578. package/schematics/view/create-view/schematic-create-view.js.map +1 -0
  579. package/schematics/view/create-view-prompt/models/create-task-view-arguments.d.ts +4 -0
  580. package/schematics/view/create-view-prompt/models/create-task-view-arguments.js +3 -0
  581. package/schematics/view/create-view-prompt/models/create-task-view-arguments.js.map +1 -0
  582. package/schematics/view/create-view-prompt/models/create-view-arguments.d.ts +14 -0
  583. package/schematics/view/create-view-prompt/models/create-view-arguments.js +3 -0
  584. package/schematics/view/create-view-prompt/models/create-view-arguments.js.map +1 -0
  585. package/schematics/view/create-view-prompt/models/params-interfaces.d.ts +28 -0
  586. package/schematics/view/create-view-prompt/models/params-interfaces.js +3 -0
  587. package/schematics/view/create-view-prompt/models/params-interfaces.js.map +1 -0
  588. package/schematics/view/create-view-prompt/models/sidenav-prompt-options.d.ts +8 -0
  589. package/schematics/view/create-view-prompt/models/sidenav-prompt-options.js +3 -0
  590. package/schematics/view/create-view-prompt/models/sidenav-prompt-options.js.map +1 -0
  591. package/schematics/view/create-view-prompt/models/tab-content-template.d.ts +9 -0
  592. package/schematics/view/create-view-prompt/models/tab-content-template.js +11 -0
  593. package/schematics/view/create-view-prompt/models/tab-content-template.js.map +1 -0
  594. package/schematics/view/create-view-prompt/models/tabbed-view.d.ts +3 -0
  595. package/schematics/view/create-view-prompt/models/tabbed-view.js +3 -0
  596. package/schematics/view/create-view-prompt/models/tabbed-view.js.map +1 -0
  597. package/schematics/view/create-view-prompt/schema-create-sidenav-prompt.json +25 -0
  598. package/schematics/view/create-view-prompt/schema-create-view-prompt.json +68 -0
  599. package/schematics/view/create-view-prompt/schematic-create-sidenav-prompt.d.ts +5 -0
  600. package/schematics/view/create-view-prompt/schematic-create-sidenav-prompt.js +49 -0
  601. package/schematics/view/create-view-prompt/schematic-create-sidenav-prompt.js.map +1 -0
  602. package/schematics/view/create-view-prompt/schematic-create-view-prompt.d.ts +3 -0
  603. package/schematics/view/create-view-prompt/schematic-create-view-prompt.js +88 -0
  604. package/schematics/view/create-view-prompt/schematic-create-view-prompt.js.map +1 -0
  605. package/schematics/view/create-view-prompt/views/case-view/create-case-view.d.ts +4 -0
  606. package/schematics/view/create-view-prompt/views/case-view/create-case-view.js +57 -0
  607. package/schematics/view/create-view-prompt/views/case-view/create-case-view.js.map +1 -0
  608. package/schematics/view/create-view-prompt/views/case-view/files/common/__className@dasherize__.component.html.template +20 -0
  609. package/schematics/view/create-view-prompt/views/case-view/files/common/__className@dasherize__.component.spec.ts.template +52 -0
  610. package/schematics/view/create-view-prompt/views/case-view/files/simple/__className@dasherize__.component.scss.template +28 -0
  611. package/schematics/view/create-view-prompt/views/case-view/files/simple/__className@dasherize__.component.ts.template +67 -0
  612. package/schematics/view/create-view-prompt/views/case-view/files/tabbed/__className@dasherize__.component.scss.template +21 -0
  613. package/schematics/view/create-view-prompt/views/case-view/files/tabbed/__className@dasherize__.component.ts.template +64 -0
  614. package/schematics/view/create-view-prompt/views/dashboard-view/create-dashboard-view.d.ts +3 -0
  615. package/schematics/view/create-view-prompt/views/dashboard-view/create-dashboard-view.js +34 -0
  616. package/schematics/view/create-view-prompt/views/dashboard-view/create-dashboard-view.js.map +1 -0
  617. package/schematics/view/create-view-prompt/views/dashboard-view/files/__className@dasherize__.component.html.template +1 -0
  618. package/schematics/view/create-view-prompt/views/dashboard-view/files/__className@dasherize__.component.scss.template +0 -0
  619. package/schematics/view/create-view-prompt/views/dashboard-view/files/__className@dasherize__.component.spec.ts.template +31 -0
  620. package/schematics/view/create-view-prompt/views/dashboard-view/files/__className@dasherize__.component.ts.template +23 -0
  621. package/schematics/view/create-view-prompt/views/empty-view/create-empty-view.d.ts +3 -0
  622. package/schematics/view/create-view-prompt/views/empty-view/create-empty-view.js +28 -0
  623. package/schematics/view/create-view-prompt/views/empty-view/create-empty-view.js.map +1 -0
  624. package/schematics/view/create-view-prompt/views/empty-view/files/__className@dasherize__.component.html.template +1 -0
  625. package/schematics/view/create-view-prompt/views/empty-view/files/__className@dasherize__.component.scss.template +0 -0
  626. package/schematics/view/create-view-prompt/views/empty-view/files/__className@dasherize__.component.spec.ts.template +25 -0
  627. package/schematics/view/create-view-prompt/views/empty-view/files/__className@dasherize__.component.ts.template +18 -0
  628. package/schematics/view/create-view-prompt/views/group-view/create-group-view.d.ts +4 -0
  629. package/schematics/view/create-view-prompt/views/group-view/create-group-view.js +37 -0
  630. package/schematics/view/create-view-prompt/views/group-view/create-group-view.js.map +1 -0
  631. package/schematics/view/create-view-prompt/views/group-view/files/__className@dasherize__.component.html.template +7 -0
  632. package/schematics/view/create-view-prompt/views/group-view/files/__className@dasherize__.component.scss.template +22 -0
  633. package/schematics/view/create-view-prompt/views/group-view/files/__className@dasherize__.component.spec.ts.template +49 -0
  634. package/schematics/view/create-view-prompt/views/group-view/files/__className@dasherize__.component.ts.template +69 -0
  635. package/schematics/view/create-view-prompt/views/login/create-login-view.d.ts +3 -0
  636. package/schematics/view/create-view-prompt/views/login/create-login-view.js +36 -0
  637. package/schematics/view/create-view-prompt/views/login/create-login-view.js.map +1 -0
  638. package/schematics/view/create-view-prompt/views/login/files/__className@dasherize__.component.html.template +5 -0
  639. package/schematics/view/create-view-prompt/views/login/files/__className@dasherize__.component.scss.template +6 -0
  640. package/schematics/view/create-view-prompt/views/login/files/__className@dasherize__.component.spec.ts.template +38 -0
  641. package/schematics/view/create-view-prompt/views/login/files/__className@dasherize__.component.ts.template +18 -0
  642. package/schematics/view/create-view-prompt/views/sidenav-toolbar-view/create-sidenav-or-toolbar-view.d.ts +3 -0
  643. package/schematics/view/create-view-prompt/views/sidenav-toolbar-view/create-sidenav-or-toolbar-view.js +82 -0
  644. package/schematics/view/create-view-prompt/views/sidenav-toolbar-view/create-sidenav-or-toolbar-view.js.map +1 -0
  645. package/schematics/view/create-view-prompt/views/sidenav-toolbar-view/files/__className@dasherize__.component.html.template +8 -0
  646. package/schematics/view/create-view-prompt/views/sidenav-toolbar-view/files/__className@dasherize__.component.scss.template +0 -0
  647. package/schematics/view/create-view-prompt/views/sidenav-toolbar-view/files/__className@dasherize__.component.spec.ts.template +51 -0
  648. package/schematics/view/create-view-prompt/views/sidenav-toolbar-view/files/__className@dasherize__.component.ts.template +19 -0
  649. package/schematics/view/create-view-prompt/views/tab-view/create-tab-view.d.ts +3 -0
  650. package/schematics/view/create-view-prompt/views/tab-view/create-tab-view.js +161 -0
  651. package/schematics/view/create-view-prompt/views/tab-view/create-tab-view.js.map +1 -0
  652. package/schematics/view/create-view-prompt/views/tab-view/files/__className@dasherize__.component.html.template +3 -0
  653. package/schematics/view/create-view-prompt/views/tab-view/files/__className@dasherize__.component.scss.template +3 -0
  654. package/schematics/view/create-view-prompt/views/tab-view/files/__className@dasherize__.component.spec.ts.template +27 -0
  655. package/schematics/view/create-view-prompt/views/tab-view/files/__className@dasherize__.component.ts.template +34 -0
  656. package/schematics/view/create-view-prompt/views/task-view/create-task-view.d.ts +4 -0
  657. package/schematics/view/create-view-prompt/views/task-view/create-task-view.js +47 -0
  658. package/schematics/view/create-view-prompt/views/task-view/create-task-view.js.map +1 -0
  659. package/schematics/view/create-view-prompt/views/task-view/files/common/__className@dasherize__.component.html.template +7 -0
  660. package/schematics/view/create-view-prompt/views/task-view/files/common/__className@dasherize__.component.scss.template +22 -0
  661. package/schematics/view/create-view-prompt/views/task-view/files/common/__className@dasherize__.component.spec.ts.template +49 -0
  662. package/schematics/view/create-view-prompt/views/task-view/files/simple/__className@dasherize__.component.ts.template +62 -0
  663. package/schematics/view/create-view-prompt/views/task-view/files/tabbed/__className@dasherize__.component.ts.template +64 -0
  664. package/schematics/view/create-view-prompt/views/tree-case-view/create-tree-case-view.d.ts +3 -0
  665. package/schematics/view/create-view-prompt/views/tree-case-view/create-tree-case-view.js +39 -0
  666. package/schematics/view/create-view-prompt/views/tree-case-view/create-tree-case-view.js.map +1 -0
  667. package/schematics/view/create-view-prompt/views/tree-case-view/files/__className@dasherize__.component.html.template +15 -0
  668. package/schematics/view/create-view-prompt/views/tree-case-view/files/__className@dasherize__.component.scss.template +17 -0
  669. package/schematics/view/create-view-prompt/views/tree-case-view/files/__className@dasherize__.component.spec.ts.template +33 -0
  670. package/schematics/view/create-view-prompt/views/tree-case-view/files/__className@dasherize__.component.ts.template +23 -0
  671. package/src/assets/default-user-avatar.png +0 -0
  672. package/src/assets/default-user-background.jpg +0 -0
  673. package/src/assets/flags/de.png +0 -0
  674. package/src/assets/flags/gb.png +0 -0
  675. package/src/assets/flags/sk.png +0 -0
  676. package/src/assets/fonts/MaterialIcons-Regular.eot +0 -0
  677. package/src/assets/fonts/MaterialIcons-Regular.otf +0 -0
  678. package/src/assets/fonts/MaterialIcons-Regular.ttf +0 -0
  679. package/src/assets/fonts/MaterialIcons-Regular.woff +0 -0
  680. package/src/assets/fonts/MaterialIcons-Regular.woff2 +0 -0
  681. package/src/assets/fonts/roboto-v20-latin-ext_latin-300.eot +0 -0
  682. package/src/assets/fonts/roboto-v20-latin-ext_latin-300.svg +312 -0
  683. package/src/assets/fonts/roboto-v20-latin-ext_latin-300.ttf +0 -0
  684. package/src/assets/fonts/roboto-v20-latin-ext_latin-300.woff +0 -0
  685. package/src/assets/fonts/roboto-v20-latin-ext_latin-300.woff2 +0 -0
  686. package/src/assets/fonts/roboto-v20-latin-ext_latin-300italic.eot +0 -0
  687. package/src/assets/fonts/roboto-v20-latin-ext_latin-300italic.svg +329 -0
  688. package/src/assets/fonts/roboto-v20-latin-ext_latin-300italic.ttf +0 -0
  689. package/src/assets/fonts/roboto-v20-latin-ext_latin-300italic.woff +0 -0
  690. package/src/assets/fonts/roboto-v20-latin-ext_latin-300italic.woff2 +0 -0
  691. package/src/assets/fonts/roboto-v20-latin-ext_latin-500.eot +0 -0
  692. package/src/assets/fonts/roboto-v20-latin-ext_latin-500.svg +305 -0
  693. package/src/assets/fonts/roboto-v20-latin-ext_latin-500.ttf +0 -0
  694. package/src/assets/fonts/roboto-v20-latin-ext_latin-500.woff +0 -0
  695. package/src/assets/fonts/roboto-v20-latin-ext_latin-500.woff2 +0 -0
  696. package/src/assets/fonts/roboto-v20-latin-ext_latin-500italic.eot +0 -0
  697. package/src/assets/fonts/roboto-v20-latin-ext_latin-500italic.svg +326 -0
  698. package/src/assets/fonts/roboto-v20-latin-ext_latin-500italic.ttf +0 -0
  699. package/src/assets/fonts/roboto-v20-latin-ext_latin-500italic.woff +0 -0
  700. package/src/assets/fonts/roboto-v20-latin-ext_latin-500italic.woff2 +0 -0
  701. package/src/assets/fonts/roboto-v20-latin-ext_latin-italic.eot +0 -0
  702. package/src/assets/fonts/roboto-v20-latin-ext_latin-italic.svg +323 -0
  703. package/src/assets/fonts/roboto-v20-latin-ext_latin-italic.ttf +0 -0
  704. package/src/assets/fonts/roboto-v20-latin-ext_latin-italic.woff +0 -0
  705. package/src/assets/fonts/roboto-v20-latin-ext_latin-italic.woff2 +0 -0
  706. package/src/assets/fonts/roboto-v20-latin-ext_latin-regular.eot +0 -0
  707. package/src/assets/fonts/roboto-v20-latin-ext_latin-regular.svg +308 -0
  708. package/src/assets/fonts/roboto-v20-latin-ext_latin-regular.ttf +0 -0
  709. package/src/assets/fonts/roboto-v20-latin-ext_latin-regular.woff +0 -0
  710. package/src/assets/fonts/roboto-v20-latin-ext_latin-regular.woff2 +0 -0
  711. package/src/lib/admin/role-assignment/role-assignment.component.theme.scss +10 -0
  712. package/src/lib/data-fields/data-field.theme.scss +73 -0
  713. package/src/lib/dialog/dialog.theme.scss +13 -0
  714. package/src/lib/header/header.theme.scss +8 -0
  715. package/src/lib/navigation/navigation.theme.scss +9 -0
  716. package/src/lib/panel/panel.theme.scss +31 -0
  717. package/src/lib/search/advanced-search/search-clause-component/search-clause.component.theme.scss +9 -0
  718. package/src/lib/search/advanced-search/search-configuration-input-component/search-configuration-input.component.theme.scss +9 -0
  719. package/src/lib/search/advanced-search/search-predicate-component/search-predicate.component.theme.scss +9 -0
  720. package/src/lib/side-menu/content-components/user-assign/user-assign-list/user-assign-item/theme/user-assign-item.component.theme.scss +15 -0
  721. package/src/lib/side-menu/side-menu.theme.scss +24 -0
  722. package/src/lib/snack-bar/snack-bar.theme.scss +17 -0
  723. package/src/lib/tabs/tabs.theme.scss +16 -0
  724. package/src/lib/user/user.theme.scss +11 -0
  725. package/src/lib/view/view.theme.scss +16 -0
@@ -0,0 +1,28 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { AbstractSimpleTextFieldComponent } from '@netgrif/components-core';
4
+ import { TranslateService } from '@ngx-translate/core';
5
+ var SimpleTextFieldComponent = /** @class */ (function (_super) {
6
+ __extends(SimpleTextFieldComponent, _super);
7
+ function SimpleTextFieldComponent(_translate) {
8
+ var _this = _super.call(this, _translate) || this;
9
+ _this._translate = _translate;
10
+ return _this;
11
+ }
12
+ SimpleTextFieldComponent.ctorParameters = function () { return [
13
+ { type: TranslateService }
14
+ ]; };
15
+ SimpleTextFieldComponent.decorators = [
16
+ { type: Component, args: [{
17
+ selector: 'nc-simple-text-field',
18
+ template: "<mat-form-field [appearance]=\"textField.materialAppearance\" class=\"full-width\" color=\"primary\">\n <mat-label *ngIf=\"!showLargeLayout.value\">{{textField.title}}</mat-label>\n <input matInput\n [placeholder]=\"textField.placeholder\"\n [required]=\"textField.behavior.required\"\n [formControl]=\"formControlRef\">\n <mat-hint>{{textField.description}}</mat-hint>\n <mat-error *ngIf=\"textField.isInvalid(formControlRef)\">{{getErrorMessage()}}</mat-error>\n</mat-form-field>\n",
19
+ styles: [".full-width{display:block;margin:0 auto;width:100%}"]
20
+ },] }
21
+ ];
22
+ SimpleTextFieldComponent.ctorParameters = function () { return [
23
+ { type: TranslateService }
24
+ ]; };
25
+ return SimpleTextFieldComponent;
26
+ }(AbstractSimpleTextFieldComponent));
27
+ export { SimpleTextFieldComponent };
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2ltcGxlLXRleHQtZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9kYXRhLWZpZWxkcy90ZXh0LWZpZWxkL3NpbXBsZS10ZXh0LWZpZWxkL3NpbXBsZS10ZXh0LWZpZWxkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUMsZ0NBQWdDLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUMxRSxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUVyRDtJQUs4Qyw0Q0FBZ0M7SUFDMUUsa0NBQXNCLFVBQTRCO1FBQWxELFlBQ0ksa0JBQU0sVUFBVSxDQUFDLFNBQ3BCO1FBRnFCLGdCQUFVLEdBQVYsVUFBVSxDQUFrQjs7SUFFbEQsQ0FBQzs7Z0JBRmlDLGdCQUFnQjs7O2dCQU5yRCxTQUFTLFNBQUM7b0JBQ1AsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMseWhCQUFpRDs7aUJBRXBEOzs7Z0JBTk8sZ0JBQWdCOztJQVd4QiwrQkFBQztDQUFBLEFBVEQsQ0FLOEMsZ0NBQWdDLEdBSTdFO1NBSlksd0JBQXdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdFNpbXBsZVRleHRGaWVsZENvbXBvbmVudH0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcbmltcG9ydCB7VHJhbnNsYXRlU2VydmljZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtc2ltcGxlLXRleHQtZmllbGQnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9zaW1wbGUtdGV4dC1maWVsZC5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vc2ltcGxlLXRleHQtZmllbGQuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBTaW1wbGVUZXh0RmllbGRDb21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdFNpbXBsZVRleHRGaWVsZENvbXBvbmVudCB7XG4gICAgY29uc3RydWN0b3IocHJvdGVjdGVkIF90cmFuc2xhdGU6IFRyYW5zbGF0ZVNlcnZpY2UpIHtcbiAgICAgICAgc3VwZXIoX3RyYW5zbGF0ZSk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,25 @@
1
+ import { __extends } from "tslib";
2
+ import { Component, Inject, Optional } from '@angular/core';
3
+ import { AbstractTextFieldComponent, NAE_INFORM_ABOUT_INVALID_DATA } from '@netgrif/components-core';
4
+ var TextFieldComponent = /** @class */ (function (_super) {
5
+ __extends(TextFieldComponent, _super);
6
+ function TextFieldComponent(informAboutInvalidData) {
7
+ return _super.call(this, informAboutInvalidData) || this;
8
+ }
9
+ TextFieldComponent.ctorParameters = function () { return [
10
+ { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_INFORM_ABOUT_INVALID_DATA,] }] }
11
+ ]; };
12
+ TextFieldComponent.decorators = [
13
+ { type: Component, args: [{
14
+ selector: 'nc-text-field',
15
+ template: "<nc-data-field-template *ngIf=\"!dataField.behavior.hidden\"\n [dataField]=\"dataField\"\n [dataFieldTemplate]=\"textFieldTemplate\"\n [offset]=\"taskOffset\">\n</nc-data-field-template>\n\n<ng-template #textFieldTemplate let-showLargeLayout=\"showLargeLayout\">\n <div *ngIf=\"dataField.component !== undefined\" [ngSwitch]=\"dataField.component.name\">\n <nc-password-text-field *ngSwitchCase=\"'password'\" [passwordTextField]=\"dataField\" [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-password-text-field>\n <nc-textarea-field *ngSwitchCase=\"'textarea'\" [textAreaField]=\"dataField\" [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-textarea-field>\n <nc-rich-textarea-field *ngSwitchCase=\"'richtextarea'\" [textAreaField]=\"dataField\"\n [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-rich-textarea-field>\n <nc-html-textarea-field *ngSwitchCase=\"'htmltextarea'\" [textAreaField]=\"dataField\"\n [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-html-textarea-field>\n <nc-simple-text-field *ngSwitchDefault [textField]=\"dataField\" [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-simple-text-field>\n </div>\n\n <!-- @deprecated in 4.3.0-->\n <div *ngIf=\"dataField.component == undefined\" [ngSwitch]=\"dataField.view\">\n <nc-textarea-field *ngSwitchCase=\"'textarea'\" [textAreaField]=\"dataField\" [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-textarea-field>\n <nc-rich-textarea-field *ngSwitchCase=\"'richtextarea'\" [textAreaField]=\"dataField\"\n [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-rich-textarea-field>\n <nc-html-textarea-field *ngSwitchCase=\"'htmltextarea'\" [textAreaField]=\"dataField\"\n [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-html-textarea-field>\n <nc-simple-text-field *ngSwitchDefault [textField]=\"dataField\" [formControlRef]=\"formControl\"\n [showLargeLayout]=\"showLargeLayout\"></nc-simple-text-field>\n </div>\n</ng-template>\n",
16
+ styles: [".full-width{display:block;margin:0 auto;width:100%}"]
17
+ },] }
18
+ ];
19
+ TextFieldComponent.ctorParameters = function () { return [
20
+ { type: Boolean, decorators: [{ type: Optional }, { type: Inject, args: [NAE_INFORM_ABOUT_INVALID_DATA,] }] }
21
+ ]; };
22
+ return TextFieldComponent;
23
+ }(AbstractTextFieldComponent));
24
+ export { TextFieldComponent };
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dC1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AbmV0Z3JpZi9jb21wb25lbnRzLyIsInNvdXJjZXMiOlsibGliL2RhdGEtZmllbGRzL3RleHQtZmllbGQvdGV4dC1maWVsZC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsTUFBTSxFQUFFLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUMxRCxPQUFPLEVBQUMsMEJBQTBCLEVBQUUsNkJBQTZCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUVuRztJQUt3QyxzQ0FBMEI7SUFFOUQsNEJBQStELHNCQUFzQztlQUNqRyxrQkFBTSxzQkFBc0IsQ0FBQztJQUNqQyxDQUFDOztnREFGWSxRQUFRLFlBQUksTUFBTSxTQUFDLDZCQUE2Qjs7O2dCQVBoRSxTQUFTLFNBQUM7b0JBQ1AsUUFBUSxFQUFFLGVBQWU7b0JBQ3pCLG9uRkFBMEM7O2lCQUU3Qzs7OzhDQUdnQixRQUFRLFlBQUksTUFBTSxTQUFDLDZCQUE2Qjs7SUFHakUseUJBQUM7Q0FBQSxBQVZELENBS3dDLDBCQUEwQixHQUtqRTtTQUxZLGtCQUFrQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBJbmplY3QsIE9wdGlvbmFsfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RUZXh0RmllbGRDb21wb25lbnQsIE5BRV9JTkZPUk1fQUJPVVRfSU5WQUxJRF9EQVRBfSBmcm9tICdAbmV0Z3JpZi9jb21wb25lbnRzLWNvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ25jLXRleHQtZmllbGQnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi90ZXh0LWZpZWxkLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi90ZXh0LWZpZWxkLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgVGV4dEZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RUZXh0RmllbGRDb21wb25lbnQge1xuXG4gICAgY29uc3RydWN0b3IoQE9wdGlvbmFsKCkgQEluamVjdChOQUVfSU5GT1JNX0FCT1VUX0lOVkFMSURfREFUQSkgaW5mb3JtQWJvdXRJbnZhbGlkRGF0YTogYm9vbGVhbiB8IG51bGwpIHtcbiAgICAgICAgc3VwZXIoaW5mb3JtQWJvdXRJbnZhbGlkRGF0YSk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,31 @@
1
+ import { __extends } from "tslib";
2
+ import { Component, NgZone } from '@angular/core';
3
+ import { TranslateService } from '@ngx-translate/core';
4
+ import { AbstractTextareaFieldComponent } from '@netgrif/components-core';
5
+ var TextareaFieldComponent = /** @class */ (function (_super) {
6
+ __extends(TextareaFieldComponent, _super);
7
+ function TextareaFieldComponent(_translate, _ngZone) {
8
+ var _this = _super.call(this, _translate, _ngZone) || this;
9
+ _this._translate = _translate;
10
+ _this._ngZone = _ngZone;
11
+ return _this;
12
+ }
13
+ TextareaFieldComponent.ctorParameters = function () { return [
14
+ { type: TranslateService },
15
+ { type: NgZone }
16
+ ]; };
17
+ TextareaFieldComponent.decorators = [
18
+ { type: Component, args: [{
19
+ selector: 'nc-textarea-field',
20
+ template: "<mat-form-field [appearance]=\"textAreaField.materialAppearance\"\n floatLabel=\"always\"\n class=\"full-width\"\n color=\"primary\">\n <mat-label *ngIf=\"!showLargeLayout.value\">{{textAreaField.title}}</mat-label>\n <textarea matInput\n #textArea\n [placeholder]=\"textAreaField.placeholder\"\n [required]=\"textAreaField.behavior.required\"\n [formControl]=\"formControlRef\"\n [ngStyle]=\"{'min-height': getHeight()+'px', 'height': getHeight()+'px'}\"\n #dynamicTextArea=\"cdkTextareaAutosize\"\n cdkTextareaAutosize\n cdkAutosizeMinRows=\"1\"></textarea>\n <mat-hint>{{textAreaField.description}}</mat-hint>\n <mat-error *ngIf=\"textAreaField.isInvalid(formControlRef)\">{{getErrorMessage()}}</mat-error>\n</mat-form-field>\n\n\n",
21
+ styles: [".full-width{display:block;margin:0 auto;width:100%}"]
22
+ },] }
23
+ ];
24
+ TextareaFieldComponent.ctorParameters = function () { return [
25
+ { type: TranslateService },
26
+ { type: NgZone }
27
+ ]; };
28
+ return TextareaFieldComponent;
29
+ }(AbstractTextareaFieldComponent));
30
+ export { TextareaFieldComponent };
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGV4dGFyZWEtZmllbGQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9kYXRhLWZpZWxkcy90ZXh0LWZpZWxkL3RleHRhcmVhLWZpZWxkL3RleHRhcmVhLWZpZWxkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxNQUFNLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDaEQsT0FBTyxFQUFDLGdCQUFnQixFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDckQsT0FBTyxFQUFDLDhCQUE4QixFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFFeEU7SUFLNEMsMENBQThCO0lBRXRFLGdDQUFzQixVQUE0QixFQUFZLE9BQWU7UUFBN0UsWUFDSSxrQkFBTSxVQUFVLEVBQUUsT0FBTyxDQUFDLFNBQzdCO1FBRnFCLGdCQUFVLEdBQVYsVUFBVSxDQUFrQjtRQUFZLGFBQU8sR0FBUCxPQUFPLENBQVE7O0lBRTdFLENBQUM7O2dCQUZpQyxnQkFBZ0I7Z0JBQXFCLE1BQU07OztnQkFQaEYsU0FBUyxTQUFDO29CQUNQLFFBQVEsRUFBRSxtQkFBbUI7b0JBQzdCLDI0QkFBOEM7O2lCQUVqRDs7O2dCQVBPLGdCQUFnQjtnQkFETCxNQUFNOztJQWN6Qiw2QkFBQztDQUFBLEFBVkQsQ0FLNEMsOEJBQThCLEdBS3pFO1NBTFksc0JBQXNCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIE5nWm9uZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1RyYW5zbGF0ZVNlcnZpY2V9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdFRleHRhcmVhRmllbGRDb21wb25lbnR9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtdGV4dGFyZWEtZmllbGQnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi90ZXh0YXJlYS1maWVsZC5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vdGV4dGFyZWEtZmllbGQuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBUZXh0YXJlYUZpZWxkQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RUZXh0YXJlYUZpZWxkQ29tcG9uZW50IHtcblxuICAgIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBfdHJhbnNsYXRlOiBUcmFuc2xhdGVTZXJ2aWNlLCBwcm90ZWN0ZWQgX25nWm9uZTogTmdab25lKSB7XG4gICAgICAgIHN1cGVyKF90cmFuc2xhdGUsIF9uZ1pvbmUpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,36 @@
1
+ import { __extends } from "tslib";
2
+ import { Component, Inject, Optional } from '@angular/core';
3
+ import { AbstractUserFieldComponent, NAE_INFORM_ABOUT_INVALID_DATA, SideMenuService, SnackBarService } from '@netgrif/components-core';
4
+ import { UserAssignComponent } from '../../side-menu/content-components/user-assign/user-assign.component';
5
+ import { TranslateService } from '@ngx-translate/core';
6
+ var UserFieldComponent = /** @class */ (function (_super) {
7
+ __extends(UserFieldComponent, _super);
8
+ function UserFieldComponent(sideMenuService, snackbar, translate, informAboutInvalidData) {
9
+ return _super.call(this, sideMenuService, snackbar, translate, informAboutInvalidData) || this;
10
+ }
11
+ UserFieldComponent.prototype.selectUser = function () {
12
+ this.selectAbstractUser(UserAssignComponent);
13
+ };
14
+ UserFieldComponent.ctorParameters = function () { return [
15
+ { type: SideMenuService },
16
+ { type: SnackBarService },
17
+ { type: TranslateService },
18
+ { type: undefined, decorators: [{ type: Optional }, { type: Inject, args: [NAE_INFORM_ABOUT_INVALID_DATA,] }] }
19
+ ]; };
20
+ UserFieldComponent.decorators = [
21
+ { type: Component, args: [{
22
+ selector: 'nc-user-field',
23
+ template: "<nc-data-field-template *ngIf=\"!dataField.behavior.hidden\"\n [dataField]=\"dataField\"\n [dataFieldTemplate]=\"dataFieldTemplate\"\n [offset]=\"taskOffset\">\n</nc-data-field-template>\n\n<ng-template #dataFieldTemplate let-showLargeLayout=\"showLargeLayout\">\n\n <div>\n <mat-label *ngIf=\"!showLargeLayout.value\">{{dataField.title}}\n <nc-required-label *ngIf=\"dataField.behavior.required\" [isIn]=\"!dataField.disabled\"></nc-required-label>\n <br>\n </mat-label>\n <button mat-stroked-button\n *ngIf=\"dataField.value !== undefined\"\n [disabled]=\"formControl.disabled\"\n color=\"primary\"\n (click)=\"selectUser()\">\n <mat-icon>how_to_reg</mat-icon>\n {{dataField.value.fullName}}\n </button>\n <button mat-stroked-button\n *ngIf=\"dataField.value === undefined\"\n [disabled]=\"formControl.disabled\"\n color=\"primary\"\n (click)=\"selectUser()\">\n <mat-icon>person_add</mat-icon>\n Select user\n </button>\n <mat-error *ngIf=\"dataField.isInvalid(formControl)\">{{'dataField.validations.required' | translate}}</mat-error>\n </div>\n\n</ng-template>\n",
24
+ styles: [""]
25
+ },] }
26
+ ];
27
+ UserFieldComponent.ctorParameters = function () { return [
28
+ { type: SideMenuService },
29
+ { type: SnackBarService },
30
+ { type: TranslateService },
31
+ { type: Boolean, decorators: [{ type: Optional }, { type: Inject, args: [NAE_INFORM_ABOUT_INVALID_DATA,] }] }
32
+ ]; };
33
+ return UserFieldComponent;
34
+ }(AbstractUserFieldComponent));
35
+ export { UserFieldComponent };
36
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1maWVsZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AbmV0Z3JpZi9jb21wb25lbnRzLyIsInNvdXJjZXMiOlsibGliL2RhdGEtZmllbGRzL3VzZXItZmllbGQvdXNlci1maWVsZC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsTUFBTSxFQUFFLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUMxRCxPQUFPLEVBQUMsMEJBQTBCLEVBQUUsNkJBQTZCLEVBQUUsZUFBZSxFQUFFLGVBQWUsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ3JJLE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLHNFQUFzRSxDQUFDO0FBQ3pHLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRXJEO0lBS3dDLHNDQUEwQjtJQUU5RCw0QkFBWSxlQUFnQyxFQUNoQyxRQUF5QixFQUN6QixTQUEyQixFQUN3QixzQkFBc0M7ZUFDakcsa0JBQU0sZUFBZSxFQUFFLFFBQVEsRUFBRSxTQUFTLEVBQUUsc0JBQXNCLENBQUM7SUFDdkUsQ0FBQztJQUVNLHVDQUFVLEdBQWpCO1FBQ0ksSUFBSSxDQUFDLGtCQUFrQixDQUFDLG1CQUFtQixDQUFDLENBQUM7SUFDakQsQ0FBQzs7Z0JBVDRCLGVBQWU7Z0JBQ3RCLGVBQWU7Z0JBQ2QsZ0JBQWdCO2dEQUMxQixRQUFRLFlBQUksTUFBTSxTQUFDLDZCQUE2Qjs7O2dCQVZoRSxTQUFTLFNBQUM7b0JBQ1AsUUFBUSxFQUFFLGVBQWU7b0JBQ3pCLDgyQ0FBMEM7O2lCQUU3Qzs7O2dCQVJrRSxlQUFlO2dCQUFFLGVBQWU7Z0JBRTNGLGdCQUFnQjs4Q0FZUCxRQUFRLFlBQUksTUFBTSxTQUFDLDZCQUE2Qjs7SUFPakUseUJBQUM7Q0FBQSxBQWpCRCxDQUt3QywwQkFBMEIsR0FZakU7U0FaWSxrQkFBa0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSW5qZWN0LCBPcHRpb25hbH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0VXNlckZpZWxkQ29tcG9uZW50LCBOQUVfSU5GT1JNX0FCT1VUX0lOVkFMSURfREFUQSwgU2lkZU1lbnVTZXJ2aWNlLCBTbmFja0JhclNlcnZpY2V9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5pbXBvcnQge1VzZXJBc3NpZ25Db21wb25lbnR9IGZyb20gJy4uLy4uL3NpZGUtbWVudS9jb250ZW50LWNvbXBvbmVudHMvdXNlci1hc3NpZ24vdXNlci1hc3NpZ24uY29tcG9uZW50JztcbmltcG9ydCB7VHJhbnNsYXRlU2VydmljZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtdXNlci1maWVsZCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3VzZXItZmllbGQuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL3VzZXItZmllbGQuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBVc2VyRmllbGRDb21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdFVzZXJGaWVsZENvbXBvbmVudCB7XG5cbiAgICBjb25zdHJ1Y3RvcihzaWRlTWVudVNlcnZpY2U6IFNpZGVNZW51U2VydmljZSxcbiAgICAgICAgICAgICAgICBzbmFja2JhcjogU25hY2tCYXJTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHRyYW5zbGF0ZTogVHJhbnNsYXRlU2VydmljZSxcbiAgICAgICAgICAgICAgICBAT3B0aW9uYWwoKSBASW5qZWN0KE5BRV9JTkZPUk1fQUJPVVRfSU5WQUxJRF9EQVRBKSBpbmZvcm1BYm91dEludmFsaWREYXRhOiBib29sZWFuIHwgbnVsbCkge1xuICAgICAgICBzdXBlcihzaWRlTWVudVNlcnZpY2UsIHNuYWNrYmFyLCB0cmFuc2xhdGUsIGluZm9ybUFib3V0SW52YWxpZERhdGEpO1xuICAgIH1cblxuICAgIHB1YmxpYyBzZWxlY3RVc2VyKCkge1xuICAgICAgICB0aGlzLnNlbGVjdEFic3RyYWN0VXNlcihVc2VyQXNzaWduQ29tcG9uZW50KTtcbiAgICB9XG59XG4iXX0=
@@ -0,0 +1,26 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import { AbstractEmailSubmissionFormComponent } from '@netgrif/components-core';
5
+ var EmailSubmissionFormComponent = /** @class */ (function (_super) {
6
+ __extends(EmailSubmissionFormComponent, _super);
7
+ function EmailSubmissionFormComponent(formBuilder) {
8
+ return _super.call(this, formBuilder) || this;
9
+ }
10
+ EmailSubmissionFormComponent.ctorParameters = function () { return [
11
+ { type: FormBuilder }
12
+ ]; };
13
+ EmailSubmissionFormComponent.decorators = [
14
+ { type: Component, args: [{
15
+ selector: 'nc-email-submission-form',
16
+ template: "<div fxLayout=\"column\" fxLayoutAlign=\"start center\" fxLayoutGap=\"24px\">\n <form [formGroup]=\"rootFormGroup\" (ngSubmit)=\"onSubmit()\" class=\"full-width\">\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">email</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.email.enterEmail' | translate}}\" formControlName=\"email\" required autocomplete=\"email\">\n <mat-error *ngIf=\"rootFormGroup.controls['email'].hasError('email')\">\n {{ 'dataField.validations.email' | translate}}\n </mat-error>\n </mat-form-field>\n </div>\n <nc-legal-notice *ngIf=\"displayLegalNotice\" [buttonName]=\"'dialog.submit'\"></nc-legal-notice>\n <div fxLayout=\"row\" class=\"margin-top-4\">\n <button mat-icon-button fxLayoutAlign=\"start\" (click)=\"emitGoBack()\">\n <mat-icon>arrow_back</mat-icon>\n </button>\n <div fxFlex></div>\n <button fxLayoutAlign=\"end\" mat-raised-button color=\"primary\" fxFlexOffset=\"8px\">{{ 'dialog.submit' | translate}}</button>\n </div>\n </form>\n</div>\n",
17
+ styles: [".margin-top-4{margin-top:4px}.full-width{width:100%}"]
18
+ },] }
19
+ ];
20
+ EmailSubmissionFormComponent.ctorParameters = function () { return [
21
+ { type: FormBuilder }
22
+ ]; };
23
+ return EmailSubmissionFormComponent;
24
+ }(AbstractEmailSubmissionFormComponent));
25
+ export { EmailSubmissionFormComponent };
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1haWwtc3VibWlzc2lvbi1mb3JtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvZm9ybXMvZW1haWwtc3VibWlzc2lvbi9lbWFpbC1zdWJtaXNzaW9uLWZvcm0uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3hDLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUMsb0NBQW9DLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUU5RTtJQUtrRCxnREFBb0M7SUFDbEYsc0NBQVksV0FBd0I7ZUFDaEMsa0JBQU0sV0FBVyxDQUFDO0lBQ3RCLENBQUM7O2dCQUZ3QixXQUFXOzs7Z0JBTnZDLFNBQVMsU0FBQztvQkFDUCxRQUFRLEVBQUUsMEJBQTBCO29CQUNwQyxvd0NBQXFEOztpQkFFeEQ7OztnQkFQTyxXQUFXOztJQVluQixtQ0FBQztDQUFBLEFBVEQsQ0FLa0Qsb0NBQW9DLEdBSXJGO1NBSlksNEJBQTRCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtGb3JtQnVpbGRlcn0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHtBYnN0cmFjdEVtYWlsU3VibWlzc2lvbkZvcm1Db21wb25lbnR9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtZW1haWwtc3VibWlzc2lvbi1mb3JtJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vZW1haWwtc3VibWlzc2lvbi1mb3JtLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9lbWFpbC1zdWJtaXNzaW9uLWZvcm0uY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBFbWFpbFN1Ym1pc3Npb25Gb3JtQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RFbWFpbFN1Ym1pc3Npb25Gb3JtQ29tcG9uZW50IHtcbiAgICBjb25zdHJ1Y3Rvcihmb3JtQnVpbGRlcjogRm9ybUJ1aWxkZXIpIHtcbiAgICAgICAgc3VwZXIoZm9ybUJ1aWxkZXIpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,28 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { FlexLayoutModule } from '@angular/flex-layout';
4
+ import { ReactiveFormsModule } from '@angular/forms';
5
+ import { EmailSubmissionFormComponent } from './email-submission-form.component';
6
+ import { MaterialModule, TranslateLibModule } from '@netgrif/components-core';
7
+ import { LegalNoticeModule } from '../../legal/legal-notice/legal-notice.module';
8
+ var EmailSubmissionFormComponentModule = /** @class */ (function () {
9
+ function EmailSubmissionFormComponentModule() {
10
+ }
11
+ EmailSubmissionFormComponentModule.decorators = [
12
+ { type: NgModule, args: [{
13
+ declarations: [EmailSubmissionFormComponent],
14
+ exports: [EmailSubmissionFormComponent],
15
+ imports: [
16
+ CommonModule,
17
+ MaterialModule,
18
+ FlexLayoutModule,
19
+ ReactiveFormsModule,
20
+ TranslateLibModule,
21
+ LegalNoticeModule
22
+ ]
23
+ },] }
24
+ ];
25
+ return EmailSubmissionFormComponentModule;
26
+ }());
27
+ export { EmailSubmissionFormComponentModule };
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW1haWwtc3VibWlzc2lvbi1mb3JtLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvZm9ybXMvZW1haWwtc3VibWlzc2lvbi9lbWFpbC1zdWJtaXNzaW9uLWZvcm0ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ3RELE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBQ25ELE9BQU8sRUFBQyw0QkFBNEIsRUFBQyxNQUFNLG1DQUFtQyxDQUFDO0FBQy9FLE9BQU8sRUFBQyxjQUFjLEVBQUUsa0JBQWtCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUM1RSxPQUFPLEVBQUMsaUJBQWlCLEVBQUMsTUFBTSw4Q0FBOEMsQ0FBQztBQUcvRTtJQUFBO0lBYUEsQ0FBQzs7Z0JBYkEsUUFBUSxTQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLDRCQUE0QixDQUFDO29CQUM1QyxPQUFPLEVBQUUsQ0FBQyw0QkFBNEIsQ0FBQztvQkFDdkMsT0FBTyxFQUFFO3dCQUNMLFlBQVk7d0JBQ1osY0FBYzt3QkFDZCxnQkFBZ0I7d0JBQ2hCLG1CQUFtQjt3QkFDbkIsa0JBQWtCO3dCQUNsQixpQkFBaUI7cUJBQ3BCO2lCQUNKOztJQUVELHlDQUFDO0NBQUEsQUFiRCxJQWFDO1NBRFksa0NBQWtDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7RmxleExheW91dE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZmxleC1sYXlvdXQnO1xuaW1wb3J0IHtSZWFjdGl2ZUZvcm1zTW9kdWxlfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQge0VtYWlsU3VibWlzc2lvbkZvcm1Db21wb25lbnR9IGZyb20gJy4vZW1haWwtc3VibWlzc2lvbi1mb3JtLmNvbXBvbmVudCc7XG5pbXBvcnQge01hdGVyaWFsTW9kdWxlLCBUcmFuc2xhdGVMaWJNb2R1bGV9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5pbXBvcnQge0xlZ2FsTm90aWNlTW9kdWxlfSBmcm9tICcuLi8uLi9sZWdhbC9sZWdhbC1ub3RpY2UvbGVnYWwtbm90aWNlLm1vZHVsZSc7XG5cblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtFbWFpbFN1Ym1pc3Npb25Gb3JtQ29tcG9uZW50XSxcbiAgICBleHBvcnRzOiBbRW1haWxTdWJtaXNzaW9uRm9ybUNvbXBvbmVudF0sXG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIE1hdGVyaWFsTW9kdWxlLFxuICAgICAgICBGbGV4TGF5b3V0TW9kdWxlLFxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgICAgICBUcmFuc2xhdGVMaWJNb2R1bGUsXG4gICAgICAgIExlZ2FsTm90aWNlTW9kdWxlXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBFbWFpbFN1Ym1pc3Npb25Gb3JtQ29tcG9uZW50TW9kdWxlIHtcbn1cbiJdfQ==
@@ -0,0 +1,26 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { ForgottenPasswordFormComponent } from './forgotten-password-form.component';
4
+ import { MaterialModule, TranslateLibModule } from '@netgrif/components-core';
5
+ import { FlexLayoutModule } from '@angular/flex-layout';
6
+ import { ReactiveFormsModule } from '@angular/forms';
7
+ var ForgottenPasswordFormComponentModule = /** @class */ (function () {
8
+ function ForgottenPasswordFormComponentModule() {
9
+ }
10
+ ForgottenPasswordFormComponentModule.decorators = [
11
+ { type: NgModule, args: [{
12
+ declarations: [ForgottenPasswordFormComponent],
13
+ exports: [ForgottenPasswordFormComponent],
14
+ imports: [
15
+ CommonModule,
16
+ MaterialModule,
17
+ FlexLayoutModule,
18
+ ReactiveFormsModule,
19
+ TranslateLibModule
20
+ ]
21
+ },] }
22
+ ];
23
+ return ForgottenPasswordFormComponentModule;
24
+ }());
25
+ export { ForgottenPasswordFormComponentModule };
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9yZ290dGVuLXBhc3N3b3JkLWZvcm0tY29tcG9uZW50Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvZm9ybXMvZm9yZ290dGVuLXBhc3N3b3JkL2ZvcmdvdHRlbi1wYXNzd29yZC1mb3JtLWNvbXBvbmVudC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFDLDhCQUE4QixFQUFDLE1BQU0scUNBQXFDLENBQUM7QUFDbkYsT0FBTyxFQUFDLGNBQWMsRUFBRSxrQkFBa0IsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQzVFLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ3RELE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBR25EO0lBQUE7SUFZQSxDQUFDOztnQkFaQSxRQUFRLFNBQUM7b0JBQ04sWUFBWSxFQUFFLENBQUMsOEJBQThCLENBQUM7b0JBQzlDLE9BQU8sRUFBRSxDQUFDLDhCQUE4QixDQUFDO29CQUN6QyxPQUFPLEVBQUU7d0JBQ0wsWUFBWTt3QkFDWixjQUFjO3dCQUNkLGdCQUFnQjt3QkFDaEIsbUJBQW1CO3dCQUNuQixrQkFBa0I7cUJBQ3JCO2lCQUNKOztJQUVELDJDQUFDO0NBQUEsQUFaRCxJQVlDO1NBRFksb0NBQW9DIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7Rm9yZ290dGVuUGFzc3dvcmRGb3JtQ29tcG9uZW50fSBmcm9tICcuL2ZvcmdvdHRlbi1wYXNzd29yZC1mb3JtLmNvbXBvbmVudCc7XG5pbXBvcnQge01hdGVyaWFsTW9kdWxlLCBUcmFuc2xhdGVMaWJNb2R1bGV9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5pbXBvcnQge0ZsZXhMYXlvdXRNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2ZsZXgtbGF5b3V0JztcbmltcG9ydCB7UmVhY3RpdmVGb3Jtc01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuXG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbRm9yZ290dGVuUGFzc3dvcmRGb3JtQ29tcG9uZW50XSxcbiAgICBleHBvcnRzOiBbRm9yZ290dGVuUGFzc3dvcmRGb3JtQ29tcG9uZW50XSxcbiAgICBpbXBvcnRzOiBbXG4gICAgICAgIENvbW1vbk1vZHVsZSxcbiAgICAgICAgTWF0ZXJpYWxNb2R1bGUsXG4gICAgICAgIEZsZXhMYXlvdXRNb2R1bGUsXG4gICAgICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgICAgIFRyYW5zbGF0ZUxpYk1vZHVsZVxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgRm9yZ290dGVuUGFzc3dvcmRGb3JtQ29tcG9uZW50TW9kdWxlIHtcbn1cbiJdfQ==
@@ -0,0 +1,33 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { AbstractForgottenPasswordComponent, LoggerService, SignUpService } from '@netgrif/components-core';
4
+ import { FormBuilder } from '@angular/forms';
5
+ import { TranslateService } from '@ngx-translate/core';
6
+ var ForgottenPasswordFormComponent = /** @class */ (function (_super) {
7
+ __extends(ForgottenPasswordFormComponent, _super);
8
+ function ForgottenPasswordFormComponent(formBuilder, signupService, log, translate) {
9
+ return _super.call(this, formBuilder, signupService, log, translate) || this;
10
+ }
11
+ ForgottenPasswordFormComponent.ctorParameters = function () { return [
12
+ { type: FormBuilder },
13
+ { type: SignUpService },
14
+ { type: LoggerService },
15
+ { type: TranslateService }
16
+ ]; };
17
+ ForgottenPasswordFormComponent.decorators = [
18
+ { type: Component, args: [{
19
+ selector: 'nc-forgotten-password-form',
20
+ template: "<div fxLayout=\"column\" fxLayoutGap=\"24px\" *ngIf=\"tokenVerified && (loadingToken | async) === false\">\n <form [formGroup]=\"rootFormGroup\" (ngSubmit)=\"onSubmit()\" class=\"full-width\">\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">email</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.register.email' | translate}}\" disabled [value]=\"userEmail\" autocomplete=\"username\">\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">vpn_key</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.forgottenPass.enterNewPass' | translate }}\"\n [type]=\"hidePassword ? 'password' : 'text'\"\n formControlName=\"password\" required autocomplete=\"new-password\">\n <button mat-icon-button matSuffix type=\"button\"\n (click)=\"hidePassword = !hidePassword\"\n (keypress)=\"false\"\n [attr.aria-label]=\"'Hide password'\"\n [attr.aria-pressed]=\"hidePassword\">\n <mat-icon\n [color]=\"hidePassword ? undefined : 'accent'\">{{hidePassword ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"!isFieldValid('password')\">{{getErrorMessage('password')}}</mat-error>\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">vpn_key</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.forgottenPass.repeatNewPass' | translate }}\"\n [type]=\"hideRepeatPassword ? 'password' : 'text'\"\n formControlName=\"confirmPassword\" required autocomplete=\"new-password\">\n <button mat-icon-button matSuffix type=\"button\"\n (click)=\"hideRepeatPassword = !hideRepeatPassword\"\n (keypress)=\"false\"\n [attr.aria-label]=\"'Hide password'\"\n [attr.aria-pressed]=\"hideRepeatPassword\">\n <mat-icon\n [color]=\"hideRepeatPassword ? undefined : 'accent'\">{{hideRepeatPassword ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"!isFieldValid('confirmPassword')\">{{getErrorMessage('confirmPassword')}}</mat-error>\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"end\" fxLayoutAlign.xs=\"center\" class=\"margin-top-4\">\n <button fxFlexOffset=\"8px\" fxFlexOffset.xs=\"0\" mat-raised-button class=\"register-button\" color=\"primary\">\n {{ 'forms.forgottenPass.recover' | translate }}\n </button>\n </div>\n </form>\n</div>\n\n<div *ngIf=\"!tokenVerified && (loadingToken | async) === false\" fxLayout=\"column\" fxLayoutAlign=\"center center\" fxFlex>\n <mat-icon color=\"accent\">unpublished</mat-icon>\n <span class=\"font-size-20\">{{ 'forms.register.notVerified' | translate}}</span>\n</div>\n\n<div *ngIf=\"loadingToken | async\">\n <mat-progress-spinner></mat-progress-spinner>\n</div>\n",
21
+ styles: [".font-size-20{font-size:20px}.margin-top-4{margin-top:4px}.full-width{width:100%}"]
22
+ },] }
23
+ ];
24
+ ForgottenPasswordFormComponent.ctorParameters = function () { return [
25
+ { type: FormBuilder },
26
+ { type: SignUpService },
27
+ { type: LoggerService },
28
+ { type: TranslateService }
29
+ ]; };
30
+ return ForgottenPasswordFormComponent;
31
+ }(AbstractForgottenPasswordComponent));
32
+ export { ForgottenPasswordFormComponent };
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9yZ290dGVuLXBhc3N3b3JkLWZvcm0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9mb3Jtcy9mb3Jnb3R0ZW4tcGFzc3dvcmQvZm9yZ290dGVuLXBhc3N3b3JkLWZvcm0uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3hDLE9BQU8sRUFBQyxrQ0FBa0MsRUFBRSxhQUFhLEVBQUUsYUFBYSxFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFDMUcsT0FBTyxFQUFDLFdBQVcsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBQzNDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRXJEO0lBS29ELGtEQUFrQztJQUNsRix3Q0FBWSxXQUF3QixFQUN4QixhQUE0QixFQUM1QixHQUFrQixFQUNsQixTQUEyQjtlQUNuQyxrQkFBTSxXQUFXLEVBQUUsYUFBYSxFQUFFLEdBQUcsRUFBRSxTQUFTLENBQUM7SUFDckQsQ0FBQzs7Z0JBTHdCLFdBQVc7Z0JBQ1QsYUFBYTtnQkFDdkIsYUFBYTtnQkFDUCxnQkFBZ0I7OztnQkFUMUMsU0FBUyxTQUFDO29CQUNQLFFBQVEsRUFBRSw0QkFBNEI7b0JBQ3RDLGdoSEFBdUQ7O2lCQUUxRDs7O2dCQVBPLFdBQVc7Z0JBRHdDLGFBQWE7Z0JBQTVCLGFBQWE7Z0JBRWpELGdCQUFnQjs7SUFjeEIscUNBQUM7Q0FBQSxBQVpELENBS29ELGtDQUFrQyxHQU9yRjtTQVBZLDhCQUE4QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RGb3Jnb3R0ZW5QYXNzd29yZENvbXBvbmVudCwgTG9nZ2VyU2VydmljZSwgU2lnblVwU2VydmljZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcbmltcG9ydCB7Rm9ybUJ1aWxkZXJ9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7VHJhbnNsYXRlU2VydmljZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtZm9yZ290dGVuLXBhc3N3b3JkLWZvcm0nLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9mb3Jnb3R0ZW4tcGFzc3dvcmQtZm9ybS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vZm9yZ290dGVuLXBhc3N3b3JkLWZvcm0uY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBGb3Jnb3R0ZW5QYXNzd29yZEZvcm1Db21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdEZvcmdvdHRlblBhc3N3b3JkQ29tcG9uZW50IHtcbiAgICBjb25zdHJ1Y3Rvcihmb3JtQnVpbGRlcjogRm9ybUJ1aWxkZXIsXG4gICAgICAgICAgICAgICAgc2lnbnVwU2VydmljZTogU2lnblVwU2VydmljZSxcbiAgICAgICAgICAgICAgICBsb2c6IExvZ2dlclNlcnZpY2UsXG4gICAgICAgICAgICAgICAgdHJhbnNsYXRlOiBUcmFuc2xhdGVTZXJ2aWNlKSB7XG4gICAgICAgIHN1cGVyKGZvcm1CdWlsZGVyLCBzaWdudXBTZXJ2aWNlLCBsb2csIHRyYW5zbGF0ZSk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,30 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import { AbstractLoginFormComponent, UserService } from '@netgrif/components-core';
5
+ var LoginFormComponent = /** @class */ (function (_super) {
6
+ __extends(LoginFormComponent, _super);
7
+ function LoginFormComponent(formBuilder, _userService) {
8
+ var _this = _super.call(this, formBuilder, _userService) || this;
9
+ _this._userService = _userService;
10
+ return _this;
11
+ }
12
+ LoginFormComponent.ctorParameters = function () { return [
13
+ { type: FormBuilder },
14
+ { type: UserService }
15
+ ]; };
16
+ LoginFormComponent.decorators = [
17
+ { type: Component, args: [{
18
+ selector: 'nc-login-form',
19
+ template: "<div fxLayout=\"column\" fxLayoutAlign=\"start center\" fxLayoutGap=\"8px\">\n <form [formGroup]=\"rootFormGroup\" (ngSubmit)=\"onSubmit()\" class=\"full-width\">\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">account_circle</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.login.login' | translate}}\" formControlName=\"login\" minlength=\"4\"\n required autocomplete=\"username\">\n <mat-error *ngIf=\"rootFormGroup.controls['login'].hasError('minlength')\">\n {{ 'forms.login.length' | translate}}\n </mat-error>\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">vpn_key</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.login.enterPass' | translate}}\"\n [type]=\"hidePassword ? 'password' : 'text'\"\n formControlName=\"password\" required autocomplete=\"current-password\">\n <button mat-icon-button matSuffix type=\"button\"\n (click)=\"hidePassword = !hidePassword\"\n (keypress)=\"false\"\n [attr.aria-label]=\"'Hide password'\"\n [attr.aria-pressed]=\"hidePassword\">\n <mat-icon\n [color]=\"hidePassword ? undefined : 'accent'\">{{hidePassword ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" [fxLayoutAlign]=\"getButtonsFxLayoutAlign()\" fxLayoutAlign.xs=\"center\" class=\"margin-top-4\">\n <button mat-stroked-button type=\"button\" *ngIf=\"showForgottenPasswordButton && !showSignUpButton\" (click)=\"resetEmit()\" color=\"primary\" class=\"margin-left-40\">{{ 'forms.login.reset' | translate}}</button>\n <button mat-stroked-button type=\"button\" *ngIf=\"showSignUpButton\" (click)=\"signUpEmit()\" color=\"primary\" class=\"margin-left-40\">{{ 'forms.login.sign' | translate}}</button>\n <button color=\"primary\" type=\"submit\" mat-raised-button fxLayout=\"row\" fxLayoutAlign=\"center center\">\n <mat-spinner *ngIf=\"loading | async\"\n mode=\"indeterminate\"\n diameter=\"36\"\n color=\"accent\"\n fxFlex></mat-spinner>\n <span *ngIf=\"(loading | async) === false\" fxFlex>{{ 'forms.login.loginButton' | translate}}</span>\n </button>\n </div>\n </form>\n\n <div *ngIf=\"showSignUpButton && showForgottenPasswordButton\" fxLayout=\"row\" class=\"width-100\" fxLayoutAlign=\"end\">\n <button mat-button *ngIf=\"showForgottenPasswordButton\" (click)=\"resetEmit()\" color=\"primary\">{{ 'forms.login.reset' | translate}}</button>\n </div>\n</div>\n",
20
+ styles: [".forgotten-password{margin-bottom:10px}.login-form-container a{color:#757575}.login-form-container a:hover{color:rgba(0,0,0,.87);cursor:pointer}.margin-top-2x{margin-top:16px}.margin-right-default{margin-right:8px}.position-relative{position:relative!important}.width-100{width:100%}.margin-top-4{margin-top:4px}.full-width{width:100%}.margin-left-40{margin-left:40px}"]
21
+ },] }
22
+ ];
23
+ LoginFormComponent.ctorParameters = function () { return [
24
+ { type: FormBuilder },
25
+ { type: UserService }
26
+ ]; };
27
+ return LoginFormComponent;
28
+ }(AbstractLoginFormComponent));
29
+ export { LoginFormComponent };
30
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW4tZm9ybS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AbmV0Z3JpZi9jb21wb25lbnRzLyIsInNvdXJjZXMiOlsibGliL2Zvcm1zL2xvZ2luL2xvZ2luLWZvcm0uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3hDLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUMsMEJBQTBCLEVBQUUsV0FBVyxFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFFakY7SUFLd0Msc0NBQTBCO0lBQzlELDRCQUFZLFdBQXdCLEVBQVksWUFBeUI7UUFBekUsWUFDSSxrQkFBTSxXQUFXLEVBQUUsWUFBWSxDQUFDLFNBQ25DO1FBRitDLGtCQUFZLEdBQVosWUFBWSxDQUFhOztJQUV6RSxDQUFDOztnQkFGd0IsV0FBVztnQkFBMEIsV0FBVzs7O2dCQU41RSxTQUFTLFNBQUM7b0JBQ1AsUUFBUSxFQUFFLGVBQWU7b0JBQ3pCLHFuR0FBMEM7O2lCQUU3Qzs7O2dCQVBPLFdBQVc7Z0JBQ2lCLFdBQVc7O0lBVy9DLHlCQUFDO0NBQUEsQUFURCxDQUt3QywwQkFBMEIsR0FJakU7U0FKWSxrQkFBa0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Zvcm1CdWlsZGVyfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQge0Fic3RyYWN0TG9naW5Gb3JtQ29tcG9uZW50LCBVc2VyU2VydmljZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1sb2dpbi1mb3JtJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vbG9naW4tZm9ybS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vbG9naW4tZm9ybS5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIExvZ2luRm9ybUNvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0TG9naW5Gb3JtQ29tcG9uZW50IHtcbiAgICBjb25zdHJ1Y3Rvcihmb3JtQnVpbGRlcjogRm9ybUJ1aWxkZXIsIHByb3RlY3RlZCBfdXNlclNlcnZpY2U6IFVzZXJTZXJ2aWNlKSB7XG4gICAgICAgIHN1cGVyKGZvcm1CdWlsZGVyLCBfdXNlclNlcnZpY2UpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,26 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { FlexLayoutModule } from '@angular/flex-layout';
4
+ import { ReactiveFormsModule } from '@angular/forms';
5
+ import { LoginFormComponent } from './login-form.component';
6
+ import { MaterialModule, TranslateLibModule } from '@netgrif/components-core';
7
+ var LoginFormComponentModule = /** @class */ (function () {
8
+ function LoginFormComponentModule() {
9
+ }
10
+ LoginFormComponentModule.decorators = [
11
+ { type: NgModule, args: [{
12
+ declarations: [LoginFormComponent],
13
+ exports: [LoginFormComponent],
14
+ imports: [
15
+ CommonModule,
16
+ MaterialModule,
17
+ FlexLayoutModule,
18
+ ReactiveFormsModule,
19
+ TranslateLibModule
20
+ ]
21
+ },] }
22
+ ];
23
+ return LoginFormComponentModule;
24
+ }());
25
+ export { LoginFormComponentModule };
26
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9naW4tZm9ybS5tb2R1bGUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AbmV0Z3JpZi9jb21wb25lbnRzLyIsInNvdXJjZXMiOlsibGliL2Zvcm1zL2xvZ2luL2xvZ2luLWZvcm0ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ3RELE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBQ25ELE9BQU8sRUFBQyxrQkFBa0IsRUFBQyxNQUFNLHdCQUF3QixDQUFDO0FBQzFELE9BQU8sRUFBQyxjQUFjLEVBQUUsa0JBQWtCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUc1RTtJQUFBO0lBWUEsQ0FBQzs7Z0JBWkEsUUFBUSxTQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLGtCQUFrQixDQUFDO29CQUNsQyxPQUFPLEVBQUUsQ0FBQyxrQkFBa0IsQ0FBQztvQkFDN0IsT0FBTyxFQUFFO3dCQUNMLFlBQVk7d0JBQ1osY0FBYzt3QkFDZCxnQkFBZ0I7d0JBQ2hCLG1CQUFtQjt3QkFDbkIsa0JBQWtCO3FCQUNyQjtpQkFDSjs7SUFFRCwrQkFBQztDQUFBLEFBWkQsSUFZQztTQURZLHdCQUF3QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7TmdNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtDb21tb25Nb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQge0ZsZXhMYXlvdXRNb2R1bGV9IGZyb20gJ0Bhbmd1bGFyL2ZsZXgtbGF5b3V0JztcbmltcG9ydCB7UmVhY3RpdmVGb3Jtc01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xuaW1wb3J0IHtMb2dpbkZvcm1Db21wb25lbnR9IGZyb20gJy4vbG9naW4tZm9ybS5jb21wb25lbnQnO1xuaW1wb3J0IHtNYXRlcmlhbE1vZHVsZSwgVHJhbnNsYXRlTGliTW9kdWxlfSBmcm9tICdAbmV0Z3JpZi9jb21wb25lbnRzLWNvcmUnO1xuXG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbTG9naW5Gb3JtQ29tcG9uZW50XSxcbiAgICBleHBvcnRzOiBbTG9naW5Gb3JtQ29tcG9uZW50XSxcbiAgICBpbXBvcnRzOiBbXG4gICAgICAgIENvbW1vbk1vZHVsZSxcbiAgICAgICAgTWF0ZXJpYWxNb2R1bGUsXG4gICAgICAgIEZsZXhMYXlvdXRNb2R1bGUsXG4gICAgICAgIFJlYWN0aXZlRm9ybXNNb2R1bGUsXG4gICAgICAgIFRyYW5zbGF0ZUxpYk1vZHVsZVxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgTG9naW5Gb3JtQ29tcG9uZW50TW9kdWxlIHtcbn1cbiJdfQ==
@@ -0,0 +1,11 @@
1
+ /* COMPONENTS */
2
+ export * from './email-submission/email-submission-form.component';
3
+ export * from './login/login-form.component';
4
+ export * from './registration/registration-form.component';
5
+ export * from './forgotten-password/forgotten-password-form.component';
6
+ /* MODULES */
7
+ export * from './email-submission/email-submission-form.module';
8
+ export * from './login/login-form.module';
9
+ export * from './registration/registration-form.module';
10
+ export * from './forgotten-password/forgotten-password-form-component.module';
11
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvZm9ybXMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxnQkFBZ0I7QUFDaEIsY0FBYyxvREFBb0QsQ0FBQztBQUNuRSxjQUFjLDhCQUE4QixDQUFDO0FBQzdDLGNBQWMsNENBQTRDLENBQUM7QUFDM0QsY0FBYyx3REFBd0QsQ0FBQztBQUV2RSxhQUFhO0FBQ2IsY0FBYyxpREFBaUQsQ0FBQztBQUNoRSxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYywrREFBK0QsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qIENPTVBPTkVOVFMgKi9cbmV4cG9ydCAqIGZyb20gJy4vZW1haWwtc3VibWlzc2lvbi9lbWFpbC1zdWJtaXNzaW9uLWZvcm0uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbG9naW4vbG9naW4tZm9ybS5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9yZWdpc3RyYXRpb24vcmVnaXN0cmF0aW9uLWZvcm0uY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vZm9yZ290dGVuLXBhc3N3b3JkL2ZvcmdvdHRlbi1wYXNzd29yZC1mb3JtLmNvbXBvbmVudCc7XG5cbi8qIE1PRFVMRVMgKi9cbmV4cG9ydCAqIGZyb20gJy4vZW1haWwtc3VibWlzc2lvbi9lbWFpbC1zdWJtaXNzaW9uLWZvcm0ubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vbG9naW4vbG9naW4tZm9ybS5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9yZWdpc3RyYXRpb24vcmVnaXN0cmF0aW9uLWZvcm0ubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZm9yZ290dGVuLXBhc3N3b3JkL2ZvcmdvdHRlbi1wYXNzd29yZC1mb3JtLWNvbXBvbmVudC5tb2R1bGUnO1xuIl19
@@ -0,0 +1,33 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { FormBuilder } from '@angular/forms';
4
+ import { AbstractRegistrationFormComponent, LoggerService, SignUpService } from '@netgrif/components-core';
5
+ import { TranslateService } from '@ngx-translate/core';
6
+ var RegistrationFormComponent = /** @class */ (function (_super) {
7
+ __extends(RegistrationFormComponent, _super);
8
+ function RegistrationFormComponent(formBuilder, signupService, log, translate) {
9
+ return _super.call(this, formBuilder, signupService, log, translate) || this;
10
+ }
11
+ RegistrationFormComponent.ctorParameters = function () { return [
12
+ { type: FormBuilder },
13
+ { type: SignUpService },
14
+ { type: LoggerService },
15
+ { type: TranslateService }
16
+ ]; };
17
+ RegistrationFormComponent.decorators = [
18
+ { type: Component, args: [{
19
+ selector: 'nc-registration-form',
20
+ template: "<div fxLayout=\"column\" fxLayoutGap=\"24px\" *ngIf=\"tokenVerified && (loadingToken | async) === false\">\n <form [formGroup]=\"rootFormGroup\" (ngSubmit)=\"onSubmit()\" class=\"full-width\">\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">email</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.register.email' | translate}}\" disabled [value]=\"userEmail\" autocomplete=\"username\">\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">account_circle</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.register.name' | translate }}\" formControlName=\"name\" required autocomplete=\"given-name\">\n <mat-error *ngIf=\"!isFieldValid('name')\">{{getErrorMessage('name')}}</mat-error>\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">account_circle_outline</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.register.surname' | translate }}\" formControlName=\"surname\" required autocomplete=\"family-name\">\n <mat-error *ngIf=\"!isFieldValid('surname')\">{{getErrorMessage('surname')}}</mat-error>\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">vpn_key</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.login.enterPass' | translate }}\"\n [type]=\"hidePassword ? 'password' : 'text'\"\n formControlName=\"password\" required autocomplete=\"new-password\">\n <button mat-icon-button matSuffix type=\"button\"\n (click)=\"hidePassword = !hidePassword\"\n (keypress)=\"false\"\n [attr.aria-label]=\"'Hide password'\"\n [attr.aria-pressed]=\"hidePassword\">\n <mat-icon\n [color]=\"hidePassword ? undefined : 'accent'\">{{hidePassword ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"!isFieldValid('password')\">{{getErrorMessage('password')}}</mat-error>\n </mat-form-field>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" fxLayoutGap=\"16px\">\n <mat-icon color=\"primary\">vpn_key</mat-icon>\n <mat-form-field fxFlex=\"100\">\n <input matInput placeholder=\"{{ 'forms.register.repeatPass' | translate }}\"\n [type]=\"hideRepeatPassword ? 'password' : 'text'\"\n formControlName=\"confirmPassword\" required autocomplete=\"new-password\">\n <button mat-icon-button matSuffix type=\"button\"\n (click)=\"hideRepeatPassword = !hideRepeatPassword\"\n (keypress)=\"false\"\n [attr.aria-label]=\"'Hide password'\"\n [attr.aria-pressed]=\"hideRepeatPassword\">\n <mat-icon\n [color]=\"hideRepeatPassword ? undefined : 'accent'\">{{hideRepeatPassword ? 'visibility_off' : 'visibility'}}</mat-icon>\n </button>\n <mat-error *ngIf=\"!isFieldValid('confirmPassword')\">{{getErrorMessage('confirmPassword')}}</mat-error>\n </mat-form-field>\n </div>\n <nc-legal-notice *ngIf=\"displayLegalNotice\" [buttonName]=\"'forms.register.register'\"></nc-legal-notice>\n <div fxLayout=\"row\" fxLayoutAlign=\"end\" fxLayoutAlign.xs=\"center\" class=\"margin-top-4\">\n <button fxFlexOffset=\"8px\" fxFlexOffset.xs=\"0\" mat-raised-button class=\"register-button\" color=\"primary\">\n {{ 'forms.register.register' | translate }}\n </button>\n </div>\n </form>\n</div>\n\n<div *ngIf=\"!tokenVerified && (loadingToken | async) === false\" fxLayout=\"column\" fxLayoutAlign=\"center center\" fxFlex>\n <mat-icon color=\"accent\">unpublished</mat-icon>\n <span class=\"font-size-20\">{{ 'forms.register.notVerified' | translate}}</span>\n</div>\n\n<div *ngIf=\"loadingToken | async\">\n <mat-progress-spinner></mat-progress-spinner>\n</div>\n",
21
+ styles: [".font-size-20{font-size:20px}.margin-top-4{margin-top:4px}.full-width{width:100%}"]
22
+ },] }
23
+ ];
24
+ RegistrationFormComponent.ctorParameters = function () { return [
25
+ { type: FormBuilder },
26
+ { type: SignUpService },
27
+ { type: LoggerService },
28
+ { type: TranslateService }
29
+ ]; };
30
+ return RegistrationFormComponent;
31
+ }(AbstractRegistrationFormComponent));
32
+ export { RegistrationFormComponent };
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVnaXN0cmF0aW9uLWZvcm0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9mb3Jtcy9yZWdpc3RyYXRpb24vcmVnaXN0cmF0aW9uLWZvcm0uY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3hDLE9BQU8sRUFBQyxXQUFXLEVBQUMsTUFBTSxnQkFBZ0IsQ0FBQztBQUMzQyxPQUFPLEVBQUMsaUNBQWlDLEVBQUUsYUFBYSxFQUFFLGFBQWEsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ3pHLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRXJEO0lBSytDLDZDQUFpQztJQUM1RSxtQ0FBWSxXQUF3QixFQUN4QixhQUE0QixFQUM1QixHQUFrQixFQUNsQixTQUEyQjtlQUNuQyxrQkFBTSxXQUFXLEVBQUUsYUFBYSxFQUFFLEdBQUcsRUFBRSxTQUFTLENBQUM7SUFDckQsQ0FBQzs7Z0JBTHdCLFdBQVc7Z0JBQ1QsYUFBYTtnQkFDdkIsYUFBYTtnQkFDUCxnQkFBZ0I7OztnQkFUMUMsU0FBUyxTQUFDO29CQUNQLFFBQVEsRUFBRSxzQkFBc0I7b0JBQ2hDLG1tSkFBaUQ7O2lCQUVwRDs7O2dCQVJPLFdBQVc7Z0JBQ3VDLGFBQWE7Z0JBQTVCLGFBQWE7Z0JBQ2hELGdCQUFnQjs7SUFjeEIsZ0NBQUM7Q0FBQSxBQVpELENBSytDLGlDQUFpQyxHQU8vRTtTQVBZLHlCQUF5QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7Rm9ybUJ1aWxkZXJ9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7QWJzdHJhY3RSZWdpc3RyYXRpb25Gb3JtQ29tcG9uZW50LCBMb2dnZXJTZXJ2aWNlLCBTaWduVXBTZXJ2aWNlfSBmcm9tICdAbmV0Z3JpZi9jb21wb25lbnRzLWNvcmUnO1xuaW1wb3J0IHtUcmFuc2xhdGVTZXJ2aWNlfSBmcm9tICdAbmd4LXRyYW5zbGF0ZS9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1yZWdpc3RyYXRpb24tZm9ybScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3JlZ2lzdHJhdGlvbi1mb3JtLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9yZWdpc3RyYXRpb24tZm9ybS5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFJlZ2lzdHJhdGlvbkZvcm1Db21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdFJlZ2lzdHJhdGlvbkZvcm1Db21wb25lbnQge1xuICAgIGNvbnN0cnVjdG9yKGZvcm1CdWlsZGVyOiBGb3JtQnVpbGRlcixcbiAgICAgICAgICAgICAgICBzaWdudXBTZXJ2aWNlOiBTaWduVXBTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIGxvZzogTG9nZ2VyU2VydmljZSxcbiAgICAgICAgICAgICAgICB0cmFuc2xhdGU6IFRyYW5zbGF0ZVNlcnZpY2UpIHtcbiAgICAgICAgc3VwZXIoZm9ybUJ1aWxkZXIsIHNpZ251cFNlcnZpY2UsIGxvZywgdHJhbnNsYXRlKTtcbiAgICB9XG59XG4iXX0=
@@ -0,0 +1,28 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { FlexLayoutModule } from '@angular/flex-layout';
4
+ import { ReactiveFormsModule } from '@angular/forms';
5
+ import { RegistrationFormComponent } from './registration-form.component';
6
+ import { MaterialModule, TranslateLibModule } from '@netgrif/components-core';
7
+ import { LegalNoticeModule } from '../../legal/legal-notice/legal-notice.module';
8
+ var RegistrationFormComponentModule = /** @class */ (function () {
9
+ function RegistrationFormComponentModule() {
10
+ }
11
+ RegistrationFormComponentModule.decorators = [
12
+ { type: NgModule, args: [{
13
+ declarations: [RegistrationFormComponent],
14
+ exports: [RegistrationFormComponent],
15
+ imports: [
16
+ CommonModule,
17
+ MaterialModule,
18
+ FlexLayoutModule,
19
+ ReactiveFormsModule,
20
+ TranslateLibModule,
21
+ LegalNoticeModule
22
+ ]
23
+ },] }
24
+ ];
25
+ return RegistrationFormComponentModule;
26
+ }());
27
+ export { RegistrationFormComponentModule };
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVnaXN0cmF0aW9uLWZvcm0ubW9kdWxlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9mb3Jtcy9yZWdpc3RyYXRpb24vcmVnaXN0cmF0aW9uLWZvcm0ubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDdkMsT0FBTyxFQUFDLFlBQVksRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQzdDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ3RELE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLGdCQUFnQixDQUFDO0FBQ25ELE9BQU8sRUFBQyx5QkFBeUIsRUFBQyxNQUFNLCtCQUErQixDQUFDO0FBQ3hFLE9BQU8sRUFBQyxjQUFjLEVBQUUsa0JBQWtCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUM1RSxPQUFPLEVBQUMsaUJBQWlCLEVBQUMsTUFBTSw4Q0FBOEMsQ0FBQztBQUUvRTtJQUFBO0lBYUEsQ0FBQzs7Z0JBYkEsUUFBUSxTQUFDO29CQUNOLFlBQVksRUFBRSxDQUFDLHlCQUF5QixDQUFDO29CQUN6QyxPQUFPLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztvQkFDcEMsT0FBTyxFQUFFO3dCQUNMLFlBQVk7d0JBQ1osY0FBYzt3QkFDZCxnQkFBZ0I7d0JBQ2hCLG1CQUFtQjt3QkFDbkIsa0JBQWtCO3dCQUNsQixpQkFBaUI7cUJBQ3BCO2lCQUNKOztJQUVELHNDQUFDO0NBQUEsQUFiRCxJQWFDO1NBRFksK0JBQStCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7RmxleExheW91dE1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvZmxleC1sYXlvdXQnO1xuaW1wb3J0IHtSZWFjdGl2ZUZvcm1zTW9kdWxlfSBmcm9tICdAYW5ndWxhci9mb3Jtcyc7XG5pbXBvcnQge1JlZ2lzdHJhdGlvbkZvcm1Db21wb25lbnR9IGZyb20gJy4vcmVnaXN0cmF0aW9uLWZvcm0uY29tcG9uZW50JztcbmltcG9ydCB7TWF0ZXJpYWxNb2R1bGUsIFRyYW5zbGF0ZUxpYk1vZHVsZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcbmltcG9ydCB7TGVnYWxOb3RpY2VNb2R1bGV9IGZyb20gJy4uLy4uL2xlZ2FsL2xlZ2FsLW5vdGljZS9sZWdhbC1ub3RpY2UubW9kdWxlJztcblxuQE5nTW9kdWxlKHtcbiAgICBkZWNsYXJhdGlvbnM6IFtSZWdpc3RyYXRpb25Gb3JtQ29tcG9uZW50XSxcbiAgICBleHBvcnRzOiBbUmVnaXN0cmF0aW9uRm9ybUNvbXBvbmVudF0sXG4gICAgaW1wb3J0czogW1xuICAgICAgICBDb21tb25Nb2R1bGUsXG4gICAgICAgIE1hdGVyaWFsTW9kdWxlLFxuICAgICAgICBGbGV4TGF5b3V0TW9kdWxlLFxuICAgICAgICBSZWFjdGl2ZUZvcm1zTW9kdWxlLFxuICAgICAgICBUcmFuc2xhdGVMaWJNb2R1bGUsXG4gICAgICAgIExlZ2FsTm90aWNlTW9kdWxlXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBSZWdpc3RyYXRpb25Gb3JtQ29tcG9uZW50TW9kdWxlIHtcbn1cbiJdfQ==
@@ -0,0 +1,31 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { TranslateService } from '@ngx-translate/core';
4
+ import { AbstractEditModeComponent, LoggerService } from '@netgrif/components-core';
5
+ var EditModeComponent = /** @class */ (function (_super) {
6
+ __extends(EditModeComponent, _super);
7
+ function EditModeComponent(_translate, loggerService) {
8
+ var _this = _super.call(this, _translate, loggerService) || this;
9
+ _this._translate = _translate;
10
+ _this.loggerService = loggerService;
11
+ return _this;
12
+ }
13
+ EditModeComponent.ctorParameters = function () { return [
14
+ { type: TranslateService },
15
+ { type: LoggerService }
16
+ ]; };
17
+ EditModeComponent.decorators = [
18
+ { type: Component, args: [{
19
+ selector: 'nc-edit-mode',
20
+ template: "<div fxLayout=\"row\" fxFlex=\"100\" fxLayoutAlign=\"start center\">\n <mat-form-field *ngFor=\"let header of this.headerService.selectedHeaders$ | async; let i = index\" fxLayout=\"row\"\n fxLayoutAlign=\" center\" fxFlex [ngStyle]=\"{'min-width': getMinWidth()}\"\n [fxHide.lt-xl]=\"i >= 4 && this.headerService.responsiveHeaders\"\n [fxHide.lt-lg]=\"i >= 3 && this.headerService.responsiveHeaders\"\n [fxHide.lt-md]=\"i >= 2 && this.headerService.responsiveHeaders\"\n [fxHide.lt-sm]=\"i >= 1 && this.headerService.responsiveHeaders\">\n <mat-label *ngIf=\"!header\">{{ 'headers.newHeader' | translate}}</mat-label>\n <input type=\"text\"\n aria-label=\"Autocomplete\"\n matInput\n [formControl]=\"formControls[i]\"\n [matAutocomplete]=\"auto\">\n <mat-autocomplete autoActiveFirstOption #auto=\"matAutocomplete\" [displayWith]=\"renderSelection\"\n (optionSelected)=\"headerColumnSelected(i, $event.option.value)\" fxFlex>\n <mat-optgroup *ngFor=\"let group of this.filterOptions[i] | async\" [label]=\"group.groupTitle\">\n <mat-option *ngFor=\"let field of group.fields\" [value]=\"field\">\n {{field.title | translate}}\n </mat-option>\n </mat-optgroup>\n </mat-autocomplete>\n </mat-form-field>\n</div>\n",
21
+ styles: [""]
22
+ },] }
23
+ ];
24
+ EditModeComponent.ctorParameters = function () { return [
25
+ { type: TranslateService },
26
+ { type: LoggerService }
27
+ ]; };
28
+ return EditModeComponent;
29
+ }(AbstractEditModeComponent));
30
+ export { EditModeComponent };
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZWRpdC1tb2RlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvaGVhZGVyL2hlYWRlci1tb2Rlcy9lZGl0LW1vZGUvZWRpdC1tb2RlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUNyRCxPQUFPLEVBQUMseUJBQXlCLEVBQUUsYUFBYSxFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFFbEY7SUFLdUMscUNBQXlCO0lBQzVELDJCQUFzQixVQUE0QixFQUM1QixhQUE0QjtRQURsRCxZQUVJLGtCQUFNLFVBQVUsRUFBRSxhQUFhLENBQUMsU0FDbkM7UUFIcUIsZ0JBQVUsR0FBVixVQUFVLENBQWtCO1FBQzVCLG1CQUFhLEdBQWIsYUFBYSxDQUFlOztJQUVsRCxDQUFDOztnQkFIaUMsZ0JBQWdCO2dCQUNiLGFBQWE7OztnQkFQckQsU0FBUyxTQUFDO29CQUNQLFFBQVEsRUFBRSxjQUFjO29CQUN4QixpK0NBQXlDOztpQkFFNUM7OztnQkFQTyxnQkFBZ0I7Z0JBQ1csYUFBYTs7SUFZaEQsd0JBQUM7Q0FBQSxBQVZELENBS3VDLHlCQUF5QixHQUsvRDtTQUxZLGlCQUFpQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7VHJhbnNsYXRlU2VydmljZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0RWRpdE1vZGVDb21wb25lbnQsIExvZ2dlclNlcnZpY2V9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtZWRpdC1tb2RlJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vZWRpdC1tb2RlLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9lZGl0LW1vZGUuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBFZGl0TW9kZUNvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0RWRpdE1vZGVDb21wb25lbnQge1xuICAgIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBfdHJhbnNsYXRlOiBUcmFuc2xhdGVTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHByb3RlY3RlZCBsb2dnZXJTZXJ2aWNlOiBMb2dnZXJTZXJ2aWNlKSB7XG4gICAgICAgIHN1cGVyKF90cmFuc2xhdGUsIGxvZ2dlclNlcnZpY2UpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,20 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { AbstractLoadingModeComponent } from '@netgrif/components-core';
4
+ var LoadingModeComponent = /** @class */ (function (_super) {
5
+ __extends(LoadingModeComponent, _super);
6
+ function LoadingModeComponent() {
7
+ return _super.call(this) || this;
8
+ }
9
+ LoadingModeComponent.decorators = [
10
+ { type: Component, args: [{
11
+ selector: 'nc-loading-mode',
12
+ template: "<div fxFlex=\"100\" fxLayout=\"row\" fxLayoutAlign=\" center\">\n <div *ngFor=\"let header of headerService.headerState.selectedHeaders$ | async; let i = index\" fxFlex\n [fxHide.lt-xl]=\"i >= 4\"\n [fxHide.lt-lg]=\"i >= 3\"\n [fxHide.lt-md]=\"i >= 2\"\n [fxHide.lt-sm]=\"i >= 1\" [ngStyle]=\"{'min-width': getMinWidth()}\">\n <div class=\"phl-item\">\n <div class=\"phl-row\" fxLayoutAlign=\"start center\">\n <div class=\"phl-col\">\n </div>\n </div>\n </div>\n </div>\n</div>\n",
13
+ styles: [".phl-row{width:100%;flex-wrap:wrap}.phl-col{height:20px;flex:0 0 45%;background-color:#ced4da;border-radius:4px}.phl-item{position:relative;display:flex;flex-wrap:wrap;overflow:hidden;background-color:#fff}.phl-item::after{position:absolute;top:0;right:0;bottom:0;left:0;transform:translateX(-100%);background-image:linear-gradient(90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.2) 20%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0));-webkit-animation:1s infinite shimmer;animation:1s infinite shimmer;content:\"\"}@-webkit-keyframes shimmer{100%{transform:translateX(100%)}}@keyframes shimmer{100%{transform:translateX(100%)}}.phl-item,.phl-item *,.phl-item::after,.phl-item::before{box-sizing:border-box}"]
14
+ },] }
15
+ ];
16
+ LoadingModeComponent.ctorParameters = function () { return []; };
17
+ return LoadingModeComponent;
18
+ }(AbstractLoadingModeComponent));
19
+ export { LoadingModeComponent };
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGluZy1tb2RlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvaGVhZGVyL2hlYWRlci1tb2Rlcy9sb2FkaW5nLW1vZGUvbG9hZGluZy1tb2RlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUMsNEJBQTRCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUV0RTtJQUswQyx3Q0FBNEI7SUFDbEU7ZUFDSSxpQkFBTztJQUNYLENBQUM7O2dCQVJKLFNBQVMsU0FBQztvQkFDUCxRQUFRLEVBQUUsaUJBQWlCO29CQUMzQixvbEJBQTRDOztpQkFFL0M7OztJQUtELDJCQUFDO0NBQUEsQUFURCxDQUswQyw0QkFBNEIsR0FJckU7U0FKWSxvQkFBb0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0TG9hZGluZ01vZGVDb21wb25lbnR9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtbG9hZGluZy1tb2RlJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vbG9hZGluZy1tb2RlLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9sb2FkaW5nLW1vZGUuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBMb2FkaW5nTW9kZUNvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0TG9hZGluZ01vZGVDb21wb25lbnQge1xuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlcigpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,39 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { MAT_DATE_FORMATS } from '@angular/material/core';
4
+ import { AbstractSearchModeComponent, DATE_FORMAT, DATE_TIME_FORMAT, SideMenuService } from '@netgrif/components-core';
5
+ import { UserAssignComponent } from '../../../side-menu/content-components/user-assign/user-assign.component';
6
+ import { NGX_MAT_DATE_FORMATS } from '@angular-material-components/datetime-picker';
7
+ var ɵ0 = DATE_FORMAT, ɵ1 = DATE_TIME_FORMAT;
8
+ var SearchModeComponent = /** @class */ (function (_super) {
9
+ __extends(SearchModeComponent, _super);
10
+ function SearchModeComponent(_sideMenuService) {
11
+ var _this = _super.call(this, _sideMenuService) || this;
12
+ _this._sideMenuService = _sideMenuService;
13
+ return _this;
14
+ }
15
+ SearchModeComponent.prototype.selectUser = function (column) {
16
+ this.selectAbstractUser(column, UserAssignComponent);
17
+ };
18
+ SearchModeComponent.ctorParameters = function () { return [
19
+ { type: SideMenuService }
20
+ ]; };
21
+ SearchModeComponent.decorators = [
22
+ { type: Component, args: [{
23
+ selector: 'nc-search-mode',
24
+ template: "<div fxFlex=\"100\" fxLayout=\"row\" fxLayoutAlign=\" center\">\n <div *ngFor=\"let header of this.headerService.selectedHeaders$ | async; let i = index\"\n [fxHide.lt-xl]=\"i >= 4 && this.headerService.responsiveHeaders\"\n [fxHide.lt-lg]=\"i >= 3 && this.headerService.responsiveHeaders\"\n [fxHide.lt-md]=\"i >= 2 && this.headerService.responsiveHeaders\"\n [fxHide.lt-sm]=\"i >= 1 && this.headerService.responsiveHeaders\" fxFlex [ngStyle]=\"{'min-width': getMinWidth()}\">\n <div\n *ngIf=\"!!header && header.fieldType !== 'button'; then thenBlock else elseBlock\"\n fxFlex></div>\n <ng-template #thenBlock>\n <div fxLayout=\"row\" fxLayoutAlign=\" center\" fxFlex [ngSwitch]=\"header.fieldType\">\n <mat-form-field fxLayout=\"row\" fxLayoutAlign=\" center\" fxFlex *ngSwitchCase=\"'date'\">\n <mat-label>{{header.title | translate}}</mat-label>\n <input matInput autocomplete=\"off\"\n [matDatepicker]=\"datepicker\"\n [formControl]=\"formControls[i]\"\n [placeholder]=\"'headers.date' | translate\"\n (click)=\"datepicker.open()\"\n (keydown.enter)=\"datepicker.close()\">\n <mat-datepicker-toggle matPrefix [for]=\"datepicker\"></mat-datepicker-toggle>\n <mat-datepicker #datepicker></mat-datepicker>\n </mat-form-field>\n <mat-form-field fxLayout=\"row\" fxLayoutAlign=\" center\" fxFlex *ngSwitchCase=\"'dateTime'\">\n <mat-label>{{header.title | translate}}</mat-label>\n <input matInput autocomplete=\"off\"\n [ngxMatDatetimePicker]=\"datetimepicker\"\n [formControl]=\"formControls[i]\"\n [placeholder]=\"'headers.dateTime' | translate\"\n (click)=\"datetimepicker.open()\"\n (keydown.enter)=\"datetimepicker.close()\">\n <mat-datepicker-toggle matPrefix [for]=\"datetimepicker\"></mat-datepicker-toggle>\n <ngx-mat-datetime-picker #datetimepicker\n [showSpinners]=\"true\"\n [showSeconds]=\"false\"\n [stepHour]=\"1\"\n [stepMinute]=\"5\"\n [color]=\"'primary'\"\n [enableMeridian]=\"false\">\n </ngx-mat-datetime-picker>\n </mat-form-field>\n <mat-form-field fxLayout=\"row\" fxLayoutAlign=\" center\" fxFlex *ngSwitchCase=\"'number'\">\n <mat-label>{{header.title | translate}}</mat-label>\n <input matInput type=\"number\" [formControl]=\"formControls[i]\">\n </mat-form-field>\n <div fxLayout=\"row\" fxLayoutAlign=\"center center\" *ngSwitchCase=\"'boolean'\">\n <mat-slide-toggle color=\"primary\" [formControl]=\"formControls[i]\">\n {{header.title | translate}}\n </mat-slide-toggle>\n </div>\n <div fxLayout=\"column\" fxLayoutAlign=\"center start\" *ngSwitchCase=\"'user'\">\n <mat-label>{{header.title | translate}}</mat-label>\n <button mat-stroked-button\n color=\"primary\"\n (click)=\"selectUser(i)\">\n <mat-icon>person_search</mat-icon>\n {{formControls[i].value ? formControls[i].value.fullName : ('headers.selectUser' | translate)}}\n </button>\n </div>\n <mat-form-field fxLayout=\"row\" fxLayoutAlign=\" center\" fxFlex *ngSwitchDefault>\n <mat-label>{{header.title | translate}}</mat-label>\n <input matInput [formControl]=\"formControls[i]\">\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-template #elseBlock>\n <div fxFlex></div>\n </ng-template>\n </div>\n</div>\n",
25
+ providers: [
26
+ { provide: MAT_DATE_FORMATS, useValue: ɵ0 },
27
+ { provide: NGX_MAT_DATE_FORMATS, useValue: ɵ1 }
28
+ ],
29
+ styles: [""]
30
+ },] }
31
+ ];
32
+ SearchModeComponent.ctorParameters = function () { return [
33
+ { type: SideMenuService }
34
+ ]; };
35
+ return SearchModeComponent;
36
+ }(AbstractSearchModeComponent));
37
+ export { SearchModeComponent };
38
+ export { ɵ0, ɵ1 };
39
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2VhcmNoLW1vZGUuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9oZWFkZXIvaGVhZGVyLW1vZGVzL3NlYXJjaC1tb2RlL3NlYXJjaC1tb2RlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSx3QkFBd0IsQ0FBQztBQUN4RCxPQUFPLEVBQUMsMkJBQTJCLEVBQUUsV0FBVyxFQUFFLGdCQUFnQixFQUFFLGVBQWUsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ3JILE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLHlFQUF5RSxDQUFDO0FBQzVHLE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLDhDQUE4QyxDQUFDO1NBT3BDLFdBQVcsT0FDUCxnQkFBZ0I7QUFObEU7SUFTeUMsdUNBQTJCO0lBRWhFLDZCQUFzQixnQkFBaUM7UUFBdkQsWUFDSSxrQkFBTSxnQkFBZ0IsQ0FBQyxTQUMxQjtRQUZxQixzQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWlCOztJQUV2RCxDQUFDO0lBRU0sd0NBQVUsR0FBakIsVUFBa0IsTUFBYztRQUM1QixJQUFJLENBQUMsa0JBQWtCLENBQUMsTUFBTSxFQUFFLG1CQUFtQixDQUFDLENBQUM7SUFDekQsQ0FBQzs7Z0JBTnVDLGVBQWU7OztnQkFYMUQsU0FBUyxTQUFDO29CQUNQLFFBQVEsRUFBRSxnQkFBZ0I7b0JBQzFCLG8wSUFBMkM7b0JBRTNDLFNBQVMsRUFBRTt3QkFDUCxFQUFDLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxRQUFRLElBQWEsRUFBQzt3QkFDbEQsRUFBQyxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsUUFBUSxJQUFrQixFQUFDO3FCQUM5RDs7aUJBQ0o7OztnQkFabUUsZUFBZTs7SUFzQm5GLDBCQUFDO0NBQUEsQUFsQkQsQ0FTeUMsMkJBQTJCLEdBU25FO1NBVFksbUJBQW1CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtNQVRfREFURV9GT1JNQVRTfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RTZWFyY2hNb2RlQ29tcG9uZW50LCBEQVRFX0ZPUk1BVCwgREFURV9USU1FX0ZPUk1BVCwgU2lkZU1lbnVTZXJ2aWNlfSBmcm9tICdAbmV0Z3JpZi9jb21wb25lbnRzLWNvcmUnO1xuaW1wb3J0IHtVc2VyQXNzaWduQ29tcG9uZW50fSBmcm9tICcuLi8uLi8uLi9zaWRlLW1lbnUvY29udGVudC1jb21wb25lbnRzL3VzZXItYXNzaWduL3VzZXItYXNzaWduLmNvbXBvbmVudCc7XG5pbXBvcnQge05HWF9NQVRfREFURV9GT1JNQVRTfSBmcm9tICdAYW5ndWxhci1tYXRlcmlhbC1jb21wb25lbnRzL2RhdGV0aW1lLXBpY2tlcic7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtc2VhcmNoLW1vZGUnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9zZWFyY2gtbW9kZS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vc2VhcmNoLW1vZGUuY29tcG9uZW50LnNjc3MnXSxcbiAgICBwcm92aWRlcnM6IFtcbiAgICAgICAge3Byb3ZpZGU6IE1BVF9EQVRFX0ZPUk1BVFMsIHVzZVZhbHVlOiBEQVRFX0ZPUk1BVH0sXG4gICAgICAgIHtwcm92aWRlOiBOR1hfTUFUX0RBVEVfRk9STUFUUywgdXNlVmFsdWU6IERBVEVfVElNRV9GT1JNQVR9XG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBTZWFyY2hNb2RlQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RTZWFyY2hNb2RlQ29tcG9uZW50IHtcblxuICAgIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBfc2lkZU1lbnVTZXJ2aWNlOiBTaWRlTWVudVNlcnZpY2UpIHtcbiAgICAgICAgc3VwZXIoX3NpZGVNZW51U2VydmljZSk7XG4gICAgfVxuXG4gICAgcHVibGljIHNlbGVjdFVzZXIoY29sdW1uOiBudW1iZXIpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5zZWxlY3RBYnN0cmFjdFVzZXIoY29sdW1uLCBVc2VyQXNzaWduQ29tcG9uZW50KTtcbiAgICB9XG59XG4iXX0=
@@ -0,0 +1,20 @@
1
+ import { __extends } from "tslib";
2
+ import { Component } from '@angular/core';
3
+ import { AbstractSortModeComponent } from '@netgrif/components-core';
4
+ var SortModeComponent = /** @class */ (function (_super) {
5
+ __extends(SortModeComponent, _super);
6
+ function SortModeComponent() {
7
+ return _super.call(this) || this;
8
+ }
9
+ SortModeComponent.decorators = [
10
+ { type: Component, args: [{
11
+ selector: 'nc-sort-mode',
12
+ template: "<div matSort (matSortChange)=\"sortHeaderChanged($event)\" fxFlex=\"100\" fxLayout=\"row\" fxLayoutAlign=\" center\">\n <div [ngStyle]=\"{'min-width': getMinWidth()}\" *ngFor=\"let header of headerService.headerState.selectedHeaders$ | async; let i = index\" fxFlex\n [fxHide.lt-xl]=\"i >= 4 && this.headerService.responsiveHeaders\"\n [fxHide.lt-lg]=\"i >= 3 && this.headerService.responsiveHeaders\"\n [fxHide.lt-md]=\"i >= 2 && this.headerService.responsiveHeaders\"\n [fxHide.lt-sm]=\"i >= 1 && this.headerService.responsiveHeaders\">\n <div *ngIf=\"!!header; then thenBlock else elseBlock\" fxFlex></div>\n <ng-template #thenBlock>\n <span fxFlex\n mat-sort-header=\"{{i}}-{{header.uniqueId}}\">\n {{ header.title | translate}}\n </span>\n </ng-template>\n <ng-template #elseBlock>\n <div fxFlex></div>\n </ng-template>\n </div>\n</div>\n",
13
+ styles: [""]
14
+ },] }
15
+ ];
16
+ SortModeComponent.ctorParameters = function () { return []; };
17
+ return SortModeComponent;
18
+ }(AbstractSortModeComponent));
19
+ export { SortModeComponent };
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic29ydC1tb2RlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvaGVhZGVyL2hlYWRlci1tb2Rlcy9zb3J0LW1vZGUvc29ydC1tb2RlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUMseUJBQXlCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUVuRTtJQUt1QyxxQ0FBeUI7SUFDNUQ7ZUFDSSxpQkFBTztJQUNYLENBQUM7O2dCQVJKLFNBQVMsU0FBQztvQkFDUCxRQUFRLEVBQUUsY0FBYztvQkFDeEIsNjlCQUF5Qzs7aUJBRTVDOzs7SUFLRCx3QkFBQztDQUFBLEFBVEQsQ0FLdUMseUJBQXlCLEdBSS9EO1NBSlksaUJBQWlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdFNvcnRNb2RlQ29tcG9uZW50fSBmcm9tICdAbmV0Z3JpZi9jb21wb25lbnRzLWNvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ25jLXNvcnQtbW9kZScsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3NvcnQtbW9kZS5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vc29ydC1tb2RlLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgU29ydE1vZGVDb21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdFNvcnRNb2RlQ29tcG9uZW50IHtcbiAgICBjb25zdHJ1Y3RvcigpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICB9XG59XG5cblxuIl19