@tilde-nlp/ngx-common 2.0.11 → 2.0.13
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/esm2020/lib/confirmation-modal/confirmation-modal.component.mjs +3 -3
- package/esm2020/lib/multi-functional-table/models/column-config.model.mjs +1 -1
- package/esm2020/lib/multi-functional-table/multi-functional-table.component.mjs +3 -3
- package/fesm2015/tilde-nlp-ngx-common.mjs +4 -4
- package/fesm2015/tilde-nlp-ngx-common.mjs.map +1 -1
- package/fesm2020/tilde-nlp-ngx-common.mjs +4 -4
- package/fesm2020/tilde-nlp-ngx-common.mjs.map +1 -1
- package/lib/multi-functional-table/models/column-config.model.d.ts +2 -2
- package/lib/multi-functional-table/multi-functional-table.component.d.ts +1 -0
- package/package.json +1 -1
- package/styles/components/buttons.scss +1 -1
- package/styles/components/dialogs.scss +9 -0
- package/styles/mixins/material-overrides/mat-button-overrides.mixin.scss +9 -1
|
@@ -8,11 +8,11 @@ export interface ColumnConfig {
|
|
|
8
8
|
*/
|
|
9
9
|
displayName: string;
|
|
10
10
|
/**
|
|
11
|
-
* Default value to determine if column is
|
|
11
|
+
* Default value to determine if column is selected.
|
|
12
12
|
*/
|
|
13
13
|
selected: boolean;
|
|
14
14
|
/**
|
|
15
|
-
* If set to true, columns visibility can't be toggled
|
|
15
|
+
* If set to true, columns visibility can't be toggled.
|
|
16
16
|
*/
|
|
17
17
|
notConfigurable?: boolean;
|
|
18
18
|
}
|
|
@@ -41,6 +41,7 @@ export declare class MultiFunctionalTableComponent<T> implements OnInit, AfterCo
|
|
|
41
41
|
noDataRowIcon: string;
|
|
42
42
|
configurableColumns: ColumnConfig[];
|
|
43
43
|
batchSelectedEnabled: boolean;
|
|
44
|
+
hoveredRow: any;
|
|
44
45
|
private localStorageValue;
|
|
45
46
|
readonly batchColumnName = "batch";
|
|
46
47
|
constructor(domService: DOMService, translateService: TranslateService);
|
package/package.json
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
|
+
@use "../variables/font-size.variables.scss" as fs;
|
|
2
|
+
|
|
1
3
|
.mat-dialog-container {
|
|
2
4
|
min-width: 22rem;
|
|
3
5
|
width: 40rem !important;
|
|
6
|
+
|
|
7
|
+
h1[mat-dialog-title].mat-dialog-title,
|
|
8
|
+
[mat-dialog-title].mat-dialog-title h1 {
|
|
9
|
+
font-size: fs.$font-size-2-xl !important;
|
|
10
|
+
font-weight: 600 !important;
|
|
11
|
+
margin-bottom: 0 !important;
|
|
12
|
+
}
|
|
4
13
|
}
|
|
5
14
|
|
|
6
15
|
[mat-dialog-actions] {
|
|
@@ -4,9 +4,17 @@
|
|
|
4
4
|
@each $key,
|
|
5
5
|
$value in $color-map {
|
|
6
6
|
|
|
7
|
-
.mat-button.mat-#{$key}
|
|
7
|
+
.mat-button.mat-#{$key} {
|
|
8
|
+
color: var(--#{$key}) !important;
|
|
9
|
+
|
|
10
|
+
&:hover {
|
|
11
|
+
color: var(--#{$key}) !important;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
8
15
|
.mat-stroked-button.mat-#{$key} {
|
|
9
16
|
color: var(--#{$key}) !important;
|
|
17
|
+
border-color: var(--#{$key}) !important;
|
|
10
18
|
|
|
11
19
|
&:hover {
|
|
12
20
|
color: var(--#{$key}) !important;
|