55// [email protected] . Any infringement will be prosecuted under 66// applicable laws.
77#endregion
8-
98using System . Collections . Generic ;
109namespace CoreDemos
1110{
@@ -18,25 +17,29 @@ public class ThemeList
1817 public List < ThemeList > ThemeLists ( )
1918 {
2019 List < ThemeList > theme = new List < ThemeList > ( ) ;
20+ #if RELEASE && STAGING
21+ theme . Add ( new ThemeList { Id = "material" , Theme = "Material" , Index = 0 } ) ;
22+ theme . Add ( new ThemeList { Id = "material3" , Theme = "Material 3" , Index = 1 } ) ;
23+ theme . Add ( new ThemeList { Id = "fabric" , Theme = "Fabric" , Index = 2 } ) ;
24+ theme . Add ( new ThemeList { Id = "fluent" , Theme = "Fluent" , Index = 3 } ) ;
25+ theme . Add ( new ThemeList { Id = "fluent2" , Theme = "Fluent 2" , Index = 4 } ) ;
26+ theme . Add ( new ThemeList { Id = "bootstrap" , Theme = "Bootstrap" , Index = 5 } ) ;
27+ theme . Add ( new ThemeList { Id = "bootstrap4" , Theme = "Bootstrap v4" , Index = 6 } ) ;
28+ theme . Add ( new ThemeList { Id = "bootstrap5" , Theme = "Bootstrap v5" , Index = 7 } ) ;
29+ theme . Add ( new ThemeList { Id = "bootstrap5.3" , Theme = "Bootstrap 5.3" , Index = 8 } ) ;
30+ theme . Add ( new ThemeList { Id = "tailwind" , Theme = "Tailwind CSS" , Index = 9 } ) ;
31+ theme . Add ( new ThemeList { Id = "tailwind3" , Theme = "Tailwind3 CSS" , Index = 10 } ) ;
32+ theme . Add ( new ThemeList { Id = "highcontrast" , Theme = "High Contrast" , Index = 11 } ) ;
33+ theme . Add ( new ThemeList { Id = "fluent2-highcontrast" , Theme = "Fluent 2 High Contrast" , Index = 12 } ) ;
34+ #else
2135 theme . Add ( new ThemeList { Id = "material3" , Theme = "Material 3" , Index = 0 } ) ;
22- //theme.Add(new ThemeList { Id = "material3-dark", Theme = "Material3 Dark", Index = 1});
2336 theme . Add ( new ThemeList { Id = "fluent" , Theme = "Fluent" , Index = 1 } ) ;
2437 theme . Add ( new ThemeList { Id = "fluent2" , Theme = "Fluent 2" , Index = 2 } ) ;
25- //theme.Add(new ThemeList { Id = "fluent-dark", Theme = "Fluent Dark", Index = 3});
2638 theme . Add ( new ThemeList { Id = "bootstrap5.3" , Theme = "Bootstrap 5" , Index = 3 } ) ;
27- // theme.Add(new ThemeList { Id = "bootstrap5-dark", Theme = "Bootstrap v5 Dark", Index = 4 });
28- //theme.Add(new ThemeList { Id = "bootstrap5.3", Theme = "Bootstrap 5.3", Index = 4 });
2939 theme . Add ( new ThemeList { Id = "tailwind" , Theme = "Tailwind CSS" , Index = 4 } ) ;
30- //theme.Add(new ThemeList { Id = "tailwind-dark", Theme = "Tailwind CSS Dark", Index = 6});
31- // theme.Add(new ThemeList { Id = "material", Theme = "Material", Index = 7 });
32- // theme.Add(new ThemeList { Id = "bootstrap4", Theme = "Bootstrap v4", Index = 8 });
33- //if (isDevelopment)
34- //{
35- // theme.Add(new ThemeList { Id = "bootstrap", Theme = "Bootstrap", Index = 9 });
36- // theme.Add(new ThemeList { Id = "bootstrap-dark", Theme = "Bootstrap Dark", Index = 10 });
37- //}
3840 theme . Add ( new ThemeList { Id = "highcontrast" , Theme = "High Contrast" , Index = 5 } ) ;
3941 theme . Add ( new ThemeList { Id = "fluent2-highcontrast" , Theme = "Fluent 2 High Contrast" , Index = 6 } ) ;
42+ #endif
4043 return theme ;
4144 }
4245 }
0 commit comments