@ts-core/angular 11.0.78 → 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/bottomSheet/{component/BottomSheetImpl.d.ts → BottomSheetImpl.d.ts} +12 -4
- package/bottomSheet/component/BottomSheetBaseComponent.d.ts +19 -0
- package/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.d.ts +10 -0
- package/bundles/ts-core-angular.umd.js +312 -107
- package/bundles/ts-core-angular.umd.js.map +1 -1
- package/bundles/ts-core-angular.umd.min.js +1 -1
- package/bundles/ts-core-angular.umd.min.js.map +1 -1
- package/esm2015/bottomSheet/BottomSheetImpl.js +231 -0
- package/esm2015/bottomSheet/BottomSheetModule.js +3 -3
- package/esm2015/bottomSheet/BottomSheetService.js +3 -3
- package/esm2015/bottomSheet/component/BottomSheetBaseComponent.js +86 -0
- package/esm2015/bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component.js +63 -0
- package/esm2015/component/cdk-table/cdk-table-filterable/cdk-table-filterable.component.js +2 -2
- package/esm2015/component/cdk-table/cdk-table-paginable/cdk-table-paginable.component.js +2 -2
- package/esm2015/service/RouterBaseService.js +6 -3
- package/esm2015/ts-core-angular.js +11 -10
- package/esm2015/window/component/WindowBaseComponent.js +2 -2
- package/fesm2015/ts-core-angular.js +260 -88
- package/fesm2015/ts-core-angular.js.map +1 -1
- package/package.json +1 -1
- package/service/RouterBaseService.d.ts +6 -1
- package/style/mat/vi-mat.scss +7 -3
- package/ts-core-angular.d.ts +11 -10
- package/ts-core-angular.metadata.json +1 -1
- package/esm2015/bottomSheet/component/BottomSheetImpl.js +0 -201
package/package.json
CHANGED
|
@@ -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,
|
|
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
|
+
}
|
package/style/mat/vi-mat.scss
CHANGED
|
@@ -87,13 +87,18 @@
|
|
|
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;
|
|
94
94
|
max-height: inherit;
|
|
95
95
|
@include vertical-scroll-only();
|
|
96
96
|
}
|
|
97
|
+
|
|
98
|
+
vi-bottom-sheet-close-element {
|
|
99
|
+
top: -20px;
|
|
100
|
+
right: -20px;
|
|
101
|
+
}
|
|
97
102
|
}
|
|
98
103
|
|
|
99
104
|
mat-progress-bar {
|
|
@@ -434,12 +439,11 @@
|
|
|
434
439
|
}
|
|
435
440
|
|
|
436
441
|
.cdk-overlay-pane {
|
|
437
|
-
&.blink {
|
|
442
|
+
&.vi-blink {
|
|
438
443
|
border: 2px solid mat-color($primary);
|
|
439
444
|
}
|
|
440
445
|
}
|
|
441
446
|
|
|
442
|
-
|
|
443
447
|
$thumb-color: rgba(0, 0, 0, 0.15);
|
|
444
448
|
|
|
445
449
|
@if map-get($theme, is-dark) {
|
package/ts-core-angular.d.ts
CHANGED
|
@@ -6,16 +6,17 @@ export { AssetFilePipe as ɵa } from './asset/AssetFilePipe';
|
|
|
6
6
|
export { AssetSoundPipe as ɵb } from './asset/AssetSoundPipe';
|
|
7
7
|
export { AssetVideoPipe as ɵc } from './asset/AssetVideoPipe';
|
|
8
8
|
export { BottomSheetModule as ɵm } from './bottomSheet/BottomSheetModule';
|
|
9
|
-
export {
|
|
10
|
-
export {
|
|
11
|
-
export {
|
|
12
|
-
export {
|
|
13
|
-
export {
|
|
14
|
-
export {
|
|
15
|
-
export {
|
|
16
|
-
export {
|
|
17
|
-
export {
|
|
18
|
-
export {
|
|
9
|
+
export { BottomSheetCloseElementComponent as ɵn } from './bottomSheet/component/bottom-sheet-close-element/bottom-sheet-close-element.component';
|
|
10
|
+
export { CdkTableFilterableComponent as ɵv } from './component/cdk-table/cdk-table-filterable/cdk-table-filterable.component';
|
|
11
|
+
export { CdkTablePaginableComponent as ɵu } from './component/cdk-table/cdk-table-paginable/cdk-table-paginable.component';
|
|
12
|
+
export { CdkTableCellClassNamePipe as ɵt } from './component/cdk-table/column/CdkTableCellClassNamePipe';
|
|
13
|
+
export { CdkTableColumnClassNamePipe as ɵp } from './component/cdk-table/column/CdkTableColumnClassNamePipe';
|
|
14
|
+
export { CdkTableColumnStyleNamePipe as ɵq } from './component/cdk-table/column/CdkTableColumnStyleNamePipe';
|
|
15
|
+
export { CdkTableColumnValuePipe as ɵo } from './component/cdk-table/column/CdkTableColumnValuePipe';
|
|
16
|
+
export { CdkTableRowClassNamePipe as ɵs } from './component/cdk-table/row/CdkTableRowClassNamePipe';
|
|
17
|
+
export { CdkTableRowStyleNamePipe as ɵr } from './component/cdk-table/row/CdkTableRowStyleNamePipe';
|
|
18
|
+
export { ValueAccessor as ɵw } from './form/ValueAccessor';
|
|
19
|
+
export { AsyncValidatorArray as ɵy, ValidatorArray as ɵx } from './form/validate';
|
|
19
20
|
export { NotificationQuestionBaseComponent as ɵl } from './notification/component/NotificationQuestionBaseComponent';
|
|
20
21
|
export { NotificationComponent as ɵk } from './notification/component/notification/notification.component';
|
|
21
22
|
export { WindowDragAreaDirective as ɵd } from './window/component/WindowDragAreaDirective';
|