@@ -746,6 +746,7 @@ export interface NativeColorPickerProps extends NativeControlProps {
746
746
colorSpectrumShape ?: Enums . WinUIEnums . ColorSpectrumShape ;
747
747
colorSpectrumComponents ?: Enums . WinUIEnums . ColorSpectrumComponents ;
748
748
color ?: Color | number ;
749
+ orientation ?: Enums . Orientation ;
749
750
onColorChanged ?: ( event : NativeSyntheticEvent < TypedEvent < NativeWinUI . NativeColorChangedEventArgs > > ) => void ;
750
751
}
751
752
}
@@ -776,6 +777,12 @@ export interface NativeImageIconProps extends NativeIconElementProps {
776
777
}
777
778
}
778
779
export namespace NativeWinUI {
780
+ export interface NativeInfoBadgeProps extends NativeControlProps {
781
+ type : 'Microsoft.UI.Xaml.Controls.InfoBadge' ;
782
+ value ?: number ;
783
+ }
784
+ }
785
+ export namespace NativeWinUI {
779
786
export interface NativeInfoBarProps extends NativeControlProps {
780
787
type : 'Microsoft.UI.Xaml.Controls.InfoBar' ;
781
788
title ?: string ;
@@ -1216,6 +1223,7 @@ export interface NativeDependencyObjectProps extends ViewProps {
1216
1223
'Microsoft.UI.Xaml.Controls.DropDownButton' |
1217
1224
'Microsoft.UI.Xaml.Controls.Expander' |
1218
1225
'Microsoft.UI.Xaml.Controls.ImageIcon' |
1226
+ 'Microsoft.UI.Xaml.Controls.InfoBadge' |
1219
1227
'Microsoft.UI.Xaml.Controls.InfoBar' |
1220
1228
'Microsoft.UI.Xaml.Controls.ItemsRepeater' |
1221
1229
'Microsoft.UI.Xaml.Controls.ItemsRepeaterScrollHost' |
@@ -1474,6 +1482,7 @@ export interface NativeUIElementProps extends NativeDependencyObjectProps {
1474
1482
'Microsoft.UI.Xaml.Controls.DropDownButton' |
1475
1483
'Microsoft.UI.Xaml.Controls.Expander' |
1476
1484
'Microsoft.UI.Xaml.Controls.ImageIcon' |
1485
+ 'Microsoft.UI.Xaml.Controls.InfoBadge' |
1477
1486
'Microsoft.UI.Xaml.Controls.InfoBar' |
1478
1487
'Microsoft.UI.Xaml.Controls.ItemsRepeater' |
1479
1488
'Microsoft.UI.Xaml.Controls.ItemsRepeaterScrollHost' |
@@ -1775,6 +1784,7 @@ export interface NativeFrameworkElementProps extends NativeUIElementProps {
1775
1784
'Microsoft.UI.Xaml.Controls.DropDownButton' |
1776
1785
'Microsoft.UI.Xaml.Controls.Expander' |
1777
1786
'Microsoft.UI.Xaml.Controls.ImageIcon' |
1787
+ 'Microsoft.UI.Xaml.Controls.InfoBadge' |
1778
1788
'Microsoft.UI.Xaml.Controls.InfoBar' |
1779
1789
'Microsoft.UI.Xaml.Controls.ItemsRepeater' |
1780
1790
'Microsoft.UI.Xaml.Controls.ItemsRepeaterScrollHost' |
@@ -2028,6 +2038,7 @@ export interface NativeControlProps extends NativeFrameworkElementProps {
2028
2038
'Microsoft.UI.Xaml.Controls.ColorPicker' |
2029
2039
'Microsoft.UI.Xaml.Controls.DropDownButton' |
2030
2040
'Microsoft.UI.Xaml.Controls.Expander' |
2041
+ 'Microsoft.UI.Xaml.Controls.InfoBadge' |
2031
2042
'Microsoft.UI.Xaml.Controls.InfoBar' |
2032
2043
'Microsoft.UI.Xaml.Controls.MenuBar' |
2033
2044
'Microsoft.UI.Xaml.Controls.MenuBarItem' |
@@ -4276,6 +4287,7 @@ export type XamlControlProps = NativeWinUI.NativeAnimatedIconProps
4276
4287
| NativeWinUI . NativeDropDownButtonProps
4277
4288
| NativeWinUI . NativeExpanderProps
4278
4289
| NativeWinUI . NativeImageIconProps
4290
+ | NativeWinUI . NativeInfoBadgeProps
4279
4291
| NativeWinUI . NativeInfoBarProps
4280
4292
| NativeWinUI . NativeItemsRepeaterProps
4281
4293
| NativeWinUI . NativeItemsRepeaterScrollHostProps
0 commit comments