@telus-uds/components-web 2.34.0 → 2.34.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,29 @@
1
1
  # Change Log - @telus-uds/components-web
2
2
 
3
- This log was last generated on Fri, 17 May 2024 16:25:38 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 28 May 2024 14:52:42 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## 2.34.2
8
+
9
+ Tue, 28 May 2024 14:52:42 GMT
10
+
11
+ ### Patches
12
+
13
+ - `Footnote`: fix hydration errors (guillermo.peitzner@telus.com)
14
+
15
+ ## 2.34.1
16
+
17
+ Thu, 23 May 2024 16:30:28 GMT
18
+
19
+ ### Patches
20
+
21
+ - `Footnote`: fix inline render (guillermo.peitzner@telus.com)
22
+ - Bump @telus-uds/components-base to v1.85.1
23
+
7
24
  ## 2.34.0
8
25
 
9
- Fri, 17 May 2024 16:25:38 GMT
26
+ Fri, 17 May 2024 16:34:46 GMT
10
27
 
11
28
  ### Minor changes
12
29
 
@@ -80,7 +80,7 @@ const FootnoteLink = /*#__PURE__*/_react.default.forwardRef((_ref2, ref) => {
80
80
  handleClick(index);
81
81
  }
82
82
  };
83
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
83
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
84
84
  ref: ref,
85
85
  children: numbers.map((num, index) => /*#__PURE__*/(0, _jsxRuntime.jsx)(StyledSup, {
86
86
  onKeyDown: event => handleOnKeyDown(event, index),
@@ -73,7 +73,7 @@ const FootnoteLink = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
73
73
  handleClick(index);
74
74
  }
75
75
  };
76
- return /*#__PURE__*/_jsx("div", {
76
+ return /*#__PURE__*/_jsx("span", {
77
77
  ref: ref,
78
78
  children: numbers.map((num, index) => /*#__PURE__*/_jsx(StyledSup, {
79
79
  onKeyDown: event => handleOnKeyDown(event, index),
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  ],
6
6
  "dependencies": {
7
7
  "@gorhom/portal": "^1.0.14",
8
- "@telus-uds/components-base": "1.85.0",
8
+ "@telus-uds/components-base": "1.85.1",
9
9
  "@telus-uds/system-constants": "^1.3.0",
10
10
  "fscreen": "^1.2.0",
11
11
  "lodash.omit": "^4.5.0",
@@ -83,5 +83,5 @@
83
83
  "skip": true
84
84
  },
85
85
  "types": "types/index.d.ts",
86
- "version": "2.34.0"
86
+ "version": "2.34.2"
87
87
  }
@@ -65,7 +65,7 @@ const FootnoteLink = React.forwardRef(
65
65
  }
66
66
 
67
67
  return (
68
- <div ref={ref}>
68
+ <span ref={ref}>
69
69
  {numbers.map((num, index) => (
70
70
  <StyledSup
71
71
  onKeyDown={(event) => handleOnKeyDown(event, index)}
@@ -82,7 +82,7 @@ const FootnoteLink = React.forwardRef(
82
82
  {`${num}${index !== numbers.length - 1 ? ',' : ''}`}
83
83
  </StyledSup>
84
84
  ))}
85
- </div>
85
+ </span>
86
86
  )
87
87
  }
88
88
  )