NgxMonkeyUi is an Angular components and functionalities library under development.
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" ] },
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.
Detailed documentation in next versions...
If you encounter any issues or have any questions, feel free to open an issue on the GitHub repository.
The NgxMonkeyUi library is released under the MIT License. See the LICENSE file for more details.