-
Notifications
You must be signed in to change notification settings - Fork 137
0.34.0 Breaking Changes
Dmitriy Stepanenko edited this page Mar 1, 2022
·
17 revisions
Checkbox Group (Platform): #7785
-
valueChangenow emits actual array of values instead of PlatformCheckboxChange event
Dynamic Page (Platform): #7812
- Dynamic Page Header Output
onCollapseChangerenamed toonCollapsedChangeto be consistent withcollapsedInput property and to be able to use two way binding.
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.