Skip to content

Commit a14a35c

Browse files
committed
Merge branch '244-summer-23' of github.com:salesforce-ux/design-system-internal into opensource-summer-23
2 parents da5b6d9 + 6f3e0f0 commit a14a35c

File tree

9 files changed

+32
-15
lines changed

9 files changed

+32
-15
lines changed

RELEASENOTES.general.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
22
<!-- On release, add general notes here. In time the legacy release notes will be add to this -->
33

4+
## 2.21.3 - June 29, 2023
5+
6+
## Fixed
7+
- Correction in icons package version.
8+
- Updated placeholder text color for Rich Text Editor
9+
- Updated docked utility component's unread notification state icon color
10+
- Updated border colors for Feeds component
11+
412
## 2.21.2 - June 15, 2023
513

614
## Fixed

RELEASENOTES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
22
<!-- !!! THIS FILE IS AUTO-GENERATED !!! DO NOT EDIT THIS FILE MANUALLY !!! -->
33

4+
## Release 2.21.3 - June 29, 2023
5+
6+
## Fixed
7+
- Correction in icons package version.
8+
- Updated placeholder text color for Rich Text Editor
9+
- Updated docked utility component's unread notification state icon color
10+
- Updated border colors for Feeds component
11+
412
## Release 2.21.2 - June 15, 2023
513

614
## Fixed

formats/custom-props.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
const theo = require('theo');
22

33
const SLDS = 'slds';
4-
const SCOPED_NAMESPACE = 'slds-wcag';
4+
const SCOPED_NAMESPACE = process.env.WCAG_MODE ? ':root' : '.slds-wcag';
55

66
theo.registerFormat(
77
'custom-props.scss',
8-
`.${SCOPED_NAMESPACE} {
8+
`${SCOPED_NAMESPACE} {
99
{{#each props as |prop|}}
1010
{{#if prop.comment}}/* {{{prop.comment}}} */{{/if}}
1111
--${SLDS}-{{#eq prop.scope "global"}}g-{{/eq}}{{#eq prop.scope "shared"}}s-{{/eq}}{{kebabcase prop.name}}: {{#eq prop.type "string"}}"{{/eq}}{{{prop.value}}}{{#eq prop.type "string"}}"{{/eq}};

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CSS"
99
],
1010
"homepage": "https://lightningdesignsystem.com",
11-
"version": "2.21.2",
11+
"version": "2.21.3",
1212
"author": "Salesforce",
1313
"bugs": {
1414
"url": "https://github.com/salesforce-ux/design-system/issues"
@@ -49,7 +49,7 @@
4949
"@salesforce-ux/design-system-markup": "^2.0.4",
5050
"@salesforce-ux/design-system-parser": "^1.1.1",
5151
"@salesforce-ux/design-system-primitive-tokens": "0.3.6",
52-
"@salesforce-ux/icons": "^10.6.0",
52+
"@salesforce-ux/icons": "10.6.0",
5353
"@salesforce-ux/instant-vrt": "2.0.0",
5454
"@salesforce-ux/postcss-annotations-parser": "0.1.1",
5555
"@salesforce-ux/postcss-css-variable-value": "0.2.0",

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.21.2";
12+
$app-version: "2.21.3";
1313

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

ui/components/docked-utility-bar/base/_index.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@
4343
*/
4444
.slds-indicator_unread,
4545
.slds-indicator--unread {
46-
background: var(--slds-g-color-neutral-base-100, #{$utility-bar-color-background-notification-badge});
46+
background: var(--slds-g-color-error-base-40, #{$utility-bar-color-background-notification-badge});
4747
top: $spacing-x-small;
48+
border: $border-width-thin solid var(--slds-g-color-neutral-base-95);
4849
}
4950
}
5051

ui/components/feeds/post/_index.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
*/
1111
.slds-feed__item-comments {
1212
background: var(--slds-g-color-neutral-base-95, #{$color-background-post});
13-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
14-
border-bottom: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
13+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
14+
border-bottom: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
1515

1616
.slds-comment {
1717
padding: $var-spacing-vertical-x-small $spacing-medium;
@@ -30,7 +30,7 @@
3030
padding: $spacing-small $spacing-medium;
3131

3232
@include mq-medium-max {
33-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
33+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
3434
}
3535

3636
@include mq-large-min {
@@ -90,7 +90,7 @@
9090
order: 1;
9191

9292
@include mq-small-max {
93-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
93+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
9494
margin: 0 ($spacing-small * -1) ($spacing-small * -1);
9595
padding: 0 $spacing-medium;
9696
}
@@ -197,7 +197,7 @@
197197
// class .slds-region--narrow
198198
.slds-post__footer-actions-list {
199199
order: 1;
200-
border-top: $border-width-thin solid var(--slds-g-color-border-base-4, #{$color-border});
200+
border-top: $border-width-thin solid var(--slds-g-color-border-base-1, #{$color-border});
201201
margin: 0 ($spacing-small * -1) ($spacing-small * -1);
202202
padding: 0 $spacing-medium;
203203
}

ui/components/rich-text-editor/base/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
user-select: text;
229229

230230
&.ql-blank:before {
231-
color: var(--slds-g-color-neutral-base-10, #54698d);
231+
color: var(--slds-g-color-neutral-base-50, #54698d);
232232
content: attr(data-placeholder);
233233
pointer-events: none;
234234
position: absolute;

0 commit comments

Comments
 (0)