Skip to content

Commit

Permalink
Merge pull request #110 from lepoco/development
Browse files Browse the repository at this point in the history
Merge development
  • Loading branch information
pomianowski authored Mar 20, 2022
2 parents 7ba58f4 + 5d389bc commit a19300a
Show file tree
Hide file tree
Showing 17 changed files with 4,715 additions and 2,060 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,3 @@ jobs:

- name: Publish
run: nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}

- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
draft: false
title: "WPF UI #{{ github.run_number }}"
prerelease: true # Make conditional
files: |
**\*.nupkg
2 changes: 1 addition & 1 deletion Assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"name": "wpf-ui",
"version": "1.1.0",
"dependencies": {
"@fluentui/react-icons": "1.1.152"
"@fluentui/react-icons": "1.1.163"
}
}
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>1.2.1</Version>
<Version>1.2.2</Version>
<LangVersion>latest</LangVersion>
<Authors>lepo.co</Authors>
<Company>lepo.co</Company>
Expand Down
4 changes: 2 additions & 2 deletions WPFUI.Demo/Views/Container.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,12 @@
<wpfui:Dialog
x:Name="RootDialog"
Grid.Row="0"
Opened="RootDialog_OnOpened"
Closed="RootDialog_OnClosed"
Grid.RowSpan="2"
ButtonLeftClick="RootDialog_LeftButtonClick"
ButtonLeftName="Click me if you can!"
ButtonRightClick="RootDialog_RightButtonClick"
Closed="RootDialog_OnClosed"
Opened="RootDialog_OnOpened"
Show="False">
<Grid>
<StackPanel>
Expand Down
13 changes: 11 additions & 2 deletions WPFUI.Demo/Views/Pages/Forms.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
mc:Ignorable="d">

<Grid Margin="0,0,18,18">
<StackPanel Margin="0,0,0,12">
<VirtualizingStackPanel Margin="0,0,0,12">
<TextBlock
Margin="0,0,0,8"
FontWeight="Bold"
Expand Down Expand Up @@ -72,6 +72,15 @@
<Label Content="PasswordBox" />
<PasswordBox Margin="0,0,0,8" />

<Label Content="wpfui:PasswordBox" />
<wpfui:PasswordBox
Margin="0,0,0,8"
Icon="Password24"
PasswordChar="*"
PasswordRevealMode="Hidden"
Placeholder="Password"
ShowRevealButton="True" />

<Label Content="ComboBox" />
<ComboBox Margin="0,0,0,8">
<ComboBoxItem Content="Lorem ipsum" IsSelected="True" />
Expand Down Expand Up @@ -178,6 +187,6 @@
Text="Calendar" />

<Calendar HorizontalAlignment="Left" />
</StackPanel>
</VirtualizingStackPanel>
</Grid>
</Page>
Loading

0 comments on commit a19300a

Please sign in to comment.