kibana/.i18nrc.json

67 lines
2.7 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",
"discover": "src/plugins/discover",
"dashboard": "src/plugins/dashboard",
"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",
Drilldowns (#61219) * Add drilldown wizard components * Dynamic actions (#58216) * feat: 🎸 add DynamicAction and FactoryAction types * feat: 🎸 add Mutable<T> type to @kbn/utility-types * feat: 🎸 add ActionInternal and ActionContract * chore: 🤖 remove unused file * feat: 🎸 improve action interfaces * docs: ✏️ add JSDocs * feat: 🎸 simplify ui_actions interfaces * fix: 🐛 fix TypeScript types * feat: 🎸 add AbstractPresentable interface * feat: 🎸 add AbstractConfigurable interface * feat: 🎸 use AbstractPresentable in ActionInternal * test: 💍 fix ui_actions Jest tests * feat: 🎸 add state container to action * perf: ⚡️ convert MenuItem to React component on Action instance * refactor: 💡 rename AbsractPresentable -> Presentable * refactor: 💡 rename AbstractConfigurable -> Configurable * feat: 🎸 add Storybook to ui_actions * feat: 🎸 add <ErrorConfigureAction> component * feat: 🎸 improve <ConfigureAction> component * chore: 🤖 use .story file extension prefix for Storybook * feat: 🎸 improve <ErrorConfigureAction> component * feat: 🎸 show error if dynamic action has CollectConfig missing * feat: 🎸 render sample action configuration component * feat: 🎸 connect action config to <ConfigureAction> * feat: 🎸 improve <ConfigureAction> stories * test: 💍 add ActionInternal serialize/deserialize tests * feat: 🎸 add ActionContract * feat: 🎸 split action Context into Execution and Presentation * fix: 🐛 fix TypeScript error * refactor: 💡 extract state container hooks to module scope * docs: ✏️ fix typos * chore: 🤖 remove Mutable<t> type * test: 💍 don't cast to any getActions() function * style: 💄 avoid using unnecessary types * chore: 🤖 address PR review comments * chore: 🤖 rename ActionContext generic * chore: 🤖 remove order from state container * chore: 🤖 remove deprecation notice on getHref * test: 💍 fix tests after order field change * remove comments Co-authored-by: Matt Kime <matt@mattki.me> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> * Drilldown context menu (#59638) * fix: 🐛 fix TypeScript error * feat: 🎸 add CONTEXT_MENU_DRILLDOWNS_TRIGGER trigger * fix: 🐛 correctly order context menu items * fix: 🐛 set correct order on drilldown flyout actions * fix: 🐛 clean up context menu building functions * feat: 🎸 add context menu separator action * Add basic ActionFactoryService. Pass data from it into components instead of mocks * Dashboard x pack (#59653) * feat: 🎸 add dashboard_enhanced plugin to x-pack * feat: 🎸 improve context menu separator * feat: 🎸 move drilldown flyout actions to dashboard_enhanced * fix: 🐛 fix exports from ui_actions plugin * feat: 🎸 "implement" registerDrilldown() method * fix ConfigurableBaseConfig type * Implement connected flyout_manage_drilldowns component * Simplify connected flyout manage drilldowns component. Remove intermediate component * clean up data-testid workaround in new components * Connect welcome message to storage Not sure, but use LocalStorage. Didn’t find a way to persist user settings. looks like uiSettings are not user scoped. * require `context` in Presentable. drill context down through wizard components * Drilldown factory (#59823) * refactor: 💡 import storage interface from ui_actions plugin * refactor: 💡 make actions not-dynamic * feat: 🎸 fix TypeScript errors, reshuffle types and code * fix: 🐛 fix more TypeScript errors * fix: 🐛 fix TypeScript import error * Drilldown registration (#59834) * feat: 🎸 improve drilldown registration method * fix: 🐛 set up translations for dashboard_enhanced plugin * Drilldown events 3 (#59854) * feat: 🎸 add serialize/unserialize to action * feat: 🎸 pass in uiActions service into Embeddable * feat: 🎸 merge ui_actions oss and basic plugins * refactor: 💡 move action factory registry to OSS * fix: 🐛 fix TypeScript errors * Drilldown events 4 (#59876) * feat: 🎸 mock sample drilldown execute methods * feat: 🎸 add .dynamicActions manager to Embeddable * feat: 🎸 add first version of dynamic action manager * Drilldown events 5 (#59885) * feat: 🎸 display drilldowns in context menu only on one embed * feat: 🎸 clear dynamic actions from registry when embed unloads * fix: 🐛 fix OSS TypeScript errors * basic integration of components with dynamicActionManager * fix: 🐛 don't overwrite explicitInput with combined input (#59938) * display drilldown count in embeddable edit mode * display drilldown count in embeddable edit mode * improve wizard components. more tests. * partial progress, dashboard drilldowns (#59977) * partial progress, dashboard drilldowns * partial progress, dashboard drilldowns * feat: 🎸 improve dashboard drilldown setup * feat: 🎸 wire in services into dashboard drilldown * chore: 🤖 add Storybook to dashboard_enhanced * feat: 🎸 create presentational <DashboardDrilldownConfig> * test: 💍 add <DashboardDrilldownConfig> stories * test: 💍 use presentation dashboar config component * feat: 🎸 wire in services into React component * docs: ✏️ add README to /components folder * feat: 🎸 increase importance of Dashboard drilldown * feat: 🎸 improve icon definition in drilldowns * chore: 🤖 remove unnecessary comment * chore: 🤖 add todos Co-authored-by: streamich <streamich@gmail.com> * Manage drilldowns toasts. Add basic error handling. * support order in action factory selector * fix column order in manage drilldowns list * remove accidental debug info * bunch of nit ui fixes * Drilldowns reactive action manager (#60099) * feat: 🎸 improve isConfigValid return type * feat: 🎸 make DynamicActionManager reactive * docs: ✏️ add JSDocs to public mehtods of DynamicActionManager * feat: 🎸 make panel top-right corner number badge reactive * fix: 🐛 correctly await for .deleteEvents() * Drilldowns various 2 (#60103) * chore: 🤖 address review comments * test: 💍 fix embeddable_panel.test.tsx tests * chore: 🤖 clean up ActionInternal * chore: 🤖 make isConfigValid a simple predicate * chore: 🤖 fix TypeScript type errors * test: 💍 stub DynamicActionManager tests (#60104) * Drilldowns review 1 (#60139) * refactor: 💡 improve generic types * fix: 🐛 don't overwrite icon * fix: 🐛 fix x-pack TypeScript errors * fix: 🐛 fix TypeScript error * fix: 🐛 correct merge * Drilldowns various 4 (#60264) * feat: 🎸 hide "Create drilldown" from context menu when needed * style: 💄 remove AnyDrilldown type * feat: 🎸 add drilldown factory context * chore: 🤖 remove sample drilldown * fix: 🐛 increase spacing between action factory picker * workaround issue with closing flyout when navigating away Adds overlay just like other flyouts which makes this defect harder to bump in * fix react key issue in action_wizard * don’t open 2 flyouts * fix action order https://github.com/elastic/kibana/issues/60138 * Drilldowns reload stored (#60336) * style: 💄 don't use double equals __ * feat: 🎸 add reload$ to ActionStorage interface * feat: 🎸 add reload$ to embeddable event storage * feat: 🎸 add storage syncing to DynamicActionManager * refactor: 💡 use state from DynamicActionManager in React * fix: 🐛 add check for manager being stopped * Drilldowns triggers (#60339) * feat: 🎸 make use of supportedTriggers() * feat: 🎸 pass in context to configuration component * feat: 🎸 augment factory context * fix: 🐛 stop infinite re-rendering * Drilldowns multitrigger (#60357) * feat: 🎸 add support for multiple triggers * feat: 🎸 enable Drilldowns for TSVB Although TSVB brushing event is now broken on master, KibanaApp plans to fix it in 7.7 * "Create drilldown" flyout - design cleanup (#60309) * create drilldown flyout cleanup * remove border from selectedActionFactoryContainer * adjust callout in DrilldownHello * update form labels * remove unused file * fix type error Co-authored-by: Anton Dosov <anton.dosov@elastic.co> * basic unit tests for flyout_create_drildown action * Drilldowns finalize (#60371) * fix: 🐛 align flyout content to left side * fix: 🐛 move context menu item number 1px lower * fix: 🐛 move flyout back nav chevron up * fix: 🐛 fix type check after refactor * basic unit tests for drilldown actions * Drilldowns finalize 2 (#60510) * test: 💍 fix test mock * chore: 🤖 remove unused UiActionsService methods * refactor: 💡 cleanup UiActionsService action registration * fix: 🐛 add missing functionality after refactor * test: 💍 add action factory tests * test: 💍 add DynamicActionManager tests * feat: 🎸 capture error if it happens during initial load * fix: 🐛 register correctly CSV action * feat: 🎸 don't show "OPTIONS" title on drilldown context menus * feat: 🎸 add server-side for x-pack dashboard plugin * feat: 🎸 disable Drilldowns for TSVB * feat: 🎸 enable drilldowns on kibana.yml feature flag * feat: 🎸 add feature flag comment to kibana.yml * feat: 🎸 remove places from drilldown interface * refactor: 💡 remove place in factory context * chore: 🤖 remove doExecute * remove not needed now error_configure_action component * remove workaround for storybook * feat: 🎸 improve DrilldownDefinition interface * style: 💄 replace any by unknown * chore: 🤖 remove any * chore: 🤖 make isConfigValid return type a boolean * refactor: 💡 move getDisplayName to factory, remove deprecated * style: 💄 remove any * feat: 🎸 improve ActionFactoryDefinition * refactor: 💡 change visualize_embeddable params * feat: 🎸 add dashboard dependency to dashboard_enhanced * style: 💄 rename drilldown plugin life-cycle contracts * refactor: 💡 do naming adjustments for dashboard drilldown * fix: 🐛 fix Type error * fix: 🐛 fix TypeScript type errors * test: 💍 fix test after refactor * refactor: 💡 rename context -> placeContext in React component * chore: 🤖 remove setting from kibana.yml * refactor: 💡 change return type of getAction as per review * remove custom css per review * refactor: 💡 rename drilldownCount to eventCount * style: 💄 remove any * refactor: 💡 change how uiActions are passed to vis embeddable * style: 💄 remove unused import * fix: 🐛 pass in uiActions to visualize_embeddable * fix: 🐛 correctly register action * fix: 🐛 fix type error * chore: 🤖 remove unused translations * Dynamic actions to xpack (#62647) * feat: 🎸 set up sample action factory provider * feat: 🎸 create dashboard_enhanced plugin * feat: 🎸 add EnhancedEmbeddable interface * refactor: 💡 move DynamicActionManager to x-pack * feat: 🎸 connect dynamic action manager to embeddable life-cycle * test: 💍 fix Jest tests after refactor * fix: 🐛 fix type error Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> * refactor: 💡 move action factories to x-pack (#63190) * refactor: 💡 move action factories to x-pack * fix: 🐛 use correct plugin embeddable deps * test: 💍 fix Jest test after refactor * chore: 🤖 remove kibana.yml flag (#62441) * Panel top right (#63466) * feat: 🎸 add PANEL_NOTIFICATION_TRIGGER * feat: 🎸 add PanelNotificationsAction action * test: 💍 add PanelNotificationsAction unit tests * refactor: 💡 revert addTriggerAction() change * style: 💄 remove unused import * fix: 🐛 fix typecheck errors after merge * support getHref in drilldowns (#63727) * chore: 🤖 remove ui_actions storybook config * update docs * fix ts * fix: 🐛 fix broken merge * [Drilldowns] Dashboard to dashboard drilldown (#63108) * partial progress on async loading / searching of dashboard titles * feat: 🎸 make combobox full width * filtering combobox polish * storybook fix * implement navigating to dashboard, seems like a type problem * try navToApp * filter out current dashboard * rough draft linking to a dashboard * remove note * typefix * fix navigation from dashboard to dashboard except for back button - that would be addressed separatly * partial progress getting filters from action data * fix issue with getIndexPatterns undefined we can’t import those functions as static functions, instead we have to expose them on plugin contract because they are statefull * fix filter / time passing into url * typefix * dashboard to dashboard drilldown functional test and back button fix * documentation update * chore clean-ups fix type * basic unit test for dashboard drilldown * remove test todos decided to skip those tests because not clear how to test due to EuiCombobox is using react-virtualized and options list is not rendered in jsdom env * remove config * improve back button with filter comparison tweak * dashboard filters/date option off by default * revert change to config/kibana.yml * remove unneeded comments * use default time range as appropriate * fix type, add filter icon, add text * fix test * change how time range is restored and improve back button for drilldowns * resolve conflicts * fix async compile issue * remove redundant test * wip * wip * fix * temp skip tests * fix * handle missing dashboard edge case * fix api * refactor action filter creation utils * updating * updating docs * improve * fix storybook * post merge fixes * fix payload emitted in brush event * properly export createRange action * improve tests * add test * post merge fixes * improve * fix * improve * fix build * wip getHref support * implement getHref() * give proper name to a story * use sync start services * update text * fix types * fix ts * fix docs * move clone below drilldowns (near replace) * remove redundant comments * refactor action filter creation utils * updating * updating docs * fix payload emitted in brush event * properly export createRange action * some more updates * fixing types * ... * inline EventData * fix typescript in lens and update docs * improve filters types * docs * merge * @mdefazio review * adjust actions order * docs * @stacey-gammon review Co-authored-by: Matt Kime <matt@mattki.me> Co-authored-by: streamich <streamich@gmail.com> Co-authored-by: ppisljar <peter.pisljar@gmail.com> * fix docs * nit fixes * chore: 🤖 remove uiActions from Embeddable dependencies * chore: 🤖 don't export ActionInternal from ui_actions * test: 💍 remove uiActions deps in x-pack test mocks * chore: 🤖 cleanup ui_actions types * docs: ✏️ add JSDoc comment to addTriggerAction() * docs: ✏️ regenerate docs * Drilldown demo 2 (#64300) * chore: 🤖 add example of Discover drilldown to sample plugin * fix: 🐛 show drilldowns with higher "order" first * feat: 🎸 add createStartServicesGetter() to /public kibana_util * feat: 🎸 load index patterns in Discover drilldown * feat: 🎸 add toggle for index pattern selection * feat: 🎸 add spacer to separate unrelated config fields * fix: 🐛 correctly configre setup core * feat: 🎸 navigate to correct index pattern * chore: 🤖 fix type check errors * fix: 🐛 make index pattern select full width * fix: 🐛 add getHref support * feat: 🎸 add example plugin ability to X-Pack * refactor: 💡 move Discover drilldown example to X-Pack * feat: 🎸 add dashboard-to-url drilldown example * feat: 🎸 add new tab support for URL drilldown * feat: 🎸 add "hello world" drilldown example * docs: ✏️ add README * feat: 🎸 add getHref support * chore: 🤖 cleanup after moving examples to X-Pack * docs: ✏️ add to README.md info on how to find drilldowns * feat: 🎸 store events in .enhancements field * docs: ✏️ add comment to range trigger title * refactor: 💡 move Configurable interface into kibana_utils * chore: 🤖 simplify internal component types * refactor: 💡 move registerDrilldwon() to advanced_ui_actions * test: 💍 update functional test data * merge * docs: ✏️ make drilldown enhancement comment more general * fix: 🐛 return public type from registerAction() call * docs: ✏️ add comment to value click trigger title field * docs: ✏️ improve comment * fix: 🐛 use second argument of CollectConfigProps interface * fix: 🐛 add workaround for Firefox rendering issue See: https://github.com/elastic/kibana/pull/61219/#pullrequestreview-402903330 * chore: 🤖 delete unused file * fix: 🐛 import type from new location * style: 💄 make generic type variable name sconsistent * fix: 🐛 show "Create drilldown" only on dashboard * test: 💍 add extra unit test for root embeddable type * docs: ✏️ update generated docs * chore: 🤖 add example warnings to sample drilldowns * docs: ✏️ add links to example warnings * feat: 🎸 add URL drilldown validation and https:// prefixing * fix: 🐛 disable drilldowns for lens * refactor: 💡 remove PlaceContext from DrilldownDefinition * fix: 🐛 fix type check error * feat: 🎸 show warning message if embeddable not provided Co-authored-by: Anton Dosov <anton.dosov@elastic.co> Co-authored-by: Matt Kime <matt@mattki.me> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Andrea Del Rio <delrio.andre@gmail.com> Co-authored-by: ppisljar <peter.pisljar@gmail.com>
2020-05-04 16:11:20 +02:00
"uiActionsExamples": "examples/ui_action_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",
"inputControl": "src/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"
],
"maps_legacy": "src/plugins/maps_legacy",
"indexPatternManagement": "src/plugins/index_pattern_management",
"advancedSettings": "src/plugins/advanced_settings",
"kibana_legacy": "src/plugins/kibana_legacy",
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",
2020-05-07 19:22:00 +02:00
"regionMap": "src/plugins/region_map",
"savedObjects": "src/plugins/saved_objects",
"savedObjectsManagement": "src/plugins/saved_objects_management",
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",
[Telemetry] Migrate public to NP (#56285) * NP telemetry plugin barebones * fully migrate telemetry sender * license plugin to use NP telemetry * fully migrated public to NP * finish components testing * fix all tests * self code review * remove commented code * bracket notication for private methods * bracket notication for private methods * update license management tests * afharo code review fixes * type safe private method access in tests * fix typecheck * more type check fixes * i18n check * fix welcome page tests * i18n optedInNoticeBanner title * fix advanced settings field settings * field name * fix home snapshots * listen to app id change * NP code review fixes * NP code review fixes * update telemetry configs with np deprecations * pass telemetry from setup instead of npStart * type check * update core snapshots with new api exposed * remove debugging logs * update home contract * update home contract * fix test eslint import * navigate back to dashboard before start of next case for reporting * gitignore reporting failure_debug generated dir * use gotoDashboardEditMode instead of switch * = instead of : * merge master * escape unused forced types in Field * rename mock to mocks for eslint * Update src/plugins/telemetry/public/components/telemetry_management_section.tsx Co-Authored-By: Alejandro Fernández Haro <afharo@gmail.com> * fix save/clear type Co-authored-by: Alejandro Fernández Haro <afharo@gmail.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-13 08:44:01 +01:00
"telemetry": [
"src/plugins/telemetry",
"src/plugins/telemetry_management_section"
[Telemetry] Migrate public to NP (#56285) * NP telemetry plugin barebones * fully migrate telemetry sender * license plugin to use NP telemetry * fully migrated public to NP * finish components testing * fix all tests * self code review * remove commented code * bracket notication for private methods * bracket notication for private methods * update license management tests * afharo code review fixes * type safe private method access in tests * fix typecheck * more type check fixes * i18n check * fix welcome page tests * i18n optedInNoticeBanner title * fix advanced settings field settings * field name * fix home snapshots * listen to app id change * NP code review fixes * NP code review fixes * update telemetry configs with np deprecations * pass telemetry from setup instead of npStart * type check * update core snapshots with new api exposed * remove debugging logs * update home contract * update home contract * fix test eslint import * navigate back to dashboard before start of next case for reporting * gitignore reporting failure_debug generated dir * use gotoDashboardEditMode instead of switch * = instead of : * merge master * escape unused forced types in Field * rename mock to mocks for eslint * Update src/plugins/telemetry/public/components/telemetry_management_section.tsx Co-Authored-By: Alejandro Fernández Haro <afharo@gmail.com> * fix save/clear type Co-authored-by: Alejandro Fernández Haro <afharo@gmail.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-13 08:44:01 +01:00
],
2020-05-06 23:12:38 +02:00
"tileMap": "src/plugins/tile_map",
"timelion": ["src/plugins/timelion", "src/plugins/vis_type_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/plugins/vis_default_editor",
"visTypeMarkdown": "src/plugins/vis_type_markdown",
"visTypeMetric": "src/plugins/vis_type_metric",
"visTypeTable": "src/plugins/vis_type_table",
"visTypeTagCloud": "src/plugins/vis_type_tagcloud",
"visTypeTimeseries": "src/plugins/vis_type_timeseries",
"visTypeVega": "src/plugins/vis_type_vega",
"visTypeVislib": "src/plugins/vis_type_vislib",
"visTypeXy": "src/plugins/vis_type_xy",
"visualizations": "src/plugins/visualizations",
"visualize": "src/plugins/visualize",
"apmOss": "src/plugins/apm_oss"
},
"exclude": [
"src/legacy/ui/ui_render/ui_render_mixin.js"
],
"translations": []
}