Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3d21eff
chore: Add icon size and stroke width props
at-susie May 13, 2026
5e73292
chore: Update snapshot
at-susie May 13, 2026
c59b425
Merge branch 'main' into feat/custom-icon-size
at-susie May 18, 2026
b11190e
chore: Fix a11y issue
at-susie May 18, 2026
1d370b1
chore: Add icon size variants and update scale props documentation
at-susie May 18, 2026
ce7a660
chore: Update snapshot
at-susie May 18, 2026
420dc56
chore: Add sizes and strokeWidths props for icon customization
at-susie May 18, 2026
189131d
chore: Remove unnecessary md file
at-susie May 18, 2026
20d52ce
chore: Update dev page
at-susie May 18, 2026
041dae2
chore: Update dev page
at-susie May 18, 2026
98a514a
Merge branch 'main' into feat/custom-icon-size
at-susie May 18, 2026
18360af
chore: Update tree item IDs with semantic naming
at-susie May 18, 2026
cafdb43
chore: Update stroke width documentation label
at-susie May 18, 2026
4c73c33
Merge branch 'main' into feat/custom-icon-size
at-susie May 19, 2026
6511dda
Merge branch 'main' into feat/custom-icon-size
at-susie May 19, 2026
5109d6c
Merge branch 'main' into feat/custom-icon-size
at-susie May 20, 2026
52d94e6
chore: Update size mapping
at-susie May 20, 2026
cd4db95
chore Add comprehensive tests for sizes and strokeWidths props
at-susie May 20, 2026
16d2910
chore: add icon scale customization CSS properties
at-susie May 20, 2026
5c73570
chore: Update test-utils-wrappers snapshot with comprehensive exports
at-susie May 20, 2026
4a109a1
chore: Simplify test-utils-wrappers snapshot
at-susie May 20, 2026
88923b6
chore: Update test-utils-wrappers snapshot
at-susie May 20, 2026
6969a9e
Merge branch 'main' into feat/custom-icon-size
at-susie May 20, 2026
7487aca
chore: Update test-utils-wrappers snapshot
at-susie May 20, 2026
d4be76a
chore: Update utils wrapper test
at-susie May 21, 2026
94761b4
chore: Update style snapshots
at-susie May 21, 2026
25033b8
chore: Simplify icon provider size and stroke-width override logic
at-susie May 21, 2026
3f4b1f5
chore: Fix a11y issues
at-susie May 21, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions build-tools/utils/custom-css-properties.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,9 @@ const customCssPropertiesList = [
'styleItemCardBorderRadius',
'styleItemCardBorderWidthDefault',
'styleItemCardBoxShadowDefault',
// Icon custom properties
'iconSizeOverride',
'iconStrokeWidthOverride',
'iconStrokeScale',
];
module.exports = customCssPropertiesList;
1 change: 1 addition & 0 deletions pages/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ function isAppLayoutPage(pageId?: string) {
'error-boundary/demo-async-load',
'error-boundary/demo-components',
'feature-notifications',
'icon-provider/icon-scale-props',
];
return pageId !== undefined && appLayoutPages.some(match => pageId.includes(match));
}
Expand Down
Loading
Loading