@posiwise/resource-module 0.0.101 → 0.0.102
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 +64 -18
- 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-card-list/resource-card-list.component.mjs +2 -2
- package/esm2022/lib/public/components/resource-case-studies/case-studies-cards/case-studies-cards.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 +2 -2
- 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 +21 -7
- package/esm2022/lib/public/components/resource-post/related-resources/related-resources.component.mjs +2 -2
- 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 +4 -4
- package/esm2022/lib/public/components/resource-release-notes/resource-release-notes.component.mjs +3 -3
- package/esm2022/lib/public/components/resource-vault/resource-vault.component.mjs +3 -3
- 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-videos/resource-videos.component.mjs +2 -2
- package/esm2022/lib/public/components/resources/resource-tags/resource-tags.component.mjs +2 -2
- package/esm2022/lib/public/components/resources/resources.component.mjs +3 -3
- package/esm2022/lib/public/components/resources-hub/resources-hub.component.mjs +7 -3
- package/esm2022/lib/public/components/testimonial-card/testimonial-card.component.mjs +2 -2
- package/esm2022/lib/public/components/white-papers/white-papers-top-banner/white-papers-top-banner.component.mjs +2 -2
- package/esm2022/lib/public/components/white-papers/white-papers.component.mjs +2 -2
- package/esm2022/lib/resource.service.mjs +5 -2
- package/fesm2022/posiwise-resource-module.mjs +139 -74
- package/fesm2022/posiwise-resource-module.mjs.map +1 -1
- package/lib/public/components/reslease-note-card/release-note-card.component.d.ts +15 -4
- package/lib/public/components/resource-integration/resource-integration.component.d.ts +3 -0
- package/lib/resource.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,21 +1,32 @@
|
|
|
1
1
|
import { Injector, OnInit } from '@angular/core';
|
|
2
2
|
import { AppBaseComponent } from '@posiwise/app-base-component';
|
|
3
|
+
import { TagService } from '@posiwise/common-services';
|
|
3
4
|
import { ResourceService } from '../../../resource.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ResourceNoteCardComponent extends AppBaseComponent implements OnInit {
|
|
6
7
|
private readonly resourceService;
|
|
8
|
+
private readonly tagService;
|
|
7
9
|
releaseHeader: boolean;
|
|
8
10
|
categoryId: string;
|
|
11
|
+
isReleasePress: boolean;
|
|
9
12
|
postSlice: boolean;
|
|
10
13
|
resourceTitle: string;
|
|
11
14
|
userLoggedIn: boolean;
|
|
12
15
|
isLoaded: boolean;
|
|
13
16
|
subscriptionId: any;
|
|
14
17
|
masterSubscriptionId: any;
|
|
15
|
-
|
|
16
|
-
|
|
18
|
+
pressReleasePosts: any[];
|
|
19
|
+
productReleasePosts: any[];
|
|
20
|
+
tagCategory: any;
|
|
21
|
+
resourcePostTag: any;
|
|
22
|
+
blogPostTag: any;
|
|
23
|
+
blogPressTag: any;
|
|
24
|
+
constructor(injector: Injector, resourceService: ResourceService, tagService: TagService);
|
|
17
25
|
ngOnInit(): void;
|
|
18
|
-
|
|
26
|
+
private getTags;
|
|
27
|
+
private getPostTags;
|
|
28
|
+
getProductReleasePosts(page: number, pageSize: number): void;
|
|
29
|
+
getPressReleasePosts(page: number, pageSize: number): void;
|
|
19
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceNoteCardComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ResourceNoteCardComponent, "pw-resource-note-card", never, { "releaseHeader": { "alias": "releaseHeader"; "required": false; }; "categoryId": { "alias": "categoryId"; "required": false; }; "postSlice": { "alias": "postSlice"; "required": false; }; "resourceTitle": { "alias": "resourceTitle"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ResourceNoteCardComponent, "pw-resource-note-card", never, { "releaseHeader": { "alias": "releaseHeader"; "required": false; }; "categoryId": { "alias": "categoryId"; "required": false; }; "isReleasePress": { "alias": "isReleasePress"; "required": false; }; "postSlice": { "alias": "postSlice"; "required": false; }; "resourceTitle": { "alias": "resourceTitle"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
32
|
}
|
|
@@ -41,8 +41,11 @@ export declare class ResourceIntegrationComponent extends AppBaseComponent imple
|
|
|
41
41
|
sanitizedMicrosoftVideoUrl: SafeResourceUrl;
|
|
42
42
|
sanitizedKesyaVideoUrl: SafeResourceUrl;
|
|
43
43
|
integrationCountDisplay: number;
|
|
44
|
+
contactUsUrl: any;
|
|
45
|
+
tagCategory: any;
|
|
44
46
|
constructor(sanitizer: DomSanitizer, resourceService: ResourceService, tagService: TagService, injector: Injector);
|
|
45
47
|
ngOnInit(): void;
|
|
48
|
+
private getTags;
|
|
46
49
|
private getPostTags;
|
|
47
50
|
getPosts(page: number, pageSize: number): void;
|
|
48
51
|
getVendorPosts(page: number, pageSize: number): void;
|
|
@@ -6,7 +6,7 @@ export declare class ResourceService {
|
|
|
6
6
|
private readonly resource;
|
|
7
7
|
private readonly comments;
|
|
8
8
|
constructor(api: MainApiHttpService);
|
|
9
|
-
getPublicPosts(master_subscription_id: any, page: number, pageSize: number, search: string, tagCategoryIds?: string): import("rxjs").Observable<any>;
|
|
9
|
+
getPublicPosts(master_subscription_id: any, page: number, pageSize: number, search: string, tagCategoryIds?: string, tagIds?: string): import("rxjs").Observable<any>;
|
|
10
10
|
getAdminPosts(subscriptionId: any, paging?: Paging): import("rxjs").Observable<any>;
|
|
11
11
|
addPost(post: any): import("rxjs").Observable<any>;
|
|
12
12
|
getPostBySlug(slug: string): import("rxjs").Observable<any>;
|