@naniteninja/dashboard-components-lib 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/auto-delegation/animations.mjs +20 -0
- package/esm2022/lib/components/auto-delegation/auto-delegation-modal.component.mjs +106 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.mjs +6 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.mjs +7 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.event.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/preferences.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.mjs +37 -0
- package/esm2022/lib/components/calendar/agenda/agenda.component.mjs +98 -0
- package/esm2022/lib/components/calendar/agenda/agenda.module.mjs +24 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.mjs +2 -0
- package/esm2022/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.mjs +40 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.component.mjs +275 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.module.mjs +89 -0
- package/esm2022/lib/components/calendar/components/event-info/event-info.component.mjs +40 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.icons.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/event-type.enum.mjs +10 -0
- package/esm2022/lib/components/calendar/enums/recurring.edit.options.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/enums/recurring.type.enum.mjs +8 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.theme.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.output.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.time.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.exception.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.pattern.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/lookups/recurring.options.lookup.mjs +30 -0
- package/esm2022/lib/components/calendar/scheduler/enums/schedule-date-status.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/mock-schedule.mjs +80 -0
- package/esm2022/lib/components/calendar/scheduler/scheduler.component.mjs +144 -0
- package/esm2022/lib/components/calendar/services/calendar-utils.service.mjs +211 -0
- package/esm2022/lib/components/chat/chat.component.mjs +307 -0
- package/esm2022/lib/components/chat/chat.component.module.mjs +85 -0
- package/esm2022/lib/components/chat/chat.service.mjs +63 -0
- package/esm2022/lib/components/chat/enums/sender-types.enum.mjs +6 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.component.mjs +77 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.service.mjs +41 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-media-format.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-object.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-result.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/date-messages.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message-attachment.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/send-options-message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/type-send-message.enum.mjs +7 -0
- package/esm2022/lib/components/chat-suggestion/chat-suggestion.component.mjs +21 -0
- package/esm2022/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/circle-progress/circle-progress.component.mjs +143 -0
- package/esm2022/lib/components/circle-progress/circle-progress.module.mjs +18 -0
- package/esm2022/lib/components/circle-progress/enums/circle-variable.enum.mjs +6 -0
- package/esm2022/lib/components/circle-progress/interfaces/circle-progress-config.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/client-home.component.mjs +123 -0
- package/esm2022/lib/components/client-home/enums/client-home-component.enum.mjs +9 -0
- package/esm2022/lib/components/client-home/interfaces/chat-meta.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/home-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/lookup/client-home.config.mjs +30 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-default-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-pink-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-purple-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-teal-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-default-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/pipes/chat-meta.pipe.mjs +60 -0
- package/esm2022/lib/components/client-home/pipes/get-color-by-matcher.pipe.mjs +33 -0
- package/esm2022/lib/components/client-match-overview/client-match-overview.component.mjs +300 -0
- package/esm2022/lib/components/client-match-overview/enums/conversation-flag.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/counter-flag-base.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/inner-circle-state.enum.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/interfaces/client-match-overview.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/conversation-flag.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-decision.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-facts.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/lookups/computer-inner-state.lookup.mjs +81 -0
- package/esm2022/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-gap.config.mjs +4 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.config.mjs +3 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.service.mjs +43 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.mjs +113 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.mjs +11 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.mjs +27 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.mjs +19 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.mjs +21 -0
- package/esm2022/lib/components/lib-client-dashboard/client-dashboard.component.mjs +170 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.mjs +11 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.mjs +7 -0
- package/esm2022/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-client-dashboard/lookups/client-dashboard.config.mjs +15 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.mjs +146 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.mjs +21 -0
- package/esm2022/lib/components/matcher-statuses/enums/matcher-statuses.enum.mjs +15 -0
- package/esm2022/lib/components/matcher-statuses/interfaces/status.interface.mjs +2 -0
- package/esm2022/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.mjs +54 -0
- package/esm2022/lib/components/matcher-statuses/matcher-statuses.component.mjs +58 -0
- package/esm2022/lib/components/matcher-statuses/pipes/is-status-included.pipe.mjs +19 -0
- package/esm2022/lib/components/profile-card/profile-card.component.mjs +35 -0
- package/esm2022/lib/components/profile-card/profile-card.module.mjs +19 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-circle.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/config.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/dataset.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/polygon-color.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.lookup.mjs +18 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.mjs +67 -0
- package/esm2022/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.mjs +11 -0
- package/esm2022/lib/components/spider-chart/lookup/svg-config.lookup.mjs +277 -0
- package/esm2022/lib/components/spider-chart/spider-chart.component.mjs +235 -0
- package/esm2022/lib/enums/direction.enum.mjs +6 -0
- package/esm2022/lib/enums/form-field-type.mjs +30 -0
- package/esm2022/lib/enums/local-storage-keys.enum.mjs +5 -0
- package/esm2022/lib/enums/status-types.mjs +8 -0
- package/esm2022/lib/model/select-option-template.mjs +2 -0
- package/esm2022/lib/operations/operations.mjs +19 -0
- package/esm2022/lib/pipes/array-sort/array.sort.pipe.mjs +49 -0
- package/esm2022/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.mjs +17 -0
- package/esm2022/lib/pipes/date-localization/date-localization.pipe.mjs +31 -0
- package/esm2022/lib/pipes/fallback-translate/fallback-translate.pipe.mjs +28 -0
- package/esm2022/lib/pipes/get-display-value/get-display-value.pipe.mjs +59 -0
- package/esm2022/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.mjs +22 -0
- package/esm2022/lib/pipes/initials/initials.pipe.mjs +25 -0
- package/esm2022/lib/pipes/round/round.pipe.mjs +17 -0
- package/esm2022/lib/pipes/update-llm-preference/update-llm-preference.pipe.mjs +25 -0
- package/esm2022/lib/services/abstract-cache.service.mjs +10 -0
- package/esm2022/lib/shared/shared/alert-popup/alert-popup.component.mjs +38 -0
- package/esm2022/lib/shared/shared/message-modal/message-modal.component.mjs +95 -0
- package/esm2022/lib/shared/shared/status-icon/status-icon.component.mjs +14 -0
- package/esm2022/lib/shared/shared.module.mjs +23 -0
- package/esm2022/naniteninja-dashboard-components-lib.mjs +5 -0
- package/esm2022/public-api.mjs +122 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs +4334 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auto-delegation/animations.d.ts +1 -0
- package/lib/components/auto-delegation/auto-delegation-modal.component.d.ts +29 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.d.ts +4 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.d.ts +5 -0
- package/lib/components/auto-delegation/interface/auto-delegation-data.interface.d.ts +31 -0
- package/lib/components/auto-delegation/interface/auto-delegation.event.interface.d.ts +6 -0
- package/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.d.ts +8 -0
- package/lib/components/auto-delegation/interface/preferences.interface.d.ts +17 -0
- package/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.d.ts +12 -0
- package/lib/components/calendar/agenda/agenda.component.d.ts +22 -0
- package/lib/components/calendar/agenda/agenda.module.d.ts +12 -0
- package/lib/components/calendar/agenda/interfaces/agenda.day.interface.d.ts +7 -0
- package/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.d.ts +9 -0
- package/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.d.ts +19 -0
- package/lib/components/calendar/components/event-form/event-form.component.d.ts +67 -0
- package/lib/components/calendar/components/event-form/event-form.module.d.ts +20 -0
- package/lib/components/calendar/components/event-info/event-info.component.d.ts +24 -0
- package/lib/components/calendar/enums/calendar.account.enum.d.ts +4 -0
- package/lib/components/calendar/enums/calendar.account.icons.enum.d.ts +4 -0
- package/lib/components/calendar/enums/event-type.enum.d.ts +8 -0
- package/lib/components/calendar/enums/recurring.edit.options.enum.d.ts +5 -0
- package/lib/components/calendar/enums/recurring.type.enum.d.ts +6 -0
- package/lib/components/calendar/interfaces/calendar.account.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/calendar.account.theme.interface.d.ts +5 -0
- package/lib/components/calendar/interfaces/event.form.interface.d.ts +22 -0
- package/lib/components/calendar/interfaces/event.form.output.interface.d.ts +10 -0
- package/lib/components/calendar/interfaces/event.interface.d.ts +33 -0
- package/lib/components/calendar/interfaces/event.time.interface.d.ts +4 -0
- package/lib/components/calendar/interfaces/recurring.event.interface.d.ts +16 -0
- package/lib/components/calendar/interfaces/recurring.exception.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/recurring.pattern.interface.d.ts +16 -0
- package/lib/components/calendar/lookups/recurring.options.lookup.d.ts +2 -0
- package/lib/components/calendar/scheduler/enums/schedule-date-status.enum.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.d.ts +10 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.d.ts +26 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.d.ts +13 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.d.ts +6 -0
- package/lib/components/calendar/scheduler/mock-schedule.d.ts +9 -0
- package/lib/components/calendar/scheduler/scheduler.component.d.ts +36 -0
- package/lib/components/calendar/services/calendar-utils.service.d.ts +39 -0
- package/lib/components/chat/chat.component.d.ts +70 -0
- package/lib/components/chat/chat.component.module.d.ts +22 -0
- package/lib/components/chat/chat.service.d.ts +15 -0
- package/lib/components/chat/enums/sender-types.enum.d.ts +4 -0
- package/lib/components/chat/gif-selector/gif-selector.component.d.ts +25 -0
- package/lib/components/chat/gif-selector/gif-selector.service.d.ts +15 -0
- package/lib/components/chat/gif-selector/tenor-media-format.interface.d.ts +7 -0
- package/lib/components/chat/gif-selector/tenor-object.interface.d.ts +5 -0
- package/lib/components/chat/gif-selector/tenor-result.interface.d.ts +16 -0
- package/lib/components/chat/interfaces/date-messages.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message-attachment.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message.interface.d.ts +11 -0
- package/lib/components/chat/interfaces/send-options-message.interface.d.ts +5 -0
- package/lib/components/chat/interfaces/type-send-message.enum.d.ts +5 -0
- package/lib/components/chat-suggestion/chat-suggestion.component.d.ts +9 -0
- package/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.d.ts +4 -0
- package/lib/components/circle-progress/circle-progress.component.d.ts +31 -0
- package/lib/components/circle-progress/circle-progress.module.d.ts +8 -0
- package/lib/components/circle-progress/enums/circle-variable.enum.d.ts +4 -0
- package/lib/components/circle-progress/interfaces/circle-progress-config.interface.d.ts +29 -0
- package/lib/components/client-home/client-home.component.d.ts +44 -0
- package/lib/components/client-home/enums/client-home-component.enum.d.ts +7 -0
- package/lib/components/client-home/interfaces/chat-meta.interface.d.ts +7 -0
- package/lib/components/client-home/interfaces/home-dashboard-inputs.interface.d.ts +45 -0
- package/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.d.ts +5 -0
- package/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.d.ts +9 -0
- package/lib/components/client-home/lookup/client-home.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-pink-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-purple-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-teal-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/pipes/chat-meta.pipe.d.ts +10 -0
- package/lib/components/client-home/pipes/get-color-by-matcher.pipe.d.ts +10 -0
- package/lib/components/client-match-overview/client-match-overview.component.d.ts +55 -0
- package/lib/components/client-match-overview/enums/conversation-flag.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/counter-flag-base.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/inner-circle-state.enum.d.ts +6 -0
- package/lib/components/client-match-overview/interfaces/client-match-overview.interface.d.ts +19 -0
- package/lib/components/client-match-overview/interfaces/conversation-flag.interface.d.ts +8 -0
- package/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.d.ts +7 -0
- package/lib/components/client-match-overview/interfaces/progress-decision.interface.d.ts +10 -0
- package/lib/components/client-match-overview/interfaces/progress-facts.interface.d.ts +11 -0
- package/lib/components/client-match-overview/lookups/computer-inner-state.lookup.d.ts +7 -0
- package/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.d.ts +5 -0
- package/lib/components/client-match-overview/progress-ticker/progress-gap.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.service.d.ts +11 -0
- package/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.d.ts +29 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.d.ts +2 -0
- package/lib/components/lib-client-dashboard/client-dashboard.component.d.ts +73 -0
- package/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.d.ts +9 -0
- package/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.d.ts +5 -0
- package/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.d.ts +29 -0
- package/lib/components/lib-client-dashboard/lookups/client-dashboard.config.d.ts +2 -0
- package/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.d.ts +48 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.d.ts +26 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.d.ts +8 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.d.ts +24 -0
- package/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.d.ts +9 -0
- package/lib/components/matcher-statuses/enums/matcher-statuses.enum.d.ts +13 -0
- package/lib/components/matcher-statuses/interfaces/status.interface.d.ts +6 -0
- package/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.d.ts +2 -0
- package/lib/components/matcher-statuses/matcher-statuses.component.d.ts +23 -0
- package/lib/components/matcher-statuses/pipes/is-status-included.pipe.d.ts +8 -0
- package/lib/components/profile-card/profile-card.component.d.ts +11 -0
- package/lib/components/profile-card/profile-card.module.d.ts +9 -0
- package/lib/components/spider-chart/interfaces/chart-data-circle.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/config.interface.d.ts +19 -0
- package/lib/components/spider-chart/interfaces/dataset.interface.d.ts +7 -0
- package/lib/components/spider-chart/interfaces/polygon-color.interface.d.ts +4 -0
- package/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.d.ts +6 -0
- package/lib/components/spider-chart/lookup/default-spider-config.d.ts +2 -0
- package/lib/components/spider-chart/lookup/default-spider-config.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/svg-config.lookup.d.ts +8 -0
- package/lib/components/spider-chart/spider-chart.component.d.ts +52 -0
- package/lib/enums/direction.enum.d.ts +4 -0
- package/lib/enums/form-field-type.d.ts +28 -0
- package/lib/enums/local-storage-keys.enum.d.ts +3 -0
- package/lib/enums/status-types.d.ts +6 -0
- package/lib/model/select-option-template.d.ts +5 -0
- package/lib/operations/operations.d.ts +19 -0
- package/lib/pipes/array-sort/array.sort.pipe.d.ts +7 -0
- package/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.d.ts +7 -0
- package/lib/pipes/date-localization/date-localization.pipe.d.ts +8 -0
- package/lib/pipes/fallback-translate/fallback-translate.pipe.d.ts +11 -0
- package/lib/pipes/get-display-value/get-display-value.pipe.d.ts +13 -0
- package/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.d.ts +8 -0
- package/lib/pipes/initials/initials.pipe.d.ts +7 -0
- package/lib/pipes/round/round.pipe.d.ts +7 -0
- package/lib/pipes/update-llm-preference/update-llm-preference.pipe.d.ts +8 -0
- package/lib/services/abstract-cache.service.d.ts +9 -0
- package/lib/shared/shared/alert-popup/alert-popup.component.d.ts +14 -0
- package/lib/shared/shared/message-modal/message-modal.component.d.ts +29 -0
- package/lib/shared/shared/status-icon/status-icon.component.d.ts +7 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/naniteninja-dashboard-components-lib-1.0.0.tgz +0 -0
- package/package.json +69 -0
- package/public-api.d.ts +121 -0
- package/src/assets/auto-delegation-modal/cross.svg +17 -0
- package/src/assets/auto-delegation-modal/menu.svg +3 -0
- package/src/assets/auto-delegation-modal/timer-center-dot.svg +25 -0
- package/src/assets/auto-delegation-modal/user-profile.svg +9 -0
- package/src/assets/circle-progress/circle-progress-1.svg +159 -0
- package/src/assets/circle-progress/circle-progress-2.svg +155 -0
- package/src/assets/circle-progress/circle-progress-3.svg +25 -0
- package/src/assets/circle-progress/circle-progress.svg +159 -0
- package/src/assets/client-match-overview/background-eclipse.svg +13 -0
- package/src/assets/fonts/calistoga/Calistoga-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Black.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BlackItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Bold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Heavy.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-HeavyItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Light.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-LightItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Medium.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-MediumItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-RegularItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Thin.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ThinItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLight.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf +0 -0
- package/src/assets/grid/icons/filter-button.svg +47 -0
- package/src/assets/grid/images/chips-background-shadow.svg +34 -0
- package/src/assets/icons/back-v2.svg +14 -0
- package/src/assets/icons/checkbox/checkbox-off.svg +72 -0
- package/src/assets/icons/checkbox/checkbox-on.svg +113 -0
- package/src/assets/icons/checkmark-button.svg +72 -0
- package/src/assets/icons/checkmark.svg +7 -0
- package/src/assets/icons/close-icon.svg +3 -0
- package/src/assets/icons/compose-matcher/notes.svg +4 -0
- package/src/assets/icons/compose-matcher/profile.svg +4 -0
- package/src/assets/icons/compose-matcher/suggest.svg +3 -0
- package/src/assets/icons/compose-matcher/visual.svg +3 -0
- package/src/assets/icons/default-profile.svg +23 -0
- package/src/assets/icons/defualt.svg +5 -0
- package/src/assets/icons/first-page.svg +7 -0
- package/src/assets/icons/incrementer/minus.svg +3 -0
- package/src/assets/icons/incrementer/plus.svg +3 -0
- package/src/assets/icons/info.svg +5 -0
- package/src/assets/icons/last-page.svg +7 -0
- package/src/assets/icons/minus.svg +3 -0
- package/src/assets/icons/next-page.svg +6 -0
- package/src/assets/icons/plus.svg +3 -0
- package/src/assets/icons/popup-defualt.svg +34 -0
- package/src/assets/icons/prev-page.svg +6 -0
- package/src/assets/icons/send-icon.svg +4 -0
- package/src/assets/icons/shake.svg +74 -0
- package/src/assets/icons/thumbs-up.svg +28 -0
- package/src/assets/nsfw/blazeface.bundle.js +2 -0
- package/src/assets/nsfw/model/group1-shard1of1 +0 -0
- package/src/assets/nsfw/model/model.json +4085 -0
- package/src/assets/nsfw/nsfwjs.bundle.js +2 -0
- package/src/assets/nsfw/tf.bundle.js +2 -0
- package/src/assets/scheduler/accept.svg +3 -0
- package/src/assets/scheduler/accept_active.svg +3 -0
- package/src/assets/scheduler/arrow.svg +13 -0
- package/src/assets/scheduler/cancel.svg +3 -0
- package/src/assets/scheduler/cancel_active.svg +3 -0
- package/src/assets/scheduler/heart.svg +18 -0
- package/src/assets/trait-visual/force-directed-graph.png +0 -0
- package/src/lib/shared-styles/common/_colors.scss +30 -0
- package/src/lib/shared-styles/common/animations.scss +48 -0
- package/src/lib/shared-styles/common/base-input-field.scss +132 -0
- package/src/lib/shared-styles/common/buttons.scss +152 -0
- package/src/lib/shared-styles/common/cards.scss +163 -0
- package/src/lib/shared-styles/common/client-dash.scss +5 -0
- package/src/lib/shared-styles/common/date-picker.scss +179 -0
- package/src/lib/shared-styles/common/draggable-scroll-and-marquee.scss +34 -0
- package/src/lib/shared-styles/common/feedback.scss +157 -0
- package/src/lib/shared-styles/common/fonts.scss +3 -0
- package/src/lib/shared-styles/common/information-card.scss +56 -0
- package/src/lib/shared-styles/common/input.scss +110 -0
- package/src/lib/shared-styles/common/lib-styles-utils.scss +157 -0
- package/src/lib/shared-styles/common/lists.scss +91 -0
- package/src/lib/shared-styles/common/login.scss +32 -0
- package/src/lib/shared-styles/common/maps.scss +10 -0
- package/src/lib/shared-styles/common/matcher-dash.scss +49 -0
- package/src/lib/shared-styles/common/modal_styles.scss +32 -0
- package/src/lib/shared-styles/common/notifications-list.scss +9 -0
- package/src/lib/shared-styles/common/overrides.scss +6 -0
- package/src/lib/shared-styles/common/pulse.scss +26 -0
- package/src/lib/shared-styles/common/swiper.scss +5 -0
- package/src/lib/shared-styles/common/tab-menu.scss +74 -0
- package/src/lib/shared-styles/common/theme.scss +55 -0
- package/src/lib/shared-styles/common/typography.scss +121 -0
- package/src/lib/shared-styles/common/user-menu.scss +129 -0
- package/src/lib/shared-styles/fonts/calistoga.font.scss +6 -0
- package/src/lib/shared-styles/fonts/gilroy.font.scss +160 -0
- package/src/lib/shared-styles/images/compress.png +0 -0
- package/src/lib/shared-styles/images/expand.png +0 -0
- package/src/lib/shared-styles/styles.scss +25 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SeeMoreAnimation: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { LibMenuItem, PopupModalService } from '@naniteninja/ionic-lib';
|
|
3
|
+
import { IAutoDelegationData } from './interface/auto-delegation-data.interface';
|
|
4
|
+
import { IAutoDelegationEvent } from './interface/auto-delegation.event.interface';
|
|
5
|
+
import { IAutoDelegationModalData } from './interface/auto-delegation.modal-data.interface';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class LibAutoDelegationModalComponent implements OnInit, AfterViewInit {
|
|
8
|
+
private changeDetectorRef;
|
|
9
|
+
private popupModalService;
|
|
10
|
+
modalData?: IAutoDelegationModalData;
|
|
11
|
+
childModalElementRef: ElementRef<HTMLDivElement>;
|
|
12
|
+
countdown: number;
|
|
13
|
+
expandedBaseCard?: boolean;
|
|
14
|
+
data: IAutoDelegationData;
|
|
15
|
+
menuItems: LibMenuItem[];
|
|
16
|
+
event: EventEmitter<IAutoDelegationEvent>;
|
|
17
|
+
totalStrokeLength: number;
|
|
18
|
+
currentCountdownAt: number;
|
|
19
|
+
activeCountdownPathId: string;
|
|
20
|
+
strokeDashOffset: number;
|
|
21
|
+
componentData: IAutoDelegationModalData | null;
|
|
22
|
+
constructor(changeDetectorRef: ChangeDetectorRef, popupModalService: PopupModalService, modalData?: IAutoDelegationModalData);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngAfterViewInit(): void;
|
|
25
|
+
reject(): void;
|
|
26
|
+
accept(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibAutoDelegationModalComponent, [null, null, { optional: true; }]>;
|
|
28
|
+
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>;
|
|
29
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IAutoDelegationPreferences } from './preferences.interface';
|
|
2
|
+
export interface IAutoDelegationData {
|
|
3
|
+
imgSrc: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
name: string;
|
|
6
|
+
location: string;
|
|
7
|
+
menu: string[];
|
|
8
|
+
meetings?: number;
|
|
9
|
+
days?: string;
|
|
10
|
+
price: number;
|
|
11
|
+
marketPrice: number;
|
|
12
|
+
hand?: string;
|
|
13
|
+
mode?: string;
|
|
14
|
+
score?: number;
|
|
15
|
+
preferred?: number;
|
|
16
|
+
lifeTimeFee?: string;
|
|
17
|
+
lifeTimeMeetups?: number;
|
|
18
|
+
joinDate?: string;
|
|
19
|
+
preferences?: IAutoDelegationPreferences;
|
|
20
|
+
preferencesProfile?: string;
|
|
21
|
+
weight?: string;
|
|
22
|
+
heightpref?: string;
|
|
23
|
+
profile?: string[];
|
|
24
|
+
communicationStyle?: string;
|
|
25
|
+
goal?: string;
|
|
26
|
+
job?: string;
|
|
27
|
+
passions?: string[];
|
|
28
|
+
dates?: number;
|
|
29
|
+
msgs?: number;
|
|
30
|
+
planOptions?: string[];
|
|
31
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AutoDelegationEventTypes } from '../enums/auto-delegation.event-type.enum';
|
|
2
|
+
import { AutoDelegationEventValue } from '../enums/auto-delegation.event-value.enum';
|
|
3
|
+
export interface IAutoDelegationEvent {
|
|
4
|
+
type: AutoDelegationEventTypes;
|
|
5
|
+
value: AutoDelegationEventValue;
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LibMenuItem } from '@naniteninja/ionic-lib';
|
|
2
|
+
import { IAutoDelegationData } from './auto-delegation-data.interface';
|
|
3
|
+
export interface IAutoDelegationModalData {
|
|
4
|
+
countdown: number;
|
|
5
|
+
expandedBaseCard?: boolean;
|
|
6
|
+
data: IAutoDelegationData;
|
|
7
|
+
menuItems: LibMenuItem[];
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export interface IAutoDelegationPreferences {
|
|
2
|
+
bust: {
|
|
3
|
+
value: number;
|
|
4
|
+
moe: number;
|
|
5
|
+
};
|
|
6
|
+
waist: {
|
|
7
|
+
value: number;
|
|
8
|
+
moe: number;
|
|
9
|
+
};
|
|
10
|
+
height: {
|
|
11
|
+
value: number;
|
|
12
|
+
moe: number;
|
|
13
|
+
};
|
|
14
|
+
celibacy: number;
|
|
15
|
+
cooperation: number;
|
|
16
|
+
intelligence: number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { IAgendaDay } from '../interfaces/agenda.day.interface';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AgendaDayCardComponent implements OnInit {
|
|
5
|
+
adDay: boolean;
|
|
6
|
+
day: IAgendaDay;
|
|
7
|
+
fullName: string;
|
|
8
|
+
ngOnInit(): void;
|
|
9
|
+
private sanitizeHtml;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaDayCardComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AgendaDayCardComponent, "lib-agenda-day-card", never, { "adDay": { "alias": "adDay"; "required": false; }; "day": { "alias": "day"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { IAgendaDay } from './interfaces/agenda.day.interface';
|
|
4
|
+
import { IAgendaEvent } from './interfaces/agenda.event.inetrface';
|
|
5
|
+
import { Direction } from '../../../enums/direction.enum';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AgendaComponent implements OnInit {
|
|
8
|
+
adsTemplate?: TemplateRef<HTMLElement>;
|
|
9
|
+
loading$: Observable<boolean>;
|
|
10
|
+
startDate: Date;
|
|
11
|
+
endDate: Date;
|
|
12
|
+
set events(events: IAgendaEvent[]);
|
|
13
|
+
numberOfEvents: number;
|
|
14
|
+
days: IAgendaDay[];
|
|
15
|
+
direction: Direction;
|
|
16
|
+
private _events;
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
private buildAgendaDays;
|
|
19
|
+
private getSuccessiveEmptyDays;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AgendaComponent, never>;
|
|
21
|
+
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>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./agenda.component";
|
|
3
|
+
import * as i2 from "./agenda-day-card/agenda-day-card.component";
|
|
4
|
+
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@ionic/angular";
|
|
6
|
+
import * as i5 from "@ngx-translate/core";
|
|
7
|
+
import * as i6 from "@naniteninja/ionic-lib";
|
|
8
|
+
export declare class LibAgendaModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibAgendaModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LibAgendaModule, [typeof i1.AgendaComponent, typeof i2.AgendaDayCardComponent], [typeof i3.CommonModule, typeof i4.IonicModule, typeof i5.TranslateModule, typeof i6.DirectiveModule, typeof i6.AvatarComponent], [typeof i1.AgendaComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LibAgendaModule>;
|
|
12
|
+
}
|
package/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FormControl } from '@angular/forms';
|
|
3
|
+
import { SelectOption } from '@naniteninja/ionic-lib';
|
|
4
|
+
import { FormFieldType } from '../../../../enums/form-field-type';
|
|
5
|
+
import { FallbackTranslatePipe } from '../../../../pipes/fallback-translate/fallback-translate.pipe';
|
|
6
|
+
import { EditRecurringEventOptions } from '../../enums/recurring.edit.options.enum';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class LibEditRecurringEventComponent implements OnInit {
|
|
9
|
+
private fallbackTranslatePipe;
|
|
10
|
+
excludeCurrentInstance: boolean;
|
|
11
|
+
editOptionsCtrl: FormControl<EditRecurringEventOptions>;
|
|
12
|
+
options: SelectOption<EditRecurringEventOptions>[];
|
|
13
|
+
radioFieldType: FormFieldType;
|
|
14
|
+
constructor(fallbackTranslatePipe: FallbackTranslatePipe);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
private initRecurringOptions;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibEditRecurringEventComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibEditRecurringEventComponent, "lib-edit-recurring-event", never, { "excludeCurrentInstance": { "alias": "excludeCurrentInstance"; "required": false; }; "editOptionsCtrl": { "alias": "editOptionsCtrl"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { FormBuilder, FormControl, FormGroup } from '@angular/forms';
|
|
3
|
+
import { BaseComponent, LocationModel } from '@naniteninja/ionic-lib';
|
|
4
|
+
import { FallbackTranslatePipe } from '../../../../pipes/fallback-translate/fallback-translate.pipe';
|
|
5
|
+
import { EditRecurringEventOptions } from '../../enums/recurring.edit.options.enum';
|
|
6
|
+
import { ICalendarAccount } from '../../interfaces/calendar.account.interface';
|
|
7
|
+
import { IEventForm } from '../../interfaces/event.form.interface';
|
|
8
|
+
import { IEventFormOutput } from '../../interfaces/event.form.output.interface';
|
|
9
|
+
import { IEvent } from '../../interfaces/event.interface';
|
|
10
|
+
import { IRecurringEvent } from '../../interfaces/recurring.event.interface';
|
|
11
|
+
import { IRecurringEventException } from '../../interfaces/recurring.exception.interface';
|
|
12
|
+
import { CalendarUtilsService } from '../../services/calendar-utils.service';
|
|
13
|
+
import * as i0 from "@angular/core";
|
|
14
|
+
export declare class LibEventFormComponent extends BaseComponent {
|
|
15
|
+
private cdr;
|
|
16
|
+
fb: FormBuilder;
|
|
17
|
+
private calendarUtilService;
|
|
18
|
+
private fallbackTranslatePipe;
|
|
19
|
+
calendars: ICalendarAccount[];
|
|
20
|
+
get event(): IEvent;
|
|
21
|
+
set event(e: IEvent);
|
|
22
|
+
get draggedEvent(): IEvent;
|
|
23
|
+
set draggedEvent(e: IEvent);
|
|
24
|
+
updateRecurringEvent: EventEmitter<IEventFormOutput>;
|
|
25
|
+
updateDraggedEvent: EventEmitter<IEventFormOutput>;
|
|
26
|
+
delete: EventEmitter<IEventFormOutput>;
|
|
27
|
+
closeForm: EventEmitter<void>;
|
|
28
|
+
submitForm: EventEmitter<IEventFormOutput>;
|
|
29
|
+
editMode: boolean;
|
|
30
|
+
editOptionsCtrl: FormControl<EditRecurringEventOptions>;
|
|
31
|
+
modalTitle: string;
|
|
32
|
+
recurringTypeChanged: boolean;
|
|
33
|
+
cancelButtonTitle: string;
|
|
34
|
+
submitButtonTitle: string;
|
|
35
|
+
secondaryButtonTitle: string;
|
|
36
|
+
openModal: boolean;
|
|
37
|
+
showConfirm: boolean;
|
|
38
|
+
openRecurringOptions: boolean;
|
|
39
|
+
recurringOptions: IRecurringEvent[];
|
|
40
|
+
eventStart: Date;
|
|
41
|
+
form: FormGroup<IEventForm>;
|
|
42
|
+
recurringException: IRecurringEventException;
|
|
43
|
+
private initialFormValue;
|
|
44
|
+
private eventTime;
|
|
45
|
+
private _event;
|
|
46
|
+
private _draggedEvent;
|
|
47
|
+
private deleteConfirmed;
|
|
48
|
+
private updatedEvent;
|
|
49
|
+
constructor(cdr: ChangeDetectorRef, fb: FormBuilder, calendarUtilService: CalendarUtilsService, fallbackTranslatePipe: FallbackTranslatePipe);
|
|
50
|
+
onDeleteConfirm(): void;
|
|
51
|
+
onSubmitModal(): void;
|
|
52
|
+
onModalSecondaryButtonClick(): void;
|
|
53
|
+
saveEvent(): void;
|
|
54
|
+
onLocationChange(event: LocationModel): void;
|
|
55
|
+
resetModal(): void;
|
|
56
|
+
private initializeEventForm;
|
|
57
|
+
private buildForm;
|
|
58
|
+
private watchFormFields;
|
|
59
|
+
private handleAllDayEvents;
|
|
60
|
+
private updateEvent;
|
|
61
|
+
private allowSubmission;
|
|
62
|
+
private submitFormEvent;
|
|
63
|
+
private onEventChange;
|
|
64
|
+
private onDragEvent;
|
|
65
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibEventFormComponent, never>;
|
|
66
|
+
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>;
|
|
67
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./event-form.component";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
import * as i3 from "@ionic/angular";
|
|
6
|
+
import * as i4 from "@ngx-translate/core";
|
|
7
|
+
import * as i5 from "@angular/forms";
|
|
8
|
+
import * as i6 from "@naniteninja/ionic-lib";
|
|
9
|
+
import * as i7 from "../../../../pipes/fallback-translate/fallback-translate.pipe";
|
|
10
|
+
import * as i8 from "../event-info/event-info.component";
|
|
11
|
+
import * as i9 from "../edit-recurring-event/edit-recurring-event.component";
|
|
12
|
+
export declare class LibEventFormModule {
|
|
13
|
+
static forRoot(config: {
|
|
14
|
+
googleMapsKey: string;
|
|
15
|
+
googleMapsURL: string;
|
|
16
|
+
}): ModuleWithProviders<LibEventFormModule>;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibEventFormModule, never>;
|
|
18
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LibEventFormModule, [typeof i1.LibEventFormComponent], [typeof i2.CommonModule, typeof i3.IonicModule, typeof i4.TranslateModule, typeof i5.FormsModule, typeof i5.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 i7.FallbackTranslatePipe, typeof i8.LibEventInfoComponent, typeof i9.LibEditRecurringEventComponent, typeof i6.BaseComponent], [typeof i1.LibEventFormComponent]>;
|
|
19
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LibEventFormModule>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { FallbackTranslatePipe } from '../../../../pipes/fallback-translate/fallback-translate.pipe';
|
|
3
|
+
import { ICalendarAccount } from '../../interfaces/calendar.account.interface';
|
|
4
|
+
import { IEvent } from '../../interfaces/event.interface';
|
|
5
|
+
import { IRecurringEventException } from '../../interfaces/recurring.exception.interface';
|
|
6
|
+
import { CalendarUtilsService } from '../../services/calendar-utils.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class LibEventInfoComponent implements OnInit {
|
|
9
|
+
private fallbackTranslatePipe;
|
|
10
|
+
private calendarUtilService;
|
|
11
|
+
event: IEvent;
|
|
12
|
+
calendars: ICalendarAccount[];
|
|
13
|
+
calendarAccount: ICalendarAccount;
|
|
14
|
+
recurringException: IRecurringEventException;
|
|
15
|
+
updatedRecurringException: IRecurringEventException;
|
|
16
|
+
address: string;
|
|
17
|
+
title: string;
|
|
18
|
+
note: string;
|
|
19
|
+
constructor(fallbackTranslatePipe: FallbackTranslatePipe, calendarUtilService: CalendarUtilsService);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
private initEventInfo;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibEventInfoComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibEventInfoComponent, "lib-event-info", never, { "event": { "alias": "event"; "required": false; }; "calendars": { "alias": "calendars"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CalendarAccountEnum } from '../enums/calendar.account.enum';
|
|
2
|
+
import { ICalendarAccountTheme } from './calendar.account.theme.interface';
|
|
3
|
+
export interface ICalendarAccount {
|
|
4
|
+
_id?: string;
|
|
5
|
+
createdAt?: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
userId?: string;
|
|
8
|
+
type?: CalendarAccountEnum;
|
|
9
|
+
email?: string;
|
|
10
|
+
active?: boolean;
|
|
11
|
+
token?: string;
|
|
12
|
+
selected?: boolean;
|
|
13
|
+
theme?: ICalendarAccountTheme;
|
|
14
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { FormControl, FormGroup } from '@angular/forms';
|
|
2
|
+
import { LocationModel } from '@naniteninja/ionic-lib';
|
|
3
|
+
import { EventTypes } from '../enums/event-type.enum';
|
|
4
|
+
import { RecurringTypes } from '../enums/recurring.type.enum';
|
|
5
|
+
export interface IEventForm {
|
|
6
|
+
_id: FormControl<string>;
|
|
7
|
+
accountId: FormControl<string>;
|
|
8
|
+
type: FormControl<EventTypes>;
|
|
9
|
+
email: FormControl<string>;
|
|
10
|
+
title: FormControl<string>;
|
|
11
|
+
allDay: FormControl<boolean>;
|
|
12
|
+
startDate: FormControl<Date>;
|
|
13
|
+
startTime: FormControl<Date>;
|
|
14
|
+
endDate: FormControl<Date>;
|
|
15
|
+
endTime: FormControl<Date>;
|
|
16
|
+
note: FormControl<string>;
|
|
17
|
+
location: FormControl<LocationModel>;
|
|
18
|
+
address: FormControl<string>;
|
|
19
|
+
recurringPattern: FormGroup<{
|
|
20
|
+
type: FormControl<RecurringTypes>;
|
|
21
|
+
}>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { EditRecurringEventOptions } from '../enums/recurring.edit.options.enum';
|
|
2
|
+
import { IEvent } from './event.interface';
|
|
3
|
+
export interface IEventFormOutput {
|
|
4
|
+
initialFormValue?: IEvent;
|
|
5
|
+
formValue?: IEvent;
|
|
6
|
+
event?: IEvent;
|
|
7
|
+
draggedEvent?: IEvent;
|
|
8
|
+
selectedRecurringOption?: EditRecurringEventOptions;
|
|
9
|
+
recurringTypeChanged?: boolean;
|
|
10
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { LocationModel } from '@naniteninja/ionic-lib';
|
|
2
|
+
import { EventTypes } from '../enums/event-type.enum';
|
|
3
|
+
import { IRecurringPattern } from './recurring.pattern.interface';
|
|
4
|
+
export interface IEvent {
|
|
5
|
+
_id?: string;
|
|
6
|
+
title?: string;
|
|
7
|
+
allDay?: boolean;
|
|
8
|
+
startDate: Date;
|
|
9
|
+
startTime: Date;
|
|
10
|
+
endDate?: Date;
|
|
11
|
+
recurringEndDate?: Date;
|
|
12
|
+
recurringStartDate?: Date;
|
|
13
|
+
endTime?: Date;
|
|
14
|
+
note?: string;
|
|
15
|
+
type?: EventTypes;
|
|
16
|
+
email?: string;
|
|
17
|
+
accountId?: string;
|
|
18
|
+
timeZone?: string;
|
|
19
|
+
location?: LocationModel;
|
|
20
|
+
recurring?: boolean;
|
|
21
|
+
exception?: boolean;
|
|
22
|
+
recurringPattern?: IRecurringPattern;
|
|
23
|
+
link?: string;
|
|
24
|
+
recurringEventId?: string;
|
|
25
|
+
recurringParentEventId?: string;
|
|
26
|
+
updateAll?: boolean;
|
|
27
|
+
updateAllFollowing?: boolean;
|
|
28
|
+
etag?: string;
|
|
29
|
+
recurringInstanceNo?: number;
|
|
30
|
+
zIndex?: number;
|
|
31
|
+
userId?: string;
|
|
32
|
+
address?: string;
|
|
33
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RecurringTypes } from '../enums/recurring.type.enum';
|
|
2
|
+
export interface IRecurringEvent {
|
|
3
|
+
title: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
translateParams?: {
|
|
6
|
+
day: string;
|
|
7
|
+
};
|
|
8
|
+
subTitle?: string;
|
|
9
|
+
type?: RecurringTypes;
|
|
10
|
+
rrule?: {
|
|
11
|
+
freq: any;
|
|
12
|
+
bymonth?: number;
|
|
13
|
+
bymonthday?: number;
|
|
14
|
+
byweekday?: any;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { LocationModel } from '@naniteninja/ionic-lib';
|
|
2
|
+
export interface IRecurringEventException {
|
|
3
|
+
title?: string;
|
|
4
|
+
allDay?: boolean;
|
|
5
|
+
note?: string;
|
|
6
|
+
location?: LocationModel;
|
|
7
|
+
startDate?: Date;
|
|
8
|
+
endDate?: Date;
|
|
9
|
+
startTime?: Date;
|
|
10
|
+
endTime?: Date;
|
|
11
|
+
recurringStartDate?: Date;
|
|
12
|
+
recurringEndDate?: Date;
|
|
13
|
+
recurringInstanceNo?: number;
|
|
14
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { RecurringTypes } from '../enums/recurring.type.enum';
|
|
2
|
+
import { IRecurringEventException } from './recurring.exception.interface';
|
|
3
|
+
export interface IRecurringPattern {
|
|
4
|
+
type?: RecurringTypes;
|
|
5
|
+
exceptions?: IRecurringEventException[];
|
|
6
|
+
deletions?: IRecurringEventException[];
|
|
7
|
+
updatedEvent?: IRecurringEventException;
|
|
8
|
+
recurringEndDate?: Date;
|
|
9
|
+
daysOfWeek?: string[];
|
|
10
|
+
interval?: number;
|
|
11
|
+
range?: {
|
|
12
|
+
type?: string;
|
|
13
|
+
startDate?: string;
|
|
14
|
+
endDate?: string;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IDashboardMatchRequest } from '../../../client-match-overview/interfaces/dashboard-match-request.interface';
|
|
2
|
+
import { ISchedulerEvent } from './scheduler.event.interface';
|
|
3
|
+
import { ISchedulerEventSuggestion } from './scheduler.event.suggestion.interface';
|
|
4
|
+
export interface ISchedulerAction {
|
|
5
|
+
event: ISchedulerEvent;
|
|
6
|
+
index: number;
|
|
7
|
+
suggestion?: ISchedulerEventSuggestion;
|
|
8
|
+
suggestionIndex?: number;
|
|
9
|
+
matchRequest?: IDashboardMatchRequest;
|
|
10
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ImageModel } from '@naniteninja/ionic-lib';
|
|
2
|
+
import { IDashboardMatchRequest } from '../../../client-match-overview/interfaces/dashboard-match-request.interface';
|
|
3
|
+
import { ScheduleDateStatus } from '../enums/schedule-date-status.enum';
|
|
4
|
+
import { ISchedulerEventSuggestion } from './scheduler.event.suggestion.interface';
|
|
5
|
+
export interface ISchedulerEvent {
|
|
6
|
+
_id?: string;
|
|
7
|
+
timeZone?: string;
|
|
8
|
+
start: Date;
|
|
9
|
+
day: string;
|
|
10
|
+
end: Date;
|
|
11
|
+
hours: string;
|
|
12
|
+
allDay?: boolean;
|
|
13
|
+
blocked?: boolean;
|
|
14
|
+
booked?: boolean;
|
|
15
|
+
expanded?: boolean;
|
|
16
|
+
suggestions?: ISchedulerEventSuggestion[];
|
|
17
|
+
index?: number;
|
|
18
|
+
startTime?: string;
|
|
19
|
+
endTime?: string;
|
|
20
|
+
status?: {
|
|
21
|
+
client: ScheduleDateStatus;
|
|
22
|
+
matcher: ScheduleDateStatus;
|
|
23
|
+
};
|
|
24
|
+
images?: ImageModel[];
|
|
25
|
+
matchRequest?: IDashboardMatchRequest;
|
|
26
|
+
}
|
package/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ScheduleDateStatus } from '../enums/schedule-date-status.enum';
|
|
2
|
+
export interface ISchedulerEventSuggestion {
|
|
3
|
+
_id?: string;
|
|
4
|
+
title: string;
|
|
5
|
+
checked?: boolean;
|
|
6
|
+
canceled?: boolean;
|
|
7
|
+
suggestionId?: string;
|
|
8
|
+
prospect?: string;
|
|
9
|
+
status?: {
|
|
10
|
+
client: ScheduleDateStatus;
|
|
11
|
+
matcher: ScheduleDateStatus;
|
|
12
|
+
};
|
|
13
|
+
}
|