0.0.1
·
88 commits
to master
since this release
Angular VLibras v0.0.1 Release Notes
We are excited to announce the release of Angular VLibras version 0.0.1. This is the initial release of the library designed to integrate the VLibras accessibility widget into Angular applications.
Features
- Standalone Component: Introduces the
AngularVlibrascomponent that embeds the VLibras widget into your Angular application. - Automatic Script Loading: Loads the VLibras script dynamically and initializes the widget upon component initialization.
- Keyframe Name Handling: Generates unique keyframe names to avoid conflicts with existing styles and updates keyframe references in stylesheets dynamically.
- DOM Mutation Observer: Monitors DOM changes and updates stylesheets to ensure compatibility with dynamic content changes.
Installation
To get started with Angular VLibras, install the library via npm:
npm install angular-vlibrasor with yarn:
yarn add angular-vlibrasUsage
-
Import the Component:
Import the
AngularVlibrasmodule in your Angular application:import { AngularVlibras } from 'angular-vlibras';
-
Add to Template:
Include the
<angular-vlibras />component in your application’s template:<angular-vlibras></angular-vlibras>