carriera-intern-components 1.1.30 → 1.1.32

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 (26) hide show
  1. package/app/components/avatar/avatar.component.d.ts +1 -1
  2. package/app/components/input-address/stories/address.stories.d.ts +11 -0
  3. package/app/components/rating_review/enums/filter-type.enum.d.ts +7 -0
  4. package/app/components/rating_review/rating-review/rating-review/rating-review.component.d.ts +4 -5
  5. package/app/components/rating_review/review-modal/review-modal.component.d.ts +9 -8
  6. package/app/components/tab-option-dropdown/interfaces/index.d.ts +2 -0
  7. package/app/components/tab-option-dropdown/interfaces/tab-option-config.interface.d.ts +4 -0
  8. package/app/components/tab-option-dropdown/interfaces/tab-option.interface.d.ts +4 -0
  9. package/app/components/tab-option-dropdown/pipes/index.d.ts +1 -0
  10. package/app/components/tab-option-dropdown/pipes/tab-search-filter.pipe.d.ts +8 -0
  11. package/app/components/tab-option-dropdown/tab-option-dropdown.component.d.ts +26 -0
  12. package/app/components/toolbar-dropdown/interfaces/index.d.ts +1 -0
  13. package/app/components/toolbar-dropdown/interfaces/interval-dropdown-option.interface.d.ts +8 -0
  14. package/app/components/toolbar-dropdown/interval-dropdown.component.d.ts +31 -0
  15. package/app/components/toolbar-dropdown/pipes/dropdown-filter-input-config.pipe.d.ts +10 -0
  16. package/app/components/toolbar-dropdown/utils/helpers/interval-dropdown.helper.d.ts +26 -0
  17. package/app/utils/constants/input-character-sets.constants.d.ts +5 -5
  18. package/fesm2022/carriera-intern-components.mjs +501 -39
  19. package/fesm2022/carriera-intern-components.mjs.map +1 -1
  20. package/package.json +1 -1
  21. package/public-api.d.ts +4 -0
  22. package/src/styles/_variables.scss +1 -0
  23. package/src/styles/popover.scss +1 -0
  24. package/src/styles/review_variables.scss +1 -0
  25. package/src/styles/tooltip.scss +6 -0
  26. package/src/styles.scss +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "carriera-intern-components",
3
- "version": "1.1.30",
3
+ "version": "1.1.32",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"
package/public-api.d.ts CHANGED
@@ -13,3 +13,7 @@ export * from './app/components/input-datetime-picker/interfaces';
13
13
  export * from './app/components/rating_review/review-modal/review-modal.component';
14
14
  export * from './app/components/rating_review/rating-review/rating-review/rating-review.component';
15
15
  export * from './app/components/list-contact-dropdown/list-contact-dropdown.component';
16
+ export * from './app/components/tab-option-dropdown/tab-option-dropdown.component';
17
+ export * from './app/components/tab-option-dropdown/interfaces';
18
+ export * from './app/components/toolbar-dropdown/interval-dropdown.component';
19
+ export * from './app/components/toolbar-dropdown/interfaces';
@@ -72,6 +72,7 @@ $color-white-700: #cccccc;
72
72
  // Black color palette
73
73
  $color-black-50: #aaaaaa;
74
74
  $color-black-100: #919191;
75
+ $color-black-100-20: #91919133;
75
76
  $color-black-200: #6c6c6c;
76
77
  $color-black-300: #424242;
77
78
  $color-black-500: #2f2f2f;
@@ -23,6 +23,7 @@
23
23
  margin: 0 !important;
24
24
  padding: 0 !important;
25
25
  box-shadow: none !important;
26
+ background-color: transparent !important;
26
27
 
27
28
  .popover-arrow {
28
29
  display: none !important;
@@ -9,6 +9,7 @@ $color-divider: #DADADA;
9
9
 
10
10
  $color-like-active-hover: #b6dfdb;
11
11
  $color-dislike-active-hover: #e87c7c;
12
+ $color-like-active-hover-dark: #007A6E;
12
13
 
13
14
  $color-light-blue: #92B1F5;
14
15
  $color-blue: #3B73ED;
@@ -36,6 +36,12 @@
36
36
  display: none !important;
37
37
  }
38
38
  }
39
+ &.tooltip-inverse{
40
+ .tooltip-inner{
41
+ background-color: #cccccc !important;
42
+ color: #2f2f2f !important;
43
+ }
44
+ }
39
45
  }
40
46
 
41
47
  .tooltip.show {
package/src/styles.scss CHANGED
@@ -26,3 +26,8 @@ body {
26
26
  BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
27
27
  "Apple Color Emoji", "Segoe UI Emoji";
28
28
  }
29
+
30
+ .cai-highlight {
31
+ background-color: #3b73ed33 !important;
32
+ color: #92b1f5 !important;
33
+ }