
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
angular-elements-resizer
Advanced tools
Angular directive that allows element to be resized in all directions. Works without adding borders to the element.This directive is very light and will not trigger change Detection because it works outside of NgZone
Angular directive that allows element to be resized in all directions. Works without adding borders to the element. This directive is very light and will not trigger change Detection because it works outside of NgZone
https://aregsargsyan.github.io/DemoForResizerReusableModule/
Step 1: Install angular-resize-element
npm i angular-elements-resizer
Step 2: Import angular resize element module into your app module
....
import { AngularElementsResizerModule } from 'angular-elements-resizer';
....
@NgModule({
...
imports: [
....
AngularElementsResizerModule
],
....
})
export class AppModule { }
Step 3: Add ts code to the component
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `<div resizable></div>`,
styles: ['div { position: absolute; width: 300px;height: 400px; background: red; }']
})
export class AppComponent {
}
Note: The css part here is only for example (for visualization) you can use whatever styles you want
| Outputs | Type | Description |
|---|---|---|
| resizingStart | () => EventInterface | This event is fired when resize is started (only one time) |
| resizingElement | () => EventInterface | This event is fired when mouse move and size is changed |
| resizingEnd | () => EventInterface | This event is fired when mouse up and resize is finished (only one time) |
In case of questions feel free to contact me https://linkedin.com/in/areg-sargsyan
FAQs
Angular directive that allows element to be resized in all directions. Works without adding borders to the element.This directive is very light and will not trigger change Detection because it works outside of NgZone
We found that angular-elements-resizer 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

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.