
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
angular-fittext
Advanced tools
An Angular directive to auto-scale the font-size of an element to fit it's parent element.
Angular directive (typescript) to do what fittext.js did when jquery was cool. This auto-scales the font size to fit the width of it's container.
This package was renamed angular-fittext to get rid of the ng version binding. This will follow the updates for angular and will not need to be bound specifically to a version of angular. We have kept the same github repo, but renamed it to angular-fittext.
Install the library
$ npm install --save angular-fittext
Import it in your Angular project as a module
Declare it in your module
import {AngularFittextModule} from 'angular-fittext';
@NgModule({
imports: [
AngularFittextModule,
...
]
})
Use it in a component
The element that contains this directive should have a CSS width!
import {Component} from '@angular/core';
@Component({
selector: 'hero',
template: `
<div style="align-content: center;">
<div style="width: 20%; height: 20%; margin: 0 auto;">
<div fittext>test</div>
</div>
</div>`
})
export class AppComponent {}
Parameters:
| Parameter | Description | Values |
|---|---|---|
fittext (required) | Selector for the directive. | boolean (defaults to true) |
[activateOnResize] (optional) | enable/disable the auto-scale in case of window resize | boolean (defaults to true) |
[compression] (optional) | compression rate. How fast should the text resize? *As of v1.2.0, this can receive a dynamic value. | number (defaults to 1) |
[minFontSize] (optional) | minimum font size allowed on element | number (defaults to 0) |
[maxFontSize] (optional) | maximum font size allowed on element | number (defaults to infinity) |
[delay] (optional) | time to delay resize (in nanoseconds) | number (defaults to 100) |
[fontUnit] (optional) | font unit to apply to the fontSize | px, em, ... (defaults to px) |
Want to contribute? Great! Simply, clone the repository!
ISC
- Rich
FAQs
An Angular directive to auto-scale the font-size of an element to fit it's parent element.
The npm package angular-fittext receives a total of 380 weekly downloads. As such, angular-fittext popularity was classified as not popular.
We found that angular-fittext 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.