
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
ngx-angular-ui
Advanced tools
AngularUI is an open-source collection of prebuilt UI components, based on the utility-first Tailwind CSS framework.
AngularUI is an open-source collection of prebuilt UI components, based on the utility-first Tailwind CSS framework.
You can find the AngularUI documentation on our website.
AngularUI is a UI component library for Angular that allows you to effortlessly create beautiful and accessible interfaces. Built on Tailwind CSS, it offers seamless integration and great flexibility. Simplify development with customizable, modern components, enhancing the user experience.
npm install ngx-angular-ui@latest
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init
Configure tailwind.config.js to enable darkMode and define the content, including the path to ngx-angular-ui components:
module.exports = {
darkMode: 'class',
content: [
"./src/**/*.{html,ts}",
"./node_modules/ngx-angular-ui/**/*.{html,ts,js,mjs}"
],
theme: {
extend: {},
},
plugins: [],
}
Add the following directives to your main CSS file to include Tailwind CSS base styles, components, and utilities:
@tailwind base;
@tailwind components;
@tailwind utilities;
For a better visual experience, we recommend using the Geist Sans font. You can install it and add it to your project by following these steps:
npm install @fontsource/geist-sans
Add the font imports to your main styles file (e.g., styles.css or styles.scss):
@import '@fontsource/geist-sans/300.css';
@import '@fontsource/geist-sans/400.css';
@import '@fontsource/geist-sans/500.css';
@import '@fontsource/geist-sans/600.css';
@import '@fontsource/geist-sans/700.css';
@import '@fontsource/geist-sans/800.css';
@import '@fontsource/geist-sans/900.css';
Add the following CSS to ensure the font is applied throughout your application:
body {
font-family: 'Geist Sans', sans-serif;
-webkit-font-smoothing: antialiased;
}
This project is licensed under the MIT License.
FAQs
AngularUI is an open-source collection of prebuilt UI components, based on the utility-first Tailwind CSS framework.
We found that ngx-angular-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.