@symphony-talent/component-library 4.138.0 → 4.139.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 +5 -1
- package/esm2020/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +25 -1
- package/esm2020/projects/component-library/lib/atoms/icon/icon.enum.mjs +5 -1
- package/esm2020/projects/component-library/lib/design-guide/icon-explorer/icon-explorer.helper.mjs +25 -1
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +28 -0
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +28 -0
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +28 -0
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +28 -0
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/icon/icon.enum.d.ts +5 -1
- 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 +4 -0
- 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 +17 -5
- package/projects/component-library/global-assets/iconography/{sfx-icons-v7.json → sfx-icons-v8.json} +136 -22
- package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +5 -1
|
@@ -1445,6 +1445,10 @@ var Icons;
|
|
|
1445
1445
|
Icons["QRCODE"] = "si-qr-code";
|
|
1446
1446
|
Icons["ANALYTICSBETA"] = "si-analytics-new";
|
|
1447
1447
|
Icons["BETAANALYTICS"] = "si-beta-analytics";
|
|
1448
|
+
Icons["ADDTOFOLDER"] = "si-add-to-folder";
|
|
1449
|
+
Icons["ADDTOJOB"] = "si-add-to-job";
|
|
1450
|
+
Icons["LICENSE"] = "si-license";
|
|
1451
|
+
Icons["REPORTS"] = "si-reports";
|
|
1448
1452
|
})(Icons || (Icons = {}));
|
|
1449
1453
|
|
|
1450
1454
|
class IconWrapperComponent {
|
|
@@ -6114,6 +6118,30 @@ class IconExplorerHelper {
|
|
|
6114
6118
|
iconClass: 'si-beta-analytics',
|
|
6115
6119
|
hasBorder: false,
|
|
6116
6120
|
},
|
|
6121
|
+
{
|
|
6122
|
+
icon: Icons.ADDTOFOLDER,
|
|
6123
|
+
iconName: 'ADDTOFOLDER',
|
|
6124
|
+
iconClass: 'si-add-to-folder',
|
|
6125
|
+
hasBorder: false,
|
|
6126
|
+
},
|
|
6127
|
+
{
|
|
6128
|
+
icon: Icons.ADDTOJOB,
|
|
6129
|
+
iconName: 'ADDTOJOB',
|
|
6130
|
+
iconClass: 'si-add-to-job',
|
|
6131
|
+
hasBorder: false,
|
|
6132
|
+
},
|
|
6133
|
+
{
|
|
6134
|
+
icon: Icons.LICENSE,
|
|
6135
|
+
iconName: 'LICENSE',
|
|
6136
|
+
iconClass: 'si-license',
|
|
6137
|
+
hasBorder: false,
|
|
6138
|
+
},
|
|
6139
|
+
{
|
|
6140
|
+
icon: Icons.REPORTS,
|
|
6141
|
+
iconName: 'REPORTS',
|
|
6142
|
+
iconClass: 'si-reports',
|
|
6143
|
+
hasBorder: false,
|
|
6144
|
+
}
|
|
6117
6145
|
];
|
|
6118
6146
|
}
|
|
6119
6147
|
static getInverseIconList() {
|