@naniteninja/dashboard-components-lib 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (404) hide show
  1. package/esm2022/lib/components/auto-delegation/animations.mjs +20 -0
  2. package/esm2022/lib/components/auto-delegation/auto-delegation-modal.component.mjs +106 -0
  3. package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.mjs +6 -0
  4. package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.mjs +7 -0
  5. package/esm2022/lib/components/auto-delegation/interface/auto-delegation-data.interface.mjs +2 -0
  6. package/esm2022/lib/components/auto-delegation/interface/auto-delegation.event.interface.mjs +2 -0
  7. package/esm2022/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.mjs +2 -0
  8. package/esm2022/lib/components/auto-delegation/interface/preferences.interface.mjs +2 -0
  9. package/esm2022/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.mjs +37 -0
  10. package/esm2022/lib/components/calendar/agenda/agenda.component.mjs +98 -0
  11. package/esm2022/lib/components/calendar/agenda/agenda.module.mjs +24 -0
  12. package/esm2022/lib/components/calendar/agenda/interfaces/agenda.day.interface.mjs +2 -0
  13. package/esm2022/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.mjs +2 -0
  14. package/esm2022/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.mjs +40 -0
  15. package/esm2022/lib/components/calendar/components/event-form/event-form.component.mjs +275 -0
  16. package/esm2022/lib/components/calendar/components/event-form/event-form.module.mjs +89 -0
  17. package/esm2022/lib/components/calendar/components/event-info/event-info.component.mjs +40 -0
  18. package/esm2022/lib/components/calendar/enums/calendar.account.enum.mjs +6 -0
  19. package/esm2022/lib/components/calendar/enums/calendar.account.icons.enum.mjs +6 -0
  20. package/esm2022/lib/components/calendar/enums/event-type.enum.mjs +10 -0
  21. package/esm2022/lib/components/calendar/enums/recurring.edit.options.enum.mjs +7 -0
  22. package/esm2022/lib/components/calendar/enums/recurring.type.enum.mjs +8 -0
  23. package/esm2022/lib/components/calendar/interfaces/calendar.account.interface.mjs +2 -0
  24. package/esm2022/lib/components/calendar/interfaces/calendar.account.theme.interface.mjs +2 -0
  25. package/esm2022/lib/components/calendar/interfaces/event.form.interface.mjs +2 -0
  26. package/esm2022/lib/components/calendar/interfaces/event.form.output.interface.mjs +2 -0
  27. package/esm2022/lib/components/calendar/interfaces/event.interface.mjs +2 -0
  28. package/esm2022/lib/components/calendar/interfaces/event.time.interface.mjs +2 -0
  29. package/esm2022/lib/components/calendar/interfaces/recurring.event.interface.mjs +2 -0
  30. package/esm2022/lib/components/calendar/interfaces/recurring.exception.interface.mjs +2 -0
  31. package/esm2022/lib/components/calendar/interfaces/recurring.pattern.interface.mjs +2 -0
  32. package/esm2022/lib/components/calendar/lookups/recurring.options.lookup.mjs +30 -0
  33. package/esm2022/lib/components/calendar/scheduler/enums/schedule-date-status.enum.mjs +7 -0
  34. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.mjs +2 -0
  35. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.mjs +2 -0
  36. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.mjs +2 -0
  37. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.mjs +2 -0
  38. package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.mjs +2 -0
  39. package/esm2022/lib/components/calendar/scheduler/mock-schedule.mjs +80 -0
  40. package/esm2022/lib/components/calendar/scheduler/scheduler.component.mjs +144 -0
  41. package/esm2022/lib/components/calendar/services/calendar-utils.service.mjs +211 -0
  42. package/esm2022/lib/components/chat/chat.component.mjs +307 -0
  43. package/esm2022/lib/components/chat/chat.component.module.mjs +85 -0
  44. package/esm2022/lib/components/chat/chat.service.mjs +63 -0
  45. package/esm2022/lib/components/chat/enums/sender-types.enum.mjs +6 -0
  46. package/esm2022/lib/components/chat/gif-selector/gif-selector.component.mjs +77 -0
  47. package/esm2022/lib/components/chat/gif-selector/gif-selector.service.mjs +41 -0
  48. package/esm2022/lib/components/chat/gif-selector/tenor-media-format.interface.mjs +2 -0
  49. package/esm2022/lib/components/chat/gif-selector/tenor-object.interface.mjs +2 -0
  50. package/esm2022/lib/components/chat/gif-selector/tenor-result.interface.mjs +2 -0
  51. package/esm2022/lib/components/chat/interfaces/date-messages.interface.mjs +2 -0
  52. package/esm2022/lib/components/chat/interfaces/message-attachment.interface.mjs +2 -0
  53. package/esm2022/lib/components/chat/interfaces/message.interface.mjs +2 -0
  54. package/esm2022/lib/components/chat/interfaces/send-options-message.interface.mjs +2 -0
  55. package/esm2022/lib/components/chat/interfaces/type-send-message.enum.mjs +7 -0
  56. package/esm2022/lib/components/chat-suggestion/chat-suggestion.component.mjs +21 -0
  57. package/esm2022/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.mjs +2 -0
  58. package/esm2022/lib/components/circle-progress/circle-progress.component.mjs +143 -0
  59. package/esm2022/lib/components/circle-progress/circle-progress.module.mjs +18 -0
  60. package/esm2022/lib/components/circle-progress/enums/circle-variable.enum.mjs +6 -0
  61. package/esm2022/lib/components/circle-progress/interfaces/circle-progress-config.interface.mjs +2 -0
  62. package/esm2022/lib/components/client-home/client-home.component.mjs +123 -0
  63. package/esm2022/lib/components/client-home/enums/client-home-component.enum.mjs +9 -0
  64. package/esm2022/lib/components/client-home/interfaces/chat-meta.interface.mjs +2 -0
  65. package/esm2022/lib/components/client-home/interfaces/home-dashboard-inputs.interface.mjs +2 -0
  66. package/esm2022/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.mjs +2 -0
  67. package/esm2022/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.mjs +2 -0
  68. package/esm2022/lib/components/client-home/lookup/client-home.config.mjs +30 -0
  69. package/esm2022/lib/components/client-home/lookup/inner-progress-default-colors.config.mjs +6 -0
  70. package/esm2022/lib/components/client-home/lookup/inner-progress-pink-colors.config.mjs +6 -0
  71. package/esm2022/lib/components/client-home/lookup/inner-progress-purple-colors.config.mjs +6 -0
  72. package/esm2022/lib/components/client-home/lookup/inner-progress-teal-colors.config.mjs +6 -0
  73. package/esm2022/lib/components/client-home/lookup/inner-progress-white-colors.config.mjs +10 -0
  74. package/esm2022/lib/components/client-home/lookup/progress-default-colors.config.mjs +10 -0
  75. package/esm2022/lib/components/client-home/lookup/progress-white-colors.config.mjs +10 -0
  76. package/esm2022/lib/components/client-home/pipes/chat-meta.pipe.mjs +60 -0
  77. package/esm2022/lib/components/client-home/pipes/get-color-by-matcher.pipe.mjs +33 -0
  78. package/esm2022/lib/components/client-match-overview/client-match-overview.component.mjs +300 -0
  79. package/esm2022/lib/components/client-match-overview/enums/conversation-flag.enum.mjs +6 -0
  80. package/esm2022/lib/components/client-match-overview/enums/counter-flag-base.enum.mjs +6 -0
  81. package/esm2022/lib/components/client-match-overview/enums/inner-circle-state.enum.mjs +8 -0
  82. package/esm2022/lib/components/client-match-overview/interfaces/client-match-overview.interface.mjs +2 -0
  83. package/esm2022/lib/components/client-match-overview/interfaces/conversation-flag.interface.mjs +2 -0
  84. package/esm2022/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.mjs +2 -0
  85. package/esm2022/lib/components/client-match-overview/interfaces/progress-decision.interface.mjs +2 -0
  86. package/esm2022/lib/components/client-match-overview/interfaces/progress-facts.interface.mjs +2 -0
  87. package/esm2022/lib/components/client-match-overview/lookups/computer-inner-state.lookup.mjs +81 -0
  88. package/esm2022/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.mjs +8 -0
  89. package/esm2022/lib/components/client-match-overview/progress-ticker/progress-gap.config.mjs +4 -0
  90. package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.config.mjs +3 -0
  91. package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.service.mjs +43 -0
  92. package/esm2022/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.mjs +113 -0
  93. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.mjs +11 -0
  94. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.mjs +27 -0
  95. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.mjs +19 -0
  96. package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.mjs +21 -0
  97. package/esm2022/lib/components/lib-client-dashboard/client-dashboard.component.mjs +170 -0
  98. package/esm2022/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.mjs +11 -0
  99. package/esm2022/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.mjs +7 -0
  100. package/esm2022/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.mjs +2 -0
  101. package/esm2022/lib/components/lib-client-dashboard/lookups/client-dashboard.config.mjs +15 -0
  102. package/esm2022/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.mjs +146 -0
  103. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.mjs +2 -0
  104. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.mjs +2 -0
  105. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.mjs +2 -0
  106. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.mjs +2 -0
  107. package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.mjs +2 -0
  108. package/esm2022/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.mjs +21 -0
  109. package/esm2022/lib/components/matcher-statuses/enums/matcher-statuses.enum.mjs +15 -0
  110. package/esm2022/lib/components/matcher-statuses/interfaces/status.interface.mjs +2 -0
  111. package/esm2022/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.mjs +54 -0
  112. package/esm2022/lib/components/matcher-statuses/matcher-statuses.component.mjs +58 -0
  113. package/esm2022/lib/components/matcher-statuses/pipes/is-status-included.pipe.mjs +19 -0
  114. package/esm2022/lib/components/profile-card/profile-card.component.mjs +35 -0
  115. package/esm2022/lib/components/profile-card/profile-card.module.mjs +19 -0
  116. package/esm2022/lib/components/spider-chart/interfaces/chart-data-circle.interface.mjs +2 -0
  117. package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.mjs +2 -0
  118. package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.mjs +2 -0
  119. package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.mjs +2 -0
  120. package/esm2022/lib/components/spider-chart/interfaces/config.interface.mjs +2 -0
  121. package/esm2022/lib/components/spider-chart/interfaces/dataset.interface.mjs +2 -0
  122. package/esm2022/lib/components/spider-chart/interfaces/polygon-color.interface.mjs +2 -0
  123. package/esm2022/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.mjs +2 -0
  124. package/esm2022/lib/components/spider-chart/lookup/default-spider-config.lookup.mjs +18 -0
  125. package/esm2022/lib/components/spider-chart/lookup/default-spider-config.mjs +67 -0
  126. package/esm2022/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.mjs +11 -0
  127. package/esm2022/lib/components/spider-chart/lookup/svg-config.lookup.mjs +277 -0
  128. package/esm2022/lib/components/spider-chart/spider-chart.component.mjs +235 -0
  129. package/esm2022/lib/enums/direction.enum.mjs +6 -0
  130. package/esm2022/lib/enums/form-field-type.mjs +30 -0
  131. package/esm2022/lib/enums/local-storage-keys.enum.mjs +5 -0
  132. package/esm2022/lib/enums/status-types.mjs +8 -0
  133. package/esm2022/lib/model/select-option-template.mjs +2 -0
  134. package/esm2022/lib/operations/operations.mjs +19 -0
  135. package/esm2022/lib/pipes/array-sort/array.sort.pipe.mjs +49 -0
  136. package/esm2022/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.mjs +17 -0
  137. package/esm2022/lib/pipes/date-localization/date-localization.pipe.mjs +31 -0
  138. package/esm2022/lib/pipes/fallback-translate/fallback-translate.pipe.mjs +28 -0
  139. package/esm2022/lib/pipes/get-display-value/get-display-value.pipe.mjs +59 -0
  140. package/esm2022/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.mjs +22 -0
  141. package/esm2022/lib/pipes/initials/initials.pipe.mjs +25 -0
  142. package/esm2022/lib/pipes/round/round.pipe.mjs +17 -0
  143. package/esm2022/lib/pipes/update-llm-preference/update-llm-preference.pipe.mjs +25 -0
  144. package/esm2022/lib/services/abstract-cache.service.mjs +10 -0
  145. package/esm2022/lib/shared/shared/alert-popup/alert-popup.component.mjs +38 -0
  146. package/esm2022/lib/shared/shared/message-modal/message-modal.component.mjs +95 -0
  147. package/esm2022/lib/shared/shared/status-icon/status-icon.component.mjs +14 -0
  148. package/esm2022/lib/shared/shared.module.mjs +23 -0
  149. package/esm2022/naniteninja-dashboard-components-lib.mjs +5 -0
  150. package/esm2022/public-api.mjs +122 -0
  151. package/fesm2022/naniteninja-dashboard-components-lib.mjs +4334 -0
  152. package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -0
  153. package/index.d.ts +5 -0
  154. package/lib/components/auto-delegation/animations.d.ts +1 -0
  155. package/lib/components/auto-delegation/auto-delegation-modal.component.d.ts +29 -0
  156. package/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.d.ts +4 -0
  157. package/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.d.ts +5 -0
  158. package/lib/components/auto-delegation/interface/auto-delegation-data.interface.d.ts +31 -0
  159. package/lib/components/auto-delegation/interface/auto-delegation.event.interface.d.ts +6 -0
  160. package/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.d.ts +8 -0
  161. package/lib/components/auto-delegation/interface/preferences.interface.d.ts +17 -0
  162. package/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.d.ts +12 -0
  163. package/lib/components/calendar/agenda/agenda.component.d.ts +22 -0
  164. package/lib/components/calendar/agenda/agenda.module.d.ts +12 -0
  165. package/lib/components/calendar/agenda/interfaces/agenda.day.interface.d.ts +7 -0
  166. package/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.d.ts +9 -0
  167. package/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.d.ts +19 -0
  168. package/lib/components/calendar/components/event-form/event-form.component.d.ts +67 -0
  169. package/lib/components/calendar/components/event-form/event-form.module.d.ts +20 -0
  170. package/lib/components/calendar/components/event-info/event-info.component.d.ts +24 -0
  171. package/lib/components/calendar/enums/calendar.account.enum.d.ts +4 -0
  172. package/lib/components/calendar/enums/calendar.account.icons.enum.d.ts +4 -0
  173. package/lib/components/calendar/enums/event-type.enum.d.ts +8 -0
  174. package/lib/components/calendar/enums/recurring.edit.options.enum.d.ts +5 -0
  175. package/lib/components/calendar/enums/recurring.type.enum.d.ts +6 -0
  176. package/lib/components/calendar/interfaces/calendar.account.interface.d.ts +14 -0
  177. package/lib/components/calendar/interfaces/calendar.account.theme.interface.d.ts +5 -0
  178. package/lib/components/calendar/interfaces/event.form.interface.d.ts +22 -0
  179. package/lib/components/calendar/interfaces/event.form.output.interface.d.ts +10 -0
  180. package/lib/components/calendar/interfaces/event.interface.d.ts +33 -0
  181. package/lib/components/calendar/interfaces/event.time.interface.d.ts +4 -0
  182. package/lib/components/calendar/interfaces/recurring.event.interface.d.ts +16 -0
  183. package/lib/components/calendar/interfaces/recurring.exception.interface.d.ts +14 -0
  184. package/lib/components/calendar/interfaces/recurring.pattern.interface.d.ts +16 -0
  185. package/lib/components/calendar/lookups/recurring.options.lookup.d.ts +2 -0
  186. package/lib/components/calendar/scheduler/enums/schedule-date-status.enum.d.ts +5 -0
  187. package/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.d.ts +10 -0
  188. package/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.d.ts +5 -0
  189. package/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.d.ts +26 -0
  190. package/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.d.ts +13 -0
  191. package/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.d.ts +6 -0
  192. package/lib/components/calendar/scheduler/mock-schedule.d.ts +9 -0
  193. package/lib/components/calendar/scheduler/scheduler.component.d.ts +36 -0
  194. package/lib/components/calendar/services/calendar-utils.service.d.ts +39 -0
  195. package/lib/components/chat/chat.component.d.ts +70 -0
  196. package/lib/components/chat/chat.component.module.d.ts +22 -0
  197. package/lib/components/chat/chat.service.d.ts +15 -0
  198. package/lib/components/chat/enums/sender-types.enum.d.ts +4 -0
  199. package/lib/components/chat/gif-selector/gif-selector.component.d.ts +25 -0
  200. package/lib/components/chat/gif-selector/gif-selector.service.d.ts +15 -0
  201. package/lib/components/chat/gif-selector/tenor-media-format.interface.d.ts +7 -0
  202. package/lib/components/chat/gif-selector/tenor-object.interface.d.ts +5 -0
  203. package/lib/components/chat/gif-selector/tenor-result.interface.d.ts +16 -0
  204. package/lib/components/chat/interfaces/date-messages.interface.d.ts +6 -0
  205. package/lib/components/chat/interfaces/message-attachment.interface.d.ts +6 -0
  206. package/lib/components/chat/interfaces/message.interface.d.ts +11 -0
  207. package/lib/components/chat/interfaces/send-options-message.interface.d.ts +5 -0
  208. package/lib/components/chat/interfaces/type-send-message.enum.d.ts +5 -0
  209. package/lib/components/chat-suggestion/chat-suggestion.component.d.ts +9 -0
  210. package/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.d.ts +4 -0
  211. package/lib/components/circle-progress/circle-progress.component.d.ts +31 -0
  212. package/lib/components/circle-progress/circle-progress.module.d.ts +8 -0
  213. package/lib/components/circle-progress/enums/circle-variable.enum.d.ts +4 -0
  214. package/lib/components/circle-progress/interfaces/circle-progress-config.interface.d.ts +29 -0
  215. package/lib/components/client-home/client-home.component.d.ts +44 -0
  216. package/lib/components/client-home/enums/client-home-component.enum.d.ts +7 -0
  217. package/lib/components/client-home/interfaces/chat-meta.interface.d.ts +7 -0
  218. package/lib/components/client-home/interfaces/home-dashboard-inputs.interface.d.ts +45 -0
  219. package/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.d.ts +5 -0
  220. package/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.d.ts +9 -0
  221. package/lib/components/client-home/lookup/client-home.config.d.ts +2 -0
  222. package/lib/components/client-home/lookup/inner-progress-default-colors.config.d.ts +2 -0
  223. package/lib/components/client-home/lookup/inner-progress-pink-colors.config.d.ts +2 -0
  224. package/lib/components/client-home/lookup/inner-progress-purple-colors.config.d.ts +2 -0
  225. package/lib/components/client-home/lookup/inner-progress-teal-colors.config.d.ts +2 -0
  226. package/lib/components/client-home/lookup/inner-progress-white-colors.config.d.ts +2 -0
  227. package/lib/components/client-home/lookup/progress-default-colors.config.d.ts +2 -0
  228. package/lib/components/client-home/lookup/progress-white-colors.config.d.ts +2 -0
  229. package/lib/components/client-home/pipes/chat-meta.pipe.d.ts +10 -0
  230. package/lib/components/client-home/pipes/get-color-by-matcher.pipe.d.ts +10 -0
  231. package/lib/components/client-match-overview/client-match-overview.component.d.ts +55 -0
  232. package/lib/components/client-match-overview/enums/conversation-flag.enum.d.ts +4 -0
  233. package/lib/components/client-match-overview/enums/counter-flag-base.enum.d.ts +4 -0
  234. package/lib/components/client-match-overview/enums/inner-circle-state.enum.d.ts +6 -0
  235. package/lib/components/client-match-overview/interfaces/client-match-overview.interface.d.ts +19 -0
  236. package/lib/components/client-match-overview/interfaces/conversation-flag.interface.d.ts +8 -0
  237. package/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.d.ts +7 -0
  238. package/lib/components/client-match-overview/interfaces/progress-decision.interface.d.ts +10 -0
  239. package/lib/components/client-match-overview/interfaces/progress-facts.interface.d.ts +11 -0
  240. package/lib/components/client-match-overview/lookups/computer-inner-state.lookup.d.ts +7 -0
  241. package/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.d.ts +5 -0
  242. package/lib/components/client-match-overview/progress-ticker/progress-gap.config.d.ts +2 -0
  243. package/lib/components/client-match-overview/progress-ticker/progress-ticker.config.d.ts +2 -0
  244. package/lib/components/client-match-overview/progress-ticker/progress-ticker.service.d.ts +11 -0
  245. package/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.d.ts +29 -0
  246. package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.d.ts +2 -0
  247. package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.d.ts +2 -0
  248. package/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.d.ts +2 -0
  249. package/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.d.ts +2 -0
  250. package/lib/components/lib-client-dashboard/client-dashboard.component.d.ts +73 -0
  251. package/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.d.ts +9 -0
  252. package/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.d.ts +5 -0
  253. package/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.d.ts +29 -0
  254. package/lib/components/lib-client-dashboard/lookups/client-dashboard.config.d.ts +2 -0
  255. package/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.d.ts +48 -0
  256. package/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.d.ts +5 -0
  257. package/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.d.ts +5 -0
  258. package/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.d.ts +26 -0
  259. package/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.d.ts +8 -0
  260. package/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.d.ts +24 -0
  261. package/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.d.ts +9 -0
  262. package/lib/components/matcher-statuses/enums/matcher-statuses.enum.d.ts +13 -0
  263. package/lib/components/matcher-statuses/interfaces/status.interface.d.ts +6 -0
  264. package/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.d.ts +2 -0
  265. package/lib/components/matcher-statuses/matcher-statuses.component.d.ts +23 -0
  266. package/lib/components/matcher-statuses/pipes/is-status-included.pipe.d.ts +8 -0
  267. package/lib/components/profile-card/profile-card.component.d.ts +11 -0
  268. package/lib/components/profile-card/profile-card.module.d.ts +9 -0
  269. package/lib/components/spider-chart/interfaces/chart-data-circle.interface.d.ts +10 -0
  270. package/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.d.ts +11 -0
  271. package/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.d.ts +11 -0
  272. package/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.d.ts +10 -0
  273. package/lib/components/spider-chart/interfaces/config.interface.d.ts +19 -0
  274. package/lib/components/spider-chart/interfaces/dataset.interface.d.ts +7 -0
  275. package/lib/components/spider-chart/interfaces/polygon-color.interface.d.ts +4 -0
  276. package/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.d.ts +6 -0
  277. package/lib/components/spider-chart/lookup/default-spider-config.d.ts +2 -0
  278. package/lib/components/spider-chart/lookup/default-spider-config.lookup.d.ts +2 -0
  279. package/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.d.ts +2 -0
  280. package/lib/components/spider-chart/lookup/svg-config.lookup.d.ts +8 -0
  281. package/lib/components/spider-chart/spider-chart.component.d.ts +52 -0
  282. package/lib/enums/direction.enum.d.ts +4 -0
  283. package/lib/enums/form-field-type.d.ts +28 -0
  284. package/lib/enums/local-storage-keys.enum.d.ts +3 -0
  285. package/lib/enums/status-types.d.ts +6 -0
  286. package/lib/model/select-option-template.d.ts +5 -0
  287. package/lib/operations/operations.d.ts +19 -0
  288. package/lib/pipes/array-sort/array.sort.pipe.d.ts +7 -0
  289. package/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.d.ts +7 -0
  290. package/lib/pipes/date-localization/date-localization.pipe.d.ts +8 -0
  291. package/lib/pipes/fallback-translate/fallback-translate.pipe.d.ts +11 -0
  292. package/lib/pipes/get-display-value/get-display-value.pipe.d.ts +13 -0
  293. package/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.d.ts +8 -0
  294. package/lib/pipes/initials/initials.pipe.d.ts +7 -0
  295. package/lib/pipes/round/round.pipe.d.ts +7 -0
  296. package/lib/pipes/update-llm-preference/update-llm-preference.pipe.d.ts +8 -0
  297. package/lib/services/abstract-cache.service.d.ts +9 -0
  298. package/lib/shared/shared/alert-popup/alert-popup.component.d.ts +14 -0
  299. package/lib/shared/shared/message-modal/message-modal.component.d.ts +29 -0
  300. package/lib/shared/shared/status-icon/status-icon.component.d.ts +7 -0
  301. package/lib/shared/shared.module.d.ts +13 -0
  302. package/naniteninja-dashboard-components-lib-1.0.0.tgz +0 -0
  303. package/package.json +69 -0
  304. package/public-api.d.ts +121 -0
  305. package/src/assets/auto-delegation-modal/cross.svg +17 -0
  306. package/src/assets/auto-delegation-modal/menu.svg +3 -0
  307. package/src/assets/auto-delegation-modal/timer-center-dot.svg +25 -0
  308. package/src/assets/auto-delegation-modal/user-profile.svg +9 -0
  309. package/src/assets/circle-progress/circle-progress-1.svg +159 -0
  310. package/src/assets/circle-progress/circle-progress-2.svg +155 -0
  311. package/src/assets/circle-progress/circle-progress-3.svg +25 -0
  312. package/src/assets/circle-progress/circle-progress.svg +159 -0
  313. package/src/assets/client-match-overview/background-eclipse.svg +13 -0
  314. package/src/assets/fonts/calistoga/Calistoga-Regular.ttf +0 -0
  315. package/src/assets/fonts/gilroy/Gilroy-Black.ttf +0 -0
  316. package/src/assets/fonts/gilroy/Gilroy-BlackItalic.ttf +0 -0
  317. package/src/assets/fonts/gilroy/Gilroy-Bold.ttf +0 -0
  318. package/src/assets/fonts/gilroy/Gilroy-BoldItalic.ttf +0 -0
  319. package/src/assets/fonts/gilroy/Gilroy-ExtraBold.ttf +0 -0
  320. package/src/assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf +0 -0
  321. package/src/assets/fonts/gilroy/Gilroy-Heavy.ttf +0 -0
  322. package/src/assets/fonts/gilroy/Gilroy-HeavyItalic.ttf +0 -0
  323. package/src/assets/fonts/gilroy/Gilroy-Light.ttf +0 -0
  324. package/src/assets/fonts/gilroy/Gilroy-LightItalic.ttf +0 -0
  325. package/src/assets/fonts/gilroy/Gilroy-Medium.ttf +0 -0
  326. package/src/assets/fonts/gilroy/Gilroy-MediumItalic.ttf +0 -0
  327. package/src/assets/fonts/gilroy/Gilroy-Regular.ttf +0 -0
  328. package/src/assets/fonts/gilroy/Gilroy-RegularItalic.ttf +0 -0
  329. package/src/assets/fonts/gilroy/Gilroy-SemiBold.ttf +0 -0
  330. package/src/assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf +0 -0
  331. package/src/assets/fonts/gilroy/Gilroy-Thin.ttf +0 -0
  332. package/src/assets/fonts/gilroy/Gilroy-ThinItalic.ttf +0 -0
  333. package/src/assets/fonts/gilroy/Gilroy-UltraLight.ttf +0 -0
  334. package/src/assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf +0 -0
  335. package/src/assets/grid/icons/filter-button.svg +47 -0
  336. package/src/assets/grid/images/chips-background-shadow.svg +34 -0
  337. package/src/assets/icons/back-v2.svg +14 -0
  338. package/src/assets/icons/checkbox/checkbox-off.svg +72 -0
  339. package/src/assets/icons/checkbox/checkbox-on.svg +113 -0
  340. package/src/assets/icons/checkmark-button.svg +72 -0
  341. package/src/assets/icons/checkmark.svg +7 -0
  342. package/src/assets/icons/close-icon.svg +3 -0
  343. package/src/assets/icons/compose-matcher/notes.svg +4 -0
  344. package/src/assets/icons/compose-matcher/profile.svg +4 -0
  345. package/src/assets/icons/compose-matcher/suggest.svg +3 -0
  346. package/src/assets/icons/compose-matcher/visual.svg +3 -0
  347. package/src/assets/icons/default-profile.svg +23 -0
  348. package/src/assets/icons/defualt.svg +5 -0
  349. package/src/assets/icons/first-page.svg +7 -0
  350. package/src/assets/icons/incrementer/minus.svg +3 -0
  351. package/src/assets/icons/incrementer/plus.svg +3 -0
  352. package/src/assets/icons/info.svg +5 -0
  353. package/src/assets/icons/last-page.svg +7 -0
  354. package/src/assets/icons/minus.svg +3 -0
  355. package/src/assets/icons/next-page.svg +6 -0
  356. package/src/assets/icons/plus.svg +3 -0
  357. package/src/assets/icons/popup-defualt.svg +34 -0
  358. package/src/assets/icons/prev-page.svg +6 -0
  359. package/src/assets/icons/send-icon.svg +4 -0
  360. package/src/assets/icons/shake.svg +74 -0
  361. package/src/assets/icons/thumbs-up.svg +28 -0
  362. package/src/assets/nsfw/blazeface.bundle.js +2 -0
  363. package/src/assets/nsfw/model/group1-shard1of1 +0 -0
  364. package/src/assets/nsfw/model/model.json +4085 -0
  365. package/src/assets/nsfw/nsfwjs.bundle.js +2 -0
  366. package/src/assets/nsfw/tf.bundle.js +2 -0
  367. package/src/assets/scheduler/accept.svg +3 -0
  368. package/src/assets/scheduler/accept_active.svg +3 -0
  369. package/src/assets/scheduler/arrow.svg +13 -0
  370. package/src/assets/scheduler/cancel.svg +3 -0
  371. package/src/assets/scheduler/cancel_active.svg +3 -0
  372. package/src/assets/scheduler/heart.svg +18 -0
  373. package/src/assets/trait-visual/force-directed-graph.png +0 -0
  374. package/src/lib/shared-styles/common/_colors.scss +30 -0
  375. package/src/lib/shared-styles/common/animations.scss +48 -0
  376. package/src/lib/shared-styles/common/base-input-field.scss +132 -0
  377. package/src/lib/shared-styles/common/buttons.scss +152 -0
  378. package/src/lib/shared-styles/common/cards.scss +163 -0
  379. package/src/lib/shared-styles/common/client-dash.scss +5 -0
  380. package/src/lib/shared-styles/common/date-picker.scss +179 -0
  381. package/src/lib/shared-styles/common/draggable-scroll-and-marquee.scss +34 -0
  382. package/src/lib/shared-styles/common/feedback.scss +157 -0
  383. package/src/lib/shared-styles/common/fonts.scss +3 -0
  384. package/src/lib/shared-styles/common/information-card.scss +56 -0
  385. package/src/lib/shared-styles/common/input.scss +110 -0
  386. package/src/lib/shared-styles/common/lib-styles-utils.scss +157 -0
  387. package/src/lib/shared-styles/common/lists.scss +91 -0
  388. package/src/lib/shared-styles/common/login.scss +32 -0
  389. package/src/lib/shared-styles/common/maps.scss +10 -0
  390. package/src/lib/shared-styles/common/matcher-dash.scss +49 -0
  391. package/src/lib/shared-styles/common/modal_styles.scss +32 -0
  392. package/src/lib/shared-styles/common/notifications-list.scss +9 -0
  393. package/src/lib/shared-styles/common/overrides.scss +6 -0
  394. package/src/lib/shared-styles/common/pulse.scss +26 -0
  395. package/src/lib/shared-styles/common/swiper.scss +5 -0
  396. package/src/lib/shared-styles/common/tab-menu.scss +74 -0
  397. package/src/lib/shared-styles/common/theme.scss +55 -0
  398. package/src/lib/shared-styles/common/typography.scss +121 -0
  399. package/src/lib/shared-styles/common/user-menu.scss +129 -0
  400. package/src/lib/shared-styles/fonts/calistoga.font.scss +6 -0
  401. package/src/lib/shared-styles/fonts/gilroy.font.scss +160 -0
  402. package/src/lib/shared-styles/images/compress.png +0 -0
  403. package/src/lib/shared-styles/images/expand.png +0 -0
  404. package/src/lib/shared-styles/styles.scss +25 -0
