File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
projects/fusio-sdk/src/lib/component/form Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ export class FormListComponent implements OnInit {
11
11
@Input ( ) name ! : string ;
12
12
@Input ( ) disabled : boolean = false ;
13
13
@Input ( ) type : string = 'text' ;
14
- @Input ( ) data : Array < any > = [ ] ;
14
+ @Input ( ) data : Array < string > = [ ] ;
15
15
@Input ( ) service ?: Service < any > ;
16
- @Output ( ) dataChange = new EventEmitter < Array < any > > ( ) ;
16
+ @Output ( ) dataChange = new EventEmitter < Array < string > > ( ) ;
17
17
18
18
local : Array < any > = [ ] ;
19
19
newValue : any = '' ;
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ export class FormMapComponent implements OnInit {
11
11
@Input ( ) name ! : string ;
12
12
@Input ( ) disabled : boolean = false ;
13
13
@Input ( ) type : string = 'text' ;
14
- @Input ( ) data : Record < string , any > = { } ;
14
+ @Input ( ) data : Record < string , string > = { } ;
15
15
@Input ( ) service ?: Service < any > ;
16
- @Output ( ) dataChange = new EventEmitter < Record < string , any > > ( ) ;
16
+ @Output ( ) dataChange = new EventEmitter < Record < string , string > > ( ) ;
17
17
18
18
local : Array < Entry > = [ ] ;
19
19
newKey : string = '' ;
You can’t perform that action at this time.
0 commit comments