@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.
- package/esm2022/lib/components/auto-delegation/animations.mjs +20 -0
- package/esm2022/lib/components/auto-delegation/auto-delegation-modal.component.mjs +106 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.mjs +6 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.mjs +7 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.event.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/preferences.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.mjs +37 -0
- package/esm2022/lib/components/calendar/agenda/agenda.component.mjs +98 -0
- package/esm2022/lib/components/calendar/agenda/agenda.module.mjs +24 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.mjs +2 -0
- package/esm2022/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.mjs +40 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.component.mjs +275 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.module.mjs +89 -0
- package/esm2022/lib/components/calendar/components/event-info/event-info.component.mjs +40 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.icons.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/event-type.enum.mjs +10 -0
- package/esm2022/lib/components/calendar/enums/recurring.edit.options.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/enums/recurring.type.enum.mjs +8 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.theme.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.output.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.time.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.exception.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.pattern.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/lookups/recurring.options.lookup.mjs +30 -0
- package/esm2022/lib/components/calendar/scheduler/enums/schedule-date-status.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/mock-schedule.mjs +80 -0
- package/esm2022/lib/components/calendar/scheduler/scheduler.component.mjs +144 -0
- package/esm2022/lib/components/calendar/services/calendar-utils.service.mjs +211 -0
- package/esm2022/lib/components/chat/chat.component.mjs +307 -0
- package/esm2022/lib/components/chat/chat.component.module.mjs +85 -0
- package/esm2022/lib/components/chat/chat.service.mjs +63 -0
- package/esm2022/lib/components/chat/enums/sender-types.enum.mjs +6 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.component.mjs +77 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.service.mjs +41 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-media-format.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-object.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-result.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/date-messages.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message-attachment.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/send-options-message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/type-send-message.enum.mjs +7 -0
- package/esm2022/lib/components/chat-suggestion/chat-suggestion.component.mjs +21 -0
- package/esm2022/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/circle-progress/circle-progress.component.mjs +143 -0
- package/esm2022/lib/components/circle-progress/circle-progress.module.mjs +18 -0
- package/esm2022/lib/components/circle-progress/enums/circle-variable.enum.mjs +6 -0
- package/esm2022/lib/components/circle-progress/interfaces/circle-progress-config.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/client-home.component.mjs +123 -0
- package/esm2022/lib/components/client-home/enums/client-home-component.enum.mjs +9 -0
- package/esm2022/lib/components/client-home/interfaces/chat-meta.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/home-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/lookup/client-home.config.mjs +30 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-default-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-pink-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-purple-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-teal-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-default-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/pipes/chat-meta.pipe.mjs +60 -0
- package/esm2022/lib/components/client-home/pipes/get-color-by-matcher.pipe.mjs +33 -0
- package/esm2022/lib/components/client-match-overview/client-match-overview.component.mjs +300 -0
- package/esm2022/lib/components/client-match-overview/enums/conversation-flag.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/counter-flag-base.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/inner-circle-state.enum.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/interfaces/client-match-overview.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/conversation-flag.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-decision.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-facts.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/lookups/computer-inner-state.lookup.mjs +81 -0
- package/esm2022/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-gap.config.mjs +4 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.config.mjs +3 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.service.mjs +43 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.mjs +113 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.mjs +11 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.mjs +27 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.mjs +19 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.mjs +21 -0
- package/esm2022/lib/components/lib-client-dashboard/client-dashboard.component.mjs +170 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.mjs +11 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.mjs +7 -0
- package/esm2022/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-client-dashboard/lookups/client-dashboard.config.mjs +15 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.mjs +146 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.mjs +21 -0
- package/esm2022/lib/components/matcher-statuses/enums/matcher-statuses.enum.mjs +15 -0
- package/esm2022/lib/components/matcher-statuses/interfaces/status.interface.mjs +2 -0
- package/esm2022/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.mjs +54 -0
- package/esm2022/lib/components/matcher-statuses/matcher-statuses.component.mjs +58 -0
- package/esm2022/lib/components/matcher-statuses/pipes/is-status-included.pipe.mjs +19 -0
- package/esm2022/lib/components/profile-card/profile-card.component.mjs +35 -0
- package/esm2022/lib/components/profile-card/profile-card.module.mjs +19 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-circle.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/config.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/dataset.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/polygon-color.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.lookup.mjs +18 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.mjs +67 -0
- package/esm2022/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.mjs +11 -0
- package/esm2022/lib/components/spider-chart/lookup/svg-config.lookup.mjs +277 -0
- package/esm2022/lib/components/spider-chart/spider-chart.component.mjs +235 -0
- package/esm2022/lib/enums/direction.enum.mjs +6 -0
- package/esm2022/lib/enums/form-field-type.mjs +30 -0
- package/esm2022/lib/enums/local-storage-keys.enum.mjs +5 -0
- package/esm2022/lib/enums/status-types.mjs +8 -0
- package/esm2022/lib/model/select-option-template.mjs +2 -0
- package/esm2022/lib/operations/operations.mjs +19 -0
- package/esm2022/lib/pipes/array-sort/array.sort.pipe.mjs +49 -0
- package/esm2022/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.mjs +17 -0
- package/esm2022/lib/pipes/date-localization/date-localization.pipe.mjs +31 -0
- package/esm2022/lib/pipes/fallback-translate/fallback-translate.pipe.mjs +28 -0
- package/esm2022/lib/pipes/get-display-value/get-display-value.pipe.mjs +59 -0
- package/esm2022/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.mjs +22 -0
- package/esm2022/lib/pipes/initials/initials.pipe.mjs +25 -0
- package/esm2022/lib/pipes/round/round.pipe.mjs +17 -0
- package/esm2022/lib/pipes/update-llm-preference/update-llm-preference.pipe.mjs +25 -0
- package/esm2022/lib/services/abstract-cache.service.mjs +10 -0
- package/esm2022/lib/shared/shared/alert-popup/alert-popup.component.mjs +38 -0
- package/esm2022/lib/shared/shared/message-modal/message-modal.component.mjs +95 -0
- package/esm2022/lib/shared/shared/status-icon/status-icon.component.mjs +14 -0
- package/esm2022/lib/shared/shared.module.mjs +23 -0
- package/esm2022/naniteninja-dashboard-components-lib.mjs +5 -0
- package/esm2022/public-api.mjs +122 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs +4334 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auto-delegation/animations.d.ts +1 -0
- package/lib/components/auto-delegation/auto-delegation-modal.component.d.ts +29 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.d.ts +4 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.d.ts +5 -0
- package/lib/components/auto-delegation/interface/auto-delegation-data.interface.d.ts +31 -0
- package/lib/components/auto-delegation/interface/auto-delegation.event.interface.d.ts +6 -0
- package/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.d.ts +8 -0
- package/lib/components/auto-delegation/interface/preferences.interface.d.ts +17 -0
- package/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.d.ts +12 -0
- package/lib/components/calendar/agenda/agenda.component.d.ts +22 -0
- package/lib/components/calendar/agenda/agenda.module.d.ts +12 -0
- package/lib/components/calendar/agenda/interfaces/agenda.day.interface.d.ts +7 -0
- package/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.d.ts +9 -0
- package/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.d.ts +19 -0
- package/lib/components/calendar/components/event-form/event-form.component.d.ts +67 -0
- package/lib/components/calendar/components/event-form/event-form.module.d.ts +20 -0
- package/lib/components/calendar/components/event-info/event-info.component.d.ts +24 -0
- package/lib/components/calendar/enums/calendar.account.enum.d.ts +4 -0
- package/lib/components/calendar/enums/calendar.account.icons.enum.d.ts +4 -0
- package/lib/components/calendar/enums/event-type.enum.d.ts +8 -0
- package/lib/components/calendar/enums/recurring.edit.options.enum.d.ts +5 -0
- package/lib/components/calendar/enums/recurring.type.enum.d.ts +6 -0
- package/lib/components/calendar/interfaces/calendar.account.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/calendar.account.theme.interface.d.ts +5 -0
- package/lib/components/calendar/interfaces/event.form.interface.d.ts +22 -0
- package/lib/components/calendar/interfaces/event.form.output.interface.d.ts +10 -0
- package/lib/components/calendar/interfaces/event.interface.d.ts +33 -0
- package/lib/components/calendar/interfaces/event.time.interface.d.ts +4 -0
- package/lib/components/calendar/interfaces/recurring.event.interface.d.ts +16 -0
- package/lib/components/calendar/interfaces/recurring.exception.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/recurring.pattern.interface.d.ts +16 -0
- package/lib/components/calendar/lookups/recurring.options.lookup.d.ts +2 -0
- package/lib/components/calendar/scheduler/enums/schedule-date-status.enum.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.d.ts +10 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.d.ts +26 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.d.ts +13 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.d.ts +6 -0
- package/lib/components/calendar/scheduler/mock-schedule.d.ts +9 -0
- package/lib/components/calendar/scheduler/scheduler.component.d.ts +36 -0
- package/lib/components/calendar/services/calendar-utils.service.d.ts +39 -0
- package/lib/components/chat/chat.component.d.ts +70 -0
- package/lib/components/chat/chat.component.module.d.ts +22 -0
- package/lib/components/chat/chat.service.d.ts +15 -0
- package/lib/components/chat/enums/sender-types.enum.d.ts +4 -0
- package/lib/components/chat/gif-selector/gif-selector.component.d.ts +25 -0
- package/lib/components/chat/gif-selector/gif-selector.service.d.ts +15 -0
- package/lib/components/chat/gif-selector/tenor-media-format.interface.d.ts +7 -0
- package/lib/components/chat/gif-selector/tenor-object.interface.d.ts +5 -0
- package/lib/components/chat/gif-selector/tenor-result.interface.d.ts +16 -0
- package/lib/components/chat/interfaces/date-messages.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message-attachment.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message.interface.d.ts +11 -0
- package/lib/components/chat/interfaces/send-options-message.interface.d.ts +5 -0
- package/lib/components/chat/interfaces/type-send-message.enum.d.ts +5 -0
- package/lib/components/chat-suggestion/chat-suggestion.component.d.ts +9 -0
- package/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.d.ts +4 -0
- package/lib/components/circle-progress/circle-progress.component.d.ts +31 -0
- package/lib/components/circle-progress/circle-progress.module.d.ts +8 -0
- package/lib/components/circle-progress/enums/circle-variable.enum.d.ts +4 -0
- package/lib/components/circle-progress/interfaces/circle-progress-config.interface.d.ts +29 -0
- package/lib/components/client-home/client-home.component.d.ts +44 -0
- package/lib/components/client-home/enums/client-home-component.enum.d.ts +7 -0
- package/lib/components/client-home/interfaces/chat-meta.interface.d.ts +7 -0
- package/lib/components/client-home/interfaces/home-dashboard-inputs.interface.d.ts +45 -0
- package/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.d.ts +5 -0
- package/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.d.ts +9 -0
- package/lib/components/client-home/lookup/client-home.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-pink-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-purple-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-teal-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/pipes/chat-meta.pipe.d.ts +10 -0
- package/lib/components/client-home/pipes/get-color-by-matcher.pipe.d.ts +10 -0
- package/lib/components/client-match-overview/client-match-overview.component.d.ts +55 -0
- package/lib/components/client-match-overview/enums/conversation-flag.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/counter-flag-base.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/inner-circle-state.enum.d.ts +6 -0
- package/lib/components/client-match-overview/interfaces/client-match-overview.interface.d.ts +19 -0
- package/lib/components/client-match-overview/interfaces/conversation-flag.interface.d.ts +8 -0
- package/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.d.ts +7 -0
- package/lib/components/client-match-overview/interfaces/progress-decision.interface.d.ts +10 -0
- package/lib/components/client-match-overview/interfaces/progress-facts.interface.d.ts +11 -0
- package/lib/components/client-match-overview/lookups/computer-inner-state.lookup.d.ts +7 -0
- package/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.d.ts +5 -0
- package/lib/components/client-match-overview/progress-ticker/progress-gap.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.service.d.ts +11 -0
- package/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.d.ts +29 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.d.ts +2 -0
- package/lib/components/lib-client-dashboard/client-dashboard.component.d.ts +73 -0
- package/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.d.ts +9 -0
- package/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.d.ts +5 -0
- package/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.d.ts +29 -0
- package/lib/components/lib-client-dashboard/lookups/client-dashboard.config.d.ts +2 -0
- package/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.d.ts +48 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.d.ts +26 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.d.ts +8 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.d.ts +24 -0
- package/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.d.ts +9 -0
- package/lib/components/matcher-statuses/enums/matcher-statuses.enum.d.ts +13 -0
- package/lib/components/matcher-statuses/interfaces/status.interface.d.ts +6 -0
- package/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.d.ts +2 -0
- package/lib/components/matcher-statuses/matcher-statuses.component.d.ts +23 -0
- package/lib/components/matcher-statuses/pipes/is-status-included.pipe.d.ts +8 -0
- package/lib/components/profile-card/profile-card.component.d.ts +11 -0
- package/lib/components/profile-card/profile-card.module.d.ts +9 -0
- package/lib/components/spider-chart/interfaces/chart-data-circle.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/config.interface.d.ts +19 -0
- package/lib/components/spider-chart/interfaces/dataset.interface.d.ts +7 -0
- package/lib/components/spider-chart/interfaces/polygon-color.interface.d.ts +4 -0
- package/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.d.ts +6 -0
- package/lib/components/spider-chart/lookup/default-spider-config.d.ts +2 -0
- package/lib/components/spider-chart/lookup/default-spider-config.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/svg-config.lookup.d.ts +8 -0
- package/lib/components/spider-chart/spider-chart.component.d.ts +52 -0
- package/lib/enums/direction.enum.d.ts +4 -0
- package/lib/enums/form-field-type.d.ts +28 -0
- package/lib/enums/local-storage-keys.enum.d.ts +3 -0
- package/lib/enums/status-types.d.ts +6 -0
- package/lib/model/select-option-template.d.ts +5 -0
- package/lib/operations/operations.d.ts +19 -0
- package/lib/pipes/array-sort/array.sort.pipe.d.ts +7 -0
- package/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.d.ts +7 -0
- package/lib/pipes/date-localization/date-localization.pipe.d.ts +8 -0
- package/lib/pipes/fallback-translate/fallback-translate.pipe.d.ts +11 -0
- package/lib/pipes/get-display-value/get-display-value.pipe.d.ts +13 -0
- package/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.d.ts +8 -0
- package/lib/pipes/initials/initials.pipe.d.ts +7 -0
- package/lib/pipes/round/round.pipe.d.ts +7 -0
- package/lib/pipes/update-llm-preference/update-llm-preference.pipe.d.ts +8 -0
- package/lib/services/abstract-cache.service.d.ts +9 -0
- package/lib/shared/shared/alert-popup/alert-popup.component.d.ts +14 -0
- package/lib/shared/shared/message-modal/message-modal.component.d.ts +29 -0
- package/lib/shared/shared/status-icon/status-icon.component.d.ts +7 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/naniteninja-dashboard-components-lib-1.0.0.tgz +0 -0
- package/package.json +69 -0
- package/public-api.d.ts +121 -0
- package/src/assets/auto-delegation-modal/cross.svg +17 -0
- package/src/assets/auto-delegation-modal/menu.svg +3 -0
- package/src/assets/auto-delegation-modal/timer-center-dot.svg +25 -0
- package/src/assets/auto-delegation-modal/user-profile.svg +9 -0
- package/src/assets/circle-progress/circle-progress-1.svg +159 -0
- package/src/assets/circle-progress/circle-progress-2.svg +155 -0
- package/src/assets/circle-progress/circle-progress-3.svg +25 -0
- package/src/assets/circle-progress/circle-progress.svg +159 -0
- package/src/assets/client-match-overview/background-eclipse.svg +13 -0
- package/src/assets/fonts/calistoga/Calistoga-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Black.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BlackItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Bold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Heavy.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-HeavyItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Light.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-LightItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Medium.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-MediumItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-RegularItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Thin.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ThinItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLight.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf +0 -0
- package/src/assets/grid/icons/filter-button.svg +47 -0
- package/src/assets/grid/images/chips-background-shadow.svg +34 -0
- package/src/assets/icons/back-v2.svg +14 -0
- package/src/assets/icons/checkbox/checkbox-off.svg +72 -0
- package/src/assets/icons/checkbox/checkbox-on.svg +113 -0
- package/src/assets/icons/checkmark-button.svg +72 -0
- package/src/assets/icons/checkmark.svg +7 -0
- package/src/assets/icons/close-icon.svg +3 -0
- package/src/assets/icons/compose-matcher/notes.svg +4 -0
- package/src/assets/icons/compose-matcher/profile.svg +4 -0
- package/src/assets/icons/compose-matcher/suggest.svg +3 -0
- package/src/assets/icons/compose-matcher/visual.svg +3 -0
- package/src/assets/icons/default-profile.svg +23 -0
- package/src/assets/icons/defualt.svg +5 -0
- package/src/assets/icons/first-page.svg +7 -0
- package/src/assets/icons/incrementer/minus.svg +3 -0
- package/src/assets/icons/incrementer/plus.svg +3 -0
- package/src/assets/icons/info.svg +5 -0
- package/src/assets/icons/last-page.svg +7 -0
- package/src/assets/icons/minus.svg +3 -0
- package/src/assets/icons/next-page.svg +6 -0
- package/src/assets/icons/plus.svg +3 -0
- package/src/assets/icons/popup-defualt.svg +34 -0
- package/src/assets/icons/prev-page.svg +6 -0
- package/src/assets/icons/send-icon.svg +4 -0
- package/src/assets/icons/shake.svg +74 -0
- package/src/assets/icons/thumbs-up.svg +28 -0
- package/src/assets/nsfw/blazeface.bundle.js +2 -0
- package/src/assets/nsfw/model/group1-shard1of1 +0 -0
- package/src/assets/nsfw/model/model.json +4085 -0
- package/src/assets/nsfw/nsfwjs.bundle.js +2 -0
- package/src/assets/nsfw/tf.bundle.js +2 -0
- package/src/assets/scheduler/accept.svg +3 -0
- package/src/assets/scheduler/accept_active.svg +3 -0
- package/src/assets/scheduler/arrow.svg +13 -0
- package/src/assets/scheduler/cancel.svg +3 -0
- package/src/assets/scheduler/cancel_active.svg +3 -0
- package/src/assets/scheduler/heart.svg +18 -0
- package/src/assets/trait-visual/force-directed-graph.png +0 -0
- package/src/lib/shared-styles/common/_colors.scss +30 -0
- package/src/lib/shared-styles/common/animations.scss +48 -0
- package/src/lib/shared-styles/common/base-input-field.scss +132 -0
- package/src/lib/shared-styles/common/buttons.scss +152 -0
- package/src/lib/shared-styles/common/cards.scss +163 -0
- package/src/lib/shared-styles/common/client-dash.scss +5 -0
- package/src/lib/shared-styles/common/date-picker.scss +179 -0
- package/src/lib/shared-styles/common/draggable-scroll-and-marquee.scss +34 -0
- package/src/lib/shared-styles/common/feedback.scss +157 -0
- package/src/lib/shared-styles/common/fonts.scss +3 -0
- package/src/lib/shared-styles/common/information-card.scss +56 -0
- package/src/lib/shared-styles/common/input.scss +110 -0
- package/src/lib/shared-styles/common/lib-styles-utils.scss +157 -0
- package/src/lib/shared-styles/common/lists.scss +91 -0
- package/src/lib/shared-styles/common/login.scss +32 -0
- package/src/lib/shared-styles/common/maps.scss +10 -0
- package/src/lib/shared-styles/common/matcher-dash.scss +49 -0
- package/src/lib/shared-styles/common/modal_styles.scss +32 -0
- package/src/lib/shared-styles/common/notifications-list.scss +9 -0
- package/src/lib/shared-styles/common/overrides.scss +6 -0
- package/src/lib/shared-styles/common/pulse.scss +26 -0
- package/src/lib/shared-styles/common/swiper.scss +5 -0
- package/src/lib/shared-styles/common/tab-menu.scss +74 -0
- package/src/lib/shared-styles/common/theme.scss +55 -0
- package/src/lib/shared-styles/common/typography.scss +121 -0
- package/src/lib/shared-styles/common/user-menu.scss +129 -0
- package/src/lib/shared-styles/fonts/calistoga.font.scss +6 -0
- package/src/lib/shared-styles/fonts/gilroy.font.scss +160 -0
- package/src/lib/shared-styles/images/compress.png +0 -0
- package/src/lib/shared-styles/images/expand.png +0 -0
- package/src/lib/shared-styles/styles.scss +25 -0
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
.list-panel {
|
|
2
|
+
border: none;
|
|
3
|
+
z-index: 99999;
|
|
4
|
+
background: var(--ion-background-color) !important;
|
|
5
|
+
color: var(--ion-text-color-secondary) !important;
|
|
6
|
+
box-shadow: var(
|
|
7
|
+
--list-panel-shadow,
|
|
8
|
+
0 2px 4px -1px rgba(0, 0, 0, 0.2),
|
|
9
|
+
0 4px 5px 0 rgba(0, 0, 0, 0.14),
|
|
10
|
+
0 1px 10px 0 rgba(0, 0, 0, 0.12)
|
|
11
|
+
) !important;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.list-panel-item-active{
|
|
15
|
+
background-color: #fe3c72;
|
|
16
|
+
color: #fff !important
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.list-panel-item {
|
|
20
|
+
font-size: var(--input-font-size, 14px);
|
|
21
|
+
font-family: var(--font-family, 'Gilroy-Regular', serif);
|
|
22
|
+
color: var(--ion-text-color-secondary, rgba(255, 255, 255, .5)) !important;
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
border: none;
|
|
25
|
+
text-overflow: ellipsis;
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
white-space: nowrap;
|
|
28
|
+
line-height: 30px;
|
|
29
|
+
text-align: left;
|
|
30
|
+
padding-top: 0;
|
|
31
|
+
padding-bottom: 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
//------- primeng dropdown list ----------
|
|
37
|
+
.p-dropdown-panel {
|
|
38
|
+
@extend .list-panel;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.p-dropdown .p-dropdown-label, .p-dropdown-item {
|
|
42
|
+
@extend .list-panel-item;
|
|
43
|
+
&.p-highlight {
|
|
44
|
+
@extend.list-panel-item-active;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.p-dropdown-item:hover {
|
|
49
|
+
@extend.list-panel-item-active;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.p-dropdown .p-dropdown-label {
|
|
53
|
+
font-size: var(--input-font-size, 16px) !important;
|
|
54
|
+
color: var(--input-font-color, rgba(255, 255, 255, 0.87)) !important;
|
|
55
|
+
font-weight: 600;
|
|
56
|
+
display: flex;
|
|
57
|
+
align-items: center;
|
|
58
|
+
padding-left: 7px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
//------- customized google geo auto complete list ----------
|
|
62
|
+
.pac-container {
|
|
63
|
+
@extend .list-panel;
|
|
64
|
+
&:after {
|
|
65
|
+
background-image: none !important;
|
|
66
|
+
height: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.pac-item,
|
|
70
|
+
.pac-item .pac-item-query {
|
|
71
|
+
@extend .list-panel-item;
|
|
72
|
+
&:hover {
|
|
73
|
+
@extend.list-panel-item-active;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.pac-item:hover {
|
|
78
|
+
@extend.list-panel-item-active;
|
|
79
|
+
.pac-item-query, .pac-item-query.pac-matched {
|
|
80
|
+
@extend.list-panel-item-active;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.pac-item-selected {
|
|
85
|
+
@extend.list-panel-item-active;
|
|
86
|
+
.pac-icon {
|
|
87
|
+
background-position: -1px -161px;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
lib-login-screen {
|
|
2
|
+
.input-toggle-container {
|
|
3
|
+
max-width: none !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
input:-webkit-autofill,
|
|
7
|
+
input:-webkit-autofill:hover,
|
|
8
|
+
input:-webkit-autofill:focus,
|
|
9
|
+
textarea:-webkit-autofill,
|
|
10
|
+
textarea:-webkit-autofill:hover,
|
|
11
|
+
textarea:-webkit-autofill:focus {
|
|
12
|
+
background-color: transparent;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.primary-link {
|
|
16
|
+
text-decoration: none;
|
|
17
|
+
color: var(--cyrano-pink-shade-1, #fe3c72);
|
|
18
|
+
text-shadow: 0 0 10px var(--cyrano-pink-shade-1, #fe3c72);
|
|
19
|
+
font-weight: 600;
|
|
20
|
+
border: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
lib-primary-btn,
|
|
24
|
+
lib-secondary-btn {
|
|
25
|
+
lib-base-btn {
|
|
26
|
+
width: 180px;
|
|
27
|
+
@media (max-width: 568px) {
|
|
28
|
+
width: 130px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.custom-bubble-status {
|
|
2
|
+
$fontSize: clamp(0px, 3.2dvw, 15px);
|
|
3
|
+
|
|
4
|
+
lib-base-btn {
|
|
5
|
+
--lib-bubble-btn-diameter: calc(#{$fontSize} * 1.78);
|
|
6
|
+
--font-size-title: calc(#{$fontSize} * 0.45);
|
|
7
|
+
--font-size-subtitle: calc(#{$fontSize} * 0.35);
|
|
8
|
+
|
|
9
|
+
.lib-button-component {
|
|
10
|
+
font-size: clamp(0px, 3.2dvw, 15px);
|
|
11
|
+
|
|
12
|
+
button .text .btn-text {
|
|
13
|
+
display: flex !important;
|
|
14
|
+
flex-direction: column !important;
|
|
15
|
+
align-items: center !important;
|
|
16
|
+
|
|
17
|
+
.title {
|
|
18
|
+
color: white;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.subtitle {
|
|
22
|
+
text-overflow: inherit !important;
|
|
23
|
+
overflow: visible !important;
|
|
24
|
+
color: #939195;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.progress_view {
|
|
32
|
+
.circle-progress-suggestion {
|
|
33
|
+
.circle {
|
|
34
|
+
background: none;
|
|
35
|
+
}
|
|
36
|
+
lib-d3-circle {
|
|
37
|
+
.d3-circle {
|
|
38
|
+
max-width: var(--max-diameter);
|
|
39
|
+
max-height: var(--max-diameter);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.spider-chart___active {
|
|
46
|
+
.d3-container {
|
|
47
|
+
min-height: 433px !important;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
// Add figma properties to cropper square dots to make them circular
|
|
2
|
+
.ngx-ic-square {
|
|
3
|
+
display: inline-block !important;
|
|
4
|
+
background: rgba(255, 0, 0, 0.5) !important;
|
|
5
|
+
width: 9.26px !important;
|
|
6
|
+
height: 9.26px !important;
|
|
7
|
+
border: 0.92px solid rgba(205, 202, 202, 1) !important;
|
|
8
|
+
border-radius: 6.56px !important;
|
|
9
|
+
box-sizing: content-box !important;
|
|
10
|
+
box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
|
|
11
|
+
}
|
|
12
|
+
.ngx-ic-resize.ngx-ic-top {
|
|
13
|
+
top: -12.5px !important;
|
|
14
|
+
left: calc(50% - 12px) !important;
|
|
15
|
+
}
|
|
16
|
+
.ngx-ic-resize.ngx-ic-right {
|
|
17
|
+
top: calc(50% - 12px) !important;
|
|
18
|
+
right: -13px !important;
|
|
19
|
+
}
|
|
20
|
+
.ngx-ic-resize.ngx-ic-bottom {
|
|
21
|
+
bottom: -13px !important;
|
|
22
|
+
left: calc(50% - 12px) !important;
|
|
23
|
+
}
|
|
24
|
+
.ngx-ic-resize.ngx-ic-left {
|
|
25
|
+
top: calc(50% - 12px) !important;
|
|
26
|
+
left: -13.5px !important;
|
|
27
|
+
}
|
|
28
|
+
.lib-popup-modal.message-modal-container {
|
|
29
|
+
.popover-container {
|
|
30
|
+
padding: 0px !important;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.pulse {
|
|
2
|
+
overflow: visible !important;
|
|
3
|
+
|
|
4
|
+
&::before {
|
|
5
|
+
content: '';
|
|
6
|
+
position: absolute;
|
|
7
|
+
inset: 0; /* covers the host element */
|
|
8
|
+
border-radius: 50%;
|
|
9
|
+
animation: pulse-animation 2s infinite;
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@keyframes pulse-animation {
|
|
14
|
+
0% {
|
|
15
|
+
transform: scale(0.95);
|
|
16
|
+
box-shadow: 0 0 0 0 #fe3c73e3;
|
|
17
|
+
}
|
|
18
|
+
70% {
|
|
19
|
+
transform: scale(1);
|
|
20
|
+
box-shadow: 0 0 0 10px #fe3c7300;
|
|
21
|
+
}
|
|
22
|
+
100% {
|
|
23
|
+
transform: scale(0.95);
|
|
24
|
+
box-shadow: 0 0 0 0 #fe3c7300;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
.p-tabmenu .p-tabmenu-nav {
|
|
2
|
+
background: transparent;
|
|
3
|
+
border: 0;
|
|
4
|
+
}
|
|
5
|
+
.p-tabmenu .p-tabmenu-nav .p-menuitem-badge {
|
|
6
|
+
background: #9fa8da;
|
|
7
|
+
color: #121212;
|
|
8
|
+
font-size: 0.75rem;
|
|
9
|
+
font-weight: 700;
|
|
10
|
+
min-width: 1.5rem;
|
|
11
|
+
height: 1.5rem;
|
|
12
|
+
line-height: 1.5rem;
|
|
13
|
+
border-radius: 4px;
|
|
14
|
+
margin-left: 0.5rem;
|
|
15
|
+
padding-left: 0.5rem;
|
|
16
|
+
padding-right: 0.5rem;
|
|
17
|
+
}
|
|
18
|
+
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem {
|
|
19
|
+
margin-right: 0;
|
|
20
|
+
}
|
|
21
|
+
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link {
|
|
22
|
+
border: 0;
|
|
23
|
+
border-color: transparent transparent rgba(255, 255, 255, 0.12) transparent;
|
|
24
|
+
background: transparent;
|
|
25
|
+
color: rgba(255, 255, 255, 0.6);
|
|
26
|
+
padding: 1rem 1.5rem;
|
|
27
|
+
font-weight: 500;
|
|
28
|
+
transition: none;
|
|
29
|
+
margin: 0 0 0 0;
|
|
30
|
+
}
|
|
31
|
+
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link .p-menuitem-icon {
|
|
32
|
+
margin-right: 0.5rem;
|
|
33
|
+
}
|
|
34
|
+
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem .p-menuitem-link:not(.p-disabled):focus {
|
|
35
|
+
outline: 0 none;
|
|
36
|
+
outline-offset: 0;
|
|
37
|
+
box-shadow: inset none;
|
|
38
|
+
}
|
|
39
|
+
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem:not(.p-highlight):not(.p-disabled):hover .p-menuitem-link {
|
|
40
|
+
background: rgba(159, 168, 218, 0.04);
|
|
41
|
+
border-color: rgba(255, 255, 255, 0.12);
|
|
42
|
+
color: rgba(255, 255, 255, 0.6);
|
|
43
|
+
}
|
|
44
|
+
.p-tabmenu .p-tabmenu-nav .p-tabmenuitem.p-highlight .p-menuitem-link {
|
|
45
|
+
background: transparent;
|
|
46
|
+
color: #9fa8da;
|
|
47
|
+
border-bottom: 1px solid var(--cyrano-pink-shade-1);
|
|
48
|
+
}
|
|
49
|
+
.p-tabmenu .p-tabmenu-left-icon {
|
|
50
|
+
margin-right: 0.5rem;
|
|
51
|
+
}
|
|
52
|
+
.p-tabmenu .p-tabmenu-right-icon {
|
|
53
|
+
margin-left: 0.5rem;
|
|
54
|
+
}
|
|
55
|
+
.p-tabmenu .p-tabmenu-nav-btn.p-link {
|
|
56
|
+
background: transparent;
|
|
57
|
+
color: #9fa8da;
|
|
58
|
+
width: 3rem;
|
|
59
|
+
box-shadow:
|
|
60
|
+
0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
|
61
|
+
0 2px 2px 0 rgba(0, 0, 0, 0.14),
|
|
62
|
+
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
63
|
+
border-radius: 0;
|
|
64
|
+
display: none;
|
|
65
|
+
}
|
|
66
|
+
.p-tabmenu .p-tabmenu-nav-btn.p-link:focus {
|
|
67
|
+
outline: 0 none;
|
|
68
|
+
outline-offset: 0;
|
|
69
|
+
box-shadow: inset none;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.cdk-overlay-container {
|
|
73
|
+
z-index: 30000;
|
|
74
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--border: 1px solid rgba(255, 255, 255, 0.25);
|
|
3
|
+
--ion-text-color-secondary: rgba(255, 255, 255, 0.5);
|
|
4
|
+
--ion-text-color: #fff;
|
|
5
|
+
--input-font-color: rgba(255, 255, 255, 0.5);
|
|
6
|
+
--ion-background-color: #29252d;
|
|
7
|
+
--primary-background: linear-gradient(191.18deg, #27242c 61.33%, #0c0b0e 101.43%);
|
|
8
|
+
--box-shadow: 11px 10px 27px 2.5px rgba(17, 16, 20, 0.65), -5px -5px 16px -3px rgba(203, 199, 209, 0.25);
|
|
9
|
+
--input-box-shadow: inset 17px 22px 20px 2.5px rgba(17, 16, 20, 0.7), inset -2px -2px 8px rgba(203, 199, 209, 0.5);
|
|
10
|
+
--footer-backgound: linear-gradient(190deg, #27242c 0.54%, #0c0b0e 92.09%);
|
|
11
|
+
--footer-tab-label: linear-gradient(94.44deg, #fe3c72 1.26%, #e15561 100%);
|
|
12
|
+
--button-background: #27242c;
|
|
13
|
+
--footer-add-btn-box-shadow1: 12.1px 11px 29.7px 2.75px rgb(17 16 20 / 65%), -5.5px -5.5px 17.6px -4.4px rgb(203 199 209 / 25%);
|
|
14
|
+
--footer-add-btn-box-shadow2: inset 12px 11px 29.7px 2.75px rgb(17 16 20 / 65%), inset -5.5px -5.5px 17.6px -4.4px rgb(203 199 209 / 25%);
|
|
15
|
+
--header-button-shadow: 11px 10px 27px 2.5px rgba(17, 16, 20, 0.65), -5px -5px 16px -3px rgba(203, 199, 209, 0.25);
|
|
16
|
+
--fab-backdrop: linear-gradient(191.18deg, #545454 61.33%, #666666 101.43%);
|
|
17
|
+
--fab-text-color: #27242c;
|
|
18
|
+
--fab-mins-color: rgba(0, 0, 0, 0.5);
|
|
19
|
+
--faded-background: linear-gradient(180deg, transparent, #27242cd1, #141316f2);
|
|
20
|
+
--cyrano-pink-shade-1: #fe3c72;
|
|
21
|
+
--cyrano-pink-shade-2: #e15561;
|
|
22
|
+
--text-highlight-color: #f7f5dd;
|
|
23
|
+
--focus-indicator: #ffb5e9;
|
|
24
|
+
--box-shadow-2: -2px -2px 10px rgba(255, 255, 255, 0.25), 4px 4px 8px rgba(0, 0, 0, 0.25);
|
|
25
|
+
--cyrano-dark-color: #28252d;
|
|
26
|
+
--cyrano-milky-white: #f7f5dd;
|
|
27
|
+
--cyrano-maps-background: linear-gradient(180deg, #3a3e45 0%, #1c2028 100%);
|
|
28
|
+
--cyrano-maps-shadow-back: 1.7px 1.7px 3.46667px #0d0a0e, -1.7px -1.7px 3.46667px #272129;
|
|
29
|
+
--cyrano-solid-no-transparency: rgba(0, 0, 0, 1);
|
|
30
|
+
--border-fading-edges: linear-gradient(to right, rgba(0, 0, 0, 0), #d9d9d9 50%, rgba(0, 0, 0, 0));
|
|
31
|
+
--mat-option-selected-state-label-text-color: #fff !important;
|
|
32
|
+
--mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--cyrano-pink-shade-1, #fe3c72);
|
|
33
|
+
--mat-autocomplete-background-color: var(--cyrano-dark-color);
|
|
34
|
+
--font-family: 'Gilroy-Regular', serif !important;
|
|
35
|
+
--border-radius: 100px !important;
|
|
36
|
+
--mat-select-focused-arrow-color: var(--focus-indicator);
|
|
37
|
+
--mdc-filled-text-field-focus-active-indicator-color: var(--focus-indicator);
|
|
38
|
+
--mdc-filled-text-field-caret-color: var(--focus-indicator);
|
|
39
|
+
font-family: var(--font-family);
|
|
40
|
+
|
|
41
|
+
// error gradient
|
|
42
|
+
--primary-toaster-transparent-layer: radial-gradient(#fe3c72, #fff0 55%);
|
|
43
|
+
--primary-toaster-glow-layer: radial-gradient(#f7bdde, #fff0 55%);
|
|
44
|
+
--primary-toaster-error-background: linear-gradient(50.44deg, #784b5f 1%, #3a3541 20%);
|
|
45
|
+
--primary-toaster-error-border: linear-gradient(160.44deg, #ce769e 1%, #6d3c51 20%, #736980 50%, #332e39 80%);
|
|
46
|
+
// success gradient
|
|
47
|
+
--primary-toaster-success-background: linear-gradient(94.44deg, #509462 1%, #3a3541 20%);
|
|
48
|
+
--primary-toaster-success-border: linear-gradient(160.44deg, #80d59d 1%, #478857 20%, #736980 50%, #332e39 80%);
|
|
49
|
+
// warning gradient
|
|
50
|
+
--primary-toaster-warning-background: linear-gradient(94.44deg, #8e9153 1%, #3a3541 20%);
|
|
51
|
+
--primary-toaster-warning-border: linear-gradient(160.44deg, #ddde8c 1%, #898d4f 20%, #736980 50%, #332e39 80%);
|
|
52
|
+
// info gradient
|
|
53
|
+
--primary-toaster-info-background: linear-gradient(94.44deg, #574a91 1%, #3a3541 20%);
|
|
54
|
+
--primary-toaster-info-border: linear-gradient(160.44deg, #8a75da 1%, #574e96 20%, #736980 50%, #332e39 80%);
|
|
55
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
/* Text styles */
|
|
2
|
+
.f-calistoga {
|
|
3
|
+
font-family: 'Calistoga', serif;
|
|
4
|
+
font-style: normal;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.f-gilroy-medium {
|
|
8
|
+
font-family: 'Gilroy-Medium', serif;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.f-gilroy-semibold {
|
|
12
|
+
font-family: 'Gilroy-SemiBold', serif;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.f-gilroy-regular {
|
|
16
|
+
font-family: 'Gilroy-Regular', serif;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* font sizes */
|
|
20
|
+
.f-size-34 {
|
|
21
|
+
font-size: 2.125rem;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.f-3xl {
|
|
25
|
+
font-size: 28px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.f-2xl {
|
|
29
|
+
font-size: 24px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.f-xl {
|
|
33
|
+
font-size: 18px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.f-lg {
|
|
37
|
+
font-size: 16px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.f-md {
|
|
41
|
+
font-size: 14px;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.f-sm {
|
|
45
|
+
font-size: 12px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.f-xs {
|
|
49
|
+
font-size: 10px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* colors */
|
|
53
|
+
.f-white {
|
|
54
|
+
color: var(--ion-text-color);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.f-dark {
|
|
58
|
+
color: var(--ion-text-color-secondary);
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.f-gray {
|
|
62
|
+
color: var(--ion-text-color);
|
|
63
|
+
opacity: 0.6;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.f-light-gray {
|
|
67
|
+
color: var(--ion-text-color);
|
|
68
|
+
opacity: 0.7;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.f-accent {
|
|
72
|
+
color: var(--text-highlight-color);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
/* Font heights */
|
|
76
|
+
.h-160 {
|
|
77
|
+
line-height: 160%;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.h-100 {
|
|
81
|
+
line-height: 100%;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.h-110 {
|
|
85
|
+
line-height: 110%;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.h-150 {
|
|
89
|
+
line-height: 150%;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.h-180 {
|
|
93
|
+
line-height: 180%;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/* font weights */
|
|
97
|
+
.f-w-400 {
|
|
98
|
+
font-weight: 400;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.f-w-500 {
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.f-w-600 {
|
|
106
|
+
font-weight: 600;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.f-w-700 {
|
|
110
|
+
font-weight: 700;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
h1,
|
|
114
|
+
h2,
|
|
115
|
+
h3,
|
|
116
|
+
h5,
|
|
117
|
+
h5,
|
|
118
|
+
h6,
|
|
119
|
+
p {
|
|
120
|
+
margin: 0;
|
|
121
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
.user-menu-overlay + .cdk-overlay-connected-position-bounding-box {
|
|
2
|
+
.mat-mdc-menu-panel.lib-btn-menu-panel .mat-mdc-menu-content:not(:empty) {
|
|
3
|
+
padding-top: 8px !important;
|
|
4
|
+
padding-bottom: 8px !important;
|
|
5
|
+
min-width: 280px !important;
|
|
6
|
+
}
|
|
7
|
+
.mat-mdc-menu-panel button.mat-mdc-menu-item {
|
|
8
|
+
height: auto !important;
|
|
9
|
+
}
|
|
10
|
+
.mat-mdc-menu-panel.lib-btn-menu-panel {
|
|
11
|
+
.user-menu-item {
|
|
12
|
+
min-height: 2.08rem !important;
|
|
13
|
+
--mat-menu-item-label-text-size: 1rem;
|
|
14
|
+
--lib-menu--button-padding: 3px 2px 0px 4px;
|
|
15
|
+
.basic-user-menu-template {
|
|
16
|
+
display: flex;
|
|
17
|
+
flex-direction: column;
|
|
18
|
+
.body-template {
|
|
19
|
+
display: flex;
|
|
20
|
+
align-items: center;
|
|
21
|
+
gap: 9px;
|
|
22
|
+
padding-right: 18px;
|
|
23
|
+
span {
|
|
24
|
+
color: #fe3c72;
|
|
25
|
+
font-weight: bold;
|
|
26
|
+
}
|
|
27
|
+
.notifications-icon {
|
|
28
|
+
position: relative;
|
|
29
|
+
.notification-alert {
|
|
30
|
+
position: absolute;
|
|
31
|
+
top: 4px;
|
|
32
|
+
right: -1px;
|
|
33
|
+
width: 6px;
|
|
34
|
+
height: 6px;
|
|
35
|
+
border: 0.4px solid rgba(255, 255, 255, 0.2);
|
|
36
|
+
border-radius: 50%;
|
|
37
|
+
background: #fe3c72;
|
|
38
|
+
box-shadow: 0 0 3px 1px #e15561;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
.notifications-container {
|
|
43
|
+
overflow-y: scroll;
|
|
44
|
+
max-height: 8px;
|
|
45
|
+
opacity: 1;
|
|
46
|
+
transition: all 500ms ease;
|
|
47
|
+
direction: ltr !important;
|
|
48
|
+
&::-webkit-scrollbar-track {
|
|
49
|
+
height: 90% !important;
|
|
50
|
+
background: transparent !important;
|
|
51
|
+
}
|
|
52
|
+
&::-webkit-scrollbar-thumb {
|
|
53
|
+
background-color: transparent;
|
|
54
|
+
border: none;
|
|
55
|
+
}
|
|
56
|
+
.more-notifications {
|
|
57
|
+
width: 100%;
|
|
58
|
+
background: rgba(0, 0, 0, 0.203);
|
|
59
|
+
border-radius: 10px;
|
|
60
|
+
display: flex;
|
|
61
|
+
justify-content: center;
|
|
62
|
+
align-items: center;
|
|
63
|
+
height: 20px;
|
|
64
|
+
font-size: 8px;
|
|
65
|
+
margin-top: 8px;
|
|
66
|
+
}
|
|
67
|
+
lib-notifications-list {
|
|
68
|
+
display: flex;
|
|
69
|
+
width: 100%;
|
|
70
|
+
}
|
|
71
|
+
.hideNotificationsLoader {
|
|
72
|
+
opacity: 0;
|
|
73
|
+
height: 0px !important;
|
|
74
|
+
overflow: auto !important;
|
|
75
|
+
}
|
|
76
|
+
.showNotificationsLoader {
|
|
77
|
+
opacity: 1;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
.notificationsOpened {
|
|
81
|
+
max-height: min(300px, 45vh);
|
|
82
|
+
-webkit-transition: all 1s ease !important;
|
|
83
|
+
-moz-transition: all 1s ease !important;
|
|
84
|
+
-o-transition: all 1s ease !important;
|
|
85
|
+
transition: all 1s ease !important;
|
|
86
|
+
&::-webkit-scrollbar-thumb {
|
|
87
|
+
background-color: inherit;
|
|
88
|
+
border: inherit;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.notificationsBase {
|
|
93
|
+
overflow-y: scroll;
|
|
94
|
+
opacity: 0;
|
|
95
|
+
&::-webkit-scrollbar-thumb {
|
|
96
|
+
background-color: transparent;
|
|
97
|
+
border: none;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.moreNotifications {
|
|
102
|
+
overflow-y: scroll;
|
|
103
|
+
&::-webkit-scrollbar-thumb {
|
|
104
|
+
background-color: #fe3b72 !important;
|
|
105
|
+
border: 3px solid black !important;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.user-menu-item + .lib-btn-menu-panel-separator {
|
|
113
|
+
background: linear-gradient(90deg, rgba(1, 206, 194, 0) 0%, rgba(247, 245, 221, 0.2) 50%, rgba(9, 217, 248, 0) 100%) !important;
|
|
114
|
+
max-width: 132px;
|
|
115
|
+
margin-left: auto;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
#user-menu-btn {
|
|
120
|
+
lib-base-btn {
|
|
121
|
+
.lib-button-component {
|
|
122
|
+
> button {
|
|
123
|
+
width: 35px !important;
|
|
124
|
+
height: 35px !important;
|
|
125
|
+
border: none !important;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|