Skip to content

Commit ecc336a

Browse files
authored
Merge branch 'main' into fix-30828
2 parents 18509a4 + 7ebedeb commit ecc336a

File tree

4,383 files changed

+38
-166541
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,383 files changed

+38
-166541
lines changed

.github/workflows/build-all.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: |
23-
8.0.x
2423
9.0.x
2524
10.0.x
2625
include-prerelease: true

.github/workflows/build-pr.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
uses: actions/setup-dotnet@v4
2525
with:
2626
dotnet-version: |
27-
8.0.x
2827
9.0.x
2928
10.0.x
3029
include-prerelease: true

10.0/Apps/DeveloperBalance/Models/Project.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,12 @@ public class Project
1818

1919
public List<Tag> Tags { get; set; } = [];
2020

21-
public override string ToString() => $"{Name}";
21+
public string AccessibilityDescription
22+
{
23+
get { return $"{Name} Project. {Description}"; }
24+
}
25+
26+
public override string ToString() => $"{Name}";
2227
}
2328

2429
public class ProjectsJson

10.0/Apps/DeveloperBalance/Pages/Controls/ProjectCardView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
xmlns:shimmer="clr-namespace:Syncfusion.Maui.Toolkit.Shimmer;assembly=Syncfusion.Maui.Toolkit"
99
x:Class="DeveloperBalance.Pages.Controls.ProjectCardView"
1010
Style="{StaticResource CardStyle}"
11-
SemanticProperties.Description="{Binding Name, StringFormat='{0} Project'}"
11+
SemanticProperties.Description="{Binding AccessibilityDescription}"
1212
x:DataType="models:Project">
1313
<shimmer:SfShimmer
1414
BackgroundColor="Transparent"
@@ -46,7 +46,7 @@
4646
Size="{StaticResource IconSize}"/>
4747
</Image.Source>
4848
</Image>
49-
<Label Text="{Binding Name}" TextColor="{StaticResource Gray400}" FontSize="14" TextTransform="Uppercase"/>
49+
<Label Text="{Binding Name}" TextColor="{AppThemeBinding Light={StaticResource Gray600}, Dark={StaticResource Gray400}}" FontSize="14" TextTransform="Uppercase"/>
5050
<Label Text="{Binding Description}" LineBreakMode="WordWrap"/>
5151
<HorizontalStackLayout Spacing="15" BindableLayout.ItemsSource="{Binding Tags}">
5252
<BindableLayout.ItemTemplate>

10.0/Apps/DeveloperBalance/Pages/MainPage.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@
8585

8686
<controls:AddButton
8787
IsEnabled="{Binding IsBusy, Converter={StaticResource InvertedBoolConverter}}"
88-
Command="{Binding AddTaskCommand}" />
88+
Command="{Binding AddTaskCommand}"
89+
SemanticProperties.Description="Add task" />
8990
</Grid>
9091
</ContentPage>

10.0/Apps/DeveloperBalance/Pages/ProjectDetailPage.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@
191191
</VerticalStackLayout>
192192
</ScrollView>
193193

194-
<controls:AddButton Command="{Binding AddTaskCommand}" />
194+
<controls:AddButton Command="{Binding AddTaskCommand}"
195+
SemanticProperties.Description="Add task" />
195196
</Grid>
196197

197198
</ContentPage>

10.0/Apps/DeveloperBalance/Pages/ProjectListPage.xaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
</ScrollView>
3939

4040
<controls:AddButton
41-
Command="{Binding AddProjectCommand}" />
41+
Command="{Binding AddProjectCommand}"
42+
SemanticProperties.Description="Add project" />
4243
</Grid>
4344
</ContentPage>

10.0/Apps/DeveloperBalance/Resources/Styles/Styles.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@
147147
<Setter Property="CornerRadius" Value="0"/>
148148
<Setter Property="MinimumHeightRequest" Value="44"/>
149149
<Setter Property="MinimumWidthRequest" Value="44"/>
150+
<Setter Property="Background" Value="{AppThemeBinding Light={StaticResource LightBackground}, Dark={StaticResource DarkBackground}}"/>
150151
<Setter Property="VisualStateManager.VisualStateGroups">
151152
<VisualStateGroupList>
152153
<VisualStateGroup x:Name="CommonStates">

8.0/Animations/Animations.sln

Lines changed: 0 additions & 27 deletions
This file was deleted.

8.0/Animations/Animations/Animations.csproj

Lines changed: 0 additions & 65 deletions
This file was deleted.

0 commit comments

Comments
 (0)