@posiwise/resource-module 0.0.131 → 0.0.133
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/public/components/reslease-note-card/release-note-card.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-blogs/resource-blog-top-banner/resource-blog-top-banner.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-blogs/resource-blog.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-case-studies/resource-case-studies.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-company-card/resource-company-card.component.mjs +13 -4
- package/esm2022/lib/public/components/resource-edit-card/resource-edit-card.component.mjs +3 -3
- package/esm2022/lib/public/components/resource-integration/integration-top-banner/integration-top-banner.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-integration/resource-integration.component.mjs +18 -11
- package/esm2022/lib/public/components/resource-post/related-resources/related-resources.component.mjs +3 -3
- package/esm2022/lib/public/components/resource-post/related-resources/resource-cards/resource-cards.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-release-notes/resource-release-notes-top-banner/resource-release-notes-top-banner.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-top-banner-edit/resource-top-banner-edit.component.mjs +3 -3
- package/esm2022/lib/public/components/resource-vault/resource-vault.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-videos/resource-video-cards/resource-video-cards.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-videos/resource-videos-top-banner/resource-videos-top-banner.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-webinars/replay-event-cards/replay-event-cards.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-webinars/resource-webinars.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-webinars/upcoming-event-cards/upcoming-event-cards.component.mjs +2 -2
- package/esm2022/lib/public/components/resources/resource-tags/resource-tags.component.mjs +2 -2
- package/esm2022/lib/public/components/resources/vault-section/vault-section.component.mjs +3 -3
- package/esm2022/lib/public/components/resources-hub/resources-hub.component.mjs +5 -4
- package/esm2022/lib/public/components/white-papers/white-papers-top-banner/white-papers-top-banner.component.mjs +2 -2
- package/fesm2022/posiwise-resource-module.mjs +71 -55
- package/fesm2022/posiwise-resource-module.mjs.map +1 -1
- package/lib/public/components/resource-company-card/resource-company-card.component.d.ts +4 -2
- package/lib/public/components/resource-integration/resource-integration.component.d.ts +1 -0
- package/lib/public/components/resources-hub/resources-hub.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EventEmitter, Injector, OnChanges, OnInit } from '@angular/core';
|
|
1
|
+
import { EventEmitter, Injector, OnChanges, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
3
3
|
import { ResourcePost, User } from '@posiwise/common-utilities';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -8,8 +8,9 @@ interface PageEvent {
|
|
|
8
8
|
page: number;
|
|
9
9
|
pageCount: number;
|
|
10
10
|
}
|
|
11
|
-
export declare class ResourceCompanyCardComponent extends AppBaseComponent implements OnChanges, OnInit {
|
|
11
|
+
export declare class ResourceCompanyCardComponent extends AppBaseComponent implements OnChanges, OnInit, OnDestroy {
|
|
12
12
|
getPosts: EventEmitter<ResourcePost[]>;
|
|
13
|
+
private destroy$;
|
|
13
14
|
header: string;
|
|
14
15
|
data: any[];
|
|
15
16
|
integrationCountDisplay: any;
|
|
@@ -26,6 +27,7 @@ export declare class ResourceCompanyCardComponent extends AppBaseComponent imple
|
|
|
26
27
|
ngOnInit(): void;
|
|
27
28
|
search(keywords?: any): void;
|
|
28
29
|
onPageChange(event: PageEvent): void;
|
|
30
|
+
ngOnDestroy(): void;
|
|
29
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceCompanyCardComponent, never>;
|
|
30
32
|
static ɵcmp: i0.ɵɵComponentDeclaration<ResourceCompanyCardComponent, "pw-resource-company-card", never, { "header": { "alias": "header"; "required": false; }; "data": { "alias": "data"; "required": false; }; "integrationCountDisplay": { "alias": "integrationCountDisplay"; "required": false; }; "vendor": { "alias": "vendor"; "required": false; }; }, { "getPosts": "getPosts"; }, never, never, false, never>;
|
|
31
33
|
}
|
|
@@ -63,6 +63,7 @@ export declare class ResourceIntegrationComponent extends AppBaseComponent imple
|
|
|
63
63
|
ngOnInit(): void;
|
|
64
64
|
private getTags;
|
|
65
65
|
openEditIntegrationsModal(modalRef: any): void;
|
|
66
|
+
showIntegrations(): boolean;
|
|
66
67
|
private getPostTags;
|
|
67
68
|
loadMicrosoftVideo(videoUrl: any): void;
|
|
68
69
|
loadKeseyaVideo(): void;
|