ecabs-components 1.0.88 → 1.0.89

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.
@@ -1,5 +1,5 @@
1
1
  import { AfterContentChecked, TemplateRef } from '@angular/core';
2
- import { MatLegacyTable as MatTable } from '@angular/material/legacy-table';
2
+ import { MatTable } from '@angular/material/table';
3
3
  import { PlaceholderRedirectPath } from '../ecabs-empty-placeholder/ecabs-empty-placeholder.component';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class TableComponent implements AfterContentChecked {
@@ -1,12 +1,12 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./ecabs-table.component";
3
3
  import * as i2 from "@angular/common";
4
- import * as i3 from "@angular/material/legacy-progress-bar";
4
+ import * as i3 from "@angular/material/progress-bar";
5
5
  import * as i4 from "@angular/router";
6
6
  import * as i5 from "../ecabs-empty-placeholder/ecabs-empty-placeholder.module";
7
- import * as i6 from "@angular/material/legacy-table";
7
+ import * as i6 from "@angular/material/table";
8
8
  export declare class EcabsTableModule {
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<EcabsTableModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<EcabsTableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.MatLegacyProgressBarModule, typeof i4.RouterModule, typeof i5.EcabsEmptyPlaceholderModule], [typeof i1.TableComponent, typeof i6.MatLegacyTableModule, typeof i5.EcabsEmptyPlaceholderModule]>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<EcabsTableModule, [typeof i1.TableComponent], [typeof i2.CommonModule, typeof i3.MatProgressBarModule, typeof i4.RouterModule, typeof i5.EcabsEmptyPlaceholderModule], [typeof i1.TableComponent, typeof i6.MatTableModule, typeof i5.EcabsEmptyPlaceholderModule]>;
11
11
  static ɵinj: i0.ɵɵInjectorDeclaration<EcabsTableModule>;
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecabs-components",
3
- "version": "1.0.88",
3
+ "version": "1.0.89",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "^16.2.12",
6
6
  "@angular/common": "^16.2.12",
@@ -98,15 +98,3 @@ $cuorium-theme: mat.define-light-theme((
98
98
  // that you are using.
99
99
  @include mat.all-component-themes($cuorium-theme);
100
100
  @include mat.all-legacy-component-themes($cuorium-theme);
101
-
102
- .mat-body p,
103
- .mat-body-1 p,
104
- .mat-typography p {
105
- margin: inherit;
106
- }
107
-
108
- mat-progress-bar {
109
- .mat-progress-bar-buffer {
110
- background-color: var(--color-brand-300) !important;
111
- }
112
- }
@@ -0,0 +1,7 @@
1
+ @import "../../scss/utilities/index";
2
+
3
+ mat-progress-bar {
4
+ &.mat-mdc-progress-bar .mdc-linear-progress__buffer-bar {
5
+ background-color: var(--color-brand-300);
6
+ }
7
+ }
@@ -19,3 +19,4 @@
19
19
  @import 'toolbar';
20
20
  @import 'tooltip';
21
21
  @import "sidebar";
22
+ @import "progress";
@@ -76,3 +76,9 @@ h4 {
76
76
  h5 {
77
77
  @include fontSize($font-heading-xs);
78
78
  }
79
+
80
+ .mat-body p,
81
+ .mat-body-1 p,
82
+ .mat-typography p {
83
+ margin: inherit;
84
+ }