ca-components 1.9.3 → 1.9.5

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.
Files changed (25) hide show
  1. package/assets/scss/background.scss +6 -0
  2. package/assets/scss/icons.scss +6 -0
  3. package/assets/scss/popover.scss +6 -0
  4. package/assets/scss/sizing.scss +4 -0
  5. package/assets/scss/spacing.scss +5 -2
  6. package/fesm2022/ca-components.mjs +424 -189
  7. package/fesm2022/ca-components.mjs.map +1 -1
  8. package/lib/components/ca-checkbox/ca-checkbox.component.d.ts +7 -6
  9. package/lib/components/ca-factoring-dropdown/ca-factoring-dropdown.component.d.ts +42 -0
  10. package/lib/components/ca-factoring-dropdown/enums/factoring-form-control.enum.d.ts +6 -0
  11. package/lib/components/ca-factoring-dropdown/enums/factoring-pdf-format.enum.d.ts +4 -0
  12. package/lib/components/ca-factoring-dropdown/enums/factoring-pdf-organize.enum.d.ts +4 -0
  13. package/lib/components/ca-factoring-dropdown/enums/index.d.ts +3 -0
  14. package/lib/components/ca-factoring-dropdown/interfaces/factoring-checkbox-item.interface.d.ts +5 -0
  15. package/lib/components/ca-factoring-dropdown/interfaces/factoring-export-item.interface.d.ts +12 -0
  16. package/lib/components/ca-factoring-dropdown/interfaces/index.d.ts +2 -0
  17. package/lib/components/ca-factoring-dropdown/utils/constants/factoring-dropdown.constants.d.ts +6 -0
  18. package/lib/components/ca-factoring-dropdown/utils/constants/index.d.ts +1 -0
  19. package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
  20. package/lib/components/ca-spinner/ca-spinner.component.d.ts +1 -1
  21. package/lib/enums/position.enum.d.ts +2 -1
  22. package/lib/enums/shared-string.enum.d.ts +2 -1
  23. package/lib/utils/svg-routes/shared-svg.routes.d.ts +1 -0
  24. package/package.json +1 -1
  25. package/public-api.d.ts +2 -0
@@ -66,6 +66,9 @@
66
66
  &-14 {
67
67
  background-color: $ta-blue-14;
68
68
  }
69
+ &-15 {
70
+ background-color: $ta-blue-15;
71
+ }
69
72
  &-18 {
70
73
  background-color: $ta-blue-18;
71
74
  }
@@ -208,6 +211,9 @@
208
211
  &-2 {
209
212
  @include hover($dark-2);
210
213
  }
214
+ &-3 {
215
+ @include hover($dark-3);
216
+ }
211
217
  }
212
218
 
213
219
  &-bw2 {
@@ -56,6 +56,9 @@
56
56
  &-grey {
57
57
  @include svg-fill($bw5);
58
58
  }
59
+ &-grey-2 {
60
+ @include svg-fill($grey-2);
61
+ }
59
62
  &-bw6-2 {
60
63
  @include svg-fill($bw6-2);
61
64
  }
@@ -71,6 +74,9 @@
71
74
  &-blue-8 {
72
75
  @include svg-fill($blue-8);
73
76
  }
77
+ &-blue-9 {
78
+ @include svg-fill($blue-9);
79
+ }
74
80
  &-blue-13 {
75
81
  @include svg-fill($ta-blue-13);
76
82
  }
@@ -199,3 +199,9 @@ ngb-popover-window {
199
199
  .fleet-filter-sort-popover.bs-popover-end-top {
200
200
  transform: translate(158px, -3px) !important;
201
201
  }
202
+
203
+ .factoring-dropdown-popover {
204
+ &.bs-popover-bottom-end .factoring-dropdown-container {
205
+ transform: translate(4px, -4px) !important;
206
+ }
207
+ }
@@ -31,6 +31,7 @@ $sizes-width: (
31
31
  8,
32
32
  10,
33
33
  12,
34
+ 14,
34
35
  15,
35
36
  16,
36
37
  18,
@@ -102,6 +103,9 @@ $sizes-width: (
102
103
  @include size-classes('w', width, $sizes-width);
103
104
 
104
105
  .min-w {
106
+ &-16 {
107
+ min-width: 16px;
108
+ }
105
109
  &-18 {
106
110
  min-width: 18px;
107
111
  }
@@ -1,5 +1,5 @@
1
- $padding-sizes: 2, 4, 6, 10, 15;
2
- $padding-x-sizes: 4, 5, 6, 8, 10;
1
+ $padding-sizes: 1, 2, 4, 6, 10, 14, 15, 18;
2
+ $padding-x-sizes: 2, 4, 5, 6, 8, 10;
3
3
  $margin-sizes:
4
4
  -4,
5
5
  -2,
@@ -35,6 +35,9 @@ $sizes: 1, 2, 4, 10, 14, 15, 18, 22, 26, 31, 32, 36, 116, 120;
35
35
  &-t-#{$size} {
36
36
  padding-top: #{$size}px;
37
37
  }
38
+ &-b-#{$size} {
39
+ padding-bottom: #{$size}px;
40
+ }
38
41
  }
39
42
 
40
43
  &-y {