@@ -0,0 +1,19 @@
1
+ import * as d3 from 'd3';
2
+ import { IDataset } from './dataset.interface';
3
+ import { ISpiderChartAttribute } from './spider-chart-attribute.interface';
4
+ export interface ISpiderChartConfig {
5
+ w: number;
6
+ h: number;
7
+ fullScreen: boolean;
8
+ levels: number;
9
+ maxValue: number;
10
+ labelFactor: number;
11
+ wrapWidth: number;
12
+ opacityArea: number;
13
+ dotRadius: number;
14
+ opacityCircles: number;
15
+ strokeWidth: number;
16
+ color: d3.ScaleOrdinal<string, string>;
17
+ attributes: ISpiderChartAttribute[];
18
+ datasets: IDataset[];
19
+ }
@@ -0,0 +1,7 @@
1
+ import { IPolygonColor } from './polygon-color.interface';
2
+ export interface IDataset {
3
+ title: string;
4
+ keys: string[];
5
+ values: Record<string, number>;
6
+ polygon_color?: IPolygonColor;
7
+ }
@@ -0,0 +1,4 @@
1
+ export interface IPolygonColor {
2
+ label: string;
3
+ value: string;
4
+ }
@@ -0,0 +1,6 @@
1
+ export interface ISpiderChartAttribute {
2
+ key: string;
3
+ text: string;
4
+ titleAlertPopup?: string;
5
+ descriptionAlertPopup?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ import { ISpiderChartConfig } from '../interfaces/config.interface';
2
+ export declare const defaultSpiderConfig: ISpiderChartConfig;
@@ -0,0 +1,2 @@
1
+ import { ISpiderChartConfig } from '../interfaces/config.interface';
2
+ export declare const defaultSpiderConfig: ISpiderChartConfig;
@@ -0,0 +1,2 @@
1
+ import { IPolygonColor } from '../interfaces/polygon-color.interface';
2
+ export declare const demoPolygonColors: IPolygonColor[];
@@ -0,0 +1,8 @@
1
+ import { ICircleData } from '../interfaces/chart-data-circle.interface';
2
+ import { IDefsF } from '../interfaces/chart-data-defs-f.interface';
3
+ import { IDefsLG } from '../interfaces/chart-data-defs-lg.interface';
4
+ import { IDefsRG } from '../interfaces/chart-data-defs-rg.interface';
5
+ export declare const circleData: ICircleData[];
6
+ export declare const defsLG: IDefsLG[];
7
+ export declare const defsF: IDefsF[];
8
+ export declare const defsRG: IDefsRG[];
@@ -0,0 +1,52 @@
1
+ import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
2
+ import * as d3 from 'd3';
3
+ import { InitialsPipe } from '../../pipes/initials/initials.pipe';
4
+ import { AlertStatusFields } from '../lib-client-dashboard/enums/alert-status-fields.enum';
5
+ import { ICircleData } from './interfaces/chart-data-circle.interface';
6
+ import { IDefsF } from './interfaces/chart-data-defs-f.interface';
7
+ import { IDefsLG } from './interfaces/chart-data-defs-lg.interface';
8
+ import { IDefsRG } from './interfaces/chart-data-defs-rg.interface';
9
+ import { ISpiderChartConfig } from './interfaces/config.interface';
10
+ import { IDataset } from './interfaces/dataset.interface';
11
+ import { IPolygonColor } from './interfaces/polygon-color.interface';
12
+ import * as i0 from "@angular/core";
13
+ export declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewInit {
14
+ private cdr;
15
+ d3Chart: ElementRef;
16
+ datasets: IDataset[];
17
+ config: ISpiderChartConfig;
18
+ polygon_colors: IPolygonColor[];
19
+ showChartInfo: boolean;
20
+ alertStatusFields: typeof AlertStatusFields;
21
+ titleAlertPopup: string;
22
+ descriptionAlertPopup: string;
23
+ isAlertPopupClosing: boolean;
24
+ timeStateAlertPopup: number;
25
+ numberAlertPopup: number;
26
+ svg: d3.Selection<SVGSVGElement, unknown, HTMLElement, unknown>;
27
+ defsRG: IDefsRG[];
28
+ defsF: IDefsF[];
29
+ defsLG: IDefsLG[];
30
+ circleData: ICircleData[];
31
+ readonly initialsPipe: InitialsPipe;
32
+ constructor(cdr: ChangeDetectorRef);
33
+ ngOnChanges(changes: SimpleChanges): void;
34
+ ngAfterViewInit(): void;
35
+ ngOnDestroy(): void;
36
+ onClosedAlert(data: {
37
+ event: boolean;
38
+ field: AlertStatusFields;
39
+ }): void;
40
+ private initializeChart;
41
+ private createSvgObject;
42
+ private createLine;
43
+ private createCircle;
44
+ private createText;
45
+ private createPolygons;
46
+ private createDefsAndLinearGradient;
47
+ private createDefsAndFilter;
48
+ private createDefsAndRadialGradient;
49
+ private createRadarChart;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<SpiderChartComponent, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<SpiderChartComponent, "lib-spider-chart", never, { "datasets": { "alias": "datasets"; "required": false; }; "config": { "alias": "config"; "required": false; }; "polygon_colors": { "alias": "polygon_colors"; "required": false; }; "showChartInfo": { "alias": "showChartInfo"; "required": false; }; }, {}, never, never, true, never>;
52
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum Direction {
2
+ horizontal = "horizontal",
3
+ vertical = "vertical"
4
+ }
@@ -0,0 +1,28 @@
1
+ export declare enum FormFieldType {
2
+ date = "date",
3
+ text = "text",
4
+ textarea = "textarea",
5
+ typeahead = "typeahead",
6
+ multiselect = "multiselect",
7
+ select = "select",
8
+ checkbox = "checkbox",
9
+ toggle = "toggle",
10
+ radio = "radio",
11
+ textlist = "textlist",
12
+ number = "number",
13
+ message = "message",
14
+ time = "time",
15
+ multifield = "multifield",
16
+ action = "action",
17
+ currency = "currency",
18
+ banner = "banner",
19
+ percentage = "percentage",
20
+ multiselectdropdown = "multiselectdropdown",
21
+ hyperlink = "hyperlink",
22
+ injectable = "injectable",
23
+ datetime = "datetime",
24
+ rating = "rating",
25
+ incrementer = "incrementer",
26
+ range = "range",
27
+ password = "password"
28
+ }
@@ -0,0 +1,3 @@
1
+ export declare enum LocalStorageKeys {
2
+ LongPressForSendImmediately = "longPressForSendImmediately"
3
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum StatusTypes {
2
+ Info = "info",
3
+ Warning = "warning",
4
+ Error = "error",
5
+ Success = "success"
6
+ }
@@ -0,0 +1,5 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import { SelectOption } from '@naniteninja/ionic-lib';
3
+ export interface SelectOptionWithTemplate<T> extends SelectOption<T> {
4
+ addOnTemplateRef?: TemplateRef<HTMLElement>;
5
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * operations.ts - Contains common operations utility functions.
3
+ *
4
+ * @file This file exports utility functions for common operations.
5
+ */
6
+ /**
7
+ * Generates a random string of the specified length.
8
+ *
9
+ * @param {number} [length=10] - The length of the random string to generate. Default is 10.
10
+ * @return {string} A randomly generated string.
11
+ */
12
+ declare function randomString(length?: number): string;
13
+ /**
14
+ * Collection of common operations utility functions.
15
+ */
16
+ export declare const CommonOperations: {
17
+ randomString: typeof randomString;
18
+ };
19
+ export {};
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class ArraySortPipe implements PipeTransform {
4
+ transform(array: any, field: string, type?: string): any[];
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<ArraySortPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<ArraySortPipe, "sort", false>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class CountNonEmptyFieldsPipe implements PipeTransform {
4
+ transform(records: Record<string, string | null>): number;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<CountNonEmptyFieldsPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<CountNonEmptyFieldsPipe, "countNonEmptyFields", false>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import moment from 'moment';
3
+ import * as i0 from "@angular/core";
4
+ export declare class DateLocalizationPipe implements PipeTransform {
5
+ transform(value: string | moment.Moment, dateFormat: string): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<DateLocalizationPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<DateLocalizationPipe, "dateLocalization", false>;
8
+ }
@@ -0,0 +1,11 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { TranslateService } from '@ngx-translate/core';
3
+ import * as i0 from "@angular/core";
4
+ export declare class FallbackTranslatePipe implements PipeTransform {
5
+ private translate;
6
+ constructor(translate: TranslateService);
7
+ transform(key: string, fallback: string): string;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<FallbackTranslatePipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<FallbackTranslatePipe, "fallbackTranslate", true>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<FallbackTranslatePipe>;
11
+ }
@@ -0,0 +1,13 @@
1
+ import { CurrencyPipe } from '@angular/common';
2
+ import { PipeTransform } from '@angular/core';
3
+ import { GridColumn } from '@naniteninja/ionic-lib';
4
+ import { DateLocalizationPipe } from '../date-localization/date-localization.pipe';
5
+ import * as i0 from "@angular/core";
6
+ export declare class GetDisplayValuePipe implements PipeTransform {
7
+ private dateLocalizationPipe;
8
+ private currencyPipe;
9
+ constructor(dateLocalizationPipe: DateLocalizationPipe, currencyPipe: CurrencyPipe);
10
+ transform(data: any, column: GridColumn, dateFormat: string, corporateCurrency?: string): string;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetDisplayValuePipe, never>;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetDisplayValuePipe, "getDisplayValue", false>;
13
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { SelectOption } from '@naniteninja/ionic-lib';
3
+ import * as i0 from "@angular/core";
4
+ export declare class GetMultiSelectDisplayTextPipe implements PipeTransform {
5
+ transform(formValue: any[], options: SelectOption<any>[]): string;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetMultiSelectDisplayTextPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<GetMultiSelectDisplayTextPipe, "getMultiSelectDisplayText", false>;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class InitialsPipe implements PipeTransform {
4
+ transform(fullName: string, numChars?: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<InitialsPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<InitialsPipe, "initials", false>;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class RoundPipe implements PipeTransform {
4
+ transform(value: number): number;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round", false>;
7
+ }
@@ -0,0 +1,8 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { SelectOption } from '@naniteninja/ionic-lib';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UpdateLLMPreferencePipe implements PipeTransform {
5
+ transform(values: SelectOption<string>[], llmPreferenceLoading: string[]): SelectOption<string>[];
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<UpdateLLMPreferencePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<UpdateLLMPreferencePipe, "updateLLMPreference", true>;
8
+ }
@@ -0,0 +1,9 @@
1
+ import { JSONSchema } from '@ngx-pwa/local-storage';
2
+ import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class AbstractCacheService {
5
+ abstract saveLocalStorage(key: string, value: unknown, schema?: JSONSchema): void;
6
+ abstract getLocalStorage<T>(key: string): Observable<T>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AbstractCacheService, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<AbstractCacheService>;
9
+ }
@@ -0,0 +1,14 @@
1
+ import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class AlertPopupComponent implements OnChanges {
4
+ title: string;
5
+ description: string;
6
+ timeState: number;
7
+ number: number;
8
+ closed: EventEmitter<boolean>;
9
+ isClosing: boolean;
10
+ ngOnChanges(changes: SimpleChanges): void;
11
+ handleCloseEvent(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AlertPopupComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AlertPopupComponent, "lib-alert-popup", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "timeState": { "alias": "timeState"; "required": false; }; "number": { "alias": "number"; "required": false; }; }, { "closed": "closed"; }, never, never, false, never>;
14
+ }
@@ -0,0 +1,29 @@
1
+ import { OnInit, TemplateRef } from '@angular/core';
2
+ import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
3
+ import { PopupModalService } from '@naniteninja/ionic-lib';
4
+ import { FormFieldType } from '@naniteninja/ionic-lib';
5
+ import { SelectOptionWithTemplate } from '../../../model/select-option-template';
6
+ import { ChatService } from './../../../components/chat/chat.service';
7
+ import * as i0 from "@angular/core";
8
+ export declare class LibMessageModalComponent implements OnInit {
9
+ private fb;
10
+ private popupModalService;
11
+ private chatService;
12
+ modalData?: {
13
+ responseTime: string;
14
+ };
15
+ toggleTemplate: TemplateRef<HTMLElement>;
16
+ options: SelectOptionWithTemplate<string>[];
17
+ messageType: FormControl<string>;
18
+ dateTimePicker: FormControl<Date>;
19
+ toggleLongPress: FormControl<boolean>;
20
+ type: FormFieldType;
21
+ formTime: FormGroup;
22
+ constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService, modalData?: {
23
+ responseTime: string;
24
+ });
25
+ ngOnInit(): void;
26
+ onSubmit(): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibMessageModalComponent, [null, null, null, { optional: true; }]>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<LibMessageModalComponent, "lib-message-modal", never, {}, {}, never, never, false, never>;
29
+ }
@@ -0,0 +1,7 @@
1
+ import { StatusTypes } from '../../../enums/status-types';
2
+ import * as i0 from "@angular/core";
3
+ export declare class StatusIconComponent {
4
+ type: StatusTypes;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusIconComponent, never>;
6
+ static ɵcmp: i0.ɵɵComponentDeclaration<StatusIconComponent, "lib-status-icon", never, { "type": { "alias": "type"; "required": true; }; }, {}, never, never, false, never>;
7
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./shared/status-icon/status-icon.component";
3
+ import * as i2 from "./shared/alert-popup/alert-popup.component";
4
+ import * as i3 from "./shared/message-modal/message-modal.component";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "@naniteninja/ionic-lib";
7
+ import * as i6 from "@angular/forms";
8
+ import * as i7 from "@ngx-translate/core";
9
+ export declare class SharedModule {
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.StatusIconComponent, typeof i2.AlertPopupComponent, typeof i3.LibMessageModalComponent], [typeof i4.CommonModule, typeof i5.FormFieldModule, typeof i5.ButtonsModule, typeof i5.InputDateFieldModule, typeof i5.InputFieldModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.TranslateModule, typeof i5.ToggleModule], [typeof i1.StatusIconComponent, typeof i2.AlertPopupComponent, typeof i3.LibMessageModalComponent]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
13
+ }
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "@naniteninja/dashboard-components-lib",
3
+ "version": "1.0.0",
4
+ "author": "naniteninja",
5
+ "repository": {
6
+ "type": "git"
7
+ },
8
+ "peerDependencies": {
9
+ "@angular/common": "^17.3.12",
10
+ "@angular/core": "^17.3.12",
11
+ "@angular/forms": "^17.3.12",
12
+ "@angular/google-maps": "^17.3.10",
13
+ "@angular/material": "^17.3.10",
14
+ "@capacitor/android": "^6.2.1",
15
+ "@capacitor/cli": "^6.2.1",
16
+ "@capacitor/core": "^6.0.1",
17
+ "@capacitor/motion": "^6.0.1",
18
+ "@ionic/angular": "^8.4.1",
19
+ "@ngx-pwa/local-storage": "^17.0.0",
20
+ "@ngx-translate/core": "^15.0.0",
21
+ "@naniteninja/ionic-lib": "^1.0.207",
22
+ "@types/inputmask": "^5.0.7",
23
+ "ang-jsoneditor": "^4.0.2",
24
+ "capacitor-screenshot": "^6.0.1",
25
+ "d3": "^7.9.0",
26
+ "date-fns": "^4.1.0",
27
+ "emoji-picker-element": "^1.26.3",
28
+ "google-libphonenumber": "^3.2.41",
29
+ "inputmask": "^5.0.9",
30
+ "jsoneditor": "^10.2.0",
31
+ "ng-otp-input": "2.0.8",
32
+ "ngx-image-compress": "^15.1.6",
33
+ "ngx-image-cropper": "^7.2.1",
34
+ "ngx-infinite-scroll": "^17.0.1",
35
+ "ngx-mask": "^17.1.8",
36
+ "ngx-popperjs": "^17.0.1",
37
+ "primeicons": "^6.0.1",
38
+ "primeng": "^17.18.15",
39
+ "swiper": "^11.2.8",
40
+ "rrule": "^2.8.1"
41
+ },
42
+ "keywords": [
43
+ "angular",
44
+ "ionic",
45
+ "javascript",
46
+ "typescript",
47
+ "typeahead",
48
+ "directive",
49
+ "angular-material"
50
+ ],
51
+ "license": "MIT",
52
+ "module": "fesm2022/naniteninja-dashboard-components-lib.mjs",
53
+ "typings": "index.d.ts",
54
+ "exports": {
55
+ "./package.json": {
56
+ "default": "./package.json"
57
+ },
58
+ ".": {
59
+ "types": "./index.d.ts",
60
+ "esm2022": "./esm2022/naniteninja-dashboard-components-lib.mjs",
61
+ "esm": "./esm2022/naniteninja-dashboard-components-lib.mjs",
62
+ "default": "./fesm2022/naniteninja-dashboard-components-lib.mjs"
63
+ }
64
+ },
65
+ "sideEffects": false,
66
+ "dependencies": {
67
+ "tslib": "^2.3.0"
68
+ }
69
+ }
@@ -0,0 +1,121 @@
1
+ export * from './lib/components/auto-delegation/auto-delegation-modal.component';
2
+ export * from './lib/components/auto-delegation/enums/auto-delegation.event-type.enum';
3
+ export * from './lib/components/auto-delegation/enums/auto-delegation.event-value.enum';
4
+ export * from './lib/components/auto-delegation/interface/auto-delegation-data.interface';
5
+ export * from './lib/components/auto-delegation/interface/auto-delegation.event.interface';
6
+ export * from './lib/components/auto-delegation/interface/auto-delegation.modal-data.interface';
7
+ export * from './lib/components/calendar/agenda/agenda.component';
8
+ export * from './lib/components/calendar/agenda/agenda.module';
9
+ export * from './lib/components/calendar/agenda/interfaces/agenda.day.interface';
10
+ export * from './lib/components/calendar/agenda/interfaces/agenda.event.inetrface';
11
+ export * from './lib/components/calendar/components/event-form/event-form.component';
12
+ export * from './lib/components/calendar/components/event-form/event-form.module';
13
+ export * from './lib/components/calendar/enums/calendar.account.enum';
14
+ export * from './lib/components/calendar/enums/calendar.account.icons.enum';
15
+ export * from './lib/components/calendar/enums/event-type.enum';
16
+ export * from './lib/components/calendar/enums/recurring.edit.options.enum';
17
+ export * from './lib/components/calendar/enums/recurring.type.enum';
18
+ export * from './lib/components/calendar/interfaces/calendar.account.interface';
19
+ export * from './lib/components/calendar/interfaces/calendar.account.theme.interface';
20
+ export * from './lib/components/calendar/interfaces/event.form.output.interface';
21
+ export * from './lib/components/calendar/interfaces/event.interface';
22
+ export * from './lib/components/calendar/interfaces/event.time.interface';
23
+ export * from './lib/components/calendar/interfaces/recurring.event.interface';
24
+ export * from './lib/components/calendar/interfaces/recurring.exception.interface';
25
+ export * from './lib/components/calendar/interfaces/recurring.pattern.interface';
26
+ export * from './lib/components/calendar/lookups/recurring.options.lookup';
27
+ export * from './lib/components/calendar/scheduler/enums/schedule-date-status.enum';
28
+ export * from './lib/components/calendar/scheduler/interfaces/scheduler.action.interface';
29
+ export * from './lib/components/calendar/scheduler/interfaces/scheduler.event.interface';
30
+ export * from './lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface';
31
+ export * from './lib/components/calendar/scheduler/interfaces/scheduler.slots.interface';
32
+ export * from './lib/components/calendar/scheduler/scheduler.component';
33
+ export * from './lib/components/calendar/services/calendar-utils.service';
34
+ export * from './lib/components/chat-suggestion/chat-suggestion.component';
35
+ export * from './lib/components/chat-suggestion/interfaces/chat-suggestion.interface';
36
+ export * from './lib/components/chat/chat.component';
37
+ export * from './lib/components/chat/chat.component.module';
38
+ export * from './lib/components/chat/chat.service';
39
+ export * from './lib/components/chat/enums/sender-types.enum';
40
+ export * from './lib/components/chat/interfaces/date-messages.interface';
41
+ export * from './lib/components/chat/interfaces/message-attachment.interface';
42
+ export * from './lib/components/chat/interfaces/message.interface';
43
+ export * from './lib/components/circle-progress/circle-progress.component';
44
+ export * from './lib/components/circle-progress/circle-progress.module';
45
+ export * from './lib/components/circle-progress/enums/circle-variable.enum';
46
+ export * from './lib/components/circle-progress/interfaces/circle-progress-config.interface';
47
+ export * from './lib/components/client-home/client-home.component';
48
+ export * from './lib/components/client-home/enums/client-home-component.enum';
49
+ export * from './lib/components/client-home/interfaces/chat-meta.interface';
50
+ export * from './lib/components/client-home/interfaces/home-dashboard-inputs.interface';
51
+ export * from './lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface';
52
+ export * from './lib/components/client-home/interfaces/partial-circle-progress-colors.interface';
53
+ export * from './lib/components/client-home/lookup/client-home.config';
54
+ export * from './lib/components/client-home/lookup/inner-progress-default-colors.config';
55
+ export * from './lib/components/client-home/lookup/inner-progress-pink-colors.config';
56
+ export * from './lib/components/client-home/lookup/inner-progress-purple-colors.config';
57
+ export * from './lib/components/client-home/lookup/inner-progress-white-colors.config';
58
+ export * from './lib/components/client-home/lookup/progress-default-colors.config';
59
+ export * from './lib/components/client-home/lookup/progress-white-colors.config';
60
+ export * from './lib/components/client-home/pipes/chat-meta.pipe';
61
+ export * from './lib/components/client-home/pipes/get-color-by-matcher.pipe';
62
+ export * from './lib/components/client-match-overview/client-match-overview.component';
63
+ export * from './lib/components/client-match-overview/enums/conversation-flag.enum';
64
+ export * from './lib/components/client-match-overview/enums/counter-flag-base.enum';
65
+ export * from './lib/components/client-match-overview/enums/inner-circle-state.enum';
66
+ export * from './lib/components/client-match-overview/interfaces/client-match-overview.interface';
67
+ export * from './lib/components/client-match-overview/interfaces/conversation-flag.interface';
68
+ export * from './lib/components/client-match-overview/interfaces/dashboard-match-request.interface';
69
+ export * from './lib/components/client-match-overview/interfaces/progress-facts.interface';
70
+ export * from './lib/components/client-match-overview/lookups/computer-inner-state.lookup';
71
+ export * from './lib/components/client-match-overview/progress-ticker/progress-gap.config';
72
+ export * from './lib/components/client-match-overview/progress-ticker/progress-ticker.config';
73
+ export * from './lib/components/client-match-overview/progress-ticker/progress-ticker.service';
74
+ export * from './lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component';
75
+ export * from './lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options';
76
+ export * from './lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options';
77
+ export * from './lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options';
78
+ export * from './lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options';
79
+ export * from './lib/components/lib-client-dashboard/client-dashboard.component';
80
+ export * from './lib/components/lib-client-dashboard/enums/alert-status-fields.enum';
81
+ export * from './lib/components/lib-client-dashboard/enums/client-dashboard-component.enum';
82
+ export * from './lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface';
83
+ export * from './lib/components/lib-client-dashboard/lookups/client-dashboard.config';
84
+ export * from './lib/components/lib-compose-matcher-dash/compose-matcher-dash.component';
85
+ export * from './lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface';
86
+ export * from './lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface';
87
+ export * from './lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface';
88
+ export * from './lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface';
89
+ export * from './lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface';
90
+ export * from './lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe';
91
+ export * from './lib/components/matcher-statuses/enums/matcher-statuses.enum';
92
+ export * from './lib/components/matcher-statuses/lookups/matcher-statuses.lookup';
93
+ export * from './lib/components/matcher-statuses/matcher-statuses.component';
94
+ export * from './lib/components/matcher-statuses/pipes/is-status-included.pipe';
95
+ export * from './lib/components/profile-card/profile-card.component';
96
+ export * from './lib/components/profile-card/profile-card.module';
97
+ export * from './lib/components/spider-chart/interfaces/chart-data-circle.interface';
98
+ export * from './lib/components/spider-chart/interfaces/chart-data-defs-f.interface';
99
+ export * from './lib/components/spider-chart/interfaces/chart-data-defs-lg.interface';
100
+ export * from './lib/components/spider-chart/interfaces/chart-data-defs-rg.interface';
101
+ export * from './lib/components/spider-chart/interfaces/config.interface';
102
+ export * from './lib/components/spider-chart/interfaces/dataset.interface';
103
+ export * from './lib/components/spider-chart/interfaces/polygon-color.interface';
104
+ export * from './lib/components/spider-chart/interfaces/spider-chart-attribute.interface';
105
+ export * from './lib/components/spider-chart/lookup/default-spider-config.lookup';
106
+ export * from './lib/components/spider-chart/lookup/demo-polygon-colors.lookup';
107
+ export * from './lib/components/spider-chart/lookup/svg-config.lookup';
108
+ export * from './lib/components/spider-chart/spider-chart.component';
109
+ export * from './lib/operations/operations';
110
+ export * from './lib/pipes/array-sort/array.sort.pipe';
111
+ export * from './lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe';
112
+ export * from './lib/pipes/date-localization/date-localization.pipe';
113
+ export * from './lib/pipes/get-display-value/get-display-value.pipe';
114
+ export * from './lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe';
115
+ export * from './lib/pipes/initials/initials.pipe';
116
+ export * from './lib/pipes/round/round.pipe';
117
+ export * from './lib/services/abstract-cache.service';
118
+ export * from './lib/shared/shared.module';
119
+ export * from './lib/shared/shared/alert-popup/alert-popup.component';
120
+ export * from './lib/shared/shared/message-modal/message-modal.component';
121
+ export * from './lib/shared/shared/status-icon/status-icon.component';
@@ -0,0 +1,17 @@
1
+ <svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_i_14_810)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.89896 0.513359C2.46035 0.0747575 1.74924 0.0747576 1.31064 0.513359C0.872037 0.951961 0.872036 1.66307 1.31064 2.10168L5.10609 5.89713L1.31297 9.69025C0.874366 10.1289 0.874366 10.84 1.31297 11.2786C1.75157 11.7172 2.46268 11.7172 2.90128 11.2786L6.69441 7.48544L10.2593 11.0503C10.6979 11.4889 11.409 11.4889 11.8476 11.0503C12.2862 10.6117 12.2862 9.90062 11.8476 9.46202L8.28272 5.89713L11.8499 2.3299C12.2886 1.8913 12.2886 1.18019 11.8499 0.741587C11.4113 0.302985 10.7002 0.302985 10.2616 0.741587L6.69441 4.30881L2.89896 0.513359Z" fill="#FFB5E9"/>
4
+ </g>
5
+ <defs>
6
+ <filter id="filter0_i_14_810" x="0.981689" y="0.18441" width="11.9459" height="12.1719" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
9
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
10
+ <feOffset dx="0.74874" dy="0.74874"/>
11
+ <feGaussianBlur stdDeviation="0.74874"/>
12
+ <feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
13
+ <feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.25 0"/>
14
+ <feBlend mode="normal" in2="shape" result="effect1_innerShadow_14_810"/>
15
+ </filter>
16
+ </defs>
17
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="3" height="9" viewBox="0 0 3 9" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.95133 0.109634C1.40803 0.109634 0.963501 0.554159 0.963501 1.09747C0.963501 1.64078 1.40803 2.0853 1.95133 2.0853C2.49464 2.0853 2.93917 1.64078 2.93917 1.09747C2.93917 0.554159 2.49464 0.109634 1.95133 0.109634ZM1.95133 7.02447C1.40803 7.02447 0.963501 7.46899 0.963501 8.0123C0.963501 8.55561 1.40803 9.00013 1.95133 9.00013C2.49464 9.00013 2.93917 8.55561 2.93917 8.0123C2.93917 7.46899 2.49464 7.02447 1.95133 7.02447ZM1.95133 3.56705C1.40803 3.56705 0.963501 4.01158 0.963501 4.55488C0.963501 5.09819 1.40803 5.54272 1.95133 5.54272C2.49464 5.54272 2.93917 5.09819 2.93917 4.55488C2.93917 4.01158 2.49464 3.56705 1.95133 3.56705Z" fill="white"/>
3
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_dd_14_792)">
3
+ <ellipse cx="49.8152" cy="49.8605" rx="14.5015" ry="14.3179" fill="url(#paint0_linear_14_792)"/>
4
+ </g>
5
+ <defs>
6
+ <filter id="filter0_dd_14_792" x="0.017858" y="0.246664" width="99.5947" height="99.2276" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
7
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
8
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
9
+ <feOffset dx="-7.84352" dy="-7.84352"/>
10
+ <feGaussianBlur stdDeviation="13.7262"/>
11
+ <feColorMatrix type="matrix" values="0 0 0 0 0.281875 0 0 0 0 0.314071 0 0 0 0 0.341667 0 0 0 1 0"/>
12
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_14_792"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset dx="7.84352" dy="7.84352"/>
15
+ <feGaussianBlur stdDeviation="13.7262"/>
16
+ <feColorMatrix type="matrix" values="0 0 0 0 0.0767361 0 0 0 0 0.0767361 0 0 0 0 0.0833333 0 0 0 1 0"/>
17
+ <feBlend mode="normal" in2="effect1_dropShadow_14_792" result="effect2_dropShadow_14_792"/>
18
+ <feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_14_792" result="shape"/>
19
+ </filter>
20
+ <linearGradient id="paint0_linear_14_792" x1="59.373" y1="60.9243" x2="40.2028" y2="39.2047" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#101113" stop-opacity="0.12"/>
22
+ <stop offset="1" stop-color="#2B2F33"/>
23
+ </linearGradient>
24
+ </defs>
25
+ </svg>