@naniteninja/dashboard-components-lib 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/components/auto-delegation/animations.mjs +20 -0
- package/esm2022/lib/components/auto-delegation/auto-delegation-modal.component.mjs +106 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.mjs +6 -0
- package/esm2022/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.mjs +7 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.event.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.mjs +2 -0
- package/esm2022/lib/components/auto-delegation/interface/preferences.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.mjs +37 -0
- package/esm2022/lib/components/calendar/agenda/agenda.component.mjs +98 -0
- package/esm2022/lib/components/calendar/agenda/agenda.module.mjs +24 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.mjs +2 -0
- package/esm2022/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.mjs +40 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.component.mjs +275 -0
- package/esm2022/lib/components/calendar/components/event-form/event-form.module.mjs +89 -0
- package/esm2022/lib/components/calendar/components/event-info/event-info.component.mjs +40 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/calendar.account.icons.enum.mjs +6 -0
- package/esm2022/lib/components/calendar/enums/event-type.enum.mjs +10 -0
- package/esm2022/lib/components/calendar/enums/recurring.edit.options.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/enums/recurring.type.enum.mjs +8 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/calendar.account.theme.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.form.output.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/event.time.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.exception.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/interfaces/recurring.pattern.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/lookups/recurring.options.lookup.mjs +30 -0
- package/esm2022/lib/components/calendar/scheduler/enums/schedule-date-status.enum.mjs +7 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.mjs +2 -0
- package/esm2022/lib/components/calendar/scheduler/mock-schedule.mjs +80 -0
- package/esm2022/lib/components/calendar/scheduler/scheduler.component.mjs +144 -0
- package/esm2022/lib/components/calendar/services/calendar-utils.service.mjs +211 -0
- package/esm2022/lib/components/chat/chat.component.mjs +307 -0
- package/esm2022/lib/components/chat/chat.component.module.mjs +85 -0
- package/esm2022/lib/components/chat/chat.service.mjs +63 -0
- package/esm2022/lib/components/chat/enums/sender-types.enum.mjs +6 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.component.mjs +77 -0
- package/esm2022/lib/components/chat/gif-selector/gif-selector.service.mjs +41 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-media-format.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-object.interface.mjs +2 -0
- package/esm2022/lib/components/chat/gif-selector/tenor-result.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/date-messages.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message-attachment.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/send-options-message.interface.mjs +2 -0
- package/esm2022/lib/components/chat/interfaces/type-send-message.enum.mjs +7 -0
- package/esm2022/lib/components/chat-suggestion/chat-suggestion.component.mjs +21 -0
- package/esm2022/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.mjs +2 -0
- package/esm2022/lib/components/circle-progress/circle-progress.component.mjs +143 -0
- package/esm2022/lib/components/circle-progress/circle-progress.module.mjs +18 -0
- package/esm2022/lib/components/circle-progress/enums/circle-variable.enum.mjs +6 -0
- package/esm2022/lib/components/circle-progress/interfaces/circle-progress-config.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/client-home.component.mjs +123 -0
- package/esm2022/lib/components/client-home/enums/client-home-component.enum.mjs +9 -0
- package/esm2022/lib/components/client-home/interfaces/chat-meta.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/home-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.mjs +2 -0
- package/esm2022/lib/components/client-home/lookup/client-home.config.mjs +30 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-default-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-pink-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-purple-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-teal-colors.config.mjs +6 -0
- package/esm2022/lib/components/client-home/lookup/inner-progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-default-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/lookup/progress-white-colors.config.mjs +10 -0
- package/esm2022/lib/components/client-home/pipes/chat-meta.pipe.mjs +60 -0
- package/esm2022/lib/components/client-home/pipes/get-color-by-matcher.pipe.mjs +33 -0
- package/esm2022/lib/components/client-match-overview/client-match-overview.component.mjs +300 -0
- package/esm2022/lib/components/client-match-overview/enums/conversation-flag.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/counter-flag-base.enum.mjs +6 -0
- package/esm2022/lib/components/client-match-overview/enums/inner-circle-state.enum.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/interfaces/client-match-overview.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/conversation-flag.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-decision.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/interfaces/progress-facts.interface.mjs +2 -0
- package/esm2022/lib/components/client-match-overview/lookups/computer-inner-state.lookup.mjs +81 -0
- package/esm2022/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.mjs +8 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-gap.config.mjs +4 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.config.mjs +3 -0
- package/esm2022/lib/components/client-match-overview/progress-ticker/progress-ticker.service.mjs +43 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.mjs +113 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.mjs +11 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.mjs +27 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.mjs +19 -0
- package/esm2022/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.mjs +21 -0
- package/esm2022/lib/components/lib-client-dashboard/client-dashboard.component.mjs +170 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.mjs +11 -0
- package/esm2022/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.mjs +7 -0
- package/esm2022/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-client-dashboard/lookups/client-dashboard.config.mjs +15 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.mjs +146 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.mjs +2 -0
- package/esm2022/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.mjs +21 -0
- package/esm2022/lib/components/matcher-statuses/enums/matcher-statuses.enum.mjs +15 -0
- package/esm2022/lib/components/matcher-statuses/interfaces/status.interface.mjs +2 -0
- package/esm2022/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.mjs +54 -0
- package/esm2022/lib/components/matcher-statuses/matcher-statuses.component.mjs +58 -0
- package/esm2022/lib/components/matcher-statuses/pipes/is-status-included.pipe.mjs +19 -0
- package/esm2022/lib/components/profile-card/profile-card.component.mjs +35 -0
- package/esm2022/lib/components/profile-card/profile-card.module.mjs +19 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-circle.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/config.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/dataset.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/polygon-color.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.mjs +2 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.lookup.mjs +18 -0
- package/esm2022/lib/components/spider-chart/lookup/default-spider-config.mjs +67 -0
- package/esm2022/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.mjs +11 -0
- package/esm2022/lib/components/spider-chart/lookup/svg-config.lookup.mjs +277 -0
- package/esm2022/lib/components/spider-chart/spider-chart.component.mjs +235 -0
- package/esm2022/lib/enums/direction.enum.mjs +6 -0
- package/esm2022/lib/enums/form-field-type.mjs +30 -0
- package/esm2022/lib/enums/local-storage-keys.enum.mjs +5 -0
- package/esm2022/lib/enums/status-types.mjs +8 -0
- package/esm2022/lib/model/select-option-template.mjs +2 -0
- package/esm2022/lib/operations/operations.mjs +19 -0
- package/esm2022/lib/pipes/array-sort/array.sort.pipe.mjs +49 -0
- package/esm2022/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.mjs +17 -0
- package/esm2022/lib/pipes/date-localization/date-localization.pipe.mjs +31 -0
- package/esm2022/lib/pipes/fallback-translate/fallback-translate.pipe.mjs +28 -0
- package/esm2022/lib/pipes/get-display-value/get-display-value.pipe.mjs +59 -0
- package/esm2022/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.mjs +22 -0
- package/esm2022/lib/pipes/initials/initials.pipe.mjs +25 -0
- package/esm2022/lib/pipes/round/round.pipe.mjs +17 -0
- package/esm2022/lib/pipes/update-llm-preference/update-llm-preference.pipe.mjs +25 -0
- package/esm2022/lib/services/abstract-cache.service.mjs +10 -0
- package/esm2022/lib/shared/shared/alert-popup/alert-popup.component.mjs +38 -0
- package/esm2022/lib/shared/shared/message-modal/message-modal.component.mjs +95 -0
- package/esm2022/lib/shared/shared/status-icon/status-icon.component.mjs +14 -0
- package/esm2022/lib/shared/shared.module.mjs +23 -0
- package/esm2022/naniteninja-dashboard-components-lib.mjs +5 -0
- package/esm2022/public-api.mjs +122 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs +4334 -0
- package/fesm2022/naniteninja-dashboard-components-lib.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/auto-delegation/animations.d.ts +1 -0
- package/lib/components/auto-delegation/auto-delegation-modal.component.d.ts +29 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-type.enum.d.ts +4 -0
- package/lib/components/auto-delegation/enums/auto-delegation.event-value.enum.d.ts +5 -0
- package/lib/components/auto-delegation/interface/auto-delegation-data.interface.d.ts +31 -0
- package/lib/components/auto-delegation/interface/auto-delegation.event.interface.d.ts +6 -0
- package/lib/components/auto-delegation/interface/auto-delegation.modal-data.interface.d.ts +8 -0
- package/lib/components/auto-delegation/interface/preferences.interface.d.ts +17 -0
- package/lib/components/calendar/agenda/agenda-day-card/agenda-day-card.component.d.ts +12 -0
- package/lib/components/calendar/agenda/agenda.component.d.ts +22 -0
- package/lib/components/calendar/agenda/agenda.module.d.ts +12 -0
- package/lib/components/calendar/agenda/interfaces/agenda.day.interface.d.ts +7 -0
- package/lib/components/calendar/agenda/interfaces/agenda.event.inetrface.d.ts +9 -0
- package/lib/components/calendar/components/edit-recurring-event/edit-recurring-event.component.d.ts +19 -0
- package/lib/components/calendar/components/event-form/event-form.component.d.ts +67 -0
- package/lib/components/calendar/components/event-form/event-form.module.d.ts +20 -0
- package/lib/components/calendar/components/event-info/event-info.component.d.ts +24 -0
- package/lib/components/calendar/enums/calendar.account.enum.d.ts +4 -0
- package/lib/components/calendar/enums/calendar.account.icons.enum.d.ts +4 -0
- package/lib/components/calendar/enums/event-type.enum.d.ts +8 -0
- package/lib/components/calendar/enums/recurring.edit.options.enum.d.ts +5 -0
- package/lib/components/calendar/enums/recurring.type.enum.d.ts +6 -0
- package/lib/components/calendar/interfaces/calendar.account.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/calendar.account.theme.interface.d.ts +5 -0
- package/lib/components/calendar/interfaces/event.form.interface.d.ts +22 -0
- package/lib/components/calendar/interfaces/event.form.output.interface.d.ts +10 -0
- package/lib/components/calendar/interfaces/event.interface.d.ts +33 -0
- package/lib/components/calendar/interfaces/event.time.interface.d.ts +4 -0
- package/lib/components/calendar/interfaces/recurring.event.interface.d.ts +16 -0
- package/lib/components/calendar/interfaces/recurring.exception.interface.d.ts +14 -0
- package/lib/components/calendar/interfaces/recurring.pattern.interface.d.ts +16 -0
- package/lib/components/calendar/lookups/recurring.options.lookup.d.ts +2 -0
- package/lib/components/calendar/scheduler/enums/schedule-date-status.enum.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.action.interface.d.ts +10 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.day.interface.d.ts +5 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.interface.d.ts +26 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface.d.ts +13 -0
- package/lib/components/calendar/scheduler/interfaces/scheduler.slots.interface.d.ts +6 -0
- package/lib/components/calendar/scheduler/mock-schedule.d.ts +9 -0
- package/lib/components/calendar/scheduler/scheduler.component.d.ts +36 -0
- package/lib/components/calendar/services/calendar-utils.service.d.ts +39 -0
- package/lib/components/chat/chat.component.d.ts +70 -0
- package/lib/components/chat/chat.component.module.d.ts +22 -0
- package/lib/components/chat/chat.service.d.ts +15 -0
- package/lib/components/chat/enums/sender-types.enum.d.ts +4 -0
- package/lib/components/chat/gif-selector/gif-selector.component.d.ts +25 -0
- package/lib/components/chat/gif-selector/gif-selector.service.d.ts +15 -0
- package/lib/components/chat/gif-selector/tenor-media-format.interface.d.ts +7 -0
- package/lib/components/chat/gif-selector/tenor-object.interface.d.ts +5 -0
- package/lib/components/chat/gif-selector/tenor-result.interface.d.ts +16 -0
- package/lib/components/chat/interfaces/date-messages.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message-attachment.interface.d.ts +6 -0
- package/lib/components/chat/interfaces/message.interface.d.ts +11 -0
- package/lib/components/chat/interfaces/send-options-message.interface.d.ts +5 -0
- package/lib/components/chat/interfaces/type-send-message.enum.d.ts +5 -0
- package/lib/components/chat-suggestion/chat-suggestion.component.d.ts +9 -0
- package/lib/components/chat-suggestion/interfaces/chat-suggestion.interface.d.ts +4 -0
- package/lib/components/circle-progress/circle-progress.component.d.ts +31 -0
- package/lib/components/circle-progress/circle-progress.module.d.ts +8 -0
- package/lib/components/circle-progress/enums/circle-variable.enum.d.ts +4 -0
- package/lib/components/circle-progress/interfaces/circle-progress-config.interface.d.ts +29 -0
- package/lib/components/client-home/client-home.component.d.ts +44 -0
- package/lib/components/client-home/enums/client-home-component.enum.d.ts +7 -0
- package/lib/components/client-home/interfaces/chat-meta.interface.d.ts +7 -0
- package/lib/components/client-home/interfaces/home-dashboard-inputs.interface.d.ts +45 -0
- package/lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface.d.ts +5 -0
- package/lib/components/client-home/interfaces/partial-circle-progress-colors.interface.d.ts +9 -0
- package/lib/components/client-home/lookup/client-home.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-pink-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-purple-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-teal-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/inner-progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-default-colors.config.d.ts +2 -0
- package/lib/components/client-home/lookup/progress-white-colors.config.d.ts +2 -0
- package/lib/components/client-home/pipes/chat-meta.pipe.d.ts +10 -0
- package/lib/components/client-home/pipes/get-color-by-matcher.pipe.d.ts +10 -0
- package/lib/components/client-match-overview/client-match-overview.component.d.ts +55 -0
- package/lib/components/client-match-overview/enums/conversation-flag.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/counter-flag-base.enum.d.ts +4 -0
- package/lib/components/client-match-overview/enums/inner-circle-state.enum.d.ts +6 -0
- package/lib/components/client-match-overview/interfaces/client-match-overview.interface.d.ts +19 -0
- package/lib/components/client-match-overview/interfaces/conversation-flag.interface.d.ts +8 -0
- package/lib/components/client-match-overview/interfaces/dashboard-match-request.interface.d.ts +7 -0
- package/lib/components/client-match-overview/interfaces/progress-decision.interface.d.ts +10 -0
- package/lib/components/client-match-overview/interfaces/progress-facts.interface.d.ts +11 -0
- package/lib/components/client-match-overview/lookups/computer-inner-state.lookup.d.ts +7 -0
- package/lib/components/client-match-overview/lookups/limit-dates-indicator.lookup.d.ts +5 -0
- package/lib/components/client-match-overview/progress-ticker/progress-gap.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.config.d.ts +2 -0
- package/lib/components/client-match-overview/progress-ticker/progress-ticker.service.d.ts +11 -0
- package/lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component.d.ts +29 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options.d.ts +2 -0
- package/lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options.d.ts +2 -0
- package/lib/components/lib-client-dashboard/client-dashboard.component.d.ts +73 -0
- package/lib/components/lib-client-dashboard/enums/alert-status-fields.enum.d.ts +9 -0
- package/lib/components/lib-client-dashboard/enums/client-dashboard-component.enum.d.ts +5 -0
- package/lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface.d.ts +29 -0
- package/lib/components/lib-client-dashboard/lookups/client-dashboard.config.d.ts +2 -0
- package/lib/components/lib-compose-matcher-dash/compose-matcher-dash.component.d.ts +48 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface.d.ts +5 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface.d.ts +26 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface.d.ts +8 -0
- package/lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface.d.ts +24 -0
- package/lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe.d.ts +9 -0
- package/lib/components/matcher-statuses/enums/matcher-statuses.enum.d.ts +13 -0
- package/lib/components/matcher-statuses/interfaces/status.interface.d.ts +6 -0
- package/lib/components/matcher-statuses/lookups/matcher-statuses.lookup.d.ts +2 -0
- package/lib/components/matcher-statuses/matcher-statuses.component.d.ts +23 -0
- package/lib/components/matcher-statuses/pipes/is-status-included.pipe.d.ts +8 -0
- package/lib/components/profile-card/profile-card.component.d.ts +11 -0
- package/lib/components/profile-card/profile-card.module.d.ts +9 -0
- package/lib/components/spider-chart/interfaces/chart-data-circle.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-f.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-lg.interface.d.ts +11 -0
- package/lib/components/spider-chart/interfaces/chart-data-defs-rg.interface.d.ts +10 -0
- package/lib/components/spider-chart/interfaces/config.interface.d.ts +19 -0
- package/lib/components/spider-chart/interfaces/dataset.interface.d.ts +7 -0
- package/lib/components/spider-chart/interfaces/polygon-color.interface.d.ts +4 -0
- package/lib/components/spider-chart/interfaces/spider-chart-attribute.interface.d.ts +6 -0
- package/lib/components/spider-chart/lookup/default-spider-config.d.ts +2 -0
- package/lib/components/spider-chart/lookup/default-spider-config.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/demo-polygon-colors.lookup.d.ts +2 -0
- package/lib/components/spider-chart/lookup/svg-config.lookup.d.ts +8 -0
- package/lib/components/spider-chart/spider-chart.component.d.ts +52 -0
- package/lib/enums/direction.enum.d.ts +4 -0
- package/lib/enums/form-field-type.d.ts +28 -0
- package/lib/enums/local-storage-keys.enum.d.ts +3 -0
- package/lib/enums/status-types.d.ts +6 -0
- package/lib/model/select-option-template.d.ts +5 -0
- package/lib/operations/operations.d.ts +19 -0
- package/lib/pipes/array-sort/array.sort.pipe.d.ts +7 -0
- package/lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe.d.ts +7 -0
- package/lib/pipes/date-localization/date-localization.pipe.d.ts +8 -0
- package/lib/pipes/fallback-translate/fallback-translate.pipe.d.ts +11 -0
- package/lib/pipes/get-display-value/get-display-value.pipe.d.ts +13 -0
- package/lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe.d.ts +8 -0
- package/lib/pipes/initials/initials.pipe.d.ts +7 -0
- package/lib/pipes/round/round.pipe.d.ts +7 -0
- package/lib/pipes/update-llm-preference/update-llm-preference.pipe.d.ts +8 -0
- package/lib/services/abstract-cache.service.d.ts +9 -0
- package/lib/shared/shared/alert-popup/alert-popup.component.d.ts +14 -0
- package/lib/shared/shared/message-modal/message-modal.component.d.ts +29 -0
- package/lib/shared/shared/status-icon/status-icon.component.d.ts +7 -0
- package/lib/shared/shared.module.d.ts +13 -0
- package/naniteninja-dashboard-components-lib-1.0.0.tgz +0 -0
- package/package.json +69 -0
- package/public-api.d.ts +121 -0
- package/src/assets/auto-delegation-modal/cross.svg +17 -0
- package/src/assets/auto-delegation-modal/menu.svg +3 -0
- package/src/assets/auto-delegation-modal/timer-center-dot.svg +25 -0
- package/src/assets/auto-delegation-modal/user-profile.svg +9 -0
- package/src/assets/circle-progress/circle-progress-1.svg +159 -0
- package/src/assets/circle-progress/circle-progress-2.svg +155 -0
- package/src/assets/circle-progress/circle-progress-3.svg +25 -0
- package/src/assets/circle-progress/circle-progress.svg +159 -0
- package/src/assets/client-match-overview/background-eclipse.svg +13 -0
- package/src/assets/fonts/calistoga/Calistoga-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Black.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BlackItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Bold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-BoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ExtraBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Heavy.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-HeavyItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Light.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-LightItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Medium.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-MediumItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Regular.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-RegularItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBold.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-SemiBoldItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-Thin.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-ThinItalic.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLight.ttf +0 -0
- package/src/assets/fonts/gilroy/Gilroy-UltraLightItalic.ttf +0 -0
- package/src/assets/grid/icons/filter-button.svg +47 -0
- package/src/assets/grid/images/chips-background-shadow.svg +34 -0
- package/src/assets/icons/back-v2.svg +14 -0
- package/src/assets/icons/checkbox/checkbox-off.svg +72 -0
- package/src/assets/icons/checkbox/checkbox-on.svg +113 -0
- package/src/assets/icons/checkmark-button.svg +72 -0
- package/src/assets/icons/checkmark.svg +7 -0
- package/src/assets/icons/close-icon.svg +3 -0
- package/src/assets/icons/compose-matcher/notes.svg +4 -0
- package/src/assets/icons/compose-matcher/profile.svg +4 -0
- package/src/assets/icons/compose-matcher/suggest.svg +3 -0
- package/src/assets/icons/compose-matcher/visual.svg +3 -0
- package/src/assets/icons/default-profile.svg +23 -0
- package/src/assets/icons/defualt.svg +5 -0
- package/src/assets/icons/first-page.svg +7 -0
- package/src/assets/icons/incrementer/minus.svg +3 -0
- package/src/assets/icons/incrementer/plus.svg +3 -0
- package/src/assets/icons/info.svg +5 -0
- package/src/assets/icons/last-page.svg +7 -0
- package/src/assets/icons/minus.svg +3 -0
- package/src/assets/icons/next-page.svg +6 -0
- package/src/assets/icons/plus.svg +3 -0
- package/src/assets/icons/popup-defualt.svg +34 -0
- package/src/assets/icons/prev-page.svg +6 -0
- package/src/assets/icons/send-icon.svg +4 -0
- package/src/assets/icons/shake.svg +74 -0
- package/src/assets/icons/thumbs-up.svg +28 -0
- package/src/assets/nsfw/blazeface.bundle.js +2 -0
- package/src/assets/nsfw/model/group1-shard1of1 +0 -0
- package/src/assets/nsfw/model/model.json +4085 -0
- package/src/assets/nsfw/nsfwjs.bundle.js +2 -0
- package/src/assets/nsfw/tf.bundle.js +2 -0
- package/src/assets/scheduler/accept.svg +3 -0
- package/src/assets/scheduler/accept_active.svg +3 -0
- package/src/assets/scheduler/arrow.svg +13 -0
- package/src/assets/scheduler/cancel.svg +3 -0
- package/src/assets/scheduler/cancel_active.svg +3 -0
- package/src/assets/scheduler/heart.svg +18 -0
- package/src/assets/trait-visual/force-directed-graph.png +0 -0
- package/src/lib/shared-styles/common/_colors.scss +30 -0
- package/src/lib/shared-styles/common/animations.scss +48 -0
- package/src/lib/shared-styles/common/base-input-field.scss +132 -0
- package/src/lib/shared-styles/common/buttons.scss +152 -0
- package/src/lib/shared-styles/common/cards.scss +163 -0
- package/src/lib/shared-styles/common/client-dash.scss +5 -0
- package/src/lib/shared-styles/common/date-picker.scss +179 -0
- package/src/lib/shared-styles/common/draggable-scroll-and-marquee.scss +34 -0
- package/src/lib/shared-styles/common/feedback.scss +157 -0
- package/src/lib/shared-styles/common/fonts.scss +3 -0
- package/src/lib/shared-styles/common/information-card.scss +56 -0
- package/src/lib/shared-styles/common/input.scss +110 -0
- package/src/lib/shared-styles/common/lib-styles-utils.scss +157 -0
- package/src/lib/shared-styles/common/lists.scss +91 -0
- package/src/lib/shared-styles/common/login.scss +32 -0
- package/src/lib/shared-styles/common/maps.scss +10 -0
- package/src/lib/shared-styles/common/matcher-dash.scss +49 -0
- package/src/lib/shared-styles/common/modal_styles.scss +32 -0
- package/src/lib/shared-styles/common/notifications-list.scss +9 -0
- package/src/lib/shared-styles/common/overrides.scss +6 -0
- package/src/lib/shared-styles/common/pulse.scss +26 -0
- package/src/lib/shared-styles/common/swiper.scss +5 -0
- package/src/lib/shared-styles/common/tab-menu.scss +74 -0
- package/src/lib/shared-styles/common/theme.scss +55 -0
- package/src/lib/shared-styles/common/typography.scss +121 -0
- package/src/lib/shared-styles/common/user-menu.scss +129 -0
- package/src/lib/shared-styles/fonts/calistoga.font.scss +6 -0
- package/src/lib/shared-styles/fonts/gilroy.font.scss +160 -0
- package/src/lib/shared-styles/images/compress.png +0 -0
- package/src/lib/shared-styles/images/expand.png +0 -0
- package/src/lib/shared-styles/styles.scss +25 -0
|
@@ -0,0 +1,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", false>;
|
|
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
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@naniteninja/dashboard-components-lib",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"author": "naniteninja",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git"
|
|
7
|
+
},
|
|
8
|
+
"peerDependencies": {
|
|
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.207",
|
|
22
|
+
"@types/inputmask": "^5.0.7",
|
|
23
|
+
"ang-jsoneditor": "^4.0.2",
|
|
24
|
+
"capacitor-screenshot": "^6.0.1",
|
|
25
|
+
"d3": "^7.9.0",
|
|
26
|
+
"date-fns": "^4.1.0",
|
|
27
|
+
"emoji-picker-element": "^1.26.3",
|
|
28
|
+
"google-libphonenumber": "^3.2.41",
|
|
29
|
+
"inputmask": "^5.0.9",
|
|
30
|
+
"jsoneditor": "^10.2.0",
|
|
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"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"angular",
|
|
44
|
+
"ionic",
|
|
45
|
+
"javascript",
|
|
46
|
+
"typescript",
|
|
47
|
+
"typeahead",
|
|
48
|
+
"directive",
|
|
49
|
+
"angular-material"
|
|
50
|
+
],
|
|
51
|
+
"license": "MIT",
|
|
52
|
+
"module": "fesm2022/naniteninja-dashboard-components-lib.mjs",
|
|
53
|
+
"typings": "index.d.ts",
|
|
54
|
+
"exports": {
|
|
55
|
+
"./package.json": {
|
|
56
|
+
"default": "./package.json"
|
|
57
|
+
},
|
|
58
|
+
".": {
|
|
59
|
+
"types": "./index.d.ts",
|
|
60
|
+
"esm2022": "./esm2022/naniteninja-dashboard-components-lib.mjs",
|
|
61
|
+
"esm": "./esm2022/naniteninja-dashboard-components-lib.mjs",
|
|
62
|
+
"default": "./fesm2022/naniteninja-dashboard-components-lib.mjs"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"sideEffects": false,
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"tslib": "^2.3.0"
|
|
68
|
+
}
|
|
69
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,121 @@
|
|
|
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/calendar/agenda/agenda.component';
|
|
8
|
+
export * from './lib/components/calendar/agenda/agenda.module';
|
|
9
|
+
export * from './lib/components/calendar/agenda/interfaces/agenda.day.interface';
|
|
10
|
+
export * from './lib/components/calendar/agenda/interfaces/agenda.event.inetrface';
|
|
11
|
+
export * from './lib/components/calendar/components/event-form/event-form.component';
|
|
12
|
+
export * from './lib/components/calendar/components/event-form/event-form.module';
|
|
13
|
+
export * from './lib/components/calendar/enums/calendar.account.enum';
|
|
14
|
+
export * from './lib/components/calendar/enums/calendar.account.icons.enum';
|
|
15
|
+
export * from './lib/components/calendar/enums/event-type.enum';
|
|
16
|
+
export * from './lib/components/calendar/enums/recurring.edit.options.enum';
|
|
17
|
+
export * from './lib/components/calendar/enums/recurring.type.enum';
|
|
18
|
+
export * from './lib/components/calendar/interfaces/calendar.account.interface';
|
|
19
|
+
export * from './lib/components/calendar/interfaces/calendar.account.theme.interface';
|
|
20
|
+
export * from './lib/components/calendar/interfaces/event.form.output.interface';
|
|
21
|
+
export * from './lib/components/calendar/interfaces/event.interface';
|
|
22
|
+
export * from './lib/components/calendar/interfaces/event.time.interface';
|
|
23
|
+
export * from './lib/components/calendar/interfaces/recurring.event.interface';
|
|
24
|
+
export * from './lib/components/calendar/interfaces/recurring.exception.interface';
|
|
25
|
+
export * from './lib/components/calendar/interfaces/recurring.pattern.interface';
|
|
26
|
+
export * from './lib/components/calendar/lookups/recurring.options.lookup';
|
|
27
|
+
export * from './lib/components/calendar/scheduler/enums/schedule-date-status.enum';
|
|
28
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.action.interface';
|
|
29
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.event.interface';
|
|
30
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.event.suggestion.interface';
|
|
31
|
+
export * from './lib/components/calendar/scheduler/interfaces/scheduler.slots.interface';
|
|
32
|
+
export * from './lib/components/calendar/scheduler/scheduler.component';
|
|
33
|
+
export * from './lib/components/calendar/services/calendar-utils.service';
|
|
34
|
+
export * from './lib/components/chat-suggestion/chat-suggestion.component';
|
|
35
|
+
export * from './lib/components/chat-suggestion/interfaces/chat-suggestion.interface';
|
|
36
|
+
export * from './lib/components/chat/chat.component';
|
|
37
|
+
export * from './lib/components/chat/chat.component.module';
|
|
38
|
+
export * from './lib/components/chat/chat.service';
|
|
39
|
+
export * from './lib/components/chat/enums/sender-types.enum';
|
|
40
|
+
export * from './lib/components/chat/interfaces/date-messages.interface';
|
|
41
|
+
export * from './lib/components/chat/interfaces/message-attachment.interface';
|
|
42
|
+
export * from './lib/components/chat/interfaces/message.interface';
|
|
43
|
+
export * from './lib/components/circle-progress/circle-progress.component';
|
|
44
|
+
export * from './lib/components/circle-progress/circle-progress.module';
|
|
45
|
+
export * from './lib/components/circle-progress/enums/circle-variable.enum';
|
|
46
|
+
export * from './lib/components/circle-progress/interfaces/circle-progress-config.interface';
|
|
47
|
+
export * from './lib/components/client-home/client-home.component';
|
|
48
|
+
export * from './lib/components/client-home/enums/client-home-component.enum';
|
|
49
|
+
export * from './lib/components/client-home/interfaces/chat-meta.interface';
|
|
50
|
+
export * from './lib/components/client-home/interfaces/home-dashboard-inputs.interface';
|
|
51
|
+
export * from './lib/components/client-home/interfaces/inner-partial-circle-progress-colors.interface';
|
|
52
|
+
export * from './lib/components/client-home/interfaces/partial-circle-progress-colors.interface';
|
|
53
|
+
export * from './lib/components/client-home/lookup/client-home.config';
|
|
54
|
+
export * from './lib/components/client-home/lookup/inner-progress-default-colors.config';
|
|
55
|
+
export * from './lib/components/client-home/lookup/inner-progress-pink-colors.config';
|
|
56
|
+
export * from './lib/components/client-home/lookup/inner-progress-purple-colors.config';
|
|
57
|
+
export * from './lib/components/client-home/lookup/inner-progress-white-colors.config';
|
|
58
|
+
export * from './lib/components/client-home/lookup/progress-default-colors.config';
|
|
59
|
+
export * from './lib/components/client-home/lookup/progress-white-colors.config';
|
|
60
|
+
export * from './lib/components/client-home/pipes/chat-meta.pipe';
|
|
61
|
+
export * from './lib/components/client-home/pipes/get-color-by-matcher.pipe';
|
|
62
|
+
export * from './lib/components/client-match-overview/client-match-overview.component';
|
|
63
|
+
export * from './lib/components/client-match-overview/enums/conversation-flag.enum';
|
|
64
|
+
export * from './lib/components/client-match-overview/enums/counter-flag-base.enum';
|
|
65
|
+
export * from './lib/components/client-match-overview/enums/inner-circle-state.enum';
|
|
66
|
+
export * from './lib/components/client-match-overview/interfaces/client-match-overview.interface';
|
|
67
|
+
export * from './lib/components/client-match-overview/interfaces/conversation-flag.interface';
|
|
68
|
+
export * from './lib/components/client-match-overview/interfaces/dashboard-match-request.interface';
|
|
69
|
+
export * from './lib/components/client-match-overview/interfaces/progress-facts.interface';
|
|
70
|
+
export * from './lib/components/client-match-overview/lookups/computer-inner-state.lookup';
|
|
71
|
+
export * from './lib/components/client-match-overview/progress-ticker/progress-gap.config';
|
|
72
|
+
export * from './lib/components/client-match-overview/progress-ticker/progress-ticker.config';
|
|
73
|
+
export * from './lib/components/client-match-overview/progress-ticker/progress-ticker.service';
|
|
74
|
+
export * from './lib/components/dashboard-swipeable-tabs/dashboard-swipeable-tabs.component';
|
|
75
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/dashboard-main-swiper-options';
|
|
76
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/dashboard-thumbs-swiper-options';
|
|
77
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/main-swiper-default-options';
|
|
78
|
+
export * from './lib/components/dashboard-swipeable-tabs/lookups/thumbs-swiper-default-options';
|
|
79
|
+
export * from './lib/components/lib-client-dashboard/client-dashboard.component';
|
|
80
|
+
export * from './lib/components/lib-client-dashboard/enums/alert-status-fields.enum';
|
|
81
|
+
export * from './lib/components/lib-client-dashboard/enums/client-dashboard-component.enum';
|
|
82
|
+
export * from './lib/components/lib-client-dashboard/interfaces/client-dashboard-inputs.interface';
|
|
83
|
+
export * from './lib/components/lib-client-dashboard/lookups/client-dashboard.config';
|
|
84
|
+
export * from './lib/components/lib-compose-matcher-dash/compose-matcher-dash.component';
|
|
85
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/chart-data.interface';
|
|
86
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/chat-identifier.interface';
|
|
87
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/matcher-dashboard-inputs.interface';
|
|
88
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/matcher-profile.interface';
|
|
89
|
+
export * from './lib/components/lib-compose-matcher-dash/interfaces/prospect-data.interface';
|
|
90
|
+
export * from './lib/components/lib-compose-matcher-dash/pipes/get-profile-with-progress.pipe';
|
|
91
|
+
export * from './lib/components/matcher-statuses/enums/matcher-statuses.enum';
|
|
92
|
+
export * from './lib/components/matcher-statuses/lookups/matcher-statuses.lookup';
|
|
93
|
+
export * from './lib/components/matcher-statuses/matcher-statuses.component';
|
|
94
|
+
export * from './lib/components/matcher-statuses/pipes/is-status-included.pipe';
|
|
95
|
+
export * from './lib/components/profile-card/profile-card.component';
|
|
96
|
+
export * from './lib/components/profile-card/profile-card.module';
|
|
97
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-circle.interface';
|
|
98
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-defs-f.interface';
|
|
99
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-defs-lg.interface';
|
|
100
|
+
export * from './lib/components/spider-chart/interfaces/chart-data-defs-rg.interface';
|
|
101
|
+
export * from './lib/components/spider-chart/interfaces/config.interface';
|
|
102
|
+
export * from './lib/components/spider-chart/interfaces/dataset.interface';
|
|
103
|
+
export * from './lib/components/spider-chart/interfaces/polygon-color.interface';
|
|
104
|
+
export * from './lib/components/spider-chart/interfaces/spider-chart-attribute.interface';
|
|
105
|
+
export * from './lib/components/spider-chart/lookup/default-spider-config.lookup';
|
|
106
|
+
export * from './lib/components/spider-chart/lookup/demo-polygon-colors.lookup';
|
|
107
|
+
export * from './lib/components/spider-chart/lookup/svg-config.lookup';
|
|
108
|
+
export * from './lib/components/spider-chart/spider-chart.component';
|
|
109
|
+
export * from './lib/operations/operations';
|
|
110
|
+
export * from './lib/pipes/array-sort/array.sort.pipe';
|
|
111
|
+
export * from './lib/pipes/count-non-empty-fields/count-non-empty-fields.pipe';
|
|
112
|
+
export * from './lib/pipes/date-localization/date-localization.pipe';
|
|
113
|
+
export * from './lib/pipes/get-display-value/get-display-value.pipe';
|
|
114
|
+
export * from './lib/pipes/get-multi-select-display-text/get-multi-select-display-text.pipe';
|
|
115
|
+
export * from './lib/pipes/initials/initials.pipe';
|
|
116
|
+
export * from './lib/pipes/round/round.pipe';
|
|
117
|
+
export * from './lib/services/abstract-cache.service';
|
|
118
|
+
export * from './lib/shared/shared.module';
|
|
119
|
+
export * from './lib/shared/shared/alert-popup/alert-popup.component';
|
|
120
|
+
export * from './lib/shared/shared/message-modal/message-modal.component';
|
|
121
|
+
export * from './lib/shared/shared/status-icon/status-icon.component';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_i_14_810)">
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.89896 0.513359C2.46035 0.0747575 1.74924 0.0747576 1.31064 0.513359C0.872037 0.951961 0.872036 1.66307 1.31064 2.10168L5.10609 5.89713L1.31297 9.69025C0.874366 10.1289 0.874366 10.84 1.31297 11.2786C1.75157 11.7172 2.46268 11.7172 2.90128 11.2786L6.69441 7.48544L10.2593 11.0503C10.6979 11.4889 11.409 11.4889 11.8476 11.0503C12.2862 10.6117 12.2862 9.90062 11.8476 9.46202L8.28272 5.89713L11.8499 2.3299C12.2886 1.8913 12.2886 1.18019 11.8499 0.741587C11.4113 0.302985 10.7002 0.302985 10.2616 0.741587L6.69441 4.30881L2.89896 0.513359Z" fill="#FFB5E9"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_i_14_810" x="0.981689" y="0.18441" width="11.9459" height="12.1719" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dx="0.74874" dy="0.74874"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="0.74874"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.25 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="shape" result="effect1_innerShadow_14_810"/>
|
|
15
|
+
</filter>
|
|
16
|
+
</defs>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="3" height="9" viewBox="0 0 3 9" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1.95133 0.109634C1.40803 0.109634 0.963501 0.554159 0.963501 1.09747C0.963501 1.64078 1.40803 2.0853 1.95133 2.0853C2.49464 2.0853 2.93917 1.64078 2.93917 1.09747C2.93917 0.554159 2.49464 0.109634 1.95133 0.109634ZM1.95133 7.02447C1.40803 7.02447 0.963501 7.46899 0.963501 8.0123C0.963501 8.55561 1.40803 9.00013 1.95133 9.00013C2.49464 9.00013 2.93917 8.55561 2.93917 8.0123C2.93917 7.46899 2.49464 7.02447 1.95133 7.02447ZM1.95133 3.56705C1.40803 3.56705 0.963501 4.01158 0.963501 4.55488C0.963501 5.09819 1.40803 5.54272 1.95133 5.54272C2.49464 5.54272 2.93917 5.09819 2.93917 4.55488C2.93917 4.01158 2.49464 3.56705 1.95133 3.56705Z" fill="white"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_dd_14_792)">
|
|
3
|
+
<ellipse cx="49.8152" cy="49.8605" rx="14.5015" ry="14.3179" fill="url(#paint0_linear_14_792)"/>
|
|
4
|
+
</g>
|
|
5
|
+
<defs>
|
|
6
|
+
<filter id="filter0_dd_14_792" x="0.017858" y="0.246664" width="99.5947" height="99.2276" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
7
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
8
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
9
|
+
<feOffset dx="-7.84352" dy="-7.84352"/>
|
|
10
|
+
<feGaussianBlur stdDeviation="13.7262"/>
|
|
11
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.281875 0 0 0 0 0.314071 0 0 0 0 0.341667 0 0 0 1 0"/>
|
|
12
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_14_792"/>
|
|
13
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
14
|
+
<feOffset dx="7.84352" dy="7.84352"/>
|
|
15
|
+
<feGaussianBlur stdDeviation="13.7262"/>
|
|
16
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.0767361 0 0 0 0 0.0767361 0 0 0 0 0.0833333 0 0 0 1 0"/>
|
|
17
|
+
<feBlend mode="normal" in2="effect1_dropShadow_14_792" result="effect2_dropShadow_14_792"/>
|
|
18
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_14_792" result="shape"/>
|
|
19
|
+
</filter>
|
|
20
|
+
<linearGradient id="paint0_linear_14_792" x1="59.373" y1="60.9243" x2="40.2028" y2="39.2047" gradientUnits="userSpaceOnUse">
|
|
21
|
+
<stop stop-color="#101113" stop-opacity="0.12"/>
|
|
22
|
+
<stop offset="1" stop-color="#2B2F33"/>
|
|
23
|
+
</linearGradient>
|
|
24
|
+
</defs>
|
|
25
|
+
</svg>
|