diff --git a/src/views/deferredcontent/DeferredContentDemo.vue b/src/views/deferredcontent/DeferredContentDemo.vue index edd5cf4f0..f7931c5c6 100755 --- a/src/views/deferredcontent/DeferredContentDemo.vue +++ b/src/views/deferredcontent/DeferredContentDemo.vue @@ -14,14 +14,14 @@ Scroll down to lazy load an image and the DataTable which initiates a query that is not executed on initial page load to speed up load performance. - +
- + diff --git a/src/views/deferredcontent/DeferredContentDoc.vue b/src/views/deferredcontent/DeferredContentDoc.vue index 25b0acf2d..07dd999c3 100755 --- a/src/views/deferredcontent/DeferredContentDoc.vue +++ b/src/views/deferredcontent/DeferredContentDoc.vue @@ -67,6 +67,24 @@ import DeferredContent from 'primevue/deferredcontent';
Styling

Component does not apply any styling.

+
Accessibility
+ +
Screen Reader
+

DeferredContent can be utilized in many use cases as a result no role is enforced, in fact a role may not be necessary if the card is used for presentational purposes only. + Any valid attribute is passed to the container element so you have full control over the roles like landmark and attributes like aria-live. +

+ +

+<DeferredContent role="region" aria-live="polite" aria-label="Content loaded after page scrolled down">
+    Content
+</DeferredContent>
+
+
+ +
Keyboard Support
+

Component does not include any interactive elements.

+
+
Dependencies

None.