ngx-techlify-core 11.4.8 → 11.5.2

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 (627) hide show
  1. package/karma.conf.js +44 -0
  2. package/ng-package.json +27 -0
  3. package/package.json +29 -37
  4. package/src/lib/action-popup/action-popup.component.html +21 -0
  5. package/src/lib/action-popup/action-popup.component.scss +0 -0
  6. package/src/lib/action-popup/action-popup.component.spec.ts +25 -0
  7. package/src/lib/action-popup/action-popup.component.ts +31 -0
  8. package/{lib/action-popup/action-popup.model.d.ts → src/lib/action-popup/action-popup.model.ts} +2 -2
  9. package/src/lib/action-popup/action-popup.module.ts +23 -0
  10. package/{lib/action-popup/index.d.ts → src/lib/action-popup/index.ts} +1 -1
  11. package/src/lib/audit-log/audit-log-for-model/audit-log-for-model-routing.module.ts +10 -0
  12. package/src/lib/audit-log/audit-log-for-model/audit-log-for-model.component.html +9 -0
  13. package/src/lib/audit-log/audit-log-for-model/audit-log-for-model.component.scss +0 -0
  14. package/src/lib/audit-log/audit-log-for-model/audit-log-for-model.component.spec.ts +25 -0
  15. package/src/lib/audit-log/audit-log-for-model/audit-log-for-model.component.ts +49 -0
  16. package/src/lib/audit-log/audit-log-for-model/audit-log-for-model.module.ts +24 -0
  17. package/src/lib/audit-log/audit-log-list/audit-log-list-routing.module.ts +10 -0
  18. package/src/lib/audit-log/audit-log-list/audit-log-list.component.html +92 -0
  19. package/src/lib/audit-log/audit-log-list/audit-log-list.component.scss +21 -0
  20. package/src/lib/audit-log/audit-log-list/audit-log-list.component.spec.ts +25 -0
  21. package/src/lib/audit-log/audit-log-list/audit-log-list.component.ts +138 -0
  22. package/src/lib/audit-log/audit-log-list/audit-log-list.module.ts +28 -0
  23. package/src/lib/audit-log/audit-log-list-filter/audit-log-list-filter-routing.module.ts +10 -0
  24. package/src/lib/audit-log/audit-log-list-filter/audit-log-list-filter.component.html +49 -0
  25. package/src/lib/audit-log/audit-log-list-filter/audit-log-list-filter.component.scss +0 -0
  26. package/src/lib/audit-log/audit-log-list-filter/audit-log-list-filter.component.spec.ts +26 -0
  27. package/src/lib/audit-log/audit-log-list-filter/audit-log-list-filter.component.ts +74 -0
  28. package/src/lib/audit-log/audit-log-list-filter/audit-log-list-filter.module.ts +24 -0
  29. package/src/lib/audit-log/audit-log-routing.module.ts +18 -0
  30. package/src/lib/audit-log/audit-log-view/audit-log-view-routing.module.ts +10 -0
  31. package/src/lib/audit-log/audit-log-view/audit-log-view.component.html +46 -0
  32. package/src/lib/audit-log/audit-log-view/audit-log-view.component.scss +0 -0
  33. package/src/lib/audit-log/audit-log-view/audit-log-view.component.spec.ts +25 -0
  34. package/src/lib/audit-log/audit-log-view/audit-log-view.component.ts +54 -0
  35. package/src/lib/audit-log/audit-log-view/audit-log-view.module.ts +20 -0
  36. package/src/lib/audit-log/audit-log-view-model/audit-log-view-model-routing.module.ts +10 -0
  37. package/src/lib/audit-log/audit-log-view-model/audit-log-view-model.component.html +38 -0
  38. package/src/lib/audit-log/audit-log-view-model/audit-log-view-model.component.scss +4 -0
  39. package/src/lib/audit-log/audit-log-view-model/audit-log-view-model.component.spec.ts +25 -0
  40. package/src/lib/audit-log/audit-log-view-model/audit-log-view-model.component.ts +53 -0
  41. package/src/lib/audit-log/audit-log-view-model/audit-log-view-model.module.ts +20 -0
  42. package/src/lib/audit-log/audit-log.module.ts +20 -0
  43. package/src/lib/audit-log/audit-logs-view-model/audit-logs-view-model-routing.module.ts +10 -0
  44. package/src/lib/audit-log/audit-logs-view-model/audit-logs-view-model.component.html +4 -0
  45. package/src/lib/audit-log/audit-logs-view-model/audit-logs-view-model.component.scss +4 -0
  46. package/src/lib/audit-log/audit-logs-view-model/audit-logs-view-model.component.spec.ts +25 -0
  47. package/src/lib/audit-log/audit-logs-view-model/audit-logs-view-model.component.ts +28 -0
  48. package/src/lib/audit-log/audit-logs-view-model/audit-logs-view-model.module.ts +20 -0
  49. package/src/lib/base-model/index.ts +3 -0
  50. package/src/lib/base-model/techlify-form-component.class.ts +60 -0
  51. package/src/lib/base-model/techlify-listing-component.class.ts +67 -0
  52. package/src/lib/base-model/techlify-service.class.ts +73 -0
  53. package/src/lib/core/alert.service.ts +32 -0
  54. package/src/lib/core/api-prefix.interceptor.ts +22 -0
  55. package/src/lib/core/authentication.guard.ts +34 -0
  56. package/src/lib/core/authentication.service.ts +53 -0
  57. package/src/lib/core/cache.interceptor.ts +59 -0
  58. package/src/lib/core/config.service.ts +52 -0
  59. package/src/lib/core/core.module.ts +44 -0
  60. package/src/lib/core/credentials.service.ts +91 -0
  61. package/{lib/core/dataManager.service.d.ts → src/lib/core/dataManager.service.ts} +76 -22
  62. package/src/lib/core/error-handler.interceptor.ts +43 -0
  63. package/src/lib/core/error-handler.service.ts +61 -0
  64. package/src/lib/core/filter.service.ts +42 -0
  65. package/src/lib/core/form-validator.service.ts +23 -0
  66. package/src/lib/core/header.interceptor.ts +22 -0
  67. package/src/lib/core/http-cache.service.ts +122 -0
  68. package/src/lib/core/http.service.ts +137 -0
  69. package/{lib/core/index.d.ts → src/lib/core/index.ts} +2 -0
  70. package/src/lib/core/logger.service.ts +113 -0
  71. package/src/lib/core/route-reusable-strategy.ts +36 -0
  72. package/src/lib/core/snack/error-snack.html +8 -0
  73. package/src/lib/core/snack/snack.component.ts +19 -0
  74. package/src/lib/core/snack/snack.module.ts +22 -0
  75. package/src/lib/core/snack/snack.scss +18 -0
  76. package/src/lib/core/snack/success-snack.html +8 -0
  77. package/src/lib/core/storage.service.ts +38 -0
  78. package/src/lib/core/techlify-config.model.ts +32 -0
  79. package/src/lib/core/token.interceptor.ts +25 -0
  80. package/src/lib/data-table/data-table.component.html +139 -0
  81. package/src/lib/data-table/data-table.component.scss +54 -0
  82. package/src/lib/data-table/data-table.component.spec.ts +25 -0
  83. package/src/lib/data-table/data-table.component.ts +232 -0
  84. package/{lib/data-table/data-table.model.d.ts → src/lib/data-table/data-table.model.ts} +9 -6
  85. package/src/lib/data-table/data-table.module.ts +23 -0
  86. package/{lib/data-table/index.d.ts → src/lib/data-table/index.ts} +1 -1
  87. package/src/lib/date-validator.ts +12 -0
  88. package/src/lib/document-viewer/document-viewer.component.css +5 -0
  89. package/src/lib/document-viewer/document-viewer.component.html +19 -0
  90. package/src/lib/document-viewer/document-viewer.component.ts +66 -0
  91. package/src/lib/document-viewer/document-viewer.module.ts +22 -0
  92. package/{lib/document-viewer/index.d.ts → src/lib/document-viewer/index.ts} +1 -1
  93. package/src/lib/document-viewer/viewer-config.model.ts +5 -0
  94. package/src/lib/email-subscription/email-subscription-for-user/email-subscription-for-user-routing.module.ts +25 -0
  95. package/src/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.component.html +23 -0
  96. package/src/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.component.scss +4 -0
  97. package/src/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.component.spec.ts +25 -0
  98. package/src/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.component.ts +74 -0
  99. package/src/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.module.ts +22 -0
  100. package/{lib/email-subscription/email-subscription-for-user/index.d.ts → src/lib/email-subscription/email-subscription-for-user/index.ts} +0 -0
  101. package/src/lib/email-subscription/email-subscription-routing.module.ts +10 -0
  102. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form-routing.module.ts +10 -0
  103. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.component.html +47 -0
  104. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.component.scss +0 -0
  105. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.component.spec.ts +25 -0
  106. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.component.ts +113 -0
  107. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.module.ts +28 -0
  108. package/{lib/email-subscription/email-subscription-type/email-subscription-type-form/index.d.ts → src/lib/email-subscription/email-subscription-type/email-subscription-type-form/index.ts} +0 -0
  109. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list-routing.module.ts +29 -0
  110. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.component.html +76 -0
  111. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.component.scss +4 -0
  112. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.component.spec.ts +25 -0
  113. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.component.ts +170 -0
  114. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.module.ts +26 -0
  115. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-list/index.ts +1 -0
  116. package/src/lib/email-subscription/email-subscription-type/email-subscription-type-routing.module.ts +11 -0
  117. package/src/lib/email-subscription/email-subscription-type/email-subscription-type.module.ts +14 -0
  118. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form-routing.module.ts +10 -0
  119. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.component.html +38 -0
  120. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.component.scss +0 -0
  121. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.component.spec.ts +25 -0
  122. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.component.ts +113 -0
  123. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.module.ts +26 -0
  124. package/{lib/email-subscription/email-subscription-user/email-subscription-user-form/index.d.ts → src/lib/email-subscription/email-subscription-user/email-subscription-user-form/index.ts} +0 -0
  125. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list-routing.module.ts +27 -0
  126. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.component.html +74 -0
  127. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.component.scss +5 -0
  128. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.component.spec.ts +25 -0
  129. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.component.ts +174 -0
  130. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.module.ts +28 -0
  131. package/{lib/email-subscription/email-subscription-user/email-subscription-user-list/index.d.ts → src/lib/email-subscription/email-subscription-user/email-subscription-user-list/index.ts} +0 -0
  132. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter-routing.module.ts +10 -0
  133. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.component.html +21 -0
  134. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.component.scss +0 -0
  135. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.component.spec.ts +25 -0
  136. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.component.ts +56 -0
  137. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.module.ts +24 -0
  138. package/{lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/index.d.ts → src/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/index.ts} +0 -0
  139. package/src/lib/email-subscription/email-subscription-user/email-subscription-user-routing.module.ts +11 -0
  140. package/src/lib/email-subscription/email-subscription-user/email-subscription-user.module.ts +14 -0
  141. package/src/lib/email-subscription/email-subscription.module.ts +15 -0
  142. package/src/lib/entity-files/entity-file-form/entity-file-form.component.css +0 -0
  143. package/src/lib/entity-files/entity-file-form/entity-file-form.component.html +45 -0
  144. package/src/lib/entity-files/entity-file-form/entity-file-form.component.ts +172 -0
  145. package/src/lib/entity-files/entity-file.service.ts +46 -0
  146. package/src/lib/entity-files/entity-files-view-all.component.css +0 -0
  147. package/src/lib/entity-files/entity-files-view-all.component.html +236 -0
  148. package/src/lib/entity-files/entity-files-view-all.component.ts +325 -0
  149. package/src/lib/entity-files/entity-files-view-all.module.ts +38 -0
  150. package/src/lib/entity-files/index.ts +2 -0
  151. package/src/lib/export-excel/export-excel-button/export-excel-button.component.html +1 -0
  152. package/src/lib/export-excel/export-excel-button/export-excel-button.component.scss +0 -0
  153. package/src/lib/export-excel/export-excel-button/export-excel-button.component.spec.ts +25 -0
  154. package/src/lib/export-excel/export-excel-button/export-excel-button.component.ts +31 -0
  155. package/src/lib/export-excel/export-excel.module.ts +16 -0
  156. package/src/lib/file-dropper/file-dropper.component.html +41 -0
  157. package/src/lib/file-dropper/file-dropper.component.scss +8 -0
  158. package/src/lib/file-dropper/file-dropper.component.ts +139 -0
  159. package/src/lib/file-dropper/file-dropper.model.ts +10 -0
  160. package/src/lib/file-dropper/file-dropper.module.ts +18 -0
  161. package/{lib/file-dropper/index.d.ts → src/lib/file-dropper/index.ts} +1 -1
  162. package/src/lib/import-csv/data-import/data-import.component.html +11 -0
  163. package/src/lib/import-csv/data-import/data-import.component.scss +0 -0
  164. package/src/lib/import-csv/data-import/data-import.component.spec.ts +28 -0
  165. package/src/lib/import-csv/data-import/data-import.component.ts +16 -0
  166. package/src/lib/import-csv/failed-items-list/failed-items-list.component.html +61 -0
  167. package/src/lib/import-csv/failed-items-list/failed-items-list.component.scss +0 -0
  168. package/src/lib/import-csv/failed-items-list/failed-items-list.component.spec.ts +28 -0
  169. package/src/lib/import-csv/failed-items-list/failed-items-list.component.ts +30 -0
  170. package/src/lib/import-csv/field-mapping/field-mapping.component.html +70 -0
  171. package/src/lib/import-csv/field-mapping/field-mapping.component.scss +15 -0
  172. package/src/lib/import-csv/field-mapping/field-mapping.component.ts +161 -0
  173. package/src/lib/import-csv/import-csv-config.ts +17 -0
  174. package/src/lib/import-csv/import-csv.component.html +71 -0
  175. package/src/lib/import-csv/import-csv.component.scss +15 -0
  176. package/src/lib/import-csv/import-csv.component.spec.ts +28 -0
  177. package/src/lib/import-csv/import-csv.component.ts +198 -0
  178. package/src/lib/import-csv/import-csv.module.ts +43 -0
  179. package/src/lib/import-csv/import-history-list/import-history-list.component.html +43 -0
  180. package/src/lib/import-csv/import-history-list/import-history-list.component.scss +0 -0
  181. package/src/lib/import-csv/import-history-list/import-history-list.component.spec.ts +28 -0
  182. package/src/lib/import-csv/import-history-list/import-history-list.component.ts +74 -0
  183. package/src/lib/import-csv/import-success/import-success.component.html +22 -0
  184. package/src/lib/import-csv/import-success/import-success.component.scss +0 -0
  185. package/src/lib/import-csv/import-success/import-success.component.spec.ts +28 -0
  186. package/src/lib/import-csv/import-success/import-success.component.ts +17 -0
  187. package/{lib/loader/index.d.ts → src/lib/loader/index.ts} +0 -0
  188. package/src/lib/loader/loader.component.html +4 -0
  189. package/src/lib/loader/loader.component.scss +8 -0
  190. package/src/lib/loader/loader.component.spec.ts +73 -0
  191. package/src/lib/loader/loader.component.ts +18 -0
  192. package/src/lib/loader/loader.module.ts +18 -0
  193. package/src/lib/login-history-for-user/login-history-for-user-routing.module.ts +18 -0
  194. package/src/lib/login-history-for-user/login-history-for-user.component.html +31 -0
  195. package/src/lib/login-history-for-user/login-history-for-user.component.scss +4 -0
  196. package/src/lib/login-history-for-user/login-history-for-user.component.spec.ts +25 -0
  197. package/src/lib/login-history-for-user/login-history-for-user.component.ts +94 -0
  198. package/src/lib/login-history-for-user/login-history-for-user.module.ts +26 -0
  199. package/src/lib/material.module.ts +68 -0
  200. package/src/lib/note/comment-form/comment-form.component.html +45 -0
  201. package/src/lib/note/comment-form/comment-form.component.scss +7 -0
  202. package/src/lib/note/comment-form/comment-form.component.spec.ts +24 -0
  203. package/src/lib/note/comment-form/comment-form.component.ts +84 -0
  204. package/{lib/note/index.d.ts → src/lib/note/index.ts} +0 -0
  205. package/src/lib/note/note-form/note-form.component.css +0 -0
  206. package/src/lib/note/note-form/note-form.component.html +26 -0
  207. package/src/lib/note/note-form/note-form.component.spec.ts +25 -0
  208. package/src/lib/note/note-form/note-form.component.ts +93 -0
  209. package/src/lib/note/note-list/note-list.component.css +4 -0
  210. package/src/lib/note/note-list/note-list.component.html +58 -0
  211. package/src/lib/note/note-list/note-list.component.spec.ts +25 -0
  212. package/src/lib/note/note-list/note-list.component.ts +156 -0
  213. package/src/lib/note/note.module.ts +33 -0
  214. package/src/lib/note/note.service.spec.ts +16 -0
  215. package/src/lib/note/note.service.ts +26 -0
  216. package/src/lib/read-more/read-more.component.html +3 -0
  217. package/src/lib/read-more/read-more.component.scss +8 -0
  218. package/src/lib/read-more/read-more.component.spec.ts +24 -0
  219. package/src/lib/read-more/read-more.component.ts +41 -0
  220. package/src/lib/read-more/read-more.module.ts +18 -0
  221. package/src/lib/request-helper/request-helper.service.ts +92 -0
  222. package/src/lib/searchable-selector/index.ts +2 -0
  223. package/src/lib/searchable-selector/mat-select-infinite-scroll.directive.ts +89 -0
  224. package/src/lib/searchable-selector/searchable-selector.component.html +21 -0
  225. package/src/lib/searchable-selector/searchable-selector.component.scss +8 -0
  226. package/src/lib/searchable-selector/searchable-selector.component.spec.ts +25 -0
  227. package/src/lib/searchable-selector/searchable-selector.component.ts +337 -0
  228. package/src/lib/searchable-selector/searchable-selector.module.ts +25 -0
  229. package/src/lib/techlify-feature/on-off-switch/on-off-switch.component.html +4 -0
  230. package/src/lib/techlify-feature/on-off-switch/on-off-switch.component.scss +0 -0
  231. package/src/lib/techlify-feature/on-off-switch/on-off-switch.component.spec.ts +28 -0
  232. package/src/lib/techlify-feature/on-off-switch/on-off-switch.component.ts +25 -0
  233. package/src/lib/techlify-feature/techlify-feature-enabled.directive.ts +71 -0
  234. package/src/lib/techlify-feature/techlify-feature-listing.component.html +65 -0
  235. package/src/lib/techlify-feature/techlify-feature-listing.component.scss +0 -0
  236. package/src/lib/techlify-feature/techlify-feature-listing.component.ts +174 -0
  237. package/src/lib/techlify-feature/techlify-feature.module.ts +28 -0
  238. package/src/lib/techlify-feature/techlify-feature.routing.ts +13 -0
  239. package/src/lib/techlify-feature/techlify-feature.service.ts +23 -0
  240. package/src/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-config.model.ts +25 -0
  241. package/src/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.component.html +18 -0
  242. package/src/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.component.scss +6 -0
  243. package/src/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.component.spec.ts +25 -0
  244. package/src/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.component.ts +308 -0
  245. package/src/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.module.ts +24 -0
  246. package/src/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.component.html +8 -0
  247. package/src/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.component.scss +0 -0
  248. package/src/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.component.spec.ts +25 -0
  249. package/src/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.component.ts +180 -0
  250. package/src/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.module.ts +28 -0
  251. package/src/lib/techlify-update/techlify-update-form/techlify-update-form.component.html +78 -0
  252. package/src/lib/techlify-update/techlify-update-form/techlify-update-form.component.scss +0 -0
  253. package/src/lib/techlify-update/techlify-update-form/techlify-update-form.component.spec.ts +25 -0
  254. package/src/lib/techlify-update/techlify-update-form/techlify-update-form.component.ts +113 -0
  255. package/src/lib/techlify-update/techlify-update-form/techlify-update-form.module.ts +25 -0
  256. package/src/lib/techlify-update/techlify-update-history/index.ts +1 -0
  257. package/src/lib/techlify-update/techlify-update-history/techlify-update-history-routing.module.ts +21 -0
  258. package/src/lib/techlify-update/techlify-update-history/techlify-update-history.component.html +94 -0
  259. package/src/lib/techlify-update/techlify-update-history/techlify-update-history.component.scss +0 -0
  260. package/src/lib/techlify-update/techlify-update-history/techlify-update-history.component.ts +142 -0
  261. package/src/lib/techlify-update/techlify-update-history/techlify-update-history.module.ts +25 -0
  262. package/src/lib/techlify-update/techlify-update-routing.module.ts +21 -0
  263. package/src/lib/techlify-update/techlify-update.module.ts +27 -0
  264. package/src/lib/techlify-update/techlify-update.service.spec.ts +16 -0
  265. package/src/lib/techlify-update/techlify-update.service.ts +42 -0
  266. package/src/lib/techlify-update/techlify-updates-list/techlify-updates-list.component.html +104 -0
  267. package/src/lib/techlify-update/techlify-updates-list/techlify-updates-list.component.scss +0 -0
  268. package/src/lib/techlify-update/techlify-updates-list/techlify-updates-list.component.spec.ts +25 -0
  269. package/src/lib/techlify-update/techlify-updates-list/techlify-updates-list.component.ts +167 -0
  270. package/src/lib/techlify-update/update-notifier/update-notifier-snack/update-notifier-snack.component.html +39 -0
  271. package/src/lib/techlify-update/update-notifier/update-notifier-snack/update-notifier-snack.component.scss +57 -0
  272. package/src/lib/techlify-update/update-notifier/update-notifier-snack/update-notifier-snack.component.spec.ts +25 -0
  273. package/src/lib/techlify-update/update-notifier/update-notifier-snack/update-notifier-snack.component.ts +76 -0
  274. package/src/lib/techlify-update/update-notifier/update-notifier.component.html +0 -0
  275. package/src/lib/techlify-update/update-notifier/update-notifier.component.scss +3 -0
  276. package/src/lib/techlify-update/update-notifier/update-notifier.component.spec.ts +25 -0
  277. package/src/lib/techlify-update/update-notifier/update-notifier.component.ts +56 -0
  278. package/src/lib/techlify-update/update-notifier/update-notifier.module.ts +27 -0
  279. package/src/lib/techlify-update/update-view/update-view.component.html +63 -0
  280. package/src/lib/techlify-update/update-view/update-view.component.scss +19 -0
  281. package/src/lib/techlify-update/update-view/update-view.component.spec.ts +25 -0
  282. package/src/lib/techlify-update/update-view/update-view.component.ts +36 -0
  283. package/src/lib/techlify-update/update-view/update-view.module.ts +23 -0
  284. package/src/lib/timeline-filter/README.md +60 -0
  285. package/src/lib/timeline-filter/calculate-timeline.ts +109 -0
  286. package/{lib/timeline-filter/index.d.ts → src/lib/timeline-filter/index.ts} +1 -1
  287. package/src/lib/timeline-filter/timeline-filter-routing.module.ts +10 -0
  288. package/src/lib/timeline-filter/timeline-filter.component.html +54 -0
  289. package/src/lib/timeline-filter/timeline-filter.component.scss +0 -0
  290. package/src/lib/timeline-filter/timeline-filter.component.spec.ts +25 -0
  291. package/src/lib/timeline-filter/timeline-filter.component.ts +220 -0
  292. package/src/lib/timeline-filter/timeline-filter.module.ts +22 -0
  293. package/src/lib/timeline-filter/timeline.model.ts +17 -0
  294. package/src/lib/utility/date-utils.service.ts +51 -0
  295. package/{lib/utility/index.d.ts → src/lib/utility/index.ts} +1 -1
  296. package/src/lib/utility/num-items-selector.component.ts +29 -0
  297. package/src/lib/utility/num-items-selector.html +13 -0
  298. package/src/lib/utility/number-selector.component.ts +38 -0
  299. package/src/lib/utility/number-selector.html +6 -0
  300. package/src/lib/utility/utility.module.ts +20 -0
  301. package/{public-api.d.ts → src/public-api.ts} +31 -0
  302. package/src/test.ts +26 -0
  303. package/tsconfig.lib.json +26 -0
  304. package/tsconfig.lib.prod.json +10 -0
  305. package/tsconfig.spec.json +17 -0
  306. package/tslint.json +17 -0
  307. package/bundles/ngx-techlify-core.umd.js +0 -8325
  308. package/bundles/ngx-techlify-core.umd.js.map +0 -1
  309. package/bundles/ngx-techlify-core.umd.min.js +0 -2
  310. package/bundles/ngx-techlify-core.umd.min.js.map +0 -1
  311. package/esm2015/lib/action-popup/action-popup.component.js +0 -32
  312. package/esm2015/lib/action-popup/action-popup.model.js +0 -3
  313. package/esm2015/lib/action-popup/action-popup.module.js +0 -26
  314. package/esm2015/lib/action-popup/index.js +0 -3
  315. package/esm2015/lib/audit-log/audit-log-for-model/audit-log-for-model-routing.module.js +0 -12
  316. package/esm2015/lib/audit-log/audit-log-for-model/audit-log-for-model.component.js +0 -49
  317. package/esm2015/lib/audit-log/audit-log-for-model/audit-log-for-model.module.js +0 -25
  318. package/esm2015/lib/audit-log/audit-log-list/audit-log-list-routing.module.js +0 -12
  319. package/esm2015/lib/audit-log/audit-log-list/audit-log-list.component.js +0 -132
  320. package/esm2015/lib/audit-log/audit-log-list/audit-log-list.module.js +0 -29
  321. package/esm2015/lib/audit-log/audit-log-list-filter/audit-log-list-filter-routing.module.js +0 -12
  322. package/esm2015/lib/audit-log/audit-log-list-filter/audit-log-list-filter.component.js +0 -67
  323. package/esm2015/lib/audit-log/audit-log-list-filter/audit-log-list-filter.module.js +0 -25
  324. package/esm2015/lib/audit-log/audit-log-routing.module.js +0 -19
  325. package/esm2015/lib/audit-log/audit-log-view/audit-log-view-routing.module.js +0 -12
  326. package/esm2015/lib/audit-log/audit-log-view/audit-log-view.component.js +0 -60
  327. package/esm2015/lib/audit-log/audit-log-view/audit-log-view.module.js +0 -21
  328. package/esm2015/lib/audit-log/audit-log-view-model/audit-log-view-model-routing.module.js +0 -12
  329. package/esm2015/lib/audit-log/audit-log-view-model/audit-log-view-model.component.js +0 -57
  330. package/esm2015/lib/audit-log/audit-log-view-model/audit-log-view-model.module.js +0 -21
  331. package/esm2015/lib/audit-log/audit-log.module.js +0 -20
  332. package/esm2015/lib/audit-log/audit-logs-view-model/audit-logs-view-model-routing.module.js +0 -12
  333. package/esm2015/lib/audit-log/audit-logs-view-model/audit-logs-view-model.component.js +0 -35
  334. package/esm2015/lib/audit-log/audit-logs-view-model/audit-logs-view-model.module.js +0 -21
  335. package/esm2015/lib/base-model/index.js +0 -4
  336. package/esm2015/lib/base-model/techlify-form-component.class.js +0 -51
  337. package/esm2015/lib/base-model/techlify-listing-component.class.js +0 -41
  338. package/esm2015/lib/base-model/techlify-service.class.js +0 -64
  339. package/esm2015/lib/core/alert.service.js +0 -40
  340. package/esm2015/lib/core/api-prefix.interceptor.js +0 -28
  341. package/esm2015/lib/core/authentication.guard.js +0 -39
  342. package/esm2015/lib/core/authentication.service.js +0 -59
  343. package/esm2015/lib/core/cache.interceptor.js +0 -60
  344. package/esm2015/lib/core/config.service.js +0 -47
  345. package/esm2015/lib/core/core.module.js +0 -42
  346. package/esm2015/lib/core/credentials.service.js +0 -84
  347. package/esm2015/lib/core/dataManager.service.js +0 -121
  348. package/esm2015/lib/core/error-handler.interceptor.js +0 -53
  349. package/esm2015/lib/core/error-handler.service.js +0 -60
  350. package/esm2015/lib/core/form-validator.service.js +0 -23
  351. package/esm2015/lib/core/header.interceptor.js +0 -22
  352. package/esm2015/lib/core/http-cache.service.js +0 -110
  353. package/esm2015/lib/core/http.service.js +0 -82
  354. package/esm2015/lib/core/index.js +0 -21
  355. package/esm2015/lib/core/logger.service.js +0 -100
  356. package/esm2015/lib/core/route-reusable-strategy.js +0 -35
  357. package/esm2015/lib/core/snack/snack.component.js +0 -33
  358. package/esm2015/lib/core/snack/snack.module.js +0 -25
  359. package/esm2015/lib/core/storage.service.js +0 -37
  360. package/esm2015/lib/core/techlify-config.model.js +0 -28
  361. package/esm2015/lib/core/token.interceptor.js +0 -30
  362. package/esm2015/lib/data-table/data-table.component.js +0 -190
  363. package/esm2015/lib/data-table/data-table.model.js +0 -11
  364. package/esm2015/lib/data-table/data-table.module.js +0 -25
  365. package/esm2015/lib/data-table/index.js +0 -3
  366. package/esm2015/lib/date-validator.js +0 -10
  367. package/esm2015/lib/document-viewer/document-viewer.component.js +0 -58
  368. package/esm2015/lib/document-viewer/document-viewer.module.js +0 -25
  369. package/esm2015/lib/document-viewer/index.js +0 -3
  370. package/esm2015/lib/document-viewer/viewer-config.model.js +0 -3
  371. package/esm2015/lib/email-subscription/email-subscription-for-user/email-subscription-for-user-routing.module.js +0 -26
  372. package/esm2015/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.component.js +0 -72
  373. package/esm2015/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.module.js +0 -23
  374. package/esm2015/lib/email-subscription/email-subscription-for-user/index.js +0 -2
  375. package/esm2015/lib/email-subscription/email-subscription-routing.module.js +0 -12
  376. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form-routing.module.js +0 -12
  377. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.component.js +0 -102
  378. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.module.js +0 -28
  379. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-form/index.js +0 -2
  380. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list-routing.module.js +0 -28
  381. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.component.js +0 -153
  382. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.module.js +0 -27
  383. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-list/index.js +0 -2
  384. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type-routing.module.js +0 -12
  385. package/esm2015/lib/email-subscription/email-subscription-type/email-subscription-type.module.js +0 -15
  386. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form-routing.module.js +0 -12
  387. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.component.js +0 -99
  388. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.module.js +0 -27
  389. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-form/index.js +0 -2
  390. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list-routing.module.js +0 -28
  391. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.component.js +0 -155
  392. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.module.js +0 -29
  393. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list/index.js +0 -2
  394. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter-routing.module.js +0 -12
  395. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.component.js +0 -50
  396. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.module.js +0 -25
  397. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/index.js +0 -2
  398. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user-routing.module.js +0 -12
  399. package/esm2015/lib/email-subscription/email-subscription-user/email-subscription-user.module.js +0 -15
  400. package/esm2015/lib/email-subscription/email-subscription.module.js +0 -15
  401. package/esm2015/lib/entity-files/entity-file-form/entity-file-form.component.js +0 -138
  402. package/esm2015/lib/entity-files/entity-file.service.js +0 -42
  403. package/esm2015/lib/entity-files/entity-files-view-all.component.js +0 -208
  404. package/esm2015/lib/entity-files/entity-files-view-all.module.js +0 -34
  405. package/esm2015/lib/entity-files/index.js +0 -3
  406. package/esm2015/lib/export-excel/export-excel-button/export-excel-button.component.js +0 -32
  407. package/esm2015/lib/export-excel/export-excel.module.js +0 -17
  408. package/esm2015/lib/file-dropper/file-dropper.component.js +0 -122
  409. package/esm2015/lib/file-dropper/file-dropper.model.js +0 -3
  410. package/esm2015/lib/file-dropper/file-dropper.module.js +0 -21
  411. package/esm2015/lib/file-dropper/index.js +0 -3
  412. package/esm2015/lib/import-csv/data-import/data-import.component.js +0 -18
  413. package/esm2015/lib/import-csv/failed-items-list/failed-items-list.component.js +0 -33
  414. package/esm2015/lib/import-csv/field-mapping/field-mapping.component.js +0 -148
  415. package/esm2015/lib/import-csv/import-csv-config.js +0 -2
  416. package/esm2015/lib/import-csv/import-csv.component.js +0 -196
  417. package/esm2015/lib/import-csv/import-csv.module.js +0 -46
  418. package/esm2015/lib/import-csv/import-history-list/import-history-list.component.js +0 -71
  419. package/esm2015/lib/import-csv/import-success/import-success.component.js +0 -19
  420. package/esm2015/lib/loader/index.js +0 -2
  421. package/esm2015/lib/loader/loader.component.js +0 -22
  422. package/esm2015/lib/loader/loader.module.js +0 -21
  423. package/esm2015/lib/login-history-for-user/login-history-for-user-routing.module.js +0 -20
  424. package/esm2015/lib/login-history-for-user/login-history-for-user.component.js +0 -88
  425. package/esm2015/lib/login-history-for-user/login-history-for-user.module.js +0 -27
  426. package/esm2015/lib/material.module.js +0 -60
  427. package/esm2015/lib/note/comment-form/comment-form.component.js +0 -73
  428. package/esm2015/lib/note/index.js +0 -4
  429. package/esm2015/lib/note/note-form/note-form.component.js +0 -81
  430. package/esm2015/lib/note/note-list/note-list.component.js +0 -151
  431. package/esm2015/lib/note/note.module.js +0 -36
  432. package/esm2015/lib/note/note.service.js +0 -31
  433. package/esm2015/lib/read-more/read-more.component.js +0 -43
  434. package/esm2015/lib/read-more/read-more.module.js +0 -21
  435. package/esm2015/lib/searchable-selector/index.js +0 -3
  436. package/esm2015/lib/searchable-selector/mat-select-infinite-scroll.directive.js +0 -81
  437. package/esm2015/lib/searchable-selector/searchable-selector.component.js +0 -307
  438. package/esm2015/lib/searchable-selector/searchable-selector.module.js +0 -28
  439. package/esm2015/lib/techlify-feature/on-off-switch/on-off-switch.component.js +0 -27
  440. package/esm2015/lib/techlify-feature/techlify-feature-enabled.directive.js +0 -78
  441. package/esm2015/lib/techlify-feature/techlify-feature-listing.component.js +0 -177
  442. package/esm2015/lib/techlify-feature/techlify-feature.module.js +0 -30
  443. package/esm2015/lib/techlify-feature/techlify-feature.routing.js +0 -12
  444. package/esm2015/lib/techlify-feature/techlify-feature.service.js +0 -28
  445. package/esm2015/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-config.model.js +0 -15
  446. package/esm2015/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.component.js +0 -269
  447. package/esm2015/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.module.js +0 -25
  448. package/esm2015/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.component.js +0 -168
  449. package/esm2015/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.module.js +0 -29
  450. package/esm2015/lib/techlify-update/techlify-update-form/techlify-update-form.component.js +0 -114
  451. package/esm2015/lib/techlify-update/techlify-update-form/techlify-update-form.module.js +0 -28
  452. package/esm2015/lib/techlify-update/techlify-update-history/techlify-update-history-routing.module.js +0 -22
  453. package/esm2015/lib/techlify-update/techlify-update-history/techlify-update-history.component.js +0 -143
  454. package/esm2015/lib/techlify-update/techlify-update-history/techlify-update-history.module.js +0 -28
  455. package/esm2015/lib/techlify-update/techlify-update-routing.module.js +0 -22
  456. package/esm2015/lib/techlify-update/techlify-update.module.js +0 -30
  457. package/esm2015/lib/techlify-update/techlify-update.service.js +0 -43
  458. package/esm2015/lib/techlify-update/techlify-updates-list/techlify-updates-list.component.js +0 -161
  459. package/esm2015/lib/techlify-update/update-notifier/update-notifier-snack/update-notifier-snack.component.js +0 -82
  460. package/esm2015/lib/techlify-update/update-notifier/update-notifier.component.js +0 -62
  461. package/esm2015/lib/techlify-update/update-notifier/update-notifier.module.js +0 -29
  462. package/esm2015/lib/techlify-update/update-view/update-view.component.js +0 -36
  463. package/esm2015/lib/techlify-update/update-view/update-view.module.js +0 -24
  464. package/esm2015/lib/timeline-filter/calculate-timeline.js +0 -102
  465. package/esm2015/lib/timeline-filter/index.js +0 -4
  466. package/esm2015/lib/timeline-filter/timeline-filter-routing.module.js +0 -12
  467. package/esm2015/lib/timeline-filter/timeline-filter.component.js +0 -213
  468. package/esm2015/lib/timeline-filter/timeline-filter.module.js +0 -23
  469. package/esm2015/lib/timeline-filter/timeline.model.js +0 -18
  470. package/esm2015/lib/utility/date-utils.service.js +0 -48
  471. package/esm2015/lib/utility/index.js +0 -4
  472. package/esm2015/lib/utility/num-items-selector.component.js +0 -30
  473. package/esm2015/lib/utility/number-selector.component.js +0 -38
  474. package/esm2015/lib/utility/utility.module.js +0 -21
  475. package/esm2015/ngx-techlify-core.js +0 -60
  476. package/esm2015/public-api.js +0 -96
  477. package/fesm2015/ngx-techlify-core.js +0 -7039
  478. package/fesm2015/ngx-techlify-core.js.map +0 -1
  479. package/lib/action-popup/action-popup.component.d.ts +0 -14
  480. package/lib/action-popup/action-popup.module.d.ts +0 -2
  481. package/lib/audit-log/audit-log-for-model/audit-log-for-model-routing.module.d.ts +0 -2
  482. package/lib/audit-log/audit-log-for-model/audit-log-for-model.component.d.ts +0 -12
  483. package/lib/audit-log/audit-log-for-model/audit-log-for-model.module.d.ts +0 -2
  484. package/lib/audit-log/audit-log-list/audit-log-list-routing.module.d.ts +0 -2
  485. package/lib/audit-log/audit-log-list/audit-log-list.component.d.ts +0 -32
  486. package/lib/audit-log/audit-log-list/audit-log-list.module.d.ts +0 -2
  487. package/lib/audit-log/audit-log-list-filter/audit-log-list-filter-routing.module.d.ts +0 -2
  488. package/lib/audit-log/audit-log-list-filter/audit-log-list-filter.component.d.ts +0 -19
  489. package/lib/audit-log/audit-log-list-filter/audit-log-list-filter.module.d.ts +0 -2
  490. package/lib/audit-log/audit-log-routing.module.d.ts +0 -2
  491. package/lib/audit-log/audit-log-view/audit-log-view-routing.module.d.ts +0 -2
  492. package/lib/audit-log/audit-log-view/audit-log-view.component.d.ts +0 -17
  493. package/lib/audit-log/audit-log-view/audit-log-view.module.d.ts +0 -2
  494. package/lib/audit-log/audit-log-view-model/audit-log-view-model-routing.module.d.ts +0 -2
  495. package/lib/audit-log/audit-log-view-model/audit-log-view-model.component.d.ts +0 -15
  496. package/lib/audit-log/audit-log-view-model/audit-log-view-model.module.d.ts +0 -2
  497. package/lib/audit-log/audit-log.module.d.ts +0 -2
  498. package/lib/audit-log/audit-logs-view-model/audit-logs-view-model-routing.module.d.ts +0 -2
  499. package/lib/audit-log/audit-logs-view-model/audit-logs-view-model.component.d.ts +0 -11
  500. package/lib/audit-log/audit-logs-view-model/audit-logs-view-model.module.d.ts +0 -2
  501. package/lib/base-model/index.d.ts +0 -3
  502. package/lib/base-model/techlify-form-component.class.d.ts +0 -43
  503. package/lib/base-model/techlify-listing-component.class.d.ts +0 -47
  504. package/lib/base-model/techlify-service.class.d.ts +0 -52
  505. package/lib/core/alert.service.d.ts +0 -12
  506. package/lib/core/api-prefix.interceptor.d.ts +0 -11
  507. package/lib/core/authentication.guard.d.ts +0 -10
  508. package/lib/core/authentication.service.d.ts +0 -23
  509. package/lib/core/cache.interceptor.d.ts +0 -21
  510. package/lib/core/config.service.d.ts +0 -19
  511. package/lib/core/core.module.d.ts +0 -3
  512. package/lib/core/credentials.service.d.ts +0 -36
  513. package/lib/core/error-handler.interceptor.d.ts +0 -14
  514. package/lib/core/error-handler.service.d.ts +0 -14
  515. package/lib/core/form-validator.service.d.ts +0 -8
  516. package/lib/core/header.interceptor.d.ts +0 -8
  517. package/lib/core/http-cache.service.d.ts +0 -54
  518. package/lib/core/http.service.d.ts +0 -56
  519. package/lib/core/logger.service.d.ts +0 -85
  520. package/lib/core/route-reusable-strategy.d.ts +0 -13
  521. package/lib/core/snack/snack.component.d.ts +0 -8
  522. package/lib/core/snack/snack.module.d.ts +0 -2
  523. package/lib/core/storage.service.d.ts +0 -15
  524. package/lib/core/techlify-config.model.d.ts +0 -18
  525. package/lib/core/token.interceptor.d.ts +0 -11
  526. package/lib/data-table/data-table.component.d.ts +0 -60
  527. package/lib/data-table/data-table.module.d.ts +0 -2
  528. package/lib/date-validator.d.ts +0 -1
  529. package/lib/document-viewer/document-viewer.component.d.ts +0 -16
  530. package/lib/document-viewer/document-viewer.module.d.ts +0 -2
  531. package/lib/document-viewer/viewer-config.model.d.ts +0 -5
  532. package/lib/email-subscription/email-subscription-for-user/email-subscription-for-user-routing.module.d.ts +0 -7
  533. package/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.component.d.ts +0 -17
  534. package/lib/email-subscription/email-subscription-for-user/email-subscription-for-user.module.d.ts +0 -2
  535. package/lib/email-subscription/email-subscription-routing.module.d.ts +0 -2
  536. package/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form-routing.module.d.ts +0 -2
  537. package/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.component.d.ts +0 -32
  538. package/lib/email-subscription/email-subscription-type/email-subscription-type-form/email-subscription-type-form.module.d.ts +0 -2
  539. package/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list-routing.module.d.ts +0 -9
  540. package/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.component.d.ts +0 -30
  541. package/lib/email-subscription/email-subscription-type/email-subscription-type-list/email-subscription-type-list.module.d.ts +0 -2
  542. package/lib/email-subscription/email-subscription-type/email-subscription-type-list/index.d.ts +0 -1
  543. package/lib/email-subscription/email-subscription-type/email-subscription-type-routing.module.d.ts +0 -2
  544. package/lib/email-subscription/email-subscription-type/email-subscription-type.module.d.ts +0 -2
  545. package/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form-routing.module.d.ts +0 -2
  546. package/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.component.d.ts +0 -32
  547. package/lib/email-subscription/email-subscription-user/email-subscription-user-form/email-subscription-user-form.module.d.ts +0 -2
  548. package/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list-routing.module.d.ts +0 -9
  549. package/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.component.d.ts +0 -32
  550. package/lib/email-subscription/email-subscription-user/email-subscription-user-list/email-subscription-user-list.module.d.ts +0 -2
  551. package/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter-routing.module.d.ts +0 -2
  552. package/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.component.d.ts +0 -13
  553. package/lib/email-subscription/email-subscription-user/email-subscription-user-list-filter/email-subscription-user-list-filter.module.d.ts +0 -2
  554. package/lib/email-subscription/email-subscription-user/email-subscription-user-routing.module.d.ts +0 -2
  555. package/lib/email-subscription/email-subscription-user/email-subscription-user.module.d.ts +0 -2
  556. package/lib/email-subscription/email-subscription.module.d.ts +0 -2
  557. package/lib/entity-files/entity-file-form/entity-file-form.component.d.ts +0 -34
  558. package/lib/entity-files/entity-file.service.d.ts +0 -10
  559. package/lib/entity-files/entity-files-view-all.component.d.ts +0 -45
  560. package/lib/entity-files/entity-files-view-all.module.d.ts +0 -2
  561. package/lib/entity-files/index.d.ts +0 -2
  562. package/lib/export-excel/export-excel-button/export-excel-button.component.d.ts +0 -8
  563. package/lib/export-excel/export-excel.module.d.ts +0 -2
  564. package/lib/file-dropper/file-dropper.component.d.ts +0 -33
  565. package/lib/file-dropper/file-dropper.model.d.ts +0 -10
  566. package/lib/file-dropper/file-dropper.module.d.ts +0 -2
  567. package/lib/import-csv/data-import/data-import.component.d.ts +0 -6
  568. package/lib/import-csv/failed-items-list/failed-items-list.component.d.ts +0 -12
  569. package/lib/import-csv/field-mapping/field-mapping.component.d.ts +0 -34
  570. package/lib/import-csv/import-csv-config.d.ts +0 -17
  571. package/lib/import-csv/import-csv.component.d.ts +0 -33
  572. package/lib/import-csv/import-csv.module.d.ts +0 -2
  573. package/lib/import-csv/import-history-list/import-history-list.component.d.ts +0 -21
  574. package/lib/import-csv/import-success/import-success.component.d.ts +0 -8
  575. package/lib/loader/loader.component.d.ts +0 -8
  576. package/lib/loader/loader.module.d.ts +0 -2
  577. package/lib/login-history-for-user/login-history-for-user-routing.module.d.ts +0 -2
  578. package/lib/login-history-for-user/login-history-for-user.component.d.ts +0 -23
  579. package/lib/login-history-for-user/login-history-for-user.module.d.ts +0 -2
  580. package/lib/material.module.d.ts +0 -2
  581. package/lib/note/comment-form/comment-form.component.d.ts +0 -22
  582. package/lib/note/note-form/note-form.component.d.ts +0 -27
  583. package/lib/note/note-list/note-list.component.d.ts +0 -28
  584. package/lib/note/note.module.d.ts +0 -2
  585. package/lib/note/note.service.d.ts +0 -9
  586. package/lib/read-more/read-more.component.d.ts +0 -12
  587. package/lib/read-more/read-more.module.d.ts +0 -2
  588. package/lib/searchable-selector/index.d.ts +0 -2
  589. package/lib/searchable-selector/mat-select-infinite-scroll.directive.d.ts +0 -23
  590. package/lib/searchable-selector/searchable-selector.component.d.ts +0 -81
  591. package/lib/searchable-selector/searchable-selector.module.d.ts +0 -2
  592. package/lib/techlify-feature/on-off-switch/on-off-switch.component.d.ts +0 -9
  593. package/lib/techlify-feature/techlify-feature-enabled.directive.d.ts +0 -17
  594. package/lib/techlify-feature/techlify-feature-listing.component.d.ts +0 -37
  595. package/lib/techlify-feature/techlify-feature.module.d.ts +0 -2
  596. package/lib/techlify-feature/techlify-feature.routing.d.ts +0 -2
  597. package/lib/techlify-feature/techlify-feature.service.d.ts +0 -8
  598. package/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-config.model.d.ts +0 -12
  599. package/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.component.d.ts +0 -76
  600. package/lib/techlify-tagger-tag-form-field/techlify-tagger-tag-form-field.module.d.ts +0 -2
  601. package/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.component.d.ts +0 -58
  602. package/lib/techlify-tagger-tag-selector/techlify-tagger-tag-selector.module.d.ts +0 -2
  603. package/lib/techlify-update/techlify-update-form/techlify-update-form.component.d.ts +0 -30
  604. package/lib/techlify-update/techlify-update-form/techlify-update-form.module.d.ts +0 -2
  605. package/lib/techlify-update/techlify-update-history/techlify-update-history-routing.module.d.ts +0 -2
  606. package/lib/techlify-update/techlify-update-history/techlify-update-history.component.d.ts +0 -31
  607. package/lib/techlify-update/techlify-update-history/techlify-update-history.module.d.ts +0 -2
  608. package/lib/techlify-update/techlify-update-routing.module.d.ts +0 -2
  609. package/lib/techlify-update/techlify-update.module.d.ts +0 -2
  610. package/lib/techlify-update/techlify-update.service.d.ts +0 -13
  611. package/lib/techlify-update/techlify-updates-list/techlify-updates-list.component.d.ts +0 -31
  612. package/lib/techlify-update/update-notifier/update-notifier-snack/update-notifier-snack.component.d.ts +0 -25
  613. package/lib/techlify-update/update-notifier/update-notifier.component.d.ts +0 -16
  614. package/lib/techlify-update/update-notifier/update-notifier.module.d.ts +0 -2
  615. package/lib/techlify-update/update-view/update-view.component.d.ts +0 -14
  616. package/lib/techlify-update/update-view/update-view.module.d.ts +0 -2
  617. package/lib/timeline-filter/calculate-timeline.d.ts +0 -6
  618. package/lib/timeline-filter/timeline-filter-routing.module.d.ts +0 -2
  619. package/lib/timeline-filter/timeline-filter.component.d.ts +0 -61
  620. package/lib/timeline-filter/timeline-filter.module.d.ts +0 -2
  621. package/lib/timeline-filter/timeline.model.d.ts +0 -17
  622. package/lib/utility/date-utils.service.d.ts +0 -21
  623. package/lib/utility/num-items-selector.component.d.ts +0 -16
  624. package/lib/utility/number-selector.component.d.ts +0 -20
  625. package/lib/utility/utility.module.d.ts +0 -2
  626. package/ngx-techlify-core.d.ts +0 -59
  627. package/ngx-techlify-core.metadata.json +0 -1
