File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ export class ListRow implements AfterContentInit {
102102 this . input . nativeElement . click ( ) ;
103103 }
104104 }
105-
105+
106106 onChange ( event ) {
107107 this . change . emit ( event ) ;
108108 }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export default {
3131const Template = ( args ) => ( {
3232 props : args ,
3333 template : `
34- <cds-structured-list [border]="border" [ condensed]="condensed" [nowrap]="nowrap ">
34+ <cds-structured-list [condensed]="condensed">
3535 <cds-list-header>
3636 <cds-list-column nowrap="true">Column 1</cds-list-column>
3737 <cds-list-column nowrap="true">Column 2</cds-list-column>
@@ -64,19 +64,15 @@ const Template = (args) => ({
6464} ) ;
6565export const Basic = Template . bind ( { } ) ;
6666Basic . args = {
67- border : false ,
68- condensed : false ,
69- nowrap : false
67+ condensed : false
7068} ;
7169
7270const SelectionTemplate = ( args ) => ( {
7371 props : args ,
7472 template : `
7573 <cds-structured-list
76- [border]="border"
7774 [condensed]="condensed"
78- [nowrap]="nowrap"
79- selection="true"
75+ [selection]="true"
8076 [(ngModel)]="valueSelected">
8177 <cds-list-header>
8278 <cds-list-column nowrap="true">Column 1</cds-list-column>
You can’t perform that action at this time.
0 commit comments