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.
- package/assets/scss/background.scss +11 -0
- package/assets/scss/sizing.scss +3 -0
- package/assets/scss/spacing.scss +2 -2
- package/assets/scss/text-size.scss +4 -0
- package/fesm2022/ca-components.mjs +476 -252
- package/fesm2022/ca-components.mjs.map +1 -1
- package/lib/components/ca-filters/ca-filter.component.d.ts +2 -2
- package/lib/components/ca-fuel-prices-range/utils/constants/fuel-prices-range.constants.d.ts +1 -0
- package/lib/components/ca-load-status/enums/load-status-background-colors.enum.d.ts +2 -1
- package/lib/components/ca-load-status/enums/load-status-icon-colors.enum.d.ts +2 -1
- package/lib/components/ca-load-status/enums/load-status-svg-colors.enum.d.ts +2 -1
- package/lib/components/ca-map/ca-map.component.d.ts +5 -3
- package/lib/components/ca-map/utils/helpers/map-marker-icon.helper.d.ts +1 -1
- package/lib/components/ca-map/utils/helpers/map.helper.d.ts +5 -0
- package/lib/components/ca-map/utils/services/map-marker-icon.service.d.ts +1 -1
- package/lib/components/ca-toolbar-dropdown/interfaces/dropdown-item.interface.d.ts +1 -0
- package/lib/components/ca-toolbar-tab-switch/ca-toolbar-tab-switch.component.d.ts +29 -0
- package/lib/components/ca-toolbar-tab-switch/enums/index.d.ts +1 -0
- package/lib/components/ca-toolbar-tab-switch/enums/toolbar-variant.enum.d.ts +4 -0
- package/lib/components/ca-toolbar-tab-switch/interfaces/index.d.ts +1 -0
- package/lib/components/ca-toolbar-tab-switch/interfaces/toolbar-tabs.interface.d.ts +6 -0
- package/lib/components/ca-toolbar-tab-switch/pipes/toolbar-tabs-class-pipe.d.ts +14 -0
- package/lib/components/ca-toolbar-tab-switch/types/index.d.ts +1 -0
- package/lib/components/ca-toolbar-tab-switch/types/toolbar-variant.type.d.ts +2 -0
- package/lib/utils/svg-routes/shared-svg.routes.d.ts +2 -0
- package/package.json +1 -1
- 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
|
}
|
package/assets/scss/sizing.scss
CHANGED
package/assets/scss/spacing.scss
CHANGED