@posiwise/smart-crm 0.0.20 → 0.0.21
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/.eslintrc.json +22 -0
- package/ng-package.json +15 -0
- package/package.json +10 -23
- package/project.json +72 -0
- package/{index.d.ts → src/index.ts} +3 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.html +200 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.spec.ts +185 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.ts +238 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.html +200 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.spec.ts +109 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.ts +249 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.html +785 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.scss +123 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.spec.ts +388 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.ts +792 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.html +292 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.scss +63 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.spec.ts +145 -0
- package/src/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.ts +417 -0
- package/src/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.html +1 -0
- package/src/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.spec.ts +17 -0
- package/src/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.ts +7 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.html +75 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.spec.ts +123 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.ts +117 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.html +125 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.scss +5 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.spec.ts +136 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.ts +143 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.html +60 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.scss +1 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.spec.ts +55 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.ts +29 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.html +95 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.spec.ts +105 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.ts +95 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.html +125 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.spec.ts +132 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.ts +145 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.html +61 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.spec.ts +81 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.ts +88 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.html +96 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.spec.ts +109 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.ts +129 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.html +108 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.spec.ts +124 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.ts +111 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.html +134 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.scss +3 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.spec.ts +103 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.ts +166 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.html +90 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.scss +6 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.spec.ts +105 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.ts +118 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.html +115 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.spec.ts +93 -0
- package/src/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.ts +150 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.html +205 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.spec.ts +149 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.ts +184 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.html +530 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.scss +112 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.spec.ts +284 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.ts +553 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.html +281 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.scss +19 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.spec.ts +138 -0
- package/src/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.ts +344 -0
- package/src/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.html +1 -0
- package/src/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.spec.ts +18 -0
- package/src/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.ts +7 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-insight.component.html +27 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-insight.component.spec.ts +19 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-insight.component.ts +7 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.html +46 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.spec.ts +50 -0
- package/src/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.ts +60 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.html +142 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.spec.ts +125 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.ts +192 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads.component.html +176 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads.component.spec.ts +98 -0
- package/src/lib/private/components/smart-crm-leads/smart-crm-leads.component.ts +160 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.html +90 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.spec.ts +68 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.ts +98 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.html +322 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.spec.ts +156 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.ts +296 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.html +215 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.scss +3 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.spec.ts +117 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.ts +187 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.html +33 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.scss +82 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.spec.ts +63 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.ts +62 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.html +27 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.scss +3 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.spec.ts +28 -0
- package/src/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.ts +13 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.html +75 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.scss +223 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.spec.ts +184 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.ts +268 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.html +273 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.scss +11 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.spec.ts +196 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.ts +391 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.html +489 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.scss +104 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.spec.ts +319 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.ts +568 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.html +204 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.scss +11 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.spec.ts +123 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.ts +260 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.html +25 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.scss +7 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.spec.ts +38 -0
- package/src/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.ts +8 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.html +213 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.scss +73 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.spec.ts +147 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.ts +292 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.html +309 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.spec.ts +75 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.ts +161 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.html +25 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.scss +68 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.spec.ts +32 -0
- package/src/lib/private/components/smart-crm-summary/smart-crm-summary.component.ts +8 -0
- package/src/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.spec.ts +43 -0
- package/src/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.ts +97 -0
- package/src/lib/private/smart-crm-private.module.ts +188 -0
- package/src/lib/private/smart-crm-private.routing.module.ts +303 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.html +27 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.scss +4 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.spec.ts +40 -0
- package/src/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.ts +57 -0
- package/src/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.html +36 -0
- package/src/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.spec.ts +42 -0
- package/src/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.ts +57 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.html +133 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.scss +1 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.spec.ts +37 -0
- package/src/lib/public/components/smart-crm-signup/smart-crm-signup.component.ts +41 -0
- package/src/lib/public/smart-crm-public.module.ts +30 -0
- package/src/lib/public/smart-crm-public.routing.module.ts +36 -0
- package/{lib/shared/interface/crm-account.interface.d.ts → src/lib/shared/interface/crm-account.interface.ts} +10 -3
- package/{lib/shared/interface/crm-action.interface.d.ts → src/lib/shared/interface/crm-action.interface.ts} +1 -0
- package/{lib/shared/interface/crm-contact.interface.d.ts → src/lib/shared/interface/crm-contact.interface.ts} +2 -0
- package/{lib/shared/interface/crm-lead.interface.d.ts → src/lib/shared/interface/crm-lead.interface.ts} +1 -0
- package/{lib/shared/interface/crm-newsletter.interface.d.ts → src/lib/shared/interface/crm-newsletter.interface.ts} +3 -1
- package/{lib/shared/interface/crm-opportunity.interface.d.ts → src/lib/shared/interface/crm-opportunity.interface.ts} +5 -0
- package/{lib/shared/interface/crm-source.interface.d.ts → src/lib/shared/interface/crm-source.interface.ts} +1 -0
- package/{lib/shared/interface/crm-stages.interface.d.ts → src/lib/shared/interface/crm-stages.interface.ts} +1 -0
- package/{lib/shared/interface/crm-widget.interface.d.ts → src/lib/shared/interface/crm-widget.interface.ts} +1 -0
- package/{lib/shared/interface/smart-crm-module.interface.d.ts → src/lib/shared/interface/smart-crm-module.interface.ts} +42 -1
- package/src/lib/shared/models/smart-crm.model.ts +199 -0
- package/src/lib/shared/routers/routers.ts +23 -0
- package/tsconfig.json +29 -0
- package/tsconfig.lib.json +25 -0
- package/tsconfig.lib.prod.json +9 -0
- package/tsconfig.spec.json +11 -0
- package/esm2022/index.mjs +0 -48
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.mjs +0 -194
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.mjs +0 -192
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.mjs +0 -599
- package/esm2022/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.mjs +0 -348
- package/esm2022/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.mjs +0 -12
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.mjs +0 -97
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.mjs +0 -118
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.mjs +0 -35
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.mjs +0 -87
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.mjs +0 -119
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.mjs +0 -79
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.mjs +0 -107
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.mjs +0 -96
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.mjs +0 -139
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.mjs +0 -98
- package/esm2022/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.mjs +0 -125
- package/esm2022/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.mjs +0 -159
- package/esm2022/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.mjs +0 -470
- package/esm2022/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.mjs +0 -281
- package/esm2022/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.mjs +0 -12
- package/esm2022/lib/private/components/smart-crm-insight/smart-crm-insight.component.mjs +0 -14
- package/esm2022/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.mjs +0 -55
- package/esm2022/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.mjs +0 -173
- package/esm2022/lib/private/components/smart-crm-leads/smart-crm-leads.component.mjs +0 -136
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.mjs +0 -79
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.mjs +0 -266
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.mjs +0 -151
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.mjs +0 -51
- package/esm2022/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.mjs +0 -18
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.mjs +0 -230
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.mjs +0 -335
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.mjs +0 -477
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.mjs +0 -218
- package/esm2022/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.mjs +0 -14
- package/esm2022/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.mjs +0 -255
- package/esm2022/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.mjs +0 -148
- package/esm2022/lib/private/components/smart-crm-summary/smart-crm-summary.component.mjs +0 -16
- package/esm2022/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.mjs +0 -92
- package/esm2022/lib/private/smart-crm-private.module.mjs +0 -327
- package/esm2022/lib/private/smart-crm-private.routing.module.mjs +0 -310
- package/esm2022/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.mjs +0 -56
- package/esm2022/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.mjs +0 -57
- package/esm2022/lib/public/components/smart-crm-signup/smart-crm-signup.component.mjs +0 -35
- package/esm2022/lib/public/smart-crm-public.module.mjs +0 -46
- package/esm2022/lib/public/smart-crm-public.routing.module.mjs +0 -44
- package/esm2022/lib/shared/interface/crm-account.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-action.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-contact.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-lead.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-newsletter.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-opportunity.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-source.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-stages.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/crm-widget.interface.mjs +0 -2
- package/esm2022/lib/shared/interface/smart-crm-module.interface.mjs +0 -2
- package/esm2022/lib/shared/models/smart-crm.model.mjs +0 -186
- package/esm2022/lib/shared/routers/routers.mjs +0 -23
- package/esm2022/posiwise-smart-crm.mjs +0 -5
- package/fesm2022/posiwise-smart-crm.mjs +0 -6482
- package/fesm2022/posiwise-smart-crm.mjs.map +0 -1
- package/lib/private/components/smart-crm-accounts/smart-crm-account-details/smart-crm-account-details.component.d.ts +0 -61
- package/lib/private/components/smart-crm-accounts/smart-crm-account-files/smart-crm-account-files.component.d.ts +0 -72
- package/lib/private/components/smart-crm-accounts/smart-crm-account-info/smart-crm-account-info.component.d.ts +0 -173
- package/lib/private/components/smart-crm-accounts/smart-crm-accounts.component.d.ts +0 -105
- package/lib/private/components/smart-crm-competition/smart-crm-competition/smart-crm-competition.component.d.ts +0 -5
- package/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions-details/smart-crm-actions-details.component.d.ts +0 -37
- package/lib/private/components/smart-crm-configuration/smart-crm-actions/smart-crm-actions.component.d.ts +0 -55
- package/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.d.ts +0 -11
- package/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories-details/smart-crm-opportunity-categories-details.component.d.ts +0 -31
- package/lib/private/components/smart-crm-configuration/smart-crm-opportunity-categories/smart-crm-opportunity-categories.component.d.ts +0 -56
- package/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source-details/smart-crm-source-details.component.d.ts +0 -28
- package/lib/private/components/smart-crm-configuration/smart-crm-source/smart-crm-source.component.d.ts +0 -52
- package/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stage-details/smart-crm-stage-details.component.d.ts +0 -34
- package/lib/private/components/smart-crm-configuration/smart-crm-stages/smart-crm-stages.component.d.ts +0 -58
- package/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets-details/smart-crm-widgets-details.component.d.ts +0 -36
- package/lib/private/components/smart-crm-configuration/smart-crm-widgets/smart-crm-widgets.component.d.ts +0 -58
- package/lib/private/components/smart-crm-contacts/smart-crm-contact-details/smart-crm-contact-details.component.d.ts +0 -48
- package/lib/private/components/smart-crm-contacts/smart-crm-contact-info/smart-crm-contact-info.component.d.ts +0 -122
- package/lib/private/components/smart-crm-contacts/smart-crm-contacts.component.d.ts +0 -89
- package/lib/private/components/smart-crm-customer/smart-crm-customer-success/smart-crm-customer-success.component.d.ts +0 -5
- package/lib/private/components/smart-crm-insight/smart-crm-insight.component.d.ts +0 -5
- package/lib/private/components/smart-crm-insight/smart-crm-overview/smart-crm-overview.component.d.ts +0 -20
- package/lib/private/components/smart-crm-leads/smart-crm-leads-details/smart-crm-leads-details.component.d.ts +0 -45
- package/lib/private/components/smart-crm-leads/smart-crm-leads.component.d.ts +0 -58
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-contacts/smart-crm-marketing-contacts.component.d.ts +0 -49
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-details/smart-crm-marketing-details.component.d.ts +0 -63
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-list.component.d.ts +0 -62
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing-list/smart-crm-marketing-view-details/smart-crm-marketing-view-details.component.d.ts +0 -21
- package/lib/private/components/smart-crm-marketing/smart-crm-marketing.component.d.ts +0 -8
- package/lib/private/components/smart-crm-opportunities/smart-crm-board/smart-crm-board.component.d.ts +0 -63
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-details/smart-crm-opportunities-details.component.d.ts +0 -67
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-info/smart-crm-opportunities-info.component.d.ts +0 -122
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities-list/smart-crm-opportunities-list.component.d.ts +0 -77
- package/lib/private/components/smart-crm-opportunities/smart-crm-opportunities.component.d.ts +0 -5
- package/lib/private/components/smart-crm-summary/smart-crm-summary-actions/smart-crm-summary-actions.component.d.ts +0 -72
- package/lib/private/components/smart-crm-summary/smart-crm-summary-others/smart-crm-summary-others.component.d.ts +0 -40
- package/lib/private/components/smart-crm-summary/smart-crm-summary.component.d.ts +0 -5
- package/lib/private/components/smart-crm-tabs/smart-crm-tabs.component.d.ts +0 -10
- package/lib/private/smart-crm-private.module.d.ts +0 -62
- package/lib/private/smart-crm-private.routing.module.d.ts +0 -7
- package/lib/public/components/smart-crm-newsletter-confirmation/smart-crm-newsletter-confirmation.component.d.ts +0 -18
- package/lib/public/components/smart-crm-newsletter-unsubscribe/smart-crm-newsletter-unsubscribe.component.d.ts +0 -17
- package/lib/public/components/smart-crm-signup/smart-crm-signup.component.d.ts +0 -15
- package/lib/public/smart-crm-public.module.d.ts +0 -14
- package/lib/public/smart-crm-public.routing.module.d.ts +0 -7
- package/lib/shared/models/smart-crm.model.d.ts +0 -16
- package/lib/shared/routers/routers.d.ts +0 -21
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { User, Subscription, Country } from '@posiwise/common-utilities';
|
|
6
|
-
import { CrmAccount } from '../../../../shared/interface/crm-account.interface';
|
|
7
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
8
|
-
import { CommonService, GeoService, SubscriptionService } from '@posiwise/common-services';
|
|
9
|
-
import { OrganizationIndustry, OrganizationSize, OrganizationType, SubscriptionMember } from 'libs/smart-crm/src/lib/shared/interface/smart-crm-module.interface';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class SmartCrmCompanyDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
12
|
-
private subscriptionService;
|
|
13
|
-
private crmService;
|
|
14
|
-
private commonService;
|
|
15
|
-
private geoService;
|
|
16
|
-
form: UntypedFormGroup;
|
|
17
|
-
user: User;
|
|
18
|
-
id: number;
|
|
19
|
-
submitted: boolean;
|
|
20
|
-
buttonBusy: boolean;
|
|
21
|
-
data: CrmAccount;
|
|
22
|
-
isLoading: boolean;
|
|
23
|
-
onEdit: boolean;
|
|
24
|
-
subscriptionMembers: [];
|
|
25
|
-
organizationSizes$: Observable<OrganizationSize[]>;
|
|
26
|
-
organizationTypes$: Observable<OrganizationType[]>;
|
|
27
|
-
organizationIndustries$: Observable<OrganizationIndustry[]>;
|
|
28
|
-
private countries$;
|
|
29
|
-
allSubscriptionMembers: SubscriptionMember[];
|
|
30
|
-
subscriptionId: number;
|
|
31
|
-
hasAccess: boolean;
|
|
32
|
-
filteredOwners: SubscriptionMember[];
|
|
33
|
-
subscription: Subscription;
|
|
34
|
-
status: any[];
|
|
35
|
-
priority: any[];
|
|
36
|
-
source: any[];
|
|
37
|
-
private countryNames;
|
|
38
|
-
filteredCountries: Country[];
|
|
39
|
-
constructor(injector: Injector, subscriptionService: SubscriptionService, crmService: CrmService, commonService: CommonService, geoService: GeoService);
|
|
40
|
-
onSearchOwner(event: any): void;
|
|
41
|
-
ngOnInit(): void;
|
|
42
|
-
/** Function to call account default values */
|
|
43
|
-
private accountDefaultValues;
|
|
44
|
-
/** Function to get subscription members */
|
|
45
|
-
private getAllSubscriptionMembers;
|
|
46
|
-
private getUserInfo;
|
|
47
|
-
/** Function to get form controls */
|
|
48
|
-
get f(): {
|
|
49
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
50
|
-
};
|
|
51
|
-
/** Function to execute on form submit */
|
|
52
|
-
onSave(): void;
|
|
53
|
-
/** Function to execute on location select */
|
|
54
|
-
handleAddressChange(event: any): void;
|
|
55
|
-
/** Function to get account detail on edit form */
|
|
56
|
-
private getAccountDetail;
|
|
57
|
-
onSearchCountry(event: any): void;
|
|
58
|
-
ngOnDestroy(): void;
|
|
59
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCompanyDetailsComponent, never>;
|
|
60
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmCompanyDetailsComponent, "pw-company-details", never, {}, {}, never, never, false, never>;
|
|
61
|
-
}
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, EventEmitter, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { UploadFile, UploadInput, UploadOutput, UploaderOptions } from 'ngx-uploader';
|
|
5
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
6
|
-
import { User, Subscription } from '@posiwise/common-utilities';
|
|
7
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
8
|
-
import { AuthService } from '@posiwise/common-services';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class SmartCrmCompanyFilesComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
11
|
-
private crmService;
|
|
12
|
-
private modalService;
|
|
13
|
-
private authService;
|
|
14
|
-
private cdr;
|
|
15
|
-
accountId: number;
|
|
16
|
-
contactId: number;
|
|
17
|
-
opportunityId: number;
|
|
18
|
-
isLoaded: boolean;
|
|
19
|
-
allFiles: string[];
|
|
20
|
-
searchText: string;
|
|
21
|
-
totalRecordsUnFiltered: number;
|
|
22
|
-
totalRecords: number;
|
|
23
|
-
loading: boolean;
|
|
24
|
-
hasAccess: boolean;
|
|
25
|
-
user: User;
|
|
26
|
-
userId: number;
|
|
27
|
-
options: UploaderOptions;
|
|
28
|
-
uploadInput: EventEmitter<UploadInput>;
|
|
29
|
-
files: UploadFile[];
|
|
30
|
-
token: string;
|
|
31
|
-
dragOver: boolean;
|
|
32
|
-
Done: boolean;
|
|
33
|
-
page: number;
|
|
34
|
-
subscription: Subscription;
|
|
35
|
-
routers: {
|
|
36
|
-
accounts: string;
|
|
37
|
-
contacts: string;
|
|
38
|
-
accountInfo: string;
|
|
39
|
-
addAccount: string;
|
|
40
|
-
contactInfo: string;
|
|
41
|
-
contactAdd: string;
|
|
42
|
-
contactDetails: string;
|
|
43
|
-
opportunityAdd: string;
|
|
44
|
-
opportunities: string;
|
|
45
|
-
opportunityInfo: string;
|
|
46
|
-
configurationDetails: string;
|
|
47
|
-
configurations: string;
|
|
48
|
-
leadsDetails: string;
|
|
49
|
-
marketingDetails: string;
|
|
50
|
-
marketing: string;
|
|
51
|
-
categoryDetails: string;
|
|
52
|
-
sourceDetails: string;
|
|
53
|
-
stageDetails: string;
|
|
54
|
-
widgetsDetails: string;
|
|
55
|
-
};
|
|
56
|
-
constructor(injector: Injector, crmService: CrmService, modalService: NgbModal, authService: AuthService, cdr: ChangeDetectorRef);
|
|
57
|
-
ngOnInit(): void;
|
|
58
|
-
ngAfterViewChecked(): void;
|
|
59
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
60
|
-
/** Function to get user details */
|
|
61
|
-
private getUserInfo;
|
|
62
|
-
/** Function to get all account files */
|
|
63
|
-
private getAllFiles;
|
|
64
|
-
/** Function to delete file */
|
|
65
|
-
onDelete(id: number): void;
|
|
66
|
-
openModal(content: any): void;
|
|
67
|
-
onClose(): void;
|
|
68
|
-
onUploadOutput(output: UploadOutput): void;
|
|
69
|
-
ngOnDestroy(): void;
|
|
70
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCompanyFilesComponent, never>;
|
|
71
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmCompanyFilesComponent, "pw-smart-crm-company-files", never, { "accountId": { "alias": "accountId"; "required": false; }; "contactId": { "alias": "contactId"; "required": false; }; "opportunityId": { "alias": "opportunityId"; "required": false; }; }, {}, never, never, false, never>;
|
|
72
|
-
}
|
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, EventEmitter, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
4
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
5
|
-
import { LogoCacheService } from '@posiwise/common-services';
|
|
6
|
-
import { UploadFile, UploadInput, UploadOutput, UploaderOptions } from 'ngx-uploader';
|
|
7
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
8
|
-
import { Observable } from 'rxjs';
|
|
9
|
-
import { Subscription, User, Country } from '@posiwise/common-utilities';
|
|
10
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
11
|
-
import { AuthService, CommonService, GeoService, SubscriptionService } from '@posiwise/common-services';
|
|
12
|
-
import { CrmOwner, CrmopportunityContact, FilteredCrmComment, FilteredData, OrganizationIndustry, OrganizationSize, OrganizationType, SmartCrmAction } from 'libs/smart-crm/src/lib/shared/interface/smart-crm-module.interface';
|
|
13
|
-
import { CrmAccount } from 'libs/smart-crm/src/lib/shared/interface/crm-account.interface';
|
|
14
|
-
import * as i0 from "@angular/core";
|
|
15
|
-
interface SubscriptionMember {
|
|
16
|
-
id: number;
|
|
17
|
-
first_name: string;
|
|
18
|
-
last_name: string;
|
|
19
|
-
email: string;
|
|
20
|
-
}
|
|
21
|
-
export declare class SmartCrmCompanyInfoComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
22
|
-
private crmService;
|
|
23
|
-
private subscriptionService;
|
|
24
|
-
private geoService;
|
|
25
|
-
private commonService;
|
|
26
|
-
private modalService;
|
|
27
|
-
private authService;
|
|
28
|
-
private cdr;
|
|
29
|
-
private logoCacheService;
|
|
30
|
-
private document;
|
|
31
|
-
subscription: Subscription;
|
|
32
|
-
actionControls: UntypedFormGroup;
|
|
33
|
-
aboutControls: UntypedFormGroup;
|
|
34
|
-
accountId: number;
|
|
35
|
-
userId: number;
|
|
36
|
-
isFormEdit: boolean;
|
|
37
|
-
user: User;
|
|
38
|
-
allSubscriptionMembers: SubscriptionMember[];
|
|
39
|
-
filteredOwner: SubscriptionMember[];
|
|
40
|
-
data: CrmAccount;
|
|
41
|
-
isDataLoaded: boolean;
|
|
42
|
-
submitted: boolean;
|
|
43
|
-
accountComments: any[];
|
|
44
|
-
hasAccess: boolean;
|
|
45
|
-
body: string;
|
|
46
|
-
editComment: boolean;
|
|
47
|
-
filteredContact: {
|
|
48
|
-
displayName: string;
|
|
49
|
-
}[];
|
|
50
|
-
private isContactValid;
|
|
51
|
-
filteredContactComment: FilteredCrmComment[];
|
|
52
|
-
contactId: number;
|
|
53
|
-
isLoaded: boolean;
|
|
54
|
-
totalRecords: number;
|
|
55
|
-
totalRecordsUnFiltered: number;
|
|
56
|
-
loading: boolean;
|
|
57
|
-
searchText: string;
|
|
58
|
-
potential: string[];
|
|
59
|
-
filterByPotentials: string;
|
|
60
|
-
showFullComment: boolean;
|
|
61
|
-
commentId: number;
|
|
62
|
-
status: string[];
|
|
63
|
-
priority: FilteredData[];
|
|
64
|
-
source: FilteredData[];
|
|
65
|
-
organizationSizes$: Observable<OrganizationSize[]>;
|
|
66
|
-
organizationIndustries$: Observable<OrganizationIndustry[]>;
|
|
67
|
-
countries$: Observable<Country[]>;
|
|
68
|
-
organizationTypes$: Observable<OrganizationType[]>;
|
|
69
|
-
owner: CrmOwner;
|
|
70
|
-
actions: SmartCrmAction[];
|
|
71
|
-
buttonDisable: boolean;
|
|
72
|
-
isDisabled: boolean;
|
|
73
|
-
dangerColor: boolean;
|
|
74
|
-
updating: boolean;
|
|
75
|
-
actionId: number;
|
|
76
|
-
accountVersioning: string[];
|
|
77
|
-
contacts: CrmopportunityContact[];
|
|
78
|
-
options: UploaderOptions;
|
|
79
|
-
uploadInput: EventEmitter<UploadInput>;
|
|
80
|
-
files: UploadFile[];
|
|
81
|
-
token: string;
|
|
82
|
-
dragOver: boolean;
|
|
83
|
-
Done: boolean;
|
|
84
|
-
direction: string;
|
|
85
|
-
private page;
|
|
86
|
-
currentPage: number;
|
|
87
|
-
private totalContacts;
|
|
88
|
-
selector: string;
|
|
89
|
-
submitAction: boolean;
|
|
90
|
-
subscriptionId: number;
|
|
91
|
-
routers: {
|
|
92
|
-
accounts: string;
|
|
93
|
-
contacts: string;
|
|
94
|
-
accountInfo: string;
|
|
95
|
-
addAccount: string;
|
|
96
|
-
contactInfo: string;
|
|
97
|
-
contactAdd: string;
|
|
98
|
-
contactDetails: string;
|
|
99
|
-
opportunityAdd: string;
|
|
100
|
-
opportunities: string;
|
|
101
|
-
opportunityInfo: string;
|
|
102
|
-
configurationDetails: string;
|
|
103
|
-
configurations: string;
|
|
104
|
-
leadsDetails: string;
|
|
105
|
-
marketingDetails: string;
|
|
106
|
-
marketing: string;
|
|
107
|
-
categoryDetails: string;
|
|
108
|
-
sourceDetails: string;
|
|
109
|
-
stageDetails: string;
|
|
110
|
-
widgetsDetails: string;
|
|
111
|
-
};
|
|
112
|
-
buttonBusy: boolean;
|
|
113
|
-
constructor(injector: Injector, crmService: CrmService, subscriptionService: SubscriptionService, geoService: GeoService, commonService: CommonService, modalService: NgbModal, authService: AuthService, cdr: ChangeDetectorRef, logoCacheService: LogoCacheService, document: Document);
|
|
114
|
-
ngOnInit(): void;
|
|
115
|
-
ngAfterViewChecked(): void;
|
|
116
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
117
|
-
/** Function to call account default values */
|
|
118
|
-
private accountDefaultValues;
|
|
119
|
-
/** Function to call account by ID */
|
|
120
|
-
getAccountDetails(): void;
|
|
121
|
-
get f(): {
|
|
122
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
123
|
-
};
|
|
124
|
-
updateAccountInfo(): void;
|
|
125
|
-
onScrollTimeline(): void;
|
|
126
|
-
/** Function to save comment */
|
|
127
|
-
onSave(): void;
|
|
128
|
-
showDatePicker(event: any, id: any): void;
|
|
129
|
-
/** Function to get comments */
|
|
130
|
-
private getAllComments;
|
|
131
|
-
/** Function to update comment */
|
|
132
|
-
updateComment(item: any): void;
|
|
133
|
-
/** Function to execute on location select */
|
|
134
|
-
handleAddressChange(event: any): void;
|
|
135
|
-
/** Function to get subscription members */
|
|
136
|
-
getAllSubscriptionMembers(): void;
|
|
137
|
-
/** Function to show edit comment section */
|
|
138
|
-
showEditControls(event: any, action: any): void;
|
|
139
|
-
/** Function to get and show all the actions */
|
|
140
|
-
getActions(): void;
|
|
141
|
-
/** Function to set the action as completed */
|
|
142
|
-
setAsCompletedOrUncompleted(id: number, action: any, completedOrUncompleted: boolean): Promise<void>;
|
|
143
|
-
/** Function to set the action as cancelled */
|
|
144
|
-
setAsCancelled(id: number, action: any): Promise<void>;
|
|
145
|
-
/** Function to update the date */
|
|
146
|
-
onDateSelect(event: any, action: any): void;
|
|
147
|
-
/** Function to show DatePicker */
|
|
148
|
-
showDatePickerUpdate(actionId: any): void;
|
|
149
|
-
/** Function to get the contacts related to account */
|
|
150
|
-
private getAccountContacts;
|
|
151
|
-
/** Function when auto-complete dropdown selected */
|
|
152
|
-
onDropdownClick(): void;
|
|
153
|
-
/** search owner */
|
|
154
|
-
search(event: any): void;
|
|
155
|
-
searchContact(event: any): void;
|
|
156
|
-
selectContact(event: any): void;
|
|
157
|
-
OnContactBlur(): void;
|
|
158
|
-
searchContactInComment(event: any): void;
|
|
159
|
-
selectCommentContact(event: any): void;
|
|
160
|
-
/** Function to delete contact */
|
|
161
|
-
onDeleteContact(id: number): void;
|
|
162
|
-
/** Function to get contact versions */
|
|
163
|
-
private getContactVersion;
|
|
164
|
-
openModal(content: any): void;
|
|
165
|
-
onClose(): void;
|
|
166
|
-
onUploadOutput(output: UploadOutput): void;
|
|
167
|
-
getAccountLogo(url: string): string;
|
|
168
|
-
navigateToAddOpportunities(): void;
|
|
169
|
-
ngOnDestroy(): void;
|
|
170
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCompanyInfoComponent, never>;
|
|
171
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmCompanyInfoComponent, "pw-smart-crm-company-info", never, {}, {}, never, never, false, never>;
|
|
172
|
-
}
|
|
173
|
-
export {};
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Plotly, Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmAccountResponse } from '../../../shared/interface/crm-account.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import { CommonService, LogoCacheService } from '@posiwise/common-services';
|
|
8
|
-
import { OpportunityCategory, UserAccount } from '../../../shared/interface/smart-crm-module.interface';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
export declare class SmartCrmCompaniesComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
11
|
-
private crmService;
|
|
12
|
-
private commonService;
|
|
13
|
-
private logoCacheService;
|
|
14
|
-
private cdr;
|
|
15
|
-
data: CrmAccountResponse;
|
|
16
|
-
searchText: string;
|
|
17
|
-
loading: boolean;
|
|
18
|
-
subscriptionId: number;
|
|
19
|
-
organizationSizes: any[];
|
|
20
|
-
userId: number;
|
|
21
|
-
hasAccess: boolean;
|
|
22
|
-
isLoaded: boolean;
|
|
23
|
-
private allIndustries;
|
|
24
|
-
searchOptions: OpportunityCategory[];
|
|
25
|
-
filterByIndustries: any[];
|
|
26
|
-
status: any[];
|
|
27
|
-
priority: any[];
|
|
28
|
-
source: any[];
|
|
29
|
-
filterBySource: any[];
|
|
30
|
-
filterByStatus: any[];
|
|
31
|
-
filterByPriority: any[];
|
|
32
|
-
filterBySizeId: any[];
|
|
33
|
-
searchLocationText: string;
|
|
34
|
-
private filterByLocation;
|
|
35
|
-
accountGeography: Plotly.Figure;
|
|
36
|
-
accountActivities: any[];
|
|
37
|
-
accountLastInvoices: string[];
|
|
38
|
-
accountInsight: string[];
|
|
39
|
-
private page;
|
|
40
|
-
subscription: Subscription;
|
|
41
|
-
routers: {
|
|
42
|
-
accounts: string;
|
|
43
|
-
contacts: string;
|
|
44
|
-
accountInfo: string;
|
|
45
|
-
addAccount: string;
|
|
46
|
-
contactInfo: string;
|
|
47
|
-
contactAdd: string;
|
|
48
|
-
contactDetails: string;
|
|
49
|
-
opportunityAdd: string;
|
|
50
|
-
opportunities: string;
|
|
51
|
-
opportunityInfo: string;
|
|
52
|
-
configurationDetails: string;
|
|
53
|
-
configurations: string;
|
|
54
|
-
leadsDetails: string;
|
|
55
|
-
marketingDetails: string;
|
|
56
|
-
marketing: string;
|
|
57
|
-
categoryDetails: string;
|
|
58
|
-
sourceDetails: string;
|
|
59
|
-
stageDetails: string;
|
|
60
|
-
widgetsDetails: string;
|
|
61
|
-
};
|
|
62
|
-
actionNames: any[];
|
|
63
|
-
constructor(crmService: CrmService, commonService: CommonService, logoCacheService: LogoCacheService, injector: Injector, cdr: ChangeDetectorRef);
|
|
64
|
-
ngOnInit(): void;
|
|
65
|
-
ngAfterViewChecked(): void;
|
|
66
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
67
|
-
/** Function to get user details */
|
|
68
|
-
private getUserInfo;
|
|
69
|
-
/** Function to call account default values */
|
|
70
|
-
private accountDefaultValues;
|
|
71
|
-
/** Function to get the accounts list */
|
|
72
|
-
private getAllAccounts;
|
|
73
|
-
/** Function to call accounts size */
|
|
74
|
-
private getAllOrganizationSize;
|
|
75
|
-
/** Function to get organization industries */
|
|
76
|
-
private getIndustries;
|
|
77
|
-
/** Function to execute on delete button click */
|
|
78
|
-
onDelete(id: number, subscription_id: number): void;
|
|
79
|
-
/** filtering accounts */
|
|
80
|
-
onSearchOptionChange(event: any, filterBy: string): void;
|
|
81
|
-
/** Function to execute on location select */
|
|
82
|
-
handleAddressChange(event: any): void;
|
|
83
|
-
/** Location filter while keyup */
|
|
84
|
-
locationSearch(event: any): void;
|
|
85
|
-
/** Function to clear all filters */
|
|
86
|
-
clearFilters(): void;
|
|
87
|
-
/** Function to call account geography */
|
|
88
|
-
private getAccountGeography;
|
|
89
|
-
getUserAccountInfo(account: UserAccount): {
|
|
90
|
-
message: string;
|
|
91
|
-
iconClass: string;
|
|
92
|
-
};
|
|
93
|
-
formatMRR(mrrInCents: number): string;
|
|
94
|
-
/** Function to call account activities */
|
|
95
|
-
private getAccountActivities;
|
|
96
|
-
/** Function to call last invoice */
|
|
97
|
-
private getAccountLastInvoices;
|
|
98
|
-
/** Function to call account insight */
|
|
99
|
-
private getAccountInsight;
|
|
100
|
-
getCountryFromLocation(location: string): string;
|
|
101
|
-
getAccountLogo(url: string): string;
|
|
102
|
-
ngOnDestroy(): void;
|
|
103
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCompaniesComponent, never>;
|
|
104
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmCompaniesComponent, "pw-smart-crm-companies", never, {}, {}, never, never, false, never>;
|
|
105
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class SmartCrmCompetitionComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmCompetitionComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmCompetitionComponent, "pw-smart-crm-competition", never, {}, {}, never, never, false, never>;
|
|
5
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { CrmAction } from '../../../../../shared/interface/crm-action.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import { Subscription, User } from '@posiwise/common-utilities';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SmartCrmSettingsDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
10
|
-
private crmService;
|
|
11
|
-
form: UntypedFormGroup;
|
|
12
|
-
id: number;
|
|
13
|
-
submitted: boolean;
|
|
14
|
-
buttonBusy: boolean;
|
|
15
|
-
isLoading: boolean;
|
|
16
|
-
user: User;
|
|
17
|
-
data: CrmAction;
|
|
18
|
-
targetWeek: any[];
|
|
19
|
-
targetWeekMin: any[];
|
|
20
|
-
subscriptionId: number;
|
|
21
|
-
actions$: Observable<string>;
|
|
22
|
-
subscription: Subscription;
|
|
23
|
-
constructor(crmService: CrmService, injector: Injector);
|
|
24
|
-
ngOnInit(): void;
|
|
25
|
-
/** Function to get form controls */
|
|
26
|
-
get f(): {
|
|
27
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
28
|
-
};
|
|
29
|
-
/** Function to get action details on edit form */
|
|
30
|
-
private getActionDetails;
|
|
31
|
-
/** Function to update existing action */
|
|
32
|
-
onSave(): void;
|
|
33
|
-
onChange(event: any): void;
|
|
34
|
-
ngOnDestroy(): void;
|
|
35
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmSettingsDetailsComponent, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmSettingsDetailsComponent, "pw-smart-crm-settings-details", never, {}, {}, never, never, false, never>;
|
|
37
|
-
}
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Paging, Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmActionResponse } from '../../../../shared/interface/crm-action.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SmartCrmActionsComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
9
|
-
private crmService;
|
|
10
|
-
private cdr;
|
|
11
|
-
data: CrmActionResponse;
|
|
12
|
-
subscriptionId: number;
|
|
13
|
-
searchText: string;
|
|
14
|
-
loading: boolean;
|
|
15
|
-
userId: number;
|
|
16
|
-
hasAccess: boolean;
|
|
17
|
-
isLoaded: boolean;
|
|
18
|
-
private page;
|
|
19
|
-
subscription: Subscription;
|
|
20
|
-
routers: {
|
|
21
|
-
accounts: string;
|
|
22
|
-
contacts: string;
|
|
23
|
-
accountInfo: string;
|
|
24
|
-
addAccount: string;
|
|
25
|
-
contactInfo: string;
|
|
26
|
-
contactAdd: string;
|
|
27
|
-
contactDetails: string;
|
|
28
|
-
opportunityAdd: string;
|
|
29
|
-
opportunities: string;
|
|
30
|
-
opportunityInfo: string;
|
|
31
|
-
configurationDetails: string;
|
|
32
|
-
configurations: string;
|
|
33
|
-
leadsDetails: string;
|
|
34
|
-
marketingDetails: string;
|
|
35
|
-
marketing: string;
|
|
36
|
-
categoryDetails: string;
|
|
37
|
-
sourceDetails: string;
|
|
38
|
-
stageDetails: string;
|
|
39
|
-
widgetsDetails: string;
|
|
40
|
-
};
|
|
41
|
-
constructor(crmService: CrmService, injector: Injector, cdr: ChangeDetectorRef);
|
|
42
|
-
ngOnInit(): void;
|
|
43
|
-
ngAfterViewChecked(): void;
|
|
44
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
45
|
-
shouldShowTableContent(): boolean;
|
|
46
|
-
/** Function to get and show all the actions */
|
|
47
|
-
private getActions;
|
|
48
|
-
invokeGetActions(paging: Paging): void;
|
|
49
|
-
buildDefaultActions(): void;
|
|
50
|
-
/** Function to delete existing setting */
|
|
51
|
-
onDelete(id: number): void;
|
|
52
|
-
ngOnDestroy(): void;
|
|
53
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmActionsComponent, never>;
|
|
54
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmActionsComponent, "pw-smart-crm-actions", never, {}, {}, never, never, false, never>;
|
|
55
|
-
}
|
package/lib/private/components/smart-crm-configuration/smart-crm-configuration.component.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Injector, OnInit } from '@angular/core';
|
|
2
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SmartCrmConfigurationComponent extends AppBaseComponent implements OnInit {
|
|
5
|
-
activeTab: string;
|
|
6
|
-
constructor(injector: Injector);
|
|
7
|
-
ngOnInit(): void;
|
|
8
|
-
onTabChange(event: any): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmConfigurationComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmConfigurationComponent, "pw-configuration", never, {}, {}, never, never, false, never>;
|
|
11
|
-
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { CrmOpportunityCategory } from '../../../../../shared/interface/crm-opportunity.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SmartCrmOpportunityCategoriesDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
9
|
-
private crmService;
|
|
10
|
-
form: UntypedFormGroup;
|
|
11
|
-
data: CrmOpportunityCategory;
|
|
12
|
-
subscriptionId: number;
|
|
13
|
-
submitted: boolean;
|
|
14
|
-
buttonBusy: boolean;
|
|
15
|
-
isLoading: boolean;
|
|
16
|
-
id: number;
|
|
17
|
-
categories$: Observable<string>;
|
|
18
|
-
constructor(injector: Injector, crmService: CrmService);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
/** Function to get opportunity Details */
|
|
21
|
-
private getOpportunityDetails;
|
|
22
|
-
/** Function to get form controls */
|
|
23
|
-
get f(): {
|
|
24
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
25
|
-
};
|
|
26
|
-
/** on submit the form */
|
|
27
|
-
onSave(): void;
|
|
28
|
-
ngOnDestroy(): void;
|
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmOpportunityCategoriesDetailsComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmOpportunityCategoriesDetailsComponent, "pw-smart-crm-opportunity-categories-details", never, {}, {}, never, never, false, never>;
|
|
31
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { AfterViewChecked, ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
3
|
-
import { LazyLoadEvent } from 'primeng/api';
|
|
4
|
-
import { Paging, Subscription } from '@posiwise/common-utilities';
|
|
5
|
-
import { CrmOpportunityCategoryResponse } from '../../../../shared/interface/crm-opportunity.interface';
|
|
6
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
7
|
-
import { User } from '@posiwise/common-utilities';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class SmartCrmOpportunityCategoriesComponent extends AppBaseComponent implements OnInit, OnDestroy, AfterViewChecked {
|
|
10
|
-
private crmService;
|
|
11
|
-
private cdr;
|
|
12
|
-
data: CrmOpportunityCategoryResponse;
|
|
13
|
-
searchText: string;
|
|
14
|
-
loading: boolean;
|
|
15
|
-
hasAccess: boolean;
|
|
16
|
-
isLoaded: boolean;
|
|
17
|
-
subscriptionId: number;
|
|
18
|
-
user: User;
|
|
19
|
-
private page;
|
|
20
|
-
subscription: Subscription;
|
|
21
|
-
categoryNames: any[];
|
|
22
|
-
routers: {
|
|
23
|
-
accounts: string;
|
|
24
|
-
contacts: string;
|
|
25
|
-
accountInfo: string;
|
|
26
|
-
addAccount: string;
|
|
27
|
-
contactInfo: string;
|
|
28
|
-
contactAdd: string;
|
|
29
|
-
contactDetails: string;
|
|
30
|
-
opportunityAdd: string;
|
|
31
|
-
opportunities: string;
|
|
32
|
-
opportunityInfo: string;
|
|
33
|
-
configurationDetails: string;
|
|
34
|
-
configurations: string;
|
|
35
|
-
leadsDetails: string;
|
|
36
|
-
marketingDetails: string;
|
|
37
|
-
marketing: string;
|
|
38
|
-
categoryDetails: string;
|
|
39
|
-
sourceDetails: string;
|
|
40
|
-
stageDetails: string;
|
|
41
|
-
widgetsDetails: string;
|
|
42
|
-
};
|
|
43
|
-
constructor(injector: Injector, crmService: CrmService, cdr: ChangeDetectorRef);
|
|
44
|
-
ngOnInit(): void;
|
|
45
|
-
ngAfterViewChecked(): void;
|
|
46
|
-
onLazyLoad(event: LazyLoadEvent): void;
|
|
47
|
-
/** Function to get all categories */
|
|
48
|
-
private getAllOpportunityCategories;
|
|
49
|
-
invokeGetAllOpportunityCategories(paging: Paging): void;
|
|
50
|
-
/** Function to delete categories */
|
|
51
|
-
onDelete(id: number): void;
|
|
52
|
-
buildCategories(): void;
|
|
53
|
-
ngOnDestroy(): void;
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmOpportunityCategoriesComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmOpportunityCategoriesComponent, "pw-smart-crm-opportunity-categories", never, {}, {}, never, never, false, never>;
|
|
56
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { Injector, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormGroup } from '@angular/forms';
|
|
3
|
-
import { CrmService } from '@posiwise/smart-crm-shared';
|
|
4
|
-
import { CrmSource } from '../../../../../shared/interface/crm-source.interface';
|
|
5
|
-
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class SmartCrmSourceDetailsComponent extends AppBaseComponent implements OnInit, OnDestroy {
|
|
8
|
-
private crmService;
|
|
9
|
-
subscriptionId: number;
|
|
10
|
-
submitted: boolean;
|
|
11
|
-
buttonBusy: boolean;
|
|
12
|
-
isLoading: boolean;
|
|
13
|
-
sourceForm: UntypedFormGroup;
|
|
14
|
-
data: CrmSource;
|
|
15
|
-
sourceId: number;
|
|
16
|
-
constructor(injector: Injector, crmService: CrmService);
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
/** Function to get source details */
|
|
19
|
-
private getSourceDetails;
|
|
20
|
-
onSave(): void;
|
|
21
|
-
/** Function to get form controls */
|
|
22
|
-
get f(): {
|
|
23
|
-
[key: string]: import("@angular/forms").AbstractControl<any, any>;
|
|
24
|
-
};
|
|
25
|
-
ngOnDestroy(): void;
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SmartCrmSourceDetailsComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SmartCrmSourceDetailsComponent, "pw-smart-crm-source-details", never, {}, {}, never, never, false, never>;
|
|
28
|
-
}
|