-
Notifications
You must be signed in to change notification settings - Fork 138
0.34.0 Breaking Changes
Platon Rov edited this page Feb 8, 2022
·
17 revisions
Fixed Card Layout (Core) #7701
- Interface
CardDroppedof the event emitted after the cards reorganised using drag & drop feature changed,container&prevContainerfields removed. Current interface is:
interface CardDropped {
previousIndex: number;
currentIndex: number;
layoutColumns: number;
items: CardDefinitionDirective[];
}
- Amount of columns limited to 10.
Drag & Drop Keyboard directives (Core) #7701
- Input property
dndKeyboardDisabledremoved from theDndKeyboardItemDirective, please use input propertydisableKeyboardDragDropof theDndKeyboardGroupDirectiveinstead.