@sumaris-net/ngx-components 2.7.5-rc14 → 2.7.5-rc15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/src/app/core/account/new-token.modal.mjs +5 -4
- package/esm2022/src/app/shared/toolbar/toolbar.mjs +14 -17
- package/fesm2022/sumaris-net.ngx-components.mjs +23 -22
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/account/new-token.modal.d.ts +1 -1
- package/src/app/shared/toolbar/toolbar.d.ts +2 -3
package/package.json
CHANGED
|
@@ -18,9 +18,9 @@ export declare class NewTokenModal extends AppEntityEditorModal<UserToken> imple
|
|
|
18
18
|
tokenForm: UntypedFormGroup;
|
|
19
19
|
tokenAppForm: IAppForm;
|
|
20
20
|
tokenConfig: MatAutocompleteFieldConfig;
|
|
21
|
-
copiedLabel: string;
|
|
22
21
|
tokenScopes: TokenScope[];
|
|
23
22
|
existingNames: string[];
|
|
23
|
+
private readonly clipboard;
|
|
24
24
|
constructor(injector: Injector, validator: UserTokenValidatorService, accountService: AccountService);
|
|
25
25
|
get valid(): boolean;
|
|
26
26
|
get invalid(): boolean;
|
|
@@ -2,7 +2,7 @@ import { ChangeDetectorRef, EventEmitter, OnDestroy, OnInit } from '@angular/cor
|
|
|
2
2
|
import { IProgressBarService } from '../services/progress-bar.service';
|
|
3
3
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
4
4
|
import { IonMenuToggle, IonRouterOutlet, IonSearchbar, NavController } from '@ionic/angular';
|
|
5
|
-
import {
|
|
5
|
+
import { Observable } from 'rxjs';
|
|
6
6
|
import { HammerTapEvent } from '../gesture/hammer.utils';
|
|
7
7
|
import { AppColors } from '../types';
|
|
8
8
|
import { SearchbarChangeEventDetail as ISearchbarSearchbarChangeEventDetail } from '@ionic/core/dist/types/components/searchbar/searchbar-interface';
|
|
@@ -25,9 +25,8 @@ export declare class ToolbarComponent implements ToolbarToken, OnInit, OnDestroy
|
|
|
25
25
|
private _validateTapCount;
|
|
26
26
|
private _defaultBackHref;
|
|
27
27
|
private _backHref;
|
|
28
|
-
protected readonly
|
|
28
|
+
protected readonly $progressBarMode: import("@angular/core").WritableSignal<ProgressBarMode>;
|
|
29
29
|
set progressBarMode(value: ProgressBarMode);
|
|
30
|
-
get progressBarMode(): ProgressBarMode;
|
|
31
30
|
title: string;
|
|
32
31
|
color: AppColors;
|
|
33
32
|
class: string;
|