0.2.0
Release Notes v0.2.0
This update introduces several new features and enhancements to improve your experience with integrating the VLibras
1. Enhanced Positioning Options
The position
property now supports additional options for better customization of the VLibras widget’s placement on the screen. The available values are:
left
(default)right
top
bottom
bottomLeft
topLeft
bottomRight
topRight
With these new options, you can place the VLibras widget exactly where you need it in your application.
2. Customizable Avatars
We’ve added the avatar
property, allowing you to choose from different avatars for the VLibras widget. The options include:
icaro
hosana
guga
random
(default)
You can now personalize the appearance of the widget by selecting the avatar that best suits your application’s design.
3. Adjustable Opacity
The opacity
property has been introduced to give you control over the transparency of the VLibras widget. The value should be a number between 0
and 1
, with 1
being fully opaque (default). This feature allows you to adjust the widget's visibility to better match your application's style.
Example Usage
Here’s an example of how you can use the new properties to customize the VLibras widget:
<angular-vlibras
position="bottomRight"
avatar="hosana"
opacity="0.9" />
This configuration will place the widget at the bottom-right corner of the screen, use the hosana
avatar, and set the opacity to 0.9
.