@ieeesa-npm/presentation 0.30.1 → 0.30.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/components/accordion/accordion.component.mjs +3 -3
- package/esm2022/lib/components/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +10 -14
- package/esm2022/lib/components/card/card.component.mjs +3 -3
- package/esm2022/lib/components/checkbox/checkbox.component.mjs +3 -3
- package/esm2022/lib/components/chips/chips.component.mjs +3 -3
- package/esm2022/lib/components/color-picker/color-picker.component.mjs +2 -2
- package/esm2022/lib/components/data-table/data-table.component.mjs +3 -3
- package/esm2022/lib/components/date-picker/date-picker.component.mjs +3 -3
- package/esm2022/lib/components/date-picker-header/date-picker-header.component.mjs +3 -3
- package/esm2022/lib/components/dynamic-form/dynamic-form.component.mjs +3 -3
- package/esm2022/lib/components/file-download/file-download.component.mjs +3 -3
- package/esm2022/lib/components/file-upload/file-upload.component.mjs +3 -3
- package/esm2022/lib/components/filter/filter.component.mjs +3 -3
- package/esm2022/lib/components/footer/footer.component.mjs +3 -3
- package/esm2022/lib/components/form-error/form-error.component.mjs +3 -3
- package/esm2022/lib/components/form-support-text/form-support-text.component.mjs +3 -3
- package/esm2022/lib/components/header/header.component.mjs +3 -3
- package/esm2022/lib/components/icon-button/icon-button.component.mjs +3 -3
- package/esm2022/lib/components/image-preview/image-preview.component.mjs +3 -3
- package/esm2022/lib/components/inactive-tenant/inactive-tenant.component.mjs +3 -3
- package/esm2022/lib/components/input/input.component.mjs +3 -3
- package/esm2022/lib/components/list/list.component.mjs +3 -3
- package/esm2022/lib/components/loader/loader.component.mjs +3 -3
- package/esm2022/lib/components/menu/menu.component.mjs +3 -3
- package/esm2022/lib/components/modal/modal.component.mjs +3 -3
- package/esm2022/lib/components/modal-confirmation/modal-confirmation.component.mjs +3 -3
- package/esm2022/lib/components/multi-select-autocomplete/multi-select-autocomplete.component.mjs +3 -3
- package/esm2022/lib/components/navigation-menu/navigation-menu.component.mjs +3 -3
- package/esm2022/lib/components/notification/notification.component.mjs +3 -3
- package/esm2022/lib/components/radio/radio.component.mjs +3 -3
- package/esm2022/lib/components/rich-text-editor/rich-text-editor.component.mjs +3 -3
- package/esm2022/lib/components/search/search.component.mjs +3 -3
- package/esm2022/lib/components/select/select.component.mjs +3 -3
- package/esm2022/lib/components/slide-toggle/slide-toggle.component.mjs +3 -3
- package/esm2022/lib/components/tabs/tabs.component.mjs +3 -3
- package/esm2022/lib/components/text-area/text-area.component.mjs +3 -3
- package/esm2022/lib/components/tile/tile.component.mjs +3 -3
- package/esm2022/lib/components/time-picker/time-picker.component.mjs +3 -3
- package/esm2022/lib/components/toggle-button/toggle-button.component.mjs +3 -3
- package/esm2022/lib/components/welcome/welcome.component.mjs +3 -3
- package/esm2022/public-api.mjs +1 -3
- package/fesm2022/ieeesa-npm-presentation.mjs +88 -120
- package/fesm2022/ieeesa-npm-presentation.mjs.map +1 -1
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +1 -6
- package/package.json +1 -1
- package/public-api.d.ts +0 -2
- package/esm2022/lib/models/menu-items.model.mjs +0 -2
- package/esm2022/lib/services/breadcrumb.service.mjs +0 -32
- package/lib/models/menu-items.model.d.ts +0 -3
- package/lib/services/breadcrumb.service.d.ts +0 -18
|
@@ -2,8 +2,6 @@ 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
|
-
import { MenuItem } from '../../models/menu-items.model';
|
|
7
5
|
import * as i0 from "@angular/core";
|
|
8
6
|
/**
|
|
9
7
|
* Reusable breadcrumb component for displaying and navigating through a hierarchy of pages.
|
|
@@ -12,9 +10,7 @@ import * as i0 from "@angular/core";
|
|
|
12
10
|
export declare class BreadcrumbComponent implements OnDestroy {
|
|
13
11
|
activatedRoute: ActivatedRoute;
|
|
14
12
|
private router;
|
|
15
|
-
breadcrumbService: BreadcrumbService;
|
|
16
13
|
breadcrumbTexts: any;
|
|
17
|
-
rootParentCount: number;
|
|
18
14
|
/**
|
|
19
15
|
* Initial route for the breadcrumb component.
|
|
20
16
|
* @type {string}
|
|
@@ -32,8 +28,7 @@ export declare class BreadcrumbComponent implements OnDestroy {
|
|
|
32
28
|
breadcrumbs: Breadcrumb[];
|
|
33
29
|
destroy$: Subject<boolean>;
|
|
34
30
|
static readonly ROUTE_DATA_BREADCRUMB = "breadcrumb";
|
|
35
|
-
|
|
36
|
-
constructor(activatedRoute: ActivatedRoute, router: Router, breadcrumbService: BreadcrumbService);
|
|
31
|
+
constructor(activatedRoute: ActivatedRoute, router: Router);
|
|
37
32
|
/**
|
|
38
33
|
* Sets up the subscription to router events to update breadcrumbs.
|
|
39
34
|
* @memberof BreadcrumbComponent
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -69,7 +69,6 @@ export * from './lib/models/icon-button.model';
|
|
|
69
69
|
export * from './lib/models/legend.model';
|
|
70
70
|
export * from './lib/models/link-type.model';
|
|
71
71
|
export * from './lib/models/list-item.model';
|
|
72
|
-
export * from './lib/models/menu-items.model';
|
|
73
72
|
export * from './lib/models/menu.model';
|
|
74
73
|
export * from './lib/models/navigation-menu.model';
|
|
75
74
|
export * from './lib/models/radio-option.model';
|
|
@@ -105,5 +104,4 @@ export * from './lib/models/table-column-menu-info.model';
|
|
|
105
104
|
export * from './lib/services/datepicker.service';
|
|
106
105
|
export * from './lib/services/form-utility.service';
|
|
107
106
|
export * from './lib/services/file-upload.service';
|
|
108
|
-
export * from './lib/services/breadcrumb.service';
|
|
109
107
|
export * from './lib/presentation.module';
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS1pdGVtcy5tb2RlbC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3ByZXNlbnRhdGlvbi9zcmMvbGliL21vZGVscy9tZW51LWl0ZW1zLm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIE1lbnVJdGVtIHtcclxuICBba2V5OiBzdHJpbmddOiBhbnk7XHJcbn1cclxuIl19
|
|
@@ -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
|
-
}
|