Skip to content

Commit 62f9f2d

Browse files
authored
Merge pull request #390 from mashmatrix/fix-pill-contaier-bem
fix pill container BEM to single underscore
2 parents 3586ad0 + d904f0a commit 62f9f2d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-lightning-design-system",
3-
"version": "4.3.0",
3+
"version": "4.3.1",
44
"description": "Salesforce Lightning Design System components built with React",
55
"main": "lib/scripts/index.js",
66
"module": "module/scripts/index.js",

src/scripts/Lookup.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class LookupSelection<LookupEntry extends Entry> extends Component<
9393
const lookupClassNames = classnames({ 'slds-hide': hidden });
9494
return (
9595
<div ref={lookupSelectionRef} className={lookupClassNames}>
96-
<div className='slds-pill__container'>
96+
<div className='slds-pill_container'>
9797
{selected ? this.renderPill(selected) : undefined}
9898
</div>
9999
</div>

stories/PillStories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ storiesOf('Pill', module)
3737
'truncate',
3838
() => (
3939
<div style={{ width: '200px' }}>
40-
<div className='slds-pill__container'>
40+
<div className='slds-pill_container'>
4141
<Pill
4242
label='Pill Label that is longer than the area that contains it'
4343
truncate

test/storyshots/__snapshots__/storyshots.test.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40135,7 +40135,7 @@ exports[`Storyshots Lookup With selection 1`] = `
4013540135
className=""
4013640136
>
4013740137
<div
40138-
className="slds-pill__container"
40138+
className="slds-pill_container"
4013940139
>
4014040140
<a
4014140141
className="slds-pill slds-truncate"
@@ -50892,7 +50892,7 @@ exports[`Storyshots Pill truncate 1`] = `
5089250892
}
5089350893
>
5089450894
<div
50895-
className="slds-pill__container"
50895+
className="slds-pill_container"
5089650896
>
5089750897
<a
5089850898
className="slds-pill slds-truncate"

0 commit comments

Comments
 (0)