-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(IconTheme): icon garbled issue (#3428)
* refactor: 修复乱码问题 * chore: bump version 8.0.3 * fix: 修复乱码问题 * chore: bump version 8.0.2 * refactor: 更新图标库 * chore: bump version 8.0.3 * feat: upgrade lib to 6.5.2 * chore: bump version 8.0.4 * chore: update bs css file path * chore: udate icon lib
- Loading branch information
Showing
31 changed files
with
430 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 11 additions & 2 deletions
13
src/Extensions/Components/BootstrapBlazor.BootstrapIcon/bundleconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
[ | ||
{ | ||
"outputFileName": "wwwroot/css/bootstrap-icons.min.css", | ||
"outputFileName": "wwwroot/css/bs.min.css", | ||
"inputFiles": [ | ||
"wwwroot/css/bootstrap-icons.css", | ||
"wwwroot/css/bs.css" | ||
] | ||
}, | ||
{ | ||
"outputFileName": "wwwroot/css/bootstrap.min.css", | ||
"inputFiles": [ | ||
"wwwroot/css/bootstrap-icons.min.css", | ||
"wwwroot/css/bs.min.css" | ||
], | ||
"minify": { | ||
"enabled": false | ||
} | ||
} | ||
] |
3 changes: 1 addition & 2 deletions
3
src/Extensions/Components/BootstrapBlazor.BootstrapIcon/wwwroot/css/bootstrap-icons.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
src/Extensions/Components/BootstrapBlazor.BootstrapIcon/wwwroot/css/bootstrap.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
src/Extensions/Components/BootstrapBlazor.BootstrapIcon/wwwroot/css/bs.min.css
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 14 additions & 3 deletions
17
src/Extensions/Components/BootstrapBlazor.FontAwesome/bundleconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
[ | ||
{ | ||
"outputFileName": "wwwroot/css/font-awesome.min.css", | ||
"outputFileName": "wwwroot/fa/fa-list.min.css", | ||
"inputFiles": [ | ||
"wwwroot/fa/*.min.css", | ||
"Components/**/*.css" | ||
] | ||
], | ||
"minify": { | ||
"enabled": true | ||
} | ||
}, | ||
{ | ||
"outputFileName": "wwwroot/css/font-awesome.min.css", | ||
"inputFiles": [ | ||
"wwwroot/fa/*.min.css" | ||
], | ||
"minify": { | ||
"enabled": false | ||
} | ||
} | ||
] |
10 changes: 7 additions & 3 deletions
10
src/Extensions/Components/BootstrapBlazor.FontAwesome/wwwroot/css/font-awesome.min.css
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.