ngx-monkey-ui
v0.3.3
Published
NgxMonkeyUi is an Angular components and functionalities library under development.
Downloads
30
Readme
NgxMonkeyUi
NgxMonkeyUi is an Angular components and functionalities library under development.
Author
Installation
To install NgxMonkeyUi, you have two options:
Using npm:
- Run the following command in your Angular project:
npm install ngx-monkey-ui
Downloading built files:
- Go to the GitHub repository releases page.
- Download your preferred version (latest version recommended).
- Extract the downloaded files into your Angular project.
- In your tsconfig.json file, add the following under the "compilerOptions" tag:
"paths": { "ngx-monkey-ui": [ "{{your ngx-monkey-ui parent folder}}/ngx-monkey-ui" ] },
Usage
To use the NgxMonkeyUi library in your Angular project, follow these steps:
- Import the necessary modules in your app module:
import { NgxMonkeyUiModule } from 'ngx-monkey-ui';
@NgModule({
imports: [
// ...
NgxMonkeyUiModule
],
// ...
})
export class AppModule { }
- Use the components and functionalities provided by NgxMonkeyUi in your templates:
<monkey-menu></monkey-menu>
<monkey-button></monkey-button>
<!-- ... -->
Customize the styles of the NgxMonkeyUi components by adding your own CSS classes, using the provided CSS variables, or adding any MonkeyStyle to the component tag.
Build and run your Angular project to see the NgxMonkeyUi components in action.
Documentation
Detailed documentation in next versions...
Support
If you encounter any issues or have any questions, feel free to open an issue on the GitHub repository.
License
The NgxMonkeyUi library is released under the MIT License. See the LICENSE file for more details.