
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
angular-breakpoints
Advanced tools
angular-breakpoints
is a little angular service to listen programmatically to breakpoints.
It works with RxJS
.
npm install angular-breakpoints --save
jspm install angular-breakpoints=npm:angular-breakpoints
First you need to import the breakpointsProvider
function and expose it in the providers array (or in bootstrap).
import { breakpointsProvider, BreakpointsService, BreakpointEvent } from 'angular-breakpoints';
@Component({
// ...
providers: [breakpointsProvider()]
// ...
})
export class YourComponent {
constructor (private breakpointsService: BreakpointsService) {
this.breakpointsService.changes.subscribe((event: BreakpointEvent) => {
console.log(event);
});
}
}
The changes
property is an instance of RxJS Observable
. It will gives you the initial value when you subscribe to it.
name
: name of the breakpointbreakpoint
: value of the breakpoint (min and max)currentSize
: the current size of the window (width and height)The defaults breakpoints are the Twitter Bootstrap
breakpoints.
const defaultBreakpoints: BreakpointConfig = {
xs: { max: 768 },
sm: { min: 768, max: 992 },
md: { min: 992, max: 1200 },
lg: { min: 1200 }
};
You can customize the breakpoints by passing a BreakpointConfig
interface in the breakpointsProvider
.
To match a breakpoint, the size must be greater or equal than the minimum and less than the maximum (not less or equal).
const breakpointConfig: BreakpointConfig = {
xss: { max: 400 },
xs: { min: 400, max: 768 },
sm: { min: 768, max: 992 },
md: { min: 992, max: 1200 },
lgs: { min: 1200, max: 1500 },
lg: { min: 1500 }
}
// ...
providers: [breakpointsProvider(breakpointConfig)]
// ...
The service subscribes to the resize event when created.
If you want to temporarily unsubscribe to the resize event, just call the unsubscribe
method.
If you want to resubscribe, call the subscribe
method.
The methods exist but the resize event does not run in NgZone
so it will not trigger change detection.
Thus, the performance should not be affected.
FAQs
Angular 2 service to programmatically listen to breakpoints
The npm package angular-breakpoints receives a total of 8 weekly downloads. As such, angular-breakpoints popularity was classified as not popular.
We found that angular-breakpoints 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.