-
Notifications
You must be signed in to change notification settings - Fork 137
0.30.0 Breaking Changes
kavya-b edited this page Apr 24, 2021
·
6 revisions
Card Footer PR #5158
-
Card Footer componenthas been removed
Notifications PR #5186
- Changes in markup:
Before:
fd-notification
- fd-notification-header
- fd-notification-title
- fd-notification-body
- fd-notification-content
- fd-notification-avatar
- fd-notification-text
- fd-notification-description
- fd-notification-metadata
- fd-notification-footer
- fd-notification-actions
Now:
fd-notification
- fd-notification-body
- fd-notification-content
- fd-notification-header
- fd-notification-indicator
- fd-notification-title
- fd-notification-paragraph
- fd-notification-footer
- fd-notification-footer-content
- fd-notification-separator
- fd-notification-actions
Before:
<fd-notification>
<fd-notification-header>
<h3 fd-notification-title></h3>
</fd-notification-header>
<fd-notification-body>
<div fd-notification-content>
<div fd-notification-avatar>
<fd-avatar></fd-avatar>
</div>
<div fd-notification-text>
<div fd-notification-description></div>
<div fd-notification-metadata></div>
</div>
</div>
<fd-notification-footer>
<div fd-notification-actions></div>
</fd-notification-footer>
</fd-notification-body>
</fd-notification>
Now:
<fd-notification>
<fd-notification-body>
<fd-avatar></fd-avatar>
<fd-notification-content>
<fd-notification-header>
<div fd-notification-indicator type="success"></div>
<h2 fd-notification-title [unread]="true"></h2>
</fd-notification-header>
<p fd-notification-paragraph></p>
<fd-notification-footer>
<span fd-notification-footer-content></span>
<span fd-notification-separator></span>
<span fd-notification-footer-content></span>
</fd-notification-footer>
</fd-notification-content>
<fd-notification-actions></fd-notification-actions>
</fd-notification-body>
</fd-notification>
- Removed
fd-notification-avatardirective.
Before:
<div fd-notification-avatar>
<fd-avatar></fd-avatar>
</div>
Now:
<fd-avatar></fd-avatar>
- The directive
fd-notification-actionsis now a component
Before:
<div fd-notification-actions>
<button fd-button</button>
<button fd-button</button>
</div>
Now:
<fd-notification-actions>
<button fd-button</button>
<button fd-button</button>
</fd-notification-actions>
- Removed
fd-notification-textdirective - Removed
fd-notification-descriptiondirective - Removed
fd-notification-metadatadirective - Removed the
Notifications From Objectoption together with theNotificationDefault. - Notifications Group is no longer a banner displayed in the right corner but displayed inside a popover triggered by clicking the bell icon in the shell bar at the top right of the screen.
-
Removed
backgroundandsize@Inputproperties from the following components:<fdp-dynamic-page-header><fdp-dynamic-page-title><fdp-dynamic-page-content>. Specifybackgroundandsizeproperties at the<fdp-dynamic-page>level only. -
Added
autoResponsiveproperty to<fdp-dynamic-page>component. It is enabled by default.