@symphony-talent/component-library 4.214.0 → 4.215.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/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/fesm2015/symphony-talent-component-library-projects-component-library.mjs +14 -0
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +14 -0
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +14 -0
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +14 -0
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/lib/atoms/icon/icon.enum.d.ts +3 -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 +2 -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 +11 -5
- package/projects/component-library/global-assets/iconography/{sfx icons-v11.json → sfx-icons-v12.json} +94 -29
- package/projects/component-library/lib/atoms/icon/icon.enum.d.ts +3 -1
|
@@ -1625,6 +1625,8 @@ var Icons;
|
|
|
1625
1625
|
Icons["SFXINSIGHTS"] = "si-sfx-insights-b";
|
|
1626
1626
|
Icons["SPARKLES"] = "si-ai-withoutBorder";
|
|
1627
1627
|
Icons["STARTOVER"] = "si-start-over";
|
|
1628
|
+
Icons["RESTORENEXT"] = "si-restore-next";
|
|
1629
|
+
Icons["RESTOREPREVIOUS"] = "si-restore-previous";
|
|
1628
1630
|
})(Icons || (Icons = {}));
|
|
1629
1631
|
|
|
1630
1632
|
class IconWrapperComponent {
|
|
@@ -7191,6 +7193,18 @@ class IconExplorerHelper {
|
|
|
7191
7193
|
iconClass: 'si-start-over',
|
|
7192
7194
|
hasBorder: false,
|
|
7193
7195
|
},
|
|
7196
|
+
{
|
|
7197
|
+
icon: Icons.RESTORENEXT,
|
|
7198
|
+
iconName: 'RESTORENEXT',
|
|
7199
|
+
iconClass: 'si-restore-next',
|
|
7200
|
+
hasBorder: false,
|
|
7201
|
+
},
|
|
7202
|
+
{
|
|
7203
|
+
icon: Icons.RESTOREPREVIOUS,
|
|
7204
|
+
iconName: 'RESTOREPREVIOUS',
|
|
7205
|
+
iconClass: 'si-restore-previous',
|
|
7206
|
+
hasBorder: false,
|
|
7207
|
+
}
|
|
7194
7208
|
];
|
|
7195
7209
|
}
|
|
7196
7210
|
static getInverseIconList() {
|