@symphony-talent/component-library 4.82.0 → 4.84.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/icon/icon.enum.mjs +3 -1
- package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +13 -1
- package/esm2020/lib/pages/libraries-page/libraries-page.component.mjs +2 -2
- package/esm2020/lib/pages/setting-list-page/setting-list-page.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +3 -1
- package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +13 -1
- package/esm2020/projects/component-library/lib/pages/libraries-page/libraries-page.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.mjs +2 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +16 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +16 -2
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +16 -2
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +16 -2
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/icon/icon.enum.d.ts +2 -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 +61 -59
- 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 +71 -66
- package/projects/component-library/global-assets/iconography/{sfx-icons-v3.json → sfx-icons-v4.json} +222 -67
- package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +2 -0
|
@@ -1220,6 +1220,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
|
|
|
1220
1220
|
|
|
1221
1221
|
var Icons;
|
|
1222
1222
|
(function (Icons) {
|
|
1223
|
+
Icons["ASSIGNTOACTIONS"] = "si-assign-to-actions";
|
|
1223
1224
|
Icons["ACCESS"] = "si-access";
|
|
1224
1225
|
Icons["ACTIVITY"] = "si-activity";
|
|
1225
1226
|
Icons["ADD"] = "si-add";
|
|
@@ -1243,6 +1244,7 @@ var Icons;
|
|
|
1243
1244
|
Icons["EMAILDRIP"] = "si-email-drip";
|
|
1244
1245
|
Icons["EMAILOPEN"] = "si-email-open";
|
|
1245
1246
|
Icons["EMAILSEND"] = "si-email-send";
|
|
1247
|
+
Icons["EMAILSMSDEFAULT"] = "si-email-sms-default";
|
|
1246
1248
|
Icons["EXCLUDE"] = "si-exclude";
|
|
1247
1249
|
Icons["EXPAND"] = "si-expand";
|
|
1248
1250
|
Icons["FAVORITE"] = "si-favorite";
|
|
@@ -5009,6 +5011,12 @@ class IconExplorerHelper {
|
|
|
5009
5011
|
}
|
|
5010
5012
|
static getHasNoBorderIconList() {
|
|
5011
5013
|
return [
|
|
5014
|
+
{
|
|
5015
|
+
icon: Icons.ASSIGNTOACTIONS,
|
|
5016
|
+
iconName: 'ASSIGNTOACTIONS',
|
|
5017
|
+
iconClass: 'si-assign-to-actions',
|
|
5018
|
+
hasBorder: false,
|
|
5019
|
+
},
|
|
5012
5020
|
{
|
|
5013
5021
|
icon: Icons.ACCESS,
|
|
5014
5022
|
iconName: 'ACCESS',
|
|
@@ -5147,6 +5155,12 @@ class IconExplorerHelper {
|
|
|
5147
5155
|
iconClass: 'si-email-send',
|
|
5148
5156
|
hasBorder: false,
|
|
5149
5157
|
},
|
|
5158
|
+
{
|
|
5159
|
+
icon: Icons.EMAILSMSDEFAULT,
|
|
5160
|
+
iconName: 'EMAILSMSDEFAULT',
|
|
5161
|
+
iconClass: 'si-email-sms-default',
|
|
5162
|
+
hasBorder: false,
|
|
5163
|
+
},
|
|
5150
5164
|
{
|
|
5151
5165
|
icon: Icons.EXCLUDE,
|
|
5152
5166
|
iconName: 'EXCLUDE',
|
|
@@ -6184,7 +6198,7 @@ class SettingListPageComponent {
|
|
|
6184
6198
|
this.filteredCardList = this.model.cardList;
|
|
6185
6199
|
}
|
|
6186
6200
|
keywordSearch(keyword) {
|
|
6187
|
-
this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword));
|
|
6201
|
+
this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword.toLowerCase()));
|
|
6188
6202
|
}
|
|
6189
6203
|
onCardClick(card) {
|
|
6190
6204
|
this.cardClicked.emit(card);
|
|
@@ -6896,7 +6910,7 @@ class LibrariesPageComponent {
|
|
|
6896
6910
|
this.filteredCardList = this.model.cardList;
|
|
6897
6911
|
}
|
|
6898
6912
|
keywordSearch(keyword) {
|
|
6899
|
-
this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword));
|
|
6913
|
+
this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword.toLowerCase()));
|
|
6900
6914
|
}
|
|
6901
6915
|
onCardClick(card) {
|
|
6902
6916
|
this.cardClicked.emit(card);
|