@symphony-talent/component-library 3.9.0 → 3.11.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/grid/grid.component.mjs +19 -3
- package/esm2020/lib/atoms/grid/grid.model.mjs +6 -2
- package/esm2020/lib/atoms/grid/grid.module.mjs +14 -3
- package/esm2020/lib/atoms/icon/icon.enum.mjs +18 -17
- package/esm2020/lib/atoms/input-dropdown/input-dropdown.module.mjs +5 -4
- package/esm2020/lib/atoms/input-editable-text/input-editable-text.component.mjs +3 -3
- package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +43 -37
- package/esm2020/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.mjs +3 -3
- package/esm2020/lib/pages/events-settings-page/events-settings-page.component.mjs +11 -4
- package/esm2020/lib/pages/libraries-page/libraries-page.component.mjs +33 -0
- package/esm2020/lib/pages/libraries-page/libraries-page.model.mjs +2 -0
- package/esm2020/lib/pages/libraries-page/libraries-page.module.mjs +42 -0
- package/esm2020/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +6 -3
- package/esm2020/projects/component-library/lib/atoms/grid/grid.component.mjs +19 -3
- package/esm2020/projects/component-library/lib/atoms/grid/grid.model.mjs +6 -2
- package/esm2020/projects/component-library/lib/atoms/grid/grid.module.mjs +14 -3
- package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +18 -17
- package/esm2020/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.mjs +5 -4
- package/esm2020/projects/component-library/lib/atoms/input-editable-text/input-editable-text.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +43 -37
- package/esm2020/projects/component-library/lib/molecules/advertise-postingboard-selection-item/advertise-postingboard-selection-item.component.mjs +3 -3
- package/esm2020/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.mjs +11 -4
- package/esm2020/projects/component-library/lib/pages/libraries-page/libraries-page.component.mjs +33 -0
- package/esm2020/projects/component-library/lib/pages/libraries-page/libraries-page.model.mjs +2 -0
- package/esm2020/projects/component-library/lib/pages/libraries-page/libraries-page.module.mjs +42 -0
- package/esm2020/projects/component-library/lib/pages/modals/advertise-modal/advertise-modal.component.mjs +6 -3
- 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 +176 -69
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +176 -69
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +176 -69
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +176 -69
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/grid/grid.component.d.ts +11 -2
- package/lib/atoms/grid/grid.model.d.ts +7 -0
- package/lib/atoms/grid/grid.module.d.ts +1 -0
- package/lib/atoms/icon/icon.enum.d.ts +18 -17
- package/lib/atoms/input-dropdown/input-dropdown.module.d.ts +2 -1
- package/lib/pages/events-settings-page/events-settings-page.component.d.ts +3 -0
- package/lib/pages/libraries-page/libraries-page.component.d.ts +15 -0
- package/lib/pages/libraries-page/libraries-page.model.d.ts +6 -0
- package/lib/pages/libraries-page/libraries-page.module.d.ts +13 -0
- package/package.json +1 -1
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.eot +0 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.svg +56 -55
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.ttf +0 -0
- package/projects/component-library/global-assets/iconography/library-fonts/library-icons.woff +0 -0
- package/projects/component-library/global-assets/iconography/library-icons.css +64 -61
- package/projects/component-library/lib/atoms/grid/grid.component.d.ts +11 -2
- package/projects/component-library/lib/atoms/grid/grid.model.d.ts +7 -0
- package/projects/component-library/lib/atoms/grid/grid.module.d.ts +1 -0
- package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +18 -17
- package/projects/component-library/lib/atoms/input-dropdown/input-dropdown.module.d.ts +2 -1
- package/projects/component-library/lib/pages/events-settings-page/events-settings-page.component.d.ts +3 -0
- package/projects/component-library/lib/pages/libraries-page/libraries-page.component.d.ts +15 -0
- package/projects/component-library/lib/pages/libraries-page/libraries-page.model.d.ts +6 -0
- package/projects/component-library/lib/pages/libraries-page/libraries-page.module.d.ts +13 -0
- package/projects/component-library/public-api.d.ts +3 -0
- package/public-api.d.ts +3 -0
|
@@ -1,16 +1,25 @@
|
|
|
1
|
-
import { ColDef } from 'ag-grid-community';
|
|
1
|
+
import { ColDef, GridApi, GridOptions, GridReadyEvent } from 'ag-grid-community';
|
|
2
|
+
import { gridType } from "./grid.model";
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class GridComponent {
|
|
4
5
|
columnDefs: ColDef[];
|
|
5
6
|
defaultColDef: any;
|
|
6
7
|
rowData: any[];
|
|
7
8
|
onGridReadyFunction: any;
|
|
9
|
+
pageSize: number;
|
|
10
|
+
rowModelType: gridType;
|
|
11
|
+
suppressRowClickSelection: boolean;
|
|
8
12
|
getRowHeight: () => number;
|
|
9
13
|
rowHeightPage: number;
|
|
10
14
|
gridHeight: number;
|
|
15
|
+
gridApi: GridApi;
|
|
16
|
+
cacheBlockSize: number;
|
|
11
17
|
frameworkComponents: any;
|
|
18
|
+
gridOptions: GridOptions;
|
|
12
19
|
constructor();
|
|
20
|
+
updateGridFilter(): void;
|
|
13
21
|
getFrameworkComponents(): any;
|
|
22
|
+
onGridReady(gridReadyEvent: GridReadyEvent): void;
|
|
14
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<GridComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "defaultColDef": "defaultColDef"; "rowData": "rowData"; "onGridReadyFunction": "onGridReadyFunction"; }, {}, never, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<GridComponent, "symphony-grid", never, { "columnDefs": "columnDefs"; "defaultColDef": "defaultColDef"; "rowData": "rowData"; "onGridReadyFunction": "onGridReadyFunction"; "pageSize": "pageSize"; "rowModelType": "rowModelType"; "suppressRowClickSelection": "suppressRowClickSelection"; }, {}, never, never>;
|
|
16
25
|
}
|
|
@@ -4,4 +4,11 @@ export interface GridModel {
|
|
|
4
4
|
defaultColumnDef: any;
|
|
5
5
|
rowData: any[];
|
|
6
6
|
onGridReadyFunction: any;
|
|
7
|
+
pageSize: number;
|
|
8
|
+
rowModelType: gridType;
|
|
9
|
+
suppressRowClickSelection?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare enum gridType {
|
|
12
|
+
SERVERSIDE_DATA = "serverSide",
|
|
13
|
+
CLIENTSIDE_DATA = "clientSide"
|
|
7
14
|
}
|
|
@@ -1,24 +1,14 @@
|
|
|
1
1
|
export declare enum Icons {
|
|
2
2
|
ACCESS = "si-access",
|
|
3
|
-
CHATBOT = "si-chatbot",
|
|
4
|
-
CODETAG = "si-codetag",
|
|
5
|
-
CONFIRMATION = "si-confirmation",
|
|
6
|
-
FIELD = "si-field",
|
|
7
|
-
FLOW = "si-flow",
|
|
8
|
-
FORM = "si-form",
|
|
9
|
-
HIERARCHY = "si-hierarchy",
|
|
10
|
-
LIST = "si-list",
|
|
11
|
-
PASSWORD = "si-password",
|
|
12
|
-
REFERRAL = "si-referral",
|
|
13
|
-
TAG = "si-tag",
|
|
14
|
-
TEAM = "si-team",
|
|
15
|
-
WORKFLOW = "si-workflow",
|
|
16
|
-
MOREOPTIONS = "si-more-options",
|
|
17
|
-
ADD = "si-add",
|
|
18
3
|
ACTIVITY = "si-activity",
|
|
4
|
+
ADD = "si-add",
|
|
5
|
+
ADVERTISE = "si-advertise",
|
|
19
6
|
ARROWHIDEREVEAL = "si-arrow-hide-reveal",
|
|
20
7
|
ARROWNEXT = "si-arrow-next",
|
|
21
8
|
ARROWPREV = "si-arrow-prev",
|
|
9
|
+
CHATBOT = "si-chatbot",
|
|
10
|
+
CODETAG = "si-codetag",
|
|
11
|
+
CONFIRMATION = "si-confirmation",
|
|
22
12
|
CLOSEMODAL = "si-close-modal",
|
|
23
13
|
COLLAPSE = "si-collapse",
|
|
24
14
|
DAYMODE = "si-daymode",
|
|
@@ -29,16 +19,22 @@ export declare enum Icons {
|
|
|
29
19
|
EMAILDRIP = "si-email-drip",
|
|
30
20
|
EMAILOPEN = "si-email-open",
|
|
31
21
|
EMAILSEND = "si-email-send",
|
|
22
|
+
EXCLUDE = "si-exclude",
|
|
32
23
|
EXPAND = "si-expand",
|
|
33
24
|
FAVORITE = "si-favorite",
|
|
34
25
|
FEEDBACKMAYBE = "si-feedback-maybe",
|
|
35
26
|
FEEDBACKNO = "si-feedback-no",
|
|
36
27
|
FEEDBACKYES = "si-feedback-yes",
|
|
37
28
|
FOLDERMULTIPLE = "si-folder-multiple",
|
|
29
|
+
FIELD = "si-field",
|
|
30
|
+
FLOW = "si-flow",
|
|
31
|
+
FORM = "si-form",
|
|
32
|
+
HIERARCHY = "si-hierarchy",
|
|
38
33
|
INCLUDE = "si-include",
|
|
39
34
|
INFO = "si-info",
|
|
40
35
|
INTERVIEW = "si-interview",
|
|
41
36
|
LINK = "si-link",
|
|
37
|
+
LIST = "si-list",
|
|
42
38
|
LOCATION = "si-location",
|
|
43
39
|
MENUALL = "si-menu-all",
|
|
44
40
|
MENUANALYTICS = "si-menu-analytics",
|
|
@@ -53,18 +49,20 @@ export declare enum Icons {
|
|
|
53
49
|
MENURETURN = "si-menu-return",
|
|
54
50
|
MENUWORKFLOWS = "si-menu-workflows",
|
|
55
51
|
MERGE = "si-merge",
|
|
52
|
+
MOREOPTIONS = "si-more-options",
|
|
56
53
|
MOVE = "si-move",
|
|
57
54
|
NIGHTMODE = "si-nightmode",
|
|
58
55
|
NOTIFICATION = "si-notification",
|
|
59
56
|
ORGANIZECOLUMNS = "si-organize-columns",
|
|
60
57
|
ORGANIZECONTACTS = "si-organize-contacts",
|
|
58
|
+
PASSWORD = "si-password",
|
|
61
59
|
PENDINGINCOMPLETE = "si-pending-incomplete",
|
|
62
60
|
PHONENUMBER = "si-phone-number",
|
|
63
61
|
PREVIEW = "si-preview",
|
|
64
62
|
PROMOTE = "si-promote",
|
|
63
|
+
REFERRAL = "si-referral",
|
|
65
64
|
REFRESH = "si-refresh",
|
|
66
65
|
REMOVE = "si-remove",
|
|
67
|
-
EXCLUDE = "si-exclude",
|
|
68
66
|
RESULTSFILTERS = "si-results-filters",
|
|
69
67
|
REVIEW = "si-review",
|
|
70
68
|
SALARY = "si-salary",
|
|
@@ -77,11 +75,14 @@ export declare enum Icons {
|
|
|
77
75
|
SORTMINI = "si-sort-mini",
|
|
78
76
|
STATUS = "si-status",
|
|
79
77
|
SYSTEMACTION = "si-system-action",
|
|
78
|
+
TAG = "si-tag",
|
|
80
79
|
TASKCOMPLETED = "si-task-completed",
|
|
81
80
|
TASKOPEN = "si-task-open",
|
|
81
|
+
TEAM = "si-team",
|
|
82
82
|
TIMEFRAME = "si-timeframe",
|
|
83
83
|
TIMELINE = "si-timeline",
|
|
84
84
|
UPLOAD = "si-upload",
|
|
85
85
|
USERMULTIPLE = "si-user-multiple",
|
|
86
|
-
USER = "si-user"
|
|
86
|
+
USER = "si-user",
|
|
87
|
+
WORKFLOW = "si-workflow"
|
|
87
88
|
}
|
|
@@ -2,8 +2,9 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
import * as i1 from "./input-dropdown.component";
|
|
3
3
|
import * as i2 from "ngx-bootstrap/dropdown";
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
|
+
import * as i4 from "@angular/platform-browser/animations";
|
|
5
6
|
export declare class InputDropdownModule {
|
|
6
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDropdownModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<InputDropdownModule, [typeof i1.InputDropdownComponent], [typeof i2.BsDropdownModule, typeof i3.CommonModule], [typeof i1.InputDropdownComponent]>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<InputDropdownModule, [typeof i1.InputDropdownComponent], [typeof i2.BsDropdownModule, typeof i3.CommonModule, typeof i4.BrowserAnimationsModule], [typeof i1.InputDropdownComponent]>;
|
|
8
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<InputDropdownModule>;
|
|
9
10
|
}
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { BreadcrumbModel } from '../../molecules/breadcrumb/breadcrumb.model';
|
|
3
3
|
import { EventsSettingsPageModel } from './events-settings-page.model';
|
|
4
|
+
import { GridComponent } from '../../atoms/grid/grid.component';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class EventsSettingsPageComponent {
|
|
6
7
|
model: EventsSettingsPageModel;
|
|
7
8
|
keywordSearchChange: EventEmitter<string>;
|
|
8
9
|
gridActionsSelectedOption: EventEmitter<string>;
|
|
9
10
|
addButtonClicked: EventEmitter<any>;
|
|
11
|
+
grid: GridComponent;
|
|
10
12
|
eventsSettingsBreadcrumbs: BreadcrumbModel[];
|
|
11
13
|
constructor();
|
|
12
14
|
keywordSearch(keyword: string): void;
|
|
13
15
|
gridActionsSelect(selection: string): void;
|
|
14
16
|
onAddButtonClick(): void;
|
|
17
|
+
refreshGrid(): void;
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<EventsSettingsPageComponent, never>;
|
|
16
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<EventsSettingsPageComponent, "symphony-events-settings-page", never, { "model": "model"; }, { "keywordSearchChange": "keywordSearchChange"; "gridActionsSelectedOption": "gridActionsSelectedOption"; "addButtonClicked": "addButtonClicked"; }, never, ["[filter-one]"]>;
|
|
17
20
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { CardModel } from '../../molecules/card/card.model';
|
|
3
|
+
import { LibrariesPageModel } from './libraries-page.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LibrariesPageComponent implements OnInit {
|
|
6
|
+
model: LibrariesPageModel;
|
|
7
|
+
cardClicked: EventEmitter<any>;
|
|
8
|
+
filteredCardList: CardModel[];
|
|
9
|
+
constructor();
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
keywordSearch(keyword: string): void;
|
|
12
|
+
onCardClick(card: CardModel): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibrariesPageComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LibrariesPageComponent, "symphony-libraries-page", never, { "model": "model"; }, { "cardClicked": "cardClicked"; }, never, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./libraries-page.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../../templates/setting-list-template/setting-list-template.module";
|
|
5
|
+
import * as i4 from "../../atoms/h3/h3.module";
|
|
6
|
+
import * as i5 from "../../atoms/paragraph/paragraph.module";
|
|
7
|
+
import * as i6 from "../../atoms/input-text/input-text.module";
|
|
8
|
+
import * as i7 from "../../organisms/card-list/card-list.module";
|
|
9
|
+
export declare class LibrariesPageModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LibrariesPageModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LibrariesPageModule, [typeof i1.LibrariesPageComponent], [typeof i2.CommonModule, typeof i3.SettingListTemplateModule, typeof i4.H3Module, typeof i5.ParagraphModule, typeof i6.InputTextModule, typeof i7.CardListModule], [typeof i1.LibrariesPageComponent]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LibrariesPageModule>;
|
|
13
|
+
}
|
package/package.json
CHANGED