kibana/.i18nrc.json

62 lines
2.6 KiB
JSON
Raw Normal View History

{
"paths": {
"common.ui": "src/legacy/ui",
[Console] Move out of legacy + migrate server side to New Platform (#55690) * Initial move of public and setup of server skeleton * Fix public paths and types * Use new usage stats dependency directly in tracker also mark as an optional dependency * WiP on getting server side working * Restore proxy route behaviour for base case, still need to test custom proxy and SSL * Add new type and lib files * Clean up legacy start up code and add comment about issue in kibana.yml config for console * Move console_extensions to new platform and introduce ConsoleSetup API for extending autocomplete Add TODO regarding exposing legacy ES config * Re-introduce injected elasticsearch variable and use it in public * Don't pass stateSetter prop through to checkbox * Refactor of proxy route (split into separate files). Easier testing for now. Refactor file name of request.ts -> proxy_request.ts. This is consistent with the exported function now Started fixing server side tests for the proxy route - Migrated away from sinon - Completed the body.js -> body.test.ts. Still have to do the rest * headers.js test -> headers.test.ts and moved some of the proxy route mocking logic to a common space * Finish migration of rest of proxy route test away from hapi Add test for custom route validation * Bring console application in line with https://github.com/elastic/kibana/blob/master/src/core/CONVENTIONS.md#applications Change log from info level to debug level for console_extensions plugin * Update i18nrc file for console * Add setHeaders when passing back error response Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-01-30 10:51:02 +01:00
"console": "src/plugins/console",
"core": "src/core",
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"dashboardEmbeddableContainer": "src/plugins/dashboard_embeddable_container",
"data": [
"src/legacy/core_plugins/data",
"src/plugins/data"
],
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"embeddableApi": "src/plugins/embeddable",
"embeddableExamples": "examples/embeddable_examples",
2019-11-19 09:50:54 +01:00
"share": "src/plugins/share",
2019-12-20 19:06:21 +01:00
"home": "src/plugins/home",
"charts": "src/plugins/charts",
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"esUi": "src/plugins/es_ui_shared",
"devTools": "src/plugins/dev_tools",
Expressions fully migrated to the New Platform (#50294) * chore: 🤖 use "expressions" namespace for expression translation * feat: 🎸 move Expressions renderer to the New Platform * feat: 🎸 move Expression executor to the New Platform * feat: 🎸 move Expressions loader to the New Platform * feat: 🎸 re-export Expressions setup, remove services.ts * feat: 🎸 use "expressions" translation namespace * feat: 🎸 move Expressions start contract to the New Platform * feat: 🎸 move expressions mocks to the New Platform * chore: 🤖 clean up NP-ready Expressions plugin * feat: 🎸 remove Expressions shim, merge prev PV changes * feat: 🎸 clean up expressions and interpreter plugins * fix: 🐛 remember exression services * fix: 🐛 load legacy Interpeter functions using uiExport * perf: ⚡️ run executer with always the latest functions * fix: 🐛 load interpreter actions in Kibana, provide functions * fix: 🐛 load Interpreter uiExport int Lens app * fix: 🐛 load Interpeter uiExports int Canvas * refactor: 💡 move esaggs function to data plugin Search service * refactor: 💡 move visualization registrants to Visualizations pl * test: 💍 fix Lens Jest test mocks * fix: 🐛 correct translations for moved registrants * chore: 🤖 address PR comments * fix: 🐛 load Expressions CSS, nuke Expressions legacy plugin * fix: 🐛 stop leaking CSS classes between Expressiosn and Lens * chore: 🤖 remove expression types from client-side use /common * chore: 🤖 address review comments * fix: 🐛 load interpreter ui-exports in dashboard_viewer * Have ExpressionRenderer accept className prop. * Fix static positioning class targets
2019-11-19 01:26:13 +01:00
"expressions": "src/plugins/expressions",
2018-11-29 14:14:40 +01:00
"inputControl": "src/legacy/core_plugins/input_control_vis",
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"inspector": "src/plugins/inspector",
"inspectorViews": "src/legacy/core_plugins/inspector_views",
"interpreter": "src/legacy/core_plugins/interpreter",
2018-11-29 14:14:40 +01:00
"kbn": "src/legacy/core_plugins/kibana",
"kbnDocViews": "src/legacy/core_plugins/kbn_doc_views",
"management": [
"src/legacy/core_plugins/management",
"src/plugins/management"
],
"advancedSettings": "src/plugins/advanced_settings",
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"kibana_react": "src/legacy/core_plugins/kibana_react",
"kibana-react": "src/plugins/kibana_react",
"kibana_utils": "src/plugins/kibana_utils",
"navigation": "src/plugins/navigation",
[Newsfeed] UI plugin for Kibana (#49579) * Added base folder structure for Newsfeed plugin * Added base folders for lib and component * Added newsfeed button to navigation controls on the right side * add getApi() to return api data observable (#49581) * Added flyout base body and provided EuiHeaderAlert component inside the newsfeed plugin * Moved newsfeed plugin to OSS and added for the styles purpose new folder for legacy plugin 'newsfeed' with the same id to support this * Added subscribe on fetch newsfeed change * Add NewsfeedApiDriver class (#49710) * add NewsfeedApiDriver class * fix xpack prefix * add corner case handling * Added data binding to the ui * added EuiHeaderAlert style overrides (#49739) * Fixed due to comments on PR * add missing fields to NewsfeedItem and FetchResult * fix templating of service url * gracefully handle temporary request failure * Mapped missing fields for data and badge * Fixed typos issues * integrate i18n.getLocale() * allow service url root to be changed in dev mode * replace a lot of consts with config * fix flyout height (#49809) * Add "error" field to FetchResult: Error | null * simplify fetch error handling * Do not store hash for items that are filtered out * add expireOn in case it is useful to UI * always use staging url for dev config * unit test for newsfeed api driver * simplify modelItems * Fixed eslint errors * Fixed label translations * Add unit test for concatenating the stored hashes with the new * add newsfeed to i18n.json * Fixed expression error * --wip-- [skip ci] * fix parse error * fix test * test(newsfeed): Added testing endpoint which simulates the Elastic Newsfeed for consumption in functional tests * add tests for getApi() * add tests for getApi * Added no news page * fix fetch not happening after page refresh with sessionStorage primed * test(newsfeed): Added testing endpoint which simulates the Elastic Newsfeed for consumption in functional tests * Added loading screen * Small fixes due to comments * Fixed issue with stop fetching news on error catch * test(newsfeed): Configure FTS to point newsfeed to the simulated newsfeed endpoit * Fixed browser error message: Invariant Violation: [React Intl] Could not find required `intl` object. <IntlProvider> needs to exist in the component ancestry. * Fixed typo issue in label name * polish the code changes * Add simple jest/enzyme tests for the components * honor utc format * Filter pre-published items * Fall back to en * retry tests * comment clarfication * Setup newsfeed service fixture from test/common/config * Added base functional tests for newsfeed functionality * valid urlroot is for prod * add documentation for the supported enabled setting * more urlRoot * --wip-- [skip ci] * add the before for fn * add ui_capabilties test * update jest snapshot * Fixed failing test * finish newsfeed error functional test * include ui_capability config * error case testing in ci group 6 * refactor(newsfeed): moved newsfeed api call so that it is done before its use * code polish * enabled newsfeed_err test in CI
2019-11-13 16:48:34 +01:00
"newsfeed": "src/plugins/newsfeed",
2018-11-29 14:14:40 +01:00
"regionMap": "src/legacy/core_plugins/region_map",
"savedObjects": "src/plugins/saved_objects",
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"server": "src/legacy/server",
2018-11-29 14:14:40 +01:00
"statusPage": "src/legacy/core_plugins/status_page",
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"telemetry": "src/legacy/core_plugins/telemetry",
2018-11-29 14:14:40 +01:00
"tileMap": "src/legacy/core_plugins/tile_map",
2020-01-23 18:19:33 +01:00
"timelion": ["src/legacy/core_plugins/timelion", "src/legacy/core_plugins/vis_type_timelion", "src/plugins/timelion"],
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"uiActions": "src/plugins/ui_actions",
"visDefaultEditor": "src/legacy/core_plugins/vis_default_editor",
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"visTypeMarkdown": "src/legacy/core_plugins/vis_type_markdown",
"visTypeMetric": "src/legacy/core_plugins/vis_type_metric",
"visTypeTable": "src/legacy/core_plugins/vis_type_table",
"visTypeTagCloud": "src/legacy/core_plugins/vis_type_tagcloud",
"visTypeTimeseries": ["src/legacy/core_plugins/vis_type_timeseries", "src/plugins/vis_type_timeseries"],
Dashboard container (#49600) * feat: 🎸 create dasboard embeddable NP plugin, move panel action * refactor: 💡 pass in getFactories() fn to "replace" action * refactor: 💡 move dashboard container actions to NP * refactor: 💡 remove action files from dashboard container in LP * refactor: 💡 move dashboard grid to NP plugin * refactor: 💡 move Embeddable SASS to the NP * refactor: 💡 move dashboard container panel to NP * refactor: 💡 move dashboard container viewport to NP * refactor: 💡 move dashboard constant to constants file * refactor: 💡 move dashboard_continaer file to NP * refactor: 💡 move dashboard_container_factory.tsx to NP * chore: 🤖 disable injected React components * feat: 🎸 fill in NP plugin * feat: 🎸 move expand panel action to NP * feat: 🎸 move replace action panel to NP * feat: 🎸 move dashboard_contaienr to NP * chore: 🤖 delete LP dasboard container plugin shim * chore: 🤖 delete LP dashboard_embeddable_container plugin * chore: 🤖 point translations to the NP plugin * test: 💍 re-enable dashboard container tests * chore: 🤖 fix TypeScript type errors * chore: 🤖 fix more TypeScript tyeps * test: 💍 fix import in .js test * feat: 🎸 use <SavedObjectFinder> in dashboard container * feat: 🎸 add full screen button to dashboard container * fix: 🐛 execute Chrome hiding only once * chore: 🤖 put back temporary type substitutions While moving this plugin file-by-file those types were not available * chore: 🤖 revert back kibana_react imports * fix: 🐛 address review comments
2019-10-31 17:56:39 +01:00
"visTypeVega": "src/legacy/core_plugins/vis_type_vega",
"visTypeVislib": "src/legacy/core_plugins/vis_type_vislib",
"visTypeXy": "src/legacy/core_plugins/vis_type_xy",
"visualizations": [
"src/plugins/visualizations",
"src/legacy/core_plugins/visualizations"
]
},
"exclude": [
"src/legacy/ui/ui_render/ui_render_mixin.js"
],
"translations": []
}