@ts-core/angular 11.0.81 → 11.0.82

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-core/angular",
3
- "version": "11.0.81",
3
+ "version": "11.0.82",
4
4
  "description": "Modules for frontend based on angular",
5
5
  "main": "bundles/ts-core-angular.umd.js",
6
6
  "author": {
@@ -1,7 +1,7 @@
1
1
  import { ActivatedRoute, ActivatedRouteSnapshot, NavigationExtras, Router, UrlTree } from '@angular/router';
2
2
  import { Loadable, LoadableStatus } from '@ts-core/common';
3
3
  import { NativeWindowService } from '@ts-core/frontend/service/NativeWindowService';
4
- export declare class RouterBaseService extends Loadable<void, void> {
4
+ export declare class RouterBaseService extends Loadable<void, RouterBaseServiceEventData> {
5
5
  protected _router: Router;
6
6
  protected window: NativeWindowService;
7
7
  protected params: Map<string, string>;
@@ -31,5 +31,10 @@ export declare class RouterBaseService extends Loadable<void, void> {
31
31
  get url(): string;
32
32
  get lastUrl(): string;
33
33
  get urlTree(): UrlTree;
34
+ get lastUrlTree(): UrlTree;
34
35
  get router(): Router;
35
36
  }
37
+ export interface RouterBaseServiceEventData {
38
+ url: string;
39
+ lastUrl: string;
40
+ }
@@ -87,7 +87,7 @@
87
87
  overflow: visible !important;
88
88
  min-height: inherit !important;
89
89
  max-height: inherit;
90
-
90
+
91
91
  & > :first-child {
92
92
  height: 100%;
93
93
  box-sizing: border-box;
@@ -95,7 +95,7 @@
95
95
  @include vertical-scroll-only();
96
96
  }
97
97
 
98
- vi-bottom-sheet-close {
98
+ vi-bottom-sheet-close-element {
99
99
  top: -20px;
100
100
  right: -20px;
101
101
  }
@@ -444,7 +444,6 @@
444
444
  }
445
445
  }
446
446
 
447
-
448
447
  $thumb-color: rgba(0, 0, 0, 0.15);
449
448
 
450
449
  @if map-get($theme, is-dark) {