@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,179 @@
1
+ :root {
2
+ --mat-datepicker-calendar-container-background-color: var(--primary-background);
3
+ --mat-datepicker-calendar-date-selected-state-background-color: var(--cyrano-pink-shade-1);
4
+ }
5
+
6
+ .mat-datepicker-content {
7
+ background: var(--primary-background);
8
+
9
+ table,
10
+ th,
11
+ td {
12
+ border: unset;
13
+ }
14
+ }
15
+
16
+ lib-input-date-field {
17
+ &.ng-touched.ng-invalid > .content-wrapper:not(.isFocused) > .p-float-label {
18
+ z-index: 999999999 !important;
19
+ }
20
+ .mat-icon {
21
+ color: var(--cyrano-pink-shade-1);
22
+ }
23
+ .input-date-label {
24
+ --label-position-top: 50%;
25
+ }
26
+ .p-inputtext {
27
+ padding: 3px 0;
28
+ }
29
+ .p-calendar,
30
+ .p-calendar .p-inputtext,
31
+ .p-calendar .p-datepicker {
32
+ background: transparent;
33
+ border: none;
34
+ font-size: var(--input-font-size);
35
+ color: var(--input-field-color);
36
+ font-family: var(--font-family);
37
+ font-weight: 600;
38
+ }
39
+ .p-calendar,
40
+ .p-calendar .p-inputtext {
41
+ width: 100%;
42
+ box-shadow: unset;
43
+ }
44
+ &.centred-date-picker {
45
+ .p-datepicker.lib-date-picker-panel {
46
+ transform-origin: left !important;
47
+ transform: scale(0.8) !important;
48
+ top: 0 !important;
49
+ }
50
+ }
51
+ &.event-date {
52
+ .p-datepicker.lib-date-picker-panel {
53
+ transform: scale(0.7) !important;
54
+ transform-origin: left !important;
55
+ top: -30px !important;
56
+ }
57
+ }
58
+ &.event-end-date {
59
+ .p-datepicker.lib-date-picker-panel {
60
+ left: -90px !important;
61
+ transform-origin: left !important;
62
+ top: -30px !important;
63
+ }
64
+ }
65
+ &.event-time {
66
+ .p-datepicker.lib-date-picker-panel {
67
+ transform: scale(0.8) !important;
68
+ }
69
+ }
70
+ .p-datepicker.lib-date-picker-panel,
71
+ .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header {
72
+ background: linear-gradient(191.18deg, #27242c 61.33%, #0c0b0e 101.43%) !important;
73
+ border: none !important;
74
+ z-index: 999999999 !important;
75
+ }
76
+ .p-datepicker table td,
77
+ .p-datepicker table th {
78
+ border: 1px solid #333333 !important;
79
+ color: #f5f5f5 !important;
80
+ }
81
+ .p-datepicker:not(.p-datepicker-inline) .p-datepicker-header {
82
+ color: #fff !important;
83
+ }
84
+ .p-inputtext:enabled:focus {
85
+ outline: none !important;
86
+ box-shadow: none !important;
87
+ border: none !important;
88
+ ~ .input-label {
89
+ top: -0.1rem !important;
90
+ font-size: var(--label-font-size-floated);
91
+ }
92
+ }
93
+ .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover,
94
+ .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):not(.p-highlight):hover,
95
+ .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):not(.p-highlight):hover {
96
+ color: #222;
97
+ }
98
+
99
+ .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year,
100
+ .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month {
101
+ color: var(--ion-text-color);
102
+ }
103
+
104
+ .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-year:enabled:hover,
105
+ .p-datepicker .p-datepicker-header .p-datepicker-title .p-datepicker-month:enabled:hover {
106
+ color: var(--cyrano-pink-shade-1);
107
+ }
108
+
109
+ .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus,
110
+ .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus,
111
+ .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):focus {
112
+ box-shadow: 0 0 0 0.2rem var(--cyrano-pink-shade-1);
113
+ }
114
+
115
+ .p-datepicker table td.p-datepicker-today > span {
116
+ background: transparent;
117
+ color: var(--cyrano-pink-shade-1);
118
+ }
119
+
120
+ .p-datepicker .p-datepicker-header {
121
+ padding: 0.5rem 0 !important;
122
+ font-family: 'Gilroy-Regular', serif;
123
+ }
124
+
125
+ .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled).not-day-element:focus {
126
+ box-shadow: none !important;
127
+ }
128
+
129
+ .p-datepicker:not(.p-disabled) .p-monthpicker .p-monthpicker-month:not(.p-disabled):focus,
130
+ .p-datepicker:not(.p-disabled) .p-yearpicker .p-yearpicker-year:not(.p-disabled):focus,
131
+ .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):not(.not-day-element):focus,
132
+ .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled).day-element {
133
+ box-shadow: 0 0 0 0.2rem var(--cyrano-pink-shade-1) !important;
134
+ }
135
+
136
+ .p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
137
+ background: #fff;
138
+ }
139
+
140
+ .p-float-label {
141
+ input:focus ~ label,
142
+ input.p-filled ~ label,
143
+ textarea:focus ~ label,
144
+ textarea.p-filled ~ label,
145
+ .p-inputwrapper-focus ~ label,
146
+ .p-inputwrapper-filled ~ label {
147
+ background: transparent;
148
+ }
149
+ }
150
+ }
151
+
152
+ @media screen and (max-width: 360px) {
153
+ lib-input-date-field {
154
+ &.event-date {
155
+ .p-datepicker.lib-date-picker-panel {
156
+ transform: scale(0.8) !important;
157
+ left: 0 !important;
158
+ transform-origin: left top !important;
159
+ }
160
+ }
161
+ }
162
+ }
163
+
164
+ @media screen and (max-width: 500px) and (min-width: 360px) {
165
+ lib-input-date-field {
166
+ &.event-date:not(event-end-date),
167
+ &.event-end-date {
168
+ .p-datepicker.lib-date-picker-panel {
169
+ top: -10px !important;
170
+ left: 0 !important;
171
+ }
172
+ }
173
+ &.centred-date-picker {
174
+ .p-datepicker.lib-date-picker-panel {
175
+ top: 5px !important;
176
+ }
177
+ }
178
+ }
179
+ }
@@ -0,0 +1,34 @@
1
+ .draggable-scroll-container {
2
+ &.padded-sides {
3
+ padding: 0 18px;
4
+ }
5
+
6
+ .swiper-slide {
7
+ width: auto;
8
+ }
9
+ }
10
+
11
+ .container-sides-shadow,
12
+ .marquee-active {
13
+ position: relative;
14
+
15
+ &::before,
16
+ &::after {
17
+ content: '';
18
+ position: absolute;
19
+ top: 0;
20
+ width: var(--container-sides-shadow-width, 50px);
21
+ height: 100%;
22
+ z-index: 10;
23
+ }
24
+
25
+ &::before {
26
+ left: var(--marquee-before-shadow-padding, 0);
27
+ background: linear-gradient(to right, rgb(41 37 45), rgba(255, 255, 255, 0));
28
+ }
29
+
30
+ &::after {
31
+ right: var(--marquee-after-shadow-padding, 0);
32
+ background: linear-gradient(to left, rgb(41 37 45), rgba(255, 255, 255, 0));
33
+ }
34
+ }
@@ -0,0 +1,157 @@
1
+ // feedback-modal.component
2
+ .feedback-modal {
3
+ --popover-container-padding: 1.93rem 1.5rem !important;
4
+ --popover-container-width: 25.67rem !important;
5
+ --popover-container-min-width: 25.67rem !important;
6
+ --box-shadow: none !important;
7
+ }
8
+
9
+ .modal-buttons {
10
+ lib-secondary-btn,
11
+ lib-primary-btn {
12
+ --lib-button-container-height: 1.96rem;
13
+ --lib-button-height: 1.96rem;
14
+ --lib-button-font-size: 0.83rem;
15
+ }
16
+ }
17
+
18
+ .toggle-container {
19
+ lib-toggle {
20
+ font-size: 0.405rem;
21
+ --knob-color: white;
22
+ }
23
+ }
24
+
25
+ // feedback-screenshot.component
26
+ .toolbar {
27
+ lib-icon-btn {
28
+ .btn-text {
29
+ img {
30
+ width: 1.58rem;
31
+ }
32
+ }
33
+ .lib-button-component {
34
+ button {
35
+ border: none !important;
36
+ background: none !important;
37
+ }
38
+ .lib-button-container {
39
+ --lib-button-container-background: linear-gradient(90deg, #353039 0.68%, #463a45 99.45%) !important;
40
+ }
41
+ }
42
+ }
43
+ }
44
+
45
+ // feedback-send.component
46
+ .page-wrapper {
47
+ lib-menu-btn {
48
+ mat-icon {
49
+ font-size: 1.5rem !important;
50
+ width: 1.666rem !important;
51
+ }
52
+ .lib-button-component {
53
+ button {
54
+ width: 2.667rem !important;
55
+ }
56
+ }
57
+ }
58
+ .back-icon {
59
+ box-shadow: -5px -5px 12px 3px #cbc7d140;
60
+ border-radius: 50%;
61
+ .lib-button-component {
62
+ button {
63
+ background: transparent !important;
64
+ border: none !important;
65
+ }
66
+ }
67
+ img {
68
+ width: 1.21rem !important;
69
+ height: 1.05rem !important;
70
+ }
71
+ }
72
+ .comments-field {
73
+ lib-input-field {
74
+ .counter {
75
+ font-size: 1rem !important;
76
+ }
77
+ textarea {
78
+ font-family: Gilroy-Regular, serif;
79
+ font-size: 1rem;
80
+ min-width: 100%;
81
+ border-radius: 0.83rem;
82
+ padding-inline: 1rem;
83
+ &::placeholder {
84
+ font-size: 1rem !important;
85
+ }
86
+ &::-webkit-scrollbar-track {
87
+ height: 90% !important;
88
+ background: transparent !important;
89
+ &:hover {
90
+ cursor: pointer;
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
96
+
97
+ lib-form-field {
98
+ lib-toggle {
99
+ font-size: 0.405rem;
100
+ --knob-color: white;
101
+ }
102
+ }
103
+
104
+ .lib-secondary-btn_container {
105
+ lib-secondary-btn {
106
+ width: 12.08rem;
107
+ }
108
+ lib-base-btn {
109
+ --lib-button-font-size: 0.95rem !important;
110
+ }
111
+ }
112
+
113
+ .submit-container {
114
+ lib-base-btn {
115
+ --lib-button-font-size: 1.54rem !important;
116
+ }
117
+ }
118
+
119
+ lib-chip-btn {
120
+ .lib-chip-container {
121
+ width: 42vw;
122
+ max-width: 11.6rem;
123
+ display: block;
124
+ padding: 0.32rem 1rem;
125
+ white-space: nowrap;
126
+ overflow: hidden;
127
+ text-overflow: ellipsis;
128
+ font-size: 1.08rem;
129
+ @media (min-width: 390px) {
130
+ max-width: 12.2rem;
131
+ }
132
+ @media (min-width: 425px) {
133
+ max-width: 13.3rem;
134
+ }
135
+ }
136
+ .lib-button-component button.lib-button-hover-outline:hover {
137
+ outline: none !important;
138
+ }
139
+ }
140
+ }
141
+ .feedback-menu-item {
142
+ min-height: 2.08rem !important;
143
+ lib-toggle {
144
+ font-size: 0.405rem;
145
+ --knob-color: white;
146
+ .lib-toggle-container {
147
+ height: 2.8rem;
148
+ }
149
+ }
150
+ }
151
+
152
+ // feedback-success.component
153
+ .ok-btn {
154
+ lib-base-btn {
155
+ --lib-button-font-size: 1.54rem !important;
156
+ }
157
+ }
@@ -0,0 +1,3 @@
1
+ // List of fonts
2
+ @import '../fonts/gilroy.font.scss';
3
+ @import '../fonts/calistoga.font.scss';
@@ -0,0 +1,56 @@
1
+ $sm: 320px;
2
+ $md: 360px;
3
+
4
+ ion-card {
5
+ background: var(--button-background);
6
+ box-shadow: var(--box-shadow);
7
+ border-radius: 8px;
8
+ padding: 30px 30px 25px 30px;
9
+ display: grid;
10
+ margin-inline: 0px;
11
+
12
+ .card-header {
13
+ margin-bottom: 7px;
14
+ @extend .f-calistoga;
15
+ @extend .f-w-600;
16
+ @extend .h-160;
17
+ @extend .f-md;
18
+ @extend .f-white;
19
+ }
20
+
21
+ .information {
22
+ @extend .f-calistoga;
23
+ @extend .f-sm;
24
+ @extend .f-w-400;
25
+ @extend .h-180;
26
+ @extend .f-gray;
27
+ }
28
+ .gallery-container {
29
+ margin: -5.5px;
30
+ }
31
+
32
+ div.gallery {
33
+ margin: 5.5px;
34
+ float: left;
35
+ width: 86px;
36
+ height: 86px;
37
+ }
38
+
39
+ div.gallery img {
40
+ width: 100%;
41
+ height: 100%;
42
+ border-radius: 8px;
43
+ }
44
+ }
45
+
46
+ @media screen and (max-width: $md) {
47
+ ion-card {
48
+ padding: 20px 20px 15px 20px;
49
+ }
50
+ }
51
+
52
+ @media screen and (max-width: $sm) {
53
+ ion-card {
54
+ padding: 15px 15px 10px 15px;
55
+ }
56
+ }
@@ -0,0 +1,110 @@
1
+ .input-style:not(.p-inputtext) {
2
+ background: var(--primary-color);
3
+ border-radius: 100px;
4
+ box-shadow: var(--input-box-shadow);
5
+ width: 100%;
6
+ margin: 12px 0;
7
+ outline: #1e2023;
8
+ border: none;
9
+
10
+ &:not([type="number"]) {
11
+ height: 48px;
12
+ }
13
+ z-index: 1;
14
+
15
+ &.mdc-radio__native-control {
16
+ margin: unset;
17
+ }
18
+ }
19
+
20
+ .emphasis {
21
+ border-bottom: 1.5px solid rgba(255, 255, 255, 0.5) !important;
22
+ border-top: 0.5px;
23
+ border-left: 0.5px;
24
+ border-right: 0.5px;
25
+ box-sizing: border-box;
26
+ }
27
+
28
+ input:not(.p-inputtext) {
29
+ @extend .input-style;
30
+ overflow: hidden;
31
+ display: flex;
32
+ font-style: normal;
33
+ font-weight: 600;
34
+ font-size: 14px;
35
+ line-height: 160%;
36
+ padding: 0 16px;
37
+ box-sizing: border-box;
38
+ color: var(--input-field-color, #fff);
39
+
40
+ .mdc-icon-button {
41
+ position: absolute;
42
+ top: 0;
43
+ right: 5px;
44
+ box-shadow: none !important;
45
+ background: transparent !important;
46
+ }
47
+
48
+ .mdc-icon-button.left {
49
+ left: 5px !important;
50
+ }
51
+ }
52
+
53
+ input:not(.mdc-radio__native-control) {
54
+ position: relative;
55
+ }
56
+
57
+ textarea:not(.p-inputtext) {
58
+ @extend .input-style;
59
+ font-weight: 400;
60
+ font-size: 14px;
61
+ line-height: 180%;
62
+ height: 100px;
63
+ border-radius: 12px;
64
+ padding: 15px 37px;
65
+ resize: none;
66
+ box-sizing: border-box;
67
+ }
68
+
69
+ input:not(.p-inputtext),
70
+ textarea:not(.p-inputtext) {
71
+ background: transparent;
72
+ width: 100%;
73
+ }
74
+
75
+ ion-input {
76
+ --border-radius: 100px;
77
+ --padding-end: 37px !important;
78
+ --padding-start: 37px !important;
79
+ font-size: 14px;
80
+ }
81
+
82
+ ion-textarea {
83
+ --border-radius: 12px !important;
84
+ font-size: 14px;
85
+ --background: var(--primary-color);
86
+ }
87
+
88
+ mat-radio-button {
89
+ .mat-ripple {
90
+ display: none;
91
+ }
92
+ .mdc-label {
93
+ color: var(--input-field-color, #fff);
94
+ cursor: pointer;
95
+ }
96
+
97
+ .mdc-radio__outer-circle {
98
+ border-color: #e91e63 !important;
99
+ }
100
+ }
101
+
102
+ .mdc-line-ripple::after {
103
+ display: none;
104
+ }
105
+
106
+ .custom-input {
107
+ textarea {
108
+ background: transparent !important;
109
+ }
110
+ }
@@ -0,0 +1,157 @@
1
+ @import './cards.scss';
2
+ .common-font-style {
3
+ font-style: normal;
4
+ font-weight: 500;
5
+ line-height: 150%;
6
+ letter-spacing: -0.113px;
7
+ text-transform: capitalize;
8
+ }
9
+
10
+ .spacer {
11
+ flex: 1 1 auto;
12
+ }
13
+
14
+ .ellipsis-text {
15
+ white-space: nowrap;
16
+ overflow: hidden;
17
+ text-overflow: ellipsis;
18
+ display: inline-block;
19
+ }
20
+
21
+ .center-content {
22
+ display: flex;
23
+ flex-direction: row;
24
+ align-items: center;
25
+ justify-content: center;
26
+ }
27
+
28
+ .three-cols-container {
29
+ display: flex;
30
+ align-items: center;
31
+ .left-section {
32
+ flex: 1;
33
+ display: flex;
34
+ align-items: center;
35
+ }
36
+ .center-section {
37
+ @extend .center-content;
38
+ }
39
+ .right-section {
40
+ flex: 1;
41
+ display: flex;
42
+ align-items: center;
43
+ }
44
+ }
45
+
46
+ .two-cols-container {
47
+ display: flex;
48
+ align-items: center;
49
+ .left-section,
50
+ .right-section {
51
+ display: flex;
52
+ align-items: center;
53
+ width: 50%;
54
+ }
55
+ }
56
+
57
+ .gap-5 {
58
+ gap: 5px;
59
+ }
60
+
61
+ .loader-container {
62
+ position: relative;
63
+ display: block;
64
+ overflow: hidden;
65
+ width: 100%;
66
+ height: 5px;
67
+ }
68
+
69
+ .loading-overlay {
70
+ position: fixed;
71
+ top: 0;
72
+ left: 0;
73
+ height: 100%;
74
+ width: 100%;
75
+ z-index: 999999999;
76
+ }
77
+
78
+ // Following is a fix/hack for unwanted/unexpected white background-color by the browser ie 'user agent stylesheet'
79
+ // for input fields caused by autocomplete especially for login input field
80
+ input:-webkit-autofill,
81
+ input:-webkit-autofill:hover,
82
+ input:-webkit-autofill:focus,
83
+ input:-webkit-autofill:active {
84
+ -webkit-background-clip: text;
85
+ -webkit-text-fill-color: #ffffff;
86
+ transition: background-color 5000s ease-in-out 0s;
87
+ box-shadow: inset 0 0 20px 20px #23232329;
88
+ background-color: inherit !important;
89
+ }
90
+
91
+ .messsage {
92
+ color: rgba(235, 235, 245, 0.6);
93
+ text-align: center;
94
+ font-weight: 500;
95
+ letter-spacing: 0.07px;
96
+ line-height: 1.5;
97
+ }
98
+
99
+ .avatar {
100
+ width: var(--avatar-width, 30px);
101
+ height: var(--avatar-height, 30px);
102
+ border-radius: 50%;
103
+ }
104
+
105
+ .highlight {
106
+ background-color: var(--highlight-text-bg-color, yellow);
107
+ color: var(--highlight-text-color, #222);
108
+ }
109
+
110
+ .faded-image {
111
+ position: relative;
112
+ mask-image: linear-gradient(
113
+ to bottom,
114
+ transparent 0%,
115
+ rgba(0, 0, 0, 0.1) 3%,
116
+ rgba(0, 0, 0, 0.3) 6%,
117
+ rgba(0, 0, 0, 0.5) 9%,
118
+ rgba(0, 0, 0, 0.7) 12%,
119
+ rgba(0, 0, 0, 0.9) 15%,
120
+ black 18%,
121
+ black 100%
122
+ ),
123
+ linear-gradient(
124
+ to bottom,
125
+ black 0%,
126
+ black 82%,
127
+ rgba(0, 0, 0, 0.9) 85%,
128
+ rgba(0, 0, 0, 0.7) 88%,
129
+ rgba(0, 0, 0, 0.5) 91%,
130
+ rgba(0, 0, 0, 0.3) 94%,
131
+ rgba(0, 0, 0, 0.1) 97%,
132
+ transparent 100%
133
+ ),
134
+ linear-gradient(
135
+ to right,
136
+ transparent 0%,
137
+ rgba(0, 0, 0, 0.1) 3%,
138
+ rgba(0, 0, 0, 0.3) 6%,
139
+ rgba(0, 0, 0, 0.5) 9%,
140
+ rgba(0, 0, 0, 0.7) 12%,
141
+ rgba(0, 0, 0, 0.9) 15%,
142
+ black 18%,
143
+ black 100%
144
+ ),
145
+ linear-gradient(
146
+ to right,
147
+ black 0%,
148
+ black 82%,
149
+ rgba(0, 0, 0, 0.9) 85%,
150
+ rgba(0, 0, 0, 0.7) 88%,
151
+ rgba(0, 0, 0, 0.5) 91%,
152
+ rgba(0, 0, 0, 0.3) 94%,
153
+ rgba(0, 0, 0, 0.1) 97%,
154
+ transparent 100%
155
+ );
156
+ mask-composite: intersect, intersect, intersect;
157
+ }