
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
transferz-fe-component-library
Advanced tools
These colors define the theme, and are used in all generated classes related to CSS properties that use color values.
BLACK & GREY
ASPHALT
ATLANTIS
BLUE
RED
YELLOW
For every color variable listed above, there are few classes generated, each for a specific CSS rule that's related to a color value.
.color-#{$color-name}, .#{$color-name} {
color: $color;
}
.bg-color-#{$color-name}, .bg-#{$color-name} {
background-color: $color;
}
.border-color-#{$color-name}, .border-#{$color-name} {
border-color: $color;
}
For CSS display rule there are some generated classes described below.
Available variables are: 'block', 'inline', 'inline-block', 'flex', 'inline-flex', 'none';
.display-#{$value}, .d-#{$value} {
display: $value;
}
There are some variables that define available combinations for generated classes described below.
Available options for flex-direction are 'row', 'row-reverse', 'column', 'column-reverse';
.flex-direction-#{$direction}, .flex-#{$direction} {
flex-direction: $direction;
}
Available options for justify-content are 'flex-start', 'flex-end', 'center', 'space-between', 'space-evenly', 'space-between';
.justify-content-#{$value}, .justify-#{$value} {
justify-content: $value;
}
Available options for align-items and align-self are 'flex-start', 'flex-end', 'center', 'stretch';
.align-items-#{$value}, .align-#{$value} {
align-items: $value;
}
.align-self-#{$value}, .self-#{$value} {
align-self: $value;
}
For CSS position rule there are some generated classes described below.
Available variables are: 'static', 'relative', 'absolute', 'fixed';
.position-#{$value}, .p-#{$value} {
position: $value;
}
For CSS position rule there are some generated classes described below.
Available values are: 0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100;
.top-#{$size}-perc,
.top-#{$size} {
top: #{$size}%;
}
.right-#{$size}-perc,
.right-#{$size} {
right: #{$size}%;
}
.bottom-#{$size}-perc,
.bottom-#{$size} {
bottom: #{$size}%;
}
.left-#{$size}-perc,
.left-#{$size} {
left: #{$size}%;
}
For centering elements there are some generated classes described below.
CENTER ABSOLUTE HORIZONTALY
.center-a-h {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
CENTER ABSOLUTE VERTICALLY
.center-a-v {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
CENTER ABSOLUTE BOTH
.center-a-b {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Grid system contains generated classes that help in development of the layout, affecting the position, size and inter-relations of components in the flexbox grid.
Grid is based on the system of 12 columns, which represent the full width/height, that is 100% of available space.
Available variables are: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12;
.width-#{$size}, .w-#{$size} {
width: calc(100% / 12 * #{$size});
}
.max-width-#{$size}, .max-w-#{$size} {
max-width: calc(100% / 12 * #{$size});
}
.min-width-#{$size}, .min-w-#{$size} {
min-width: calc(100% / 12 * #{$size});
}
.height-#{$size}, .h-#{$size} {
height: calc(100% / 12 * #{$size});
}
.max-height-#{$size}, .max-h-#{$size} {
max-height: calc(100% / 12 * #{$size});
}
.min-height-#{$size}, .min-h-#{$size} {
min-height: calc(100% / 12 * #{$size});
}
.grow-#{$size}, .flex-grow-#{$size} {
flex-grow: $size;
}
.shrink-#{$size}, .flex-shrink-#{$size} {
flex-shrink: $size;
}
.basis-#{$size}, .flex-basis-#{$size} {
flex-basis: $size;
}
For CSS margin and padding rules, with all their variants, there are some generated classes described below.
Available variables are from 0 - 100.
.padding-#{$size}, .p-#{$size} {
padding: #{$size}px;
}
.padding-vertical-#{$size}, .p-v-#{$size} {
padding: #{$size}px 0;
}
.padding-horizontal-#{$size}, .p-h-#{$size} {
padding: 0 #{$size}px;
}
.padding-left-#{$size}, .p-l-#{$size} {
padding-left: #{$size}px;
}
.padding-right-#{$size}, .p-r-#{$size} {
padding-right: #{$size}px;
}
.padding-top-#{$size}, .p-t-#{$size} {
padding-top: #{$size}px;
}
.padding-bottom-#{$size}, .p-b-#{$size} {
padding-bottom: #{$size}px;
}
.margin-#{$size}, .m-#{$size} {
margin: #{$size}px;
}
.margin-vertical-#{$size}, .m-v-#{$size} {
margin: #{$size}px 0;
}
.margin-horizontal-#{$size}, .m-h-#{$size} {
margin: 0 #{$size}px;
}
.margin-left-#{$size}, .m-l-#{$size} {
margin-left: #{$size}px;
}
.margin-right-#{$size}, .m-r-#{$size} {
margin-right: #{$size}px;
}
.margin-top-#{$size}, .m-t-#{$size} {
margin-top: #{$size}px;
}
.margin-bottom-#{$size}, .m-b-#{$size} {
padding-bottom: #{$size}px;
}
For CSS opacity rule there are some generated classes described below.
Available variables are: 0, 0-2, 0-4, 0-5, 0-6, 0-8, 0-9, 0-95, 1;
.opacity-#{$name} {
opacity: $value;
}
For CSS z-index rule there are some generated classes described below.
Available values are: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 99, 999;
.z-index-#{$value}, .z-#{$value} {
opacity: $value;
}
For CSS border-radius rule there are some generated classes described below.
Available values are: 5, 8, 10, 12, 15, 16, 20, 24, 25, 28, 30, 35;
.border-radius-#{$size},
.b-r-#{$size} {
border-radius: #{$size}px;
}
.border-radius-50-perc,
.b-r-50-perc {
border-radius: 50%;
}
<type>: <summary>
│ │
│ └─⫸ Summary in present tense. Not capitalized. No period at the end.
│
│
└─⫸ Commit Type: build|ci|docs|feat|fix|perf|refactor|test
The <type> and <summary> fields are mandatory.
Must be one of the following:
FAQs
## Components included
The npm package transferz-fe-component-library receives a total of 0 weekly downloads. As such, transferz-fe-component-library popularity was classified as not popular.
We found that transferz-fe-component-library 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.