-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(Table): support providing selected rows to sync with external model #1055
Conversation
623371c
to
9b3d779
Compare
@@ -410,7 +417,7 @@ export const Table = <T extends object>({ | |||
rowNumbers, | |||
providedColumns, | |||
ariaLabelledByColumnId, | |||
expandChildsOnRowSelection, | |||
expandChildrenOnRowSelection, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C'est breaking juste pour la version snapshot.
@@ -671,7 +673,7 @@ export const MultipleSelectableExpandableSubRows: Story = { | |||
}, | |||
]; | |||
|
|||
const data: TableData<ExpandableData>[] = [ | |||
const data: TableData<ExpandableData>[] = useMemo(() => [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Petit détail nécessaire dans la story, sinon le data change d'instance à chaque render.
Storybook for this build: https://ds.equisoft.io/pr-1055/ |
Webapp for this build: https://ds.equisoft.io/pr-1055/webapp/ |
@@ -32,40 +53,6 @@ export function calculateStickyHeader( | |||
}); | |||
} | |||
|
|||
export function calculateStickyFooter( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Je sais pas pourquoi mais ces 2 fonctions n'étaient plus utilisées
…th external model
…sync with external model
…ows to sync with external model
…ected rows to sync with external model
…ing selected rows to sync with external model
…th external model
…sync with external model
…ows to sync with external model
…ected rows to sync with external model
7dc8ede
to
5cb7421
Compare
No description provided.