mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-23 17:52:23 -04:00
* Chore(deps-dev): Bump the frontend-angular-dependencies group Bumps the frontend-angular-dependencies group in /src-ui with 5 updates: | Package | From | To | | --- | --- | --- | | [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `19.1.0` | `19.2.0` | | [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `19.1.0` | `19.2.0` | | [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `19.1.0` | `19.2.0` | | [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics) | `19.1.0` | `19.2.0` | | [@angular-eslint/template-parser](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser) | `19.1.0` | `19.2.0` | Updates `@angular-eslint/builder` from 19.1.0 to 19.2.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/builder/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v19.2.0/packages/builder) Updates `@angular-eslint/eslint-plugin` from 19.1.0 to 19.2.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v19.2.0/packages/eslint-plugin) Updates `@angular-eslint/eslint-plugin-template` from 19.1.0 to 19.2.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v19.2.0/packages/eslint-plugin-template) Updates `@angular-eslint/schematics` from 19.1.0 to 19.2.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/schematics/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v19.2.0/packages/schematics) Updates `@angular-eslint/template-parser` from 19.1.0 to 19.2.0 - [Release notes](https://github.com/angular-eslint/angular-eslint/releases) - [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/template-parser/CHANGELOG.md) - [Commits](https://github.com/angular-eslint/angular-eslint/commits/v19.2.0/packages/template-parser) --- updated-dependencies: - dependency-name: "@angular-eslint/builder" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/eslint-plugin-template" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/schematics" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies - dependency-name: "@angular-eslint/template-parser" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: frontend-angular-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * Fix lint error on toast close output name --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
|
|
<li ngbDropdown class="nav-item" (openChange)="onOpenChange($event)">
|
|
@if (toasts.length) {
|
|
<span class="badge rounded-pill z-3 pe-none bg-secondary me-2 position-absolute top-0 left-0">{{ toasts.length }}</span>
|
|
}
|
|
<button class="btn border-0" id="notificationsDropdown" ngbDropdownToggle>
|
|
<i-bs width="1.3em" height="1.3em" name="bell"></i-bs>
|
|
</button>
|
|
<div ngbDropdownMenu class="dropdown-menu-end shadow p-3" aria-labelledby="notificationsDropdown">
|
|
<div class="btn-toolbar align-items-center" role="toolbar">
|
|
<h6 i18n>Notifications</h6>
|
|
<div class="btn-group ms-auto">
|
|
<button class="btn btn-sm btn-outline-secondary mb-2 ms-auto"
|
|
(click)="toastService.clearToasts()"
|
|
[disabled]="toasts.length === 0"
|
|
i18n>Clear All</button>
|
|
</div>
|
|
</div>
|
|
@if (toasts.length === 0) {
|
|
<p class="text-center mb-0 small text-muted"><em i18n>No notifications</em></p>
|
|
}
|
|
<div class="scroll-list">
|
|
@for (toast of toasts; track toast.id) {
|
|
<pngx-toast [autohide]="false" [toast]="toast" (hidden)="onHidden(toast)" (closed)="toastService.closeToast(toast)"></pngx-toast>
|
|
}
|
|
</div>
|
|
</div>
|
|
</li>
|