Skip to content

Commit 56819d1

Browse files
committed
Merge tag 'v2.17.3' of github.com:salesforce-ux/design-system-internal into spring-22-opensource
2 parents b88ea8b + 7ef0d6c commit 56819d1

File tree

14 files changed

+107
-37
lines changed

14 files changed

+107
-37
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -485,18 +485,18 @@ jobs:
485485
- node/install-npm
486486
- node/install-packages
487487

488-
- run:
489-
name: 'Build static site'
490-
command: 'npm run build'
491-
environment:
492-
SLDS__FRAMEWORK__PATH: .slds/.dist/
493-
494488
# Heroku
495489
- heroku/install
496490
- run:
497491
name: 'Install Heroku Build CLI plugin'
498492
command: 'heroku plugins:install heroku-builds'
499493

494+
- run:
495+
name: 'Build static site'
496+
command: 'npm run build'
497+
environment:
498+
SLDS__FRAMEWORK__PATH: .slds/.dist/
499+
500500
- run:
501501
name: 'Generate site tarball'
502502
command: |

RELEASENOTES.general.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
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.17.3 - January 27, 2022
5+
46
## 2.17.2 - January 20, 2022
57

68
## 2.17.1 - January 6, 2022

RELEASENOTES.md

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

4+
## Release 2.17.3 - January 27, 2022
5+
6+
## Components
7+
### [Checkbox](https://www.lightningdesignsystem.com/components/checkbox)
8+
#### Fixed
9+
- Checkbox inputs will no longer collapse horizontally when a label with a large amount of text is used.
10+
11+
### [Combobox](https://www.lightningdesignsystem.com/components/combobox)
12+
## Fixed
13+
- Fixed spacing/alignment issue in `.slds-input_faux > span` for select-only combobox without a placeholder.
14+
415
## Release 2.17.2 - January 20, 2022
516

617
## Components

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CSS"
99
],
1010
"homepage": "https://lightningdesignsystem.com",
11-
"version": "2.17.2",
11+
"version": "2.17.3",
1212
"author": "Salesforce",
1313
"bugs": {
1414
"url": "https://github.com/salesforce-ux/design-system/issues"

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

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

ui/components/checkbox/RELEASENOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44

55
<!-- ## [Unreleased] -->
66

7+
## 2.17.3
8+
9+
### Fixed
10+
- Checkbox inputs will no longer collapse horizontally when a label with a large amount of text is used.
11+
712
## 2.17.0
813

914
### Added

ui/components/checkbox/base/_index.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
@include square($square-icon-medium-content);
3333
display: inline-block;
3434
position: relative;
35+
flex-shrink: 0;
3536
vertical-align: middle;
3637
// @todo consider shared hooks for inputs
3738
border-radius: var(--slds-c-checkbox-radius-border, var(--sds-c-checkbox-radius-border, $border-radius-small));

ui/components/checkbox/base/example.jsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,28 @@ export let examples = [
275275
</Fieldset>
276276
)
277277
},
278+
{
279+
id: 'long-wrapping-text-required-group',
280+
label: 'Required Checkboxes with Abnormally-long Wrapping Text',
281+
demoStyles: `width: 210px`,
282+
storybookStyles: true,
283+
element: (
284+
<Fieldset>
285+
<Legend>
286+
<abbr className="slds-required" title="required">
287+
*{' '}
288+
</abbr>
289+
Checkbox Group Label
290+
</Legend>
291+
<FormElementControl>
292+
<Checkbox label="When you wake up in the morning, it's a quarter to one, And you want to have a little fun. You brush your teeth, ch ch ch ch, ch ch ch ch. You brush your teeth, ch ch ch ch, ch ch ch ch" />
293+
<Checkbox label="When you wake up in the morning, it's a quarter to two, And you want to find, something to do. You brush your teeth, ch ch ch ch, ch ch ch ch. You brush your teeth, ch ch ch ch, ch ch ch ch" />
294+
<Checkbox label="And when you wake up in the morning, it's a quarter to three, And your mind starts hummin', twiddle dee dee. You brush your teeth, ch ch ch ch, ch ch ch ch. You brush your teeth, ch ch ch ch, ch ch ch ch" />
295+
<Checkbox label="When you wake up in the morning, it's a quarter to four, And you think you hear a knock on the door. You brush your teeth, ch ch ch ch, ch ch ch ch. You brush your teeth, ch ch ch ch, ch ch ch ch" />
296+
</FormElementControl>
297+
</Fieldset>
298+
)
299+
},
278300
{
279301
id: 'group',
280302
label: 'Group',

ui/components/combobox/RELEASENOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
<!-- ## [Unreleased] -->
66

7+
## 2.17.3
8+
9+
## Fixed
10+
11+
- Fixed spacing/alignment issue in `.slds-input_faux > span` for select-only combobox without a placeholder.
12+
713
## 2.16.2
814

915
## Removed

0 commit comments

Comments
 (0)