I have a very complex component that has a lot of **@Input()**s. For the sake of readability I would like to group the input like DexExtreme's grids do.
DevExtreme grids have a lot of Inputs and they have divided them like this:
<dx-data-grid
[dataSource]="dataSource"
[remoteOperations]="false">
<dxo-paging [pageSize]="10"></dxo-paging>
</dx-data-grid>
As you can see the paging arguments are not passed directly to dx-data-grid but throught
a child component dxo-paging.
I think this is a very good approach when you have very configurable components.
Anyone knows how to achieve the same result?
Thanks a lot