UI5 Web Components - AI
Provides web components implementing AI-related visual and interaction.
Note: The package is available since 2.0 and experimental
Provided components
Web Component | Tag name | Module import |
---|
Provided assets
Assets | Module | Notes |
---|
i18n , themes | @ui5/webcomponents-compat/dist/Assets.js | Theming parameters and translations for the components |
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 -->