@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
|
@@ -1623,6 +1623,8 @@ var Icons;
|
|
|
1623
1623
|
Icons["SFXINSIGHTS"] = "si-sfx-insights-b";
|
|
1624
1624
|
Icons["SPARKLES"] = "si-ai-withoutBorder";
|
|
1625
1625
|
Icons["STARTOVER"] = "si-start-over";
|
|
1626
|
+
Icons["RESTORENEXT"] = "si-restore-next";
|
|
1627
|
+
Icons["RESTOREPREVIOUS"] = "si-restore-previous";
|
|
1626
1628
|
})(Icons || (Icons = {}));
|
|
1627
1629
|
|
|
1628
1630
|
class IconWrapperComponent {
|
|
@@ -7182,6 +7184,18 @@ class IconExplorerHelper {
|
|
|
7182
7184
|
iconClass: 'si-start-over',
|
|
7183
7185
|
hasBorder: false,
|
|
7184
7186
|
},
|
|
7187
|
+
{
|
|
7188
|
+
icon: Icons.RESTORENEXT,
|
|
7189
|
+
iconName: 'RESTORENEXT',
|
|
7190
|
+
iconClass: 'si-restore-next',
|
|
7191
|
+
hasBorder: false,
|
|
7192
|
+
},
|
|
7193
|
+
{
|
|
7194
|
+
icon: Icons.RESTOREPREVIOUS,
|
|
7195
|
+
iconName: 'RESTOREPREVIOUS',
|
|
7196
|
+
iconClass: 'si-restore-previous',
|
|
7197
|
+
hasBorder: false,
|
|
7198
|
+
}
|
|
7185
7199
|
];
|
|
7186
7200
|
}
|
|
7187
7201
|
static getInverseIconList() {
|