Skip to content

Commit 7314c02

Browse files
committed
Merge branch '230-spring-21' into merge-spring-21-summer-21
2 parents 154f6a9 + 69f18a2 commit 7314c02

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

RELEASENOTES.general.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55

66
- Removed Salesforce Sans as the default typeface and replaced it with OS-specific defaults.
77
- Updated many of our design tokens and other colors to utilize the new Salesforce Color System. For more information, [read our article on Medium about this system](https://medium.com/salesforce-ux/the-salesforce-color-system-c7c6b5b9c577).
8+
9+
## 2.14.3 - March 18, 2021
10+
811
## 2.14.2 - February 5, 2021
912

1013
## 2.14.1 - January 8, 2021

RELEASENOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@
9898
- Removed white `background-color` from `.slds-tabs_default` to expose surface color of the tabs parent container.
9999
- The `back` icon present in tabs on mobile has been replaced by `chevronleft`. This is an inherited change from panels and it makes the icon consistent between the drilled-in states.
100100

101+
## Release 2.14.3 - March 18, 2021
102+
101103
## Release 2.14.2 - February 5, 2021
102104

103105
## Release 2.14.1 - January 8, 2021

scripts/compile/helpers.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33

44
const I = require('immutable-ext');
55
const Either = require('data.either');
6-
const path = require('path');
76
const { ui, variants } = require('../ui');
87

98
const FOLDERNAME = '__internal';
109

11-
const webpackPath = prefix => filepath =>
12-
path.join(prefix, filepath.replace(/^\.\//, '').concat('.js'));
10+
const webpackPath = prefix => filepath => {
11+
const pathSegments = filepath.concat('.js').split('/');
12+
return `${prefix}/${pathSegments.join('/')}`;
13+
};
1314

1415
const setKeyIfExists = (keypath, fixFilePath) => (entry, item) =>
1516
Either.fromNullable(item.get(keypath)).fold(

ui/_config.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
///
1010
/// @type String
1111
/// @access private
12-
$app-version: "2.14.2";
12+
$app-version: "2.14.3";
1313

1414
/// Debug mode (uncomment to activate)
1515
/// Turn on to output deprecation warnings during development

ui/components/scoped-tabs/_doc.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,4 @@
4747
* @category base
4848
* @type navigation
4949
* @role tablist
50-
* @styling-hooks
5150
*/

0 commit comments

Comments
 (0)