David UI Angular is a comprehensive Angular framework that leverages the power of Tailwind CSS to provide a rich set of UI components, making it easy to build stylish web applications.
To get started with David UI Angular, simply install it via npm or yarn.
npm install david-ui-angular
Follow these steps to integrate David UI Angular into your Angular project:
@import "<path-to-node_modules>/david-ui-angular/styles/_styles.scss";
@import "@angular/cdk/overlay-prebuilt.css";
OR You can add the link of style sheet in your angular.json style's list
"styles": [
"src/styles.scss",
"./node_modules/david-ui-angular/styles/_styles.scss"
],
@NgModule({ declarations: [AppComponent], imports: [BrowserModule, DUIButton], providers: [], bootstrap: [AppComponent], }) export class AppModule {}
then you can import and use the component in your html file like shown below.
```html
<dui-button>Click Me</dui-button>
"./node_modules/david-ui-angular/**/*.{html,ts,js,mjs}"
For detailed usage and documentation, please visit our official documentation.
DUI-Angular uses a number of open source libraries to work properly:
And of course david-ui-angular itself is open source library.
You can contribute to the package by following the steps below:
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)DUI-Angular requires Node.js v18+ to run.
Install the dependencies and devDependencies and start the server.
npm i
ng serve
npm run build-library
There are two applications inside project folder consumer and david-ui-angular as name indicate one is the consumer of the library to test the library and also contains the documentation, while the other is the library itself which has components and all.
Run this command in the root folder
ng build consumer
The output directory for the documentation will be 'dist/consumer'
This project is licensed under the MIT License. For more details, please see the LICENSE file.
If you have any questions about this project, please feel free to reach out to us at daviduiorg@gmail.com
Run ng generate component component-name --project david-ui-angular
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project david-ui-angular
.
Note: Don't forget to add
--project david-ui-angular
or else it will be added to the default project in yourangular.json
file.
Run ng build david-ui-angular
to build the project. The build artifacts will be stored in the dist/
directory.
After building your library with ng build david-ui-angular
, go to the dist folder cd dist/david-ui-angular
and run npm publish
.
Run ng test david-ui-angular
to execute the unit tests via Karma.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI Overview and Command Reference page.