diff --git a/CHANGELOG.md b/CHANGELOG.md index 71ed75cd30..4756b50a66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ The following is a curated list of changes in the Enact sandstone module, newest ### Added +- `sandstone/Icon` supported icon list, adding new icons `ai`, `alert01`, and `alert02` - `sandstone/PageViews` prop `autoFocus` to set whether focus element automatically or not - `sandstone/PageViews.Page` and `sandstone/QuickGuidePanels.Panel` prop `aria-label` - `sandstone/QuickGuidePanels` props `closeButtonAriaLabel` and `onClose` diff --git a/Icon/Icon.js b/Icon/Icon.js index f61502c314..883bcbf231 100644 --- a/Icon/Icon.js +++ b/Icon/Icon.js @@ -392,6 +392,9 @@ const IconBase = kind({ * jumpforward10 * logout * sketch + * ai + * alert01 + * alert02 * ``` * * @name iconList diff --git a/Icon/IconList.js b/Icon/IconList.js index 9269a593af..3a55be87e5 100644 --- a/Icon/IconList.js +++ b/Icon/IconList.js @@ -251,5 +251,8 @@ export default { jumpbackward10 : 0x0F01B7, // jumpbackward_10 jumpforward10 : 0x0F01B8, // jumpforward_10 logout : 0x0F01B9, // logout - sketch : 0x0F01BA // sketch + sketch : 0x0F01BA, // sketch + ai : 0x0F01BB, // ai + alert01 : 0x0F01BC, // alert.01 + alert02 : 0x0F01BD // alert.02 }; diff --git a/fonts/Sandstone_Icons.ttf b/fonts/Sandstone_Icons.ttf index 77f1249467..f156188f38 100644 Binary files a/fonts/Sandstone_Icons.ttf and b/fonts/Sandstone_Icons.ttf differ diff --git a/samples/sampler/stories/helper/icons.js b/samples/sampler/stories/helper/icons.js index b50c28f415..48c8610b97 100644 --- a/samples/sampler/stories/helper/icons.js +++ b/samples/sampler/stories/helper/icons.js @@ -125,8 +125,11 @@ export const deviceIcons = [ ].sort(); export const settingsIcons = [ + 'ai', 'appscontents', 'accessibility', + 'alert01', + 'alert02', 'auracast', 'bluetooth', 'camera',