@ts-core/angular 11.0.80 → 11.0.81
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 +302 -104
- 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/ts-core-angular.js +11 -10
- package/esm2015/window/component/WindowBaseComponent.js +2 -2
- package/fesm2015/ts-core-angular.js +254 -85
- package/fesm2015/ts-core-angular.js.map +1 -1
- package/package.json +1 -1
- package/style/mat/vi-mat.scss +6 -1
- 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
package/style/mat/vi-mat.scss
CHANGED
|
@@ -94,6 +94,11 @@
|
|
|
94
94
|
max-height: inherit;
|
|
95
95
|
@include vertical-scroll-only();
|
|
96
96
|
}
|
|
97
|
+
|
|
98
|
+
vi-bottom-sheet-close {
|
|
99
|
+
top: -20px;
|
|
100
|
+
right: -20px;
|
|
101
|
+
}
|
|
97
102
|
}
|
|
98
103
|
|
|
99
104
|
mat-progress-bar {
|
|
@@ -434,7 +439,7 @@
|
|
|
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
|
}
|
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';
|