@ng-matero/extensions 16.2.0 → 16.3.0
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/column-resize/column-resize-notifier.d.ts +1 -1
- package/column-resize/polyfill.d.ts +1 -3
- package/column-resize/resizable.d.ts +1 -0
- package/column-resize/resize-strategy.d.ts +4 -3
- package/core/tokens/m2/mtx/_grid.scss +5 -1
- package/esm2022/column-resize/column-resize-directives/column-resize-flex.mjs +3 -9
- package/esm2022/column-resize/column-resize-directives/column-resize.mjs +3 -9
- package/esm2022/column-resize/column-resize-directives/constants.mjs +1 -1
- package/esm2022/column-resize/column-resize-notifier.mjs +7 -2
- package/esm2022/column-resize/column-resize.mjs +3 -3
- package/esm2022/column-resize/event-dispatcher.mjs +5 -2
- package/esm2022/column-resize/polyfill.mjs +3 -19
- package/esm2022/column-resize/resizable.mjs +7 -7
- package/esm2022/column-resize/resize-ref.mjs +1 -1
- package/esm2022/column-resize/resize-strategy.mjs +16 -10
- package/esm2022/grid/cell.mjs +5 -6
- package/esm2022/grid/column-resize/column-resize-directives/common.mjs +1 -8
- package/esm2022/grid/column-resize/overlay-handle.mjs +11 -6
- package/esm2022/grid/column-resize/resizable-directives/common.mjs +1 -1
- package/esm2022/grid/column-resize/resizable-directives/resizable.mjs +3 -2
- package/esm2022/grid/column-resize/resize-strategy.mjs +10 -5
- package/esm2022/grid/grid-module.mjs +1 -6
- package/esm2022/grid/grid-utils.mjs +1 -11
- package/esm2022/grid/grid.mjs +11 -4
- package/esm2022/grid/public-api.mjs +1 -2
- package/esm2022/photoviewer/mtxPhotoviewer.mjs +5 -0
- package/esm2022/photoviewer/photoviewer-module.mjs +17 -0
- package/esm2022/photoviewer/photoviewer.mjs +63 -0
- package/esm2022/photoviewer/public-api.mjs +3 -0
- package/esm2022/popover/popover-interfaces.mjs +1 -1
- package/esm2022/popover/popover.mjs +13 -3
- package/fesm2022/mtxColumnResize.mjs +38 -52
- package/fesm2022/mtxColumnResize.mjs.map +1 -1
- package/fesm2022/mtxGrid.mjs +33 -83
- package/fesm2022/mtxGrid.mjs.map +1 -1
- package/fesm2022/mtxPhotoviewer.mjs +84 -0
- package/fesm2022/mtxPhotoviewer.mjs.map +1 -0
- package/fesm2022/mtxPopover.mjs +12 -2
- package/fesm2022/mtxPopover.mjs.map +1 -1
- package/grid/_grid-theme.scss +0 -2
- package/grid/cell.scss +0 -1
- package/grid/column-resize/_column-resize.scss +88 -94
- package/grid/column-resize/column-resize-directives/common.d.ts +0 -7
- package/grid/column-resize/overlay-handle.d.ts +1 -0
- package/grid/column-resize/resize-strategy.d.ts +2 -2
- package/grid/grid-module.d.ts +21 -22
- package/grid/grid-utils.d.ts +0 -6
- package/grid/grid.d.ts +4 -1
- package/grid/public-api.d.ts +0 -1
- package/package.json +34 -28
- package/photoviewer/index.d.ts +5 -0
- package/photoviewer/photoviewer-module.d.ts +7 -0
- package/photoviewer/photoviewer.d.ts +17 -0
- package/photoviewer/public-api.d.ts +2 -0
- package/popover/popover-interfaces.d.ts +1 -0
- package/popover/popover.d.ts +6 -1
- package/popover/popover.scss +4 -0
- package/prebuilt-themes/deeppurple-amber.css +1 -1
- package/prebuilt-themes/indigo-pink.css +1 -1
- package/prebuilt-themes/pink-bluegrey.css +1 -1
- package/prebuilt-themes/purple-green.css +1 -1
- package/esm2022/grid/image-preview.mjs +0 -50
- package/grid/image-preview.d.ts +0 -13
|
@@ -1,127 +1,121 @@
|
|
|
1
1
|
@use 'sass:map';
|
|
2
|
-
@use '
|
|
3
|
-
@use '../../core/
|
|
4
|
-
@use '../../core/
|
|
5
|
-
|
|
6
|
-
@mixin color($config-or-theme) {
|
|
7
|
-
$config: theming.get-color-config($config-or-theme);
|
|
8
|
-
$primary: map.get($config, primary);
|
|
9
|
-
$foreground: map.get($config, foreground);
|
|
10
|
-
|
|
11
|
-
$non-resizable-hover-divider: theming.get-color-from-palette($foreground, divider);
|
|
12
|
-
$resizable-hover-divider: theming.get-color-from-palette($primary, 200);
|
|
13
|
-
$resizable-active-divider: theming.get-color-from-palette($primary, 500);
|
|
14
|
-
|
|
15
|
-
// Required for resizing to work properly.
|
|
16
|
-
.mat-column-resize-table.cdk-column-resize-with-resized-column {
|
|
17
|
-
table-layout: fixed;
|
|
18
|
-
}
|
|
2
|
+
@use '@angular/material' as mat;
|
|
3
|
+
@use '../../core/tokens/token-utils';
|
|
4
|
+
@use '../../core/tokens/m2/mtx/grid' as tokens-mtx-grid;
|
|
19
5
|
|
|
20
|
-
|
|
21
|
-
.mat-mdc-header-cell,
|
|
22
|
-
.mat-mdc-cell {
|
|
23
|
-
box-sizing: border-box;
|
|
24
|
-
min-width: 32px;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
6
|
+
$_tokens: tokens-mtx-grid.$prefix, tokens-mtx-grid.get-token-slots();
|
|
27
7
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
8
|
+
// Required for resizing to work properly.
|
|
9
|
+
.mat-column-resize-table.cdk-column-resize-with-resized-column {
|
|
10
|
+
table-layout: fixed;
|
|
11
|
+
}
|
|
31
12
|
|
|
32
|
-
|
|
13
|
+
.mat-column-resize-flex {
|
|
14
|
+
.mat-mdc-header-cell,
|
|
15
|
+
.mat-mdc-cell {
|
|
33
16
|
box-sizing: border-box;
|
|
17
|
+
min-width: 32px;
|
|
34
18
|
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.mat-mdc-header-cell {
|
|
22
|
+
position: relative;
|
|
23
|
+
}
|
|
35
24
|
|
|
25
|
+
.mat-resizable {
|
|
26
|
+
box-sizing: border-box;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.mat-mdc-header-cell:not(.mat-resizable)::after,
|
|
30
|
+
.mat-resizable-handle {
|
|
31
|
+
position: absolute;
|
|
32
|
+
bottom: 0;
|
|
33
|
+
top: 0;
|
|
34
|
+
right: 0;
|
|
35
|
+
width: 1px;
|
|
36
|
+
background: transparent;
|
|
37
|
+
transition: background mat.$private-swift-ease-in-duration mat.$private-swift-ease-in-timing-function;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.mat-mdc-header-cell:not(.mat-resizable)::after {
|
|
41
|
+
content: '';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
[dir='rtl'] {
|
|
36
45
|
.mat-mdc-header-cell:not(.mat-resizable)::after,
|
|
37
46
|
.mat-resizable-handle {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
top: 0;
|
|
41
|
-
right: 0;
|
|
42
|
-
width: 1px;
|
|
43
|
-
background: transparent;
|
|
44
|
-
transition:
|
|
45
|
-
background variables.$swift-ease-in-duration
|
|
46
|
-
variables.$swift-ease-in-timing-function;
|
|
47
|
+
left: 0;
|
|
48
|
+
right: auto;
|
|
47
49
|
}
|
|
48
50
|
|
|
49
|
-
.mat-mdc-header-
|
|
50
|
-
|
|
51
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active {
|
|
52
|
+
.mat-header-cell,
|
|
53
|
+
.mat-mdc-header-cell {
|
|
54
|
+
border-left: none;
|
|
55
|
+
}
|
|
51
56
|
}
|
|
57
|
+
}
|
|
52
58
|
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
right: auto;
|
|
59
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active {
|
|
60
|
+
.mat-mdc-header-cell {
|
|
61
|
+
border-right: none;
|
|
57
62
|
}
|
|
58
63
|
|
|
59
|
-
|
|
64
|
+
@include token-utils.use-tokens($_tokens...) {
|
|
60
65
|
.mat-mdc-header-cell:not(.mat-resizable)::after {
|
|
61
|
-
background
|
|
66
|
+
@include token-utils.create-token-slot(background-color, resizable-handle-disabled-background-color);
|
|
62
67
|
}
|
|
63
68
|
|
|
64
69
|
.mat-resizable-handle {
|
|
65
|
-
background
|
|
70
|
+
@include token-utils.create-token-slot(background-color, resizable-handle-hover-background-color);
|
|
66
71
|
}
|
|
67
72
|
}
|
|
73
|
+
}
|
|
68
74
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
75
|
+
.mat-resizable.cdk-resizable-overlay-thumb-active>.mat-resizable-handle {
|
|
76
|
+
opacity: 0;
|
|
77
|
+
transition: none;
|
|
78
|
+
}
|
|
73
79
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
outline: none;
|
|
78
|
-
}
|
|
80
|
+
.mat-resizable-handle:focus,
|
|
81
|
+
.mat-mdc-header-row.cdk-column-resize-hover-or-active .mat-resizable-handle:focus {
|
|
82
|
+
outline: none;
|
|
79
83
|
|
|
80
|
-
.
|
|
81
|
-
background
|
|
82
|
-
cursor: col-resize;
|
|
83
|
-
height: 100%;
|
|
84
|
-
transition:
|
|
85
|
-
background variables.$swift-ease-in-duration
|
|
86
|
-
variables.$swift-ease-in-timing-function;
|
|
87
|
-
width: 100%;
|
|
88
|
-
@include vendor-prefixes.user-select(none);
|
|
89
|
-
|
|
90
|
-
&:active {
|
|
91
|
-
background:
|
|
92
|
-
linear-gradient(
|
|
93
|
-
90deg,
|
|
94
|
-
transparent,
|
|
95
|
-
transparent 7px,
|
|
96
|
-
$resizable-active-divider,
|
|
97
|
-
$resizable-active-divider 1px,
|
|
98
|
-
transparent 8px,
|
|
99
|
-
transparent
|
|
100
|
-
);
|
|
101
|
-
will-change: transform;
|
|
102
|
-
}
|
|
84
|
+
@include token-utils.use-tokens($_tokens...) {
|
|
85
|
+
@include token-utils.create-token-slot(background-color, resizable-handle-active-background-color);
|
|
103
86
|
}
|
|
104
87
|
}
|
|
105
88
|
|
|
106
|
-
|
|
89
|
+
.mat-column-resize-overlay-thumb {
|
|
90
|
+
background: transparent;
|
|
91
|
+
cursor: col-resize;
|
|
92
|
+
width: 100%;
|
|
93
|
+
height: 100%;
|
|
94
|
+
transition: background mat.$private-swift-ease-in-duration mat.$private-swift-ease-in-timing-function;
|
|
107
95
|
|
|
108
|
-
@
|
|
96
|
+
@include mat.private-user-select(none);
|
|
109
97
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
@include theming.private-check-duplicate-theme-styles($theme, 'mat-column-resize') {
|
|
113
|
-
$color: theming.get-color-config($theme);
|
|
114
|
-
$density: theming.get-density-config($theme);
|
|
115
|
-
$typography: theming.get-typography-config($theme);
|
|
98
|
+
&:active {
|
|
99
|
+
will-change: transform;
|
|
116
100
|
|
|
117
|
-
@
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
101
|
+
@include token-utils.use-tokens($_tokens...) {
|
|
102
|
+
$background-color: token-utils.get-token-variable(resizable-handle-active-background-color);
|
|
103
|
+
|
|
104
|
+
background: linear-gradient(90deg,
|
|
105
|
+
transparent, transparent 7px,
|
|
106
|
+
var($background-color) 7px, var($background-color) 9px,
|
|
107
|
+
transparent 9px, transparent);
|
|
108
|
+
|
|
109
|
+
.mat-column-resize-overlay-thumb-top {
|
|
110
|
+
background: linear-gradient(90deg,
|
|
111
|
+
transparent, transparent 4px,
|
|
112
|
+
var($background-color) 4px, var($background-color) 12px,
|
|
113
|
+
transparent 12px, transparent);
|
|
114
|
+
}
|
|
125
115
|
}
|
|
126
116
|
}
|
|
127
117
|
}
|
|
118
|
+
|
|
119
|
+
.mat-column-resize-overlay-thumb-top {
|
|
120
|
+
width: 100%;
|
|
121
|
+
}
|
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Google LLC All Rights Reserved.
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.io/license
|
|
7
|
-
*/
|
|
8
1
|
import { Provider } from '@angular/core';
|
|
9
2
|
import { ColumnResize } from '@ng-matero/extensions/column-resize';
|
|
10
3
|
export declare const TABLE_PROVIDERS: Provider[];
|
|
@@ -25,6 +25,7 @@ export declare class MatColumnResizeOverlayHandle extends ResizeOverlayHandle {
|
|
|
25
25
|
protected readonly resizeRef: ResizeRef;
|
|
26
26
|
protected readonly styleScheduler: _CoalescedStyleScheduler;
|
|
27
27
|
protected readonly document: Document;
|
|
28
|
+
topElement: ElementRef<HTMLElement>;
|
|
28
29
|
constructor(columnDef: CdkColumnDef, columnResize: ColumnResize, directionality: Directionality, elementRef: ElementRef, eventDispatcher: HeaderRowEventDispatcher, ngZone: NgZone, resizeNotifier: ColumnResizeNotifierSource, resizeRef: ResizeRef, styleScheduler: _CoalescedStyleScheduler, document: any);
|
|
29
30
|
protected updateResizeActive(active: boolean): void;
|
|
30
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatColumnResizeOverlayHandle, never>;
|
|
@@ -14,9 +14,9 @@ export { TABLE_LAYOUT_FIXED_RESIZE_STRATEGY_PROVIDER };
|
|
|
14
14
|
* Overrides CdkFlexTableResizeStrategy to match mat-column elements.
|
|
15
15
|
*/
|
|
16
16
|
export declare class MatFlexTableResizeStrategy extends CdkFlexTableResizeStrategy {
|
|
17
|
-
constructor(columnResize: ColumnResize, styleScheduler: _CoalescedStyleScheduler, table: CdkTable<unknown>, document: any);
|
|
17
|
+
constructor(columnResize: ColumnResize, styleScheduler: _CoalescedStyleScheduler, table: CdkTable<unknown>, document: any, nonce?: string | null);
|
|
18
18
|
protected getColumnCssClass(cssFriendlyColumnName: string): string;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MatFlexTableResizeStrategy,
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MatFlexTableResizeStrategy, [null, null, null, null, { optional: true; }]>;
|
|
20
20
|
static ɵprov: i0.ɵɵInjectableDeclaration<MatFlexTableResizeStrategy>;
|
|
21
21
|
}
|
|
22
22
|
export declare const FLEX_RESIZE_STRATEGY_PROVIDER: Provider;
|
package/grid/grid-module.d.ts
CHANGED
|
@@ -3,29 +3,28 @@ import * as i1 from "./grid";
|
|
|
3
3
|
import * as i2 from "./cell";
|
|
4
4
|
import * as i3 from "./column-menu";
|
|
5
5
|
import * as i4 from "./expansion-toggle";
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "
|
|
8
|
-
import * as i7 from "@angular/
|
|
9
|
-
import * as i8 from "@angular/
|
|
10
|
-
import * as i9 from "@angular/material/
|
|
11
|
-
import * as i10 from "@angular/material/
|
|
12
|
-
import * as i11 from "@angular/material/
|
|
13
|
-
import * as i12 from "@angular/material/
|
|
14
|
-
import * as i13 from "@angular/material/
|
|
15
|
-
import * as i14 from "@angular/material/
|
|
16
|
-
import * as i15 from "@angular/material/
|
|
17
|
-
import * as i16 from "@angular/material/
|
|
18
|
-
import * as i17 from "@angular/material/
|
|
19
|
-
import * as i18 from "@angular/material/
|
|
20
|
-
import * as i19 from "@angular/material/
|
|
21
|
-
import * as i20 from "@angular/material/
|
|
22
|
-
import * as i21 from "@angular/
|
|
23
|
-
import * as i22 from "
|
|
24
|
-
import * as i23 from "
|
|
25
|
-
import * as i24 from "@ng-matero/extensions/
|
|
26
|
-
import * as i25 from "@ng-matero/extensions/core";
|
|
6
|
+
import * as i5 from "./grid-pipes";
|
|
7
|
+
import * as i6 from "@angular/common";
|
|
8
|
+
import * as i7 from "@angular/forms";
|
|
9
|
+
import * as i8 from "@angular/material/table";
|
|
10
|
+
import * as i9 from "@angular/material/sort";
|
|
11
|
+
import * as i10 from "@angular/material/paginator";
|
|
12
|
+
import * as i11 from "@angular/material/checkbox";
|
|
13
|
+
import * as i12 from "@angular/material/button";
|
|
14
|
+
import * as i13 from "@angular/material/progress-bar";
|
|
15
|
+
import * as i14 from "@angular/material/chips";
|
|
16
|
+
import * as i15 from "@angular/material/tooltip";
|
|
17
|
+
import * as i16 from "@angular/material/badge";
|
|
18
|
+
import * as i17 from "@angular/material/icon";
|
|
19
|
+
import * as i18 from "@angular/material/select";
|
|
20
|
+
import * as i19 from "@angular/material/form-field";
|
|
21
|
+
import * as i20 from "@angular/material/menu";
|
|
22
|
+
import * as i21 from "@angular/cdk/drag-drop";
|
|
23
|
+
import * as i22 from "./column-resize/column-resize-module";
|
|
24
|
+
import * as i23 from "@ng-matero/extensions/dialog";
|
|
25
|
+
import * as i24 from "@ng-matero/extensions/core";
|
|
27
26
|
export declare class MtxGridModule {
|
|
28
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGridModule, never>;
|
|
29
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof
|
|
28
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxGridModule, [typeof i1.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof i1.MtxGridSelectableCell, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionsPipe, typeof i5.MtxGridCellActionTooltipPipe, typeof i5.MtxGridCellActionBadgePipe, typeof i5.MtxGridCellActionDisablePipe, typeof i5.MtxGridCellSummaryPipe], [typeof i6.CommonModule, typeof i7.FormsModule, typeof i8.MatTableModule, typeof i9.MatSortModule, typeof i10.MatPaginatorModule, typeof i11.MatCheckboxModule, typeof i12.MatButtonModule, typeof i13.MatProgressBarModule, typeof i14.MatChipsModule, typeof i15.MatTooltipModule, typeof i16.MatBadgeModule, typeof i17.MatIconModule, typeof i18.MatSelectModule, typeof i19.MatFormFieldModule, typeof i20.MatMenuModule, typeof i21.DragDropModule, typeof i22.MatColumnResizeModule, typeof i23.MtxDialogModule, typeof i24.MtxPipesModule], [typeof i22.MatColumnResizeModule, typeof i1.MtxGrid, typeof i2.MtxGridCell, typeof i3.MtxGridColumnMenu, typeof i4.MtxGridExpansionToggle, typeof i1.MtxGridSelectableCell, typeof i5.MtxGridRowClassPipe, typeof i5.MtxGridColClassPipe, typeof i5.MtxGridCellActionsPipe, typeof i5.MtxGridCellActionTooltipPipe, typeof i5.MtxGridCellActionBadgePipe, typeof i5.MtxGridCellActionDisablePipe, typeof i5.MtxGridCellSummaryPipe]>;
|
|
30
29
|
static ɵinj: i0.ɵɵInjectorDeclaration<MtxGridModule>;
|
|
31
30
|
}
|
package/grid/grid-utils.d.ts
CHANGED
|
@@ -16,12 +16,6 @@ export declare class MtxGridUtils {
|
|
|
16
16
|
* @returns
|
|
17
17
|
*/
|
|
18
18
|
getColData(data: any[], colDef: MtxGridColumn): any[];
|
|
19
|
-
/**
|
|
20
|
-
* Remove white spaces in a string and convert string to array
|
|
21
|
-
* @param str
|
|
22
|
-
* @returns
|
|
23
|
-
*/
|
|
24
|
-
str2arr(str: string): string[];
|
|
25
19
|
/**
|
|
26
20
|
* Whether the value is empty (`null`, `undefined`, `''`, `[]`)
|
|
27
21
|
* @param value
|
package/grid/grid.d.ts
CHANGED
|
@@ -86,6 +86,8 @@ export declare class MtxGrid implements OnChanges, AfterViewInit, OnDestroy {
|
|
|
86
86
|
rowStriped: boolean;
|
|
87
87
|
/** Event emitted when the user clicks the row. */
|
|
88
88
|
rowClick: EventEmitter<any>;
|
|
89
|
+
/** Event emitted when the user attempts to open a context menu. */
|
|
90
|
+
rowContextMenu: EventEmitter<any>;
|
|
89
91
|
expansionRowStates: any[];
|
|
90
92
|
/** Whether the row is expandable. */
|
|
91
93
|
expandable: boolean;
|
|
@@ -221,8 +223,9 @@ export declare class MtxGrid implements OnChanges, AfterViewInit, OnDestroy {
|
|
|
221
223
|
_onPage(e: PageEvent): void;
|
|
222
224
|
scrollTop(value?: number): number | void;
|
|
223
225
|
scrollLeft(value?: number): number | void;
|
|
226
|
+
_contextmenu(event: MouseEvent, rowData: Record<string, any>, index: number): void;
|
|
224
227
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxGrid, [null, null, { optional: true; }]>;
|
|
225
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtxGrid, "mtx-grid", ["mtxGrid"], { "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "columnResizable": { "alias": "columnResizable"; "required": false; }; "emptyValuePlaceholder": { "alias": "emptyValuePlaceholder"; "required": false; }; "pageOnFront": { "alias": "pageOnFront"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "pageDisabled": { "alias": "pageDisabled"; "required": false; }; "showFirstLastButtons": { "alias": "showFirstLastButtons"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "hidePageSize": { "alias": "hidePageSize"; "required": false; }; "paginationTemplate": { "alias": "paginationTemplate"; "required": false; }; "sortOnFront": { "alias": "sortOnFront"; "required": false; }; "sortActive": { "alias": "sortActive"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortDisableClear": { "alias": "sortDisableClear"; "required": false; }; "sortDisabled": { "alias": "sortDisabled"; "required": false; }; "sortStart": { "alias": "sortStart"; "required": false; }; "rowHover": { "alias": "rowHover"; "required": false; }; "rowStriped": { "alias": "rowStriped"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "expansionTemplate": { "alias": "expansionTemplate"; "required": false; }; "multiSelectable": { "alias": "multiSelectable"; "required": false; }; "multiSelectionWithClick": { "alias": "multiSelectionWithClick"; "required": false; }; "rowSelectable": { "alias": "rowSelectable"; "required": false; }; "hideRowSelectionCheckbox": { "alias": "hideRowSelectionCheckbox"; "required": false; }; "disableRowClickSelection": { "alias": "disableRowClickSelection"; "required": false; }; "rowSelectionFormatter": { "alias": "rowSelectionFormatter"; "required": false; }; "rowClassFormatter": { "alias": "rowClassFormatter"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "cellSelectable": { "alias": "cellSelectable"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "toolbarTitle": { "alias": "toolbarTitle"; "required": false; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "columnHideable": { "alias": "columnHideable"; "required": false; }; "columnHideableChecked": { "alias": "columnHideableChecked"; "required": false; }; "columnSortable": { "alias": "columnSortable"; "required": false; }; "columnPinnable": { "alias": "columnPinnable"; "required": false; }; "columnPinOptions": { "alias": "columnPinOptions"; "required": false; }; "showColumnMenuButton": { "alias": "showColumnMenuButton"; "required": false; }; "columnMenuButtonText": { "alias": "columnMenuButtonText"; "required": false; }; "columnMenuButtonType": { "alias": "columnMenuButtonType"; "required": false; }; "columnMenuButtonColor": { "alias": "columnMenuButtonColor"; "required": false; }; "columnMenuButtonClass": { "alias": "columnMenuButtonClass"; "required": false; }; "columnMenuButtonIcon": { "alias": "columnMenuButtonIcon"; "required": false; }; "showColumnMenuHeader": { "alias": "showColumnMenuHeader"; "required": false; }; "columnMenuHeaderText": { "alias": "columnMenuHeaderText"; "required": false; }; "columnMenuHeaderTemplate": { "alias": "columnMenuHeaderTemplate"; "required": false; }; "showColumnMenuFooter": { "alias": "showColumnMenuFooter"; "required": false; }; "columnMenuFooterText": { "alias": "columnMenuFooterText"; "required": false; }; "columnMenuFooterTemplate": { "alias": "columnMenuFooterTemplate"; "required": false; }; "noResultText": { "alias": "noResultText"; "required": false; }; "noResultTemplate": { "alias": "noResultTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "headerExtraTemplate": { "alias": "headerExtraTemplate"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "useContentRowTemplate": { "alias": "useContentRowTemplate"; "required": false; }; "useContentHeaderRowTemplate": { "alias": "useContentHeaderRowTemplate"; "required": false; }; "useContentFooterRowTemplate": { "alias": "useContentFooterRowTemplate"; "required": false; }; "showSummary": { "alias": "showSummary"; "required": false; }; "summaryTemplate": { "alias": "summaryTemplate"; "required": false; }; "showSidebar": { "alias": "showSidebar"; "required": false; }; "sidebarTemplate": { "alias": "sidebarTemplate"; "required": false; }; "showStatusbar": { "alias": "showStatusbar"; "required": false; }; "statusbarTemplate": { "alias": "statusbarTemplate"; "required": false; }; }, { "page": "page"; "sortChange": "sortChange"; "rowClick": "rowClick"; "expansionChange": "expansionChange"; "rowSelectedChange": "rowSelectedChange"; "cellSelectedChange": "cellSelectedChange"; "columnChange": "columnChange"; }, ["rowDefs", "headerRowDefs", "footerRowDefs"], never, false, never>;
|
|
228
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxGrid, "mtx-grid", ["mtxGrid"], { "displayedColumns": { "alias": "displayedColumns"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "length": { "alias": "length"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "trackBy": { "alias": "trackBy"; "required": false; }; "columnResizable": { "alias": "columnResizable"; "required": false; }; "emptyValuePlaceholder": { "alias": "emptyValuePlaceholder"; "required": false; }; "pageOnFront": { "alias": "pageOnFront"; "required": false; }; "showPaginator": { "alias": "showPaginator"; "required": false; }; "pageDisabled": { "alias": "pageDisabled"; "required": false; }; "showFirstLastButtons": { "alias": "showFirstLastButtons"; "required": false; }; "pageIndex": { "alias": "pageIndex"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; "hidePageSize": { "alias": "hidePageSize"; "required": false; }; "paginationTemplate": { "alias": "paginationTemplate"; "required": false; }; "sortOnFront": { "alias": "sortOnFront"; "required": false; }; "sortActive": { "alias": "sortActive"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "sortDisableClear": { "alias": "sortDisableClear"; "required": false; }; "sortDisabled": { "alias": "sortDisabled"; "required": false; }; "sortStart": { "alias": "sortStart"; "required": false; }; "rowHover": { "alias": "rowHover"; "required": false; }; "rowStriped": { "alias": "rowStriped"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "expansionTemplate": { "alias": "expansionTemplate"; "required": false; }; "multiSelectable": { "alias": "multiSelectable"; "required": false; }; "multiSelectionWithClick": { "alias": "multiSelectionWithClick"; "required": false; }; "rowSelectable": { "alias": "rowSelectable"; "required": false; }; "hideRowSelectionCheckbox": { "alias": "hideRowSelectionCheckbox"; "required": false; }; "disableRowClickSelection": { "alias": "disableRowClickSelection"; "required": false; }; "rowSelectionFormatter": { "alias": "rowSelectionFormatter"; "required": false; }; "rowClassFormatter": { "alias": "rowClassFormatter"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "cellSelectable": { "alias": "cellSelectable"; "required": false; }; "showToolbar": { "alias": "showToolbar"; "required": false; }; "toolbarTitle": { "alias": "toolbarTitle"; "required": false; }; "toolbarTemplate": { "alias": "toolbarTemplate"; "required": false; }; "columnHideable": { "alias": "columnHideable"; "required": false; }; "columnHideableChecked": { "alias": "columnHideableChecked"; "required": false; }; "columnSortable": { "alias": "columnSortable"; "required": false; }; "columnPinnable": { "alias": "columnPinnable"; "required": false; }; "columnPinOptions": { "alias": "columnPinOptions"; "required": false; }; "showColumnMenuButton": { "alias": "showColumnMenuButton"; "required": false; }; "columnMenuButtonText": { "alias": "columnMenuButtonText"; "required": false; }; "columnMenuButtonType": { "alias": "columnMenuButtonType"; "required": false; }; "columnMenuButtonColor": { "alias": "columnMenuButtonColor"; "required": false; }; "columnMenuButtonClass": { "alias": "columnMenuButtonClass"; "required": false; }; "columnMenuButtonIcon": { "alias": "columnMenuButtonIcon"; "required": false; }; "showColumnMenuHeader": { "alias": "showColumnMenuHeader"; "required": false; }; "columnMenuHeaderText": { "alias": "columnMenuHeaderText"; "required": false; }; "columnMenuHeaderTemplate": { "alias": "columnMenuHeaderTemplate"; "required": false; }; "showColumnMenuFooter": { "alias": "showColumnMenuFooter"; "required": false; }; "columnMenuFooterText": { "alias": "columnMenuFooterText"; "required": false; }; "columnMenuFooterTemplate": { "alias": "columnMenuFooterTemplate"; "required": false; }; "noResultText": { "alias": "noResultText"; "required": false; }; "noResultTemplate": { "alias": "noResultTemplate"; "required": false; }; "headerTemplate": { "alias": "headerTemplate"; "required": false; }; "headerExtraTemplate": { "alias": "headerExtraTemplate"; "required": false; }; "cellTemplate": { "alias": "cellTemplate"; "required": false; }; "useContentRowTemplate": { "alias": "useContentRowTemplate"; "required": false; }; "useContentHeaderRowTemplate": { "alias": "useContentHeaderRowTemplate"; "required": false; }; "useContentFooterRowTemplate": { "alias": "useContentFooterRowTemplate"; "required": false; }; "showSummary": { "alias": "showSummary"; "required": false; }; "summaryTemplate": { "alias": "summaryTemplate"; "required": false; }; "showSidebar": { "alias": "showSidebar"; "required": false; }; "sidebarTemplate": { "alias": "sidebarTemplate"; "required": false; }; "showStatusbar": { "alias": "showStatusbar"; "required": false; }; "statusbarTemplate": { "alias": "statusbarTemplate"; "required": false; }; }, { "page": "page"; "sortChange": "sortChange"; "rowClick": "rowClick"; "rowContextMenu": "rowContextMenu"; "expansionChange": "expansionChange"; "rowSelectedChange": "rowSelectedChange"; "cellSelectedChange": "cellSelectedChange"; "columnChange": "columnChange"; }, ["rowDefs", "headerRowDefs", "footerRowDefs"], never, false, never>;
|
|
226
229
|
}
|
|
227
230
|
export declare class MtxGridSelectableCell {
|
|
228
231
|
private _grid;
|
package/grid/public-api.d.ts
CHANGED
|
@@ -5,7 +5,6 @@ export * from './grid';
|
|
|
5
5
|
export * from './cell';
|
|
6
6
|
export * from './column-menu';
|
|
7
7
|
export * from './expansion-toggle';
|
|
8
|
-
export * from './image-preview';
|
|
9
8
|
export * from './interfaces';
|
|
10
9
|
export { TABLE_PROVIDERS as MAT_TABLE_PROVIDERS, FLEX_PROVIDERS as MAT_FLEX_PROVIDERS, TABLE_HOST_BINDINGS as MAT_TABLE_HOST_BINDINGS, FLEX_HOST_BINDINGS as MAT_FLEX_HOST_BINDINGS, AbstractMatColumnResize, } from './column-resize/column-resize-directives/common';
|
|
11
10
|
export { MatColumnResize } from './column-resize/column-resize-directives/column-resize';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-matero/extensions",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.3.0",
|
|
4
4
|
"description": "Angular Material Extensions",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -66,6 +66,12 @@
|
|
|
66
66
|
"./package.json": {
|
|
67
67
|
"default": "./package.json"
|
|
68
68
|
},
|
|
69
|
+
"./colorpicker": {
|
|
70
|
+
"types": "./colorpicker/index.d.ts",
|
|
71
|
+
"esm2022": "./esm2022/colorpicker/mtxColorpicker.mjs",
|
|
72
|
+
"esm": "./esm2022/colorpicker/mtxColorpicker.mjs",
|
|
73
|
+
"default": "./fesm2022/mtxColorpicker.mjs"
|
|
74
|
+
},
|
|
69
75
|
"./alert": {
|
|
70
76
|
"types": "./alert/index.d.ts",
|
|
71
77
|
"esm2022": "./esm2022/alert/mtxAlert.mjs",
|
|
@@ -84,11 +90,11 @@
|
|
|
84
90
|
"esm": "./esm2022/checkbox-group/mtxCheckboxGroup.mjs",
|
|
85
91
|
"default": "./fesm2022/mtxCheckboxGroup.mjs"
|
|
86
92
|
},
|
|
87
|
-
"./
|
|
88
|
-
"types": "./
|
|
89
|
-
"esm2022": "./esm2022/
|
|
90
|
-
"esm": "./esm2022/
|
|
91
|
-
"default": "./fesm2022/
|
|
93
|
+
"./column-resize": {
|
|
94
|
+
"types": "./column-resize/index.d.ts",
|
|
95
|
+
"esm2022": "./esm2022/column-resize/mtxColumnResize.mjs",
|
|
96
|
+
"esm": "./esm2022/column-resize/mtxColumnResize.mjs",
|
|
97
|
+
"default": "./fesm2022/mtxColumnResize.mjs"
|
|
92
98
|
},
|
|
93
99
|
"./core": {
|
|
94
100
|
"types": "./core/index.d.ts",
|
|
@@ -96,17 +102,11 @@
|
|
|
96
102
|
"esm": "./esm2022/core/mtxCore.mjs",
|
|
97
103
|
"default": "./fesm2022/mtxCore.mjs"
|
|
98
104
|
},
|
|
99
|
-
"./
|
|
100
|
-
"types": "./
|
|
101
|
-
"esm2022": "./esm2022/
|
|
102
|
-
"esm": "./esm2022/
|
|
103
|
-
"default": "./fesm2022/
|
|
104
|
-
},
|
|
105
|
-
"./datetimepicker": {
|
|
106
|
-
"types": "./datetimepicker/index.d.ts",
|
|
107
|
-
"esm2022": "./esm2022/datetimepicker/mtxDatetimepicker.mjs",
|
|
108
|
-
"esm": "./esm2022/datetimepicker/mtxDatetimepicker.mjs",
|
|
109
|
-
"default": "./fesm2022/mtxDatetimepicker.mjs"
|
|
105
|
+
"./drawer": {
|
|
106
|
+
"types": "./drawer/index.d.ts",
|
|
107
|
+
"esm2022": "./esm2022/drawer/mtxDrawer.mjs",
|
|
108
|
+
"esm": "./esm2022/drawer/mtxDrawer.mjs",
|
|
109
|
+
"default": "./fesm2022/mtxDrawer.mjs"
|
|
110
110
|
},
|
|
111
111
|
"./dialog": {
|
|
112
112
|
"types": "./dialog/index.d.ts",
|
|
@@ -114,11 +114,11 @@
|
|
|
114
114
|
"esm": "./esm2022/dialog/mtxDialog.mjs",
|
|
115
115
|
"default": "./fesm2022/mtxDialog.mjs"
|
|
116
116
|
},
|
|
117
|
-
"./
|
|
118
|
-
"types": "./
|
|
119
|
-
"esm2022": "./esm2022/
|
|
120
|
-
"esm": "./esm2022/
|
|
121
|
-
"default": "./fesm2022/
|
|
117
|
+
"./grid": {
|
|
118
|
+
"types": "./grid/index.d.ts",
|
|
119
|
+
"esm2022": "./esm2022/grid/mtxGrid.mjs",
|
|
120
|
+
"esm": "./esm2022/grid/mtxGrid.mjs",
|
|
121
|
+
"default": "./fesm2022/mtxGrid.mjs"
|
|
122
122
|
},
|
|
123
123
|
"./loader": {
|
|
124
124
|
"types": "./loader/index.d.ts",
|
|
@@ -126,18 +126,18 @@
|
|
|
126
126
|
"esm": "./esm2022/loader/mtxLoader.mjs",
|
|
127
127
|
"default": "./fesm2022/mtxLoader.mjs"
|
|
128
128
|
},
|
|
129
|
-
"./grid": {
|
|
130
|
-
"types": "./grid/index.d.ts",
|
|
131
|
-
"esm2022": "./esm2022/grid/mtxGrid.mjs",
|
|
132
|
-
"esm": "./esm2022/grid/mtxGrid.mjs",
|
|
133
|
-
"default": "./fesm2022/mtxGrid.mjs"
|
|
134
|
-
},
|
|
135
129
|
"./popover": {
|
|
136
130
|
"types": "./popover/index.d.ts",
|
|
137
131
|
"esm2022": "./esm2022/popover/mtxPopover.mjs",
|
|
138
132
|
"esm": "./esm2022/popover/mtxPopover.mjs",
|
|
139
133
|
"default": "./fesm2022/mtxPopover.mjs"
|
|
140
134
|
},
|
|
135
|
+
"./datetimepicker": {
|
|
136
|
+
"types": "./datetimepicker/index.d.ts",
|
|
137
|
+
"esm2022": "./esm2022/datetimepicker/mtxDatetimepicker.mjs",
|
|
138
|
+
"esm": "./esm2022/datetimepicker/mtxDatetimepicker.mjs",
|
|
139
|
+
"default": "./fesm2022/mtxDatetimepicker.mjs"
|
|
140
|
+
},
|
|
141
141
|
"./progress": {
|
|
142
142
|
"types": "./progress/index.d.ts",
|
|
143
143
|
"esm2022": "./esm2022/progress/mtxProgress.mjs",
|
|
@@ -161,6 +161,12 @@
|
|
|
161
161
|
"esm2022": "./esm2022/tooltip/mtxTooltip.mjs",
|
|
162
162
|
"esm": "./esm2022/tooltip/mtxTooltip.mjs",
|
|
163
163
|
"default": "./fesm2022/mtxTooltip.mjs"
|
|
164
|
+
},
|
|
165
|
+
"./photoviewer": {
|
|
166
|
+
"types": "./photoviewer/index.d.ts",
|
|
167
|
+
"esm2022": "./esm2022/photoviewer/mtxPhotoviewer.mjs",
|
|
168
|
+
"esm": "./esm2022/photoviewer/mtxPhotoviewer.mjs",
|
|
169
|
+
"default": "./fesm2022/mtxPhotoviewer.mjs"
|
|
164
170
|
}
|
|
165
171
|
},
|
|
166
172
|
"dependencies": {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./photoviewer";
|
|
3
|
+
export declare class MtxPhotoviewerModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPhotoviewerModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MtxPhotoviewerModule, [typeof i1.MtxPhotoviewer], never, [typeof i1.MtxPhotoviewer]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MtxPhotoviewerModule>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import PhotoViewer from 'photoviewer';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MtxPhotoviewer implements OnInit, OnDestroy {
|
|
5
|
+
private _elementRef;
|
|
6
|
+
images: PhotoViewer.Img[];
|
|
7
|
+
options?: PhotoViewer.Options;
|
|
8
|
+
embed: boolean;
|
|
9
|
+
photoviewerInstance?: PhotoViewer;
|
|
10
|
+
constructor(_elementRef: ElementRef<Element>);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
ngOnDestroy(): void;
|
|
13
|
+
onClick(event: MouseEvent): void;
|
|
14
|
+
initPhotoViewer(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPhotoviewer, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MtxPhotoviewer, "[mtxPhotoviewer]", ["mtxPhotoviewer"], { "images": { "alias": "mtxPhotoviewerItems"; "required": false; }; "options": { "alias": "mtxPhotoviewerOptions"; "required": false; }; "embed": { "alias": "mtxPhotoviewerEmbed"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
package/popover/popover.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
25
25
|
private _arrowHeight;
|
|
26
26
|
private _arrowOffsetX;
|
|
27
27
|
private _arrowOffsetY;
|
|
28
|
+
private _hideArrow;
|
|
28
29
|
private _closeOnPanelClick;
|
|
29
30
|
private _closeOnBackdropClick;
|
|
30
31
|
private _focusTrapEnabled;
|
|
@@ -89,6 +90,9 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
89
90
|
/** Popover-arrow's Y offset. */
|
|
90
91
|
get arrowOffsetY(): number;
|
|
91
92
|
set arrowOffsetY(value: number);
|
|
93
|
+
/** Whether the popover arrow should be hidden. */
|
|
94
|
+
get hideArrow(): boolean;
|
|
95
|
+
set hideArrow(value: boolean);
|
|
92
96
|
/** Whether popover can be closed when click the popover-panel. */
|
|
93
97
|
get closeOnPanelClick(): boolean;
|
|
94
98
|
set closeOnPanelClick(value: boolean);
|
|
@@ -165,6 +169,7 @@ export declare class MtxPopover implements MtxPopoverPanel, OnInit, OnDestroy {
|
|
|
165
169
|
static ngAcceptInputType_focusTrapEnabled: BooleanInput;
|
|
166
170
|
static ngAcceptInputType_focusTrapAutoCaptureEnabled: BooleanInput;
|
|
167
171
|
static ngAcceptInputType_hasBackdrop: BooleanInput;
|
|
172
|
+
static ngAcceptInputType_hideArrow: BooleanInput;
|
|
168
173
|
static ɵfac: i0.ɵɵFactoryDeclaration<MtxPopover, never>;
|
|
169
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MtxPopover, "mtx-popover", ["mtxPopover"], { "backdropClass": { "alias": "backdropClass"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "triggerEvent": { "alias": "triggerEvent"; "required": false; }; "enterDelay": { "alias": "enterDelay"; "required": false; }; "leaveDelay": { "alias": "leaveDelay"; "required": false; }; "position": { "alias": "position"; "required": false; }; "xOffset": { "alias": "xOffset"; "required": false; }; "yOffset": { "alias": "yOffset"; "required": false; }; "arrowWidth": { "alias": "arrowWidth"; "required": false; }; "arrowHeight": { "alias": "arrowHeight"; "required": false; }; "arrowOffsetX": { "alias": "arrowOffsetX"; "required": false; }; "arrowOffsetY": { "alias": "arrowOffsetY"; "required": false; }; "closeOnPanelClick": { "alias": "closeOnPanelClick"; "required": false; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; }; "focusTrapEnabled": { "alias": "focusTrapEnabled"; "required": false; }; "focusTrapAutoCaptureEnabled": { "alias": "focusTrapAutoCaptureEnabled"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "elevation": { "alias": "elevation"; "required": false; }; "panelClass": { "alias": "class"; "required": false; }; "classList": { "alias": "classList"; "required": false; }; }, { "closed": "closed"; }, ["lazyContent"], ["*"], false, never>;
|
|
174
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MtxPopover, "mtx-popover", ["mtxPopover"], { "backdropClass": { "alias": "backdropClass"; "required": false; }; "ariaLabel": { "alias": "aria-label"; "required": false; }; "ariaLabelledby": { "alias": "aria-labelledby"; "required": false; }; "ariaDescribedby": { "alias": "aria-describedby"; "required": false; }; "triggerEvent": { "alias": "triggerEvent"; "required": false; }; "enterDelay": { "alias": "enterDelay"; "required": false; }; "leaveDelay": { "alias": "leaveDelay"; "required": false; }; "position": { "alias": "position"; "required": false; }; "xOffset": { "alias": "xOffset"; "required": false; }; "yOffset": { "alias": "yOffset"; "required": false; }; "arrowWidth": { "alias": "arrowWidth"; "required": false; }; "arrowHeight": { "alias": "arrowHeight"; "required": false; }; "arrowOffsetX": { "alias": "arrowOffsetX"; "required": false; }; "arrowOffsetY": { "alias": "arrowOffsetY"; "required": false; }; "hideArrow": { "alias": "hideArrow"; "required": false; }; "closeOnPanelClick": { "alias": "closeOnPanelClick"; "required": false; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; }; "focusTrapEnabled": { "alias": "focusTrapEnabled"; "required": false; }; "focusTrapAutoCaptureEnabled": { "alias": "focusTrapAutoCaptureEnabled"; "required": false; }; "hasBackdrop": { "alias": "hasBackdrop"; "required": false; }; "elevation": { "alias": "elevation"; "required": false; }; "panelClass": { "alias": "class"; "required": false; }; "classList": { "alias": "classList"; "required": false; }; }, { "closed": "closed"; }, ["lazyContent"], ["*"], false, never>;
|
|
170
175
|
}
|
package/popover/popover.scss
CHANGED