@@ -0,0 +1,174 @@
1
+ import { Component, OnInit } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { MatDialog } from '@angular/material/dialog';
4
+ import { MatTableDataSource } from '@angular/material/table';
5
+ import { TechlifyFeatureService } from './techlify-feature.service';
6
+ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
7
+ import { debounceTime } from 'rxjs/operators';
8
+ import { ActionPopup, ActionPopupComponent } from '../action-popup';
9
+ import { DataManager } from '../core/dataManager.service';
10
+ import { ErrorHandlerService } from '../core/error-handler.service';
11
+ import { AlertService } from '../core/alert.service';
12
+ import { StorageService } from '../core/storage.service';
13
+ @UntilDestroy()
14
+ @Component({
15
+ selector: 'app-techlify-listing-feature',
16
+ templateUrl: './techlify-feature-listing.component.html',
17
+ styleUrls: ['./techlify-feature-listing.component.scss']
18
+ })
19
+ export class TechlifyFeatureListingComponent implements OnInit {
20
+
21
+ features: any[] = []
22
+ displayedColumns: string[] = [
23
+ 'index',
24
+ 'feature',
25
+ 'description',
26
+ 'actions',
27
+ ]
28
+
29
+ dataSource = new MatTableDataSource()
30
+
31
+ page: number = 1;
32
+ lastPage: number;
33
+ perPage: number = 25;
34
+
35
+ isWorking: boolean = false
36
+ filterFormGroup: FormGroup;
37
+ featureToggleForm: FormGroup;
38
+
39
+ constructor(
40
+ private dataManager: DataManager,
41
+ private errorHandler: ErrorHandlerService,
42
+ private fb: FormBuilder,
43
+ private alertService: AlertService,
44
+ private dialog: MatDialog,
45
+ private storage: StorageService,
46
+ private featureService: TechlifyFeatureService
47
+ ) {
48
+ this.filterFormGroup = this.fb.group({
49
+ num_items: [""]
50
+ })
51
+ }
52
+
53
+ ngOnInit() {
54
+ this.loadData()
55
+ this.listenForChanges()
56
+ }
57
+
58
+ listenForChanges() {
59
+ this.filterFormGroup.valueChanges
60
+ .pipe(debounceTime(500), untilDestroyed(this))
61
+ .subscribe((changes) => {
62
+ this.reload()
63
+ })
64
+ }
65
+
66
+ async loadData() {
67
+ let result;
68
+ try {
69
+ this.isWorking = true
70
+ var filter = this.filterFormGroup.value
71
+ filter.page = this.page;
72
+ filter.perPage = this.perPage;
73
+ result = await this.dataManager.GET(`api/features`, filter);
74
+ this.features = this.features.concat(result.data);
75
+ this.dataSource = new MatTableDataSource(this.features);
76
+
77
+ if (!this.storage.getItem('features')) {
78
+ this.setStorage(this.features);
79
+ }
80
+
81
+ this.isWorking = false
82
+ } catch (error) {
83
+ this.errorHandler.handleError(error);
84
+ } finally {
85
+ this.isWorking = false;
86
+ }
87
+ }
88
+
89
+ async toggeleFeature(element, feature) {
90
+ let status = element ? 'Off' : "On";
91
+ let data;
92
+ const dialogRef = this.dialog.open(ActionPopupComponent, {
93
+ width: "400px",
94
+ data: <ActionPopup>{
95
+ title: `Turn this feature ${status}?`,
96
+ message: `Would you like to turn ${feature.title} feature ${status}`
97
+ }
98
+ })
99
+
100
+ dialogRef.afterClosed().subscribe(async result => {
101
+ if (result) {
102
+ try {
103
+ data = element
104
+ ? await this.featureService.disableFeature(feature.id)
105
+ : await this.featureService.enableFeature(feature.id);
106
+ } catch (error) {
107
+ this.errorHandler.handleError(error);
108
+ } finally {
109
+ this.alertService.addAlert(`You have just turned ${status} the feature ${feature.title}`, 'success');
110
+ this.reload();
111
+ this.storage.removeItem('features');
112
+ this.setStorage(this.features);
113
+ this.isWorking = false;
114
+ }
115
+ } else {
116
+ this.reload();
117
+ }
118
+ })
119
+ }
120
+
121
+ setStorage(features) {
122
+ let localFeatures = [];
123
+ for (let feature of features) {
124
+ if (!feature.client_feature) {
125
+ if (feature.is_enabled_default) {
126
+ localFeatures.push(feature.code);
127
+ }
128
+ } else {
129
+ if (feature.client_feature.is_enabled) {
130
+ localFeatures.push(feature.code);
131
+ }
132
+ }
133
+
134
+ }
135
+ this.storage.setItem("features", localFeatures);
136
+ }
137
+
138
+ reload() {
139
+ this.features = [];
140
+ this.page = 1;
141
+ if (!this.isWorking) {
142
+ this.loadData();
143
+ }
144
+ }
145
+
146
+ onScroll() {
147
+ if (!this.isWorking && this.page < this.lastPage) {
148
+ this.page += 1;
149
+ this.loadData();
150
+ }
151
+ }
152
+
153
+ sortColumn(event) {
154
+ var direction = event.direction.toString().toUpperCase()
155
+ this.assignFilter(event.active, direction)
156
+ this.reload()
157
+ }
158
+
159
+ assignFilter(column, direction) {
160
+ switch (column) {
161
+ case 'name': {
162
+ return this.filterFormGroup
163
+ .get('sort_by')
164
+ .setValue('first_name|' + direction)
165
+ }
166
+ case 'added_on': {
167
+ return this.filterFormGroup
168
+ .get('sort_by')
169
+ .setValue('created_at|' + direction)
170
+ }
171
+ }
172
+ }
173
+
174
+ }
@@ -0,0 +1,28 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { TechlifyFeatureListingComponent } from './techlify-feature-listing.component';
4
+
5
+ import { TechlifyFeatureRoutes } from './techlify-feature.routing';
6
+ import { OnOffSwitchComponent } from './on-off-switch/on-off-switch.component';
7
+ import { FlexLayoutModule } from '@angular/flex-layout';
8
+ import { TechlifyFeatureEnabledDirective } from './techlify-feature-enabled.directive';
9
+ import { InfiniteScrollModule } from 'ngx-infinite-scroll';
10
+ import { MatSlideToggleModule } from '@angular/material/slide-toggle';
11
+ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
12
+ import { MaterialModule } from '../material.module';
13
+
14
+ @NgModule({
15
+ imports: [
16
+ CommonModule,
17
+ MaterialModule,
18
+ FlexLayoutModule,
19
+ TechlifyFeatureRoutes,
20
+ MatSlideToggleModule,
21
+ FormsModule,
22
+ ReactiveFormsModule,
23
+ InfiniteScrollModule
24
+ ],
25
+ declarations: [TechlifyFeatureListingComponent, OnOffSwitchComponent, TechlifyFeatureEnabledDirective],
26
+ exports: [TechlifyFeatureListingComponent, TechlifyFeatureEnabledDirective]
27
+ })
28
+ export class TechlifyFeatureModule { }
@@ -0,0 +1,13 @@
1
+ import { AuthenticationGuard } from './../core/authentication.guard';
2
+ import { Routes, RouterModule } from '@angular/router';
3
+ import { TechlifyFeatureListingComponent } from './techlify-feature-listing.component';
4
+
5
+ const routes: Routes = [
6
+ {
7
+ path: '',
8
+ component: TechlifyFeatureListingComponent,
9
+ canActivate: [AuthenticationGuard]
10
+ },
11
+ ];
12
+
13
+ export const TechlifyFeatureRoutes = RouterModule.forChild(routes);
@@ -0,0 +1,23 @@
1
+ import { DataManager } from './../core/dataManager.service';
2
+ import { Injectable } from '@angular/core';
3
+
4
+ @Injectable({
5
+ providedIn: 'root'
6
+ })
7
+ export class TechlifyFeatureService {
8
+
9
+ constructor(private dataManager: DataManager) { }
10
+
11
+ getFeatures() {
12
+ return this.dataManager.GET(`api/features`);
13
+ }
14
+
15
+ disableFeature(id: any) {
16
+ return this.dataManager.GET(`api/feature/${id}/disable`);
17
+ }
18
+
19
+ enableFeature(id: any) {
20
+ return this.dataManager.GET(`api/feature/${id}/enable`);
21
+ }
22
+
23
+ }
@@ -0,0 +1,25 @@
1
+ import { COMMA, ENTER } from '@angular/cdk/keycodes';
2
+
3
+ export class TechlifyTaggerTagFormConfigModel {
4
+ selectable: boolean;
5
+ removable: boolean;
6
+ separatorKeysCodes: number[];
7
+ placeholder: string;
8
+ apiUrl: string;
9
+ isCreateable: boolean;
10
+ createApiUrl: string;
11
+ isCacheTags: boolean;
12
+ isSingle: boolean;
13
+
14
+ constructor() {
15
+ this.selectable = true;
16
+ this.removable = true;
17
+ this.separatorKeysCodes = [ENTER, COMMA];
18
+ this.placeholder = 'Enter new Tag..';
19
+ this.apiUrl = 'api/techlify-tagger-tags';
20
+ this.createApiUrl = 'api/techlify-tagger-tags';
21
+ this.isCreateable = true;
22
+ this.isCacheTags = false;
23
+ this.isSingle = false;
24
+ }
25
+ }
@@ -0,0 +1,18 @@
1
+ <mat-chip-list #chipList aria-label="Tag Selection">
2
+ <mat-chip *ngFor="let tag of tags" [selectable]="config.selectable" [removable]="config.removable"
3
+ (removed)="remove(tag)">
4
+ {{tag.title}}
5
+ <button matChipRemove *ngIf="config.removable" class="border-0">
6
+ <mat-icon class="mat-relative-icon">cancel</mat-icon>
7
+ </button>
8
+ </mat-chip>
9
+ <input placeholder="{{config.isCreateable? config.placeholder:''}}" #tagInput [formControl]="tagInputCtrl"
10
+ [matAutocomplete]="auto" [matChipInputFor]="chipList"
11
+ [matChipInputSeparatorKeyCodes]="config.separatorKeysCodes" (matChipInputTokenEnd)="add($event)"
12
+ #trigger="matAutocompleteTrigger" (click)="trigger.openPanel()">
13
+ </mat-chip-list>
14
+ <mat-autocomplete #auto="matAutocomplete" (optionSelected)="selected($event)">
15
+ <mat-option *ngFor="let tag of filteredTags" [value]="tag.id">
16
+ {{tag.title}}
17
+ </mat-option>
18
+ </mat-autocomplete>
@@ -0,0 +1,6 @@
1
+ .mat-relative-icon{
2
+ position: relative;
3
+ top: -3px;
4
+ right: 7px;
5
+ font-size: 20px;
6
+ }
@@ -0,0 +1,25 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { TechlifyTaggerTagFormFieldComponent } from './techlify-tagger-tag-form-field.component';
4
+
5
+ describe('TechlifyTaggerTagFormFieldComponent', () => {
6
+ let component: TechlifyTaggerTagFormFieldComponent;
7
+ let fixture: ComponentFixture<TechlifyTaggerTagFormFieldComponent>;
8
+
9
+ beforeEach(async () => {
10
+ await TestBed.configureTestingModule({
11
+ declarations: [ TechlifyTaggerTagFormFieldComponent ]
12
+ })
13
+ .compileComponents();
14
+ });
15
+
16
+ beforeEach(() => {
17
+ fixture = TestBed.createComponent(TechlifyTaggerTagFormFieldComponent);
18
+ component = fixture.componentInstance;
19
+ fixture.detectChanges();
20
+ });
21
+
22
+ it('should create', () => {
23
+ expect(component).toBeTruthy();
24
+ });
25
+ });
@@ -0,0 +1,308 @@
1
+ import { FocusMonitor } from '@angular/cdk/a11y';
2
+ import { BooleanInput, coerceBooleanProperty } from '@angular/cdk/coercion';
3
+ import { Component, ElementRef, ViewChild, OnInit, Input, OnDestroy, Inject, Optional, Self, OnChanges, SimpleChanges } from '@angular/core';
4
+ import { ControlValueAccessor, FormControl, NgControl } from '@angular/forms';
5
+ import { MatAutocompleteSelectedEvent } from '@angular/material/autocomplete';
6
+ import { MatChipInputEvent } from '@angular/material/chips';
7
+ import { MatFormField, MatFormFieldControl, MAT_FORM_FIELD } from '@angular/material/form-field';
8
+ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
9
+ import { Subject } from 'rxjs';
10
+ import { debounceTime } from 'rxjs/operators';
11
+ import { HttpService } from '../core/http.service';
12
+ import { TechlifyTaggerTagFormConfigModel } from './techlify-tagger-tag-form-config.model';
13
+
14
+ @UntilDestroy()
15
+ @Component({
16
+ selector: 'app-techlify-tagger-tag-form-field',
17
+ templateUrl: './techlify-tagger-tag-form-field.component.html',
18
+ styleUrls: ['./techlify-tagger-tag-form-field.component.scss'],
19
+ providers: [{ provide: MatFormFieldControl, useExisting: TechlifyTaggerTagFormFieldComponent }],
20
+ })
21
+ export class TechlifyTaggerTagFormFieldComponent implements OnInit, ControlValueAccessor, MatFormFieldControl<any>, OnDestroy, OnChanges {
22
+
23
+ static nextId = 0;
24
+ stateChanges = new Subject<void>();
25
+ focused = false;
26
+ controlType = 'techlify-tagger-form-field';
27
+ id = `techlify-tagger-form-field-${TechlifyTaggerTagFormFieldComponent.nextId++}`;
28
+
29
+ onChange = (_: any) => { };
30
+ onTouched = () => { };
31
+
32
+ tagInputCtrl = new FormControl();
33
+ filterString: any;
34
+ @ViewChild('tagInput') tagInput: ElementRef<HTMLInputElement>;
35
+
36
+ /**Pass the configuration for Techlify Tagger */
37
+ @Input() config: TechlifyTaggerTagFormConfigModel = new TechlifyTaggerTagFormConfigModel();
38
+ /**Pass the Model Type for Techlify Tagger, Required */
39
+ @Input() modelType!: string;
40
+ /**Pass the Model ID for Techlify Tagger */
41
+ @Input() modelId: string;
42
+
43
+ /**Pass the default list of tags */
44
+ private _allTags: any[] = [];
45
+ @Input()
46
+ get allTags() {
47
+ return this._allTags;
48
+ }
49
+ set allTags(value) {
50
+ this._allTags = value;
51
+ }
52
+
53
+ /**Pass the Categories to filter for a model */
54
+ @Input() categories: string[] = [];
55
+ /**Pass default category to be used for assigning the tags, when we filter by more than one category */
56
+ @Input() defaultCreateCategory: string;
57
+
58
+ get tags() {
59
+ return this.allTags.filter(x => this.value.some(y => y == x.id));
60
+ }
61
+
62
+ //Default Getter and Setters for a Form Field Implementation
63
+ get empty() {
64
+ return this.value.length == 0;
65
+ }
66
+
67
+ get shouldLabelFloat() {
68
+ return this.focused || !this.empty || this.tagInputCtrl.value;
69
+ }
70
+
71
+ @Input()
72
+ get required(): boolean {
73
+ return this._required;
74
+ }
75
+ set required(value: boolean) {
76
+ this._required = coerceBooleanProperty(value);
77
+ this.stateChanges.next();
78
+ }
79
+ private _required = false;
80
+
81
+ @Input()
82
+ get disabled(): boolean {
83
+ return this._disabled;
84
+ }
85
+ set disabled(value: boolean) {
86
+ this._disabled = coerceBooleanProperty(value);
87
+ this._disabled ? this.tagInputCtrl.disable() : this.tagInputCtrl.enable();
88
+ this.stateChanges.next();
89
+ }
90
+ private _disabled = false;
91
+
92
+
93
+ private _value: any[] = [];
94
+ @Input()
95
+ get value(): any[] {
96
+ return this._value;
97
+ }
98
+ set value(tagIds: any[]) {
99
+ this._value = tagIds || [];
100
+ this.stateChanges.next();
101
+ }
102
+
103
+ get errorState(): boolean {
104
+ return this.tagInputCtrl.dirty && this.required && (this.value.length == 0);
105
+ }
106
+
107
+ @Input()
108
+ get placeholder(): string {
109
+ return this._placeholder;
110
+ }
111
+ set placeholder(value: string) {
112
+ this._placeholder = value;
113
+ this.stateChanges.next();
114
+ }
115
+ private _placeholder: string;
116
+
117
+
118
+ ngOnInit(): void {
119
+
120
+ }
121
+
122
+ ngOnChanges(changes: SimpleChanges) {
123
+
124
+ //API to load all tags for the model type
125
+ if (this.allTags.length == 0) {
126
+ this.httpService
127
+ .cache(!this.config.isCacheTags)
128
+ .get(this.config.apiUrl, {
129
+ params: {
130
+ categories: this.categories.join(','),
131
+ perPage: '1000'
132
+ }
133
+ }).pipe(
134
+ debounceTime(500),
135
+ untilDestroyed(this)
136
+ ).subscribe((result: any) => {
137
+ this.allTags = result.data;
138
+ });
139
+ }
140
+
141
+ //API to load only the selected tags for the model
142
+ if (this.modelId && this.value.length == 0) {
143
+ //Model Id is passed and no tags are present, so we query db for the avilable tags for the model ID.
144
+ this.httpService
145
+ .cache(!this.config.isCacheTags)
146
+ .get(this.config.apiUrl, {
147
+ params: {
148
+ categories: this.categories.join(','),
149
+ model_type: this.modelType,
150
+ model_id: this.modelId,
151
+ perPage: '1000'
152
+ }
153
+ }).pipe(
154
+ debounceTime(500),
155
+ untilDestroyed(this)
156
+ ).subscribe((result: any) => {
157
+ this.value = (result?.data || []).map((x: any) => x.id);
158
+ this._handleInput();
159
+ });
160
+ }
161
+ }
162
+
163
+ init() {
164
+ if (this.modelId && this.allTags.length == 0) {
165
+ //Model Id is passed and no tags are passed, so we query db for the avilable tags for the model ID.
166
+ this.httpService
167
+ .cache(!this.config.isCacheTags)
168
+ .get(this.config.apiUrl, {
169
+ params: {
170
+ categories: this.categories.join(','),
171
+ model_type: this.modelType,
172
+ model_id: this.modelId
173
+ }
174
+ }).pipe(
175
+ untilDestroyed(this)
176
+ ).subscribe((result: any) => {
177
+ this.allTags = result.data;
178
+ });
179
+ }
180
+ }
181
+
182
+ get filteredTags(): any[] {
183
+ return this._filter();
184
+ }
185
+
186
+ constructor(
187
+ private _focusMonitor: FocusMonitor,
188
+ private _elementRef: ElementRef<HTMLElement>,
189
+ private httpService: HttpService,
190
+ @Optional() @Inject(MAT_FORM_FIELD) public _formField: MatFormField,
191
+ @Optional() @Self() public ngControl: NgControl) {
192
+
193
+ this.tagInputCtrl.valueChanges
194
+ .subscribe(filterValue => {
195
+ this.filterString = filterValue;
196
+ });
197
+
198
+ //Set Focus Monitor
199
+ _focusMonitor.monitor(_elementRef, true).subscribe(origin => {
200
+ if (this.focused && !origin) {
201
+ this.onTouched();
202
+ }
203
+ this.focused = !!origin;
204
+ this.stateChanges.next();
205
+ });
206
+
207
+ if (this.ngControl != null) {
208
+ this.ngControl.valueAccessor = this;
209
+ }
210
+ }
211
+
212
+ setDescribedByIds(ids: string[]) {
213
+ // Just a empty implementation for Mat Form Field Interface
214
+ }
215
+
216
+ onContainerClick() {
217
+ // Just a empty implementation for Mat Form Field Interface
218
+ }
219
+
220
+
221
+ async add(event: MatChipInputEvent) {
222
+ const value = (event.value || '').trim();
223
+ // Add our tag
224
+ // Validate for single mode
225
+ if (!this.config.isSingle || (this.value.length === 0)) {
226
+ if (value && this.config.isCreateable) {
227
+ const tags = this.allTags;
228
+ let tag = tags.find((item: any) => item.title.toLowerCase() == value.toLowerCase());
229
+ if (!tag) {
230
+ //No tag present in the list
231
+ try {
232
+ const result: any = await this.httpService.post(this.config.createApiUrl, {
233
+ title: value,
234
+ description: value,
235
+ category_title: (this.categories.length > 0) ? (this.defaultCreateCategory ? this.defaultCreateCategory : this.categories[0]) : ''
236
+ }).toPromise();
237
+ tag = result.item;
238
+ } catch (error) {
239
+ return;
240
+ }
241
+ this.allTags.push(tag);
242
+ } else {
243
+ //Optionally clean the existing value, to avoid duplicate
244
+ this.remove(tag);
245
+ }
246
+ this.value.push(tag.id);
247
+ this._handleInput();
248
+ }
249
+ }
250
+
251
+ // Clear the input value
252
+ event.input.value = '';
253
+
254
+ this.tagInputCtrl.setValue(null);
255
+ }
256
+
257
+ remove(tag: any): void {
258
+ this.value = this.value.filter(x => x !== tag.id);
259
+ this._handleInput();
260
+ }
261
+
262
+ selected(event: MatAutocompleteSelectedEvent): void {
263
+ // Validate for single mode
264
+ if (!this.config.isSingle || (this.value.length === 0)) {
265
+ //Clean the existing value, to avoid duplicate
266
+ this.remove({ id: event.option.value });
267
+ this.value.push(event.option.value);
268
+ this._handleInput();
269
+ }
270
+ this.tagInput.nativeElement.value = '';
271
+ this.tagInputCtrl.setValue(null);
272
+ }
273
+
274
+ private _filter(): any[] {
275
+ const filterValue = this.filterString ? this.filterString.toString().toLowerCase() : null;
276
+ const availableTags = this.allTags.filter((tag: any) => !this.value.some((item: any) => item == tag.id));
277
+ return filterValue ? availableTags.filter((tag: any) => tag.title.toLowerCase().includes(filterValue)) : availableTags;
278
+ }
279
+
280
+ writeValue(tagIds: any[]): void {
281
+ this.value = tagIds || [];
282
+ }
283
+
284
+ registerOnChange(fn: any): void {
285
+ this.onChange = fn;
286
+ }
287
+
288
+ registerOnTouched(fn: any): void {
289
+ this.onTouched = fn;
290
+ }
291
+
292
+ setDisabledState(isDisabled: boolean): void {
293
+ this.disabled = isDisabled;
294
+ }
295
+
296
+ _handleInput(): void {
297
+ this.onChange(this.value);
298
+ }
299
+
300
+ static ngAcceptInputType_disabled: BooleanInput;
301
+ static ngAcceptInputType_required: BooleanInput;
302
+
303
+ ngOnDestroy() {
304
+ this.stateChanges.complete();
305
+ this._focusMonitor.stopMonitoring(this._elementRef);
306
+ }
307
+
308
+ }
@@ -0,0 +1,24 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { TechlifyTaggerTagFormFieldComponent } from './techlify-tagger-tag-form-field.component';
4
+ import { FlexLayoutModule } from '@angular/flex-layout';
5
+ import { ReactiveFormsModule } from '@angular/forms';
6
+ import { MatAutocompleteModule } from '@angular/material/autocomplete';
7
+ import { MaterialModule } from '../material.module';
8
+
9
+
10
+
11
+ @NgModule({
12
+ declarations: [
13
+ TechlifyTaggerTagFormFieldComponent
14
+ ],
15
+ imports: [
16
+ CommonModule,
17
+ MaterialModule,
18
+ FlexLayoutModule,
19
+ MatAutocompleteModule,
20
+ ReactiveFormsModule
21
+ ],
22
+ exports: [TechlifyTaggerTagFormFieldComponent]
23
+ })
24
+ export class TechlifyTaggerTagFormFieldModule { }
@@ -0,0 +1,8 @@
1
+ <app-searchable-selector *ngIf="apiUrl && !useSelectButtonStyle" [formControl]="tagSelectorCtrl" [apiUrl]="apiUrl"
2
+ [enableSearch]="enableSearch" [multiple]="multiple" (selectionChange)="selectionChange($event)">
3
+ </app-searchable-selector>
4
+
5
+ <mat-button-toggle-group *ngIf="apiUrl && useSelectButtonStyle" [formControl]="tagSelectorCtrl" [multiple]="multiple"
6
+ (change)="selectionChange($event.value)">
7
+ <mat-button-toggle *ngFor="let tag of tags" [value]="tag.id">{{tag.title}}</mat-button-toggle>
8
+ </mat-button-toggle-group>
@@ -0,0 +1,25 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { TechlifyTaggerTagSelectorComponent } from './techlify-tagger-tag-selector.component';
4
+
5
+ describe('TechlifyTaggerTagSelectorComponent', () => {
6
+ let component: TechlifyTaggerTagSelectorComponent;
7
+ let fixture: ComponentFixture<TechlifyTaggerTagSelectorComponent>;
8
+
9
+ beforeEach(async () => {
10
+ await TestBed.configureTestingModule({
11
+ declarations: [TechlifyTaggerTagSelectorComponent]
12
+ })
13
+ .compileComponents();
14
+ });
15
+
16
+ beforeEach(() => {
17
+ fixture = TestBed.createComponent(TechlifyTaggerTagSelectorComponent);
18
+ component = fixture.componentInstance;
19
+ fixture.detectChanges();
20
+ });
21
+
22
+ it('should create', () => {
23
+ expect(component).toBeTruthy();
24
+ });
25
+ });