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 5050 <ProjectReference Include =" ..\alert\DBAlert.pcfproj" />
5151 <ProjectReference Include =" ..\link\DBLink.pcfproj" />
5252 <ProjectReference Include =" ..\checkbox\DBCheckbox.pcfproj" />
53+ <ProjectReference Include =" ..\radio\DBRadio.pcfproj" />
5354 <ProjectReference Include =" ..\infotext\DBInfotext.pcfproj" />
5455 </ItemGroup >
5556
Original file line number Diff line number Diff line change @@ -16,7 +16,16 @@ useMetadata({
1616 // MS Power Apps
1717 includeIcon : false ,
1818 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+ ]
2029 }
2130} ) ;
2231
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));
2828 // TODO: Extract those transition durations as variables #645
2929 transition : border-width 0.15s $db-transition-functional-timing ;
3030
31+ // TODO: probably extract this to an overwrite or external file
32+ // workarounds for power apps
33+ width : auto ;
34+ padding : 0 ;
35+
3136 & :checked {
3237 border-width : calc (#{$font-size-height } * 0.3 );
3338
You can’t perform that action at this time.
0 commit comments