File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
packages/components/src/components/radio Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 49
49
<ProjectReference Include =" ..\input\DBInput.pcfproj" />
50
50
<ProjectReference Include =" ..\alert\DBAlert.pcfproj" />
51
51
<ProjectReference Include =" ..\link\DBLink.pcfproj" />
52
+ <ProjectReference Include =" ..\radio\DBRadio.pcfproj" />
52
53
<ProjectReference Include =" ..\infotext\DBInfotext.pcfproj" />
53
54
</ItemGroup >
54
55
Original file line number Diff line number Diff line change @@ -16,7 +16,16 @@ useMetadata({
16
16
// MS Power Apps
17
17
includeIcon : false ,
18
18
hasDisabledProp : true ,
19
- properties : [ ]
19
+ properties : [
20
+ // jscpd:ignore-start
21
+ { name : 'children' , type : 'SingleLine.Text' } ,
22
+ { name : 'name' , type : 'SingleLine.Text' } ,
23
+ { name : 'id' , type : 'SingleLine.Text' }
24
+ // TODO: We'll most likely need these later on
25
+ // { name: 'checked', type: 'TwoOptions' },
26
+ // { name: 'disabled', type: 'TwoOptions' },
27
+ // jscpd:ignore-end
28
+ ]
20
29
}
21
30
} ) ;
22
31
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ $font-size-height: calc(var(--db-base-font-size) * var(--db-base-line-height));
28
28
// TODO: Extract those transition durations as variables #645
29
29
transition : border-width 0.15s $db-transition-functional-timing ;
30
30
31
+ // TODO: probably extract this to an overwrite or external file
32
+ // workarounds for power apps
33
+ width : auto ;
34
+ padding : 0 ;
35
+
31
36
& :checked {
32
37
border-width : calc (#{$font-size-height } * 0.3 );
33
38
You can’t perform that action at this time.
0 commit comments