We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22223c5 commit 0117685Copy full SHA for 0117685
2 files changed
CHANGELOG.md
@@ -61,6 +61,11 @@ This is a major release, and it might be not compatible with your current usage
61
- `toggler-caretleft`
62
- `toggler-micon`
63
- `toggler-micoff`
64
+ - `toggler-radio`
65
+ - `toggler-radio-checked`
66
+ - `state-progress`
67
+ - `state-progress-error`
68
+ - `state-progress-warning`
69
- `<Modal />`:
70
- Add `ModalContext` to track open/close state of all used application modals.
71
- Add `modalId` property to give a modal a unique ID for tracking purposes.
src/components/Icon/canonicalIconNames.tsx
@@ -175,6 +175,9 @@ const canonicalIcons = {
175
"state-info": icons.InformationFilled,
176
"state-locked": icons.Locked,
177
"state-partlychecked": icons.CheckboxIndeterminate,
178
+ "state-progress": icons.InProgress,
179
+ "state-progress-error": icons.InProgressError,
180
+ "state-progress-warning": icons.InProgressWarning,
181
"state-protected": icons.DocumentProtected,
182
"state-success": icons.CheckmarkFilled,
183
"state-unchecked": icons.Checkbox,
@@ -193,6 +196,8 @@ const canonicalIcons = {
193
196
"toggler-moveleft": icons.ChevronLeft,
194
197
"toggler-moveright": icons.ChevronRight,
195
198
"toggler-list": icons.List,
199
+ "toggler-radio": icons.RadioButton,
200
+ "toggler-radio-checked": icons.RadioButtonChecked,
201
"toggler-rowexpand": icons.RowExpand,
202
"toggler-rowcollapse": icons.RowCollapse,
203
"toggler-showless": icons.ChevronUp,
0 commit comments