carriera-intern-components 1.1.24 → 1.1.25

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": "carriera-intern-components",
3
- "version": "1.1.24",
3
+ "version": "1.1.25",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"
@@ -0,0 +1,4 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.13115 7.6989C3.93712 7.69856 3.74715 7.64071 3.58589 7.53336C3.42482 7.42603 3.29917 7.27381 3.22489 7.09565C3.15055 6.91735 3.13095 6.72106 3.16848 6.53167C3.20602 6.34238 3.29875 6.16814 3.43547 6.0313L8.30333 1.18842C8.39417 1.097 8.50282 1.02475 8.62202 0.975172C8.74137 0.925591 8.86967 0.899414 8.99901 0.899414C9.12833 0.899418 9.25665 0.925595 9.37599 0.975172C9.49517 1.02475 9.60386 1.09701 9.69468 1.18842L14.5644 6.0313C14.7014 6.16837 14.794 6.34295 14.8314 6.53261C14.8688 6.7224 14.8489 6.91904 14.7741 7.09752C14.6992 7.27595 14.573 7.42822 14.4112 7.53523C14.2493 7.64221 14.0593 7.69935 13.865 7.69891L4.13115 7.6989ZM13.8781 6.73744C13.8814 6.7353 13.8841 6.73257 13.8857 6.72902C13.8872 6.72533 13.8883 6.72078 13.8875 6.71686C13.8868 6.71313 13.8845 6.70933 13.8819 6.70657L9.00935 1.86182C9.00935 1.86182 9.00643 1.85882 9.00465 1.85808L8.99901 1.85714L8.99336 1.85808L8.98866 1.86182L4.11799 6.70657C4.11543 6.70928 4.11406 6.71322 4.11329 6.71686C4.11251 6.72077 4.11269 6.72533 4.11423 6.72902C4.11578 6.73256 4.11852 6.73528 4.12175 6.73744C4.12503 6.73962 4.12911 6.74113 4.13303 6.74118L13.8669 6.74118C13.8709 6.74119 13.8748 6.73962 13.8781 6.73744Z" fill="#6692F1"/>
3
+ <path d="M9.00088 17.0994C8.8718 17.0994 8.74397 17.074 8.62484 17.0246C8.50552 16.975 8.39706 16.9019 8.30615 16.8104L3.44017 11.9694C3.30345 11.8325 3.21071 11.6583 3.17318 11.469C3.13574 11.2798 3.15537 11.0841 3.22959 10.906C3.30393 10.7277 3.42933 10.5747 3.59059 10.4673C3.7517 10.3601 3.94109 10.3032 4.13491 10.3027L13.8687 10.3027C14.0628 10.3031 14.2527 10.36 14.414 10.4673C14.5752 10.5747 14.7007 10.7277 14.775 10.906C14.8492 11.0841 14.8688 11.2799 14.8314 11.469C14.7939 11.6583 14.7011 11.8326 14.5644 11.9694L9.69656 16.8104C9.60563 16.9019 9.49721 16.975 9.37786 17.0246C9.25854 17.0742 9.13018 17.0994 9.00088 17.0994Z" fill="#6692F1"/>
4
+ </svg>
@@ -288,6 +288,10 @@
288
288
  "iconName": "cai-sort-by",
289
289
  "iconPath": "/assets/icons/general/cai-sort-by.svg"
290
290
  },
291
+ {
292
+ "iconName": "cai-sort-descending",
293
+ "iconPath": "/assets/icons/general/cai-sort-descending.svg"
294
+ },
291
295
  {
292
296
  "iconName": "cai-search",
293
297
  "iconPath": "/assets/icons/cai-search.svg"
package/public-api.d.ts CHANGED
@@ -10,3 +10,4 @@ export * from './app/components/copy/copy.component';
10
10
  export * from './app/components/input-address/input-address.component';
11
11
  export * from './app/components/selected-location-field/selected-business-field.component';
12
12
  export * from './app/components/input-datetime-picker/interfaces';
13
+ export * from './app/components/rating_review/review-modal/review-modal.component';
@@ -11,6 +11,9 @@
11
11
  &.tooltip-m-t-4 {
12
12
  margin-top: 4px !important;
13
13
  }
14
+ &.tooltip-m-b-2{
15
+ margin-bottom: 2px !important;
16
+ }
14
17
  .tooltip-arrow {
15
18
  display: none !important;
16
19
  }
@@ -53,6 +56,15 @@
53
56
 
54
57
  @each $color-name, $shades in $color-palettes {
55
58
  .tooltip:not(.app-ca-main-tooltip):not(.app-main-tooltip) {
59
+ &.tooltip-text-#{$color-name} {
60
+ @each $shade, $color-value in $shades {
61
+ &-#{$shade} {
62
+ .tooltip-inner {
63
+ color: $color-value !important;
64
+ }
65
+ }
66
+ }
67
+ }
56
68
  &.tooltip-bg-#{$color-name} {
57
69
  @each $shade, $color-value in $shades {
58
70
  &-#{$shade} {