@symphony-talent/component-library 3.2.1 → 3.5.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/atoms/atoms.module.mjs +7 -3
- package/esm2020/lib/atoms/grid/grid.component.mjs +5 -3
- package/esm2020/lib/atoms/grid/grid.model.mjs +1 -1
- package/esm2020/lib/atoms/icon/icon.component.mjs +5 -3
- package/esm2020/lib/atoms/input-checkbox/input-checkbox.model.mjs +1 -1
- package/esm2020/lib/atoms/input-editable-text/input-editable-text.component.mjs +37 -0
- package/esm2020/lib/atoms/input-editable-text/input-editable-text.model.mjs +2 -0
- package/esm2020/lib/atoms/input-editable-text/input-editable-text.module.mjs +21 -0
- package/esm2020/lib/atoms/input-text/input-text.component.mjs +1 -1
- package/esm2020/lib/atoms/tooltip-wrapper/tooltip-wrapper.component.mjs +17 -0
- package/esm2020/lib/atoms/tooltip-wrapper/tooltip-wrapper.module.mjs +20 -0
- package/esm2020/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.mjs +46 -0
- package/esm2020/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.mjs +20 -0
- package/esm2020/lib/molecules/breadcrumb/breadcrumb.component.mjs +1 -1
- package/esm2020/lib/molecules/card/card.component.mjs +1 -1
- package/esm2020/lib/molecules/h5-with-icon/h5-with-icon.component.mjs +25 -0
- package/esm2020/lib/molecules/h5-with-icon/h5-with-icon.model.mjs +2 -0
- package/esm2020/lib/molecules/h5-with-icon/h5-with-icon.module.mjs +37 -0
- package/esm2020/lib/molecules/icon-swatch/icon-swatch.component.mjs +1 -1
- package/esm2020/lib/molecules/molecules.module.mjs +6 -2
- package/esm2020/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.mjs +16 -0
- package/esm2020/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.mjs +19 -0
- package/esm2020/lib/pages/events-settings-page/events-settings-page.component.mjs +5 -6
- package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +60 -0
- package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.model.mjs +2 -0
- package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.module.mjs +66 -0
- package/esm2020/lib/pages/setting-list-page/setting-list-page.component.mjs +2 -2
- package/esm2020/lib/templates/modal-templates/two-column-body-template/two-column-body-template.component.mjs +12 -0
- package/esm2020/lib/templates/modal-templates/two-column-body-template/two-column-body-template.module.mjs +18 -0
- package/esm2020/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.component.mjs +12 -0
- package/esm2020/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.module.mjs +18 -0
- package/esm2020/lib/templates/setting-list-template/setting-list-template.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/atoms/atoms.module.mjs +7 -3
- package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +5 -3
- package/esm2020/projects/component-library/lib/atoms/grid/grid.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/icon/icon.component.mjs +5 -3
- package/esm2020/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/input-editable-text/input-editable-text.component.mjs +37 -0
- package/esm2020/projects/component-library/lib/atoms/input-editable-text/input-editable-text.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/atoms/input-editable-text/input-editable-text.module.mjs +21 -0
- package/esm2020/projects/component-library/lib/atoms/input-text/input-text.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/atoms/tooltip-wrapper/tooltip-wrapper.component.mjs +17 -0
- package/esm2020/projects/component-library/lib/atoms/tooltip-wrapper/tooltip-wrapper.module.mjs +20 -0
- package/esm2020/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.mjs +46 -0
- package/esm2020/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.mjs +20 -0
- package/esm2020/projects/component-library/lib/molecules/breadcrumb/breadcrumb.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/molecules/card/card.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/molecules/h5-with-icon/h5-with-icon.component.mjs +25 -0
- package/esm2020/projects/component-library/lib/molecules/h5-with-icon/h5-with-icon.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/molecules/h5-with-icon/h5-with-icon.module.mjs +37 -0
- package/esm2020/projects/component-library/lib/molecules/icon-swatch/icon-swatch.component.mjs +1 -1
- package/esm2020/projects/component-library/lib/molecules/molecules.module.mjs +6 -2
- package/esm2020/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.mjs +16 -0
- package/esm2020/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.mjs +19 -0
- package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.mjs +5 -6
- package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +60 -0
- package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.module.mjs +66 -0
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/templates/modal-templates/two-column-body-template/two-column-body-template.component.mjs +12 -0
- package/esm2020/projects/component-library/lib/templates/modal-templates/two-column-body-template/two-column-body-template.module.mjs +18 -0
- package/esm2020/projects/component-library/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.component.mjs +12 -0
- package/esm2020/projects/component-library/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.module.mjs +18 -0
- package/esm2020/projects/component-library/lib/templates/setting-list-template/setting-list-template.component.mjs +3 -3
- package/esm2020/projects/component-library/public-api.mjs +8 -1
- package/esm2020/public-api.mjs +8 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +381 -23
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +381 -23
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +380 -23
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +380 -23
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/atoms.module.d.ts +2 -1
- package/lib/atoms/grid/grid.component.d.ts +2 -1
- package/lib/atoms/grid/grid.model.d.ts +1 -0
- package/lib/atoms/icon/icon.component.d.ts +2 -1
- package/lib/atoms/input-checkbox/input-checkbox.model.d.ts +1 -1
- package/lib/atoms/input-editable-text/input-editable-text.component.d.ts +16 -0
- package/lib/atoms/input-editable-text/input-editable-text.model.d.ts +7 -0
- package/lib/atoms/input-editable-text/input-editable-text.module.d.ts +11 -0
- package/lib/atoms/tooltip-wrapper/tooltip-wrapper.component.d.ts +8 -0
- package/lib/atoms/tooltip-wrapper/tooltip-wrapper.module.d.ts +9 -0
- package/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.d.ts +18 -0
- package/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.d.ts +10 -0
- package/lib/molecules/h5-with-icon/h5-with-icon.component.d.ts +8 -0
- package/lib/molecules/h5-with-icon/h5-with-icon.model.d.ts +9 -0
- package/lib/molecules/h5-with-icon/h5-with-icon.module.d.ts +12 -0
- package/lib/molecules/molecules.module.d.ts +2 -1
- package/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.d.ts +8 -0
- package/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.d.ts +9 -0
- package/lib/pages/modals/advertise-modal/advertise-modal.component.d.ts +16 -0
- package/lib/pages/modals/advertise-modal/advertise-modal.model.d.ts +37 -0
- package/lib/pages/modals/advertise-modal/advertise-modal.module.d.ts +19 -0
- package/lib/templates/modal-templates/two-column-body-template/two-column-body-template.component.d.ts +6 -0
- package/lib/templates/modal-templates/two-column-body-template/two-column-body-template.module.d.ts +8 -0
- package/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.component.d.ts +6 -0
- package/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.module.d.ts +8 -0
- package/package.json +1 -1
- package/projects/component-library/global.scss +0 -225
- package/projects/component-library/lib/atoms/atoms.module.d.ts +2 -1
- package/projects/component-library/lib/atoms/grid/grid.component.d.ts +2 -1
- package/projects/component-library/lib/atoms/grid/grid.model.d.ts +1 -0
- package/projects/component-library/lib/atoms/icon/icon.component.d.ts +2 -1
- package/projects/component-library/lib/atoms/input-checkbox/input-checkbox.model.d.ts +1 -1
- package/projects/component-library/lib/atoms/input-editable-text/input-editable-text.component.d.ts +16 -0
- package/projects/component-library/lib/atoms/input-editable-text/input-editable-text.model.d.ts +7 -0
- package/projects/component-library/lib/atoms/input-editable-text/input-editable-text.module.d.ts +11 -0
- package/projects/component-library/lib/atoms/tooltip-wrapper/tooltip-wrapper.component.d.ts +8 -0
- package/projects/component-library/lib/atoms/tooltip-wrapper/tooltip-wrapper.module.d.ts +9 -0
- package/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.d.ts +18 -0
- package/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module.d.ts +10 -0
- package/projects/component-library/lib/molecules/h5-with-icon/h5-with-icon.component.d.ts +8 -0
- package/projects/component-library/lib/molecules/h5-with-icon/h5-with-icon.model.d.ts +9 -0
- package/projects/component-library/lib/molecules/h5-with-icon/h5-with-icon.module.d.ts +12 -0
- package/projects/component-library/lib/molecules/molecules.module.d.ts +2 -1
- package/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.component.d.ts +8 -0
- package/projects/component-library/lib/organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module.d.ts +9 -0
- package/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.d.ts +16 -0
- package/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.model.d.ts +37 -0
- package/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.module.d.ts +19 -0
- package/projects/component-library/lib/templates/modal-templates/two-column-body-template/two-column-body-template.component.d.ts +6 -0
- package/projects/component-library/lib/templates/modal-templates/two-column-body-template/two-column-body-template.module.d.ts +8 -0
- package/projects/component-library/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.component.d.ts +6 -0
- package/projects/component-library/lib/templates/modal-templates/two-column-modal-template/two-column-modal-template.module.d.ts +8 -0
- package/projects/component-library/public-api.d.ts +7 -0
- package/public-api.d.ts +7 -0
|
@@ -24,8 +24,9 @@ import * as i22 from "./toaster-alert/toaster-alert.module";
|
|
|
24
24
|
import * as i23 from "./sfx-loader/sfx-loader.module";
|
|
25
25
|
import * as i24 from "./sfx-page-loader/sfx-page-loader.module";
|
|
26
26
|
import * as i25 from "./sfx-progress-bar/sfx-progress-bar.module";
|
|
27
|
+
import * as i26 from "./tooltip-wrapper/tooltip-wrapper.module";
|
|
27
28
|
export declare class AtomsModule {
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtomsModule, never>;
|
|
29
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule]>;
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule, typeof i26.TooltipWrapperModule]>;
|
|
30
31
|
static ɵinj: i0.ɵɵInjectorDeclaration<AtomsModule>;
|
|
31
32
|
}
|
|
@@ -2,6 +2,7 @@ import { ColDef } from 'ag-grid-community';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class GridComponent {
|
|
4
4
|
columnDefs: ColDef[];
|
|
5
|
+
defaultColDef: any;
|
|
5
6
|
rowData: any[];
|
|
6
7
|
onGridReadyFunction: any;
|
|
7
8
|
getRowHeight: () => number;
|
|
@@ -11,5 +12,5 @@ export declare class GridComponent {
|
|
|
11
12
|
constructor();
|
|
12
13
|
getFrameworkComponents(): any;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "rowData": "rowData"; "onGridReadyFunction": "onGridReadyFunction"; }, {}, never, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "defaultColDef": "defaultColDef"; "rowData": "rowData"; "onGridReadyFunction": "onGridReadyFunction"; }, {}, never, never>;
|
|
15
16
|
}
|
|
@@ -4,9 +4,10 @@ export declare class IconComponent {
|
|
|
4
4
|
icon: string;
|
|
5
5
|
isSecondary: boolean;
|
|
6
6
|
size: string;
|
|
7
|
+
iconColor: string;
|
|
7
8
|
clicked: EventEmitter<string>;
|
|
8
9
|
constructor();
|
|
9
10
|
onClick(): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "symphony-icon", never, { "icon": "icon"; "isSecondary": "isSecondary"; "size": "size"; }, { "clicked": "clicked"; }, never, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "symphony-icon", never, { "icon": "icon"; "isSecondary": "isSecondary"; "size": "size"; "iconColor": "iconColor"; }, { "clicked": "clicked"; }, never, never>;
|
|
12
13
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { InputEditableTextModel } from './input-editable-text.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InputEditableTextComponent {
|
|
5
|
+
model: InputEditableTextModel;
|
|
6
|
+
type: string;
|
|
7
|
+
confirm: EventEmitter<InputEditableTextModel>;
|
|
8
|
+
previousValue: string;
|
|
9
|
+
isInEditMode: boolean;
|
|
10
|
+
constructor();
|
|
11
|
+
onEditClick(): void;
|
|
12
|
+
onConfirmClick(): void;
|
|
13
|
+
onCloseClick(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputEditableTextComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputEditableTextComponent, "symphony-input-editable-text", never, { "model": "model"; "type": "type"; }, { "confirm": "confirm"; }, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./input-editable-text.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../icon/icon.module";
|
|
5
|
+
import * as i4 from "@angular/forms";
|
|
6
|
+
import * as i5 from "../paragraph/paragraph.module";
|
|
7
|
+
export declare class InputEditableTextModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputEditableTextModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputEditableTextModule, [typeof i1.InputEditableTextComponent], [typeof i2.CommonModule, typeof i3.IconModule, typeof i4.FormsModule, typeof i5.ParagraphModule], [typeof i1.InputEditableTextComponent]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<InputEditableTextModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TooltipWrapperComponent {
|
|
3
|
+
placement: string;
|
|
4
|
+
tooltipText: string;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipWrapperComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TooltipWrapperComponent, "symphony-tooltip-wrapper", never, { "placement": "placement"; "tooltipText": "tooltipText"; }, {}, never, ["*"]>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./tooltip-wrapper.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "ngx-bootstrap/tooltip";
|
|
5
|
+
export declare class TooltipWrapperModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TooltipWrapperModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TooltipWrapperModule, [typeof i1.TooltipWrapperComponent], [typeof i2.CommonModule, typeof i3.TooltipModule], [typeof i1.TooltipWrapperComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TooltipWrapperModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { InputCheckboxModel } from '../../atoms/input-checkbox/input-checkbox.model';
|
|
3
|
+
import { InputEditableTextModel } from '../../atoms/input-editable-text/input-editable-text.model';
|
|
4
|
+
import { PostingBoardsSelectionModel } from '../../pages/modals/advertise-modal/advertise-modal.model';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AdvertisePostingboardSelectionItemComponent implements OnInit {
|
|
7
|
+
model: PostingBoardsSelectionModel;
|
|
8
|
+
priceChange: EventEmitter<PostingBoardsSelectionModel>;
|
|
9
|
+
postingBoardSelect: EventEmitter<PostingBoardsSelectionModel>;
|
|
10
|
+
editableTextModel: InputEditableTextModel;
|
|
11
|
+
constructor();
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
onBoardPriceChange(priceChangeEvent: InputEditableTextModel): void;
|
|
14
|
+
onPostingBoardSelect(postingBoardSelectEvent: InputCheckboxModel): void;
|
|
15
|
+
mapModel(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdvertisePostingboardSelectionItemComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvertisePostingboardSelectionItemComponent, "symphony-advertise-postingboard-selection-item", never, { "model": "model"; }, { "priceChange": "priceChange"; "postingBoardSelect": "postingBoardSelect"; }, never, never>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./advertise-postingboard-selection-item.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../atoms/input-editable-text/input-editable-text.module";
|
|
5
|
+
import * as i4 from "../../atoms/input-checkbox/input-checkbox.module";
|
|
6
|
+
export declare class AdvertisePostingboardSelectionItemModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdvertisePostingboardSelectionItemModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdvertisePostingboardSelectionItemModule, [typeof i1.AdvertisePostingboardSelectionItemComponent], [typeof i2.CommonModule, typeof i3.InputEditableTextModule, typeof i4.InputCheckboxModule], [typeof i1.AdvertisePostingboardSelectionItemComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AdvertisePostingboardSelectionItemModule>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { H5WithIconModel } from './h5-with-icon.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class H5WithIconComponent {
|
|
4
|
+
model: H5WithIconModel;
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<H5WithIconComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<H5WithIconComponent, "symphony-h5-with-icon", never, { "model": "model"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./h5-with-icon.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../atoms/h5/h5.module";
|
|
5
|
+
import * as i4 from "../../atoms/icon/icon.module";
|
|
6
|
+
import * as i5 from "ngx-bootstrap/tooltip";
|
|
7
|
+
import * as i6 from "../../atoms/tooltip-wrapper/tooltip-wrapper.module";
|
|
8
|
+
export declare class H5WithIconModule {
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<H5WithIconModule, never>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<H5WithIconModule, [typeof i1.H5WithIconComponent], [typeof i2.CommonModule, typeof i3.H5Module, typeof i4.IconModule, typeof i5.TooltipModule, typeof i6.TooltipWrapperModule], [typeof i1.H5WithIconComponent]>;
|
|
11
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<H5WithIconModule>;
|
|
12
|
+
}
|
|
@@ -6,8 +6,9 @@ import * as i4 from "./pills/pills.module";
|
|
|
6
6
|
import * as i5 from "./color-swatch/color-swatch.module";
|
|
7
7
|
import * as i6 from "./icon-swatch/icon-swatch.module";
|
|
8
8
|
import * as i7 from "./breadcrumb/breadcrumb.module";
|
|
9
|
+
import * as i8 from "./h5-with-icon/h5-with-icon.module";
|
|
9
10
|
export declare class MoleculesModule {
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<MoleculesModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule]>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MoleculesModule, never, [typeof i1.CommonModule, typeof i2.AvatarModule, typeof i3.ContextualMenuModule, typeof i4.PillsModule, typeof i5.ColorSwatchModule, typeof i6.IconSwatchModule, typeof i7.BreadcrumbModule, typeof i8.H5WithIconModule], [typeof i4.PillsModule, typeof i7.BreadcrumbModule]>;
|
|
12
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<MoleculesModule>;
|
|
13
14
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PostingBoardsSelectionModel } from '../../pages/modals/advertise-modal/advertise-modal.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class AdvertisePostingboardSelectionListComponent {
|
|
4
|
+
model: PostingBoardsSelectionModel[];
|
|
5
|
+
constructor();
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdvertisePostingboardSelectionListComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvertisePostingboardSelectionListComponent, "symphony-advertise-postingboard-selection-list", never, { "model": "model"; }, {}, never, never>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./advertise-postingboard-selection-list.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.module";
|
|
5
|
+
export declare class AdvertisePostingboardSelectionListModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdvertisePostingboardSelectionListModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdvertisePostingboardSelectionListModule, [typeof i1.AdvertisePostingboardSelectionListComponent], [typeof i2.CommonModule, typeof i3.AdvertisePostingboardSelectionItemModule], [typeof i1.AdvertisePostingboardSelectionListComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AdvertisePostingboardSelectionListModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { AdvertiseModalModel, PostingBoardsSelectionModel } from './advertise-modal.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AdvertiseModalComponent implements OnInit {
|
|
5
|
+
model: Partial<AdvertiseModalModel>;
|
|
6
|
+
buttonClicked: EventEmitter<string>;
|
|
7
|
+
closeButtonClicked: EventEmitter<string>;
|
|
8
|
+
filteredPostingBoardList: PostingBoardsSelectionModel[];
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
keywordSearch(keyword: string): void;
|
|
12
|
+
onButtonClick(text: string): void;
|
|
13
|
+
onCloseButtonClick(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdvertiseModalComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdvertiseModalComponent, "symphony-advertise-modal", never, { "model": "model"; }, { "buttonClicked": "buttonClicked"; "closeButtonClicked": "closeButtonClicked"; }, never, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { H5WithIconModel } from '../../../molecules/h5-with-icon/h5-with-icon.model';
|
|
2
|
+
export interface AdvertiseModalModel {
|
|
3
|
+
title: string;
|
|
4
|
+
subtitle: H5WithIconModel;
|
|
5
|
+
showFunds: boolean;
|
|
6
|
+
fundsInfo: H5WithIconModel;
|
|
7
|
+
primaryButtonText: string;
|
|
8
|
+
secondaryButtonText: string;
|
|
9
|
+
backButtonText: string;
|
|
10
|
+
jobsToAdvertise: AdvertiseJobModel[];
|
|
11
|
+
jobBoards: PostingBoardsSelectionModel[];
|
|
12
|
+
isJobBoardsLoading: boolean;
|
|
13
|
+
hasJobBoardsLoadingFailed: boolean;
|
|
14
|
+
currency: string;
|
|
15
|
+
navigation: AdvertiseModalNavigation;
|
|
16
|
+
}
|
|
17
|
+
export interface AdvertiseJobModel {
|
|
18
|
+
id: number;
|
|
19
|
+
jobTitle: string;
|
|
20
|
+
}
|
|
21
|
+
export interface PostingBoardsSelectionModel {
|
|
22
|
+
id: number;
|
|
23
|
+
boardName: string;
|
|
24
|
+
boardPrice: number;
|
|
25
|
+
isSelected: boolean;
|
|
26
|
+
isEditable: boolean;
|
|
27
|
+
isInEditMode: boolean;
|
|
28
|
+
boardGroup: string;
|
|
29
|
+
isPayPerClick: boolean;
|
|
30
|
+
}
|
|
31
|
+
export interface AdvertiseModalNavigation {
|
|
32
|
+
showJobBoardsSelection: boolean;
|
|
33
|
+
showOrderReview: boolean;
|
|
34
|
+
showOrderProcessing: boolean;
|
|
35
|
+
showConfirmation: boolean;
|
|
36
|
+
showCancel: boolean;
|
|
37
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./advertise-modal.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../../templates/modal-templates/two-column-modal-template/two-column-modal-template.module";
|
|
5
|
+
import * as i4 from "../../../templates/modal-templates/two-column-body-template/two-column-body-template.module";
|
|
6
|
+
import * as i5 from "../../../atoms/h4/h4.module";
|
|
7
|
+
import * as i6 from "../../../atoms/h5/h5.module";
|
|
8
|
+
import * as i7 from "../../../atoms/paragraph/paragraph.module";
|
|
9
|
+
import * as i8 from "../../../atoms/icon/icon.module";
|
|
10
|
+
import * as i9 from "../../../atoms/input-text/input-text.module";
|
|
11
|
+
import * as i10 from "../../../atoms/button/button.module";
|
|
12
|
+
import * as i11 from "../../../templates/placeholder/placeholder.module";
|
|
13
|
+
import * as i12 from "../../../molecules/h5-with-icon/h5-with-icon.module";
|
|
14
|
+
import * as i13 from "../../../organisms/advertise-postingboard-selection-list/advertise-postingboard-selection-list.module";
|
|
15
|
+
export declare class ModalModule {
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ModalModule, never>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ModalModule, [typeof i1.AdvertiseModalComponent], [typeof i2.CommonModule, typeof i3.TwoColumnModalModule, typeof i4.TwoColumnBodyTemplateModule, typeof i5.H4Module, typeof i6.H5Module, typeof i7.ParagraphModule, typeof i8.IconModule, typeof i9.InputTextModule, typeof i10.ButtonModule, typeof i11.PlaceholderModule, typeof i12.H5WithIconModule, typeof i13.AdvertisePostingboardSelectionListModule], [typeof i1.AdvertiseModalComponent]>;
|
|
18
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ModalModule>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TwoColumnBodyTemplateComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnBodyTemplateComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoColumnBodyTemplateComponent, "symphony-two-column-body-template", never, {}, {}, never, ["[sfx-left-col-header]", "[sfx-right-col-header]", "[sfx-left-column]", "[sfx-right-column]"]>;
|
|
6
|
+
}
|
package/lib/templates/modal-templates/two-column-body-template/two-column-body-template.module.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./two-column-body-template.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class TwoColumnBodyTemplateModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnBodyTemplateModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TwoColumnBodyTemplateModule, [typeof i1.TwoColumnBodyTemplateComponent], [typeof i2.CommonModule], [typeof i1.TwoColumnBodyTemplateComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TwoColumnBodyTemplateModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class TwoColumnModalTemplateComponent {
|
|
3
|
+
constructor();
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnModalTemplateComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TwoColumnModalTemplateComponent, "symphony-two-column-modal-template", never, {}, {}, never, ["[sfx-modal-title]", "[sfx-close-button]", "[sfx-modal-subtitle]", "[sfx-modal-body-area]", "[sfx-button-secondary]", "[sfx-button-primary]"]>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./two-column-modal-template.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class TwoColumnModalModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TwoColumnModalModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TwoColumnModalModule, [typeof i1.TwoColumnModalTemplateComponent], [typeof i2.CommonModule], [typeof i1.TwoColumnModalTemplateComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TwoColumnModalModule>;
|
|
8
|
+
}
|
package/package.json
CHANGED
|
@@ -363,231 +363,6 @@ body {
|
|
|
363
363
|
// End Helper Classes
|
|
364
364
|
// End Utilities
|
|
365
365
|
}
|
|
366
|
-
p {
|
|
367
|
-
font-size: $font-14;
|
|
368
|
-
font-family: $font-reg;
|
|
369
|
-
}
|
|
370
|
-
h5 {
|
|
371
|
-
font-size: $font-14;
|
|
372
|
-
font-family: $font-bold;
|
|
373
|
-
}
|
|
374
|
-
h4 {
|
|
375
|
-
font-size: $font-24;
|
|
376
|
-
font-family: $font-bold;
|
|
377
|
-
}
|
|
378
|
-
h3 {
|
|
379
|
-
font-size: $font-30;
|
|
380
|
-
font-family: $font-bold;
|
|
381
|
-
}
|
|
382
|
-
h2 {
|
|
383
|
-
font-size: $font-46;
|
|
384
|
-
font-family: $font-black;
|
|
385
|
-
}
|
|
386
|
-
h1 {
|
|
387
|
-
font-size: $font-56;
|
|
388
|
-
font-family: $font-black;
|
|
389
|
-
}
|
|
390
|
-
// End Typography
|
|
391
|
-
// Utilities
|
|
392
|
-
// Fonts
|
|
393
|
-
.sfx-font12 {
|
|
394
|
-
font-size: $font-12;
|
|
395
|
-
}
|
|
396
|
-
.sfx-font14 {
|
|
397
|
-
font-size: $font-14;
|
|
398
|
-
}
|
|
399
|
-
.sfx-font18 {
|
|
400
|
-
font-size: $font-18;
|
|
401
|
-
}
|
|
402
|
-
.sfx-font24 {
|
|
403
|
-
font-size: $font-24;
|
|
404
|
-
}
|
|
405
|
-
.sfx-font30 {
|
|
406
|
-
font-size: $font-30;
|
|
407
|
-
}
|
|
408
|
-
.sfx-font-40 {
|
|
409
|
-
font-size: $font-40;
|
|
410
|
-
}
|
|
411
|
-
.sfx-font46 {
|
|
412
|
-
font-size: $font-46;
|
|
413
|
-
}
|
|
414
|
-
.sfx-font56 {
|
|
415
|
-
font-size: $font-56;
|
|
416
|
-
}
|
|
417
|
-
.sfx-font400 {
|
|
418
|
-
font-weight: 400;
|
|
419
|
-
}
|
|
420
|
-
.sfx-font600 {
|
|
421
|
-
font-weight: 600;
|
|
422
|
-
}
|
|
423
|
-
.sfx-font700 {
|
|
424
|
-
font-weight: 600;
|
|
425
|
-
}
|
|
426
|
-
.sfx-font-light {
|
|
427
|
-
font-family: $font-light;
|
|
428
|
-
}
|
|
429
|
-
.sfx-font-bold {
|
|
430
|
-
font-family: $font-bold;
|
|
431
|
-
}
|
|
432
|
-
.sfx-font-black {
|
|
433
|
-
font-family: $font-black;
|
|
434
|
-
}
|
|
435
|
-
// End Fonts
|
|
436
|
-
// Color
|
|
437
|
-
.sfx-txt-white {
|
|
438
|
-
color: $color-white;
|
|
439
|
-
}
|
|
440
|
-
.sfx-txt-black {
|
|
441
|
-
color: $color-black;
|
|
442
|
-
}
|
|
443
|
-
.sfx-txt-mdm-black {
|
|
444
|
-
color: $color-mdm-black;
|
|
445
|
-
}
|
|
446
|
-
.sfx-txt-gray {
|
|
447
|
-
color: $color-gray;
|
|
448
|
-
}
|
|
449
|
-
.sfx-txt-light-gray {
|
|
450
|
-
color: $color-light-gray;
|
|
451
|
-
}
|
|
452
|
-
.sfx-txt-light-gray2 {
|
|
453
|
-
color: $color-light-gray2;
|
|
454
|
-
}
|
|
455
|
-
.sfx-txt-fuchsia {
|
|
456
|
-
color: $color-st-fuchsia;
|
|
457
|
-
}
|
|
458
|
-
.sfx-txt-purple {
|
|
459
|
-
color: $color-purple;
|
|
460
|
-
}
|
|
461
|
-
.sfx-txt-pink {
|
|
462
|
-
color: $color-pink;
|
|
463
|
-
}
|
|
464
|
-
.sfx-txt-turq {
|
|
465
|
-
color: $color-turquoise;
|
|
466
|
-
}
|
|
467
|
-
.sfx-txt-blue {
|
|
468
|
-
color: $color-blue;
|
|
469
|
-
}
|
|
470
|
-
.sfx-txt-green {
|
|
471
|
-
color: $color-green;
|
|
472
|
-
}
|
|
473
|
-
.sfx-txt-orange {
|
|
474
|
-
color: $color-orange;
|
|
475
|
-
}
|
|
476
|
-
.sfx-txt-yellow {
|
|
477
|
-
color: $color-yellow;
|
|
478
|
-
}
|
|
479
|
-
.sfx-txt-red {
|
|
480
|
-
color: $color-red;
|
|
481
|
-
}
|
|
482
|
-
.sfx-link {
|
|
483
|
-
color: $color-st-link;
|
|
484
|
-
}
|
|
485
|
-
// Background Color
|
|
486
|
-
.sfx-bg-black {
|
|
487
|
-
background: $color-black;
|
|
488
|
-
}
|
|
489
|
-
.sfx-bg-white {
|
|
490
|
-
background: $color-white;
|
|
491
|
-
}
|
|
492
|
-
// End Background Color
|
|
493
|
-
// End Color
|
|
494
|
-
|
|
495
|
-
// Border
|
|
496
|
-
.sfx-border-0 {
|
|
497
|
-
border: 0;
|
|
498
|
-
}
|
|
499
|
-
.sfx-border-top-0 {
|
|
500
|
-
border-top: 0;
|
|
501
|
-
}
|
|
502
|
-
.sfx-border-bottom-0 {
|
|
503
|
-
border-bottom: 0;
|
|
504
|
-
}
|
|
505
|
-
.sfx-border-left-0 {
|
|
506
|
-
border-left: 0;
|
|
507
|
-
}
|
|
508
|
-
.sfx-border-right-0 {
|
|
509
|
-
border-right: 0;
|
|
510
|
-
}
|
|
511
|
-
.sfx-border-gray-1 {
|
|
512
|
-
border: 1px solid $color-light-gray2;
|
|
513
|
-
}
|
|
514
|
-
.sfx-border-black-1 {
|
|
515
|
-
border: 1px solid $color-black;
|
|
516
|
-
}
|
|
517
|
-
.sfx-border-bottom-gray-1 {
|
|
518
|
-
border-bottom: 1px solid $color-light-gray2;
|
|
519
|
-
}
|
|
520
|
-
.sfx-border-bottom-black-1 {
|
|
521
|
-
border-bottom: 1px solid $color-black;
|
|
522
|
-
}
|
|
523
|
-
.sfx-border-bottom-mdm-black-1 {
|
|
524
|
-
border-bottom: 1px solid $color-mdm-black;
|
|
525
|
-
}
|
|
526
|
-
.sfx-border-bottom-black-5 {
|
|
527
|
-
border-bottom: 5px solid $color-black;
|
|
528
|
-
}
|
|
529
|
-
.sfx-border-bottom-white-5 {
|
|
530
|
-
border-bottom: 5px solid $color-white;
|
|
531
|
-
}
|
|
532
|
-
.sfx-border-top-gray-1 {
|
|
533
|
-
border-top: 1px solid $color-light-gray2;
|
|
534
|
-
}
|
|
535
|
-
.sfx-border-top-black-1 {
|
|
536
|
-
border-top: 1px solid $color-black;
|
|
537
|
-
}
|
|
538
|
-
.sfx-border-top-black-5 {
|
|
539
|
-
border-top: 5px solid $color-black;
|
|
540
|
-
}
|
|
541
|
-
.sfx-border-radius-0 {
|
|
542
|
-
border-radius: 0;
|
|
543
|
-
}
|
|
544
|
-
// End Border
|
|
545
|
-
// Display
|
|
546
|
-
.sfx-d-none {
|
|
547
|
-
display: none;
|
|
548
|
-
}
|
|
549
|
-
.sfx-d-block {
|
|
550
|
-
display: block;
|
|
551
|
-
}
|
|
552
|
-
.sfx-d-inline-block {
|
|
553
|
-
display: inline-block;
|
|
554
|
-
}
|
|
555
|
-
.sfx-d-flex {
|
|
556
|
-
display: flex;
|
|
557
|
-
}
|
|
558
|
-
.sfx-d-table {
|
|
559
|
-
display: table;
|
|
560
|
-
}
|
|
561
|
-
.sfx-d-grid {
|
|
562
|
-
display: grid;
|
|
563
|
-
}
|
|
564
|
-
// End Display
|
|
565
|
-
.sfx-wid-100 {
|
|
566
|
-
width: 100%;
|
|
567
|
-
}
|
|
568
|
-
.sfx-wid-100px {
|
|
569
|
-
width: 100px;
|
|
570
|
-
}
|
|
571
|
-
// Position
|
|
572
|
-
.sfx-position-relative {
|
|
573
|
-
position: relative;
|
|
574
|
-
}
|
|
575
|
-
.sfx-position-absolute {
|
|
576
|
-
position: absolute;
|
|
577
|
-
}
|
|
578
|
-
.sfx-position-fixed {
|
|
579
|
-
position: fixed;
|
|
580
|
-
}
|
|
581
|
-
.sfx-position-sticky {
|
|
582
|
-
position: sticky;
|
|
583
|
-
}
|
|
584
|
-
// End Position
|
|
585
|
-
// Helper Classes
|
|
586
|
-
.sfx-cursor-pointer {
|
|
587
|
-
cursor: pointer;
|
|
588
|
-
}
|
|
589
|
-
// End Helper Classes
|
|
590
|
-
// End Utilities
|
|
591
366
|
}
|
|
592
367
|
// Grid
|
|
593
368
|
.ag-theme-alpine {
|
|
@@ -24,8 +24,9 @@ import * as i22 from "./toaster-alert/toaster-alert.module";
|
|
|
24
24
|
import * as i23 from "./sfx-loader/sfx-loader.module";
|
|
25
25
|
import * as i24 from "./sfx-page-loader/sfx-page-loader.module";
|
|
26
26
|
import * as i25 from "./sfx-progress-bar/sfx-progress-bar.module";
|
|
27
|
+
import * as i26 from "./tooltip-wrapper/tooltip-wrapper.module";
|
|
27
28
|
export declare class AtomsModule {
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtomsModule, never>;
|
|
29
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule]>;
|
|
30
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AtomsModule, never, never, [typeof i1.ButtonModule, typeof i2.ContextualMenuModule, typeof i3.AvatarModule, typeof i4.PillModule, typeof i5.H1Module, typeof i6.H2Module, typeof i7.H3Module, typeof i8.H4Module, typeof i9.H5Module, typeof i10.ParagraphModule, typeof i11.IconModule, typeof i12.IconWrapperModule, typeof i13.FilterAreaModule, typeof i14.TwoColumnFilterAreaModule, typeof i15.InputRadioModule, typeof i16.InputCheckboxModule, typeof i17.InputTextModule, typeof i18.InputDropdownModule, typeof i19.GridModule, typeof i20.ContactActivityScoreModule, typeof i21.RelevanceScoreModule, typeof i22.ToasterAlertModule, typeof i23.SfxLoaderModule, typeof i24.SfxPageLoaderModule, typeof i25.SfxProgressBarModule, typeof i26.TooltipWrapperModule]>;
|
|
30
31
|
static ɵinj: i0.ɵɵInjectorDeclaration<AtomsModule>;
|
|
31
32
|
}
|
|
@@ -2,6 +2,7 @@ import { ColDef } from 'ag-grid-community';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class GridComponent {
|
|
4
4
|
columnDefs: ColDef[];
|
|
5
|
+
defaultColDef: any;
|
|
5
6
|
rowData: any[];
|
|
6
7
|
onGridReadyFunction: any;
|
|
7
8
|
getRowHeight: () => number;
|
|
@@ -11,5 +12,5 @@ export declare class GridComponent {
|
|
|
11
12
|
constructor();
|
|
12
13
|
getFrameworkComponents(): any;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "rowData": "rowData"; "onGridReadyFunction": "onGridReadyFunction"; }, {}, never, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "defaultColDef": "defaultColDef"; "rowData": "rowData"; "onGridReadyFunction": "onGridReadyFunction"; }, {}, never, never>;
|
|
15
16
|
}
|
|
@@ -4,9 +4,10 @@ export declare class IconComponent {
|
|
|
4
4
|
icon: string;
|
|
5
5
|
isSecondary: boolean;
|
|
6
6
|
size: string;
|
|
7
|
+
iconColor: string;
|
|
7
8
|
clicked: EventEmitter<string>;
|
|
8
9
|
constructor();
|
|
9
10
|
onClick(): void;
|
|
10
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "symphony-icon", never, { "icon": "icon"; "isSecondary": "isSecondary"; "size": "size"; }, { "clicked": "clicked"; }, never, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "symphony-icon", never, { "icon": "icon"; "isSecondary": "isSecondary"; "size": "size"; "iconColor": "iconColor"; }, { "clicked": "clicked"; }, never, never>;
|
|
12
13
|
}
|
package/projects/component-library/lib/atoms/input-editable-text/input-editable-text.component.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { InputEditableTextModel } from './input-editable-text.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class InputEditableTextComponent {
|
|
5
|
+
model: InputEditableTextModel;
|
|
6
|
+
type: string;
|
|
7
|
+
confirm: EventEmitter<InputEditableTextModel>;
|
|
8
|
+
previousValue: string;
|
|
9
|
+
isInEditMode: boolean;
|
|
10
|
+
constructor();
|
|
11
|
+
onEditClick(): void;
|
|
12
|
+
onConfirmClick(): void;
|
|
13
|
+
onCloseClick(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputEditableTextComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputEditableTextComponent, "symphony-input-editable-text", never, { "model": "model"; "type": "type"; }, { "confirm": "confirm"; }, never, never>;
|
|
16
|
+
}
|