-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Table list view] Integrate package into visualizations, maps, graphs #140040
[Table list view] Integrate package into visualizations, maps, graphs #140040
Conversation
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.
Presentation team changes LGTM
@@ -138,8 +162,18 @@ function TableListViewComp<T extends UserContentCommonSchema>({ | |||
}), | |||
sortable: true, | |||
render: (field: keyof T, record: T) => ( | |||
// The validation is handled at the top of the component | |||
// eslint-disable-next-line @elastic/eui/href-or-on-click |
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.
I'm not having any issues locally without eslint-disable-next-line
...? Can you check and see if this can be removed? Thanks!
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.
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.
headingId="visualizeListingHeading" | ||
// we allow users to create visualizations even if they can't save them | ||
// for data exploration purposes | ||
createItem={createNewVis} | ||
tableCaption={i18n.translate('visualizations.listing.table.listTitle', { | ||
defaultMessage: 'Visualize Library', | ||
})} | ||
findItems={fetchItems} | ||
deleteItems={visualizeCapabilities.delete ? deleteItems : undefined} | ||
editItem={visualizeCapabilities.save ? editItem : undefined} |
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.
More a question than anything
edit.mp4
I'm testing locally and I'm having issues with the edit button with Lens specific visualizations with sample data...let me know what I'm missing thank you!
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.
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.
@elasticmachine merge upstream |
…ate-package-vis-map-graph
Thanks for the review @flash1293 ! Good catch for the page reload. I fixed it in 73b6ba9 |
…hub.com:sebelga/kibana into table-list-view/integrate-package-vis-map-graph
To those subscribed to this PR notifications: I've had to update the TableListView to use the new |
The functional test failures here look legit |
@elasticmachine merge upstream |
…ate-package-vis-map-graph
…hub.com:sebelga/kibana into table-list-view/integrate-package-vis-map-graph
@elasticmachine merge upstream |
…ate-package-vis-map-graph
…ckages_build_manifest'" This reverts commit ddfe96e.
…hub.com:sebelga/kibana into table-list-view/integrate-package-vis-map-graph
@elasticmachine merge upstream |
…ate-package-vis-map-graph
@elasticmachine merge upstream |
…ate-package-vis-map-graph
💔 Build FailedFailed CI StepsMetrics [docs]
History
To update your PR or re-run it, just comment with: cc @sebelga |
In this PR I've integrated the package version of the
<TableListView />
component into the following plugins:There aren't any new functionality added.
How to test
Edit
This PR also update the Table list view to the new
<EuiPageTemplate />
component