@telus-uds/components-base 1.59.1 → 1.59.2

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/CHANGELOG.md CHANGED
@@ -1,12 +1,20 @@
1
1
  # Change Log - @telus-uds/components-base
2
2
 
3
- This log was last generated on Mon, 21 Aug 2023 19:02:53 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 31 Aug 2023 17:58:49 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.59.2
8
+
9
+ Thu, 31 Aug 2023 17:58:49 GMT
10
+
11
+ ### Patches
12
+
13
+ - autocomplete options overlap fix on XS (srikanthkhari@gmail.com)
14
+
7
15
  ## 1.59.1
8
16
 
9
- Mon, 21 Aug 2023 19:02:53 GMT
17
+ Mon, 21 Aug 2023 19:06:28 GMT
10
18
 
11
19
  ### Patches
12
20
 
@@ -50,8 +50,7 @@ const getItemStyles = _ref => {
50
50
  itemBorderTopColor,
51
51
  itemBorderBottomWidth,
52
52
  itemBorderBottomColor,
53
- itemBorderRadius,
54
- itemHeight
53
+ itemBorderRadius
55
54
  } = _ref;
56
55
  return {
57
56
  fontFamily: `${groupFontName}${groupFontWeight}normal`,
@@ -71,7 +70,6 @@ const getItemStyles = _ref => {
71
70
  borderTop: `${itemBorderTopWidth}px solid ${itemBorderTopColor}`,
72
71
  borderBottom: `${itemBorderBottomWidth}px solid ${itemBorderBottomColor}`,
73
72
  borderRadius: itemBorderRadius,
74
- height: itemHeight,
75
73
  justifyContent: 'center'
76
74
  };
77
75
  };
@@ -31,8 +31,7 @@ const getItemStyles = _ref => {
31
31
  itemBorderTopColor,
32
32
  itemBorderBottomWidth,
33
33
  itemBorderBottomColor,
34
- itemBorderRadius,
35
- itemHeight
34
+ itemBorderRadius
36
35
  } = _ref;
37
36
  return {
38
37
  fontFamily: `${groupFontName}${groupFontWeight}normal`,
@@ -52,7 +51,6 @@ const getItemStyles = _ref => {
52
51
  borderTop: `${itemBorderTopWidth}px solid ${itemBorderTopColor}`,
53
52
  borderBottom: `${itemBorderBottomWidth}px solid ${itemBorderBottomColor}`,
54
53
  borderRadius: itemBorderRadius,
55
- height: itemHeight,
56
54
  justifyContent: 'center'
57
55
  };
58
56
  };
package/package.json CHANGED
@@ -72,5 +72,5 @@
72
72
  "standard-engine": {
73
73
  "skip": true
74
74
  },
75
- "version": "1.59.1"
75
+ "version": "1.59.2"
76
76
  }
@@ -28,8 +28,7 @@ const getItemStyles = ({
28
28
  itemBorderTopColor,
29
29
  itemBorderBottomWidth,
30
30
  itemBorderBottomColor,
31
- itemBorderRadius,
32
- itemHeight
31
+ itemBorderRadius
33
32
  }) => ({
34
33
  fontFamily: `${groupFontName}${groupFontWeight}normal`,
35
34
  fontSize: itemFontSize,
@@ -48,7 +47,6 @@ const getItemStyles = ({
48
47
  borderTop: `${itemBorderTopWidth}px solid ${itemBorderTopColor}`,
49
48
  borderBottom: `${itemBorderBottomWidth}px solid ${itemBorderBottomColor}`,
50
49
  borderRadius: itemBorderRadius,
51
- height: itemHeight,
52
50
  justifyContent: 'center'
53
51
  })
54
52