File tree Expand file tree Collapse file tree 7 files changed +18
-2
lines changed
TestApps/BlazorDialog.TestAppsCommon Expand file tree Collapse file tree 7 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 1616 <Copyright />
1717 <PackageTags >blazor blazor-component blazor-dialog dialog modal blazor-modal blazordialog blazormodaldialog blazormodal razor razor-components razorcomponents</PackageTags >
1818 <VersionSuffix >$(VersionSuffix)</VersionSuffix >
19- <Version >1.5 .0</Version >
19+ <Version >1.6 .0</Version >
2020 <Version Condition =" '$(VersionSuffix)' != '' " >$(Version)-$(VersionSuffix)</Version >
2121 <Product >BlazorDialog</Product >
2222 </PropertyGroup >
Original file line number Diff line number Diff line change 112112 return " blazor-dialog-content-wrapper-windowed blazor-dialog-content-wrapper-large" ;
113113 case DialogSize .ExtraLarge :
114114 return " blazor-dialog-content-wrapper-windowed blazor-dialog-content-wrapper-xlarge" ;
115+ case DialogSize .ExtraExtraLarge :
116+ return " blazor-dialog-content-wrapper-windowed blazor-dialog-content-wrapper-xxlarge" ;
115117 case DialogSize .FullScreen :
116118 return " blazor-dialog-content-wrapper-full" ;
117119 default :
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ public enum DialogSize
1111 Small ,
1212 Large ,
1313 ExtraLarge ,
14+ ExtraExtraLarge ,
1415 FullScreen
1516 }
1617}
Original file line number Diff line number Diff line change 140140 }
141141}
142142
143+ @media (min-width : 1616px ) {
144+ .blazor-dialog-content-wrapper-xxlarge {
145+ max-width : 1400px ; margin : 2.75rem auto;
146+ }
147+ }
148+
143149@media (min-width : 576px ) {
144150 .blazor-dialog-content-wrapper-small {
145151 max-width : 300px ;
Original file line number Diff line number Diff line change @@ -76,7 +76,12 @@ Make sure that there is a call to `app.UseStaticFiles();` in your server project
7676
7777## Release Notes
7878
79- <details open =" open " ><summary >1.5</summary >
79+ <details open =" open " ><summary >1.6</summary >
80+
81+ > - Added a new size option: ExtraExtraLarge.
82+ </details>
83+
84+ <details ><summary >1.5</summary >
8085
8186> - Added css class parameter to all helper components (header/body/footer).
8287 </details>
Original file line number Diff line number Diff line change 1111 <option value =" @DialogSize.Normal" >@DialogSize.Normal </option >
1212 <option value =" @DialogSize.Large" >@DialogSize.Large </option >
1313 <option value =" @DialogSize.ExtraLarge" >@DialogSize.ExtraLarge </option >
14+ <option value =" @DialogSize.ExtraExtraLarge" >@DialogSize.ExtraExtraLarge </option >
1415 <option value =" @DialogSize.Small" >@DialogSize.Small </option >
1516 <option value =" @DialogSize.FullScreen" >@DialogSize.FullScreen </option >
1617</select >
Original file line number Diff line number Diff line change 88 <option value =" @DialogSize.Normal" >@DialogSize.Normal </option >
99 <option value =" @DialogSize.Large" >@DialogSize.Large </option >
1010 <option value =" @DialogSize.ExtraLarge" >@DialogSize.ExtraLarge </option >
11+ <option value =" @DialogSize.ExtraExtraLarge" >@DialogSize.ExtraExtraLarge </option >
1112 <option value =" @DialogSize.Small" >@DialogSize.Small </option >
1213 <option value =" @DialogSize.FullScreen" >@DialogSize.FullScreen </option >
1314</select >
You can’t perform that action at this time.
0 commit comments