@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
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as d3 from 'd3';
|
|
2
|
+
import { IDataset } from './dataset.interface';
|
|
3
|
+
import { ISpiderChartAttribute } from './spider-chart-attribute.interface';
|
|
4
|
+
export interface ISpiderChartConfig {
|
|
5
|
+
w: number;
|
|
6
|
+
h: number;
|
|
7
|
+
fullScreen: boolean;
|
|
8
|
+
levels: number;
|
|
9
|
+
maxValue: number;
|
|
10
|
+
labelFactor: number;
|
|
11
|
+
wrapWidth: number;
|
|
12
|
+
opacityArea: number;
|
|
13
|
+
dotRadius: number;
|
|
14
|
+
opacityCircles: number;
|
|
15
|
+
strokeWidth: number;
|
|
16
|
+
color: d3.ScaleOrdinal<string, string>;
|
|
17
|
+
attributes: ISpiderChartAttribute[];
|
|
18
|
+
datasets: IDataset[];
|
|
19
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ICircleData } from '../interfaces/chart-data-circle.interface';
|
|
2
|
+
import { IDefsF } from '../interfaces/chart-data-defs-f.interface';
|
|
3
|
+
import { IDefsLG } from '../interfaces/chart-data-defs-lg.interface';
|
|
4
|
+
import { IDefsRG } from '../interfaces/chart-data-defs-rg.interface';
|
|
5
|
+
export declare const circleData: ICircleData[];
|
|
6
|
+
export declare const defsLG: IDefsLG[];
|
|
7
|
+
export declare const defsF: IDefsF[];
|
|
8
|
+
export declare const defsRG: IDefsRG[];
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, OnChanges, OnDestroy, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as d3 from 'd3';
|
|
3
|
+
import { InitialsPipe } from '../../pipes/initials/initials.pipe';
|
|
4
|
+
import { AlertStatusFields } from '../lib-client-dashboard/enums/alert-status-fields.enum';
|
|
5
|
+
import { ICircleData } from './interfaces/chart-data-circle.interface';
|
|
6
|
+
import { IDefsF } from './interfaces/chart-data-defs-f.interface';
|
|
7
|
+
import { IDefsLG } from './interfaces/chart-data-defs-lg.interface';
|
|
8
|
+
import { IDefsRG } from './interfaces/chart-data-defs-rg.interface';
|
|
9
|
+
import { ISpiderChartConfig } from './interfaces/config.interface';
|
|
10
|
+
import { IDataset } from './interfaces/dataset.interface';
|
|
11
|
+
import { IPolygonColor } from './interfaces/polygon-color.interface';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export declare class SpiderChartComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
14
|
+
private cdr;
|
|
15
|
+
d3Chart: ElementRef;
|
|
16
|
+
datasets: IDataset[];
|
|
17
|
+
config: ISpiderChartConfig;
|
|
18
|
+
polygon_colors: IPolygonColor[];
|
|
19
|
+
showChartInfo: boolean;
|
|
20
|
+
alertStatusFields: typeof AlertStatusFields;
|
|
21
|
+
titleAlertPopup: string;
|
|
22
|
+
descriptionAlertPopup: string;
|
|
23
|
+
isAlertPopupClosing: boolean;
|
|
24
|
+
timeStateAlertPopup: number;
|
|
25
|
+
numberAlertPopup: number;
|
|
26
|
+
svg: d3.Selection<SVGSVGElement, unknown, HTMLElement, unknown>;
|
|
27
|
+
defsRG: IDefsRG[];
|
|
28
|
+
defsF: IDefsF[];
|
|
29
|
+
defsLG: IDefsLG[];
|
|
30
|
+
circleData: ICircleData[];
|
|
31
|
+
readonly initialsPipe: InitialsPipe;
|
|
32
|
+
constructor(cdr: ChangeDetectorRef);
|
|
33
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
34
|
+
ngAfterViewInit(): void;
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
onClosedAlert(data: {
|
|
37
|
+
event: boolean;
|
|
38
|
+
field: AlertStatusFields;
|
|
39
|
+
}): void;
|
|
40
|
+
private initializeChart;
|
|
41
|
+
private createSvgObject;
|
|
42
|
+
private createLine;
|
|
43
|
+
private createCircle;
|
|
44
|
+
private createText;
|
|
45
|
+
private createPolygons;
|
|
46
|
+
private createDefsAndLinearGradient;
|
|
47
|
+
private createDefsAndFilter;
|
|
48
|
+
private createDefsAndRadialGradient;
|
|
49
|
+
private createRadarChart;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderChartComponent, never>;
|
|
51
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderChartComponent, "lib-spider-chart", never, { "datasets": { "alias": "datasets"; "required": false; }; "config": { "alias": "config"; "required": false; }; "polygon_colors": { "alias": "polygon_colors"; "required": false; }; "showChartInfo": { "alias": "showChartInfo"; "required": false; }; }, {}, never, never, true, never>;
|
|
52
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare enum FormFieldType {
|
|
2
|
+
date = "date",
|
|
3
|
+
text = "text",
|
|
4
|
+
textarea = "textarea",
|
|
5
|
+
typeahead = "typeahead",
|
|
6
|
+
multiselect = "multiselect",
|
|
7
|
+
select = "select",
|
|
8
|
+
checkbox = "checkbox",
|
|
9
|
+
toggle = "toggle",
|
|
10
|
+
radio = "radio",
|
|
11
|
+
textlist = "textlist",
|
|
12
|
+
number = "number",
|
|
13
|
+
message = "message",
|
|
14
|
+
time = "time",
|
|
15
|
+
multifield = "multifield",
|
|
16
|
+
action = "action",
|
|
17
|
+
currency = "currency",
|
|
18
|
+
banner = "banner",
|
|
19
|
+
percentage = "percentage",
|
|
20
|
+
multiselectdropdown = "multiselectdropdown",
|
|
21
|
+
hyperlink = "hyperlink",
|
|
22
|
+
injectable = "injectable",
|
|
23
|
+
datetime = "datetime",
|
|
24
|
+
rating = "rating",
|
|
25
|
+
incrementer = "incrementer",
|
|
26
|
+
range = "range",
|
|
27
|
+
password = "password"
|
|
28
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* operations.ts - Contains common operations utility functions.
|
|
3
|
+
*
|
|
4
|
+
* @file This file exports utility functions for common operations.
|
|
5
|
+
*/
|
|
6
|
+
/**
|
|
7
|
+
* Generates a random string of the specified length.
|
|
8
|
+
*
|
|
9
|
+
* @param {number} [length=10] - The length of the random string to generate. Default is 10.
|
|
10
|
+
* @return {string} A randomly generated string.
|
|
11
|
+
*/
|
|
12
|
+
declare function randomString(length?: number): string;
|
|
13
|
+
/**
|
|
14
|
+
* Collection of common operations utility functions.
|
|
15
|
+
*/
|
|
16
|
+
export declare const CommonOperations: {
|
|
17
|
+
randomString: typeof randomString;
|
|
18
|
+
};
|
|
19
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ArraySortPipe implements PipeTransform {
|
|
4
|
+
transform(array: any, field: string, type?: string): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArraySortPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ArraySortPipe, "sort", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CountNonEmptyFieldsPipe implements PipeTransform {
|
|
4
|
+
transform(records: Record<string, string | null>): number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CountNonEmptyFieldsPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<CountNonEmptyFieldsPipe, "countNonEmptyFields", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import moment from 'moment';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DateLocalizationPipe implements PipeTransform {
|
|
5
|
+
transform(value: string | moment.Moment, dateFormat: string): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateLocalizationPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DateLocalizationPipe, "dateLocalization", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FallbackTranslatePipe implements PipeTransform {
|
|
5
|
+
private translate;
|
|
6
|
+
constructor(translate: TranslateService);
|
|
7
|
+
transform(key: string, fallback: string): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FallbackTranslatePipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FallbackTranslatePipe, "fallbackTranslate", true>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FallbackTranslatePipe>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CurrencyPipe } from '@angular/common';
|
|
2
|
+
import { PipeTransform } from '@angular/core';
|
|
3
|
+
import { GridColumn } from '@naniteninja/ionic-lib';
|
|
4
|
+
import { DateLocalizationPipe } from '../date-localization/date-localization.pipe';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class GetDisplayValuePipe implements PipeTransform {
|
|
7
|
+
private dateLocalizationPipe;
|
|
8
|
+
private currencyPipe;
|
|
9
|
+
constructor(dateLocalizationPipe: DateLocalizationPipe, currencyPipe: CurrencyPipe);
|
|
10
|
+
transform(data: any, column: GridColumn, dateFormat: string, corporateCurrency?: string): string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetDisplayValuePipe, never>;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetDisplayValuePipe, "getDisplayValue", false>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { SelectOption } from '@naniteninja/ionic-lib';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class GetMultiSelectDisplayTextPipe implements PipeTransform {
|
|
5
|
+
transform(formValue: any[], options: SelectOption<any>[]): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetMultiSelectDisplayTextPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetMultiSelectDisplayTextPipe, "getMultiSelectDisplayText", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class InitialsPipe implements PipeTransform {
|
|
4
|
+
transform(fullName: string, numChars?: number): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InitialsPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<InitialsPipe, "initials", true>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RoundPipe implements PipeTransform {
|
|
4
|
+
transform(value: number): number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { SelectOption } from '@naniteninja/ionic-lib';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class UpdateLLMPreferencePipe implements PipeTransform {
|
|
5
|
+
transform(values: SelectOption<string>[], llmPreferenceLoading: string[]): SelectOption<string>[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UpdateLLMPreferencePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<UpdateLLMPreferencePipe, "updateLLMPreference", true>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { JSONSchema } from '@ngx-pwa/local-storage';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare abstract class AbstractCacheService {
|
|
5
|
+
abstract saveLocalStorage(key: string, value: unknown, schema?: JSONSchema): void;
|
|
6
|
+
abstract getLocalStorage<T>(key: string): Observable<T>;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractCacheService, never>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AbstractCacheService>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AlertPopupComponent implements OnChanges {
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
timeState: number;
|
|
7
|
+
number: number;
|
|
8
|
+
closed: EventEmitter<boolean>;
|
|
9
|
+
isClosing: boolean;
|
|
10
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
11
|
+
handleCloseEvent(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AlertPopupComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertPopupComponent, "lib-alert-popup", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "timeState": { "alias": "timeState"; "required": false; }; "number": { "alias": "number"; "required": false; }; }, { "closed": "closed"; }, never, never, false, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { PopupModalService } from '@naniteninja/ionic-lib';
|
|
4
|
+
import { FormFieldType } from '@naniteninja/ionic-lib';
|
|
5
|
+
import { SelectOptionWithTemplate } from '../../../model/select-option-template';
|
|
6
|
+
import { ChatService } from './../../../components/chat/chat.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class LibMessageModalComponent implements OnInit {
|
|
9
|
+
private fb;
|
|
10
|
+
private popupModalService;
|
|
11
|
+
private chatService;
|
|
12
|
+
modalData?: {
|
|
13
|
+
responseTime: string;
|
|
14
|
+
};
|
|
15
|
+
toggleTemplate: TemplateRef<HTMLElement>;
|
|
16
|
+
options: SelectOptionWithTemplate<string>[];
|
|
17
|
+
messageType: FormControl<string>;
|
|
18
|
+
dateTimePicker: FormControl<Date>;
|
|
19
|
+
toggleLongPress: FormControl<boolean>;
|
|
20
|
+
type: FormFieldType;
|
|
21
|
+
formTime: FormGroup;
|
|
22
|
+
constructor(fb: FormBuilder, popupModalService: PopupModalService, chatService: ChatService, modalData?: {
|
|
23
|
+
responseTime: string;
|
|
24
|
+
});
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
onSubmit(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibMessageModalComponent, [null, null, null, { optional: true; }]>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibMessageModalComponent, "lib-message-modal", never, {}, {}, never, never, false, never>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { StatusTypes } from '../../../enums/status-types';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class StatusIconComponent {
|
|
4
|
+
type: StatusTypes;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StatusIconComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StatusIconComponent, "lib-status-icon", never, { "type": { "alias": "type"; "required": true; }; }, {}, never, never, false, never>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./shared/status-icon/status-icon.component";
|
|
3
|
+
import * as i2 from "./shared/alert-popup/alert-popup.component";
|
|
4
|
+
import * as i3 from "./shared/message-modal/message-modal.component";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@naniteninja/ionic-lib";
|
|
7
|
+
import * as i6 from "@angular/forms";
|
|
8
|
+
import * as i7 from "@ngx-translate/core";
|
|
9
|
+
export declare class SharedModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, [typeof i1.StatusIconComponent, typeof i2.AlertPopupComponent, typeof i3.LibMessageModalComponent], [typeof i4.CommonModule, typeof i5.FormFieldModule, typeof i5.ButtonsModule, typeof i5.InputDateFieldModule, typeof i5.InputFieldModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i7.TranslateModule, typeof i5.ToggleModule], [typeof i1.StatusIconComponent, typeof i2.AlertPopupComponent, typeof i3.LibMessageModalComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
13
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,41 +1,43 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naniteninja/dashboard-components-lib",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"author": "naniteninja",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {
|
|
9
|
-
"@angular/common": "^
|
|
10
|
-
"@angular/core": "^
|
|
11
|
-
"@angular/forms": "^
|
|
12
|
-
"@angular/google-maps": "^
|
|
13
|
-
"@angular/material": "^
|
|
14
|
-
"@capacitor/android": "^
|
|
15
|
-
"@capacitor/cli": "^
|
|
16
|
-
"@capacitor/core": "^
|
|
17
|
-
"@capacitor/motion": "^
|
|
18
|
-
"@ionic/angular": "8.
|
|
19
|
-
"@ngx-pwa/local-storage": "^
|
|
20
|
-
"@ngx-translate/core": "^
|
|
21
|
-
"@naniteninja/ionic-lib": "^
|
|
9
|
+
"@angular/common": "^17.3.12",
|
|
10
|
+
"@angular/core": "^17.3.12",
|
|
11
|
+
"@angular/forms": "^17.3.12",
|
|
12
|
+
"@angular/google-maps": "^17.3.10",
|
|
13
|
+
"@angular/material": "^17.3.10",
|
|
14
|
+
"@capacitor/android": "^6.2.1",
|
|
15
|
+
"@capacitor/cli": "^6.2.1",
|
|
16
|
+
"@capacitor/core": "^6.0.1",
|
|
17
|
+
"@capacitor/motion": "^6.0.1",
|
|
18
|
+
"@ionic/angular": "^8.4.1",
|
|
19
|
+
"@ngx-pwa/local-storage": "^17.0.0",
|
|
20
|
+
"@ngx-translate/core": "^15.0.0",
|
|
21
|
+
"@naniteninja/ionic-lib": "^1.0.208",
|
|
22
22
|
"@types/inputmask": "^5.0.7",
|
|
23
|
-
"
|
|
23
|
+
"ang-jsoneditor": "^4.0.2",
|
|
24
|
+
"capacitor-screenshot": "^6.0.1",
|
|
24
25
|
"d3": "^7.9.0",
|
|
25
26
|
"date-fns": "^4.1.0",
|
|
26
27
|
"emoji-picker-element": "^1.26.3",
|
|
27
|
-
"google-libphonenumber": "^3.2.
|
|
28
|
+
"google-libphonenumber": "^3.2.41",
|
|
28
29
|
"inputmask": "^5.0.9",
|
|
29
30
|
"jsoneditor": "^10.2.0",
|
|
30
|
-
"ng-otp-input": "
|
|
31
|
-
"ngx-image-compress": "^
|
|
32
|
-
"ngx-image-cropper": "^
|
|
33
|
-
"ngx-infinite-scroll": "^
|
|
34
|
-
"ngx-mask": "^
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"swiper": "^11.2.
|
|
31
|
+
"ng-otp-input": "2.0.8",
|
|
32
|
+
"ngx-image-compress": "^15.1.6",
|
|
33
|
+
"ngx-image-cropper": "^7.2.1",
|
|
34
|
+
"ngx-infinite-scroll": "^17.0.1",
|
|
35
|
+
"ngx-mask": "^17.1.8",
|
|
36
|
+
"ngx-popperjs": "^17.0.1",
|
|
37
|
+
"primeicons": "^6.0.1",
|
|
38
|
+
"primeng": "^17.18.15",
|
|
39
|
+
"swiper": "^11.2.8",
|
|
40
|
+
"rrule": "^2.8.1"
|
|
39
41
|
},
|
|
40
42
|
"keywords": [
|
|
41
43
|
"angular",
|
|
@@ -55,6 +57,8 @@
|
|
|
55
57
|
},
|
|
56
58
|
".": {
|
|
57
59
|
"types": "./index.d.ts",
|
|
60
|
+
"esm2022": "./esm2022/naniteninja-dashboard-components-lib.mjs",
|
|
61
|
+
"esm": "./esm2022/naniteninja-dashboard-components-lib.mjs",
|
|
58
62
|
"default": "./fesm2022/naniteninja-dashboard-components-lib.mjs"
|
|
59
63
|
}
|
|
60
64
|
},
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
export * from './lib/components/auto-delegation/auto-delegation-modal.component';
|
|
2
|
+
export * from './lib/components/auto-delegation/enums/auto-delegation.event-type.enum';
|
|
3
|
+
export * from './lib/components/auto-delegation/enums/auto-delegation.event-value.enum';
|
|
4
|
+
export * from './lib/components/auto-delegation/interface/auto-delegation-data.interface';
|
|
5
|
+
export * from './lib/components/auto-delegation/interface/auto-delegation.event.interface';
|
|
6
|
+
export * from './lib/components/auto-delegation/interface/auto-delegation.modal-data.interface';
|
|
7
|
+
export * from './lib/components/auto-delegation/interface/preferences.interface';
|
|
8
|
+
export * from './lib/components/calendar/agenda/agenda.component';
|
|
9
|
+
export * from './lib/components/calendar/agenda/agenda.module';
|
|
10
|
+
export * from './lib/components/calendar/agenda/interfaces/agenda.day.interface';
|
|
11
|
+
export * from './lib/components/calendar/agenda/interfaces/agenda.event.inetrface';
|
|
12
|
+
export * from './lib/components/calendar/components/event-form/event-form.component';
|
|
13
|
+
export * from './lib/components/calendar/components/event-form/event-form.module';
|
|
14
|
+
export * from './lib/components/calendar/enums/calendar.account.enum';
|
|
15
|
+
export * from './lib/components/calendar/enums/calendar.account.icons.enum';
|
|
16
|
+
export * from './lib/components/calendar/enums/event-type.enum';
|
|
17
|
+
export * from './lib/components/calendar/enums/recurring.edit.options.enum';
|
|
18
|
+
export * from './lib/components/calendar/enums/recurring.type.enum';
|
|
19
|
+
export * from './lib/components/calendar/interfaces/calendar.account.interface';
|
|
20
|
+
export * from './lib/components/calendar/interfaces/calendar.account.theme.interface';
|
|
21
|
+
export * from './lib/components/calendar/interfaces/event.form.output.interface';
|
|
22
|
+
export * from './lib/components/calendar/interfaces/event.interface';
|
|
23
|
+
export * from './lib/components/calendar/interfaces/event.time.interface';
|
|
24
|
+
export * from './lib/components/calendar/interfaces/recurring.event.interface';
|
|
25
|
+
export * from './lib/components/calendar/interfaces/recurring.exception.interface';
|
|
26
|
+
export * from './lib/components/calendar/interfaces/recurring.pattern.interface';
|
|
27
|
+
export * from './lib/components/calendar/lookups/recurring.options.lookup';
|
|
28
|
+
export * from './lib/components/calendar/scheduler/enums/schedule-date-status.enum';
|
|
29
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.action.interface';
|
|
30
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.event.interface';
|
|
31
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface';
|
|
32
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.slots.interface';
|
|
33
|
+
export * from './lib/components/calendar/scheduler/scheduler.component';
|
|
34
|
+
export * from './lib/components/calendar/services/calendar-utils.service';
|
|
35
|
+
export * from './lib/components/chat-suggestion/chat-suggestion.component';
|
|
36
|
+
export * from './lib/components/chat-suggestion/interfaces/chat-suggestion.interface';
|
|
37
|
+
export * from './lib/components/chat/chat.component';
|
|
38
|
+
export * from './lib/components/chat/chat.component.module';
|
|
39
|
+
export * from './lib/components/chat/chat.service';
|
|
40
|
+
export * from './lib/components/chat/enums/sender-types.enum';
|
|
41
|
+
export * from './lib/components/chat/interfaces/date-messages.interface';
|
|
42
|
+
export * from './lib/components/chat/interfaces/message-attachment.interface';
|
|
43
|
+
export * from './lib/components/chat/interfaces/message.interface';
|
|
44
|
+
export * from './lib/components/circle-progress/circle-progress.component';
|
|
45
|
+
export * from './lib/components/circle-progress/circle-progress.module';
|
|
46
|
+
export * from './lib/components/circle-progress/enums/circle-variable.enum';
|
|
47
|
+
export * from './lib/components/circle-progress/interfaces/circle-progress-config.interface';
|
|
48
|
+
export * from './lib/components/client-home/client-home.component';
|
|
49
|
+
export * from './lib/components/client-home/enums/client-home-component.enum';
|
|
50
|
+
export * from './lib/components/client-home/interfaces/chat-meta.interface';
|
|
51
|
+
export * from './lib/components/client-home/interfaces/home-dashboard-inputs.interface';
|
|
52
|
+
export * from './lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface';
|
|
53
|
+
export * from './lib/components/client-home/interfaces/partial-circle-progress-colors.interface';
|
|
54
|
+
export * from './lib/components/client-home/lookup/client-home.config';
|
|
55
|
+
export * from './lib/components/client-home/lookup/inner-progress-default-colors.config';
|
|
56
|
+
export * from './lib/components/client-home/lookup/inner-progress-pink-colors.config';
|
|
57
|
+
export * from './lib/components/client-home/lookup/inner-progress-purple-colors.config';
|
|
58
|
+
export * from './lib/components/client-home/lookup/inner-progress-white-colors.config';
|
|
59
|
+
export * from './lib/components/client-home/lookup/progress-default-colors.config';
|
|
60
|
+
export * from './lib/components/client-home/lookup/progress-white-colors.config';
|
|
61
|
+
export * from './lib/components/client-home/pipes/chat-meta.pipe';
|
|
62
|
+
export * from './lib/components/client-home/pipes/get-color-by-matcher.pipe';
|
|
63
|
+
export * from './lib/components/client-match-overview/client-match-overview.component';
|
|
64
|
+
export * from './lib/components/client-match-overview/enums/conversation-flag.enum';
|
|
65
|
+
export * from './lib/components/client-match-overview/enums/counter-flag-base.enum';
|
|
66
|
+
export * from './lib/components/client-match-overview/enums/inner-circle-state.enum';
|
|
67
|
+
export * from './lib/components/client-match-overview/interfaces/client-match-overview.interface';
|
|
68
|
+
export * from './lib/components/client-match-overview/interfaces/conversation-flag.interface';
|
|
69
|
+
export * from './lib/components/client-match-overview/interfaces/dashboard-match-request.interface';
|
|
70
|
+
export * from './lib/components/client-match-overview/interfaces/progress-facts.interface';
|
|
71
|
+
export * from './lib/components/client-match-overview/lookups/computer-inner-state.lookup';
|
|
72
|
+
export * from './lib/components/client-match-overview/progress-ticker/progress-gap.config';
|
|
73
|
+
export * from './lib/components/client-match-overview/progress-ticker/progress-ticker.config';
|
|
74
|
+
export * from './lib/components/client-match-overview/progress-ticker/progress-ticker.service';
|
|
75
|
+
export * from './lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component';
|
|
76
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options';
|
|
77
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options';
|
|
78
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options';
|
|
79
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options';
|
|
80
|
+
export * from './lib/components/lib-client-dashboard/client-dashboard.component';
|
|
81
|
+
export * from './lib/components/lib-client-dashboard/enums/alert-status-fields.enum';
|
|
82
|
+
export * from './lib/components/lib-client-dashboard/enums/client-dashboard-component.enum';
|
|
83
|
+
export * from './lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface';
|
|
84
|
+
export * from './lib/components/lib-client-dashboard/lookups/client-dashboard.config';
|
|
85
|
+
export * from './lib/components/lib-compose-matcher-dash/compose-matcher-dash.component';
|
|
86
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface';
|
|
87
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface';
|
|
88
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface';
|
|
89
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface';
|
|
90
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface';
|
|
91
|
+
export * from './lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe';
|
|
92
|
+
export * from './lib/components/matcher-statuses/enums/matcher-statuses.enum';
|
|
93
|
+
export * from './lib/components/matcher-statuses/lookups/matcher-statuses.lookup';
|
|
94
|
+
export * from './lib/components/matcher-statuses/matcher-statuses.component';
|
|
95
|
+
export * from './lib/components/matcher-statuses/pipes/is-status-included.pipe';
|
|
96
|
+
export * from './lib/components/profile-card/profile-card.component';
|
|
97
|
+
export * from './lib/components/profile-card/profile-card.module';
|
|
98
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-circle.interface';
|
|
99
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-defs-f.interface';
|
|
100
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-defs-lg.interface';
|
|
101
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-defs-rg.interface';
|
|
102
|
+
export * from './lib/components/spider-chart/interfaces/config.interface';
|
|
103
|
+
export * from './lib/components/spider-chart/interfaces/dataset.interface';
|
|
104
|
+
export * from './lib/components/spider-chart/interfaces/polygon-color.interface';
|
|
105
|
+
export * from './lib/components/spider-chart/interfaces/spider-chart-attribute.interface';
|
|
106
|
+
export * from './lib/components/spider-chart/lookup/default-spider-config';
|
|
107
|
+
export * from './lib/components/spider-chart/lookup/demo-polygon-colors.lookup';
|
|
108
|
+
export * from './lib/components/spider-chart/lookup/svg-config.lookup';
|
|
109
|
+
export * from './lib/components/spider-chart/spider-chart.component';
|
|
110
|
+
export * from './lib/operations/operations';
|
|
111
|
+
export * from './lib/pipes/array-sort/array.sort.pipe';
|
|
112
|
+
export * from './lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe';
|
|
113
|
+
export * from './lib/pipes/date-localization/date-localization.pipe';
|
|
114
|
+
export * from './lib/pipes/get-display-value/get-display-value.pipe';
|
|
115
|
+
export * from './lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe';
|
|
116
|
+
export * from './lib/pipes/initials/initials.pipe';
|
|
117
|
+
export * from './lib/pipes/round/round.pipe';
|
|
118
|
+
export * from './lib/services/abstract-cache.service';
|
|
119
|
+
export * from './lib/shared/shared.module';
|
|
120
|
+
export * from './lib/shared/shared/alert-popup/alert-popup.component';
|
|
121
|
+
export * from './lib/shared/shared/message-modal/message-modal.component';
|
|
122
|
+
export * from './lib/shared/shared/status-icon/status-icon.component';
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
--cyrano-solid-no-transparency: rgba(0, 0, 0, 1);
|
|
30
30
|
--border-fading-edges: linear-gradient(to right, rgba(0, 0, 0, 0), #d9d9d9 50%, rgba(0, 0, 0, 0));
|
|
31
31
|
--mat-option-selected-state-label-text-color: #fff !important;
|
|
32
|
-
--mat-pseudo-checkbox-
|
|
32
|
+
--mat-minimal-pseudo-checkbox-selected-checkmark-color: var(--cyrano-pink-shade-1, #fe3c72);
|
|
33
33
|
--mat-autocomplete-background-color: var(--cyrano-dark-color);
|
|
34
34
|
--font-family: 'Gilroy-Regular', serif !important;
|
|
35
35
|
--border-radius: 100px !important;
|
|
36
36
|
--mat-select-focused-arrow-color: var(--focus-indicator);
|
|
37
|
-
--
|
|
38
|
-
--
|
|
37
|
+
--mdc-filled-text-field-focus-active-indicator-color: var(--focus-indicator);
|
|
38
|
+
--mdc-filled-text-field-caret-color: var(--focus-indicator);
|
|
39
39
|
font-family: var(--font-family);
|
|
40
40
|
|
|
41
41
|
// error gradient
|