Skip to content

Commit 61b74d3

Browse files
authored
Merge branch 'main' into 1057-checkbox-power-app-component
2 parents 69e14f6 + b8a4981 commit 61b74d3

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

build-power-apps/DBUI/DBUI.cdsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
<ProjectReference Include="..\alert\DBAlert.pcfproj" />
5151
<ProjectReference Include="..\link\DBLink.pcfproj" />
5252
<ProjectReference Include="..\checkbox\DBCheckbox.pcfproj" />
53+
<ProjectReference Include="..\infotext\DBInfotext.pcfproj" />
5354
</ItemGroup>
5455

5556
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" />

packages/components/src/components/infotext/infotext.lite.tsx

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,31 @@ useMetadata({
88
isAttachedToShadowDom: true,
99
component: {
1010
// MS Power Apps
11-
includeIcon: false,
12-
properties: []
11+
includeIcon: true,
12+
properties: [
13+
// jscpd:ignore-start
14+
{ name: 'children', type: 'SingleLine.Text' },
15+
{
16+
name: 'variant',
17+
type: 'Enum',
18+
values: [
19+
{ key: 'Adaptive', name: 'Adaptive', value: 'adaptive' },
20+
{ key: 'Critical', name: 'Critical', value: 'critical' },
21+
{ key: 'Informational', name: 'Informational', value: 'informational' },
22+
{ key: 'Warning', name: 'Warning', value: 'warning' },
23+
{ key: 'Successful', name: 'Successful', value: 'successful' },
24+
]
25+
},
26+
{
27+
name: 'size',
28+
type: 'Enum',
29+
values: [
30+
{ key: 'Sedium', name: 'Medium', value: 'medium' },
31+
{ key: 'Small', name: 'Small', value: 'small' }
32+
]
33+
}
34+
// jscpd:ignore-end
35+
]
1336
}
1437
});
1538

0 commit comments

Comments
 (0)