@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.
@@ -8,11 +8,11 @@ export interface ColumnConfig {
8
8
  */
9
9
  displayName: string;
10
10
  /**
11
- * Default value to determine if column is selecetd.
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,6 @@
1
1
  {
2
2
  "name": "@tilde-nlp/ngx-common",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0",
6
6
  "@angular/core": "^14.0.0",
@@ -12,7 +12,7 @@
12
12
  /// ----------------------------------------
13
13
 
14
14
 
15
-
15
+ [mat-menu-item].align-v-middle *,
16
16
  button.align-v-middle * {
17
17
  vertical-align: middle;
18
18
  }
@@ -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;