Skip to content

0.34.0 Breaking Changes

Dmitriy Stepanenko edited this page Mar 1, 2022 · 17 revisions

Checkbox Group (Platform): #7785

  • valueChange now emits actual array of values instead of PlatformCheckboxChange event

Dynamic Page (Platform): #7812

  • Dynamic Page Header Output onCollapseChange renamed to onCollapsedChange to be consistent with collapsed Input property and to be able to use two way binding.

Fixed Card Layout (Core) #7701

  • Interface CardDropped of the event emitted after the cards reorganised using drag & drop feature changed, container & prevContainer fields 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 dndKeyboardDisabled removed from the DndKeyboardItemDirective, please use input property disableKeyboardDragDrop of the DndKeyboardGroupDirective instead.

Clone this wiki locally