@resolveio/client-lib-core 21.0.36 → 21.0.38
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/package.json
CHANGED
|
@@ -136,6 +136,7 @@ interface UserSettingsModel {
|
|
|
136
136
|
secondary_hover_color: string;
|
|
137
137
|
routing_preference: string;
|
|
138
138
|
opening_route: string;
|
|
139
|
+
ng_select_search_mode?: 'fuzzy' | 'exact';
|
|
139
140
|
}
|
|
140
141
|
interface UserRoleModel {
|
|
141
142
|
super_admin: boolean;
|
|
@@ -1763,7 +1764,7 @@ interface CanComponentDeactivate {
|
|
|
1763
1764
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
1764
1765
|
}
|
|
1765
1766
|
declare class CanDeactivateGuard {
|
|
1766
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
1767
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
1767
1768
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
1768
1769
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
1769
1770
|
}
|