@symphony-talent/component-library 4.116.0 → 4.117.0
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/esm2020/lib/pages/settings-report-management/settings-report-management.component.mjs +26 -0
- package/esm2020/lib/pages/settings-report-management/settings-report-management.component.model.mjs +2 -0
- package/esm2020/lib/pages/settings-report-management/settings-report-management.module.mjs +36 -0
- package/esm2020/projects/component-library/lib/pages/settings-report-management/settings-report-management.component.mjs +26 -0
- package/esm2020/projects/component-library/lib/pages/settings-report-management/settings-report-management.component.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/settings-report-management/settings-report-management.module.mjs +36 -0
- package/esm2020/projects/component-library/public-api.mjs +4 -1
- package/esm2020/public-api.mjs +4 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +48 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +48 -1
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +48 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +48 -1
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/pages/settings-report-management/settings-report-management.component.d.ts +12 -0
- package/lib/pages/settings-report-management/settings-report-management.component.model.d.ts +7 -0
- package/lib/pages/settings-report-management/settings-report-management.module.d.ts +12 -0
- package/package.json +1 -1
- package/projects/component-library/lib/pages/settings-report-management/settings-report-management.component.d.ts +12 -0
- package/projects/component-library/lib/pages/settings-report-management/settings-report-management.component.model.d.ts +7 -0
- package/projects/component-library/lib/pages/settings-report-management/settings-report-management.module.d.ts +12 -0
- package/projects/component-library/public-api.d.ts +3 -0
- package/public-api.d.ts +3 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SettingsReportManagementModel } from './settings-report-management.component.model';
|
|
3
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SettingsReportManagementComponent {
|
|
6
|
+
model: SettingsReportManagementModel;
|
|
7
|
+
detailNavigationClicked: EventEmitter<SettingDetailNavigationModel>;
|
|
8
|
+
constructor();
|
|
9
|
+
onDetailNavigationClick(event: SettingDetailNavigationModel): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsReportManagementComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsReportManagementComponent, "symphony-settings-report-management", never, { "model": "model"; }, { "detailNavigationClicked": "detailNavigationClicked"; }, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BreadcrumbModel } from '../../molecules/breadcrumb/breadcrumb.model';
|
|
2
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
3
|
+
export interface SettingsReportManagementModel {
|
|
4
|
+
pageTitle: string;
|
|
5
|
+
breadcrumbs: BreadcrumbModel[];
|
|
6
|
+
navigationList: SettingDetailNavigationModel[];
|
|
7
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./settings-report-management.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../organisms/settings-detail-navigation-list/settings-detail-navigation-list.module";
|
|
5
|
+
import * as i4 from "../../templates/setting-details/setting-details-template.module";
|
|
6
|
+
import * as i5 from "../../molecules/breadcrumb/breadcrumb.module";
|
|
7
|
+
import * as i6 from "../../atoms/h3/h3.module";
|
|
8
|
+
export declare class SettingsReportManagementModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsReportManagementModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SettingsReportManagementModule, [typeof i1.SettingsReportManagementComponent], [typeof i2.CommonModule, typeof i3.SettingsDetailNavigationListModule, typeof i4.SettingDetailsTemplateModule, typeof i5.BreadcrumbModule, typeof i6.H3Module], [typeof i1.SettingsReportManagementComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SettingsReportManagementModule>;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { SettingsReportManagementModel } from './settings-report-management.component.model';
|
|
3
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SettingsReportManagementComponent {
|
|
6
|
+
model: SettingsReportManagementModel;
|
|
7
|
+
detailNavigationClicked: EventEmitter<SettingDetailNavigationModel>;
|
|
8
|
+
constructor();
|
|
9
|
+
onDetailNavigationClick(event: SettingDetailNavigationModel): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsReportManagementComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsReportManagementComponent, "symphony-settings-report-management", never, { "model": "model"; }, { "detailNavigationClicked": "detailNavigationClicked"; }, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BreadcrumbModel } from '../../molecules/breadcrumb/breadcrumb.model';
|
|
2
|
+
import { SettingDetailNavigationModel } from '../../molecules/settings-detail-navigation-item/settings-detail-navigation-item.model';
|
|
3
|
+
export interface SettingsReportManagementModel {
|
|
4
|
+
pageTitle: string;
|
|
5
|
+
breadcrumbs: BreadcrumbModel[];
|
|
6
|
+
navigationList: SettingDetailNavigationModel[];
|
|
7
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./settings-report-management.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../organisms/settings-detail-navigation-list/settings-detail-navigation-list.module";
|
|
5
|
+
import * as i4 from "../../templates/setting-details/setting-details-template.module";
|
|
6
|
+
import * as i5 from "../../molecules/breadcrumb/breadcrumb.module";
|
|
7
|
+
import * as i6 from "../../atoms/h3/h3.module";
|
|
8
|
+
export declare class SettingsReportManagementModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsReportManagementModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SettingsReportManagementModule, [typeof i1.SettingsReportManagementComponent], [typeof i2.CommonModule, typeof i3.SettingsDetailNavigationListModule, typeof i4.SettingDetailsTemplateModule, typeof i5.BreadcrumbModule, typeof i6.H3Module], [typeof i1.SettingsReportManagementComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SettingsReportManagementModule>;
|
|
12
|
+
}
|
|
@@ -284,6 +284,9 @@ export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-
|
|
|
284
284
|
export * from './lib/pages/modals/symphony-modal/symphony-modal.component';
|
|
285
285
|
export * from './lib/pages/modals/symphony-modal/symphony-modal.model';
|
|
286
286
|
export * from './lib/pages/modals/symphony-modal/symphony-modal.module';
|
|
287
|
+
export * from './lib/pages/settings-report-management/settings-report-management.component';
|
|
288
|
+
export * from './lib/pages/settings-report-management/settings-report-management.component.model';
|
|
289
|
+
export * from './lib/pages/settings-report-management/settings-report-management.module';
|
|
287
290
|
export * from './lib/molecules/input-limited-text/input-limited-text.component';
|
|
288
291
|
export * from './lib/molecules/input-limited-text/input-limited-text.module';
|
|
289
292
|
export * from './lib/pipe/trim-id.pipe';
|
package/public-api.d.ts
CHANGED
|
@@ -284,6 +284,9 @@ export * from './lib/pages/domain-whitelisting-partial-page/domain-whitelisting-
|
|
|
284
284
|
export * from './lib/pages/modals/symphony-modal/symphony-modal.component';
|
|
285
285
|
export * from './lib/pages/modals/symphony-modal/symphony-modal.model';
|
|
286
286
|
export * from './lib/pages/modals/symphony-modal/symphony-modal.module';
|
|
287
|
+
export * from './lib/pages/settings-report-management/settings-report-management.component';
|
|
288
|
+
export * from './lib/pages/settings-report-management/settings-report-management.component.model';
|
|
289
|
+
export * from './lib/pages/settings-report-management/settings-report-management.module';
|
|
287
290
|
export * from './lib/molecules/input-limited-text/input-limited-text.component';
|
|
288
291
|
export * from './lib/molecules/input-limited-text/input-limited-text.module';
|
|
289
292
|
export * from './lib/pipe/trim-id.pipe';
|