i-tech-shared-components 1.1.13 → 1.1.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i-tech-shared-components",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "^18.2.14",
6
6
  "@angular/material": "^18.2.14",
@@ -0,0 +1,90 @@
1
+ @use '@angular/material' as mat;
2
+ @import "./color_themes.scss";
3
+
4
+ body {
5
+
6
+ .ag-theme-material {
7
+ --ag-header-column-separator-display: block;
8
+ --ag-header-column-separator-height: 50%;
9
+ --ag-header-column-separator-color: rgba(0, 0, 0, 0.12);
10
+ --ag-secondary-foreground-color: var(--neutral30);
11
+
12
+ // Success theme
13
+ .ag-row.success-row {
14
+ background-color: #{mat.get-theme-color($m3-light-theme, primary, 99)} !important;
15
+ }
16
+ .ag-row.success-row:hover:before {
17
+ background-color: #{mat.get-theme-color($m3-light-theme, primary, 98)} !important;
18
+ }
19
+
20
+ // Change theme
21
+ .ag-cell-changed {
22
+ background-color: #{mat.get-theme-color($m3-light-theme, secondary, 99)} !important;
23
+ &.ag-cell-focus,
24
+ &:hover {
25
+ background-color: #{mat.get-theme-color($m3-light-theme, secondary, 98)} !important;
26
+ }
27
+ }
28
+
29
+ // Error theme
30
+ .ag-row.error-row {
31
+ background-color: #{mat.get-theme-color($m3-light-theme, error, 99)} !important;
32
+ }
33
+ .ag-row.error-row:hover:before {
34
+ background-color: #{mat.get-theme-color($m3-light-theme, error, 98)} !important;
35
+ }
36
+ }
37
+
38
+ .grid-with-toolbar {
39
+ $borderRadius: 6px;
40
+
41
+ .filtration {
42
+ padding: 8px;
43
+ border: 1px solid var(--neutral90);
44
+ border-bottom: unset;
45
+ border-top-left-radius: #{$borderRadius};
46
+ border-top-right-radius: #{$borderRadius};
47
+
48
+ .search {
49
+ width: 210px;
50
+ }
51
+
52
+ background-color: #fff
53
+ }
54
+
55
+ .ag-root-wrapper {
56
+ background-color: transparent !important;
57
+ border: unset !important;
58
+ border-radius: unset !important;
59
+ --ag-border-color: var(--neutral90) !important;
60
+
61
+ .ag-root-wrapper-body {
62
+ border-bottom-left-radius: #{$borderRadius} !important;
63
+ border-bottom-right-radius: #{$borderRadius} !important;
64
+ border: 1px solid var(--neutral90) !important;
65
+ background-color: var(--white-color) !important;
66
+ }
67
+
68
+ .ag-picker-field-wrapper {
69
+ border-radius: 4px !important;
70
+ height: 40px;
71
+ border: 1px solid var(--neutral90);
72
+ box-shadow: unset !important;
73
+ .ag-picker-field-display {
74
+ color: #424954;
75
+ font-weight: 500;
76
+ font-size: 13px;
77
+ }
78
+ }
79
+
80
+ .ag-header, .ag-advanced-filter-header {
81
+ --ag-header-background-color: #{mat.get-theme-color($m3-light-theme, neutral, 99)};
82
+ }
83
+ }
84
+
85
+ .ag-paging-panel {
86
+ border-top: unset !important;
87
+ }
88
+ }
89
+
90
+ }
@@ -20,7 +20,6 @@ body {
20
20
  --mdc-text-button-label-text-tracking: #{$letterSpacing} !important;
21
21
  // Unset Outline default border color
22
22
  --mdc-outlined-button-outline-color: 0 !important;
23
-
24
23
  .mdc-button:not(.mat-autocomplete-select-button) {
25
24
  height: 40px;
26
25
  }
@@ -34,6 +33,10 @@ body {
34
33
  display: flex;
35
34
  align-items: center;
36
35
  justify-content: center;
36
+ --mdc-circular-progress-active-indicator-color: var(--primary50) !important;
37
+ .mdc-circular-progress__indeterminate-circle-graphic {
38
+ stroke: var(--primary50) !important;
39
+ }
37
40
  }
38
41
 
39
42
  svg path {
@@ -46,14 +49,6 @@ body {
46
49
  }
47
50
  }
48
51
 
49
- .relative {
50
- position: relative;
51
- }
52
-
53
- .activated {
54
- background-color: mat.get-theme-color($m3-light-theme, primary, 95) !important;
55
- }
56
-
57
52
  // DEFINE TERTIARY BUTTON
58
53
  .mdc-button.tertiary {
59
54
  @include mat.button-color($m3-light-theme, $color-variant: tertiary);
@@ -33,6 +33,10 @@ body {
33
33
  letter-spacing: 0.022px;
34
34
  }
35
35
 
36
+ .mat-mdc-form-field-bottom-align::before {
37
+ content: unset !important;
38
+ }
39
+
36
40
  mat-label:not(.meu_item_label) {
37
41
  color: #{mat.get-theme-color($m3-light-theme, tertiary, 50)};
38
42
  position: relative;
@@ -245,4 +245,20 @@ body {
245
245
  line-height: 20px;
246
246
  letter-spacing: 0.2px;
247
247
  }
248
+
249
+ .filter_dropdown {
250
+ .search-input {
251
+ input {
252
+ &, &::placeholder {
253
+ font-size: 13px !important;
254
+ font-weight: 500 !important;
255
+ }
256
+ }
257
+ }
258
+ .custom-placeholder {
259
+ color: var(--neutral50) !important;
260
+ font-size: 13px !important;
261
+ font-weight: 500 !important;
262
+ }
263
+ }
248
264
  }