ca-components 2.0.58 → 2.0.60

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 (27) hide show
  1. package/assets/scss/background.scss +11 -0
  2. package/assets/scss/sizing.scss +3 -0
  3. package/assets/scss/spacing.scss +2 -2
  4. package/assets/scss/text-size.scss +4 -0
  5. package/fesm2022/ca-components.mjs +476 -252
  6. package/fesm2022/ca-components.mjs.map +1 -1
  7. package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
  8. package/lib/components/ca-fuel-prices-range/utils/constants/fuel-prices-range.constants.d.ts +1 -0
  9. package/lib/components/ca-load-status/enums/load-status-background-colors.enum.d.ts +2 -1
  10. package/lib/components/ca-load-status/enums/load-status-icon-colors.enum.d.ts +2 -1
  11. package/lib/components/ca-load-status/enums/load-status-svg-colors.enum.d.ts +2 -1
  12. package/lib/components/ca-map/ca-map.component.d.ts +5 -3
  13. package/lib/components/ca-map/utils/helpers/map-marker-icon.helper.d.ts +1 -1
  14. package/lib/components/ca-map/utils/helpers/map.helper.d.ts +5 -0
  15. package/lib/components/ca-map/utils/services/map-marker-icon.service.d.ts +1 -1
  16. package/lib/components/ca-toolbar-dropdown/interfaces/dropdown-item.interface.d.ts +1 -0
  17. package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.d.ts +29 -0
  18. package/lib/components/ca-toolbar-tab-switch/enums/index.d.ts +1 -0
  19. package/lib/components/ca-toolbar-tab-switch/enums/toolbar-variant.enum.d.ts +4 -0
  20. package/lib/components/ca-toolbar-tab-switch/interfaces/index.d.ts +1 -0
  21. package/lib/components/ca-toolbar-tab-switch/interfaces/toolbar-tabs.interface.d.ts +6 -0
  22. package/lib/components/ca-toolbar-tab-switch/pipes/toolbar-tabs-class-pipe.d.ts +14 -0
  23. package/lib/components/ca-toolbar-tab-switch/types/index.d.ts +1 -0
  24. package/lib/components/ca-toolbar-tab-switch/types/toolbar-variant.type.d.ts +2 -0
  25. package/lib/utils/svg-routes/shared-svg.routes.d.ts +2 -0
  26. package/package.json +1 -1
  27. package/public-api.d.ts +1 -0
@@ -21,6 +21,14 @@
21
21
  }
22
22
  }
23
23
 
24
+ &-muted {
25
+ background: $muted;
26
+
27
+ &-o20 {
28
+ background: rgb($muted, 0.2);
29
+ }
30
+ }
31
+
24
32
  &-black {
25
33
  background-color: $ta-black;
26
34
 
@@ -165,6 +173,9 @@
165
173
  }
166
174
 
167
175
  &-yellow {
176
+ &-5 {
177
+ background-color: $ta-yellow-5;
178
+ }
168
179
  &-8 {
169
180
  background-color: $ta-yellow-8;
170
181
  }
@@ -143,6 +143,9 @@ $sizes-width: (
143
143
  &-90p {
144
144
  width: 90%;
145
145
  }
146
+ &-100p {
147
+ width: 100%;
148
+ }
146
149
  }
147
150
 
148
151
  .ca-full-width {
@@ -1,5 +1,5 @@
1
- $padding-sizes: 1, 2, 4, 6, 8, 9, 10, 12, 14, 15, 18, 30;
2
- $padding-x-sizes: 2, 4, 5, 6, 8, 10, 12;
1
+ $padding-sizes: 1, 2, 3, 4, 6, 8, 9, 10, 12, 14, 15, 18, 30;
2
+ $padding-x-sizes: 2, 3, 4, 5, 6, 8, 10, 12;
3
3
  $margin-sizes:
4
4
  -4,
5
5
  -2,
@@ -41,6 +41,10 @@
41
41
 
42
42
  .font {
43
43
  &-size {
44
+ &-8 {
45
+ font-size: 8px !important;
46
+ }
47
+
44
48
  &-11 {
45
49
  font-size: 11px !important;
46
50
  }