Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions REUSE.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,9 @@ path = "packages/main/src/internal/safeGetChildrenArray.ts"
precedence = "aggregate"
SPDX-FileCopyrightText = "2022 Adobe Inc."
SPDX-License-Identifier = "Apache-2.0"

[[annotations]]
path = "packages/main/src/components/AnalyticalTable/hooks/useRowSelect.ts"
precedence = "aggregate"
SPDX-FileCopyrightText = "2019-2021 Tanner Linsley"
SPDX-License-Identifier = "MIT"
253 changes: 229 additions & 24 deletions packages/main/src/components/AnalyticalTable/AnalyticalTable.cy.tsx

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -369,14 +369,20 @@
user-select: none;
}

.checkBox::part(root) {
display: flex;
width: unset;
height: unset;
justify-content: center;
min-height: unset;
min-width: unset;
padding: 0;
.checkBox {
vertical-align: middle;
pointer-events: none;
display: block;

&::part(root) {
display: flex;
width: unset;
height: unset;
justify-content: center;
min-height: unset;
min-width: unset;
padding: 0;
}
}

/* ==========================================================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,29 @@ const meta = {
chromatic: { disableSnapshot: true },
},
args: {
data: dataLarge,
// reactTableOptions: { autoResetSelectedRows: true },
data: [
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
...dataLarge,
],
columns: [
{
Header: 'Name',
Expand Down
Loading
Loading