-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(TDOPS-2619): Align column chooser style with Design System (#4898)
* fix(TDOPS-2619): Align column chooser style with Design System * MR Review to retrieve snapshots * changeset * Update packages/components/src/List/Toolbar/ColumnChooserButton/ColumnChooser/ColumnChooserRow/RowCheckbox/RowCheckbox.component.js Co-authored-by: Alexandre Amalric <[email protected]> --------- Co-authored-by: Alexandre Amalric <[email protected]>
- Loading branch information
1 parent
387afd9
commit b60f5b5
Showing
10 changed files
with
228 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@talend/react-components': patch | ||
--- | ||
|
||
TDOPS-2619 - Align column chooser style with Design System |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 12 additions & 13 deletions
25
...lumnChooser/ColumnChooserRow/RowCheckbox/__snapshots__/RowCheckbox.component.test.js.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`RowCheckBox should render a checked checkbox input by default 1`] = ` | ||
<div | ||
class="checkbox tc-checkbox" | ||
<span | ||
class="theme-checkbox" | ||
> | ||
<input | ||
aria-checked="false" | ||
aria-describedby="some-id-this is my checkbox" | ||
data-feature="my-feature" | ||
id="some-id-checkbox-column-label" | ||
type="checkbox" | ||
/> | ||
<label | ||
data-feature="my-feature.enable" | ||
class="theme-label theme-label_inline" | ||
for="some-id-checkbox-column-label" | ||
> | ||
<input | ||
aria-describedby="some-id-this is my checkbox" | ||
data-checked="0" | ||
id="some-id-checkbox-column-label" | ||
type="checkbox" | ||
/> | ||
<span> | ||
column-label | ||
</span> | ||
column-label | ||
</label> | ||
</div> | ||
</span> | ||
`; |
Oops, something went wrong.