@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,40 @@
1
+ import { Component } from '@angular/core';
2
+ import { animate, state, style, transition, trigger } from '@angular/animations';
3
+ import { AbstractNavigationRailComponent } from '@netgrif/components-core';
4
+ const railAnimation = trigger('transform', [
5
+ state('expand', style({
6
+ width: '184px',
7
+ 'min-width': '184px',
8
+ padding: '8px'
9
+ })),
10
+ state('collapse', style({
11
+ width: '48px',
12
+ 'min-width': '48px',
13
+ padding: '4px'
14
+ })),
15
+ transition('expand <=> collapse', animate('400ms cubic-bezier(0.25, 0.8, 0.25, 1)'))
16
+ ]);
17
+ const railContentAnimation = trigger('transformContent', [
18
+ state('shrink', style({
19
+ 'margin-left': '185px'
20
+ })),
21
+ state('grow', style({
22
+ 'margin-left': '49px'
23
+ })),
24
+ transition('shrink <=> grow', animate('400ms cubic-bezier(0.25, 0.8, 0.25, 1)'))
25
+ ]);
26
+ export class NavigationRailComponent extends AbstractNavigationRailComponent {
27
+ constructor() {
28
+ super();
29
+ }
30
+ }
31
+ NavigationRailComponent.decorators = [
32
+ { type: Component, args: [{
33
+ selector: 'nc-navigation-rail',
34
+ template: "<mat-sidenav-container class=\"drawer-container\">\n <mat-sidenav #sideRail mode=\"side\" opened=\"true\" position=\"start\" disableClose=\"true\"\n class=\"drawer-content mat-elevation-z16\"\n (mouseenter)=\"expandOnHover && open()\"\n (mouseleave)=\"expandOnHover && close()\">\n\n <div [@transform]=\"expanded ? 'expand' : 'collapse'\">\n\n <div fxLayout=\"column\" fxLayoutAlign=\"start start\" fxFlex>\n <div fxLayout=\"row\">\n <mat-icon>account_circle</mat-icon>\n <span *ngIf=\"expanded\" class=\"margin-left-default\">User</span>\n </div>\n <div fxLayout=\"row\">\n <mat-icon>assignment</mat-icon>\n <span *ngIf=\"expanded\" class=\"margin-left-default\">Report</span>\n </div>\n <div fxLayout=\"row\">\n <mat-icon>bug_report</mat-icon>\n <span *ngIf=\"expanded\" class=\"margin-left-default\">Bugs</span>\n </div>\n <div fxLayout=\"row\">\n <mat-icon>fingerprint</mat-icon>\n <span *ngIf=\"expanded\" class=\"margin-left-default\">Security</span>\n </div>\n </div>\n\n </div>\n </mat-sidenav>\n\n <mat-sidenav-content [@transformContent]=\"expanded ? 'shrink' : 'grow'\">\n <ng-content></ng-content>\n </mat-sidenav-content>\n\n</mat-sidenav-container>\n",
35
+ animations: [railAnimation, railContentAnimation],
36
+ styles: [".margin-left-default{margin-left:8px}"]
37
+ },] }
38
+ ];
39
+ NavigationRailComponent.ctorParameters = () => [];
40
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2aWdhdGlvbi1yYWlsLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvbmF2aWdhdGlvbi9uYXZpZ2F0aW9uLXJhaWwvbmF2aWdhdGlvbi1yYWlsLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3hDLE9BQU8sRUFBQyxPQUFPLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUUsT0FBTyxFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDL0UsT0FBTyxFQUFDLCtCQUErQixFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFFekUsTUFBTSxhQUFhLEdBQUcsT0FBTyxDQUFDLFdBQVcsRUFBRTtJQUN2QyxLQUFLLENBQUMsUUFBUSxFQUFFLEtBQUssQ0FBQztRQUNsQixLQUFLLEVBQUUsT0FBTztRQUNkLFdBQVcsRUFBRSxPQUFPO1FBQ3BCLE9BQU8sRUFBRSxLQUFLO0tBQ2pCLENBQUMsQ0FBQztJQUNILEtBQUssQ0FBQyxVQUFVLEVBQUUsS0FBSyxDQUFDO1FBQ3BCLEtBQUssRUFBRSxNQUFNO1FBQ2IsV0FBVyxFQUFFLE1BQU07UUFDbkIsT0FBTyxFQUFFLEtBQUs7S0FDakIsQ0FBQyxDQUFDO0lBQ0gsVUFBVSxDQUFDLHFCQUFxQixFQUFFLE9BQU8sQ0FBQyx3Q0FBd0MsQ0FBQyxDQUFDO0NBQ3ZGLENBQUMsQ0FBQztBQUVILE1BQU0sb0JBQW9CLEdBQUcsT0FBTyxDQUFDLGtCQUFrQixFQUFFO0lBQ3JELEtBQUssQ0FBQyxRQUFRLEVBQUUsS0FBSyxDQUFDO1FBQ2xCLGFBQWEsRUFBRSxPQUFPO0tBQ3pCLENBQUMsQ0FBQztJQUNILEtBQUssQ0FBQyxNQUFNLEVBQUUsS0FBSyxDQUFDO1FBQ2hCLGFBQWEsRUFBRSxNQUFNO0tBQ3hCLENBQUMsQ0FBQztJQUNILFVBQVUsQ0FBQyxpQkFBaUIsRUFBRSxPQUFPLENBQUMsd0NBQXdDLENBQUMsQ0FBQztDQUNuRixDQUFDLENBQUM7QUFRSCxNQUFNLE9BQU8sdUJBQXdCLFNBQVEsK0JBQStCO0lBQ3hFO1FBQ0ksS0FBSyxFQUFFLENBQUM7SUFDWixDQUFDOzs7WUFUSixTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLG9CQUFvQjtnQkFDOUIsK2dEQUErQztnQkFFL0MsVUFBVSxFQUFFLENBQUMsYUFBYSxFQUFFLG9CQUFvQixDQUFDOzthQUNwRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50fSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7YW5pbWF0ZSwgc3RhdGUsIHN0eWxlLCB0cmFuc2l0aW9uLCB0cmlnZ2VyfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcbmltcG9ydCB7QWJzdHJhY3ROYXZpZ2F0aW9uUmFpbENvbXBvbmVudH0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcblxuY29uc3QgcmFpbEFuaW1hdGlvbiA9IHRyaWdnZXIoJ3RyYW5zZm9ybScsIFtcbiAgICBzdGF0ZSgnZXhwYW5kJywgc3R5bGUoe1xuICAgICAgICB3aWR0aDogJzE4NHB4JyxcbiAgICAgICAgJ21pbi13aWR0aCc6ICcxODRweCcsXG4gICAgICAgIHBhZGRpbmc6ICc4cHgnXG4gICAgfSkpLFxuICAgIHN0YXRlKCdjb2xsYXBzZScsIHN0eWxlKHtcbiAgICAgICAgd2lkdGg6ICc0OHB4JyxcbiAgICAgICAgJ21pbi13aWR0aCc6ICc0OHB4JyxcbiAgICAgICAgcGFkZGluZzogJzRweCdcbiAgICB9KSksXG4gICAgdHJhbnNpdGlvbignZXhwYW5kIDw9PiBjb2xsYXBzZScsIGFuaW1hdGUoJzQwMG1zIGN1YmljLWJlemllcigwLjI1LCAwLjgsIDAuMjUsIDEpJykpXG5dKTtcblxuY29uc3QgcmFpbENvbnRlbnRBbmltYXRpb24gPSB0cmlnZ2VyKCd0cmFuc2Zvcm1Db250ZW50JywgW1xuICAgIHN0YXRlKCdzaHJpbmsnLCBzdHlsZSh7XG4gICAgICAgICdtYXJnaW4tbGVmdCc6ICcxODVweCdcbiAgICB9KSksXG4gICAgc3RhdGUoJ2dyb3cnLCBzdHlsZSh7XG4gICAgICAgICdtYXJnaW4tbGVmdCc6ICc0OXB4J1xuICAgIH0pKSxcbiAgICB0cmFuc2l0aW9uKCdzaHJpbmsgPD0+IGdyb3cnLCBhbmltYXRlKCc0MDBtcyBjdWJpYy1iZXppZXIoMC4yNSwgMC44LCAwLjI1LCAxKScpKVxuXSk7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtbmF2aWdhdGlvbi1yYWlsJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vbmF2aWdhdGlvbi1yYWlsLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9uYXZpZ2F0aW9uLXJhaWwuY29tcG9uZW50LnNjc3MnXSxcbiAgICBhbmltYXRpb25zOiBbcmFpbEFuaW1hdGlvbiwgcmFpbENvbnRlbnRBbmltYXRpb25dXG59KVxuZXhwb3J0IGNsYXNzIE5hdmlnYXRpb25SYWlsQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3ROYXZpZ2F0aW9uUmFpbENvbXBvbmVudCB7XG4gICAgY29uc3RydWN0b3IoKSB7XG4gICAgICAgIHN1cGVyKCk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,42 @@
1
+ import { Component } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { AbstractNavigationTreeComponent, AuthorityGuardService, ConfigurationService, LoggerService, RoleGuardService, UserService, GroupGuardService, ActiveGroupService, TaskResourceService, LanguageService, DynamicNavigationRouteProviderService } from '@netgrif/components-core';
4
+ export class NavigationTreeComponent extends AbstractNavigationTreeComponent {
5
+ constructor(config, router, log, userService, roleGuard, authorityGuard, groupGuard, activeGroupService, taskResourceService, languageService, navigationRouteProvider) {
6
+ super(config, router, log, userService, roleGuard, authorityGuard, groupGuard, activeGroupService, taskResourceService, languageService, navigationRouteProvider);
7
+ }
8
+ }
9
+ NavigationTreeComponent.ctorParameters = () => [
10
+ { type: ConfigurationService },
11
+ { type: Router },
12
+ { type: LoggerService },
13
+ { type: UserService },
14
+ { type: RoleGuardService },
15
+ { type: AuthorityGuardService },
16
+ { type: GroupGuardService },
17
+ { type: ActiveGroupService },
18
+ { type: TaskResourceService },
19
+ { type: LanguageService },
20
+ { type: DynamicNavigationRouteProviderService }
21
+ ];
22
+ NavigationTreeComponent.decorators = [
23
+ { type: Component, args: [{
24
+ selector: 'nc-navigation-tree',
25
+ template: "<mat-tree [dataSource]=\"dataSource\" [treeControl]=\"treeControl\" [style.width.px]=\"width\">\n\n <!-- This is the tree node template for leaf nodes -->\n <mat-tree-node *matTreeNodeDef=\"let node\" [routerLink]=\"node.url\" routerLinkActive=\"active-navigation-route\"\n matTreeNodeToggle matRipple class=\"tree-node\">\n <button *ngIf=\"node.level >= 1\" mat-icon-button disabled class=\"margin-component\"></button>\n <button *ngIf=\"node.level >= 2\" mat-icon-button disabled class=\"margin-component\"></button>\n <mat-icon color=\"primary\" class=\"tree-node-icon\">{{node.icon}}</mat-icon>\n {{node.translate ? (node.name | translate) : node.name}}\n </mat-tree-node>\n\n <!-- This is the tree node template for expandable nodes -->\n <mat-nested-tree-node *matTreeNodeDef=\"let node; when: hasChild\">\n <div class=\"mat-tree-node tree-node\" matTreeNodeToggle matRipple\n [class.bottom-shadow]=\"treeControl.isExpanded(node)\">\n <button *ngIf=\"node.level >= 1\" mat-icon-button disabled class=\"margin-component\"></button>\n <button *ngIf=\"node.level >= 2\" mat-icon-button disabled class=\"margin-component\"></button>\n\n <mat-icon color=\"primary\" class=\"tree-node-icon\">{{node.icon}}</mat-icon>\n {{node.translate ? (node.name | translate) : node.name}}\n\n <div fxFlex></div>\n <button mat-icon-button class=\"nested-tree-expansion-icon\">\n <mat-icon>\n {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}\n </mat-icon>\n </button>\n </div>\n <div [class.nested-tree-invisible]=\"!treeControl.isExpanded(node)\" class=\"darker-background\">\n <ng-container matTreeNodeOutlet></ng-container>\n </div>\n </mat-nested-tree-node>\n</mat-tree>\n",
26
+ styles: [".navigation-tree{outline:0!important}.nested-tree-invisible{display:none}.darker-background{background-color:rgba(0,0,0,.05)}.bottom-shadow{box-shadow:0 2px 4px -4px rgba(0,0,0,.2),0 4px 5px -3px rgba(0,0,0,.14),0 6px 10px -5px rgba(0,0,0,.12)}.tree-node{outline:0!important;cursor:pointer;padding:4px 12px}.tree-node mat-icon.tree-node-icon{line-height:40px;height:40px;width:24px;margin-right:4px}.tree-node .margin-component{width:8px;margin-right:4px}.nested-tree-expansion-icon{width:24px}"]
27
+ },] }
28
+ ];
29
+ NavigationTreeComponent.ctorParameters = () => [
30
+ { type: ConfigurationService },
31
+ { type: Router },
32
+ { type: LoggerService },
33
+ { type: UserService },
34
+ { type: RoleGuardService },
35
+ { type: AuthorityGuardService },
36
+ { type: GroupGuardService },
37
+ { type: ActiveGroupService },
38
+ { type: TaskResourceService },
39
+ { type: LanguageService },
40
+ { type: DynamicNavigationRouteProviderService }
41
+ ];
42
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2aWdhdGlvbi10cmVlLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvbmF2aWdhdGlvbi9uYXZpZ2F0aW9uLXRyZWUvbmF2aWdhdGlvbi10cmVlLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3hDLE9BQU8sRUFBQyxNQUFNLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUN2QyxPQUFPLEVBQ0gsK0JBQStCLEVBQUUscUJBQXFCLEVBQ3RELG9CQUFvQixFQUNwQixhQUFhLEVBQ2IsZ0JBQWdCLEVBQ2hCLFdBQVcsRUFDWCxpQkFBaUIsRUFDakIsa0JBQWtCLEVBQ2xCLG1CQUFtQixFQUNuQixlQUFlLEVBQUUscUNBQXFDLEVBQ3pELE1BQU0sMEJBQTBCLENBQUM7QUFPbEMsTUFBTSxPQUFPLHVCQUF3QixTQUFRLCtCQUErQjtJQUV4RSxZQUFZLE1BQTRCLEVBQzVCLE1BQWMsRUFDZCxHQUFrQixFQUNsQixXQUF3QixFQUN4QixTQUEyQixFQUMzQixjQUFxQyxFQUNyQyxVQUE2QixFQUM3QixrQkFBc0MsRUFDdEMsbUJBQXdDLEVBQ3hDLGVBQWdDLEVBQ2hDLHVCQUE4RDtRQUN0RSxLQUFLLENBQ0QsTUFBTSxFQUNOLE1BQU0sRUFDTixHQUFHLEVBQ0gsV0FBVyxFQUNYLFNBQVMsRUFDVCxjQUFjLEVBQ2QsVUFBVSxFQUNWLGtCQUFrQixFQUNsQixtQkFBbUIsRUFDbkIsZUFBZSxFQUNmLHVCQUF1QixDQUMxQixDQUFDO0lBQ04sQ0FBQzs7O1lBeEJtQixvQkFBb0I7WUFDcEIsTUFBTTtZQUNULGFBQWE7WUFDTCxXQUFXO1lBQ2IsZ0JBQWdCO1lBQ1gscUJBQXFCO1lBQ3pCLGlCQUFpQjtZQUNULGtCQUFrQjtZQUNqQixtQkFBbUI7WUFDdkIsZUFBZTtZQUNQLHFDQUFxQzs7O1lBakI3RSxTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLG9CQUFvQjtnQkFDOUIsNDREQUErQzs7YUFFbEQ7OztZQWRHLG9CQUFvQjtZQUhoQixNQUFNO1lBSVYsYUFBYTtZQUViLFdBQVc7WUFEWCxnQkFBZ0I7WUFIaUIscUJBQXFCO1lBS3RELGlCQUFpQjtZQUNqQixrQkFBa0I7WUFDbEIsbUJBQW1CO1lBQ25CLGVBQWU7WUFBRSxxQ0FBcUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1JvdXRlcn0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7XG4gICAgQWJzdHJhY3ROYXZpZ2F0aW9uVHJlZUNvbXBvbmVudCwgQXV0aG9yaXR5R3VhcmRTZXJ2aWNlLFxuICAgIENvbmZpZ3VyYXRpb25TZXJ2aWNlLFxuICAgIExvZ2dlclNlcnZpY2UsXG4gICAgUm9sZUd1YXJkU2VydmljZSxcbiAgICBVc2VyU2VydmljZSxcbiAgICBHcm91cEd1YXJkU2VydmljZSxcbiAgICBBY3RpdmVHcm91cFNlcnZpY2UsXG4gICAgVGFza1Jlc291cmNlU2VydmljZSxcbiAgICBMYW5ndWFnZVNlcnZpY2UsIER5bmFtaWNOYXZpZ2F0aW9uUm91dGVQcm92aWRlclNlcnZpY2Vcbn0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1uYXZpZ2F0aW9uLXRyZWUnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9uYXZpZ2F0aW9uLXRyZWUuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL25hdmlnYXRpb24tdHJlZS5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIE5hdmlnYXRpb25UcmVlQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3ROYXZpZ2F0aW9uVHJlZUNvbXBvbmVudCB7XG5cbiAgICBjb25zdHJ1Y3Rvcihjb25maWc6IENvbmZpZ3VyYXRpb25TZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHJvdXRlcjogUm91dGVyLFxuICAgICAgICAgICAgICAgIGxvZzogTG9nZ2VyU2VydmljZSxcbiAgICAgICAgICAgICAgICB1c2VyU2VydmljZTogVXNlclNlcnZpY2UsXG4gICAgICAgICAgICAgICAgcm9sZUd1YXJkOiBSb2xlR3VhcmRTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIGF1dGhvcml0eUd1YXJkOiBBdXRob3JpdHlHdWFyZFNlcnZpY2UsXG4gICAgICAgICAgICAgICAgZ3JvdXBHdWFyZDogR3JvdXBHdWFyZFNlcnZpY2UsXG4gICAgICAgICAgICAgICAgYWN0aXZlR3JvdXBTZXJ2aWNlOiBBY3RpdmVHcm91cFNlcnZpY2UsXG4gICAgICAgICAgICAgICAgdGFza1Jlc291cmNlU2VydmljZTogVGFza1Jlc291cmNlU2VydmljZSxcbiAgICAgICAgICAgICAgICBsYW5ndWFnZVNlcnZpY2U6IExhbmd1YWdlU2VydmljZSxcbiAgICAgICAgICAgICAgICBuYXZpZ2F0aW9uUm91dGVQcm92aWRlcjogRHluYW1pY05hdmlnYXRpb25Sb3V0ZVByb3ZpZGVyU2VydmljZSkge1xuICAgICAgICBzdXBlcihcbiAgICAgICAgICAgIGNvbmZpZyxcbiAgICAgICAgICAgIHJvdXRlcixcbiAgICAgICAgICAgIGxvZyxcbiAgICAgICAgICAgIHVzZXJTZXJ2aWNlLFxuICAgICAgICAgICAgcm9sZUd1YXJkLFxuICAgICAgICAgICAgYXV0aG9yaXR5R3VhcmQsXG4gICAgICAgICAgICBncm91cEd1YXJkLFxuICAgICAgICAgICAgYWN0aXZlR3JvdXBTZXJ2aWNlLFxuICAgICAgICAgICAgdGFza1Jlc291cmNlU2VydmljZSxcbiAgICAgICAgICAgIGxhbmd1YWdlU2VydmljZSxcbiAgICAgICAgICAgIG5hdmlnYXRpb25Sb3V0ZVByb3ZpZGVyXG4gICAgICAgICk7XG4gICAgfVxufVxuIl19
@@ -0,0 +1,81 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
4
+ import { NavigationDrawerComponent } from './navigation-drawer/navigation-drawer.component';
5
+ import { FlexLayoutModule, FlexModule } from '@angular/flex-layout';
6
+ import { RouterModule } from '@angular/router';
7
+ import 'hammerjs';
8
+ import { GroupNavigationComponentResolverService, MaterialModule, TranslateLibModule, NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT } from '@netgrif/components-core';
9
+ import { NavigationRailComponent } from './navigation-rail/navigation-rail.component';
10
+ import { NavigationTreeComponent } from './navigation-tree/navigation-tree.component';
11
+ import { UserComponentModule } from '../user/user.module';
12
+ import { QuickPanelComponentModule } from './quick-panel/quick-panel.module';
13
+ import { ResizableModule } from 'angular-resizable-element';
14
+ import { GroupNavigationComponentResolverComponent } from './group-navigation-component-resolver/group-navigation-component-resolver.component';
15
+ import { DefaultGroupNavigationComponentResolverService } from './group-navigation-component-resolver/default-group-navigation-component-resolver.service';
16
+ import { DefaultSimpleTaskViewComponent } from './group-navigation-component-resolver/default-components/default-simple-task-view/default-simple-task-view.component';
17
+ import { DefaultTabbedTaskViewComponent } from './group-navigation-component-resolver/default-components/default-tabbed-task-view/default-tabbed-task-view.component';
18
+ import { DefaultTabbedCaseViewComponent } from './group-navigation-component-resolver/default-components/default-tabbed-case-view/default-tabbed-case-view.component';
19
+ import { DefaultTabViewComponent } from './group-navigation-component-resolver/default-components/default-tab-view/default-tab-view.component';
20
+ import { SearchComponentModule } from '../search/search.module';
21
+ import { HeaderComponentModule } from '../header/header.module';
22
+ import { PanelComponentModule } from '../panel/panel.module';
23
+ import { TabsComponentModule } from '../tabs/tabs.module';
24
+ import { CaseViewComponentModule } from '../view/case-view/case-view.module';
25
+ const ɵ0 = GroupNavigationComponentResolverComponent;
26
+ export class NavigationComponentModule {
27
+ }
28
+ NavigationComponentModule.decorators = [
29
+ { type: NgModule, args: [{
30
+ declarations: [
31
+ NavigationDrawerComponent,
32
+ NavigationRailComponent,
33
+ NavigationTreeComponent,
34
+ GroupNavigationComponentResolverComponent,
35
+ DefaultSimpleTaskViewComponent,
36
+ DefaultTabbedTaskViewComponent,
37
+ DefaultTabbedCaseViewComponent,
38
+ DefaultTabViewComponent
39
+ ],
40
+ imports: [
41
+ CommonModule,
42
+ RouterModule,
43
+ MaterialModule,
44
+ FlexModule,
45
+ FlexLayoutModule,
46
+ QuickPanelComponentModule,
47
+ TranslateLibModule,
48
+ UserComponentModule,
49
+ ResizableModule,
50
+ MatProgressSpinnerModule,
51
+ SearchComponentModule,
52
+ HeaderComponentModule,
53
+ PanelComponentModule,
54
+ TabsComponentModule,
55
+ CaseViewComponentModule,
56
+ ],
57
+ exports: [
58
+ NavigationDrawerComponent,
59
+ NavigationRailComponent,
60
+ NavigationTreeComponent,
61
+ GroupNavigationComponentResolverComponent,
62
+ DefaultSimpleTaskViewComponent,
63
+ DefaultTabbedTaskViewComponent,
64
+ DefaultTabbedCaseViewComponent,
65
+ DefaultTabViewComponent
66
+ ],
67
+ providers: [
68
+ { provide: NAE_GROUP_NAVIGATION_COMPONENT_RESOLVER_COMPONENT, useValue: ɵ0 },
69
+ { provide: GroupNavigationComponentResolverService, useClass: DefaultGroupNavigationComponentResolverService }
70
+ ],
71
+ entryComponents: [
72
+ GroupNavigationComponentResolverComponent,
73
+ DefaultSimpleTaskViewComponent,
74
+ DefaultTabbedTaskViewComponent,
75
+ DefaultTabbedCaseViewComponent,
76
+ DefaultTabViewComponent
77
+ ]
78
+ },] }
79
+ ];
80
+ export { ɵ0 };
81
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmF2aWdhdGlvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AbmV0Z3JpZi9jb21wb25lbnRzLyIsInNvdXJjZXMiOlsibGliL25hdmlnYXRpb24vbmF2aWdhdGlvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFFBQVEsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN2QyxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFDLHdCQUF3QixFQUFDLE1BQU0sb0NBQW9DLENBQUM7QUFDNUUsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0saURBQWlELENBQUM7QUFDMUYsT0FBTyxFQUFDLGdCQUFnQixFQUFFLFVBQVUsRUFBQyxNQUFNLHNCQUFzQixDQUFDO0FBQ2xFLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLFVBQVUsQ0FBQztBQUNsQixPQUFPLEVBQ0gsdUNBQXVDLEVBQ3ZDLGNBQWMsRUFDZCxrQkFBa0IsRUFDbEIsaURBQWlELEVBQ3BELE1BQU0sMEJBQTBCLENBQUM7QUFDbEMsT0FBTyxFQUFDLHVCQUF1QixFQUFDLE1BQU0sNkNBQTZDLENBQUM7QUFDcEYsT0FBTyxFQUFDLHVCQUF1QixFQUFDLE1BQU0sNkNBQTZDLENBQUM7QUFDcEYsT0FBTyxFQUFDLG1CQUFtQixFQUFDLE1BQU0scUJBQXFCLENBQUM7QUFDeEQsT0FBTyxFQUFDLHlCQUF5QixFQUFDLE1BQU0sa0NBQWtDLENBQUM7QUFDM0UsT0FBTyxFQUFDLGVBQWUsRUFBQyxNQUFNLDJCQUEyQixDQUFDO0FBQzFELE9BQU8sRUFDSCx5Q0FBeUMsRUFDNUMsTUFBTSxxRkFBcUYsQ0FBQztBQUM3RixPQUFPLEVBQ0gsOENBQThDLEVBQ2pELE1BQU0sMkZBQTJGLENBQUM7QUFDbkcsT0FBTyxFQUNILDhCQUE4QixFQUNqQyxNQUFNLHNIQUFzSCxDQUFDO0FBQzlILE9BQU8sRUFDSCw4QkFBOEIsRUFDakMsTUFBTSxzSEFBc0gsQ0FBQztBQUM5SCxPQUFPLEVBQ0gsOEJBQThCLEVBQ2pDLE1BQU0sc0hBQXNILENBQUM7QUFDOUgsT0FBTyxFQUNILHVCQUF1QixFQUMxQixNQUFNLHNHQUFzRyxDQUFDO0FBQzlHLE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHlCQUF5QixDQUFDO0FBQzlELE9BQU8sRUFBQyxxQkFBcUIsRUFBQyxNQUFNLHlCQUF5QixDQUFDO0FBQzlELE9BQU8sRUFBQyxvQkFBb0IsRUFBQyxNQUFNLHVCQUF1QixDQUFDO0FBQzNELE9BQU8sRUFBQyxtQkFBbUIsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBQ3hELE9BQU8sRUFBQyx1QkFBdUIsRUFBQyxNQUFNLG9DQUFvQyxDQUFDO1dBMENJLHlDQUF5QztBQVd4SCxNQUFNLE9BQU8seUJBQXlCOzs7WUFsRHJDLFFBQVEsU0FBQztnQkFDTixZQUFZLEVBQUU7b0JBQ1YseUJBQXlCO29CQUN6Qix1QkFBdUI7b0JBQ3ZCLHVCQUF1QjtvQkFDdkIseUNBQXlDO29CQUN6Qyw4QkFBOEI7b0JBQzlCLDhCQUE4QjtvQkFDOUIsOEJBQThCO29CQUM5Qix1QkFBdUI7aUJBQzFCO2dCQUNELE9BQU8sRUFBRTtvQkFDTCxZQUFZO29CQUNaLFlBQVk7b0JBQ1osY0FBYztvQkFDZCxVQUFVO29CQUNWLGdCQUFnQjtvQkFDaEIseUJBQXlCO29CQUN6QixrQkFBa0I7b0JBQ2xCLG1CQUFtQjtvQkFDbkIsZUFBZTtvQkFDZix3QkFBd0I7b0JBQ3hCLHFCQUFxQjtvQkFDckIscUJBQXFCO29CQUNyQixvQkFBb0I7b0JBQ3BCLG1CQUFtQjtvQkFDbkIsdUJBQXVCO2lCQUMxQjtnQkFDRCxPQUFPLEVBQUU7b0JBQ0wseUJBQXlCO29CQUN6Qix1QkFBdUI7b0JBQ3ZCLHVCQUF1QjtvQkFDdkIseUNBQXlDO29CQUN6Qyw4QkFBOEI7b0JBQzlCLDhCQUE4QjtvQkFDOUIsOEJBQThCO29CQUM5Qix1QkFBdUI7aUJBQzFCO2dCQUNELFNBQVMsRUFBRTtvQkFDUCxFQUFDLE9BQU8sRUFBRSxpREFBaUQsRUFBRSxRQUFRLElBQTJDLEVBQUM7b0JBQ2pILEVBQUMsT0FBTyxFQUFFLHVDQUF1QyxFQUFFLFFBQVEsRUFBRSw4Q0FBOEMsRUFBQztpQkFDL0c7Z0JBQ0QsZUFBZSxFQUFFO29CQUNiLHlDQUF5QztvQkFDekMsOEJBQThCO29CQUM5Qiw4QkFBOEI7b0JBQzlCLDhCQUE4QjtvQkFDOUIsdUJBQXVCO2lCQUMxQjthQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7TWF0UHJvZ3Jlc3NTcGlubmVyTW9kdWxlfSBmcm9tICdAYW5ndWxhci9tYXRlcmlhbC9wcm9ncmVzcy1zcGlubmVyJztcbmltcG9ydCB7TmF2aWdhdGlvbkRyYXdlckNvbXBvbmVudH0gZnJvbSAnLi9uYXZpZ2F0aW9uLWRyYXdlci9uYXZpZ2F0aW9uLWRyYXdlci5jb21wb25lbnQnO1xuaW1wb3J0IHtGbGV4TGF5b3V0TW9kdWxlLCBGbGV4TW9kdWxlfSBmcm9tICdAYW5ndWxhci9mbGV4LWxheW91dCc7XG5pbXBvcnQge1JvdXRlck1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCAnaGFtbWVyanMnO1xuaW1wb3J0IHtcbiAgICBHcm91cE5hdmlnYXRpb25Db21wb25lbnRSZXNvbHZlclNlcnZpY2UsXG4gICAgTWF0ZXJpYWxNb2R1bGUsXG4gICAgVHJhbnNsYXRlTGliTW9kdWxlLFxuICAgIE5BRV9HUk9VUF9OQVZJR0FUSU9OX0NPTVBPTkVOVF9SRVNPTFZFUl9DT01QT05FTlRcbn0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcbmltcG9ydCB7TmF2aWdhdGlvblJhaWxDb21wb25lbnR9IGZyb20gJy4vbmF2aWdhdGlvbi1yYWlsL25hdmlnYXRpb24tcmFpbC5jb21wb25lbnQnO1xuaW1wb3J0IHtOYXZpZ2F0aW9uVHJlZUNvbXBvbmVudH0gZnJvbSAnLi9uYXZpZ2F0aW9uLXRyZWUvbmF2aWdhdGlvbi10cmVlLmNvbXBvbmVudCc7XG5pbXBvcnQge1VzZXJDb21wb25lbnRNb2R1bGV9IGZyb20gJy4uL3VzZXIvdXNlci5tb2R1bGUnO1xuaW1wb3J0IHtRdWlja1BhbmVsQ29tcG9uZW50TW9kdWxlfSBmcm9tICcuL3F1aWNrLXBhbmVsL3F1aWNrLXBhbmVsLm1vZHVsZSc7XG5pbXBvcnQge1Jlc2l6YWJsZU1vZHVsZX0gZnJvbSAnYW5ndWxhci1yZXNpemFibGUtZWxlbWVudCc7XG5pbXBvcnQge1xuICAgIEdyb3VwTmF2aWdhdGlvbkNvbXBvbmVudFJlc29sdmVyQ29tcG9uZW50XG59IGZyb20gJy4vZ3JvdXAtbmF2aWdhdGlvbi1jb21wb25lbnQtcmVzb2x2ZXIvZ3JvdXAtbmF2aWdhdGlvbi1jb21wb25lbnQtcmVzb2x2ZXIuY29tcG9uZW50JztcbmltcG9ydCB7XG4gICAgRGVmYXVsdEdyb3VwTmF2aWdhdGlvbkNvbXBvbmVudFJlc29sdmVyU2VydmljZVxufSBmcm9tICcuL2dyb3VwLW5hdmlnYXRpb24tY29tcG9uZW50LXJlc29sdmVyL2RlZmF1bHQtZ3JvdXAtbmF2aWdhdGlvbi1jb21wb25lbnQtcmVzb2x2ZXIuc2VydmljZSc7XG5pbXBvcnQge1xuICAgIERlZmF1bHRTaW1wbGVUYXNrVmlld0NvbXBvbmVudFxufSBmcm9tICcuL2dyb3VwLW5hdmlnYXRpb24tY29tcG9uZW50LXJlc29sdmVyL2RlZmF1bHQtY29tcG9uZW50cy9kZWZhdWx0LXNpbXBsZS10YXNrLXZpZXcvZGVmYXVsdC1zaW1wbGUtdGFzay12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQge1xuICAgIERlZmF1bHRUYWJiZWRUYXNrVmlld0NvbXBvbmVudFxufSBmcm9tICcuL2dyb3VwLW5hdmlnYXRpb24tY29tcG9uZW50LXJlc29sdmVyL2RlZmF1bHQtY29tcG9uZW50cy9kZWZhdWx0LXRhYmJlZC10YXNrLXZpZXcvZGVmYXVsdC10YWJiZWQtdGFzay12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQge1xuICAgIERlZmF1bHRUYWJiZWRDYXNlVmlld0NvbXBvbmVudFxufSBmcm9tICcuL2dyb3VwLW5hdmlnYXRpb24tY29tcG9uZW50LXJlc29sdmVyL2RlZmF1bHQtY29tcG9uZW50cy9kZWZhdWx0LXRhYmJlZC1jYXNlLXZpZXcvZGVmYXVsdC10YWJiZWQtY2FzZS12aWV3LmNvbXBvbmVudCc7XG5pbXBvcnQge1xuICAgIERlZmF1bHRUYWJWaWV3Q29tcG9uZW50XG59IGZyb20gJy4vZ3JvdXAtbmF2aWdhdGlvbi1jb21wb25lbnQtcmVzb2x2ZXIvZGVmYXVsdC1jb21wb25lbnRzL2RlZmF1bHQtdGFiLXZpZXcvZGVmYXVsdC10YWItdmlldy5jb21wb25lbnQnO1xuaW1wb3J0IHtTZWFyY2hDb21wb25lbnRNb2R1bGV9IGZyb20gJy4uL3NlYXJjaC9zZWFyY2gubW9kdWxlJztcbmltcG9ydCB7SGVhZGVyQ29tcG9uZW50TW9kdWxlfSBmcm9tICcuLi9oZWFkZXIvaGVhZGVyLm1vZHVsZSc7XG5pbXBvcnQge1BhbmVsQ29tcG9uZW50TW9kdWxlfSBmcm9tICcuLi9wYW5lbC9wYW5lbC5tb2R1bGUnO1xuaW1wb3J0IHtUYWJzQ29tcG9uZW50TW9kdWxlfSBmcm9tICcuLi90YWJzL3RhYnMubW9kdWxlJztcbmltcG9ydCB7Q2FzZVZpZXdDb21wb25lbnRNb2R1bGV9IGZyb20gJy4uL3ZpZXcvY2FzZS12aWV3L2Nhc2Utdmlldy5tb2R1bGUnO1xuXG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbXG4gICAgICAgIE5hdmlnYXRpb25EcmF3ZXJDb21wb25lbnQsXG4gICAgICAgIE5hdmlnYXRpb25SYWlsQ29tcG9uZW50LFxuICAgICAgICBOYXZpZ2F0aW9uVHJlZUNvbXBvbmVudCxcbiAgICAgICAgR3JvdXBOYXZpZ2F0aW9uQ29tcG9uZW50UmVzb2x2ZXJDb21wb25lbnQsXG4gICAgICAgIERlZmF1bHRTaW1wbGVUYXNrVmlld0NvbXBvbmVudCxcbiAgICAgICAgRGVmYXVsdFRhYmJlZFRhc2tWaWV3Q29tcG9uZW50LFxuICAgICAgICBEZWZhdWx0VGFiYmVkQ2FzZVZpZXdDb21wb25lbnQsXG4gICAgICAgIERlZmF1bHRUYWJWaWV3Q29tcG9uZW50XG4gICAgXSxcbiAgICBpbXBvcnRzOiBbXG4gICAgICAgIENvbW1vbk1vZHVsZSxcbiAgICAgICAgUm91dGVyTW9kdWxlLFxuICAgICAgICBNYXRlcmlhbE1vZHVsZSxcbiAgICAgICAgRmxleE1vZHVsZSxcbiAgICAgICAgRmxleExheW91dE1vZHVsZSxcbiAgICAgICAgUXVpY2tQYW5lbENvbXBvbmVudE1vZHVsZSxcbiAgICAgICAgVHJhbnNsYXRlTGliTW9kdWxlLFxuICAgICAgICBVc2VyQ29tcG9uZW50TW9kdWxlLFxuICAgICAgICBSZXNpemFibGVNb2R1bGUsXG4gICAgICAgIE1hdFByb2dyZXNzU3Bpbm5lck1vZHVsZSxcbiAgICAgICAgU2VhcmNoQ29tcG9uZW50TW9kdWxlLFxuICAgICAgICBIZWFkZXJDb21wb25lbnRNb2R1bGUsXG4gICAgICAgIFBhbmVsQ29tcG9uZW50TW9kdWxlLFxuICAgICAgICBUYWJzQ29tcG9uZW50TW9kdWxlLFxuICAgICAgICBDYXNlVmlld0NvbXBvbmVudE1vZHVsZSxcbiAgICBdLFxuICAgIGV4cG9ydHM6IFtcbiAgICAgICAgTmF2aWdhdGlvbkRyYXdlckNvbXBvbmVudCxcbiAgICAgICAgTmF2aWdhdGlvblJhaWxDb21wb25lbnQsXG4gICAgICAgIE5hdmlnYXRpb25UcmVlQ29tcG9uZW50LFxuICAgICAgICBHcm91cE5hdmlnYXRpb25Db21wb25lbnRSZXNvbHZlckNvbXBvbmVudCxcbiAgICAgICAgRGVmYXVsdFNpbXBsZVRhc2tWaWV3Q29tcG9uZW50LFxuICAgICAgICBEZWZhdWx0VGFiYmVkVGFza1ZpZXdDb21wb25lbnQsXG4gICAgICAgIERlZmF1bHRUYWJiZWRDYXNlVmlld0NvbXBvbmVudCxcbiAgICAgICAgRGVmYXVsdFRhYlZpZXdDb21wb25lbnRcbiAgICBdLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7cHJvdmlkZTogTkFFX0dST1VQX05BVklHQVRJT05fQ09NUE9ORU5UX1JFU09MVkVSX0NPTVBPTkVOVCwgdXNlVmFsdWU6IEdyb3VwTmF2aWdhdGlvbkNvbXBvbmVudFJlc29sdmVyQ29tcG9uZW50fSxcbiAgICAgICAge3Byb3ZpZGU6IEdyb3VwTmF2aWdhdGlvbkNvbXBvbmVudFJlc29sdmVyU2VydmljZSwgdXNlQ2xhc3M6IERlZmF1bHRHcm91cE5hdmlnYXRpb25Db21wb25lbnRSZXNvbHZlclNlcnZpY2V9XG4gICAgXSxcbiAgICBlbnRyeUNvbXBvbmVudHM6IFtcbiAgICAgICAgR3JvdXBOYXZpZ2F0aW9uQ29tcG9uZW50UmVzb2x2ZXJDb21wb25lbnQsXG4gICAgICAgIERlZmF1bHRTaW1wbGVUYXNrVmlld0NvbXBvbmVudCxcbiAgICAgICAgRGVmYXVsdFRhYmJlZFRhc2tWaWV3Q29tcG9uZW50LFxuICAgICAgICBEZWZhdWx0VGFiYmVkQ2FzZVZpZXdDb21wb25lbnQsXG4gICAgICAgIERlZmF1bHRUYWJWaWV3Q29tcG9uZW50XG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBOYXZpZ2F0aW9uQ29tcG9uZW50TW9kdWxlIHtcbn1cbiJdfQ==
@@ -0,0 +1,9 @@
1
+ /* APIS */
2
+ export * from './quick-panel/public-api';
3
+ /* MODULES */
4
+ export * from './navigation.module';
5
+ /* COMPONENTS */
6
+ export * from './navigation-tree/navigation-tree.component';
7
+ export * from './navigation-drawer/navigation-drawer.component';
8
+ export * from './navigation-rail/navigation-rail.component';
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvbmF2aWdhdGlvbi9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLFVBQVU7QUFDVixjQUFjLDBCQUEwQixDQUFDO0FBRXpDLGFBQWE7QUFDYixjQUFjLHFCQUFxQixDQUFDO0FBRXBDLGdCQUFnQjtBQUNoQixjQUFjLDZDQUE2QyxDQUFDO0FBQzVELGNBQWMsaURBQWlELENBQUM7QUFDaEUsY0FBYyw2Q0FBNkMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qIEFQSVMgKi9cbmV4cG9ydCAqIGZyb20gJy4vcXVpY2stcGFuZWwvcHVibGljLWFwaSc7XG5cbi8qIE1PRFVMRVMgKi9cbmV4cG9ydCAqIGZyb20gJy4vbmF2aWdhdGlvbi5tb2R1bGUnO1xuXG4vKiBDT01QT05FTlRTICovXG5leHBvcnQgKiBmcm9tICcuL25hdmlnYXRpb24tdHJlZS9uYXZpZ2F0aW9uLXRyZWUuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbmF2aWdhdGlvbi1kcmF3ZXIvbmF2aWdhdGlvbi1kcmF3ZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vbmF2aWdhdGlvbi1yYWlsL25hdmlnYXRpb24tcmFpbC5jb21wb25lbnQnO1xuIl19
@@ -0,0 +1,16 @@
1
+ import { Component } from '@angular/core';
2
+ import { AbstractInternalLinkComponent } from '@netgrif/components-core';
3
+ export class InternalLinkComponent extends AbstractInternalLinkComponent {
4
+ constructor() {
5
+ super();
6
+ }
7
+ }
8
+ InternalLinkComponent.decorators = [
9
+ { type: Component, args: [{
10
+ selector: 'nc-internal-link',
11
+ template: "<button mat-icon-button [routerLink]=\"link\">\n <mat-icon class=\"internal-link-icon\">{{icon}}</mat-icon>\n</button>\n",
12
+ styles: [".internal-link-icon{font-size:24px;text-align:center;vertical-align:center;cursor:pointer;outline:0!important}"]
13
+ },] }
14
+ ];
15
+ InternalLinkComponent.ctorParameters = () => [];
16
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW50ZXJuYWwtbGluay5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AbmV0Z3JpZi9jb21wb25lbnRzLyIsInNvdXJjZXMiOlsibGliL25hdmlnYXRpb24vcXVpY2stcGFuZWwvY29tcG9uZW50cy9pbnRlcm5hbC1saW5rL2ludGVybmFsLWxpbmsuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDeEMsT0FBTyxFQUFDLDZCQUE2QixFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFPdkUsTUFBTSxPQUFPLHFCQUFzQixTQUFRLDZCQUE2QjtJQUNwRTtRQUNJLEtBQUssRUFBRSxDQUFDO0lBQ1osQ0FBQzs7O1lBUkosU0FBUyxTQUFDO2dCQUNQLFFBQVEsRUFBRSxrQkFBa0I7Z0JBQzVCLHVJQUE2Qzs7YUFFaEQiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0Fic3RyYWN0SW50ZXJuYWxMaW5rQ29tcG9uZW50fSBmcm9tICdAbmV0Z3JpZi9jb21wb25lbnRzLWNvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ25jLWludGVybmFsLWxpbmsnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9pbnRlcm5hbC1saW5rLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9pbnRlcm5hbC1saW5rLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgSW50ZXJuYWxMaW5rQ29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RJbnRlcm5hbExpbmtDb21wb25lbnQge1xuICAgIGNvbnN0cnVjdG9yKCkge1xuICAgICAgICBzdXBlcigpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,39 @@
1
+ import { Component } from '@angular/core';
2
+ import { AbstractLanguageSelectorComponent, LanguageService } from '@netgrif/components-core';
3
+ export class LanguageSelectorComponent extends AbstractLanguageSelectorComponent {
4
+ constructor(_select) {
5
+ super(_select);
6
+ this._select = _select;
7
+ this.skFlag = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABAElEQVRYhWP4//8/w0DiAbV81AGjDkB2wECB' +
8
+ 'UQeMOgC/A34fO4ET08UBb2VU4BgE3mkZwfn/Pn6kngO4/Rb9R8dNNSvAFn2tb4H7GESD+CDxxrxZGHpIxXgdALIA5oBPodFgB4BoujsA5Os/V66' +
9
+ 'BHQCiQXy6OKC5aytGGkDmg6KIpg6wzN/y/6GN+/8a0+T/8dZF/7n8FoJpEP+BrtV/j6qdtHUACJf27gVbjI5B4pRajuKAdzKq/7HhDxYO/0vQHJ' +
10
+ 'HatO3/R3c/rOpJxQQdAMLvtYz/r22c+98dGOTr+leD+dSwnGgHIIcGtSwmywG0wKMOGDwOGEg86oBRBwy4AwD9AXxVUM8swgAAAABJRU5ErkJgg' +
11
+ 'g==';
12
+ this.deFlag = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAPElEQVRYw+3WIREAMADDwPjXNk8ZnIQOBIQ/' +
13
+ '6hWVZQQI8AUAcFGAAAHeDoCTAgT4B3BwUoAAAXrFAQIoF+hFdQp+ds+vAAAAAElFTkSuQmCC';
14
+ this.gbFlag = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAByElEQVRYw+2WvUvDUBTFA04u7VTo0sGpf4Ao' +
15
+ '1L2L4FApdHN01slBcFIEJ0EcFDqqFaGubkJdtIhVKWhBobjZwc5+NMeeSNI0vOTdpmId8uBt7+N3Ts69LwYAY5TTiAAigH8B8Fwo4LPVwvtHB6u' +
16
+ '7VYxN7cOY3AucpgnU4nFcW0cAqdkD7Z7FjQpeNrdwn0rhrVSCA9BcWsZtIoF2uWwddlV/RXr++NcAJuYOcX5SwUMmg6dczhL71TF7ALysenSGej' +
17
+ 'oNqRtSAIVqPDbbmF447QFwIS9a276A1A0dgJ/q9eINxmeK1po+AHv2uZHP+7oRBBCk2n2XEkDqhgpAoloEIHHDC7CycylSPRCA1427ZNJxg8MN0' +
18
+ 'MhmRaqVAAg53AAhxw9ALRazDvrr6QCM4nKKHvoTWAd1P0OYYZqQhZBBYqAYLAaMQWPgVAAMKIPKwDK4ujdFC8ASYilxsLRYYiw1lpwXgKXJEiUk' +
19
+ 'S5alyxIOelN8AVSq2VzYZNhs2HS8AHbfYLOy3WATC3JDCeCnmu3VXuMHYPcNqRt9ADrV7o1BAO4uqnPDAZCoHhRA6Ub3qXe74QBIVIcB0LnhAEh' +
20
+ 'UDwPg50b0VxwBRACc37+H2GuakEPwAAAAAElFTkSuQmCC';
21
+ }
22
+ getFlag(flagCode) {
23
+ return flagCode === 'sk' ? this.skFlag : (flagCode === 'gb' ? this.gbFlag : this.deFlag);
24
+ }
25
+ }
26
+ LanguageSelectorComponent.ctorParameters = () => [
27
+ { type: LanguageService }
28
+ ];
29
+ LanguageSelectorComponent.decorators = [
30
+ { type: Component, args: [{
31
+ selector: 'nc-language-selector',
32
+ template: "<mat-menu #languageMenu=\"matMenu\">\n <button *ngFor=\"let lang of langMenuItems\" mat-menu-item (click)=\"setLang(lang.key)\" fxLayout=\"row\"\n fxLayoutAlign=\"start center\" [style.backgroundColor]=\"lang.key === language ? 'rgba(253,151,31,0.1)':''\">\n <img [src]='getFlag(flagCode(lang.key))' alt=\"Country icon\" class=\"icon-small-dimensions\">\n <span class=\"margin-left-default\">{{'toolbar.menu.' + lang.value | translate}}</span>\n </button>\n</mat-menu>\n\n<button mat-icon-button [matMenuTriggerFor]=\"languageMenu\">\n <img [src]='getFlag(flagCountryCode)'\n alt=\"Country icon\" class=\"icon-medium-dimensions\">\n</button>\n",
33
+ styles: [".icon-small-dimensions{width:24px;height:24px}.margin-left-default{margin-left:8px}.icon-medium-dimensions{width:32px;height:32px}"]
34
+ },] }
35
+ ];
36
+ LanguageSelectorComponent.ctorParameters = () => [
37
+ { type: LanguageService }
38
+ ];
39
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibGFuZ3VhZ2Utc2VsZWN0b3IuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9uYXZpZ2F0aW9uL3F1aWNrLXBhbmVsL2NvbXBvbmVudHMvbGFuZ3VhZ2Utc2VsZWN0b3IvbGFuZ3VhZ2Utc2VsZWN0b3IuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDeEMsT0FBTyxFQUFDLGlDQUFpQyxFQUFFLGVBQWUsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBTzVGLE1BQU0sT0FBTyx5QkFBMEIsU0FBUSxpQ0FBaUM7SUFDNUUsWUFBc0IsT0FBd0I7UUFDMUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBREcsWUFBTyxHQUFQLE9BQU8sQ0FBaUI7UUFJOUMsV0FBTSxHQUFHLDRHQUE0RztZQUNqSCxpSEFBaUg7WUFDakgsaUhBQWlIO1lBQ2pILGlIQUFpSDtZQUNqSCxLQUFLLENBQUM7UUFFVixXQUFNLEdBQUcsNEdBQTRHO1lBQ2pILDBFQUEwRSxDQUFDO1FBRS9FLFdBQU0sR0FBRyw0R0FBNEc7WUFDakgsaUhBQWlIO1lBQ2pILGlIQUFpSDtZQUNqSCxpSEFBaUg7WUFDakgsaUhBQWlIO1lBQ2pILGlIQUFpSDtZQUNqSCwrQ0FBK0MsQ0FBQztJQWpCcEQsQ0FBQztJQW1CRCxPQUFPLENBQUMsUUFBZ0I7UUFDcEIsT0FBTyxRQUFRLEtBQUssSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxDQUFDLFFBQVEsS0FBSyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUM3RixDQUFDOzs7WUF2QjhCLGVBQWU7OztZQU5qRCxTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLHNCQUFzQjtnQkFDaEMseXJCQUFpRDs7YUFFcEQ7OztZQU4wQyxlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdExhbmd1YWdlU2VsZWN0b3JDb21wb25lbnQsIExhbmd1YWdlU2VydmljZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1sYW5ndWFnZS1zZWxlY3RvcicsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2xhbmd1YWdlLXNlbGVjdG9yLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9sYW5ndWFnZS1zZWxlY3Rvci5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIExhbmd1YWdlU2VsZWN0b3JDb21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdExhbmd1YWdlU2VsZWN0b3JDb21wb25lbnQge1xuICAgIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBfc2VsZWN0OiBMYW5ndWFnZVNlcnZpY2UpIHtcbiAgICAgICAgc3VwZXIoX3NlbGVjdCk7XG4gICAgfVxuXG4gICAgc2tGbGFnID0gJ2RhdGE6aW1hZ2UvcG5nO2Jhc2U2NCxpVkJPUncwS0dnb0FBQUFOU1VoRVVnQUFBQ0FBQUFBZ0NBWUFBQUJ6ZW5yMEFBQUJBRWxFUVZSWWhXUDQvLzgvdzBEaUFiVjgxQUdqRGtCMndFQ0InICtcbiAgICAgICAgJ1VRZU1PZ0MvQTM0Zk80RVQwOFVCYjJWVTRCZ0UzbWtad2ZuL1BuNmtuZ080L1JiOVI4ZE5OU3ZBRm4ydGI0SDdHRVNEK0NEeHhyeFpHSHBJeFhnZEFMSUE1b0JQb2RGZ0I0Qm91anNBNU9zL1Y2NicgK1xuICAgICAgICAnQkhRQ2lRWHk2T0tDNWF5dEdHa0RtZzZLSXBnNnd6Ti95LzZHTisvOGEwK1QvOGRaRi83bjhGb0pwRVArQnJ0Vi9qNnFkdEhVQUNKZjI3Z1Ziakk1QjRwUmFqdUtBZHpLcS83SGhEeFlPLzB2UUhKJyArXG4gICAgICAgICdIYXRPMy9SM2Mvck9wSnhRUWRBTUx2dFl6L3IyMmMrOThkR09UcitsZUQrZFN3bkdnSElJY0d0U3dteXdHMHdLTU9HRHdPR0VnODZvQlJCd3k0QXdEOUFYeFZVTThzd2dBQUFBQkpSVTVFcmtKZ2cnICtcbiAgICAgICAgJ2c9PSc7XG5cbiAgICBkZUZsYWcgPSAnZGF0YTppbWFnZS9wbmc7YmFzZTY0LGlWQk9SdzBLR2dvQUFBQU5TVWhFVWdBQUFDQUFBQUFnQ0FZQUFBQnplbnIwQUFBQVBFbEVRVlJZdyszV0lSRUFNQUREd1BqWE5rOFpuSVFPQklRLycgK1xuICAgICAgICAnNmhXVlpRUUk4QVVBY0ZHQUFBSGVEb0NUQWdUNEIzQndVb0FBQVhyRkFRSW9GK2hGZFFwK2RzK3ZBQUFBQUVsRlRrU3VRbUNDJztcblxuICAgIGdiRmxhZyA9ICdkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQUNBQUFBQWdDQVlBQUFCemVucjBBQUFCeUVsRVFWUll3KzJXdlV2RFVCVEZBMDR1N1ZUbzBzR3BmNEFvJyArXG4gICAgICAgICcxTDJMNEZBcGRITjAxc2xCY0ZJRUowRWNGRHFxRmFHdWJrSmR0SWhWS1doQm9ialp3YzUrTk1lZVNOSTB2T1RkcG1JZDh1QnQ3K04zVHM2OUx3WUFZNVRUaUFBaWdIOEI4RndvNExQVnd2dEhCNnUnICtcbiAgICAgICAgJzdWWXhON2NPWTNBdWNwZ25VNG5GY1cwY0FxZGtEN1o3RmpRcGVOcmR3bjByaHJWU0NBOUJjV3NadElvRjJ1V3dkZGxWL1JYcisrTmNBSnVZT2NYNVN3VU1tZzZkY3poTDcxVEY3QUx5c2VuU0dlaicgK1xuICAgICAgICAnb05xUnRTQUlWcVBEYmJtRjQ0N1FGd0lTOWEyNzZBMUEwZGdKL3E5ZUlOeG1lSzFwbytBSHYydVpIUCs3b1JCQkNrMm4yWEVrRHFoZ3BBb2xvRUlISERDN0N5Y3lsU1BSQ0ExNDI3Wk5KeGc4TU4wJyArXG4gICAgICAgICdNaG1SYXFWQUFnNTNBQWh4dzlBTFJhekR2cnI2UUNNNG5LS0h2b1RXQWQxUDBPWVlacVFoWkJCWXFBWUxBYU1RV1BnVkFBTUtJUEt3REs0dWpkRkM4QVNZaWx4c0xSWVlpdzFscHdYZ0tYSkVpVWsnICtcbiAgICAgICAgJ1M1YWx5eElPZWxOOEFWU3EyVnpZWk5oczJIUzhBSGJmWUxPeTNXQVRDM0pEQ2VDbm11M1ZYdU1IWVBjTnFSdDlBRHJWN28xQkFPNHVxblBEQVpDb0hoUkE2VWIzcVhlNzRRQklWSWNCMExuaEFFaCcgK1xuICAgICAgICAnVUR3UGc1MGIwVnh3QlJBQ2MzNytIMkd1YWtFUHdBQUFBQUVsRlRrU3VRbUNDJztcblxuICAgIGdldEZsYWcoZmxhZ0NvZGU6IHN0cmluZykge1xuICAgICAgICByZXR1cm4gZmxhZ0NvZGUgPT09ICdzaycgPyB0aGlzLnNrRmxhZyA6IChmbGFnQ29kZSA9PT0gJ2diJyA/IHRoaXMuZ2JGbGFnIDogdGhpcy5kZUZsYWcpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,32 @@
1
+ import { Component } from '@angular/core';
2
+ import { Router } from '@angular/router';
3
+ import { AbstractLogoutShortcutComponent, ConfigurationService, LoggerService, UserService } from '@netgrif/components-core';
4
+ export class LogoutShortcutComponent extends AbstractLogoutShortcutComponent {
5
+ constructor(_user, _log, _config, _router) {
6
+ super(_user, _log, _config, _router);
7
+ this._user = _user;
8
+ this._log = _log;
9
+ this._config = _config;
10
+ this._router = _router;
11
+ }
12
+ }
13
+ LogoutShortcutComponent.ctorParameters = () => [
14
+ { type: UserService },
15
+ { type: LoggerService },
16
+ { type: ConfigurationService },
17
+ { type: Router }
18
+ ];
19
+ LogoutShortcutComponent.decorators = [
20
+ { type: Component, args: [{
21
+ selector: 'nc-logout-shortcut',
22
+ template: "<button mat-icon-button (click)=\"logout()\">\n <mat-icon class=\"logout-icon\">exit_to_app</mat-icon>\n</button>\n",
23
+ styles: [".logout-icon{font-size:24px;text-align:center;cursor:pointer}"]
24
+ },] }
25
+ ];
26
+ LogoutShortcutComponent.ctorParameters = () => [
27
+ { type: UserService },
28
+ { type: LoggerService },
29
+ { type: ConfigurationService },
30
+ { type: Router }
31
+ ];
32
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9nb3V0LXNob3J0Y3V0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvbmF2aWdhdGlvbi9xdWljay1wYW5lbC9jb21wb25lbnRzL2xvZ291dC1zaG9ydGN1dC9sb2dvdXQtc2hvcnRjdXQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDeEMsT0FBTyxFQUFDLE1BQU0sRUFBQyxNQUFNLGlCQUFpQixDQUFDO0FBQ3ZDLE9BQU8sRUFBQywrQkFBK0IsRUFBRSxvQkFBb0IsRUFBRSxhQUFhLEVBQUUsV0FBVyxFQUFDLE1BQU0sMEJBQTBCLENBQUM7QUFPM0gsTUFBTSxPQUFPLHVCQUF3QixTQUFRLCtCQUErQjtJQUV4RSxZQUFzQixLQUFrQixFQUNsQixJQUFtQixFQUNuQixPQUE2QixFQUM3QixPQUFlO1FBQ2pDLEtBQUssQ0FBQyxLQUFLLEVBQUUsSUFBSSxFQUFFLE9BQU8sRUFBRSxPQUFPLENBQUMsQ0FBQztRQUpuQixVQUFLLEdBQUwsS0FBSyxDQUFhO1FBQ2xCLFNBQUksR0FBSixJQUFJLENBQWU7UUFDbkIsWUFBTyxHQUFQLE9BQU8sQ0FBc0I7UUFDN0IsWUFBTyxHQUFQLE9BQU8sQ0FBUTtJQUVyQyxDQUFDOzs7WUFMNEIsV0FBVztZQUNaLGFBQWE7WUFDVixvQkFBb0I7WUFDcEIsTUFBTTs7O1lBVnhDLFNBQVMsU0FBQztnQkFDUCxRQUFRLEVBQUUsb0JBQW9CO2dCQUM5QixrSUFBK0M7O2FBRWxEOzs7WUFONkUsV0FBVztZQUExQixhQUFhO1lBQW5DLG9CQUFvQjtZQURyRCxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtSb3V0ZXJ9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQge0Fic3RyYWN0TG9nb3V0U2hvcnRjdXRDb21wb25lbnQsIENvbmZpZ3VyYXRpb25TZXJ2aWNlLCBMb2dnZXJTZXJ2aWNlLCBVc2VyU2VydmljZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1sb2dvdXQtc2hvcnRjdXQnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9sb2dvdXQtc2hvcnRjdXQuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL2xvZ291dC1zaG9ydGN1dC5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIExvZ291dFNob3J0Y3V0Q29tcG9uZW50IGV4dGVuZHMgQWJzdHJhY3RMb2dvdXRTaG9ydGN1dENvbXBvbmVudCB7XG5cbiAgICBjb25zdHJ1Y3Rvcihwcm90ZWN0ZWQgX3VzZXI6IFVzZXJTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHByb3RlY3RlZCBfbG9nOiBMb2dnZXJTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHByb3RlY3RlZCBfY29uZmlnOiBDb25maWd1cmF0aW9uU2VydmljZSxcbiAgICAgICAgICAgICAgICBwcm90ZWN0ZWQgX3JvdXRlcjogUm91dGVyKSB7XG4gICAgICAgIHN1cGVyKF91c2VyLCBfbG9nLCBfY29uZmlnLCBfcm91dGVyKTtcbiAgICB9XG59XG4iXX0=
@@ -0,0 +1,25 @@
1
+ import { Component } from '@angular/core';
2
+ import { AbstractQuickPanelComponent, LanguageService, PaperViewService } from '@netgrif/components-core';
3
+ export class QuickPanelComponent extends AbstractQuickPanelComponent {
4
+ constructor(_select, _paperView) {
5
+ super(_select, _paperView);
6
+ this._select = _select;
7
+ this._paperView = _paperView;
8
+ }
9
+ }
10
+ QuickPanelComponent.ctorParameters = () => [
11
+ { type: LanguageService },
12
+ { type: PaperViewService }
13
+ ];
14
+ QuickPanelComponent.decorators = [
15
+ { type: Component, args: [{
16
+ selector: 'nc-quick-panel',
17
+ template: "<div fxLayout=\"row\" fxLayoutAlign=\"space-between center\" class=\"quick-panel\" [style.width.px]=\"width\">\n <nc-language-selector *ngIf=\"items.includes('language')\" [language]=\"getLang()\"></nc-language-selector>\n <nc-internal-link *ngIf=\"items.includes('settings')\" icon=\"settings\" link=\"/settings\"></nc-internal-link>\n <nc-logout-shortcut *ngIf=\"items.includes('logout')\"></nc-logout-shortcut>\n\n <button mat-icon-button [matMenuTriggerFor]=\"quickPanelMoreMenu\">\n <mat-icon class=\"quick-panel-more-icon\">more_vert</mat-icon>\n </button>\n</div>\n<mat-menu #quickPanelMoreMenu=\"matMenu\">\n <button mat-menu-item (click)=\"setPaperView()\" fxLayout=\"row\" fxLayoutAlign=\"start center\">\n <mat-icon *ngIf=\"isPaperView()\">cancel</mat-icon>\n <mat-icon *ngIf=\"!isPaperView()\">check</mat-icon>\n <span>{{isPaperView() ? 'Disable' : 'Enable'}} Paper View</span>\n </button>\n</mat-menu>\n",
18
+ styles: [".quick-panel{height:62px;padding:8px}.quick-panel-more-icon{text-align:center;font-size:24px}"]
19
+ },] }
20
+ ];
21
+ QuickPanelComponent.ctorParameters = () => [
22
+ { type: LanguageService },
23
+ { type: PaperViewService }
24
+ ];
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVpY2stcGFuZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9uYXZpZ2F0aW9uL3F1aWNrLXBhbmVsL2NvbXBvbmVudHMvcXVpY2stcGFuZWwuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDeEMsT0FBTyxFQUFDLDJCQUEyQixFQUFFLGVBQWUsRUFBRSxnQkFBZ0IsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBT3hHLE1BQU0sT0FBTyxtQkFBb0IsU0FBUSwyQkFBMkI7SUFDaEUsWUFBc0IsT0FBd0IsRUFBWSxVQUE0QjtRQUNsRixLQUFLLENBQUMsT0FBTyxFQUFFLFVBQVUsQ0FBQyxDQUFDO1FBRFQsWUFBTyxHQUFQLE9BQU8sQ0FBaUI7UUFBWSxlQUFVLEdBQVYsVUFBVSxDQUFrQjtJQUV0RixDQUFDOzs7WUFGOEIsZUFBZTtZQUF3QixnQkFBZ0I7OztZQU56RixTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLGdCQUFnQjtnQkFDMUIsaTlCQUEyQzs7YUFFOUM7OztZQU5vQyxlQUFlO1lBQUUsZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdFF1aWNrUGFuZWxDb21wb25lbnQsIExhbmd1YWdlU2VydmljZSwgUGFwZXJWaWV3U2VydmljZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1xdWljay1wYW5lbCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL3F1aWNrLXBhbmVsLmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9xdWljay1wYW5lbC5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIFF1aWNrUGFuZWxDb21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdFF1aWNrUGFuZWxDb21wb25lbnQge1xuICAgIGNvbnN0cnVjdG9yKHByb3RlY3RlZCBfc2VsZWN0OiBMYW5ndWFnZVNlcnZpY2UsIHByb3RlY3RlZCBfcGFwZXJWaWV3OiBQYXBlclZpZXdTZXJ2aWNlKSB7XG4gICAgICAgIHN1cGVyKF9zZWxlY3QsIF9wYXBlclZpZXcpO1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,9 @@
1
+ /* MODULES */
2
+ export * from './quick-panel.module';
3
+ /* COMPONENTS */
4
+ export * from './components/quick-panel.component';
5
+ export * from './components/internal-link/internal-link.component';
6
+ export * from './components/logout-shortcut/logout-shortcut.component';
7
+ export * from './components/language-selector/language-selector.component';
8
+ /* SERVICES */
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvbmF2aWdhdGlvbi9xdWljay1wYW5lbC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGFBQWE7QUFDYixjQUFjLHNCQUFzQixDQUFDO0FBRXJDLGdCQUFnQjtBQUNoQixjQUFjLG9DQUFvQyxDQUFDO0FBQ25ELGNBQWMsb0RBQW9ELENBQUM7QUFDbkUsY0FBYyx3REFBd0QsQ0FBQztBQUN2RSxjQUFjLDREQUE0RCxDQUFDO0FBRTNFLGNBQWMiLCJzb3VyY2VzQ29udGVudCI6WyIvKiBNT0RVTEVTICovXG5leHBvcnQgKiBmcm9tICcuL3F1aWNrLXBhbmVsLm1vZHVsZSc7XG5cbi8qIENPTVBPTkVOVFMgKi9cbmV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9xdWljay1wYW5lbC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL2ludGVybmFsLWxpbmsvaW50ZXJuYWwtbGluay5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL2xvZ291dC1zaG9ydGN1dC9sb2dvdXQtc2hvcnRjdXQuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9sYW5ndWFnZS1zZWxlY3Rvci9sYW5ndWFnZS1zZWxlY3Rvci5jb21wb25lbnQnO1xuXG4vKiBTRVJWSUNFUyAqL1xuIl19
@@ -0,0 +1,33 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { QuickPanelComponent } from './components/quick-panel.component';
4
+ import { LogoutShortcutComponent } from './components/logout-shortcut/logout-shortcut.component';
5
+ import { LanguageSelectorComponent } from './components/language-selector/language-selector.component';
6
+ import { InternalLinkComponent } from './components/internal-link/internal-link.component';
7
+ import { RouterModule } from '@angular/router';
8
+ import { MaterialModule, TranslateLibModule } from '@netgrif/components-core';
9
+ export class QuickPanelComponentModule {
10
+ }
11
+ QuickPanelComponentModule.decorators = [
12
+ { type: NgModule, args: [{
13
+ declarations: [
14
+ QuickPanelComponent,
15
+ LogoutShortcutComponent,
16
+ LanguageSelectorComponent,
17
+ InternalLinkComponent
18
+ ],
19
+ exports: [
20
+ QuickPanelComponent,
21
+ LogoutShortcutComponent,
22
+ LanguageSelectorComponent,
23
+ InternalLinkComponent
24
+ ],
25
+ imports: [
26
+ CommonModule,
27
+ RouterModule,
28
+ MaterialModule,
29
+ TranslateLibModule
30
+ ]
31
+ },] }
32
+ ];
33
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicXVpY2stcGFuZWwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9uYXZpZ2F0aW9uL3F1aWNrLXBhbmVsL3F1aWNrLXBhbmVsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3ZDLE9BQU8sRUFBQyxZQUFZLEVBQUMsTUFBTSxpQkFBaUIsQ0FBQztBQUM3QyxPQUFPLEVBQUMsbUJBQW1CLEVBQUMsTUFBTSxvQ0FBb0MsQ0FBQztBQUN2RSxPQUFPLEVBQUMsdUJBQXVCLEVBQUMsTUFBTSx3REFBd0QsQ0FBQztBQUMvRixPQUFPLEVBQUMseUJBQXlCLEVBQUMsTUFBTSw0REFBNEQsQ0FBQztBQUNyRyxPQUFPLEVBQUMscUJBQXFCLEVBQUMsTUFBTSxvREFBb0QsQ0FBQztBQUN6RixPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFDLGNBQWMsRUFBRSxrQkFBa0IsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBdUI1RSxNQUFNLE9BQU8seUJBQXlCOzs7WUFwQnJDLFFBQVEsU0FBQztnQkFDTixZQUFZLEVBQUU7b0JBQ1YsbUJBQW1CO29CQUNuQix1QkFBdUI7b0JBQ3ZCLHlCQUF5QjtvQkFDekIscUJBQXFCO2lCQUN4QjtnQkFDRCxPQUFPLEVBQUU7b0JBQ0wsbUJBQW1CO29CQUNuQix1QkFBdUI7b0JBQ3ZCLHlCQUF5QjtvQkFDekIscUJBQXFCO2lCQUN4QjtnQkFDRCxPQUFPLEVBQUU7b0JBQ0wsWUFBWTtvQkFDWixZQUFZO29CQUNaLGNBQWM7b0JBQ2Qsa0JBQWtCO2lCQUNyQjthQUNKIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge0NvbW1vbk1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7UXVpY2tQYW5lbENvbXBvbmVudH0gZnJvbSAnLi9jb21wb25lbnRzL3F1aWNrLXBhbmVsLmNvbXBvbmVudCc7XG5pbXBvcnQge0xvZ291dFNob3J0Y3V0Q29tcG9uZW50fSBmcm9tICcuL2NvbXBvbmVudHMvbG9nb3V0LXNob3J0Y3V0L2xvZ291dC1zaG9ydGN1dC5jb21wb25lbnQnO1xuaW1wb3J0IHtMYW5ndWFnZVNlbGVjdG9yQ29tcG9uZW50fSBmcm9tICcuL2NvbXBvbmVudHMvbGFuZ3VhZ2Utc2VsZWN0b3IvbGFuZ3VhZ2Utc2VsZWN0b3IuY29tcG9uZW50JztcbmltcG9ydCB7SW50ZXJuYWxMaW5rQ29tcG9uZW50fSBmcm9tICcuL2NvbXBvbmVudHMvaW50ZXJuYWwtbGluay9pbnRlcm5hbC1saW5rLmNvbXBvbmVudCc7XG5pbXBvcnQge1JvdXRlck1vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7TWF0ZXJpYWxNb2R1bGUsIFRyYW5zbGF0ZUxpYk1vZHVsZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcblxuXG5ATmdNb2R1bGUoe1xuICAgIGRlY2xhcmF0aW9uczogW1xuICAgICAgICBRdWlja1BhbmVsQ29tcG9uZW50LFxuICAgICAgICBMb2dvdXRTaG9ydGN1dENvbXBvbmVudCxcbiAgICAgICAgTGFuZ3VhZ2VTZWxlY3RvckNvbXBvbmVudCxcbiAgICAgICAgSW50ZXJuYWxMaW5rQ29tcG9uZW50XG4gICAgXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIFF1aWNrUGFuZWxDb21wb25lbnQsXG4gICAgICAgIExvZ291dFNob3J0Y3V0Q29tcG9uZW50LFxuICAgICAgICBMYW5ndWFnZVNlbGVjdG9yQ29tcG9uZW50LFxuICAgICAgICBJbnRlcm5hbExpbmtDb21wb25lbnRcbiAgICBdLFxuICAgIGltcG9ydHM6IFtcbiAgICAgICAgQ29tbW9uTW9kdWxlLFxuICAgICAgICBSb3V0ZXJNb2R1bGUsXG4gICAgICAgIE1hdGVyaWFsTW9kdWxlLFxuICAgICAgICBUcmFuc2xhdGVMaWJNb2R1bGVcbiAgICBdXG59KVxuZXhwb3J0IGNsYXNzIFF1aWNrUGFuZWxDb21wb25lbnRNb2R1bGUge1xufVxuIl19
@@ -0,0 +1,50 @@
1
+ import { Component, Optional } from '@angular/core';
2
+ import { AbstractCasePanelComponent, CaseViewService, LoggerService, OverflowService, UserService } from '@netgrif/components-core';
3
+ import { CaseResourceService, PermissionService } from '@netgrif/components-core';
4
+ import { SnackBarService } from '@netgrif/components-core';
5
+ import { TranslateService } from '@ngx-translate/core';
6
+ import { CurrencyPipe } from '@angular/common';
7
+ export class CasePanelComponent extends AbstractCasePanelComponent {
8
+ constructor(_caseResourceService, _caseViewService, _snackBarService, _translateService, _log, _overflowService, _userService, _currencyPipe, _permissionService) {
9
+ super(_caseResourceService, _caseViewService, _snackBarService, _translateService, _log, _overflowService, _userService, _currencyPipe, _permissionService);
10
+ this._caseResourceService = _caseResourceService;
11
+ this._caseViewService = _caseViewService;
12
+ this._snackBarService = _snackBarService;
13
+ this._translateService = _translateService;
14
+ this._log = _log;
15
+ this._overflowService = _overflowService;
16
+ this._userService = _userService;
17
+ this._currencyPipe = _currencyPipe;
18
+ this._permissionService = _permissionService;
19
+ }
20
+ }
21
+ CasePanelComponent.ctorParameters = () => [
22
+ { type: CaseResourceService },
23
+ { type: CaseViewService },
24
+ { type: SnackBarService },
25
+ { type: TranslateService },
26
+ { type: LoggerService },
27
+ { type: OverflowService, decorators: [{ type: Optional }] },
28
+ { type: UserService },
29
+ { type: CurrencyPipe },
30
+ { type: PermissionService }
31
+ ];
32
+ CasePanelComponent.decorators = [
33
+ { type: Component, args: [{
34
+ selector: 'nc-case-panel',
35
+ template: "<nc-app-panel [panelHeader]=\"casePanelHeader\" [preventExpand]=\"true\" [first]=\"first\" [last]=\"last\" [caseColor] = case_.color>\n <ng-template #casePanelHeader>\n <div fxLayoutAlign=\"start center\" fxLayout=\"row\" fxFlex=\"95\" (click)=\"preventSelectionClick($event)\">\n <div fxFlex class=\"text-column-div\" [ngClass]=\"{'panel-header-padding': !textEllipsis}\" [ngStyle]=\"{'min-width': getMinWidth()}\">\n <span class=\"text-column-margin\" fxLayoutAlign=\"start center\">\n <mat-icon class=\"case-panel-icon panel-primary-icon\" *ngIf=\"showCasePanelIcon\">\n {{case_.icon ? case_.icon : 'label'}}</mat-icon>\n <span [ngClass]=\"{\n 'text-column-ellipsis': textEllipsis,\n 'text-column-word-wrap': !textEllipsis\n }\">{{firstFeaturedValue}}</span>\n </span>\n </div>\n <div *ngFor=\"let field of featuredFieldsValues; let i = index\" fxFlex\n class=\"text-column-div\" [ngStyle]=\"{'min-width': getMinWidth()}\"\n [fxHide.lt-xl]=\"i >= 3 && responsiveBody\"\n [fxHide.lt-lg]=\"i >= 2 && responsiveBody\"\n [fxHide.lt-md]=\"i >= 1 && responsiveBody\"\n [fxHide.lt-sm]=\"i >= 0 && responsiveBody\"\n [ngClass]=\"{'panel-header-padding': !textEllipsis && field.type !== 'button'}\">\n <span class=\"text-column-margin\" fxLayoutAlign=\"start center\">\n <mat-icon class=\"case-panel-icon panel-primary-icon\"\n *ngIf=\"field.icon && field.value && field.type !== 'button'\">{{field.icon}}</mat-icon>\n <ng-container [ngSwitch]=\"field.type\">\n <span *ngSwitchDefault\n [ngClass]=\"{'text-column-ellipsis': textEllipsis, 'text-column-word-wrap': !textEllipsis}\"\n [matTooltip]=\"field.value\"\n [matTooltipDisabled]=\"!textEllipsis\"\n [matTooltipClass]=\"'pre-line-dialog'\">{{field.value}}</span>\n <button *ngSwitchCase=\"'button'\" mat-flat-button color=\"primary\">{{field.value}}</button>\n <nc-immediate-filter-text *ngSwitchCase=\"'filter'\"\n [filterMetadata]=\"field.filterMetadata\"\n [ellipsis]=\"textEllipsis\"\n class=\"width-100\">\n </nc-immediate-filter-text>\n </ng-container>\n </span>\n </div>\n </div>\n <div fxLayout=\"row\" fxLayoutAlign=\"end center\" fxFlex=\"5\">\n <div *ngIf=\"showDeleteMenu && canDelete()\">\n <button mat-icon-button (click)=\"show($event)\" [matMenuTriggerFor]=\"menu\">\n <mat-icon>more_vert</mat-icon>\n </button>\n <mat-menu #menu=\"matMenu\">\n <button mat-menu-item (click)=\"deleteCase()\">\n <mat-icon>delete</mat-icon>\n <span>{{ 'panel.case.delete' | translate}}</span>\n </button>\n </mat-menu>\n </div>\n </div>\n </ng-template>\n</nc-app-panel>\n",
36
+ styles: [".case-panel-icon{margin-right:8px}.panel-main-content{margin-top:16px}.text-column-ellipsis{white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}.text-column-word-wrap{word-break:break-word!important;white-space:pre-line!important}.text-column-margin{margin-right:15px;line-height:24px}.text-column-div{min-width:0;width:0}.panel-header-padding{padding:12px 0!important}.width-100{width:100%}.pre-line-dialog{white-space:pre-line!important}"]
37
+ },] }
38
+ ];
39
+ CasePanelComponent.ctorParameters = () => [
40
+ { type: CaseResourceService },
41
+ { type: CaseViewService },
42
+ { type: SnackBarService },
43
+ { type: TranslateService },
44
+ { type: LoggerService },
45
+ { type: OverflowService, decorators: [{ type: Optional }] },
46
+ { type: UserService },
47
+ { type: CurrencyPipe },
48
+ { type: PermissionService }
49
+ ];
50
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FzZS1wYW5lbC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AbmV0Z3JpZi9jb21wb25lbnRzLyIsInNvdXJjZXMiOlsibGliL3BhbmVsL2Nhc2UtcGFuZWwvY2FzZS1wYW5lbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxRQUFRLEVBQUMsTUFBTSxlQUFlLENBQUM7QUFDbEQsT0FBTyxFQUFDLDBCQUEwQixFQUFFLGVBQWUsRUFBRSxhQUFhLEVBQUUsZUFBZSxFQUFFLFdBQVcsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ2xJLE9BQU8sRUFBQyxtQkFBbUIsRUFBRSxpQkFBaUIsRUFBQyxNQUFNLDBCQUEwQixDQUFDO0FBQ2hGLE9BQU8sRUFBQyxlQUFlLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUN6RCxPQUFPLEVBQUMsZ0JBQWdCLEVBQUMsTUFBTSxxQkFBcUIsQ0FBQztBQUNyRCxPQUFPLEVBQUMsWUFBWSxFQUFDLE1BQU0saUJBQWlCLENBQUM7QUFPN0MsTUFBTSxPQUFPLGtCQUFtQixTQUFRLDBCQUEwQjtJQUM5RCxZQUFzQixvQkFBeUMsRUFBWSxnQkFBaUMsRUFDdEYsZ0JBQWlDLEVBQVksaUJBQW1DLEVBQ2hGLElBQW1CLEVBQXdCLGdCQUFpQyxFQUM1RSxZQUF5QixFQUFZLGFBQTJCLEVBQ25FLGtCQUFxQztRQUNwRCxLQUFLLENBQUMsb0JBQW9CLEVBQUUsZ0JBQWdCLEVBQUUsZ0JBQWdCLEVBQzFELGlCQUFpQixFQUFFLElBQUksRUFBRSxnQkFBZ0IsRUFBRSxZQUFZLEVBQUUsYUFBYSxFQUFFLGtCQUFrQixDQUFDLENBQUM7UUFOOUUseUJBQW9CLEdBQXBCLG9CQUFvQixDQUFxQjtRQUFZLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBaUI7UUFDdEYscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFpQjtRQUFZLHNCQUFpQixHQUFqQixpQkFBaUIsQ0FBa0I7UUFDaEYsU0FBSSxHQUFKLElBQUksQ0FBZTtRQUF3QixxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWlCO1FBQzVFLGlCQUFZLEdBQVosWUFBWSxDQUFhO1FBQVksa0JBQWEsR0FBYixhQUFhLENBQWM7UUFDbkUsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFtQjtJQUd4RCxDQUFDOzs7WUFQMkMsbUJBQW1CO1lBQThCLGVBQWU7WUFDcEUsZUFBZTtZQUErQixnQkFBZ0I7WUFDMUUsYUFBYTtZQUEwQyxlQUFlLHVCQUF0RCxRQUFRO1lBQ2hCLFdBQVc7WUFBMkIsWUFBWTtZQUMvQyxpQkFBaUI7OztZQVYzRCxTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLGVBQWU7Z0JBQ3pCLHc5R0FBMEM7O2FBRTdDOzs7WUFUTyxtQkFBbUI7WUFEUyxlQUFlO1lBRTNDLGVBQWU7WUFDZixnQkFBZ0I7WUFINkIsYUFBYTtZQUFFLGVBQWUsdUJBY25DLFFBQVE7WUFkNkIsV0FBVztZQUl4RixZQUFZO1lBSFMsaUJBQWlCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIE9wdGlvbmFsfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7QWJzdHJhY3RDYXNlUGFuZWxDb21wb25lbnQsIENhc2VWaWV3U2VydmljZSwgTG9nZ2VyU2VydmljZSwgT3ZlcmZsb3dTZXJ2aWNlLCBVc2VyU2VydmljZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcbmltcG9ydCB7Q2FzZVJlc291cmNlU2VydmljZSwgUGVybWlzc2lvblNlcnZpY2V9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5pbXBvcnQge1NuYWNrQmFyU2VydmljZX0gZnJvbSAnQG5ldGdyaWYvY29tcG9uZW50cy1jb3JlJztcbmltcG9ydCB7VHJhbnNsYXRlU2VydmljZX0gZnJvbSAnQG5neC10cmFuc2xhdGUvY29yZSc7XG5pbXBvcnQge0N1cnJlbmN5UGlwZX0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1jYXNlLXBhbmVsJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vY2FzZS1wYW5lbC5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vY2FzZS1wYW5lbC5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIENhc2VQYW5lbENvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0Q2FzZVBhbmVsQ29tcG9uZW50IHtcbiAgICBjb25zdHJ1Y3Rvcihwcm90ZWN0ZWQgX2Nhc2VSZXNvdXJjZVNlcnZpY2U6IENhc2VSZXNvdXJjZVNlcnZpY2UsIHByb3RlY3RlZCBfY2FzZVZpZXdTZXJ2aWNlOiBDYXNlVmlld1NlcnZpY2UsXG4gICAgICAgICAgICAgICAgcHJvdGVjdGVkIF9zbmFja0JhclNlcnZpY2U6IFNuYWNrQmFyU2VydmljZSwgcHJvdGVjdGVkIF90cmFuc2xhdGVTZXJ2aWNlOiBUcmFuc2xhdGVTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHByb3RlY3RlZCBfbG9nOiBMb2dnZXJTZXJ2aWNlLCBAT3B0aW9uYWwoKSBwcm90ZWN0ZWQgX292ZXJmbG93U2VydmljZTogT3ZlcmZsb3dTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHByb3RlY3RlZCBfdXNlclNlcnZpY2U6IFVzZXJTZXJ2aWNlLCBwcm90ZWN0ZWQgX2N1cnJlbmN5UGlwZTogQ3VycmVuY3lQaXBlLFxuICAgICAgICAgICAgICAgIHB1YmxpYyBfcGVybWlzc2lvblNlcnZpY2U6IFBlcm1pc3Npb25TZXJ2aWNlKSB7XG4gICAgICAgIHN1cGVyKF9jYXNlUmVzb3VyY2VTZXJ2aWNlLCBfY2FzZVZpZXdTZXJ2aWNlLCBfc25hY2tCYXJTZXJ2aWNlLFxuICAgICAgICAgICAgX3RyYW5zbGF0ZVNlcnZpY2UsIF9sb2csIF9vdmVyZmxvd1NlcnZpY2UsIF91c2VyU2VydmljZSwgX2N1cnJlbmN5UGlwZSwgX3Blcm1pc3Npb25TZXJ2aWNlKTtcbiAgICB9XG59XG4iXX0=
@@ -0,0 +1,25 @@
1
+ import { Component, Injector } from '@angular/core';
2
+ import { AbstractImmediateFilterTextComponent } from '@netgrif/components-core';
3
+ import { ImmediateFilterTextContentComponent } from '../immediate-filter-text-content/immediate-filter-text-content.component';
4
+ export class ImmediateFilterTextComponent extends AbstractImmediateFilterTextComponent {
5
+ constructor(parentInjector) {
6
+ super(parentInjector);
7
+ }
8
+ getFilterTextContentComponent() {
9
+ return ImmediateFilterTextContentComponent;
10
+ }
11
+ }
12
+ ImmediateFilterTextComponent.ctorParameters = () => [
13
+ { type: Injector }
14
+ ];
15
+ ImmediateFilterTextComponent.decorators = [
16
+ { type: Component, args: [{
17
+ selector: 'nc-immediate-filter-text',
18
+ template: "<ng-template [ngIf]=\"initialized\">\n <ng-template [cdkPortalOutlet]=\"portal\"></ng-template>\n</ng-template>\n",
19
+ styles: [""]
20
+ },] }
21
+ ];
22
+ ImmediateFilterTextComponent.ctorParameters = () => [
23
+ { type: Injector }
24
+ ];
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW1tZWRpYXRlLWZpbHRlci10ZXh0LmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BuZXRncmlmL2NvbXBvbmVudHMvIiwic291cmNlcyI6WyJsaWIvcGFuZWwvaW1tZWRpYXRlL2ltbWVkaWF0ZS1maWx0ZXItdGV4dC9pbW1lZGlhdGUtZmlsdGVyLXRleHQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUNBLE9BQU8sRUFBQyxTQUFTLEVBQUUsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2xELE9BQU8sRUFBQyxvQ0FBb0MsRUFBOEMsTUFBTSwwQkFBMEIsQ0FBQztBQUMzSCxPQUFPLEVBQUMsbUNBQW1DLEVBQUMsTUFBTSwwRUFBMEUsQ0FBQztBQU83SCxNQUFNLE9BQU8sNEJBQTZCLFNBQVEsb0NBQW9DO0lBRWxGLFlBQVksY0FBd0I7UUFDaEMsS0FBSyxDQUFDLGNBQWMsQ0FBQyxDQUFDO0lBQzFCLENBQUM7SUFFUyw2QkFBNkI7UUFDbkMsT0FBTyxtQ0FBbUMsQ0FBQztJQUMvQyxDQUFDOzs7WUFOMkIsUUFBUTs7O1lBUHZDLFNBQVMsU0FBQztnQkFDUCxRQUFRLEVBQUUsMEJBQTBCO2dCQUNwQyxnSUFBcUQ7O2FBRXhEOzs7WUFSa0IsUUFBUSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50VHlwZX0gZnJvbSAnQGFuZ3VsYXIvY2RrL3BvcnRhbCc7XG5pbXBvcnQge0NvbXBvbmVudCwgSW5qZWN0b3J9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdEltbWVkaWF0ZUZpbHRlclRleHRDb21wb25lbnQsIEFic3RyYWN0SW1tZWRpYXRlRmlsdGVyVGV4dENvbnRlbnRDb21wb25lbnR9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5pbXBvcnQge0ltbWVkaWF0ZUZpbHRlclRleHRDb250ZW50Q29tcG9uZW50fSBmcm9tICcuLi9pbW1lZGlhdGUtZmlsdGVyLXRleHQtY29udGVudC9pbW1lZGlhdGUtZmlsdGVyLXRleHQtY29udGVudC5jb21wb25lbnQnO1xuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ25jLWltbWVkaWF0ZS1maWx0ZXItdGV4dCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2ltbWVkaWF0ZS1maWx0ZXItdGV4dC5jb21wb25lbnQuaHRtbCcsXG4gICAgc3R5bGVVcmxzOiBbJy4vaW1tZWRpYXRlLWZpbHRlci10ZXh0LmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgSW1tZWRpYXRlRmlsdGVyVGV4dENvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0SW1tZWRpYXRlRmlsdGVyVGV4dENvbXBvbmVudCB7XG5cbiAgICBjb25zdHJ1Y3RvcihwYXJlbnRJbmplY3RvcjogSW5qZWN0b3IpIHtcbiAgICAgICAgc3VwZXIocGFyZW50SW5qZWN0b3IpO1xuICAgIH1cblxuICAgIHByb3RlY3RlZCBnZXRGaWx0ZXJUZXh0Q29udGVudENvbXBvbmVudCgpOiBDb21wb25lbnRUeXBlPEFic3RyYWN0SW1tZWRpYXRlRmlsdGVyVGV4dENvbnRlbnRDb21wb25lbnQ+IHtcbiAgICAgICAgcmV0dXJuIEltbWVkaWF0ZUZpbHRlclRleHRDb250ZW50Q29tcG9uZW50O1xuICAgIH1cbn1cbiJdfQ==
@@ -0,0 +1,46 @@
1
+ import { Component, Inject } from '@angular/core';
2
+ import { AbstractImmediateFilterTextContentComponent, NAE_FILTER_TEXT, FilterTextConfiguration, SearchService, NAE_BASE_FILTER, BaseFilter, SimpleFilter, AllowedNetsServiceFactory, AllowedNetsService, CategoryFactory, Category, NAE_SEARCH_CATEGORIES, } from '@netgrif/components-core';
3
+ import { TranslateService } from '@ngx-translate/core';
4
+ export function filterTextBaseFilterFactory(configuration) {
5
+ return {
6
+ filter: SimpleFilter.empty(configuration.metadata.filterMetadata.filterType)
7
+ };
8
+ }
9
+ export function filterTextAllowedNetsFactory(factory, configuration) {
10
+ return factory.createFromArray(configuration.metadata.allowedNets);
11
+ }
12
+ export function filterTextCategoriesFactory(factory, configuration) {
13
+ const categories = configuration.metadata.filterMetadata.searchCategories.map(c => factory.getByNameWithDefaultOperator(c));
14
+ categories.forEach(c => c.destroy());
15
+ return categories;
16
+ }
17
+ export class ImmediateFilterTextContentComponent extends AbstractImmediateFilterTextContentComponent {
18
+ constructor(configuration, textSearchService, translateService) {
19
+ super(configuration, textSearchService, translateService);
20
+ }
21
+ }
22
+ ImmediateFilterTextContentComponent.ctorParameters = () => [
23
+ { type: undefined, decorators: [{ type: Inject, args: [NAE_FILTER_TEXT,] }] },
24
+ { type: SearchService },
25
+ { type: TranslateService }
26
+ ];
27
+ ImmediateFilterTextContentComponent.decorators = [
28
+ { type: Component, args: [{
29
+ selector: 'nc-immediate-filter-text-content',
30
+ template: "<div [matTooltip]=\"ellipsis ? tooltip : null\" [ngClass]=\"{'ellipsis': ellipsis}\" fxFlex>\n <ng-template ngFor let-segment [ngForOf]=\"segments\">\n <span [ngClass]=\"{'bold-text': segment.bold}\" class=\"span-margin\">\n {{segment.uppercase ? (segment.segment | translate | uppercase) : (segment.segment | translate)}}\n </span>\n </ng-template>\n</div>\n",
31
+ providers: [
32
+ { provide: NAE_BASE_FILTER, useFactory: filterTextBaseFilterFactory, deps: [NAE_FILTER_TEXT] },
33
+ { provide: AllowedNetsService, useFactory: filterTextAllowedNetsFactory, deps: [AllowedNetsServiceFactory, NAE_FILTER_TEXT] },
34
+ { provide: NAE_SEARCH_CATEGORIES, useFactory: filterTextCategoriesFactory, deps: [CategoryFactory, NAE_FILTER_TEXT] },
35
+ CategoryFactory,
36
+ SearchService,
37
+ ],
38
+ styles: [".bold-text{font-weight:700}.span-margin{margin-right:.4ex}.ellipsis{word-break:break-word!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}"]
39
+ },] }
40
+ ];
41
+ ImmediateFilterTextContentComponent.ctorParameters = () => [
42
+ { type: undefined, decorators: [{ type: Inject, args: [NAE_FILTER_TEXT,] }] },
43
+ { type: SearchService },
44
+ { type: TranslateService }
45
+ ];
46
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW1tZWRpYXRlLWZpbHRlci10ZXh0LWNvbnRlbnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9wYW5lbC9pbW1lZGlhdGUvaW1tZWRpYXRlLWZpbHRlci10ZXh0LWNvbnRlbnQvaW1tZWRpYXRlLWZpbHRlci10ZXh0LWNvbnRlbnQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsTUFBTSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ2hELE9BQU8sRUFDSCwyQ0FBMkMsRUFDM0MsZUFBZSxFQUNmLHVCQUF1QixFQUN2QixhQUFhLEVBQ2IsZUFBZSxFQUNmLFVBQVUsRUFDVixZQUFZLEVBQ1oseUJBQXlCLEVBQ3pCLGtCQUFrQixFQUNsQixlQUFlLEVBQ2YsUUFBUSxFQUNSLHFCQUFxQixHQUN4QixNQUFNLDBCQUEwQixDQUFDO0FBQ2xDLE9BQU8sRUFBQyxnQkFBZ0IsRUFBQyxNQUFNLHFCQUFxQixDQUFDO0FBRXJELE1BQU0sVUFBVSwyQkFBMkIsQ0FBQyxhQUFzQztJQUM5RSxPQUFPO1FBQ0gsTUFBTSxFQUFFLFlBQVksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQyxjQUFjLENBQUMsVUFBVSxDQUFDO0tBQy9FLENBQUM7QUFDTixDQUFDO0FBRUQsTUFBTSxVQUFVLDRCQUE0QixDQUFDLE9BQWtDLEVBQ2xDLGFBQXNDO0lBQy9FLE9BQU8sT0FBTyxDQUFDLGVBQWUsQ0FBQyxhQUFhLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxDQUFDO0FBQ3ZFLENBQUM7QUFFRCxNQUFNLFVBQVUsMkJBQTJCLENBQUMsT0FBd0IsRUFBRSxhQUFzQztJQUN4RyxNQUFNLFVBQVUsR0FBRyxhQUFhLENBQUMsUUFBUSxDQUFDLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxPQUFPLENBQUMsNEJBQTRCLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQztJQUM1SCxVQUFVLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLE9BQU8sRUFBRSxDQUFDLENBQUM7SUFDckMsT0FBTyxVQUFVLENBQUM7QUFDdEIsQ0FBQztBQWNELE1BQU0sT0FBTyxtQ0FBb0MsU0FBUSwyQ0FBMkM7SUFFaEcsWUFBcUMsYUFBc0MsRUFDL0QsaUJBQWdDLEVBQ2hDLGdCQUFrQztRQUMxQyxLQUFLLENBQUMsYUFBYSxFQUFFLGlCQUFpQixFQUFFLGdCQUFnQixDQUFDLENBQUM7SUFDOUQsQ0FBQzs7OzRDQUpZLE1BQU0sU0FBQyxlQUFlO1lBQ0osYUFBYTtZQUNkLGdCQUFnQjs7O1lBaEJqRCxTQUFTLFNBQUM7Z0JBQ1AsUUFBUSxFQUFFLGtDQUFrQztnQkFDNUMsa1pBQTZEO2dCQUU3RCxTQUFTLEVBQUU7b0JBQ1AsRUFBQyxPQUFPLEVBQUUsZUFBZSxFQUFFLFVBQVUsRUFBRSwyQkFBMkIsRUFBRSxJQUFJLEVBQUUsQ0FBQyxlQUFlLENBQUMsRUFBQztvQkFDNUYsRUFBQyxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsVUFBVSxFQUFFLDRCQUE0QixFQUFFLElBQUksRUFBRSxDQUFDLHlCQUF5QixFQUFFLGVBQWUsQ0FBQyxFQUFDO29CQUMzSCxFQUFDLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxVQUFVLEVBQUUsMkJBQTJCLEVBQUUsSUFBSSxFQUFFLENBQUMsZUFBZSxFQUFFLGVBQWUsQ0FBQyxFQUFDO29CQUNuSCxlQUFlO29CQUNmLGFBQWE7aUJBQ2hCOzthQUNKOzs7NENBR2dCLE1BQU0sU0FBQyxlQUFlO1lBM0NuQyxhQUFhO1lBVVQsZ0JBQWdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIEluamVjdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge1xuICAgIEFic3RyYWN0SW1tZWRpYXRlRmlsdGVyVGV4dENvbnRlbnRDb21wb25lbnQsXG4gICAgTkFFX0ZJTFRFUl9URVhULFxuICAgIEZpbHRlclRleHRDb25maWd1cmF0aW9uLFxuICAgIFNlYXJjaFNlcnZpY2UsXG4gICAgTkFFX0JBU0VfRklMVEVSLFxuICAgIEJhc2VGaWx0ZXIsXG4gICAgU2ltcGxlRmlsdGVyLFxuICAgIEFsbG93ZWROZXRzU2VydmljZUZhY3RvcnksXG4gICAgQWxsb3dlZE5ldHNTZXJ2aWNlLFxuICAgIENhdGVnb3J5RmFjdG9yeSxcbiAgICBDYXRlZ29yeSxcbiAgICBOQUVfU0VBUkNIX0NBVEVHT1JJRVMsXG59IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5pbXBvcnQge1RyYW5zbGF0ZVNlcnZpY2V9IGZyb20gJ0BuZ3gtdHJhbnNsYXRlL2NvcmUnO1xuXG5leHBvcnQgZnVuY3Rpb24gZmlsdGVyVGV4dEJhc2VGaWx0ZXJGYWN0b3J5KGNvbmZpZ3VyYXRpb246IEZpbHRlclRleHRDb25maWd1cmF0aW9uKTogQmFzZUZpbHRlciB7XG4gICAgcmV0dXJuIHtcbiAgICAgICAgZmlsdGVyOiBTaW1wbGVGaWx0ZXIuZW1wdHkoY29uZmlndXJhdGlvbi5tZXRhZGF0YS5maWx0ZXJNZXRhZGF0YS5maWx0ZXJUeXBlKVxuICAgIH07XG59XG5cbmV4cG9ydCBmdW5jdGlvbiBmaWx0ZXJUZXh0QWxsb3dlZE5ldHNGYWN0b3J5KGZhY3Rvcnk6IEFsbG93ZWROZXRzU2VydmljZUZhY3RvcnksXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBjb25maWd1cmF0aW9uOiBGaWx0ZXJUZXh0Q29uZmlndXJhdGlvbik6IEFsbG93ZWROZXRzU2VydmljZSB7XG4gICAgcmV0dXJuIGZhY3RvcnkuY3JlYXRlRnJvbUFycmF5KGNvbmZpZ3VyYXRpb24ubWV0YWRhdGEuYWxsb3dlZE5ldHMpO1xufVxuXG5leHBvcnQgZnVuY3Rpb24gZmlsdGVyVGV4dENhdGVnb3JpZXNGYWN0b3J5KGZhY3Rvcnk6IENhdGVnb3J5RmFjdG9yeSwgY29uZmlndXJhdGlvbjogRmlsdGVyVGV4dENvbmZpZ3VyYXRpb24pOiBBcnJheTxDYXRlZ29yeTxhbnk+PiB7XG4gICAgY29uc3QgY2F0ZWdvcmllcyA9IGNvbmZpZ3VyYXRpb24ubWV0YWRhdGEuZmlsdGVyTWV0YWRhdGEuc2VhcmNoQ2F0ZWdvcmllcy5tYXAoYyA9PiBmYWN0b3J5LmdldEJ5TmFtZVdpdGhEZWZhdWx0T3BlcmF0b3IoYykpO1xuICAgIGNhdGVnb3JpZXMuZm9yRWFjaChjID0+IGMuZGVzdHJveSgpKTtcbiAgICByZXR1cm4gY2F0ZWdvcmllcztcbn1cblxuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICduYy1pbW1lZGlhdGUtZmlsdGVyLXRleHQtY29udGVudCcsXG4gICAgdGVtcGxhdGVVcmw6ICcuL2ltbWVkaWF0ZS1maWx0ZXItdGV4dC1jb250ZW50LmNvbXBvbmVudC5odG1sJyxcbiAgICBzdHlsZVVybHM6IFsnLi9pbW1lZGlhdGUtZmlsdGVyLXRleHQtY29udGVudC5jb21wb25lbnQuc2NzcyddLFxuICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7cHJvdmlkZTogTkFFX0JBU0VfRklMVEVSLCB1c2VGYWN0b3J5OiBmaWx0ZXJUZXh0QmFzZUZpbHRlckZhY3RvcnksIGRlcHM6IFtOQUVfRklMVEVSX1RFWFRdfSxcbiAgICAgICAge3Byb3ZpZGU6IEFsbG93ZWROZXRzU2VydmljZSwgdXNlRmFjdG9yeTogZmlsdGVyVGV4dEFsbG93ZWROZXRzRmFjdG9yeSwgZGVwczogW0FsbG93ZWROZXRzU2VydmljZUZhY3RvcnksIE5BRV9GSUxURVJfVEVYVF19LFxuICAgICAgICB7cHJvdmlkZTogTkFFX1NFQVJDSF9DQVRFR09SSUVTLCB1c2VGYWN0b3J5OiBmaWx0ZXJUZXh0Q2F0ZWdvcmllc0ZhY3RvcnksIGRlcHM6IFtDYXRlZ29yeUZhY3RvcnksIE5BRV9GSUxURVJfVEVYVF19LFxuICAgICAgICBDYXRlZ29yeUZhY3RvcnksXG4gICAgICAgIFNlYXJjaFNlcnZpY2UsXG4gICAgXVxufSlcbmV4cG9ydCBjbGFzcyBJbW1lZGlhdGVGaWx0ZXJUZXh0Q29udGVudENvbXBvbmVudCBleHRlbmRzIEFic3RyYWN0SW1tZWRpYXRlRmlsdGVyVGV4dENvbnRlbnRDb21wb25lbnQge1xuXG4gICAgY29uc3RydWN0b3IoQEluamVjdChOQUVfRklMVEVSX1RFWFQpIGNvbmZpZ3VyYXRpb246IEZpbHRlclRleHRDb25maWd1cmF0aW9uLFxuICAgICAgICAgICAgICAgIHRleHRTZWFyY2hTZXJ2aWNlOiBTZWFyY2hTZXJ2aWNlLFxuICAgICAgICAgICAgICAgIHRyYW5zbGF0ZVNlcnZpY2U6IFRyYW5zbGF0ZVNlcnZpY2UpIHtcbiAgICAgICAgc3VwZXIoY29uZmlndXJhdGlvbiwgdGV4dFNlYXJjaFNlcnZpY2UsIHRyYW5zbGF0ZVNlcnZpY2UpO1xuICAgIH1cblxufVxuIl19
@@ -0,0 +1,22 @@
1
+ import { Component } from '@angular/core';
2
+ import { AbstractPanelComponent } from '@netgrif/components-core';
3
+ import { CaseListFontColorService } from '@netgrif/components-core';
4
+ export class PanelComponent extends AbstractPanelComponent {
5
+ constructor(caseListFontColorService) {
6
+ super(caseListFontColorService);
7
+ }
8
+ }
9
+ PanelComponent.ctorParameters = () => [
10
+ { type: CaseListFontColorService }
11
+ ];
12
+ PanelComponent.decorators = [
13
+ { type: Component, args: [{
14
+ selector: 'nc-app-panel',
15
+ template: "<mat-expansion-panel [@.disabled]=\"expansionDisabled\" hideToggle (afterExpand)=\"emitExpand()\"\n (afterCollapse)=\"emitCollapse()\" #matExpansionPanel class=\"panel-margin\"\n [ngClass]=\"{'margin-top':first, 'margin-bottom':last}\">\n <mat-expansion-panel-header (click)=\"expandPanel()\" class=\"panel-color header-padding header-min-height\"\n [ngStyle]=\"{'background': caseColor, 'color': getCaseFontColor()}\">\n <mat-panel-description *ngTemplateOutlet=\"panelHeader\">\n </mat-panel-description>\n </mat-expansion-panel-header>\n <ng-template matExpansionPanelContent>\n <div *ngTemplateOutlet=\"panelContent\"></div>\n </ng-template>\n</mat-expansion-panel>\n\n",
16
+ styles: [".mat-expansion-panel-header{border-bottom:1px solid rgba(0,0,0,.03);color:rgba(0,0,0,.87)}.header-padding{padding:0 16px}.header-min-height{min-height:48px!important;height:auto!important}.panel-margin{margin:0 2px}.margin-top{margin-top:2px}.margin-bottom{margin-bottom:2px}"]
17
+ },] }
18
+ ];
19
+ PanelComponent.ctorParameters = () => [
20
+ { type: CaseListFontColorService }
21
+ ];
22
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFuZWwuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQG5ldGdyaWYvY29tcG9uZW50cy8iLCJzb3VyY2VzIjpbImxpYi9wYW5lbC9wYW5lbC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBQyxNQUFNLGVBQWUsQ0FBQztBQUN4QyxPQUFPLEVBQUMsc0JBQXNCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQUNoRSxPQUFPLEVBQUMsd0JBQXdCLEVBQUMsTUFBTSwwQkFBMEIsQ0FBQztBQU9sRSxNQUFNLE9BQU8sY0FBZSxTQUFRLHNCQUFzQjtJQUN0RCxZQUFZLHdCQUFrRDtRQUMxRCxLQUFLLENBQUMsd0JBQXdCLENBQUMsQ0FBQztJQUNwQyxDQUFDOzs7WUFGcUMsd0JBQXdCOzs7WUFOakUsU0FBUyxTQUFDO2dCQUNQLFFBQVEsRUFBRSxjQUFjO2dCQUN4QixxeEJBQXFDOzthQUV4Qzs7O1lBTk8sd0JBQXdCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtBYnN0cmFjdFBhbmVsQ29tcG9uZW50fSBmcm9tICdAbmV0Z3JpZi9jb21wb25lbnRzLWNvcmUnO1xuaW1wb3J0IHtDYXNlTGlzdEZvbnRDb2xvclNlcnZpY2V9IGZyb20gJ0BuZXRncmlmL2NvbXBvbmVudHMtY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICAgIHNlbGVjdG9yOiAnbmMtYXBwLXBhbmVsJyxcbiAgICB0ZW1wbGF0ZVVybDogJy4vcGFuZWwuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL3BhbmVsLmNvbXBvbmVudC5zY3NzJ11cbn0pXG5leHBvcnQgY2xhc3MgUGFuZWxDb21wb25lbnQgZXh0ZW5kcyBBYnN0cmFjdFBhbmVsQ29tcG9uZW50IHtcbiAgICBjb25zdHJ1Y3RvcihjYXNlTGlzdEZvbnRDb2xvclNlcnZpY2U6IENhc2VMaXN0Rm9udENvbG9yU2VydmljZSkge1xuICAgICAgICBzdXBlcihjYXNlTGlzdEZvbnRDb2xvclNlcnZpY2UpO1xuICAgIH1cbn1cbiJdfQ==