Skip to content

Files

This branch is 19 commits behind SAP/ui5-webcomponents:main.

4-development

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 3, 2024
Jan 30, 2025
Jul 3, 2024
Sep 10, 2024
Dec 3, 2024
Jul 3, 2024
Jul 3, 2024
Mar 4, 2025
Dec 12, 2024
Jul 3, 2024
Feb 17, 2025
Oct 9, 2024
Jul 3, 2024

Development

In this section, you will learn how to create your own custom UI5 Web Components packages and develop your own UI5 Web Components. This section will cover how UI5 Web Components work, how to manage their states, and understand their lifecycle.

All UI5 Web Components are built on top of the UI5Element class, which extends HTMLElement.

The entire API provided by UI5 Web Components can be condensed into a set of base classes, decorators, lifecycle hooks, and rendering methods.

UI5Element

UI5Element is a class provided by the @ui5/webcomponents-base package. This class enhances the HTMLElement class by adding basic state management functionality and runtime context to all UI5 Web Components.

Decorators

  • @customElement - Declares a new UI5 Web Component.
  • @property - Declares a property.
  • @slot - Declares a slot.
  • @event - Declares a DOM event fired by the component.

Lifecycle Methods

  • onEnterDOM - Called when the component is added to the DOM.
  • onBeforeRendering - Called before the component is rendered.
  • onAfterRendering - Called after the component is rendered.
  • onExitDOM - Called when the component is removed from the DOM.