s-libs icon indicating copy to clipboard operation
s-libs copied to clipboard

A collection of libraries for any of javascript, rxjs, or angular.

Results 33 s-libs issues
Sort by recently updated
recently updated
newest added

- [X] upgrade Angular - [ ] upgrade angular-eslint - [ ] upgrade everything else - [ ] Switch off legacy Material components

This is a new function in the CDK, so it may make sense to also add it to `ComponentContext` to give users the tools they will start to get used...

Or was this only required in ViewEngine? If there's no situation where it's needed anymore, remove it from the docs.

It could be nice to have fancy tuple return types for low `length` values, too. ```ts export function getCombinations(elements: T[], length: number): T[][] { if (elements.length < length) { return...

Starting in Angular 14.1 there is framework support to change component inputs that will trigger change detection & such. Use it! https://github.com/angular/angular/commit/96c6139c9ab35aa6ab2330a5a79a5906d5c2e8be

I would like to be able to persist changes to the undo stack to restore them when the user returns.

Add an adapter to get `MutationObserver` into the rxjs world ```ts export function getResize$( target: Element, options?: ResizeObserverOptions, ): Observable { return new Observable((subscriber) => { const observer = new...