@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,3 @@
1
+ <svg width="11" height="9" viewBox="0 0 11 9" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="Vector" fill-rule="evenodd" clip-rule="evenodd" d="M9.26525 0.21847C9.37332 0.152409 9.50241 0.131394 9.62542 0.159834C9.74843 0.188275 9.85581 0.26396 9.92503 0.371012L10.4082 1.11886C10.4713 1.21661 10.4983 1.33385 10.4844 1.44986C10.4706 1.56587 10.4168 1.67318 10.3325 1.75281L10.331 1.75479L10.3242 1.76123L10.2964 1.78747L10.1866 1.89396C9.57903 2.49204 8.98989 3.10911 8.42003 3.74427C7.34788 4.94084 6.07468 6.50687 5.21775 8.02635C4.97863 8.4503 4.39449 8.54143 4.04801 8.17543L0.883308 4.83832C0.837956 4.79048 0.802544 4.73387 0.779177 4.67186C0.755809 4.60985 0.744965 4.54371 0.747286 4.47737C0.749608 4.41102 0.765049 4.34582 0.792692 4.28566C0.820334 4.22549 0.859614 4.17157 0.908197 4.12711L1.86468 3.25148C1.94874 3.17457 2.05652 3.1297 2.16958 3.12455C2.28263 3.1194 2.39394 3.15429 2.48445 3.22325L4.09925 4.45201C6.62125 1.92763 8.05207 0.958893 9.26525 0.21847Z" fill="#EBEBF5" fill-opacity="0.2"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="11" height="10" viewBox="0 0 11 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path id="Vector" fill-rule="evenodd" clip-rule="evenodd" d="M9.26525 0.876673C9.37332 0.810612 9.50241 0.789597 9.62542 0.818038C9.74843 0.846478 9.85581 0.922164 9.92503 1.02921L10.4082 1.77707C10.4713 1.87481 10.4983 1.99205 10.4844 2.10806C10.4706 2.22407 10.4168 2.33138 10.3325 2.41101L10.331 2.41299L10.3242 2.41943L10.2964 2.44568L10.1866 2.55216C9.57903 3.15024 8.98989 3.76731 8.42003 4.40248C7.34788 5.59904 6.07468 7.16508 5.21775 8.68455C4.97863 9.1085 4.39449 9.19963 4.04801 8.83363L0.883308 5.49652C0.837956 5.44868 0.802544 5.39207 0.779177 5.33006C0.755809 5.26806 0.744965 5.20191 0.747286 5.13557C0.749608 5.06922 0.765049 5.00403 0.792692 4.94386C0.820334 4.88369 0.859614 4.82977 0.908197 4.78532L1.86468 3.90969C1.94874 3.83278 2.05652 3.78791 2.16958 3.78276C2.28263 3.77761 2.39394 3.8125 2.48445 3.88146L4.09925 5.11021C6.62125 2.58584 8.05207 1.6171 9.26525 0.876673Z" fill="#FE3C72"/>
3
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="14" height="8" viewBox="0 0 14 8" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M1.44344 0.936192C1.72488 0.65427 2.18119 0.65427 2.46263 0.936192L6.99777 5.47907L11.5329 0.936191C11.8144 0.654269 12.2707 0.654269 12.5521 0.936191C12.8335 1.21811 12.8335 1.6752 12.5521 1.95712L7.50737 7.01047C7.22593 7.29239 6.76962 7.29239 6.48818 7.01047L1.44344 1.95712C1.162 1.6752 1.162 1.21811 1.44344 0.936192Z" fill="url(#paint0_linear_1414_489)" fill-opacity="0.6" stroke="url(#paint1_linear_1414_489)" stroke-opacity="0.6" stroke-width="0.721906" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <defs>
4
+ <linearGradient id="paint0_linear_1414_489" x1="1.95304" y1="3.97333" x2="12.0425" y2="3.97333" gradientUnits="userSpaceOnUse">
5
+ <stop offset="0.574653" stop-color="#FE3C72"/>
6
+ <stop offset="1" stop-color="#DEA9FF"/>
7
+ </linearGradient>
8
+ <linearGradient id="paint1_linear_1414_489" x1="1.23236" y1="3.97333" x2="12.7632" y2="3.97333" gradientUnits="userSpaceOnUse">
9
+ <stop offset="0.574653" stop-color="#FE3C72"/>
10
+ <stop offset="1" stop-color="#DEA9FF"/>
11
+ </linearGradient>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.358 8.6128L8.71702 3.24464M8.81786 8.71513L3.25788 3.14566" stroke="#EBEBF5" stroke-opacity="0.2" stroke-width="1.47229" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.358 8.6128L8.71702 3.24464M8.81786 8.71513L3.25788 3.14566" stroke="#FE3C72" stroke-width="1.47229" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_484_10774)">
3
+ <path d="M9.47122 2.15614C9.47122 2.15614 9.47122 2.15614 9.85122 1.65614C10.2912 1.07614 10.9412 0.656136 11.7212 0.656136C12.9662 0.656136 13.9712 1.66114 13.9712 2.90614C13.9712 3.37114 13.8312 3.80114 13.5912 4.15614C13.1862 4.76114 9.47122 8.65614 9.47122 8.65614C9.47122 8.65614 5.75622 4.76114 5.35122 4.15614C5.11122 3.80114 4.97122 3.37114 4.97122 2.90614C4.97122 1.66114 5.97622 0.656136 7.22122 0.656136C8.00122 0.656136 8.65622 1.07614 9.09122 1.65614C9.47122 2.15614 9.47122 2.15614 9.47122 2.15614Z" fill="#F95D84"/>
4
+ <path d="M9.47122 2.15614C9.47122 2.15614 9.47122 2.15614 9.09122 1.65614C8.65122 1.07614 8.00122 0.656136 7.22122 0.656136C5.97622 0.656136 4.97122 1.66114 4.97122 2.90614C4.97122 3.37114 5.11122 3.80114 5.35122 4.15614C5.75622 4.76114 9.47122 8.65614 9.47122 8.65614M9.47122 2.15614C9.47122 2.15614 9.47122 2.15614 9.85122 1.65614C10.2912 1.07614 10.9412 0.656136 11.7212 0.656136C12.9662 0.656136 13.9712 1.66114 13.9712 2.90614C13.9712 3.37114 13.8312 3.80114 13.5912 4.15614C13.1862 4.76114 9.47122 8.65614 9.47122 8.65614" stroke="#F95D84" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </g>
6
+ <defs>
7
+ <filter id="filter0_d_484_10774" x="0.471222" y="0.156136" width="18" height="17" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
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 dy="4"/>
11
+ <feGaussianBlur stdDeviation="2"/>
12
+ <feComposite in2="hardAlpha" operator="out"/>
13
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
14
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_484_10774"/>
15
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_484_10774" result="shape"/>
16
+ </filter>
17
+ </defs>
18
+ </svg>
@@ -0,0 +1,30 @@
1
+ $ns-blue: #45899b;
2
+ $ns-orange: #d4863d;
3
+ $ns-neutral-1: #333333;
4
+ $ns-neutral-2: #666666;
5
+ $ns-neutral-3: #868686;
6
+ $ns-neutral-4: #a6a6a6;
7
+ $ns-neutral-5: #cccccc;
8
+ $ns-neutral-6: #dfe0e3;
9
+ $ns-neutral-7: #eeeef0;
10
+ $ns-neutral-8: #f4f6f7;
11
+ $ns-error-primary: #c7472e;
12
+ $ns-error-secondary: #f0dbd6;
13
+ $ns-success-green: #599b4e;
14
+ $ns-warn-orange: #f8a91d;
15
+ $ns-teal: #10365a;
16
+
17
+ $ns-dark-blue-800: #10365a;
18
+ $ns-blue-900: #1350a4;
19
+ $ns-grey-800: #464a4c;
20
+ $ns-grey-900: #24282a;
21
+ $ns-background-grey: #eff2f3;
22
+ $ns-red-700: #d32f2f;
23
+ $ns-orange-400: #f4a947;
24
+ $ns-green-600: #2db231;
25
+ $ns-blue-800: #1e6ec3;
26
+
27
+ $background-color: var(--ion-background-color);
28
+ $data-table-border: #212121;
29
+ $cyrano-background: #28242d;
30
+ $cyrano-primary: #e15561;
@@ -0,0 +1,48 @@
1
+ // --------------- zoom-in & out --------------
2
+ .zoom-in {
3
+ animation: fadeZoomIn 0.5s ease-in-out;
4
+ }
5
+
6
+ .zoom-out {
7
+ animation: fadeZoomOut 0.5s ease-in-out;
8
+ &.collapse {
9
+ display: none !important;
10
+ }
11
+ }
12
+
13
+ @keyframes fadeZoomOut {
14
+ from {
15
+ opacity: 1;
16
+ transform: scale(1);
17
+ }
18
+ to {
19
+ opacity: 0;
20
+ transform: scale(0);
21
+ }
22
+ }
23
+
24
+ @keyframes fadeZoomIn {
25
+ from {
26
+ opacity: 0;
27
+ transform: scale(0.5);
28
+ }
29
+ to {
30
+ opacity: 1;
31
+ transform: scale(1);
32
+ }
33
+ }
34
+
35
+
36
+ // --------------- hide & show --------------
37
+ .hide {
38
+ max-height: 0;
39
+ overflow: hidden;
40
+ opacity: 0;
41
+ transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out;
42
+ }
43
+
44
+ .show {
45
+ max-height: 200px; /* Adjust this value based on content */
46
+ opacity: 1;
47
+ transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out;
48
+ }
@@ -0,0 +1,132 @@
1
+ :host {
2
+ --border-radius: 100px;
3
+ --input-field-margin: 0;
4
+ --label-font-size-floated: 11.0084px;
5
+ --label-color: rgba(255, 255, 255, 0.5);
6
+ --label-position-left: 7px;
7
+ --label-position-top: 19px;
8
+ --label-float-position-top: -3px;
9
+ --label-padding: 0px 7px;
10
+ --label-font-family: 'Gilroy-Regular', serif;
11
+ --label-font-style: normal;
12
+ --label-font-weight: 400;
13
+ --label-font-size: 14px;
14
+ --label-line-height: 160%;
15
+ --input-font-color: rgba(255, 255, 255, 0.5);
16
+ --input-font-family: 'Gilroy-Regular', serif;
17
+ --input-font-size: 16px;
18
+ --input-icon-color: #fe3c72;
19
+ --input-height: 48px;
20
+ --input-width: 100%;
21
+ --input-border: none;
22
+ --input-padding: 11px 15px;
23
+ --input-field-box-shadow: inset 17px 22px 20px 2.5px rgba(17, 16, 20, 0.7), inset -2px -2px 8px rgba(203, 199, 209, 0.5);
24
+ --border: 3px solid #fe3c72;
25
+ --input-number-filed-font: 'Open Sans', sans-serif;
26
+ --dropdown-background: linear-gradient(191.18deg, #27242c 61.33%, #0c0b0e 101.43%);
27
+ --input-field-color: #fff;
28
+ }
29
+
30
+ :host {
31
+ &.ng-touched.ng-invalid > .content-wrapper:not(.isFocused) > .error-outline {
32
+ display: block;
33
+ }
34
+ &.ng-touched.ng-invalid > .content-wrapper:not(.isFocused) > .p-float-label {
35
+ position: relative;
36
+ z-index: 1;
37
+ }
38
+ }
39
+
40
+ .content-wrapper {
41
+ position: relative;
42
+ display: flex;
43
+ overflow: unset;
44
+ margin: var(--input-field-margin);
45
+ border-radius: var(--border-radius);
46
+ height: var(--input-height);
47
+ &.isDisabled {
48
+ opacity: 0.5;
49
+ cursor: not-allowed;
50
+ }
51
+ }
52
+
53
+ .input-field-label {
54
+ color: var(--label-color);
55
+ position: absolute;
56
+ pointer-events: none;
57
+ left: var(--label-position-left, 7px);
58
+ top: var(--label-position-top, 24px);
59
+ padding: var(--label-padding, 0px 7px);
60
+ transition: 0.2s ease all;
61
+ -moz-transition: 0.2s ease all;
62
+ -webkit-transition: 0.2s ease all;
63
+ font-family: var(--label-font-family, 'Gilroy-Regular', serif);
64
+ font-style: var(--label-font-style);
65
+ font-weight: var(--label-font-weight);
66
+ font-size: var(--label-font-size);
67
+ line-height: var(--label-line-height);
68
+ z-index: 2;
69
+ }
70
+
71
+ .p-float-label,
72
+ .input-field,
73
+ .input-field-readonly {
74
+ position: relative;
75
+ color: var(--input-field-color);
76
+ box-sizing: border-box;
77
+ font-family: var(--input-font-family);
78
+ font-size: var(--input-font-size);
79
+ height: var(--input-height);
80
+ width: var(--input-width);
81
+ border: var(--input-border);
82
+ border-radius: var(--border-radius);
83
+ padding: var(--input-padding);
84
+ margin: unset;
85
+ appearance: none;
86
+ -webkit-appearance: none;
87
+ box-shadow: var(--input-field-box-shadow);
88
+ -webkit-box-shadow: var(--input-field-box-shadow);
89
+ }
90
+
91
+ .input-field,
92
+ .p-calendar .p-inputtext,
93
+ .p-autocomplete .p-inputtext {
94
+ &:focus {
95
+ outline: none;
96
+ ~ .input-field-label {
97
+ top: var(--label-float-position-top);
98
+ font-size: var(--label-font-size-floated);
99
+ }
100
+ }
101
+ }
102
+
103
+ .error-outline {
104
+ position: absolute;
105
+ top: 0;
106
+ left: 0;
107
+ width: 100%;
108
+ height: 100%;
109
+ pointer-events: none;
110
+ border: var(--border);
111
+ border-radius: var(--border-radius);
112
+ transform: matrix(1, 0, 0, -1, 0, 0);
113
+ display: none;
114
+ }
115
+
116
+ .input-field-label-float {
117
+ top: var(--label-float-position-top);
118
+ font-size: var(--label-font-size-floated);
119
+ }
120
+
121
+ .p-float-label input:focus ~ label,
122
+ .p-float-label input.p-filled ~ label,
123
+ .p-float-label textarea:focus ~ label,
124
+ .p-float-label textarea.p-filled ~ label,
125
+ .p-float-label .p-inputwrapper-focus ~ label,
126
+ .p-float-label .p-inputwrapper-filled ~ label {
127
+ top: -0.1rem;
128
+ }
129
+
130
+ .spacer {
131
+ flex: 1 1 auto;
132
+ }
@@ -0,0 +1,152 @@
1
+ :root {
2
+ --lib-button-width: 100px;
3
+ --lib-button-font-color: #fff;
4
+ --lib-button-border-radius: 30.582px;
5
+ --lib-button-border: 1px solid rgba(10, 9, 9, 0.45);
6
+ --lib-button-background: linear-gradient(180deg, rgba(62, 64, 69, 0.5) 0%, rgba(62, 64, 69, 0) 8.33%),
7
+ radial-gradient(170.95% 118.01% at 8.39% 32.81%, rgba(67, 64, 70, 0.5) 0%, rgba(41, 37, 45, 0.5) 28.24%, rgba(10, 10, 11, 0.5) 100%);
8
+ --lib-button-container-background: linear-gradient(90deg, #353039 0.68%, #29252d 99.45%);
9
+ --lib-button-box-shadow: 6.11634px 6.11634px 12.23267px 0px rgba(0, 0, 0, 0.25);
10
+ --lib-button-icon-color: #f7416e;
11
+ --lib-button-padding: 0 20px;
12
+ --lib-button-container-hover-outline-color: rgba(0, 0, 0, 0.87);
13
+ --lib-button-hover-outline-color: #fe638e;
14
+
15
+ --lib-button-container-height: 50px;
16
+ --lib-button-height: 48.5px;
17
+ --lib-button-font-family: 'Calistoga', serif;
18
+ --lib-button-font-size: 14px;
19
+ --lib-primary-button-text-shadow: 0px 0px 20.000049591064453px #fe3c72, 0px 0px 20.000049591064453px #fe3c72, 0px 0px 4.000010013580322px #fff;
20
+ --lib-secondary-button-text-shadow: 0px 0px 47.31624221801758px #fe3c72, 0px 0px 16px #fe3c72;
21
+ --lib-secondary-button-font-color: #fe638e;
22
+
23
+ --lib-list-button-container-height: 43px;
24
+ --lib-list-button-height: 40px;
25
+ --lib-list-button-icon-color: #f7416e;
26
+ --lib-list-button-padding: 7.189px 34.251px 10.018px 18.349px;
27
+ --lib-list-button-font-size: 12.872px;
28
+ --lib-list-button-font-family: 'Gilroy-Regular', serif;
29
+
30
+ --lib-icon-button-container-height: 33px;
31
+ --lib-icon-button-container-width: 33px;
32
+ --lib-icon-button-height: 30px;
33
+ --lib-icon-button-width: 30px;
34
+ --lib-icon-button-border-radius: 50%;
35
+
36
+ --lib-hover-button-height: 40px;
37
+ --lib-hover-button-width: 160px;
38
+ --lib-hover-icon-button-height: 25px;
39
+ --lib-hover-icon-button-width: 25px;
40
+ --lib-hover-icon-left-margin: 6px;
41
+ --lib-hover-button-font-size: 14px;
42
+ --lib-hover-button-font-color: #fe3c72;
43
+ --lib-hover-button-font-family: 'Gilroy-Regular', serif;
44
+
45
+ --lib-menu-button-container-height: 38px;
46
+ --lib-menu-button-container-width: 38px;
47
+ --lib-menu-button-height: 35px;
48
+ --lib-menu-button-width: 35px;
49
+ --lib-menu-button-border-radius: 50%;
50
+ --lib-menu-button-panel-background: linear-gradient(180deg, #403d46 0%, #3e3b44 100%);
51
+ --lib-menu-button-panel-shadow: 0px -2px 8px 0px rgba(255, 255, 255, 0.2) inset, 2px -2px 3px 0px rgba(0, 0, 0, 0.4) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
52
+ 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
53
+ --lib-menu-button-active-color: #fe3c72;
54
+ --lib-menu-button-font-size: 12px;
55
+ --lib-menu--button-font-family: 'Gilroy-Regular', serif;
56
+
57
+ --primary-button-background: linear-gradient(94.44deg, #fe3c72 1.26%, #e15561 100%) !important;
58
+ --black-button-background: #27242c;
59
+ }
60
+
61
+ .button {
62
+ text-align: center;
63
+ height: 46px;
64
+ --border-radius: 100px;
65
+ width: 300px;
66
+ text-transform: none !important;
67
+ font-family: 'Calistoga', serif;
68
+ font-weight: 400;
69
+ font-size: 16px;
70
+ }
71
+
72
+ .button-sm {
73
+ width: 200px !important;
74
+ }
75
+
76
+ .button-lg {
77
+ width: 600px !important;
78
+ }
79
+
80
+ .box-shadow-button {
81
+ --box-shadow: 11px 10px 27px 2.5px rgba(17, 16, 20, 0.65), -5px -5px 16px -3px rgba(203, 199, 209, 0.25) !important;
82
+ }
83
+
84
+ .app-outline-button {
85
+ @extend .button;
86
+ --border-color: rgba(255, 255, 255, 0.5);
87
+ --border-style: solid;
88
+ --border-width: 2px;
89
+ --color: rgba(255, 255, 255, 0.5);
90
+ --background: transparent;
91
+ font-family: 'Calistoga', serif;
92
+ font-weight: 600;
93
+ font-size: 14px;
94
+ }
95
+
96
+ .app-black-button {
97
+ --lib-button-background: var(--black-button-background);
98
+ --lib-button-font-color: white;
99
+ }
100
+
101
+ .app-primary-button {
102
+ @extend .button;
103
+ @extend .box-shadow-button;
104
+ --background: var(--primary-button-background) !important;
105
+ --color: white;
106
+ }
107
+
108
+ .app-round-button {
109
+ width: 48px;
110
+ height: 48px;
111
+ --border-radius: 50%;
112
+ --background: var(--black-button-background);
113
+ --color: white;
114
+ }
115
+
116
+ .primary-button,
117
+ .mat-raised-button.primary-button {
118
+ background: var(--button-background);
119
+ box-shadow: var(--box-shadow);
120
+ border-radius: 100px;
121
+ padding: 10px 25px;
122
+ font-family: 'Calistoga', serif;
123
+ font-style: normal;
124
+ font-weight: 400;
125
+ font-size: 17px;
126
+ line-height: 160%;
127
+ text-align: center;
128
+ text-transform: capitalize;
129
+ color: var(--cyrano-pink-shade-1);
130
+ text-shadow: 0 0 16px var(--cyrano-pink-shade-1);
131
+ display: flex;
132
+ min-width: auto;
133
+ border: none;
134
+ cursor: pointer;
135
+ img {
136
+ margin: 5px 5px 0 0;
137
+ width: 18px;
138
+ }
139
+ &.normal-text {
140
+ font-size: 16px;
141
+ }
142
+ &.disable {
143
+ background: #adadad;
144
+ opacity: 0.6;
145
+ }
146
+ &:active {
147
+ box-shadow:
148
+ 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
149
+ 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
150
+ 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
151
+ }
152
+ }
@@ -0,0 +1,163 @@
1
+ .message-box {
2
+ padding: 1px;
3
+ border-radius: 12px;
4
+ overflow: hidden;
5
+ position: relative;
6
+ opacity: 1;
7
+ pointer-events: all;
8
+ background-image: var(--message-box-bg-color, linear-gradient(160.44deg, #8a75da 1%, #574e96 20%, #736980 50%, #332e39 80%));
9
+ &:before {
10
+ position: absolute;
11
+ content: '';
12
+ background-image: radial-gradient(#f7bdde, #fff0 55%);
13
+ height: 100%;
14
+ width: 50%;
15
+ top: -40px;
16
+ left: 50%;
17
+ transform: translateX(-50%);
18
+ -webkit-animation: translateX(-50%);
19
+ -moz-transform: translateX(-50%);
20
+ }
21
+
22
+ &:after {
23
+ position: absolute;
24
+ content: '';
25
+ left: 50%;
26
+ bottom: -30px;
27
+ height: 100%;
28
+ width: 61%;
29
+ transform: translateX(-50%);
30
+ opacity: 0.1;
31
+ background-image: var(--message-box-bg-transparent-color, radial-gradient(#fe3c72, #fff0 55%));
32
+ filter: blur(10px);
33
+ -webkit-filter: blur(10px);
34
+ }
35
+
36
+ .message-box-wrapper {
37
+ align-items: flex-start;
38
+ border-radius: 12px;
39
+ display: flex;
40
+ padding: 10px 20px;
41
+ cursor: pointer;
42
+ position: relative;
43
+ overflow: hidden;
44
+ gap: 20px;
45
+
46
+ &:before {
47
+ position: absolute;
48
+ content: '';
49
+ left: 0;
50
+ top: 0;
51
+ height: 100%;
52
+ width: 100%;
53
+ opacity: 0.8;
54
+ filter: blur(2px);
55
+ -webkit-filter: blur(2px);
56
+ background-image: linear-gradient(94.44deg, #574a91 1%, #3a3541 20%);
57
+ }
58
+
59
+ &:after {
60
+ position: absolute;
61
+ content: '';
62
+ left: 50%;
63
+ bottom: -60px;
64
+ height: 100%;
65
+ width: 61%;
66
+ transform: translateX(-50%);
67
+ opacity: 0.3;
68
+ background-image: var(--message-box-bg-transparent-color, radial-gradient(#fe3c72, #fff0 55%));
69
+ filter: blur(10px);
70
+ -webkit-filter: blur(10px);
71
+ }
72
+
73
+ * {
74
+ position: relative;
75
+ z-index: 9;
76
+ }
77
+
78
+ .message-box-icon {
79
+ width: 26px;
80
+ min-width: 26px;
81
+ }
82
+
83
+
84
+ .message-box-content {
85
+ flex: 1;
86
+ display: flex;
87
+ flex-direction: column;
88
+ gap: 5px;
89
+ p {
90
+ color: var(--primary-white-color);
91
+ font-size: 11.25px;
92
+ line-height: 17.38px;
93
+ color: var(--tertiary-color);
94
+ }
95
+ h2 {
96
+ color: var(--primary-white-color);
97
+ font-weight: 400;
98
+ font-size: 14px;
99
+ line-height: 22.2px;
100
+ }
101
+ &__button-wrapper {
102
+ &__button {
103
+ color: var(--cyrano-pink-shade-1);
104
+ }
105
+ }
106
+ }
107
+ }
108
+ }
109
+
110
+ /* code to manage the different Screen resolutions */
111
+ @media only screen and (min-width: 767px) {
112
+ .message-box {
113
+ max-width: 290px;
114
+ }
115
+ }
116
+
117
+ @media only screen and (max-width: 767px) {
118
+ .message-box {
119
+ max-width: 100%;
120
+ }
121
+ }
122
+
123
+ .tooltip-element--bottom, .tooltip-element--top {
124
+ position: relative;
125
+ &::after {
126
+ content: '';
127
+ position: absolute;
128
+ left: calc(50% - 10px);
129
+ border-left: 10px solid transparent;
130
+ border-right: 10px solid transparent;
131
+ }
132
+ }
133
+
134
+ .tooltip-element--right, .tooltip-element--left {
135
+ position: relative;
136
+ &::after {
137
+ content: '';
138
+ position: absolute;
139
+ top: calc(50% - 10px);
140
+ border-top: 10px solid transparent;
141
+ border-bottom: 10px solid transparent;
142
+ }
143
+ }
144
+
145
+ .tooltip-element--left::after {
146
+ border-left: 10px solid var(--tooltip-bg-color, #4f4150);;
147
+ left: -14px;
148
+ }
149
+
150
+ .tooltip-element--right::after {
151
+ border-right: 10px solid var(--tooltip-bg-color, #4f4150);;
152
+ right: -14px;
153
+ }
154
+
155
+ .tooltip-element--bottom::after {
156
+ bottom: -14px;
157
+ border-bottom: 10px solid var(--tooltip-bg-color, #4f4150);;
158
+ }
159
+
160
+ .tooltip-element--top::after {
161
+ top: -14px;
162
+ border-top: 10px solid var(--tooltip-bg-color, #4f4150);
163
+ }
@@ -0,0 +1,5 @@
1
+ lib-client-dashboard {
2
+ * {
3
+ -webkit-tap-highlight-color: transparent;
4
+ }
5
+ }