@telus-uds/components-base 1.85.0 → 1.85.1

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 Fri, 17 May 2024 16:25:37 GMT and should not be manually modified.
3
+ This log was last generated on Thu, 23 May 2024 16:27:45 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 1.85.1
8
+
9
+ Thu, 23 May 2024 16:27:45 GMT
10
+
11
+ ### Patches
12
+
13
+ - `Footnote`: fix inline render (guillermo.peitzner@telus.com)
14
+
7
15
  ## 1.85.0
8
16
 
9
- Fri, 17 May 2024 16:25:37 GMT
17
+ Fri, 17 May 2024 16:34:46 GMT
10
18
 
11
19
  ### Minor changes
12
20
 
@@ -61,6 +61,7 @@ const FootnoteLink = /*#__PURE__*/_react.default.forwardRef((_ref2, ref) => {
61
61
  });
62
62
  return /*#__PURE__*/(0, _jsxRuntime.jsx)(_View.default, {
63
63
  ref: ref,
64
+ style: staticStyles.container,
64
65
  children: numbers.map((num, index) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_View.default, {
65
66
  accessibilityLabel: getCopy('a11yLabel'),
66
67
  ref: refs[index],
@@ -107,5 +108,8 @@ const staticStyles = _StyleSheet.default.create({
107
108
  text: {
108
109
  position: 'relative',
109
110
  textDecorationLine: 'underline'
111
+ },
112
+ container: {
113
+ flexDirection: 'row'
110
114
  }
111
115
  });
@@ -54,6 +54,7 @@ const FootnoteLink = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
54
54
  });
55
55
  return /*#__PURE__*/_jsx(View, {
56
56
  ref: ref,
57
+ style: staticStyles.container,
57
58
  children: numbers.map((num, index) => /*#__PURE__*/_jsx(View, {
58
59
  accessibilityLabel: getCopy('a11yLabel'),
59
60
  ref: refs[index],
@@ -99,5 +100,8 @@ const staticStyles = StyleSheet.create({
99
100
  text: {
100
101
  position: 'relative',
101
102
  textDecorationLine: 'underline'
103
+ },
104
+ container: {
105
+ flexDirection: 'row'
102
106
  }
103
107
  });
package/package.json CHANGED
@@ -85,6 +85,6 @@
85
85
  "standard-engine": {
86
86
  "skip": true
87
87
  },
88
- "version": "1.85.0",
88
+ "version": "1.85.1",
89
89
  "types": "types/index.d.ts"
90
90
  }
@@ -45,7 +45,7 @@ const FootnoteLink = React.forwardRef(
45
45
  const getCopy = useCopy({ dictionary, copy })
46
46
 
47
47
  return (
48
- <View ref={ref}>
48
+ <View ref={ref} style={staticStyles.container}>
49
49
  {numbers.map((num, index) => (
50
50
  <View
51
51
  accessibilityLabel={getCopy('a11yLabel')}
@@ -103,5 +103,8 @@ const staticStyles = StyleSheet.create({
103
103
  text: {
104
104
  position: 'relative',
105
105
  textDecorationLine: 'underline'
106
+ },
107
+ container: {
108
+ flexDirection: 'row'
106
109
  }
107
110
  })