File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Razor" >
22
33 <PropertyGroup >
4- <Version >9.7.4-beta03 </Version >
4+ <Version >9.7.4-beta04 </Version >
55 </PropertyGroup >
66
77 <ItemGroup >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public partial class Light
1313 /// <summary>
1414 /// 获得 组件样式
1515 /// </summary>
16- protected string ? ClassString => CssBuilder . Default ( "light" )
16+ protected string ? ClassString => CssBuilder . Default ( "bb- light" )
1717 . AddClass ( "is-flat" , IsFlat )
1818 . AddClass ( "flash" , IsFlash && ! IsFlat )
1919 . AddClass ( "is-flat-flash" , IsFlash && IsFlat )
Original file line number Diff line number Diff line change 1- .light {
1+ .bb- light {
22 --bb-light-bg : #{$bb-light-bg } ;
33 --bb-light-danger-start-color : #{$bb-light-danger-start-color } ;
44 --bb-light-danger-end-color : #{$bb-light-danger-end-color } ;
Original file line number Diff line number Diff line change @@ -11,14 +11,14 @@ public class LightTest : BootstrapBlazorTestBase
1111 public void IsFlash_Ok ( )
1212 {
1313 var cut = Context . RenderComponent < Light > ( builder => builder . Add ( s => s . IsFlash , true ) ) ;
14- Assert . Contains ( "light flash" , cut . Markup ) ;
14+ Assert . Contains ( "bb- light flash" , cut . Markup ) ;
1515 Assert . DoesNotContain ( "is-flash-flat" , cut . Markup ) ;
1616
1717 cut . SetParametersAndRender ( pb =>
1818 {
1919 pb . Add ( a => a . IsFlat , true ) ;
2020 } ) ;
21- Assert . DoesNotContain ( "light flash" , cut . Markup ) ;
21+ Assert . DoesNotContain ( "bb- light flash" , cut . Markup ) ;
2222 Assert . Contains ( "is-flat" , cut . Markup ) ;
2323 Assert . Contains ( "is-flat-flash" , cut . Markup ) ;
2424 }
You can’t perform that action at this time.
0 commit comments