Skip to content

Commit b4f5854

Browse files
authored
Merge branch 'main' into 1056-radio-power-app-component
2 parents d0c7431 + b8a4981 commit b4f5854

File tree

6 files changed

+86
-47
lines changed

6 files changed

+86
-47
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="..\radio\DBRadio.pcfproj" />
53+
<ProjectReference Include="..\infotext\DBInfotext.pcfproj" />
5354
</ItemGroup>
5455

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

package-lock.json

Lines changed: 57 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"classnames": "^2.3.2",
7272
"cpr": "3.0.1",
7373
"cross-env": "^7.0.3",
74-
"dotenv": "^16.1.0",
74+
"dotenv": "^16.1.1",
7575
"fs-extra": "^11.1.1",
7676
"http-server": "14.1.1",
7777
"husky": "8.0.3",

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

packages/foundations/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"devDependencies": {
3030
"@zeplin/sdk": "^1.18.0",
3131
"cpr": "3.0.1",
32-
"dotenv": "^16.1.0",
32+
"dotenv": "^16.1.1",
3333
"nodemon": "2.0.22",
3434
"sass": "^1.62.1",
3535
"style-dictionary": "3.8.0"

showcases/patternhub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"devDependencies": {
3333
"@babel/cli": "7.21.5",
34-
"@babel/preset-react": "7.18.6",
34+
"@babel/preset-react": "7.22.3",
3535
"@mdx-js/loader": "^2.3.0",
3636
"@mdx-js/react": "^2.3.0",
3737
"@next/mdx": "^13.4.4",

0 commit comments

Comments
 (0)