new-front-common-library 16.1.3-REF-1 → 16.1.4-REF-1

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.
@@ -0,0 +1,55 @@
1
+ @use '@angular/material' as mat;
2
+
3
+ @include mat.core();
4
+
5
+ //Fonts
6
+ @import url('https://fonts.googleapis.com/css?family=Poppins');
7
+ @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
8
+ @import url('https://fonts.googleapis.com/css?family=Roboto');
9
+
10
+ //Imports
11
+ @import "mat-palettes";
12
+
13
+ // Define a light theme
14
+ $mat-theme-ignore-duplication-warnings: true;
15
+ $light-primary: mat.m2-define-palette($light-unity-palette);
16
+ $light-accent: mat.m2-define-palette($light-unity-palette);
17
+ $light-typography: mat.m2-define-typography-config(
18
+ $font-family: '"Roboto","Source Sans Pro",Poppins',
19
+ $button: mat.m2-define-typography-level(14px, 14px, 500, $letter-spacing: 0.25px)
20
+ );
21
+ $light-theme: mat.m2-define-light-theme((
22
+ color: (
23
+ primary: $light-primary,
24
+ accent: $light-accent,
25
+ ),
26
+ typography: $light-typography
27
+ ));
28
+
29
+ // Define a dark theme
30
+ $dark-primary: mat.m2-define-palette($dark-unity-palette);
31
+ $dark-accent: mat.m2-define-palette($dark-unity-palette);
32
+ $dark-theme: mat.m2-define-dark-theme((
33
+ color: (
34
+ primary: $dark-primary,
35
+ accent: $dark-accent
36
+ ),
37
+ ));
38
+
39
+ .dark-theme {
40
+ @include mat.all-component-themes($dark-theme);
41
+ }
42
+
43
+ .light-theme {
44
+ @include mat.all-component-themes($light-theme);
45
+ }
46
+
47
+ @include mat.all-component-themes($light-theme);
48
+
49
+ .the-dense-zone {
50
+ @include mat.form-field-density(-2);
51
+ }
52
+
53
+ @import "material/mdc";
54
+ @import "global";
55
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "new-front-common-library",
3
- "version": "16.1.3-REF-1",
3
+ "version": "16.1.4-REF-1",
4
4
  "Dependencies": {
5
5
  "@angular/common": "^16.2.12",
6
6
  "@angular/core": "^16.2.12",