-
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
Combine visualizations and visualize plugins #121550
Changes from 18 commits
0309a8c
8204d60
1c5d5ed
4e4e91d
9f7f2ca
940d622
9daa15b
2c602c4
d69fe69
611d63e
3bfad19
434989d
ec538b3
cf8e8c6
7a87489
e0d7ca0
0af27e2
712433c
543173c
0f31cdb
c199925
60bda6d
d4fcb65
33d3443
88f25b8
37e4d71
ebd3fd0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,8 @@ | |
"references": [ | ||
{ "path": "../../core/tsconfig.json" }, | ||
{ "path": "../data/tsconfig.json" }, | ||
{ "path": "../visualize/tsconfig.json" }, | ||
{ "path": "../visualizations/tsconfig.json" }, | ||
{ "path": "../discover/tsconfig.json" }, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why have we added the discover dependency here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
{ "path": "../kibana_utils/tsconfig.json" }, | ||
{ "path": "../kibana_react/tsconfig.json" }, | ||
{ "path": "../field_formats/tsconfig.json" } | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
{ "path": "../../data/tsconfig.json" }, | ||
{ "path": "../../expressions/tsconfig.json" }, | ||
{ "path": "../../visualizations/tsconfig.json" }, | ||
{ "path": "../../visualize/tsconfig.json" }, | ||
{ "path": "../../dashboard/tsconfig.json" }, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are we adding the dashboard dependency here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
{ "path": "../../kibana_utils/tsconfig.json" }, | ||
{ "path": "../../kibana_react/tsconfig.json" }, | ||
{ "path": "../../usage_collection/tsconfig.json" }, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,19 @@ | |
|
||
export const VISUALIZE_ENABLE_LABS_SETTING = 'visualize:enableLabs'; | ||
export const VISUALIZE_EMBEDDABLE_TYPE = 'visualization'; | ||
|
||
export const STATE_STORAGE_KEY = '_a'; | ||
export const GLOBAL_STATE_STORAGE_KEY = '_g'; | ||
|
||
export const APP_NAME = 'visualize'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would rename this constant to |
||
|
||
export const VisualizeConstants = { | ||
VISUALIZE_BASE_PATH: '/app/visualize', | ||
LANDING_PAGE_PATH: '/', | ||
WIZARD_STEP_1_PAGE_PATH: '/new', | ||
WIZARD_STEP_2_PAGE_PATH: '/new/configure', | ||
CREATE_PATH: '/create', | ||
EDIT_PATH: '/edit', | ||
EDIT_BY_VALUE_PATH: '/edit_by_value', | ||
APP_ID: 'visualize', | ||
}; |
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.
Can we add the description from the other
kibana.json
here as well?