@telus-uds/components-base 3.7.0 → 3.7.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
|
|
3
|
+
This log was last generated on Mon, 05 May 2025 21:28:44 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## 3.7.1
|
|
8
|
+
|
|
9
|
+
Mon, 05 May 2025 21:28:44 GMT
|
|
10
|
+
|
|
11
|
+
### Patches
|
|
12
|
+
|
|
13
|
+
- `Card`: fix underline style (guillermo.peitzner@telus.com)
|
|
14
|
+
|
|
7
15
|
## 3.7.0
|
|
8
16
|
|
|
9
|
-
Thu, 01 May 2025 20:
|
|
17
|
+
Thu, 01 May 2025 20:13:57 GMT
|
|
10
18
|
|
|
11
19
|
### Minor changes
|
|
12
20
|
|
|
@@ -133,7 +133,10 @@ const PressableCardBase = /*#__PURE__*/_react.default.forwardRef((_ref, ref) =>
|
|
|
133
133
|
setFocused(false);
|
|
134
134
|
setPressed(false);
|
|
135
135
|
},
|
|
136
|
-
style:
|
|
136
|
+
style: {
|
|
137
|
+
...staticStyles.container,
|
|
138
|
+
textDecoration: 'none'
|
|
139
|
+
},
|
|
137
140
|
...(hrefAttrs || {}),
|
|
138
141
|
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_CardBase.default, {
|
|
139
142
|
tokens: getCardTokens({
|
|
@@ -125,7 +125,10 @@ const PressableCardBase = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
|
|
125
125
|
setFocused(false);
|
|
126
126
|
setPressed(false);
|
|
127
127
|
},
|
|
128
|
-
style:
|
|
128
|
+
style: {
|
|
129
|
+
...staticStyles.container,
|
|
130
|
+
textDecoration: 'none'
|
|
131
|
+
},
|
|
129
132
|
...(hrefAttrs || {}),
|
|
130
133
|
children: /*#__PURE__*/_jsx(CardBase, {
|
|
131
134
|
tokens: getCardTokens({
|
package/lib/package.json
CHANGED
package/package.json
CHANGED
|
@@ -158,7 +158,7 @@ const PressableCardBase = React.forwardRef(
|
|
|
158
158
|
setFocused(false)
|
|
159
159
|
setPressed(false)
|
|
160
160
|
}}
|
|
161
|
-
style={staticStyles.container}
|
|
161
|
+
style={{ ...staticStyles.container, textDecoration: 'none' }}
|
|
162
162
|
{...(hrefAttrs || {})}
|
|
163
163
|
>
|
|
164
164
|
<CardBase tokens={getCardTokens({ pressed, focused, hovered })}>
|