Skip to content

feat: mad-quick-list - should be using grid list to remain form stable #112

@chrisaige

Description

@chrisaige

Feature request

right now the mad quick list can not be used in for example cards or modals because the format breaks
Here is an example of a mad-quick-list-compact in a mat-card
grafik

Description

The library should ensure that the actions are added at the end of the row.
This could be achieved for example by using:

<mat-grid-list cols="10" fxFill>
	<mat-grid-tile colspan="8"> 
		.... content .... 
	</mat-grid-tile>
	<mat-grid-tile [colspan]="addButton ? 1 : 2">
		.... delete button ....
	</mat-grid-tile>
	<mat-grid-tile *ngIf="addButton" colspan="1">
		... add button ....
	</mat-grid-tile>
</mat-grid-list>

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions