Skip to content

0.34.0 Breaking Changes

Platon Rov edited this page Mar 29, 2022 · 17 revisions

Upload Collection (Core) #7857

  • Upload collection item object status now needs fd-upload-collection-status-item directive to be applied.

Before:

<span
  fd-object-status
  status="negative"
  label="Negative Object Status"
  title="Object status Negative"
  aria-label="Object status Negative"
></span>

After:

<span
  fd-object-status
  fd-upload-collection-status-item
  status="negative"
  label="Negative Object Status"
  title="Object status Negative"
  aria-label="Object status Negative"
></span>

Checkbox Group (Platform): #7785

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

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