
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
@ui5/webcomponents
Advanced tools
Provides general purpose UI building blocks such as buttons, labels, inputs and popups.
Web Component | Tag name | Module import |
---|---|---|
Avatar | ui5-avatar | import "@ui5/webcomponents/dist/Avatar.js"; |
Badge | ui5-badge | import "@ui5/webcomponents/dist/Badge.js"; |
Busy Indicator | ui5-busyindicator | import "@ui5/webcomponents/dist/BusyIndicator.js"; |
Button | ui5-button | import "@ui5/webcomponents/dist/Button.js"; |
Card | ui5-card | import "@ui5/webcomponents/dist/Card.js"; |
Carousel | ui5-carousel | import "@ui5/webcomponents/dist/Carousel.js"; |
Checkbox | ui5-checkbox | import "@ui5/webcomponents/dist/CheckBox.js"; |
ComboBox | ui5-combobox | import "@ui5/webcomponents/dist/ComboBox.js"; |
ComboBox Item | ui5-cb-item | comes with ui5-combobox |
Date Picker | ui5-date-picker | import "@ui5/webcomponents/dist/DatePicker.js"; |
Dialog | ui5-dialog | import "@ui5/webcomponents/dist/Dialog.js"; |
File Uploader | ui5-file-uploader | import "@ui5/webcomponents/dist/FileUploader.js"; |
Icon | ui5-icon | import "@ui5/webcomponents/dist/Icon.js"; |
Input | ui5-input | import "@ui5/webcomponents/dist/Input.js"; |
Label | ui5-label | import "@ui5/webcomponents/dist/Label.js"; |
Link | ui5-link | import "@ui5/webcomponents/dist/Link.js"; |
List | ui5-list | import "@ui5/webcomponents/dist/List.js"; |
List - Standard Item | ui5-li | import "@ui5/webcomponents/dist/StandardListItem.js"; |
List - Custom Item | ui5-li-custom | import "@ui5/webcomponents/dist/CustomListItem.js"; |
List - Group Header Item | ui5-li-groupheader | import "@ui5/webcomponents/dist/GroupHeaderListItem.js"; |
Message Strip | ui5-messagestrip | import "@ui5/webcomponents/dist/MessageStrip.js"; |
Multi ComboBox | ui5-multi-combobox | import "@ui5/webcomponents/dist/MultiComboBox.js"; |
Multi ComboBox Item | ui5-mcb-item | import "@ui5/webcomponents/dist/MultiComboBoxItem.js"; |
Panel | ui5-panel | import "@ui5/webcomponents/dist/Panel.js"; |
Popover | ui5-popover | import "@ui5/webcomponents/dist/Popover.js"; |
Radio Button | ui5-radiobutton | import "@ui5/webcomponents/dist/RadioButton.js"; |
Responsive Popover | ui5-responsive-popover | import "@ui5/webcomponents/dist/ResponsivePopover.js"; |
Select | ui5-select | import "@ui5/webcomponents/dist/Select.js"; |
Select Option | ui5-option | comes with ui5-select |
Segmented Button | ui5-segmentedbutton | import "@ui5/webcomponents/dist/SegmentedButton.js"; |
Suggestion Item | ui5-suggestion-item | import "@ui5/webcomponents/dist/SuggestionItem.js"; |
Switch | ui5-switch | import "@ui5/webcomponents/dist/Switch.js"; |
Tab Container | ui5-tabcontainer | import "@ui5/webcomponents/dist/TabContainer.js"; |
Tab | ui5-tab | import "@ui5/webcomponents/dist/Tab.js"; |
Tab Separator | ui5-tab-separator | import "@ui5/webcomponents/dist/TabSeparator.js"; |
Table | ui5-table | import "@ui5/webcomponents/dist/Table.js"; |
Table Column | ui5-table-column | import "@ui5/webcomponents/dist/TableColumn.js"; |
Table Row | ui5-table-row | import "@ui5/webcomponents/dist/TableRow.js"; |
Table Cell | ui5-table-cell | import "@ui5/webcomponents/dist/TableCell.js"; |
Textarea | ui5-textarea | import "@ui5/webcomponents/dist/TextArea.js"; |
TimePicker | ui5-time-picker | import "@ui5/webcomponents/dist/TimePicker.js"; |
Title | ui5-title | import "@ui5/webcomponents/dist/Title.js"; |
Toast | ui5-toast | import "@ui5/webcomponents/dist/Toast.js"; |
Toggle Button | ui5-togglebutton | import "@ui5/webcomponents/dist/ToggleButton.js"; |
For a complete list of all public module imports from the main
package, click here:
We welcome all comments, suggestions, questions, and bug reports. Please follow our Support Guidelines on how to report an issue, or chat with us in the #webcomponents
channel of the OpenUI5 Community Slack.
Please check our Contribution Guidelines.
Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, Version 2.0 except as noted otherwise in the LICENSE file.
1.0.0-rc.12 (2021-02-18)
framework: * introduce @ui5/webcomponents-ie11 package (#2686) (1d3b37e)
The method registerI18nBundle of the @ui5/webcomponents-base/asset-registries/i18n.js module is deprecated in favour of registerI18nLoader.
The framework no longer tries to convert .properties files internally and the PropertiesFormatSupport feature is removed. This has to be done by a custom loader using the @ui5/webcomponents-base/dist/PropertiesFileFormat.js module.
RenderScheduler.js
deprecated. The file will be deleted in a future release. If you were using some of its methods, import these methods from the new Render.js
module. For example, if you were using:
import RenderScheduler from "@ui5/webcomponents-base/dist/RenderScheduler.js";
RenderScheduler.renderImmediately(myComponent);
RenderScheduler.renderDeferred(myComponent);
await RenderScheduler.whenFinished();
change to:
import { renderFinished, renderImmediately, renderDeferred } from "@ui5/webcomponents-base/dist/Render.js";
renderImmediately(myComponent);
renderDeferred(myComponent);
await renderFinished();
whenFinished
from RenderScheduler.js
renamed to renderFinished
and now exported by Render.js
. For usage, see the previous example
The legacy browser support is now moved to new ie11 package. If you used them before add @ui5/webcomponents-ie11 as a dependency to your project:
npm i @ui5/webcomponents-ie11 --save
or
yarn add @ui5/webcomponents-ie11
Change the following public imports:
import "@ui5/webcomponents-base/dist/features/browsersupport/IE11.js";
to
import "@ui5/webcomponents-ie11/dist/features/IE11.js";
and
import "@ui5/webcomponents-base/dist/features/browsersupport/IE11WithWebComponentsPolyfill.js";
to
import "@ui5/webcomponents-ie11/dist/features/IE11WithWebComponentsPolyfill.js";
The Legacy Edge browser is no longer supported with the ES6 bundle, therefore the following import has been removed:
import "@ui5/webcomponents-base/dist/features/browsersupport/Edge.js";
Legacy Edge is still supported with the ES5 bundle. If your app needs to support Legacy Edge, treat it as IE11 and transpile the code to ES5 as you would for IE11.
The property selectedDates is deprecated for ui5-calendar. Instead of setting selectedDates as an array of UTC timestamps, please provide instances of ui5-date as children of the ui5-calendar. Instead of reading the selectedDates property to find out which dates the user selected, please read the children of the ui5-calendar (instances of ui5-date with value property).
The selection property of ui5-calendar and ui5-daypicker has been renamed to selectionMode.
The property hasMore removed, use growing instead. The loadMoreText has been renamed to moreText. The loadMoreSubtext has been renamed to moreSubtext
FAQs
UI5 Web Components: webcomponents.main
The npm package @ui5/webcomponents receives a total of 47,151 weekly downloads. As such, @ui5/webcomponents popularity was classified as popular.
We found that @ui5/webcomponents demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.