@naniteninja/dashboard-components-lib 1.0.3 → 1.0.5
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 +120 -0
- package/esm2022/lib/components/calendar/agenda/agenda.module.mjs +23 -0
- package/esm2022/lib/components/calendar/agenda/enums/agenda-item-type.enum.mjs +6 -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/agenda/types/agenda-item.type.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 +310 -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 +173 -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/ads.interface.mjs +2 -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.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 +26 -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 +123 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs +205 -178
- package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -1
- package/index.d.ts +3 -1669
- 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 +27 -0
- package/lib/components/calendar/agenda/agenda.module.d.ts +12 -0
- package/lib/components/calendar/agenda/enums/agenda-item-type.enum.d.ts +4 -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/agenda/types/agenda-item.type.d.ts +7 -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 +75 -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/ads.interface.d.ts +14 -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/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.5.tgz +0 -0
- package/package.json +29 -25
- package/public-api.d.ts +122 -0
- package/src/lib/shared-styles/common/theme.scss +3 -3
package/index.d.ts
CHANGED
|
@@ -1,1671 +1,5 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { OnInit, AfterViewInit, ElementRef, EventEmitter, ChangeDetectorRef, TemplateRef, PipeTransform, ModuleWithProviders, OnDestroy, OnChanges, SimpleChanges, InjectionToken } from '@angular/core';
|
|
3
|
-
import * as i6 from '@naniteninja/ionic-lib';
|
|
4
|
-
import { LibMenuItem, PopupModalService, LocationModel, BaseComponent, SelectOption, ImageModel, FormFieldType as FormFieldType$1, EmojiPickerConfig, InputFieldComponent, Profile, GridColumn } from '@naniteninja/ionic-lib';
|
|
5
|
-
import { Observable, BehaviorSubject } from 'rxjs';
|
|
6
|
-
import * as i2 from '@angular/common';
|
|
7
|
-
import { CurrencyPipe } from '@angular/common';
|
|
8
|
-
import * as i3 from '@ionic/angular';
|
|
9
|
-
import * as i5 from '@ngx-translate/core';
|
|
10
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
11
|
-
import * as i5$1 from '@angular/forms';
|
|
12
|
-
import { FormControl, FormGroup, FormBuilder } from '@angular/forms';
|
|
13
|
-
import { Frequency } from 'rrule/dist/esm/types';
|
|
14
|
-
import { JSONSchema } from '@ngx-pwa/local-storage';
|
|
15
|
-
import * as i4 from '@angular/material/input';
|
|
16
|
-
import * as i5$2 from '@angular/material/select';
|
|
17
|
-
import * as i6$1 from '@angular/material/form-field';
|
|
18
|
-
import * as i10 from 'ngx-infinite-scroll';
|
|
19
|
-
import * as d3 from 'd3';
|
|
20
|
-
import { SwiperOptions } from 'swiper/types';
|
|
21
|
-
import moment from 'moment';
|
|
22
|
-
|
|
23
|
-
interface IAutoDelegationPreferences {
|
|
24
|
-
bust: {
|
|
25
|
-
value: number;
|
|
26
|
-
moe: number;
|
|
27
|
-
};
|
|
28
|
-
waist: {
|
|
29
|
-
value: number;
|
|
30
|
-
moe: number;
|
|
31
|
-
};
|
|
32
|
-
height: {
|
|
33
|
-
value: number;
|
|
34
|
-
moe: number;
|
|
35
|
-
};
|
|
36
|
-
celibacy: number;
|
|
37
|
-
cooperation: number;
|
|
38
|
-
intelligence: number;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
interface IAutoDelegationData {
|
|
42
|
-
imgSrc: string;
|
|
43
|
-
title?: string;
|
|
44
|
-
name: string;
|
|
45
|
-
location: string;
|
|
46
|
-
menu: string[];
|
|
47
|
-
meetings?: number;
|
|
48
|
-
days?: string;
|
|
49
|
-
price: number;
|
|
50
|
-
marketPrice: number;
|
|
51
|
-
hand?: string;
|
|
52
|
-
mode?: string;
|
|
53
|
-
score?: number;
|
|
54
|
-
preferred?: number;
|
|
55
|
-
lifeTimeFee?: string;
|
|
56
|
-
lifeTimeMeetups?: number;
|
|
57
|
-
joinDate?: string;
|
|
58
|
-
preferences?: IAutoDelegationPreferences;
|
|
59
|
-
preferencesProfile?: string;
|
|
60
|
-
weight?: string;
|
|
61
|
-
heightpref?: string;
|
|
62
|
-
profile?: string[];
|
|
63
|
-
communicationStyle?: string;
|
|
64
|
-
goal?: string;
|
|
65
|
-
job?: string;
|
|
66
|
-
passions?: string[];
|
|
67
|
-
dates?: number;
|
|
68
|
-
msgs?: number;
|
|
69
|
-
planOptions?: string[];
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
declare enum AutoDelegationEventTypes {
|
|
73
|
-
Click = "click",
|
|
74
|
-
Countdown = "countdown"
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
declare enum AutoDelegationEventValue {
|
|
78
|
-
CountdownCompleted = "countdown-completed",
|
|
79
|
-
RequestRejected = "request-rejected",
|
|
80
|
-
RequestAcceped = "request-accepted"
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
interface IAutoDelegationEvent {
|
|
84
|
-
type: AutoDelegationEventTypes;
|
|
85
|
-
value: AutoDelegationEventValue;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
interface IAutoDelegationModalData {
|
|
89
|
-
countdown: number;
|
|
90
|
-
expandedBaseCard?: boolean;
|
|
91
|
-
data: IAutoDelegationData;
|
|
92
|
-
menuItems: LibMenuItem[];
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
declare class LibAutoDelegationModalComponent implements OnInit, AfterViewInit {
|
|
96
|
-
private changeDetectorRef;
|
|
97
|
-
private popupModalService;
|
|
98
|
-
modalData?: IAutoDelegationModalData;
|
|
99
|
-
childModalElementRef: ElementRef<HTMLDivElement>;
|
|
100
|
-
countdown: number;
|
|
101
|
-
expandedBaseCard?: boolean;
|
|
102
|
-
data: IAutoDelegationData;
|
|
103
|
-
menuItems: LibMenuItem[];
|
|
104
|
-
event: EventEmitter<IAutoDelegationEvent>;
|
|
105
|
-
totalStrokeLength: number;
|
|
106
|
-
currentCountdownAt: number;
|
|
107
|
-
activeCountdownPathId: string;
|
|
108
|
-
strokeDashOffset: number;
|
|
109
|
-
componentData: IAutoDelegationModalData | null;
|
|
110
|
-
constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IAutoDelegationModalData);
|
|
111
|
-
ngOnInit(): void;
|
|
112
|
-
ngAfterViewInit(): void;
|
|
113
|
-
reject(): void;
|
|
114
|
-
accept(): void;
|
|
115
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibAutoDelegationModalComponent, [null, null, { optional: true; }]>;
|
|
116
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibAutoDelegationModalComponent, "lib-auto-delegation-modal", never, { "countdown": { "alias": "countdown"; "required": false; }; "expandedBaseCard": { "alias": "expandedBaseCard"; "required": false; }; "data": { "alias": "data"; "required": false; }; "menuItems": { "alias": "menuItems"; "required": false; }; }, { "event": "event"; }, never, never, true, never>;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
interface IAgendaEvent {
|
|
120
|
-
date: Date;
|
|
121
|
-
startTime?: string;
|
|
122
|
-
endTime?: string;
|
|
123
|
-
user?: {
|
|
124
|
-
name: string;
|
|
125
|
-
profilePic?: string;
|
|
126
|
-
};
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
interface IAgendaDay extends IAgendaEvent {
|
|
130
|
-
name: string;
|
|
131
|
-
index: number;
|
|
132
|
-
dayNumber: number;
|
|
133
|
-
empty?: boolean;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
declare enum Direction {
|
|
137
|
-
horizontal = "horizontal",
|
|
138
|
-
vertical = "vertical"
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
declare class AgendaComponent implements OnInit {
|
|
142
|
-
adsTemplate?: TemplateRef<HTMLElement>;
|
|
143
|
-
loading$: Observable<boolean>;
|
|
144
|
-
startDate: Date;
|
|
145
|
-
endDate: Date;
|
|
146
|
-
set events(events: IAgendaEvent[]);
|
|
147
|
-
numberOfEvents: number;
|
|
148
|
-
days: IAgendaDay[];
|
|
149
|
-
direction: Direction;
|
|
150
|
-
private _events;
|
|
151
|
-
ngOnInit(): void;
|
|
152
|
-
private buildAgendaDays;
|
|
153
|
-
private getSuccessiveEmptyDays;
|
|
154
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaComponent, never>;
|
|
155
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaComponent, "lib-agenda", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "events": { "alias": "events"; "required": false; }; }, {}, never, never, false, never>;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
declare class AgendaDayCardComponent implements OnInit {
|
|
159
|
-
adDay: boolean;
|
|
160
|
-
day: IAgendaDay;
|
|
161
|
-
fullName: string;
|
|
162
|
-
ngOnInit(): void;
|
|
163
|
-
private sanitizeHtml;
|
|
164
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaDayCardComponent, never>;
|
|
165
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaDayCardComponent, "lib-agenda-day-card", never, { "adDay": { "alias": "adDay"; "required": false; }; "day": { "alias": "day"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
declare class LibAgendaModule {
|
|
169
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibAgendaModule, never>;
|
|
170
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LibAgendaModule, [typeof AgendaComponent, typeof AgendaDayCardComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i5.TranslateModule, typeof i6.DirectiveModule, typeof i6.AvatarComponent], [typeof AgendaComponent]>;
|
|
171
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LibAgendaModule>;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
declare class FallbackTranslatePipe implements PipeTransform {
|
|
175
|
-
private translate;
|
|
176
|
-
constructor(translate: TranslateService);
|
|
177
|
-
transform(key: string, fallback: string): string;
|
|
178
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FallbackTranslatePipe, never>;
|
|
179
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FallbackTranslatePipe, "fallbackTranslate", true>;
|
|
180
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FallbackTranslatePipe>;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
declare enum EditRecurringEventOptions {
|
|
184
|
-
CURRENT = "CURRENT",
|
|
185
|
-
FOLLOWING = "FOLLOWING",
|
|
186
|
-
ALL = "ALL"
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
declare enum CalendarAccountEnum {
|
|
190
|
-
GOOGLE = "Google",
|
|
191
|
-
MICROSOFT = "Microsoft"
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
interface ICalendarAccountTheme {
|
|
195
|
-
backgroundColor?: string;
|
|
196
|
-
foregroundColor?: string;
|
|
197
|
-
borderColor?: string;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
interface ICalendarAccount {
|
|
201
|
-
_id?: string;
|
|
202
|
-
createdAt?: string;
|
|
203
|
-
title?: string;
|
|
204
|
-
userId?: string;
|
|
205
|
-
type?: CalendarAccountEnum;
|
|
206
|
-
email?: string;
|
|
207
|
-
active?: boolean;
|
|
208
|
-
token?: string;
|
|
209
|
-
selected?: boolean;
|
|
210
|
-
theme?: ICalendarAccountTheme;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
declare enum EventTypes {
|
|
214
|
-
DATE = "Date",
|
|
215
|
-
GOOGLE = "Google",
|
|
216
|
-
MICROSOFT = "Microsoft",
|
|
217
|
-
SYSTEM = "System",// system created events
|
|
218
|
-
USER = "User",// user created events
|
|
219
|
-
ITINERARY = "Itinerary"
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
declare enum RecurringTypes {
|
|
223
|
-
DAILY = "DAILY",
|
|
224
|
-
WEEKLY = "WEEKLY",
|
|
225
|
-
MONTHLY = "MONTHLY",
|
|
226
|
-
ANNUALLY = "ANNUALLY"
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
interface IEventForm {
|
|
230
|
-
_id: FormControl<string>;
|
|
231
|
-
accountId: FormControl<string>;
|
|
232
|
-
type: FormControl<EventTypes>;
|
|
233
|
-
email: FormControl<string>;
|
|
234
|
-
title: FormControl<string>;
|
|
235
|
-
allDay: FormControl<boolean>;
|
|
236
|
-
startDate: FormControl<Date>;
|
|
237
|
-
startTime: FormControl<Date>;
|
|
238
|
-
endDate: FormControl<Date>;
|
|
239
|
-
endTime: FormControl<Date>;
|
|
240
|
-
note: FormControl<string>;
|
|
241
|
-
location: FormControl<LocationModel>;
|
|
242
|
-
address: FormControl<string>;
|
|
243
|
-
recurringPattern: FormGroup<{
|
|
244
|
-
type: FormControl<RecurringTypes>;
|
|
245
|
-
}>;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
interface IRecurringEventException {
|
|
249
|
-
title?: string;
|
|
250
|
-
allDay?: boolean;
|
|
251
|
-
note?: string;
|
|
252
|
-
location?: LocationModel;
|
|
253
|
-
startDate?: Date;
|
|
254
|
-
endDate?: Date;
|
|
255
|
-
startTime?: Date;
|
|
256
|
-
endTime?: Date;
|
|
257
|
-
recurringStartDate?: Date;
|
|
258
|
-
recurringEndDate?: Date;
|
|
259
|
-
recurringInstanceNo?: number;
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
interface IRecurringPattern {
|
|
263
|
-
type?: RecurringTypes;
|
|
264
|
-
exceptions?: IRecurringEventException[];
|
|
265
|
-
deletions?: IRecurringEventException[];
|
|
266
|
-
updatedEvent?: IRecurringEventException;
|
|
267
|
-
recurringEndDate?: Date;
|
|
268
|
-
daysOfWeek?: string[];
|
|
269
|
-
interval?: number;
|
|
270
|
-
range?: {
|
|
271
|
-
type?: string;
|
|
272
|
-
startDate?: string;
|
|
273
|
-
endDate?: string;
|
|
274
|
-
};
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
interface IEvent {
|
|
278
|
-
_id?: string;
|
|
279
|
-
title?: string;
|
|
280
|
-
allDay?: boolean;
|
|
281
|
-
startDate: Date;
|
|
282
|
-
startTime: Date;
|
|
283
|
-
endDate?: Date;
|
|
284
|
-
recurringEndDate?: Date;
|
|
285
|
-
recurringStartDate?: Date;
|
|
286
|
-
endTime?: Date;
|
|
287
|
-
note?: string;
|
|
288
|
-
type?: EventTypes;
|
|
289
|
-
email?: string;
|
|
290
|
-
accountId?: string;
|
|
291
|
-
timeZone?: string;
|
|
292
|
-
location?: LocationModel;
|
|
293
|
-
recurring?: boolean;
|
|
294
|
-
exception?: boolean;
|
|
295
|
-
recurringPattern?: IRecurringPattern;
|
|
296
|
-
link?: string;
|
|
297
|
-
recurringEventId?: string;
|
|
298
|
-
recurringParentEventId?: string;
|
|
299
|
-
updateAll?: boolean;
|
|
300
|
-
updateAllFollowing?: boolean;
|
|
301
|
-
etag?: string;
|
|
302
|
-
recurringInstanceNo?: number;
|
|
303
|
-
zIndex?: number;
|
|
304
|
-
userId?: string;
|
|
305
|
-
address?: string;
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
interface IEventFormOutput {
|
|
309
|
-
initialFormValue?: IEvent;
|
|
310
|
-
formValue?: IEvent;
|
|
311
|
-
event?: IEvent;
|
|
312
|
-
draggedEvent?: IEvent;
|
|
313
|
-
selectedRecurringOption?: EditRecurringEventOptions;
|
|
314
|
-
recurringTypeChanged?: boolean;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
interface IRecurringEvent {
|
|
318
|
-
title: string;
|
|
319
|
-
name?: string;
|
|
320
|
-
translateParams?: {
|
|
321
|
-
day: string;
|
|
322
|
-
};
|
|
323
|
-
subTitle?: string;
|
|
324
|
-
type?: RecurringTypes;
|
|
325
|
-
rrule?: {
|
|
326
|
-
freq: any;
|
|
327
|
-
bymonth?: number;
|
|
328
|
-
bymonthday?: number;
|
|
329
|
-
byweekday?: any;
|
|
330
|
-
};
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
interface IEventTime {
|
|
334
|
-
startTime: Date;
|
|
335
|
-
endTime: Date;
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
declare class CalendarUtilsService {
|
|
339
|
-
private locale;
|
|
340
|
-
constructor(locale: string);
|
|
341
|
-
filterCalendarsEvents<T>(selectedCalendars: ICalendarAccount[], calendarEvents: T[]): T[];
|
|
342
|
-
validCalendarEvent(event: IEvent): boolean;
|
|
343
|
-
formatEventTime(start: Date, end: Date): {
|
|
344
|
-
startTime: string;
|
|
345
|
-
endTime: string;
|
|
346
|
-
};
|
|
347
|
-
isProviderEvent(event: Partial<IEvent>): boolean;
|
|
348
|
-
isRecurringEvent(event: Partial<IEvent>): boolean;
|
|
349
|
-
isEqualDates(startDate: string | Date, enDate: string | Date): boolean;
|
|
350
|
-
isBeforeDate(startDate: string | Date, enDate: string | Date): boolean;
|
|
351
|
-
isSameWeek(startDate: string | Date, enDate: string | Date): boolean;
|
|
352
|
-
getUpdatedRecurringException(event: Partial<IEvent>): IRecurringEventException;
|
|
353
|
-
getExceptionEvent(event: Partial<IEvent>, exceptions: IRecurringEventException[]): IRecurringEventException;
|
|
354
|
-
isValidRecurringDate(event: IEvent, recurringDate: Date): boolean;
|
|
355
|
-
getDeletedRecurringEvent(event: IEvent, recurringDate: Date): IRecurringEventException;
|
|
356
|
-
generateRecurringDates(dtstart: Date, until: Date, freq: Frequency, interval?: number): Date[];
|
|
357
|
-
isValidRecurringException(event: IEvent, exceptionEvent: IRecurringEventException): boolean;
|
|
358
|
-
sortEvents<T>(calendarEvents: T[]): void;
|
|
359
|
-
applyEventsIndex(): void;
|
|
360
|
-
setEventTime(event: Partial<IEvent>): {
|
|
361
|
-
start: Date;
|
|
362
|
-
end: Date;
|
|
363
|
-
};
|
|
364
|
-
removeHtmlTags(html: string): string;
|
|
365
|
-
prepareEventDates(eventData: IEvent): void;
|
|
366
|
-
getEventTimes(eventData: Partial<IEvent>, recurringException?: IRecurringEventException, newEvent?: boolean): IEventTime;
|
|
367
|
-
buildUpdatedEvent(event: IEvent, formValue: IEvent): IEvent;
|
|
368
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarUtilsService, never>;
|
|
369
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<CalendarUtilsService>;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
declare class LibEventFormComponent extends BaseComponent {
|
|
373
|
-
private cdr;
|
|
374
|
-
fb: FormBuilder;
|
|
375
|
-
private calendarUtilService;
|
|
376
|
-
private fallbackTranslatePipe;
|
|
377
|
-
calendars: ICalendarAccount[];
|
|
378
|
-
get event(): IEvent;
|
|
379
|
-
set event(e: IEvent);
|
|
380
|
-
get draggedEvent(): IEvent;
|
|
381
|
-
set draggedEvent(e: IEvent);
|
|
382
|
-
updateRecurringEvent: EventEmitter<IEventFormOutput>;
|
|
383
|
-
updateDraggedEvent: EventEmitter<IEventFormOutput>;
|
|
384
|
-
delete: EventEmitter<IEventFormOutput>;
|
|
385
|
-
closeForm: EventEmitter<void>;
|
|
386
|
-
submitForm: EventEmitter<IEventFormOutput>;
|
|
387
|
-
editMode: boolean;
|
|
388
|
-
editOptionsCtrl: FormControl<EditRecurringEventOptions>;
|
|
389
|
-
modalTitle: string;
|
|
390
|
-
recurringTypeChanged: boolean;
|
|
391
|
-
cancelButtonTitle: string;
|
|
392
|
-
submitButtonTitle: string;
|
|
393
|
-
secondaryButtonTitle: string;
|
|
394
|
-
openModal: boolean;
|
|
395
|
-
showConfirm: boolean;
|
|
396
|
-
openRecurringOptions: boolean;
|
|
397
|
-
recurringOptions: IRecurringEvent[];
|
|
398
|
-
eventStart: Date;
|
|
399
|
-
form: FormGroup<IEventForm>;
|
|
400
|
-
recurringException: IRecurringEventException;
|
|
401
|
-
private initialFormValue;
|
|
402
|
-
private eventTime;
|
|
403
|
-
private _event;
|
|
404
|
-
private _draggedEvent;
|
|
405
|
-
private deleteConfirmed;
|
|
406
|
-
private updatedEvent;
|
|
407
|
-
constructor(cdr: ChangeDetectorRef, fb: FormBuilder, calendarUtilService: CalendarUtilsService, fallbackTranslatePipe: FallbackTranslatePipe);
|
|
408
|
-
onDeleteConfirm(): void;
|
|
409
|
-
onSubmitModal(): void;
|
|
410
|
-
onModalSecondaryButtonClick(): void;
|
|
411
|
-
saveEvent(): void;
|
|
412
|
-
onLocationChange(event: LocationModel): void;
|
|
413
|
-
resetModal(): void;
|
|
414
|
-
private initializeEventForm;
|
|
415
|
-
private buildForm;
|
|
416
|
-
private watchFormFields;
|
|
417
|
-
private handleAllDayEvents;
|
|
418
|
-
private updateEvent;
|
|
419
|
-
private allowSubmission;
|
|
420
|
-
private submitFormEvent;
|
|
421
|
-
private onEventChange;
|
|
422
|
-
private onDragEvent;
|
|
423
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibEventFormComponent, never>;
|
|
424
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibEventFormComponent, "lib-event-form", never, { "calendars": { "alias": "calendars"; "required": false; }; "event": { "alias": "event"; "required": false; }; "draggedEvent": { "alias": "draggedEvent"; "required": false; }; }, { "updateRecurringEvent": "updateRecurringEvent"; "updateDraggedEvent": "updateDraggedEvent"; "delete": "delete"; "closeForm": "closeForm"; "submitForm": "submitForm"; }, never, ["*"], false, never>;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
declare class LibEventInfoComponent implements OnInit {
|
|
428
|
-
private fallbackTranslatePipe;
|
|
429
|
-
private calendarUtilService;
|
|
430
|
-
event: IEvent;
|
|
431
|
-
calendars: ICalendarAccount[];
|
|
432
|
-
calendarAccount: ICalendarAccount;
|
|
433
|
-
recurringException: IRecurringEventException;
|
|
434
|
-
updatedRecurringException: IRecurringEventException;
|
|
435
|
-
address: string;
|
|
436
|
-
title: string;
|
|
437
|
-
note: string;
|
|
438
|
-
constructor(fallbackTranslatePipe: FallbackTranslatePipe, calendarUtilService: CalendarUtilsService);
|
|
439
|
-
ngOnInit(): void;
|
|
440
|
-
private initEventInfo;
|
|
441
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibEventInfoComponent, never>;
|
|
442
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibEventInfoComponent, "lib-event-info", never, { "event": { "alias": "event"; "required": false; }; "calendars": { "alias": "calendars"; "required": false; }; }, {}, never, never, true, never>;
|
|
443
|
-
}
|
|
444
|
-
|
|
445
|
-
declare enum FormFieldType {
|
|
446
|
-
date = "date",
|
|
447
|
-
text = "text",
|
|
448
|
-
textarea = "textarea",
|
|
449
|
-
typeahead = "typeahead",
|
|
450
|
-
multiselect = "multiselect",
|
|
451
|
-
select = "select",
|
|
452
|
-
checkbox = "checkbox",
|
|
453
|
-
toggle = "toggle",
|
|
454
|
-
radio = "radio",
|
|
455
|
-
textlist = "textlist",
|
|
456
|
-
number = "number",
|
|
457
|
-
message = "message",
|
|
458
|
-
time = "time",
|
|
459
|
-
multifield = "multifield",
|
|
460
|
-
action = "action",
|
|
461
|
-
currency = "currency",
|
|
462
|
-
banner = "banner",
|
|
463
|
-
percentage = "percentage",
|
|
464
|
-
multiselectdropdown = "multiselectdropdown",
|
|
465
|
-
hyperlink = "hyperlink",
|
|
466
|
-
injectable = "injectable",
|
|
467
|
-
datetime = "datetime",
|
|
468
|
-
rating = "rating",
|
|
469
|
-
incrementer = "incrementer",
|
|
470
|
-
range = "range",
|
|
471
|
-
password = "password"
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
declare class LibEditRecurringEventComponent implements OnInit {
|
|
475
|
-
private fallbackTranslatePipe;
|
|
476
|
-
excludeCurrentInstance: boolean;
|
|
477
|
-
editOptionsCtrl: FormControl<EditRecurringEventOptions>;
|
|
478
|
-
options: SelectOption<EditRecurringEventOptions>[];
|
|
479
|
-
radioFieldType: FormFieldType;
|
|
480
|
-
constructor(fallbackTranslatePipe: FallbackTranslatePipe);
|
|
481
|
-
ngOnInit(): void;
|
|
482
|
-
private initRecurringOptions;
|
|
483
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibEditRecurringEventComponent, never>;
|
|
484
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibEditRecurringEventComponent, "lib-edit-recurring-event", never, { "excludeCurrentInstance": { "alias": "excludeCurrentInstance"; "required": false; }; "editOptionsCtrl": { "alias": "editOptionsCtrl"; "required": false; }; }, {}, never, never, true, never>;
|
|
485
|
-
}
|
|
486
|
-
|
|
487
|
-
declare class LibEventFormModule {
|
|
488
|
-
static forRoot(config: {
|
|
489
|
-
googleMapsKey: string;
|
|
490
|
-
googleMapsURL: string;
|
|
491
|
-
}): ModuleWithProviders<LibEventFormModule>;
|
|
492
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibEventFormModule, never>;
|
|
493
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LibEventFormModule, [typeof LibEventFormComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i5.TranslateModule, typeof i5$1.FormsModule, typeof i5$1.ReactiveFormsModule, typeof i6.DashedCheckboxModule, typeof i6.DirectiveModule, typeof i6.FormFieldModule, typeof i6.InputDateFieldModule, typeof i6.InputFieldModule, typeof i6.InputFieldSelectModule, typeof i6.InputTimeFieldModule, typeof i6.LibModalModule, typeof i6.LibErrorMessageComponent, typeof FallbackTranslatePipe, typeof LibEventInfoComponent, typeof LibEditRecurringEventComponent, typeof i6.BaseComponent], [typeof LibEventFormComponent]>;
|
|
494
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LibEventFormModule>;
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
declare enum CalendarAccountIconsEnum {
|
|
498
|
-
Google = "googleCalender",
|
|
499
|
-
Microsoft = "microsoft"
|
|
500
|
-
}
|
|
501
|
-
|
|
502
|
-
declare const recurringOptions: IRecurringEvent[];
|
|
503
|
-
|
|
504
|
-
declare enum ScheduleDateStatus {
|
|
505
|
-
Suggested = "suggested",
|
|
506
|
-
Canceled = "canceled",
|
|
507
|
-
Pending = "pending"
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
interface IDashboardMatchRequest {
|
|
511
|
-
_id: string;
|
|
512
|
-
matcherId: string;
|
|
513
|
-
clientId: string;
|
|
514
|
-
clientName: string;
|
|
515
|
-
clientImages: string;
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
interface ISchedulerEventSuggestion {
|
|
519
|
-
_id?: string;
|
|
520
|
-
title: string;
|
|
521
|
-
checked?: boolean;
|
|
522
|
-
canceled?: boolean;
|
|
523
|
-
suggestionId?: string;
|
|
524
|
-
prospect?: string;
|
|
525
|
-
status?: {
|
|
526
|
-
client: ScheduleDateStatus;
|
|
527
|
-
matcher: ScheduleDateStatus;
|
|
528
|
-
};
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
interface ISchedulerEvent {
|
|
532
|
-
_id?: string;
|
|
533
|
-
timeZone?: string;
|
|
534
|
-
start: Date;
|
|
535
|
-
day: string;
|
|
536
|
-
end: Date;
|
|
537
|
-
hours: string;
|
|
538
|
-
allDay?: boolean;
|
|
539
|
-
blocked?: boolean;
|
|
540
|
-
booked?: boolean;
|
|
541
|
-
expanded?: boolean;
|
|
542
|
-
suggestions?: ISchedulerEventSuggestion[];
|
|
543
|
-
index?: number;
|
|
544
|
-
startTime?: string;
|
|
545
|
-
endTime?: string;
|
|
546
|
-
status?: {
|
|
547
|
-
client: ScheduleDateStatus;
|
|
548
|
-
matcher: ScheduleDateStatus;
|
|
549
|
-
};
|
|
550
|
-
images?: ImageModel[];
|
|
551
|
-
matchRequest?: IDashboardMatchRequest;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
interface ISchedulerAction {
|
|
555
|
-
event: ISchedulerEvent;
|
|
556
|
-
index: number;
|
|
557
|
-
suggestion?: ISchedulerEventSuggestion;
|
|
558
|
-
suggestionIndex?: number;
|
|
559
|
-
matchRequest?: IDashboardMatchRequest;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
interface ISchedulerEventSlots {
|
|
563
|
-
day: string;
|
|
564
|
-
date: Date;
|
|
565
|
-
events: ISchedulerEvent[];
|
|
566
|
-
}
|
|
567
|
-
|
|
568
|
-
interface ISchedulerEventDay {
|
|
569
|
-
day: string;
|
|
570
|
-
events: ISchedulerEvent[];
|
|
571
|
-
}
|
|
572
|
-
|
|
573
|
-
declare class LibSchedulerComponent implements OnInit, OnDestroy {
|
|
574
|
-
private cdr;
|
|
575
|
-
adsTemplate?: TemplateRef<HTMLElement>;
|
|
576
|
-
loading$: Observable<boolean>;
|
|
577
|
-
emptyMessage: string;
|
|
578
|
-
displayBookedStatuses: boolean;
|
|
579
|
-
displayEmptyDays: boolean;
|
|
580
|
-
events$: Observable<ISchedulerEvent[]>;
|
|
581
|
-
startDate: Date;
|
|
582
|
-
endDate: Date;
|
|
583
|
-
default: boolean;
|
|
584
|
-
bookEvent: EventEmitter<ISchedulerAction>;
|
|
585
|
-
removeSuggestion: EventEmitter<ISchedulerAction>;
|
|
586
|
-
eventsDays: ISchedulerEventDay[];
|
|
587
|
-
suggestedCount: number;
|
|
588
|
-
bookedCount: number;
|
|
589
|
-
private componentDestroyed$;
|
|
590
|
-
private events;
|
|
591
|
-
constructor(cdr: ChangeDetectorRef);
|
|
592
|
-
ngOnInit(): void;
|
|
593
|
-
ngOnDestroy(): void;
|
|
594
|
-
toggleExpand(dayIndex: number, eventIndex: number): void;
|
|
595
|
-
acceptSuggestion(dayIndex: number, eventIndex: number, suggestionIndex: number): void;
|
|
596
|
-
cancelSuggestion(dayIndex: number, eventIndex: number, suggestionIndex: number): void;
|
|
597
|
-
updateSuggestionsCounts(): void;
|
|
598
|
-
private groupEventsByDay;
|
|
599
|
-
private buildEvents;
|
|
600
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibSchedulerComponent, never>;
|
|
601
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibSchedulerComponent, "lib-scheduler", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "loading$": { "alias": "loading$"; "required": false; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; }; "displayBookedStatuses": { "alias": "displayBookedStatuses"; "required": false; }; "displayEmptyDays": { "alias": "displayEmptyDays"; "required": false; }; "events$": { "alias": "events$"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "default": { "alias": "default"; "required": false; }; }, { "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; }, never, never, true, never>;
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
interface IChatSuggestion {
|
|
605
|
-
question: string;
|
|
606
|
-
percentage: number;
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
declare class ChatSuggestionComponent {
|
|
610
|
-
chatSuggestions: IChatSuggestion[];
|
|
611
|
-
suggestClicked?: EventEmitter<string>;
|
|
612
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChatSuggestionComponent, never>;
|
|
613
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChatSuggestionComponent, "lib-chat-suggestion", never, { "chatSuggestions": { "alias": "chatSuggestions"; "required": false; }; }, { "suggestClicked": "suggestClicked"; }, never, never, true, never>;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
interface SelectOptionWithTemplate<T> extends SelectOption<T> {
|
|
617
|
-
addOnTemplateRef?: TemplateRef<HTMLElement>;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
|
-
declare abstract class AbstractCacheService {
|
|
621
|
-
abstract saveLocalStorage(key: string, value: unknown, schema?: JSONSchema): void;
|
|
622
|
-
abstract getLocalStorage<T>(key: string): Observable<T>;
|
|
623
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractCacheService, never>;
|
|
624
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AbstractCacheService>;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
declare enum SenderTypes {
|
|
628
|
-
USER = "user",
|
|
629
|
-
OTHER = "other"
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
interface IAttachment {
|
|
633
|
-
id?: number;
|
|
634
|
-
type: 'image' | 'gif';
|
|
635
|
-
url?: string;
|
|
636
|
-
base64?: string;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
declare enum SendMessageType {
|
|
640
|
-
INMEDIATELY = "send_immediately",
|
|
641
|
-
AFTER = "send_after",
|
|
642
|
-
SPECIFIC = "specify_time"
|
|
643
|
-
}
|
|
644
|
-
|
|
645
|
-
interface ISendOptionsMessage {
|
|
646
|
-
type: SendMessageType;
|
|
647
|
-
arrivalDate?: Date;
|
|
648
|
-
}
|
|
649
|
-
|
|
650
|
-
interface IMessage {
|
|
651
|
-
_id?: string;
|
|
652
|
-
sender: SenderTypes;
|
|
653
|
-
message: string;
|
|
654
|
-
timestamp: Date;
|
|
655
|
-
attachments?: IAttachment[];
|
|
656
|
-
sendOptions?: ISendOptionsMessage;
|
|
657
|
-
}
|
|
658
|
-
|
|
659
|
-
interface IDateMessages {
|
|
660
|
-
date: Date;
|
|
661
|
-
isFirstMessage?: boolean;
|
|
662
|
-
message: IMessage;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
declare class ChatService {
|
|
666
|
-
cacheService: AbstractCacheService;
|
|
667
|
-
constructor(cacheService: AbstractCacheService);
|
|
668
|
-
setLongPressForSendImmediately(enabled: boolean): void;
|
|
669
|
-
isLongPressForSendImmediately(): Observable<boolean>;
|
|
670
|
-
transformMessages(messages: IMessage[]): IDateMessages[];
|
|
671
|
-
updateDateMessages(dateMessages: IDateMessages[]): IDateMessages[];
|
|
672
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChatService, never>;
|
|
673
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ChatService>;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
declare class LibMessageModalComponent implements OnInit {
|
|
677
|
-
private fb;
|
|
678
|
-
private popupModalService;
|
|
679
|
-
private chatService;
|
|
680
|
-
modalData?: {
|
|
681
|
-
responseTime: string;
|
|
682
|
-
};
|
|
683
|
-
toggleTemplate: TemplateRef<HTMLElement>;
|
|
684
|
-
options: SelectOptionWithTemplate<string>[];
|
|
685
|
-
messageType: FormControl<string>;
|
|
686
|
-
dateTimePicker: FormControl<Date>;
|
|
687
|
-
toggleLongPress: FormControl<boolean>;
|
|
688
|
-
type: FormFieldType$1;
|
|
689
|
-
formTime: FormGroup;
|
|
690
|
-
constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService, modalData?: {
|
|
691
|
-
responseTime: string;
|
|
692
|
-
});
|
|
693
|
-
ngOnInit(): void;
|
|
694
|
-
onSubmit(): void;
|
|
695
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibMessageModalComponent, [null, null, null, { optional: true; }]>;
|
|
696
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibMessageModalComponent, "lib-message-modal", never, {}, {}, never, never, false, never>;
|
|
697
|
-
}
|
|
698
|
-
|
|
699
|
-
declare class ChatComponent implements OnInit, AfterViewInit, OnChanges, OnDestroy {
|
|
700
|
-
default?: boolean;
|
|
701
|
-
responseTime?: string;
|
|
702
|
-
set inputValue(value: string);
|
|
703
|
-
emojiPickerConfig: EmojiPickerConfig;
|
|
704
|
-
includeGifMessage: boolean;
|
|
705
|
-
includeTime: boolean;
|
|
706
|
-
set dateMessages(value: IMessage[]);
|
|
707
|
-
maxLength: number;
|
|
708
|
-
enableGifPicker: boolean;
|
|
709
|
-
prospectJoinDate: Date;
|
|
710
|
-
sendMessage: EventEmitter<IMessage>;
|
|
711
|
-
getMessages: EventEmitter<boolean>;
|
|
712
|
-
disabled: boolean;
|
|
713
|
-
emojiPickerRef: ElementRef;
|
|
714
|
-
scrollableContainer: ElementRef;
|
|
715
|
-
chatInput: InputFieldComponent;
|
|
716
|
-
private cdr;
|
|
717
|
-
private elementRef;
|
|
718
|
-
private popupModalService;
|
|
719
|
-
private chatService;
|
|
720
|
-
private pendingMessage;
|
|
721
|
-
private renderer;
|
|
722
|
-
scrollThreshold: number;
|
|
723
|
-
messages: IDateMessages[];
|
|
724
|
-
textControl: FormControl<string>;
|
|
725
|
-
base64Image: string | null;
|
|
726
|
-
emojiVisibility: boolean;
|
|
727
|
-
gifVisibility: boolean;
|
|
728
|
-
isAtStartChat: boolean;
|
|
729
|
-
emojiPickerOpened: boolean;
|
|
730
|
-
pos: string;
|
|
731
|
-
longPressEnabled: boolean;
|
|
732
|
-
throttle: number;
|
|
733
|
-
distance: number;
|
|
734
|
-
readonly ModalComponent: typeof LibMessageModalComponent;
|
|
735
|
-
private documentClickListener;
|
|
736
|
-
ngOnInit(): void;
|
|
737
|
-
ngOnDestroy(): void;
|
|
738
|
-
ngAfterViewInit(): void;
|
|
739
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
740
|
-
onScrollChats(): void;
|
|
741
|
-
handleScrollNewMessage(): void;
|
|
742
|
-
onScrollMessages(event: Event): void;
|
|
743
|
-
scrollToBottom(): void;
|
|
744
|
-
onEmojiclick(event: CustomEvent): void;
|
|
745
|
-
handleEmojiPickerClick(): void;
|
|
746
|
-
handleGifPickerClick(): void;
|
|
747
|
-
onGifClick(url: string): void;
|
|
748
|
-
onSendMessageModal(): void;
|
|
749
|
-
onSendText(): void;
|
|
750
|
-
savePendingMessage(): void;
|
|
751
|
-
onSend(): void;
|
|
752
|
-
onKeyDown(event: KeyboardEvent): void;
|
|
753
|
-
private onLongPress;
|
|
754
|
-
private onBlurPickerSpace;
|
|
755
|
-
private setupEmojiPickerClickListener;
|
|
756
|
-
private removeEmojiPickerClickListener;
|
|
757
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChatComponent, never>;
|
|
758
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChatComponent, "lib-chat", never, { "default": { "alias": "default"; "required": false; }; "responseTime": { "alias": "responseTime"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "emojiPickerConfig": { "alias": "emojiPickerConfig"; "required": false; }; "includeGifMessage": { "alias": "includeGifMessage"; "required": false; }; "includeTime": { "alias": "includeTime"; "required": false; }; "dateMessages": { "alias": "dateMessages"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "enableGifPicker": { "alias": "enableGifPicker"; "required": false; }; "prospectJoinDate": { "alias": "prospectJoinDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "sendMessage": "sendMessage"; "getMessages": "getMessages"; }, never, never, false, never>;
|
|
759
|
-
}
|
|
760
|
-
|
|
761
|
-
interface ITenorMediaFormat {
|
|
762
|
-
url: string;
|
|
763
|
-
duration: number;
|
|
764
|
-
preview: string;
|
|
765
|
-
dims: number[];
|
|
766
|
-
size: number;
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
interface ITenorResult {
|
|
770
|
-
id: string;
|
|
771
|
-
title: string;
|
|
772
|
-
media_formats: {
|
|
773
|
-
[key: string]: ITenorMediaFormat;
|
|
774
|
-
};
|
|
775
|
-
created: number;
|
|
776
|
-
content_description: string;
|
|
777
|
-
itemurl: string;
|
|
778
|
-
url: string;
|
|
779
|
-
tags: string[];
|
|
780
|
-
flags: string[];
|
|
781
|
-
hasaudio: boolean;
|
|
782
|
-
content_description_source: 'GENERATIVE_AI';
|
|
783
|
-
}
|
|
784
|
-
|
|
785
|
-
interface ITenorObject {
|
|
786
|
-
results: ITenorResult[];
|
|
787
|
-
next: string;
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
declare class GifSelectorComponent implements OnInit, OnDestroy {
|
|
791
|
-
private cdr;
|
|
792
|
-
private gifService;
|
|
793
|
-
private destroy$;
|
|
794
|
-
form: FormGroup;
|
|
795
|
-
pos: string;
|
|
796
|
-
gifs: ITenorResult[];
|
|
797
|
-
throttle: number;
|
|
798
|
-
distance: number;
|
|
799
|
-
selectGif: EventEmitter<string>;
|
|
800
|
-
ngOnInit(): void;
|
|
801
|
-
onScrollGifs(): void;
|
|
802
|
-
ngOnDestroy(): void;
|
|
803
|
-
getGifs(term: string): Observable<ITenorObject>;
|
|
804
|
-
private buildForm;
|
|
805
|
-
onGifClick(url: string): void;
|
|
806
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GifSelectorComponent, never>;
|
|
807
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GifSelectorComponent, "lib-gif-selector", never, {}, { "selectGif": "selectGif"; }, never, never, true, never>;
|
|
808
|
-
}
|
|
809
|
-
|
|
810
|
-
declare enum StatusTypes {
|
|
811
|
-
Info = "info",
|
|
812
|
-
Warning = "warning",
|
|
813
|
-
Error = "error",
|
|
814
|
-
Success = "success"
|
|
815
|
-
}
|
|
816
|
-
|
|
817
|
-
declare class StatusIconComponent {
|
|
818
|
-
type: StatusTypes;
|
|
819
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<StatusIconComponent, never>;
|
|
820
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StatusIconComponent, "lib-status-icon", never, { "type": { "alias": "type"; "required": true; }; }, {}, never, never, false, never>;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
declare class AlertPopupComponent implements OnChanges {
|
|
824
|
-
title: string;
|
|
825
|
-
description: string;
|
|
826
|
-
timeState: number;
|
|
827
|
-
number: number;
|
|
828
|
-
closed: EventEmitter<boolean>;
|
|
829
|
-
isClosing: boolean;
|
|
830
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
831
|
-
handleCloseEvent(): void;
|
|
832
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AlertPopupComponent, never>;
|
|
833
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertPopupComponent, "lib-alert-popup", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "timeState": { "alias": "timeState"; "required": false; }; "number": { "alias": "number"; "required": false; }; }, { "closed": "closed"; }, never, never, false, never>;
|
|
834
|
-
}
|
|
835
|
-
|
|
836
|
-
declare class SharedModule {
|
|
837
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
838
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof StatusIconComponent, typeof AlertPopupComponent, typeof LibMessageModalComponent], [typeof i2.CommonModule, typeof i6.FormFieldModule, typeof i6.ButtonsModule, typeof i6.InputDateFieldModule, typeof i6.InputFieldModule, typeof i5$1.FormsModule, typeof i5$1.ReactiveFormsModule, typeof i5.TranslateModule, typeof i6.ToggleModule], [typeof StatusIconComponent, typeof AlertPopupComponent, typeof LibMessageModalComponent]>;
|
|
839
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
declare class LibChatComponentModule {
|
|
843
|
-
static forRoot(config: {
|
|
844
|
-
tenorKey: string;
|
|
845
|
-
tenorURL: string;
|
|
846
|
-
}): ModuleWithProviders<LibChatComponentModule>;
|
|
847
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibChatComponentModule, never>;
|
|
848
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<LibChatComponentModule, [typeof ChatComponent], [typeof i2.CommonModule, typeof i6.ImageCardModule, typeof i4.MatInputModule, typeof i5$2.MatSelectModule, typeof i6$1.MatFormFieldModule, typeof i6.InputFieldModule, typeof i5$1.FormsModule, typeof i5$1.ReactiveFormsModule, typeof GifSelectorComponent, typeof i6.LibModalModule, typeof SharedModule, typeof i10.InfiniteScrollModule, typeof i5.TranslateModule], [typeof ChatComponent]>;
|
|
849
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<LibChatComponentModule>;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
interface IInnerPartialCircleProgressColors {
|
|
853
|
-
primary: string;
|
|
854
|
-
secondary: string;
|
|
855
|
-
tertiary: string;
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
declare enum INNER_CIRCLE_STATE {
|
|
859
|
-
Waiting = "waiting",
|
|
860
|
-
Quiet = "quiet",
|
|
861
|
-
Unresponsive = "unresponsive",
|
|
862
|
-
Redelegation = "redelegation"
|
|
863
|
-
}
|
|
864
|
-
|
|
865
|
-
declare enum CircleVariable {
|
|
866
|
-
Partial = "partial",
|
|
867
|
-
Complete = "complete"
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
interface IPartialCircleProgressColors {
|
|
871
|
-
primary: string;
|
|
872
|
-
secondary: string;
|
|
873
|
-
tertiary: string;
|
|
874
|
-
gradientPrimary: string;
|
|
875
|
-
gradientSecondary: string;
|
|
876
|
-
incomplete: string;
|
|
877
|
-
complete: string;
|
|
878
|
-
}
|
|
879
|
-
|
|
880
|
-
interface CircleProgressConfig {
|
|
881
|
-
/** Outer / main ring */
|
|
882
|
-
value: number;
|
|
883
|
-
max: number;
|
|
884
|
-
partialColors?: IPartialCircleProgressColors;
|
|
885
|
-
showExternalPartialCircleProgress?: boolean;
|
|
886
|
-
/** Inner ring */
|
|
887
|
-
inner?: {
|
|
888
|
-
value: number;
|
|
889
|
-
max: number;
|
|
890
|
-
colors?: IInnerPartialCircleProgressColors;
|
|
891
|
-
state: INNER_CIRCLE_STATE;
|
|
892
|
-
showIllumination?: boolean;
|
|
893
|
-
};
|
|
894
|
-
/** Visuals */
|
|
895
|
-
imageUrl?: string;
|
|
896
|
-
width?: string;
|
|
897
|
-
height?: string;
|
|
898
|
-
showValueProportionLabel?: boolean;
|
|
899
|
-
imgObjectPosition?: 'top' | 'bottom' | 'right' | 'left';
|
|
900
|
-
hasNotification?: boolean;
|
|
901
|
-
prefix?: string;
|
|
902
|
-
suffix?: string;
|
|
903
|
-
hideProgress?: boolean;
|
|
904
|
-
type?: string;
|
|
905
|
-
}
|
|
906
|
-
|
|
907
|
-
declare class CircleProgressComponent implements AfterViewInit {
|
|
908
|
-
private el;
|
|
909
|
-
variable: CircleVariable;
|
|
910
|
-
private _config;
|
|
911
|
-
set config(newConfig: Partial<CircleProgressConfig> | undefined);
|
|
912
|
-
get config(): Partial<CircleProgressConfig>;
|
|
913
|
-
innerProgressDefaultColors: IInnerPartialCircleProgressColors;
|
|
914
|
-
innerProgressPinkColors: IInnerPartialCircleProgressColors;
|
|
915
|
-
innerProgressTealColors: IInnerPartialCircleProgressColors;
|
|
916
|
-
circleVariable: typeof CircleVariable;
|
|
917
|
-
readonly INNER_CIRCLE_STATE: typeof INNER_CIRCLE_STATE;
|
|
918
|
-
readonly pathId: string;
|
|
919
|
-
readonly innerCirclePathId: string;
|
|
920
|
-
readonly innerCircleBehindPathId: string;
|
|
921
|
-
constructor(el: ElementRef);
|
|
922
|
-
ngAfterViewInit(): void;
|
|
923
|
-
private createCircle;
|
|
924
|
-
private generatePathSamplePoints;
|
|
925
|
-
private createQuadrilateralSegments;
|
|
926
|
-
private constructJoinedLinePath;
|
|
927
|
-
private computeLineIntersection;
|
|
928
|
-
private calculatePerpendicularVector;
|
|
929
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CircleProgressComponent, never>;
|
|
930
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CircleProgressComponent, "lib-circle-progress", never, { "variable": { "alias": "variable"; "required": false; }; "config": { "alias": "config"; "required": false; }; }, {}, never, never, false, never>;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
declare class CircleProgressModule {
|
|
934
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CircleProgressModule, never>;
|
|
935
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<CircleProgressModule, [typeof CircleProgressComponent], [typeof i2.CommonModule], [typeof CircleProgressComponent]>;
|
|
936
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<CircleProgressModule>;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
declare enum CONVERSATION_FLAG {
|
|
940
|
-
UNRESPONSIVE = "unresponsive",
|
|
941
|
-
REDELEGATION = "redelegation"
|
|
942
|
-
}
|
|
943
|
-
|
|
944
|
-
declare enum COUNTER_FLAG_BASE {
|
|
945
|
-
StartConversation = "startConversation",
|
|
946
|
-
LastResponse = "lastResponse"
|
|
947
|
-
}
|
|
948
|
-
|
|
949
|
-
interface IConversationFlag {
|
|
950
|
-
timestamp: Date;
|
|
951
|
-
prospectId: string;
|
|
952
|
-
basedOn: COUNTER_FLAG_BASE;
|
|
953
|
-
flag: CONVERSATION_FLAG;
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
declare enum MatcherStatuses {
|
|
957
|
-
STATUS0 = "no contact",
|
|
958
|
-
STATUS1 = "1st exchange",
|
|
959
|
-
STATUS2 = "2nd exchange",
|
|
960
|
-
STATUS3 = "3rd exchange",
|
|
961
|
-
STATUS4 = "2+ laughs",
|
|
962
|
-
STATUS5 = "idea signalled",
|
|
963
|
-
STATUS6 = "alt contact",
|
|
964
|
-
STATUS7 = "any romance",
|
|
965
|
-
STATUS8 = "locale confirmed",
|
|
966
|
-
STATUS9 = "time confirmed",
|
|
967
|
-
STATUS10 = "all followup"
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
interface IChartData {
|
|
971
|
-
title: string;
|
|
972
|
-
keys: string[];
|
|
973
|
-
values: Record<string, number>;
|
|
974
|
-
}
|
|
975
|
-
|
|
976
|
-
interface IProspectData {
|
|
977
|
-
messages: IMessage[];
|
|
978
|
-
prospectId: string;
|
|
979
|
-
status: MatcherStatuses;
|
|
980
|
-
prospectResponseTime: string;
|
|
981
|
-
chatSuggestions: IChatSuggestion[];
|
|
982
|
-
schedules: ISchedulerEvent[];
|
|
983
|
-
scheduleSuggestions: ISchedulerEventSuggestion[];
|
|
984
|
-
llmPreference: string;
|
|
985
|
-
_id: string;
|
|
986
|
-
prospectJoinDate: Date;
|
|
987
|
-
conversationFlags: IConversationFlag[];
|
|
988
|
-
numberMatcherStatuses: number;
|
|
989
|
-
chartData: IChartData[];
|
|
990
|
-
llmPreferenceLoading$?: BehaviorSubject<string[]>;
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
interface ILibClientMatchOverview {
|
|
994
|
-
_id?: string;
|
|
995
|
-
primary: IClientFields;
|
|
996
|
-
secondary: IClientFields;
|
|
997
|
-
preferences: number;
|
|
998
|
-
personality: number;
|
|
999
|
-
isExpanded?: boolean;
|
|
1000
|
-
showHandoff?: boolean;
|
|
1001
|
-
createdAt: Date;
|
|
1002
|
-
prospectData: IProspectData;
|
|
1003
|
-
matchRequest: IDashboardMatchRequest;
|
|
1004
|
-
}
|
|
1005
|
-
interface IClientFields {
|
|
1006
|
-
name: string;
|
|
1007
|
-
src: string;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
declare enum AlertStatusFields {
|
|
1011
|
-
upcomingDates = "upcomingDates",
|
|
1012
|
-
compatibilityProfileTrait = "compatibilityProfileTrait",
|
|
1013
|
-
compatibilityProfileSpider = "compatibilityProfileSpider",
|
|
1014
|
-
chatHandoff = "chatHandoff",
|
|
1015
|
-
chatProgress = "chatProgress",
|
|
1016
|
-
chatMeetupAgenda = "chatMeetupAgenda",
|
|
1017
|
-
face = "face"
|
|
1018
|
-
}
|
|
1019
|
-
|
|
1020
|
-
interface IStatus {
|
|
1021
|
-
title: string;
|
|
1022
|
-
subtitle: string;
|
|
1023
|
-
value: MatcherStatuses;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
|
-
declare const MATCHER_STATUSES: IStatus[];
|
|
1027
|
-
|
|
1028
|
-
declare enum ClientHomeComponent {
|
|
1029
|
-
ChatCompatibility = "ChatCompatibility",
|
|
1030
|
-
ChatHandoff = "ChatHandoff",
|
|
1031
|
-
ChatScheduler = "ChatScheduler",
|
|
1032
|
-
ClientMatchSpiderChart = "ClientMatchSpiderChart",
|
|
1033
|
-
ClientMatchTraitChart = "ClientMatchTraitChart"
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1036
|
-
interface IPolygonColor {
|
|
1037
|
-
label: string;
|
|
1038
|
-
value: string;
|
|
1039
|
-
}
|
|
1040
|
-
|
|
1041
|
-
interface IDataset {
|
|
1042
|
-
title: string;
|
|
1043
|
-
keys: string[];
|
|
1044
|
-
values: Record<string, number>;
|
|
1045
|
-
polygon_color?: IPolygonColor;
|
|
1046
|
-
}
|
|
1047
|
-
|
|
1048
|
-
interface ISpiderChartAttribute {
|
|
1049
|
-
key: string;
|
|
1050
|
-
text: string;
|
|
1051
|
-
titleAlertPopup?: string;
|
|
1052
|
-
descriptionAlertPopup?: string;
|
|
1053
|
-
}
|
|
1054
|
-
|
|
1055
|
-
interface ISpiderChartConfig {
|
|
1056
|
-
w: number;
|
|
1057
|
-
h: number;
|
|
1058
|
-
fullScreen: boolean;
|
|
1059
|
-
levels: number;
|
|
1060
|
-
maxValue: number;
|
|
1061
|
-
labelFactor: number;
|
|
1062
|
-
wrapWidth: number;
|
|
1063
|
-
opacityArea: number;
|
|
1064
|
-
dotRadius: number;
|
|
1065
|
-
opacityCircles: number;
|
|
1066
|
-
strokeWidth: number;
|
|
1067
|
-
color: d3.ScaleOrdinal<string, string>;
|
|
1068
|
-
attributes: ISpiderChartAttribute[];
|
|
1069
|
-
datasets: IDataset[];
|
|
1070
|
-
}
|
|
1071
|
-
|
|
1072
|
-
interface IHomeDashboardInputs {
|
|
1073
|
-
loading?: {
|
|
1074
|
-
clientMatches: boolean;
|
|
1075
|
-
};
|
|
1076
|
-
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1077
|
-
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1078
|
-
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1079
|
-
chatTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1080
|
-
traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1081
|
-
default?: boolean;
|
|
1082
|
-
component: ClientHomeComponent;
|
|
1083
|
-
activeIndex?: number;
|
|
1084
|
-
slideContentMaxHeight?: string;
|
|
1085
|
-
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
1086
|
-
events?: IAgendaEvent[];
|
|
1087
|
-
polygonColors?: IPolygonColor[];
|
|
1088
|
-
spiderConfig?: ISpiderChartConfig;
|
|
1089
|
-
schedulers$?: Observable<{
|
|
1090
|
-
events$: Observable<ISchedulerEvent[]>;
|
|
1091
|
-
}[]>;
|
|
1092
|
-
loading$?: Observable<boolean>;
|
|
1093
|
-
bottomThumbs?: boolean;
|
|
1094
|
-
includeTime?: boolean;
|
|
1095
|
-
includeGifMessage?: boolean;
|
|
1096
|
-
maxLength?: number;
|
|
1097
|
-
startDate?: Date;
|
|
1098
|
-
endDate?: Date;
|
|
1099
|
-
emptyMessage?: string;
|
|
1100
|
-
displayBookedStatuses?: boolean;
|
|
1101
|
-
displayEmptyDays?: boolean;
|
|
1102
|
-
chatInputValue?: string;
|
|
1103
|
-
hideStatuses?: boolean;
|
|
1104
|
-
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
1105
|
-
showValueProportionLabel?: boolean;
|
|
1106
|
-
hideProgressBar?: boolean;
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
|
-
declare class LibClientHomeComponent implements OnInit, OnDestroy {
|
|
1110
|
-
private cdr;
|
|
1111
|
-
config: IHomeDashboardInputs;
|
|
1112
|
-
activeIndexChange: EventEmitter<number>;
|
|
1113
|
-
addMessage: EventEmitter<{
|
|
1114
|
-
message: IMessage;
|
|
1115
|
-
prospectId: string;
|
|
1116
|
-
matchRequest: IDashboardMatchRequest;
|
|
1117
|
-
}>;
|
|
1118
|
-
getMessages: EventEmitter<void>;
|
|
1119
|
-
bookEvent: EventEmitter<ISchedulerAction>;
|
|
1120
|
-
removeSuggestion: EventEmitter<ISchedulerAction>;
|
|
1121
|
-
handleAppearPopup: EventEmitter<AlertStatusFields>;
|
|
1122
|
-
alertStatusFields: typeof AlertStatusFields;
|
|
1123
|
-
components: typeof ClientHomeComponent;
|
|
1124
|
-
clientMatches: ILibClientMatchOverview[];
|
|
1125
|
-
activeChatHeadIndex: number;
|
|
1126
|
-
assetPaths: {
|
|
1127
|
-
traitVisual: string;
|
|
1128
|
-
};
|
|
1129
|
-
private componentDestroyed$;
|
|
1130
|
-
MATCHER_STATUSES: typeof MATCHER_STATUSES;
|
|
1131
|
-
readonly defaultNumberOfItems: any[];
|
|
1132
|
-
private readonly ticker;
|
|
1133
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1134
|
-
ngOnInit(): void;
|
|
1135
|
-
ngOnDestroy(): void;
|
|
1136
|
-
onActiveIndexChange(index: number): void;
|
|
1137
|
-
handleClientMatch(match: ILibClientMatchOverview, index: number): void;
|
|
1138
|
-
updateSpiderChart(): void;
|
|
1139
|
-
addMessageEmit(event: IMessage, prospectId: string, matchRequest: IDashboardMatchRequest): void;
|
|
1140
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibClientHomeComponent, never>;
|
|
1141
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibClientHomeComponent, "lib-client-home", never, { "config": { "alias": "config"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; "addMessage": "addMessage"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "handleAppearPopup": "handleAppearPopup"; }, never, never, true, never>;
|
|
1142
|
-
}
|
|
1143
|
-
|
|
1144
|
-
interface IChatMeta {
|
|
1145
|
-
lastResponseTimestamp: Date | null;
|
|
1146
|
-
firstAnswer: boolean;
|
|
1147
|
-
waitingAnswer: boolean;
|
|
1148
|
-
conversationFlags: IConversationFlag[];
|
|
1149
|
-
}
|
|
1150
|
-
|
|
1151
|
-
declare const defaultClientHomeConfig: IHomeDashboardInputs;
|
|
1152
|
-
|
|
1153
|
-
declare const innerProgressDefaultColors: IInnerPartialCircleProgressColors;
|
|
1154
|
-
|
|
1155
|
-
declare const innerProgressPinkColors: IInnerPartialCircleProgressColors;
|
|
1156
|
-
|
|
1157
|
-
declare const innerProgressPurpleColors: IInnerPartialCircleProgressColors;
|
|
1158
|
-
|
|
1159
|
-
declare const innerProgressWhiteColors: IPartialCircleProgressColors;
|
|
1160
|
-
|
|
1161
|
-
declare const progressDefaultColors: IPartialCircleProgressColors;
|
|
1162
|
-
|
|
1163
|
-
declare const progressWhiteColors: IPartialCircleProgressColors;
|
|
1164
|
-
|
|
1165
|
-
declare class ChatMetaPipe implements PipeTransform {
|
|
1166
|
-
transform(clientMatches$: Observable<ILibClientMatchOverview[]>, prospectId: string): Observable<IChatMeta>;
|
|
1167
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ChatMetaPipe, never>;
|
|
1168
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ChatMetaPipe, "chatMeta", true>;
|
|
1169
|
-
}
|
|
1170
|
-
|
|
1171
|
-
declare class GetColorByMatcherPipe implements PipeTransform {
|
|
1172
|
-
transform(match: ILibClientMatchOverview, config: IHomeDashboardInputs): IPartialCircleProgressColors;
|
|
1173
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetColorByMatcherPipe, never>;
|
|
1174
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetColorByMatcherPipe, "getColorByMatcher", true>;
|
|
1175
|
-
}
|
|
1176
|
-
|
|
1177
|
-
declare class LibClientMatchOverviewComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges {
|
|
1178
|
-
overview: ILibClientMatchOverview;
|
|
1179
|
-
meta: IChatMeta;
|
|
1180
|
-
expand: boolean;
|
|
1181
|
-
loading?: boolean;
|
|
1182
|
-
default?: boolean;
|
|
1183
|
-
hideProgressBar?: boolean;
|
|
1184
|
-
partialColors: IPartialCircleProgressColors;
|
|
1185
|
-
showExternalPartialCircleProgress: boolean;
|
|
1186
|
-
maxValue: number;
|
|
1187
|
-
enableChangeOverview: boolean;
|
|
1188
|
-
sendConversationFlag: EventEmitter<IConversationFlag>;
|
|
1189
|
-
circleVariable: typeof CircleVariable;
|
|
1190
|
-
innerMaxValue: number;
|
|
1191
|
-
innerValue: number;
|
|
1192
|
-
showIllumination: boolean;
|
|
1193
|
-
showValueProportionLabel: boolean;
|
|
1194
|
-
innerPartialColors: IInnerPartialCircleProgressColors;
|
|
1195
|
-
innerState: INNER_CIRCLE_STATE;
|
|
1196
|
-
basedOn: COUNTER_FLAG_BASE;
|
|
1197
|
-
imageLoader$: BehaviorSubject<boolean>;
|
|
1198
|
-
imagePathId: string;
|
|
1199
|
-
circleOpts: CircleProgressConfig;
|
|
1200
|
-
private cdr;
|
|
1201
|
-
private readonly ngZone;
|
|
1202
|
-
private readonly ticker;
|
|
1203
|
-
private readonly progressGap;
|
|
1204
|
-
private componentDestroyed$;
|
|
1205
|
-
private tickerSub;
|
|
1206
|
-
ngOnInit(): void;
|
|
1207
|
-
ngAfterViewInit(): void;
|
|
1208
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1209
|
-
ngOnDestroy(): void;
|
|
1210
|
-
private setInnerState;
|
|
1211
|
-
private stepProgress;
|
|
1212
|
-
private loadProfileImage;
|
|
1213
|
-
private startTicker;
|
|
1214
|
-
private stopTicker;
|
|
1215
|
-
private setInnerCircleState;
|
|
1216
|
-
private buildCircleOpts;
|
|
1217
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibClientMatchOverviewComponent, never>;
|
|
1218
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibClientMatchOverviewComponent, "lib-client-match-overview", never, { "overview": { "alias": "overview"; "required": true; }; "meta": { "alias": "meta"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "default": { "alias": "default"; "required": false; }; "hideProgressBar": { "alias": "hideProgressBar"; "required": false; }; "partialColors": { "alias": "partialColors"; "required": false; }; "showExternalPartialCircleProgress": { "alias": "showExternalPartialCircleProgress"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "enableChangeOverview": { "alias": "enableChangeOverview"; "required": false; }; }, { "sendConversationFlag": "sendConversationFlag"; }, never, never, true, never>;
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
|
-
/** Inputs the pure function needs */
|
|
1222
|
-
interface ProgressFacts {
|
|
1223
|
-
createdAt: Date;
|
|
1224
|
-
lastMessageTimestamp: Date | null;
|
|
1225
|
-
firstAnswer: boolean;
|
|
1226
|
-
waitingAnswer: boolean;
|
|
1227
|
-
nowMs?: number;
|
|
1228
|
-
innerMax: number;
|
|
1229
|
-
conversationFlags: IConversationFlag[];
|
|
1230
|
-
}
|
|
1231
|
-
|
|
1232
|
-
/** Decision bundle returned to the component */
|
|
1233
|
-
interface ProgressDecision {
|
|
1234
|
-
state: INNER_CIRCLE_STATE;
|
|
1235
|
-
innerValue: number | null;
|
|
1236
|
-
tick: 'start' | 'stop';
|
|
1237
|
-
basedOn: COUNTER_FLAG_BASE;
|
|
1238
|
-
registered: boolean;
|
|
1239
|
-
}
|
|
1240
|
-
|
|
1241
1
|
/**
|
|
1242
|
-
*
|
|
1243
|
-
* No side-effects, no RxJS, no Angular.
|
|
2
|
+
* Generated bundle index. Do not edit.
|
|
1244
3
|
*/
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
declare const PROGRESS_GAP_MINUTES: InjectionToken<number>;
|
|
1248
|
-
|
|
1249
|
-
declare const TICK_PERIOD_SECONDS: InjectionToken<number>;
|
|
1250
|
-
|
|
1251
|
-
declare class ProgressTickerService {
|
|
1252
|
-
/** Emits once every `periodSec` seconds. Auto-starts & ref-counts. */
|
|
1253
|
-
readonly tick$: Observable<number>;
|
|
1254
|
-
/** For diagnostics: current number of active subscribers. */
|
|
1255
|
-
readonly subscriberCount$: BehaviorSubject<number>;
|
|
1256
|
-
constructor(periodSec: number);
|
|
1257
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProgressTickerService, never>;
|
|
1258
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<ProgressTickerService>;
|
|
1259
|
-
}
|
|
1260
|
-
|
|
1261
|
-
declare class LibDashboardSwipeableTabsComponent implements AfterViewInit {
|
|
1262
|
-
thumbSwiper: ElementRef<{
|
|
1263
|
-
initialize: () => {};
|
|
1264
|
-
}>;
|
|
1265
|
-
mainSwiper: ElementRef<{
|
|
1266
|
-
initialize: () => {};
|
|
1267
|
-
}>;
|
|
1268
|
-
thumbSlides: ElementRef | undefined;
|
|
1269
|
-
thumbsSwiperOptions: SwiperOptions;
|
|
1270
|
-
mainSwiperOptions: SwiperOptions;
|
|
1271
|
-
activeIndex: number;
|
|
1272
|
-
bottomThumbs: boolean;
|
|
1273
|
-
slideContentMaxHeight: string;
|
|
1274
|
-
mainSwiperHeight: string;
|
|
1275
|
-
subMainSwiperHeight: string;
|
|
1276
|
-
thumbsSwiperHeight: string;
|
|
1277
|
-
generalSwiperHeight: string;
|
|
1278
|
-
activeIndexChange: EventEmitter<number>;
|
|
1279
|
-
private thumbsSwiperInstance;
|
|
1280
|
-
private mainSwiperInstance;
|
|
1281
|
-
ngAfterViewInit(): void;
|
|
1282
|
-
private initSwiperInstances;
|
|
1283
|
-
private initMainSwiper;
|
|
1284
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibDashboardSwipeableTabsComponent, never>;
|
|
1285
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibDashboardSwipeableTabsComponent, "lib-dashboard-swipeable-tabs", never, { "thumbsSwiperOptions": { "alias": "thumbsSwiperOptions"; "required": false; }; "mainSwiperOptions": { "alias": "mainSwiperOptions"; "required": false; }; "activeIndex": { "alias": "activeIndex"; "required": false; }; "bottomThumbs": { "alias": "bottomThumbs"; "required": false; }; "slideContentMaxHeight": { "alias": "slideContentMaxHeight"; "required": false; }; "mainSwiperHeight": { "alias": "mainSwiperHeight"; "required": false; }; "subMainSwiperHeight": { "alias": "subMainSwiperHeight"; "required": false; }; "thumbsSwiperHeight": { "alias": "thumbsSwiperHeight"; "required": false; }; "generalSwiperHeight": { "alias": "generalSwiperHeight"; "required": false; }; }, { "activeIndexChange": "activeIndexChange"; }, ["thumbSlides"], ["[thumb-slides]", "[main-slides]"], true, never>;
|
|
1286
|
-
}
|
|
1287
|
-
|
|
1288
|
-
declare const dashboardMainSwiperDefaultOptions: SwiperOptions;
|
|
1289
|
-
|
|
1290
|
-
declare const dashboardThumbsSwiperDefaultOptions: SwiperOptions;
|
|
1291
|
-
|
|
1292
|
-
declare const mainswiperDefaultOptions: SwiperOptions;
|
|
1293
|
-
|
|
1294
|
-
declare const thumbsSwiperDefaultOptions: SwiperOptions;
|
|
1295
|
-
|
|
1296
|
-
declare enum ClientDashboardTabs {
|
|
1297
|
-
ChatScheduler = 0,
|
|
1298
|
-
ChatCompatibility = 1,
|
|
1299
|
-
ChatHandoff = 2
|
|
1300
|
-
}
|
|
1301
|
-
|
|
1302
|
-
interface IClientDashboardInputs {
|
|
1303
|
-
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1304
|
-
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1305
|
-
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1306
|
-
chatTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1307
|
-
traitVisualAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1308
|
-
agendaAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1309
|
-
default?: boolean;
|
|
1310
|
-
activeIndex?: number;
|
|
1311
|
-
activeTabIndex?: number;
|
|
1312
|
-
activeChartItem?: number;
|
|
1313
|
-
slideContentMaxHeight?: string;
|
|
1314
|
-
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
1315
|
-
events?: IAgendaEvent[];
|
|
1316
|
-
polygonColors?: IPolygonColor[];
|
|
1317
|
-
spiderConfig?: ISpiderChartConfig;
|
|
1318
|
-
schedulers$?: Observable<{
|
|
1319
|
-
events$: Observable<ISchedulerEvent[]>;
|
|
1320
|
-
}[]>;
|
|
1321
|
-
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
|
-
declare class LibClientDashboardComponent implements OnInit, OnDestroy {
|
|
1325
|
-
private cdr;
|
|
1326
|
-
config: IClientDashboardInputs;
|
|
1327
|
-
addMessage: EventEmitter<{
|
|
1328
|
-
message: IMessage;
|
|
1329
|
-
index: number;
|
|
1330
|
-
prospectId: string;
|
|
1331
|
-
matchRequest: IDashboardMatchRequest;
|
|
1332
|
-
}>;
|
|
1333
|
-
getMessages: EventEmitter<void>;
|
|
1334
|
-
bookEvent: EventEmitter<ISchedulerAction>;
|
|
1335
|
-
removeSuggestion: EventEmitter<ISchedulerAction>;
|
|
1336
|
-
activeIndexChange: EventEmitter<number>;
|
|
1337
|
-
handleClosedAlert: EventEmitter<{
|
|
1338
|
-
event: boolean;
|
|
1339
|
-
field: AlertStatusFields;
|
|
1340
|
-
}>;
|
|
1341
|
-
handleAppearPopup: EventEmitter<AlertStatusFields>;
|
|
1342
|
-
components: typeof ClientHomeComponent;
|
|
1343
|
-
componentTabs: typeof ClientDashboardTabs;
|
|
1344
|
-
mainSwiperOptions: SwiperOptions;
|
|
1345
|
-
alertStatusFields: typeof AlertStatusFields;
|
|
1346
|
-
isTouchEvent: boolean;
|
|
1347
|
-
items: {
|
|
1348
|
-
key: string;
|
|
1349
|
-
label: string;
|
|
1350
|
-
onClickInfo: () => void;
|
|
1351
|
-
}[];
|
|
1352
|
-
isMinimizeVisual: boolean;
|
|
1353
|
-
iconSize: string;
|
|
1354
|
-
assetPaths: {
|
|
1355
|
-
defaultIcon: string;
|
|
1356
|
-
};
|
|
1357
|
-
item: {
|
|
1358
|
-
label: string;
|
|
1359
|
-
};
|
|
1360
|
-
clientHomeThumbsSwiperOptions: SwiperOptions;
|
|
1361
|
-
dashboardThumbsSwiperOptions: SwiperOptions;
|
|
1362
|
-
private lastTapTime;
|
|
1363
|
-
private componentDestroyed$;
|
|
1364
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1365
|
-
ngOnInit(): void;
|
|
1366
|
-
ngOnDestroy(): void;
|
|
1367
|
-
onActiveTabIndexChange(index: number): void;
|
|
1368
|
-
handleNewMessage(event: {
|
|
1369
|
-
message: IMessage;
|
|
1370
|
-
index: number;
|
|
1371
|
-
prospectId: string;
|
|
1372
|
-
matchRequest: IDashboardMatchRequest;
|
|
1373
|
-
}): void;
|
|
1374
|
-
handleDoubleClick(): void;
|
|
1375
|
-
onTouchStart(event: TouchEvent): void;
|
|
1376
|
-
onClick(event: PointerEvent): void;
|
|
1377
|
-
onChartIndexChange(index: any): void;
|
|
1378
|
-
onActiveProspectChange(index: number): void;
|
|
1379
|
-
onClosedAlert(data: {
|
|
1380
|
-
event: boolean;
|
|
1381
|
-
field: AlertStatusFields;
|
|
1382
|
-
}): void;
|
|
1383
|
-
onHandleAppearPopup(field: AlertStatusFields): void;
|
|
1384
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibClientDashboardComponent, never>;
|
|
1385
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibClientDashboardComponent, "lib-client-dashboard", never, { "config": { "alias": "config"; "required": false; }; }, { "addMessage": "addMessage"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "activeIndexChange": "activeIndexChange"; "handleClosedAlert": "handleClosedAlert"; "handleAppearPopup": "handleAppearPopup"; }, never, never, true, never>;
|
|
1386
|
-
}
|
|
1387
|
-
|
|
1388
|
-
declare const defaultClientDashboardConfig: IClientDashboardInputs;
|
|
1389
|
-
|
|
1390
|
-
interface IChatIdentifier {
|
|
1391
|
-
chatId: string;
|
|
1392
|
-
llmPreference: string;
|
|
1393
|
-
prospectName: string;
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
interface IMatcherDashboardInputs {
|
|
1397
|
-
schedulerAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1398
|
-
schedulerTabAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1399
|
-
chatAdsTemplate?: TemplateRef<HTMLElement>;
|
|
1400
|
-
loading?: {
|
|
1401
|
-
clientMatches: boolean;
|
|
1402
|
-
};
|
|
1403
|
-
default?: boolean;
|
|
1404
|
-
activeIndex?: number;
|
|
1405
|
-
activeTabIndex?: number;
|
|
1406
|
-
slideContentMaxHeight?: string;
|
|
1407
|
-
clientMatches$?: Observable<ILibClientMatchOverview[]>;
|
|
1408
|
-
events$?: Observable<ISchedulerEvent[]>;
|
|
1409
|
-
polygonColors?: IPolygonColor[];
|
|
1410
|
-
spiderConfig?: ISpiderChartConfig;
|
|
1411
|
-
alertStatus: Partial<Record<AlertStatusFields, boolean>>;
|
|
1412
|
-
llmPreferenceOptions?: SelectOption<string>[];
|
|
1413
|
-
}
|
|
1414
|
-
|
|
1415
|
-
declare class LibComposeMacherDashComponent implements OnInit, OnDestroy {
|
|
1416
|
-
private cdr;
|
|
1417
|
-
config: IMatcherDashboardInputs;
|
|
1418
|
-
addMessage: EventEmitter<{
|
|
1419
|
-
message: IMessage;
|
|
1420
|
-
prospectId: string;
|
|
1421
|
-
matchRequest: IDashboardMatchRequest;
|
|
1422
|
-
}>;
|
|
1423
|
-
updateLLMConversation: EventEmitter<IChatIdentifier>;
|
|
1424
|
-
getMessages: EventEmitter<void>;
|
|
1425
|
-
bookEvent: EventEmitter<ISchedulerAction>;
|
|
1426
|
-
removeSuggestion: EventEmitter<ISchedulerAction>;
|
|
1427
|
-
activeIndexChange: EventEmitter<number>;
|
|
1428
|
-
components: typeof ClientHomeComponent;
|
|
1429
|
-
suggest: string;
|
|
1430
|
-
schedularCounts: {
|
|
1431
|
-
booked: number;
|
|
1432
|
-
suggested: number;
|
|
1433
|
-
};
|
|
1434
|
-
statuses: ({
|
|
1435
|
-
title: string;
|
|
1436
|
-
icon: string;
|
|
1437
|
-
isText: boolean;
|
|
1438
|
-
} | {
|
|
1439
|
-
title: string;
|
|
1440
|
-
icon: string;
|
|
1441
|
-
isText?: undefined;
|
|
1442
|
-
})[];
|
|
1443
|
-
FormFieldType: typeof FormFieldType;
|
|
1444
|
-
private componentDestroyed$;
|
|
1445
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1446
|
-
ngOnInit(): void;
|
|
1447
|
-
ngOnDestroy(): void;
|
|
1448
|
-
onActiveTabIndexChange(index: number): void;
|
|
1449
|
-
onActiveProspectChange(index: number): void;
|
|
1450
|
-
suggestClicked(suggest: string): void;
|
|
1451
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LibComposeMacherDashComponent, never>;
|
|
1452
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LibComposeMacherDashComponent, "lib-compose-matcher-dash", never, { "config": { "alias": "config"; "required": false; }; }, { "addMessage": "addMessage"; "updateLLMConversation": "updateLLMConversation"; "getMessages": "getMessages"; "bookEvent": "bookEvent"; "removeSuggestion": "removeSuggestion"; "activeIndexChange": "activeIndexChange"; }, never, never, true, never>;
|
|
1453
|
-
}
|
|
1454
|
-
|
|
1455
|
-
interface IDashboardMatcherProfile {
|
|
1456
|
-
id: number;
|
|
1457
|
-
name: string;
|
|
1458
|
-
value: number;
|
|
1459
|
-
photo: string;
|
|
1460
|
-
notification: number;
|
|
1461
|
-
progress: number;
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
|
-
declare class GetProfileWithProgressPipe implements PipeTransform {
|
|
1465
|
-
transform(clientMatch: ILibClientMatchOverview): Profile;
|
|
1466
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetProfileWithProgressPipe, never>;
|
|
1467
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetProfileWithProgressPipe, "getProfileWithProgress", true>;
|
|
1468
|
-
}
|
|
1469
|
-
|
|
1470
|
-
declare class MatcherStatusesComponent {
|
|
1471
|
-
adsTemplate?: TemplateRef<HTMLElement>;
|
|
1472
|
-
status: MatcherStatuses;
|
|
1473
|
-
hideStatuses: boolean;
|
|
1474
|
-
messages: IMessage[];
|
|
1475
|
-
inputValue?: string;
|
|
1476
|
-
maxLength: number;
|
|
1477
|
-
responseTime?: string;
|
|
1478
|
-
disabled: boolean;
|
|
1479
|
-
prospectJoinDate: Date;
|
|
1480
|
-
getMessages: EventEmitter<boolean>;
|
|
1481
|
-
sendMessage: EventEmitter<IMessage>;
|
|
1482
|
-
MATCHER_STATUSES: typeof MATCHER_STATUSES;
|
|
1483
|
-
handleGetMessages(event: boolean): void;
|
|
1484
|
-
handleSendMessage(event: IMessage): void;
|
|
1485
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatcherStatusesComponent, never>;
|
|
1486
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MatcherStatusesComponent, "lib-matcher-statuses", never, { "adsTemplate": { "alias": "adsTemplate"; "required": false; }; "status": { "alias": "status"; "required": false; }; "hideStatuses": { "alias": "hideStatuses"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "inputValue": { "alias": "inputValue"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "responseTime": { "alias": "responseTime"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "prospectJoinDate": { "alias": "prospectJoinDate"; "required": false; }; }, { "getMessages": "getMessages"; "sendMessage": "sendMessage"; }, never, never, true, never>;
|
|
1487
|
-
}
|
|
1488
|
-
|
|
1489
|
-
declare class IsStatusIncludedPipe implements PipeTransform {
|
|
1490
|
-
transform(status: MatcherStatuses, index: number): boolean;
|
|
1491
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IsStatusIncludedPipe, never>;
|
|
1492
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<IsStatusIncludedPipe, "isStatusIncluded", true>;
|
|
1493
|
-
}
|
|
1494
|
-
|
|
1495
|
-
declare class ProfileCardComponent implements OnChanges {
|
|
1496
|
-
profile: Profile;
|
|
1497
|
-
progressText: string;
|
|
1498
|
-
progressBar: any;
|
|
1499
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1500
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileCardComponent, never>;
|
|
1501
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileCardComponent, "lib-profile-card", never, { "profile": { "alias": "profile"; "required": false; }; "progressText": { "alias": "progressText"; "required": false; }; }, {}, never, never, false, never>;
|
|
1502
|
-
}
|
|
1503
|
-
|
|
1504
|
-
declare class ProfileCardModule {
|
|
1505
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileCardModule, never>;
|
|
1506
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ProfileCardModule, [typeof ProfileCardComponent], [typeof i2.CommonModule, typeof i3.IonicModule], [typeof ProfileCardComponent]>;
|
|
1507
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ProfileCardModule>;
|
|
1508
|
-
}
|
|
1509
|
-
|
|
1510
|
-
interface ICircleData {
|
|
1511
|
-
cx: string;
|
|
1512
|
-
cy: string;
|
|
1513
|
-
r: string;
|
|
1514
|
-
transform: string;
|
|
1515
|
-
stroke?: string;
|
|
1516
|
-
'stroke-width'?: string;
|
|
1517
|
-
fill?: string;
|
|
1518
|
-
filter?: string;
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
|
-
interface IDefsF {
|
|
1522
|
-
id: string;
|
|
1523
|
-
x: string;
|
|
1524
|
-
y: string;
|
|
1525
|
-
height: string;
|
|
1526
|
-
width: string;
|
|
1527
|
-
feGaussianTags: {
|
|
1528
|
-
in: string;
|
|
1529
|
-
stdDeviation: string;
|
|
1530
|
-
}[];
|
|
1531
|
-
}
|
|
1532
|
-
|
|
1533
|
-
interface IDefsLG {
|
|
1534
|
-
id: string;
|
|
1535
|
-
x1: string;
|
|
1536
|
-
y1: string;
|
|
1537
|
-
x2: string;
|
|
1538
|
-
y2: string;
|
|
1539
|
-
stopTags: {
|
|
1540
|
-
offset: string;
|
|
1541
|
-
style: string;
|
|
1542
|
-
}[];
|
|
1543
|
-
}
|
|
1544
|
-
|
|
1545
|
-
interface IDefsRG {
|
|
1546
|
-
id: string;
|
|
1547
|
-
cx: string;
|
|
1548
|
-
cy: string;
|
|
1549
|
-
r: string;
|
|
1550
|
-
stopTags: {
|
|
1551
|
-
offset: string;
|
|
1552
|
-
style: string;
|
|
1553
|
-
}[];
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
|
-
declare const defaultSpiderConfig: ISpiderChartConfig;
|
|
1557
|
-
|
|
1558
|
-
declare const demoPolygonColors: IPolygonColor[];
|
|
1559
|
-
|
|
1560
|
-
declare const circleData: ICircleData[];
|
|
1561
|
-
declare const defsLG: IDefsLG[];
|
|
1562
|
-
declare const defsF: IDefsF[];
|
|
1563
|
-
declare const defsRG: IDefsRG[];
|
|
1564
|
-
|
|
1565
|
-
declare class InitialsPipe implements PipeTransform {
|
|
1566
|
-
transform(fullName: string, numChars?: number): string;
|
|
1567
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InitialsPipe, never>;
|
|
1568
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<InitialsPipe, "initials", false>;
|
|
1569
|
-
}
|
|
1570
|
-
|
|
1571
|
-
declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
1572
|
-
private cdr;
|
|
1573
|
-
d3Chart: ElementRef;
|
|
1574
|
-
datasets: IDataset[];
|
|
1575
|
-
config: ISpiderChartConfig;
|
|
1576
|
-
polygon_colors: IPolygonColor[];
|
|
1577
|
-
showChartInfo: boolean;
|
|
1578
|
-
alertStatusFields: typeof AlertStatusFields;
|
|
1579
|
-
titleAlertPopup: string;
|
|
1580
|
-
descriptionAlertPopup: string;
|
|
1581
|
-
isAlertPopupClosing: boolean;
|
|
1582
|
-
timeStateAlertPopup: number;
|
|
1583
|
-
numberAlertPopup: number;
|
|
1584
|
-
svg: d3.Selection<SVGSVGElement, unknown, HTMLElement, unknown>;
|
|
1585
|
-
defsRG: IDefsRG[];
|
|
1586
|
-
defsF: IDefsF[];
|
|
1587
|
-
defsLG: IDefsLG[];
|
|
1588
|
-
circleData: ICircleData[];
|
|
1589
|
-
readonly initialsPipe: InitialsPipe;
|
|
1590
|
-
constructor(cdr: ChangeDetectorRef);
|
|
1591
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1592
|
-
ngAfterViewInit(): void;
|
|
1593
|
-
ngOnDestroy(): void;
|
|
1594
|
-
onClosedAlert(data: {
|
|
1595
|
-
event: boolean;
|
|
1596
|
-
field: AlertStatusFields;
|
|
1597
|
-
}): void;
|
|
1598
|
-
private initializeChart;
|
|
1599
|
-
private createSvgObject;
|
|
1600
|
-
private createLine;
|
|
1601
|
-
private createCircle;
|
|
1602
|
-
private createText;
|
|
1603
|
-
private createPolygons;
|
|
1604
|
-
private createDefsAndLinearGradient;
|
|
1605
|
-
private createDefsAndFilter;
|
|
1606
|
-
private createDefsAndRadialGradient;
|
|
1607
|
-
private createRadarChart;
|
|
1608
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderChartComponent, never>;
|
|
1609
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderChartComponent, "lib-spider-chart", never, { "datasets": { "alias": "datasets"; "required": false; }; "config": { "alias": "config"; "required": false; }; "polygon_colors": { "alias": "polygon_colors"; "required": false; }; "showChartInfo": { "alias": "showChartInfo"; "required": false; }; }, {}, never, never, true, never>;
|
|
1610
|
-
}
|
|
1611
|
-
|
|
1612
|
-
/**
|
|
1613
|
-
* operations.ts - Contains common operations utility functions.
|
|
1614
|
-
*
|
|
1615
|
-
* @file This file exports utility functions for common operations.
|
|
1616
|
-
*/
|
|
1617
|
-
/**
|
|
1618
|
-
* Generates a random string of the specified length.
|
|
1619
|
-
*
|
|
1620
|
-
* @param {number} [length=10] - The length of the random string to generate. Default is 10.
|
|
1621
|
-
* @return {string} A randomly generated string.
|
|
1622
|
-
*/
|
|
1623
|
-
declare function randomString(length?: number): string;
|
|
1624
|
-
/**
|
|
1625
|
-
* Collection of common operations utility functions.
|
|
1626
|
-
*/
|
|
1627
|
-
declare const CommonOperations: {
|
|
1628
|
-
randomString: typeof randomString;
|
|
1629
|
-
};
|
|
1630
|
-
|
|
1631
|
-
declare class ArraySortPipe implements PipeTransform {
|
|
1632
|
-
transform(array: any, field: string, type?: string): any[];
|
|
1633
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ArraySortPipe, never>;
|
|
1634
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<ArraySortPipe, "sort", false>;
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
|
-
declare class CountNonEmptyFieldsPipe implements PipeTransform {
|
|
1638
|
-
transform(records: Record<string, string | null>): number;
|
|
1639
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CountNonEmptyFieldsPipe, never>;
|
|
1640
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<CountNonEmptyFieldsPipe, "countNonEmptyFields", false>;
|
|
1641
|
-
}
|
|
1642
|
-
|
|
1643
|
-
declare class DateLocalizationPipe implements PipeTransform {
|
|
1644
|
-
transform(value: string | moment.Moment, dateFormat: string): string;
|
|
1645
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DateLocalizationPipe, never>;
|
|
1646
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<DateLocalizationPipe, "dateLocalization", false>;
|
|
1647
|
-
}
|
|
1648
|
-
|
|
1649
|
-
declare class GetDisplayValuePipe implements PipeTransform {
|
|
1650
|
-
private dateLocalizationPipe;
|
|
1651
|
-
private currencyPipe;
|
|
1652
|
-
constructor(dateLocalizationPipe: DateLocalizationPipe, currencyPipe: CurrencyPipe);
|
|
1653
|
-
transform(data: any, column: GridColumn, dateFormat: string, corporateCurrency?: string): string;
|
|
1654
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetDisplayValuePipe, never>;
|
|
1655
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetDisplayValuePipe, "getDisplayValue", false>;
|
|
1656
|
-
}
|
|
1657
|
-
|
|
1658
|
-
declare class GetMultiSelectDisplayTextPipe implements PipeTransform {
|
|
1659
|
-
transform(formValue: any[], options: SelectOption<any>[]): string;
|
|
1660
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<GetMultiSelectDisplayTextPipe, never>;
|
|
1661
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<GetMultiSelectDisplayTextPipe, "getMultiSelectDisplayText", false>;
|
|
1662
|
-
}
|
|
1663
|
-
|
|
1664
|
-
declare class RoundPipe implements PipeTransform {
|
|
1665
|
-
transform(value: number): number;
|
|
1666
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
|
|
1667
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round", false>;
|
|
1668
|
-
}
|
|
1669
|
-
|
|
1670
|
-
export { AbstractCacheService, AgendaComponent, AlertPopupComponent, AlertStatusFields, ArraySortPipe, AutoDelegationEventTypes, AutoDelegationEventValue, CONVERSATION_FLAG, COUNTER_FLAG_BASE, CalendarAccountEnum, CalendarAccountIconsEnum, CalendarUtilsService, ChatComponent, ChatMetaPipe, ChatService, ChatSuggestionComponent, CircleProgressComponent, CircleProgressModule, CircleVariable, ClientDashboardTabs, ClientHomeComponent, CommonOperations, CountNonEmptyFieldsPipe, DateLocalizationPipe, EditRecurringEventOptions, EventTypes, GetColorByMatcherPipe, GetDisplayValuePipe, GetMultiSelectDisplayTextPipe, GetProfileWithProgressPipe, INNER_CIRCLE_STATE, InitialsPipe, IsStatusIncludedPipe, LibAgendaModule, LibAutoDelegationModalComponent, LibChatComponentModule, LibClientDashboardComponent, LibClientHomeComponent, LibClientMatchOverviewComponent, LibComposeMacherDashComponent, LibDashboardSwipeableTabsComponent, LibEventFormComponent, LibEventFormModule, LibMessageModalComponent, LibSchedulerComponent, MATCHER_STATUSES, MatcherStatuses, MatcherStatusesComponent, PROGRESS_GAP_MINUTES, ProfileCardComponent, ProfileCardModule, ProgressTickerService, RecurringTypes, RoundPipe, ScheduleDateStatus, SenderTypes, SharedModule, SpiderChartComponent, StatusIconComponent, TICK_PERIOD_SECONDS, circleData, computeInnerState, dashboardMainSwiperDefaultOptions, dashboardThumbsSwiperDefaultOptions, defaultClientDashboardConfig, defaultClientHomeConfig, defaultSpiderConfig, defsF, defsLG, defsRG, demoPolygonColors, innerProgressDefaultColors, innerProgressPinkColors, innerProgressPurpleColors, innerProgressWhiteColors, mainswiperDefaultOptions, progressDefaultColors, progressWhiteColors, recurringOptions, thumbsSwiperDefaultOptions };
|
|
1671
|
-
export type { CircleProgressConfig, IAgendaDay, IAgendaEvent, IAttachment, IAutoDelegationData, IAutoDelegationEvent, IAutoDelegationModalData, IAutoDelegationPreferences, ICalendarAccount, ICalendarAccountTheme, IChartData, IChatIdentifier, IChatMeta, IChatSuggestion, ICircleData, IClientDashboardInputs, IConversationFlag, IDashboardMatchRequest, IDashboardMatcherProfile, IDataset, IDateMessages, IDefsF, IDefsLG, IDefsRG, IEvent, IEventFormOutput, IEventTime, IHomeDashboardInputs, IInnerPartialCircleProgressColors, ILibClientMatchOverview, IMatcherDashboardInputs, IMessage, IPartialCircleProgressColors, IPolygonColor, IProspectData, IRecurringEvent, IRecurringEventException, IRecurringPattern, ISchedulerAction, ISchedulerEvent, ISchedulerEventSlots, ISchedulerEventSuggestion, ISpiderChartAttribute, ISpiderChartConfig, ProgressFacts };
|
|
4
|
+
/// <amd-module name="@naniteninja/dashboard-components-lib" />
|
|
5
|
+
export * from './public-api';
|