@cfpb/cfpb-design-system 3.13.1 → 3.14.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/CHANGELOG.md CHANGED
@@ -2,7 +2,17 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [3.13.1](https://github.com/cfpb/design-system/compare/v3.13.0..v3.13.1) - June 18, 2025
5
+ ## [3.14.0](https://github.com/cfpb/design-system/compare/v3.13.1..v3.14.0) - July 1, 2025
6
+
7
+ ### PRs in this release
8
+
9
+ - PR #[2307](https://github.com/cfpb/design-system/pull/2307): Update outdated SASS utility syntax in docs | remove unused mixins - Ans
10
+
11
+ ### General
12
+
13
+ - Update u-link utility syntax in docs | remove unused `u-link-border` - ([f812998](https://github.com/cfpb/design-system/commit/f81299826b532b02efc874eb0c78eaa0a1306494)) - Ans
14
+
15
+ ## [3.13.1](https://github.com/cfpb/design-system/compare/v3.13.0..vv3.13.1) - June 18, 2025
6
16
 
7
17
  ### PRs in this release
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfpb/cfpb-design-system",
3
- "version": "3.13.1",
3
+ "version": "3.14.0",
4
4
  "description": "CFPB's UI framework",
5
5
  "exports": {
6
6
  ".": "./src/index.js",
@@ -273,14 +273,13 @@ $ba: Link underline active color.
273
273
  }
274
274
  /* stylelint-enable */
275
275
 
276
- @mixin u-link-border() {
277
- border-bottom-width: 1px;
278
- }
279
-
276
+ // Turn off the default bottom `border` on the default and `:hover` states.
280
277
  @mixin u-link-no-border() {
281
278
  border-bottom-width: 0 !important;
282
279
  }
283
280
 
281
+ // Turn off the default bottom `border` on the default state,
282
+ // but force a bottom border on the `:hover` state.
284
283
  @mixin u-link-hover-border() {
285
284
  border-bottom-width: 0 !important;
286
285