UI5 Web Components - Base
Contains the base files for all Web Components, most notably @ui5/webcomponents-base/dist/UI5Element.js
.
Provided APIs for applications
Affects | Import | Description |
---|
Configuration | @ui5/webcomponents-base/dist/config/Theme.js | Sets Theme Configuration |
Configuration | @ui5/webcomponents-base/dist/config/Language.js | Sets Language Configuration |
Configuration | @ui5/webcomponents-base/dist/config/AnimationMode.js | Sets Animation Mode Configuration |
Configuration | @ui5/webcomponents-base/dist/config/NoConflict.js | Sets "NoConflict" Mode Configuration - if enabled all custom events are fired with the ui5- prefix |
Framework | @ui5/webcomponents-base/dist/features/OpenUI5Support.js | Adds integration with the OpenUI5 framework for resources re-use |
Components | @ui5/webcomponents-base/dist/features/F6Navigation.js | Adds support for F6 fast group navigation |
Components | import applyDirection from "@ui5/webcomponents-base/dist/locale/applyDirection.js" | Applies direction ("ltr"/"rtl") - re-renders all RTL-aware components |
Components | import { setCustomElementsScopingSuffix } from "@ui5/webcomponents-base/dist/CustomElementsScope.js" | Adds suffix to the tag names of all components |
Components | @ui5/webcomponents-base/dist/util/InvisibleMessage.js | Provides a way to expose dynamic content changes that can be announced by screen readers |
applyDirection.js
Boot.js
CustomElementsScope.js
setCustomElementsScopingSuffix
getCustomElementsScopingSuffix
setCustomElementsScopingRules
getCustomElementsScopingRules
IgnoreCustomElements.js
i18nBundle.js
registerI18nLoader
getI18nBundle
PropertiesFileFormat.js
Render.js
Resources
Support
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.
Contribute
Please check our Contribution Guidelines.
License
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.
2.0.0-rc.5 (2024-06-06)
Bug Fixes
Code Refactoring
Features
BREAKING CHANGES
- ui5-radio-button:
wrapping-type
property default value has changed from None
to Normal
.
Before:
<ui5-radio-button text="Option A with long long text"></ui5-radio-button>
<!-- would truncate the text if there is not enough space -->
Now:
<ui5-radio-button text="Option A with long long text"></ui5-radio-button>
<!-- would let the text wrap if there is not enough space -->
Related to https://github.com/SAP/ui5-webcomponents/issues/8461
- ui5-link:
wrapping-type
property default value has changed from None
to Normal
.
Before:
<ui5-link>some very very very long link</ui5-link> <!-- would truncate the text if there is not enough space -->
Now:
<ui5-link>some very very very long link</ui5-link> <!-- would let the text wrap if there is not enough space -->