Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
> This lib is still under construction however some components are still working.
This lib is still under construction however some components are still working.
ng-tw is a set of components to use tailwind css with angular, created with love to the community.
Add ng-tw
, tailwind
and @angular/cdk
dependency to your project:
npm install ng-tw @angular/cdk tailwindcss
We use @angular/cdk
mostly for overlay components like notification, select and others, in order to make it work on a minimum setup you'll need to import their css in your style.scss:
@import '@angular/cdk/overlay-prebuilt.css';
First you'll need to setup tailwind on your angular project, to do that you can follow the setup documentation on tailwind website.
With angular +12 the process is pretty straight forward and since this lib was made with angular +13 you shouldn't have much problems to setup tailwind.
The theme design is based on a set of colors to make it easy to use inside components.
tailwind.config.js
const colors = require('tailwindcss/colors');
module.exports = {
//...
theme: {
extend: {
colors: {
primary: { ...colors.indigo, DEFAULT: colors.indigo[500] },
secondary: { ...colors.pink, DEFAULT: colors.pink[500] },
danger: { ...colors.red, DEFAULT: colors.red[500] },
},
},
},
variants: {
extend: {
opacity: ['disabled'],
backgroundColor: ['disabled'],
},
},
//...
}
It's also important to note that you should add the disabled variant for opacity and backgroundColor.
Tailwind uses purge to make the bundle size smaller, you'll need to setup the lib in the content
section of your tailwind.config.js
to make it work
module.exports = {
//...
content: [..., './node_modules/ng-tw/**/*'],
//...
}
For more instructions and documentation:
FAQs
> This lib is still under construction however some components are still working.
We found that ng-tw demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.