-
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
[Visualizations] Adds dimensionName in datatable meta info #107265
Conversation
Pinging @elastic/kibana-app (Team:KibanaApp) |
export interface DateHistogramParams { | ||
date: boolean; | ||
interval: number; | ||
intervalESValue: number; | ||
intervalESUnit: string; | ||
format: string; | ||
bounds?: { | ||
min: string | number; | ||
max: string | number; | ||
}; | ||
} | ||
|
||
export interface HistogramParams { | ||
interval: number; | ||
} | ||
|
||
export interface FakeParams { | ||
defaultValue: string; | ||
} |
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.
Is this a duplicate of the vis_type_xy/public/types
content?
In case can we rely on these only without duplication? If you reexport these from the param.ts
file the impact on other files should be minimal.
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 forgot them, thanx. I moved them to the visualizations plugin, otherwise we will have circular dependencies
@elasticmachine merge upstream |
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.
code LGTM
@elasticmachine merge upstream |
@elasticmachine merge upstream |
@elasticmachine merge upstream |
💚 Build Succeeded
Metrics [docs]Module Count
Async chunks
Page load bundle
Unknown metric groupsAPI count
API count missing comments
Non-exported public API item count
History
To update your PR or re-run it, just comment with: |
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.
Code review only. LGTM 👍
…07265) * [Visualizations] Adds dimensionName in datatable meta info * Delete unused file * fix i18n * Another fix of i18n * Fix translations * Remove double types * Fix types * Another type fix Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
…107501) * [Visualizations] Adds dimensionName in datatable meta info * Delete unused file * fix i18n * Another fix of i18n * Fix translations * Remove double types * Fix types * Another type fix Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
…07265) * [Visualizations] Adds dimensionName in datatable meta info * Delete unused file * fix i18n * Another fix of i18n * Fix translations * Remove double types * Fix types * Another type fix Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
Summary
Follup PR of #106514
Adds dimensionName in datatable meta information for the rest legacy visualizations (it has only been implemented for pie chart).
Checklist
Delete any items that are not applicable to this PR.