@eturnity/eturnity_reusable_components 9.10.5 → 9.13.0

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": "@eturnity/eturnity_reusable_components",
3
- "version": "9.10.5",
3
+ "version": "9.13.0",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -432,11 +432,7 @@
432
432
  const SelectDropdown = styled('div', selectDropdownAttrs)`
433
433
  box-sizing: border-box;
434
434
  z-index: ${(props) =>
435
- props.isActive
436
- ? props.isParentModal
437
- ? '9999999'
438
- : '99999'
439
- : '9999999999'};
435
+ props.isActive ? '2' : props.isParentModal ? '9999999' : '99999'};
440
436
  position: ${(props) =>
441
437
  props.isFixedDropdownPosition ? 'fixed' : 'absolute'};
442
438
  top: ${(props) => (props.isTeleport ? '0px' : '4px')};
@@ -28,11 +28,15 @@
28
28
  font-style: normal;
29
29
  font-weight: 700;
30
30
  line-height: 120%;
31
- text-transform: uppercase;
31
+ &::first-letter {
32
+ text-transform: uppercase;
33
+ }
32
34
  `
33
35
  const ButtonContainer = styled.div`
34
36
  display: inline-flex;
35
- align-items: flex-start;
37
+ justify-content: flex-end;
38
+ align-items: center;
39
+ width: 100%;
36
40
  gap: 20px;
37
41
  `
38
42
  const TextContainer = styled.div`
@@ -70,7 +70,7 @@
70
70
  ? 'rgba(0, 0, 0, 0.4)'
71
71
  : 'rgba(255, 255, 255, 0.9)'
72
72
  : 'transparent'};
73
- z-index: 999;
73
+ z-index: 9999999;
74
74
  overflow: auto;
75
75
  padding-top: ${(props) => (props.addPaddingTop ? '80px' : '0')};
76
76