@ieeesa-npm/presentation 0.29.2 → 0.29.3
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/assets/constants.json +1 -2
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +14 -69
- package/esm2022/lib/components/color-picker/color-picker.component.mjs +2 -2
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +24 -3
- package/esm2022/lib/components/list/list.component.mjs +6 -31
- package/esm2022/lib/models/agenda-file-attachment.model.mjs +2 -0
- package/esm2022/lib/models/list-item.model.mjs +1 -1
- package/esm2022/public-api.mjs +2 -3
- package/fesm2022/ieeesa-npm-presentation.mjs +51 -139
- package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +2 -18
- package/lib/components/chips/chips.component.d.ts +0 -1
- package/lib/components/dynamic-form/dynamic-form.component.d.ts +1 -1
- package/lib/components/file-download/file-download.component.d.ts +0 -1
- package/lib/components/file-upload/file-upload.component.d.ts +13 -2
- package/lib/components/list/list.component.d.ts +1 -11
- package/lib/directives/dynamic-form-field/dynamic-form-field.directive.d.ts +1 -1
- package/lib/directives/file-upload/file-upload.directive.d.ts +1 -1
- package/lib/models/{file-attachment.model.d.ts → agenda-file-attachment.model.d.ts} +4 -4
- package/lib/models/list-item.model.d.ts +0 -1
- package/lib/services/file-upload.service.d.ts +0 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -2
- package/src/lib/assets/constants.json +1 -2
- package/esm2022/lib/models/file-attachment.model.mjs +0 -2
- package/esm2022/lib/services/breadcrumb.service.mjs +0 -32
- package/lib/services/breadcrumb.service.d.ts +0 -18
|
@@ -2,16 +2,14 @@ import { OnDestroy } from '@angular/core';
|
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { Breadcrumb } from '../../models/breadcrumb.model';
|
|
5
|
-
import { BreadcrumbService } from '../../services/breadcrumb.service';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
/**
|
|
8
7
|
* Reusable breadcrumb component for displaying and navigating through a hierarchy of pages.
|
|
9
8
|
* @class BreadcrumbComponent
|
|
10
9
|
*/
|
|
11
10
|
export declare class BreadcrumbComponent implements OnDestroy {
|
|
12
|
-
activatedRoute
|
|
11
|
+
private activatedRoute;
|
|
13
12
|
private router;
|
|
14
|
-
breadcrumbService: BreadcrumbService;
|
|
15
13
|
breadcrumbTexts: any;
|
|
16
14
|
rootParentCount: number;
|
|
17
15
|
/**
|
|
@@ -30,7 +28,7 @@ export declare class BreadcrumbComponent implements OnDestroy {
|
|
|
30
28
|
breadcrumbInitialRouteLabel: any;
|
|
31
29
|
breadcrumbs: Breadcrumb[];
|
|
32
30
|
destroy$: Subject<boolean>;
|
|
33
|
-
constructor(activatedRoute: ActivatedRoute, router: Router
|
|
31
|
+
constructor(activatedRoute: ActivatedRoute, router: Router);
|
|
34
32
|
/**
|
|
35
33
|
* Sets up the subscription to router events to update breadcrumbs.
|
|
36
34
|
* @memberof BreadcrumbComponent
|
|
@@ -45,20 +43,6 @@ export declare class BreadcrumbComponent implements OnDestroy {
|
|
|
45
43
|
* @memberof BreadcrumbComponent
|
|
46
44
|
*/
|
|
47
45
|
getBreadcrumbs(route: ActivatedRoute, url?: string, breadcrumbs?: Breadcrumb[]): Breadcrumb[];
|
|
48
|
-
/**
|
|
49
|
-
* Navigates to the specified breadcrumb item.
|
|
50
|
-
* @param {Breadcrumb} breadcrumb -The breadcrumb item to navigate to.
|
|
51
|
-
* @param {number} index -The index of the breadcrumb item.
|
|
52
|
-
* @memberof BreadcrumbComponent
|
|
53
|
-
*/
|
|
54
|
-
navigate(breadcrumb: Breadcrumb, index: number): void;
|
|
55
|
-
/**
|
|
56
|
-
* Takes the index and the current item as arguments and needs to return the unique identifier for this item.
|
|
57
|
-
* @param {number} index
|
|
58
|
-
* @return {number}
|
|
59
|
-
* @memberof BreadcrumbComponent
|
|
60
|
-
*/
|
|
61
|
-
trackByFn(index: number): number;
|
|
62
46
|
/**
|
|
63
47
|
* NgOnDestroy performs necessary cleanup tasks, such as unsubscribing from subscription when the component is being destroyed.
|
|
64
48
|
* @memberof BreadcrumbComponent
|
|
@@ -91,7 +91,7 @@ export declare class DynamicFormComponent implements OnInit, AfterContentInit, A
|
|
|
91
91
|
formTimeSelected: EventEmitter<SelectedTime>;
|
|
92
92
|
supportTextLinkClick: EventEmitter<LinkEventEmitType>;
|
|
93
93
|
formSlideToggleChange: EventEmitter<SlideToggleOption>;
|
|
94
|
-
formFileUpload: EventEmitter<
|
|
94
|
+
formFileUpload: EventEmitter<File | FileList>;
|
|
95
95
|
dropdownOpenedChange: EventEmitter<SelectOpenedState>;
|
|
96
96
|
formColorPickerChange: EventEmitter<string>;
|
|
97
97
|
formRadioOptionSelected: EventEmitter<RadioOption>;
|
|
@@ -284,7 +284,6 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
284
284
|
};
|
|
285
285
|
list: {
|
|
286
286
|
defaultIndentation: number;
|
|
287
|
-
dragAndDropIconUrl: string;
|
|
288
287
|
};
|
|
289
288
|
search: {
|
|
290
289
|
searchIcon: string;
|
|
@@ -392,7 +391,7 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
392
391
|
private _fileDownloadAndDeleteConfig;
|
|
393
392
|
set fileDownloadAndDeleteConfig(value: FileDownloadAndDeleteConfig);
|
|
394
393
|
get fileDownloadAndDeleteConfig(): FileDownloadAndDeleteConfig;
|
|
395
|
-
uploadSelectedFiles: EventEmitter<
|
|
394
|
+
uploadSelectedFiles: EventEmitter<File | FileList>;
|
|
396
395
|
downloadSelectedFile: EventEmitter<File | DownloadAttachment>;
|
|
397
396
|
apiBaseUrl: string;
|
|
398
397
|
constructor(formUtilityService: FormUtilityService, fileUploadService: FileUploadService);
|
|
@@ -496,6 +495,18 @@ export declare class FileUploadComponent implements OnInit {
|
|
|
496
495
|
* @memberof FileUploadComponent
|
|
497
496
|
*/
|
|
498
497
|
setEmptyValue(event: Event): void;
|
|
498
|
+
/**
|
|
499
|
+
* Removes file from selectedFiles if uploaded successfully to AWS and mapped in the server.
|
|
500
|
+
* @param {File} file
|
|
501
|
+
* @memberof FileUploadComponent
|
|
502
|
+
*/
|
|
503
|
+
removeSelectedFileInUploadedFiles(fileName: string): void;
|
|
504
|
+
/**
|
|
505
|
+
* Display selected file names length in UI.
|
|
506
|
+
* @return {number}
|
|
507
|
+
* @memberof FileUploadComponent
|
|
508
|
+
*/
|
|
509
|
+
displaySelectedFileNamesLength(): number;
|
|
499
510
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
500
511
|
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ieeesa-file-upload", never, { "maxFileSizeErrorMessage": { "alias": "maxFileSizeErrorMessage"; "required": false; }; "actionButtonAlign": { "alias": "actionButtonAlign"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "isFileSelected": { "alias": "isFileSelected"; "required": false; }; "supportMessage": { "alias": "supportMessage"; "required": false; }; "allowedFileTypes": { "alias": "allowedFileTypes"; "required": false; }; "isMultiFileUpload": { "alias": "isMultiFileUpload"; "required": false; }; "isUploadInProgress": { "alias": "isUploadInProgress"; "required": false; }; "fileUploadHeading": { "alias": "fileUploadHeading"; "required": false; }; "isAllowAnyFileType": { "alias": "isAllowAnyFileType"; "required": false; }; "alignBrowsedFiles": { "alias": "alignBrowsedFiles"; "required": false; }; "isUploadButtonNeeded": { "alias": "isUploadButtonNeeded"; "required": false; }; "maxUploadFileSize": { "alias": "maxUploadFileSize"; "required": false; }; "alignFileUploadErrorMessageTo": { "alias": "alignFileUploadErrorMessageTo"; "required": false; }; "maxFilesUploadedOnce": { "alias": "maxFilesUploadedOnce"; "required": false; }; "maxFilesUploadLimitErrorMessage": { "alias": "maxFilesUploadLimitErrorMessage"; "required": false; }; "fileUploadStatus": { "alias": "fileUploadStatus"; "required": false; }; "uploadedSize": { "alias": "uploadedSize"; "required": false; }; "fileDownloadAndDeleteConfig": { "alias": "fileDownloadAndDeleteConfig"; "required": false; }; }, { "uploadSelectedFiles": "uploadSelectedFiles"; "downloadSelectedFile": "downloadSelectedFile"; }, never, never, true, never>;
|
|
501
512
|
}
|
|
@@ -4,7 +4,6 @@ import { Menu } from '../../models/menu.model';
|
|
|
4
4
|
import { IconButton } from '../../models/icon-button.model';
|
|
5
5
|
import { FileDownloadAndDeleteConfig } from '../../models/file-download-config.model';
|
|
6
6
|
import { DownloadAttachment } from '../../models/download-file.model';
|
|
7
|
-
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
8
7
|
import * as i0 from "@angular/core";
|
|
9
8
|
export declare class ListComponent implements OnDestroy {
|
|
10
9
|
elementRef: ElementRef;
|
|
@@ -23,7 +22,6 @@ export declare class ListComponent implements OnDestroy {
|
|
|
23
22
|
downloadSelectedFile: EventEmitter<File | DownloadAttachment>;
|
|
24
23
|
constants: any;
|
|
25
24
|
indentation: any;
|
|
26
|
-
dragAndDropIconUrl: any;
|
|
27
25
|
addListButton: IconButton;
|
|
28
26
|
safeType: string;
|
|
29
27
|
set addListButtonConfig(addListButton: IconButton);
|
|
@@ -32,7 +30,6 @@ export declare class ListComponent implements OnDestroy {
|
|
|
32
30
|
private _fileDownloadAndDeleteConfig;
|
|
33
31
|
set fileDownloadAndDeleteConfig(value: FileDownloadAndDeleteConfig);
|
|
34
32
|
get fileDownloadAndDeleteConfig(): FileDownloadAndDeleteConfig;
|
|
35
|
-
isReorderRequired: boolean;
|
|
36
33
|
constructor(elementRef: ElementRef);
|
|
37
34
|
/**
|
|
38
35
|
* Emits hyperLinkAndButtonClick event on click of hyper link.
|
|
@@ -78,18 +75,11 @@ export declare class ListComponent implements OnDestroy {
|
|
|
78
75
|
* @memberof ListComponent
|
|
79
76
|
*/
|
|
80
77
|
downloadFile(file: File | DownloadAttachment): void;
|
|
81
|
-
/**
|
|
82
|
-
* Triggers when the item is dropped.
|
|
83
|
-
* @param {CdkDragDrop} event
|
|
84
|
-
* @param {ListItem[]} items
|
|
85
|
-
* @param {number} nestingLevel
|
|
86
|
-
*/
|
|
87
|
-
drop(event: CdkDragDrop<any>, items: ListItem[], nestingLevel: number): void;
|
|
88
78
|
/**
|
|
89
79
|
* Removing the event listeners on destroy.
|
|
90
80
|
* @memberof ListComponent
|
|
91
81
|
*/
|
|
92
82
|
ngOnDestroy(): void;
|
|
93
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
94
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ieeesa-list", never, { "listDataItems": { "alias": "listDataItems"; "required": false; }; "listHeaderConfig": { "alias": "listHeaderConfig"; "required": false; }; "indentation": { "alias": "indentation"; "required": false; }; "addListButtonConfig": { "alias": "addListButtonConfig"; "required": false; }; "fileDownloadAndDeleteConfig": { "alias": "fileDownloadAndDeleteConfig"; "required": false; };
|
|
84
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ListComponent, "ieeesa-list", never, { "listDataItems": { "alias": "listDataItems"; "required": false; }; "listHeaderConfig": { "alias": "listHeaderConfig"; "required": false; }; "indentation": { "alias": "indentation"; "required": false; }; "addListButtonConfig": { "alias": "addListButtonConfig"; "required": false; }; "fileDownloadAndDeleteConfig": { "alias": "fileDownloadAndDeleteConfig"; "required": false; }; }, { "selectedItemAndAction": "selectedItemAndAction"; "reorderedList": "reorderedList"; "hyperLinkAndButtonClick": "hyperLinkAndButtonClick"; "downloadSelectedFile": "downloadSelectedFile"; "domChangeEvent": "domChangeEvent"; }, never, never, true, never>;
|
|
95
85
|
}
|
|
@@ -82,7 +82,7 @@ export declare class DynamicFormFieldDirective implements FormField, OnInit, OnD
|
|
|
82
82
|
formSlideToggleChange: EventEmitter<SlideToggleOption>;
|
|
83
83
|
dropdownOpenedChange: EventEmitter<SelectOpenedState>;
|
|
84
84
|
formColorPickerChange: EventEmitter<string>;
|
|
85
|
-
formFileUpload: EventEmitter<
|
|
85
|
+
formFileUpload: EventEmitter<File | FileList>;
|
|
86
86
|
formRadioOptionSelected: EventEmitter<RadioOption>;
|
|
87
87
|
ctaButtonClick: EventEmitter<IconButton>;
|
|
88
88
|
formMultiSelectAutoCompleteSearch: EventEmitter<string>;
|
|
@@ -8,7 +8,7 @@ import * as i0 from "@angular/core";
|
|
|
8
8
|
export declare class FileUploadDirective {
|
|
9
9
|
allowedFileTypes: string[];
|
|
10
10
|
isMultiFileUpload: boolean;
|
|
11
|
-
fileDropped: EventEmitter<
|
|
11
|
+
fileDropped: EventEmitter<File | FileList>;
|
|
12
12
|
/**
|
|
13
13
|
* Binds the 'multiple' attribute based on the value of allowMultiple property.
|
|
14
14
|
* @readonly
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface AgendaFileAttachment {
|
|
2
2
|
agendaItemId: string;
|
|
3
3
|
agendaId: string;
|
|
4
4
|
s3FilePath: string;
|
|
5
5
|
fileName: string;
|
|
6
6
|
}
|
|
7
|
-
export interface
|
|
8
|
-
payload:
|
|
7
|
+
export interface AgendaFileAttachmentPayload {
|
|
8
|
+
payload: AgendaFileAttachment[];
|
|
9
9
|
}
|
|
10
10
|
export interface AgendaItemAttachment {
|
|
11
11
|
fileName: string;
|
|
12
12
|
agendaItemAttachmentId: string;
|
|
13
13
|
}
|
|
14
|
-
export interface
|
|
14
|
+
export interface AgendaFileAttachmentResponse {
|
|
15
15
|
status: boolean;
|
|
16
16
|
message: string;
|
|
17
17
|
body: {
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -46,6 +46,7 @@ export * from './lib/directives/text-truncated/text-truncated.directive';
|
|
|
46
46
|
export * from './lib/directives/file-upload/file-upload.directive';
|
|
47
47
|
export * from './lib/directives/observe-dom-change/observe-dom-change.directive';
|
|
48
48
|
export * from './lib/models/accordion-info.model';
|
|
49
|
+
export * from './lib/models/agenda-file-attachment.model';
|
|
49
50
|
export * from './lib/models/align-browsed-files.model';
|
|
50
51
|
export * from './lib/models/align-type.model';
|
|
51
52
|
export * from './lib/models/allowed-file-types.model';
|
|
@@ -59,7 +60,6 @@ export * from './lib/models/date-picker.model';
|
|
|
59
60
|
export * from './lib/models/download-file.model';
|
|
60
61
|
export * from './lib/models/event-emit-type.model';
|
|
61
62
|
export * from './lib/models/field-config.model';
|
|
62
|
-
export * from './lib/models/file-attachment.model';
|
|
63
63
|
export * from './lib/models/footer-config.model';
|
|
64
64
|
export * from './lib/models/form-control-types.model';
|
|
65
65
|
export * from './lib/models/form-field.model';
|
|
@@ -105,5 +105,4 @@ export * from './lib/models/table-column-menu-info.model';
|
|
|
105
105
|
export * from './lib/services/datepicker.service';
|
|
106
106
|
export * from './lib/services/form-utility.service';
|
|
107
107
|
export * from './lib/services/file-upload.service';
|
|
108
|
-
export * from './lib/services/breadcrumb.service';
|
|
109
108
|
export * from './lib/presentation.module';
|
|
@@ -599,8 +599,7 @@
|
|
|
599
599
|
}
|
|
600
600
|
},
|
|
601
601
|
"list": {
|
|
602
|
-
"defaultIndentation": 12
|
|
603
|
-
"dragAndDropIconUrl": "assets/images/sprites/sprites.svg#icon-drag-indicator"
|
|
602
|
+
"defaultIndentation": 12
|
|
604
603
|
},
|
|
605
604
|
"search": {
|
|
606
605
|
"searchIcon": "assets/images/sprites/sprites.svg#icon-search"
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmlsZS1hdHRhY2htZW50Lm1vZGVsLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJlc2VudGF0aW9uL3NyYy9saWIvbW9kZWxzL2ZpbGUtYXR0YWNobWVudC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBGaWxlQXR0YWNobWVudCB7XHJcbiAgYWdlbmRhSXRlbUlkOiBzdHJpbmc7XHJcbiAgYWdlbmRhSWQ6IHN0cmluZztcclxuICBzM0ZpbGVQYXRoOiBzdHJpbmc7XHJcbiAgZmlsZU5hbWU6IHN0cmluZztcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIEZpbGVBdHRhY2htZW50UGF5bG9hZCB7XHJcbiAgcGF5bG9hZDogRmlsZUF0dGFjaG1lbnRbXTtcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIEFnZW5kYUl0ZW1BdHRhY2htZW50IHtcclxuICBmaWxlTmFtZTogc3RyaW5nO1xyXG4gIGFnZW5kYUl0ZW1BdHRhY2htZW50SWQ6IHN0cmluZztcclxufVxyXG5leHBvcnQgaW50ZXJmYWNlIEZpbGVBdHRhY2htZW50UmVzcG9uc2Uge1xyXG4gIHN0YXR1czogYm9vbGVhbjtcclxuICBtZXNzYWdlOiBzdHJpbmc7XHJcbiAgYm9keToge1xyXG4gICAgdG90YWxSZWNvcmRzOiBudW1iZXI7XHJcbiAgICBhZ2VuZGFJdGVtQXR0YWNobWVudExpc3Q6IEFnZW5kYUl0ZW1BdHRhY2htZW50W107XHJcbiAgfTtcclxufVxyXG4iXX0=
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { Injectable } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class BreadcrumbService {
|
|
4
|
-
constructor() {
|
|
5
|
-
this.isPreviousExtrasPresent = true;
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Sets the status of whether previous extras are present.
|
|
9
|
-
* @param {boolean} flag -Boolean flag indicating if previous extras are present.
|
|
10
|
-
* @memberof BreadcrumbService
|
|
11
|
-
*/
|
|
12
|
-
setPreviousExtras(flag) {
|
|
13
|
-
this.isPreviousExtrasPresent = flag;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* Retrieves the status of whether previous extras are present.
|
|
17
|
-
* @return {boolean} -Boolean indicating if previous extras are present.
|
|
18
|
-
* @memberof BreadcrumbService
|
|
19
|
-
*/
|
|
20
|
-
getPreviousExtras() {
|
|
21
|
-
return this.isPreviousExtrasPresent;
|
|
22
|
-
}
|
|
23
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BreadcrumbService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
24
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BreadcrumbService, providedIn: 'root' }); }
|
|
25
|
-
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: BreadcrumbService, decorators: [{
|
|
27
|
-
type: Injectable,
|
|
28
|
-
args: [{
|
|
29
|
-
providedIn: 'root',
|
|
30
|
-
}]
|
|
31
|
-
}] });
|
|
32
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvcHJlc2VudGF0aW9uL3NyYy9saWIvc2VydmljZXMvYnJlYWRjcnVtYi5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBSzNDLE1BQU0sT0FBTyxpQkFBaUI7SUFIOUI7UUFJRSw0QkFBdUIsR0FBRyxJQUFJLENBQUM7S0FrQmhDO0lBakJDOzs7O09BSUc7SUFDSCxpQkFBaUIsQ0FBQyxJQUFhO1FBQzdCLElBQUksQ0FBQyx1QkFBdUIsR0FBRyxJQUFJLENBQUM7SUFDdEMsQ0FBQztJQUVEOzs7O09BSUc7SUFDSCxpQkFBaUI7UUFDZixPQUFPLElBQUksQ0FBQyx1QkFBdUIsQ0FBQztJQUN0QyxDQUFDOytHQWxCVSxpQkFBaUI7bUhBQWpCLGlCQUFpQixjQUZoQixNQUFNOzs0RkFFUCxpQkFBaUI7a0JBSDdCLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5cclxuQEluamVjdGFibGUoe1xyXG4gIHByb3ZpZGVkSW46ICdyb290JyxcclxufSlcclxuZXhwb3J0IGNsYXNzIEJyZWFkY3J1bWJTZXJ2aWNlIHtcclxuICBpc1ByZXZpb3VzRXh0cmFzUHJlc2VudCA9IHRydWU7XHJcbiAgLyoqXHJcbiAgICogU2V0cyB0aGUgc3RhdHVzIG9mIHdoZXRoZXIgcHJldmlvdXMgZXh0cmFzIGFyZSBwcmVzZW50LlxyXG4gICAqIEBwYXJhbSB7Ym9vbGVhbn0gZmxhZyAtQm9vbGVhbiBmbGFnIGluZGljYXRpbmcgaWYgcHJldmlvdXMgZXh0cmFzIGFyZSBwcmVzZW50LlxyXG4gICAqIEBtZW1iZXJvZiBCcmVhZGNydW1iU2VydmljZVxyXG4gICAqL1xyXG4gIHNldFByZXZpb3VzRXh0cmFzKGZsYWc6IGJvb2xlYW4pOiB2b2lkIHtcclxuICAgIHRoaXMuaXNQcmV2aW91c0V4dHJhc1ByZXNlbnQgPSBmbGFnO1xyXG4gIH1cclxuXHJcbiAgLyoqXHJcbiAgICogUmV0cmlldmVzIHRoZSBzdGF0dXMgb2Ygd2hldGhlciBwcmV2aW91cyBleHRyYXMgYXJlIHByZXNlbnQuXHJcbiAgICogQHJldHVybiB7Ym9vbGVhbn0gLUJvb2xlYW4gaW5kaWNhdGluZyBpZiBwcmV2aW91cyBleHRyYXMgYXJlIHByZXNlbnQuXHJcbiAgICogQG1lbWJlcm9mIEJyZWFkY3J1bWJTZXJ2aWNlXHJcbiAgICovXHJcbiAgZ2V0UHJldmlvdXNFeHRyYXMoKTogYm9vbGVhbiB7XHJcbiAgICByZXR1cm4gdGhpcy5pc1ByZXZpb3VzRXh0cmFzUHJlc2VudDtcclxuICB9XHJcbn1cclxuIl19
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class BreadcrumbService {
|
|
3
|
-
isPreviousExtrasPresent: boolean;
|
|
4
|
-
/**
|
|
5
|
-
* Sets the status of whether previous extras are present.
|
|
6
|
-
* @param {boolean} flag -Boolean flag indicating if previous extras are present.
|
|
7
|
-
* @memberof BreadcrumbService
|
|
8
|
-
*/
|
|
9
|
-
setPreviousExtras(flag: boolean): void;
|
|
10
|
-
/**
|
|
11
|
-
* Retrieves the status of whether previous extras are present.
|
|
12
|
-
* @return {boolean} -Boolean indicating if previous extras are present.
|
|
13
|
-
* @memberof BreadcrumbService
|
|
14
|
-
*/
|
|
15
|
-
getPreviousExtras(): boolean;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
|
|
18
|
-
}
|