restrry
846ff4ace1
update styles
2020-05-22 11:46:32 +02:00
Chandler Prall
fa0c700c92
[7.x] Upgrade EUI to 21.0.1 ( #60282 ) ( #60809 )
...
* Upgrade EUI to 21.0.1 (#60282 )
* update to eui 21.0.1
* most changes needed for search bar ts changes
* Passing types
* snapshots
* jest tests
* Removed IQuery placeholder types
* Updated functional test to only look at table headers with content
* Moved 'filters' definition around in api docs
* Update types
* update snapshot
* typo
* Move DATA_FRAME_TASK_STATE enum to its own file to fix x-pack functional test config imports
* merge public api 'changes'
Co-authored-by: patrykkopycinski <patryk.kopycinski@elastic.co>
Co-authored-by: Patryk Kopycinski <contact@patrykkopycinski.com>
* unit test update
Co-authored-by: patrykkopycinski <patryk.kopycinski@elastic.co>
Co-authored-by: Patryk Kopycinski <contact@patrykkopycinski.com>
2020-03-20 23:09:36 -06:00
Chandler Prall
2b9c10b99c
[7.x] Upgrade EUI to v20.0.2 ( #59199 ) ( #59477 )
...
* Upgrade EUI to v20.0.2 (#59199 )
* Updated EUI to 20.0.1; updated typescript usage
* snapshots
* Upgrade to eui 20.0.2, fix one more type
* PR feedback
* Update EUI icon usage to the correct types
* Updated with master
* Fixed a missing import
2020-03-06 16:06:52 -07:00
Peter Pisljar
65fb3a88b2
removing references to visTypes uiExports ( #58337 ) ( #59061 )
2020-03-02 14:25:32 -05:00
Vadim Dalecky
c4a2067838
ExecutionContract ( #57559 ) ( #57806 )
...
* feat: 🎸 add ExecutionContract class
* test: 💍 add Execution and Executor tests
* feat: 🎸 add .execute() method to ExpressionsService
* refactor: 💡 replace ExpressionDataHandler by ExecutionContract
* fix: 🐛 fix TypeScript typecheck errors
* docs: ✏️ add JSDocs to ExecutionContract
* refactor: 💡 make .ast and .expresions both optional
* test: 💍 fix test
* test: 💍 fix a test
* test: 💍 fix interpreter functional tests
2020-02-17 16:41:19 +01:00
Greg Thompson
b906518fed
Upgrade EUI to v19.0.0 ( #57284 ) ( #57718 )
...
* eui to v19.0.0
* typescript updates; idAria removal
* src snapshot updates
* mock euicode and euicodeblock for jest
* x-pack snapshot updates
* mock euicode for jest
* more euicode snapshots
* mock euicode in storyshots
* types/enzyme yarn.lock
* sidenav type update
2020-02-14 15:02:49 -06:00
Vadim Dalecky
b9f4eec008
[7.x] Expressions refactor ( #54342 ) ( #57366 )
...
* Expressions refactor (#54342 )
* feat: 🎸 add UiComponent interface
* feat: 🎸 add adapter for react => ui components and back
* refactor: 💡 move registries to shared /common folder
* feat: 🎸 create expressions service state contaienr
* chore: 🤖 export some symbols
* feat: 🎸 add Executor class
* test: 💍 add simple integration test
* feat: 🎸 move registries into executor
* feat: 🎸 add initial implementation of Execution
* feat: 🎸 move Executor's state container into a signle file
* refactor: 💡 move createError() to /common folder
* feat: 🎸 use Executor in plugin definition
* refactor: 💡 rename handlers to FunctionHandlers
* feat: 🎸 improve function typings
* feat: 🎸 move types and func in sep folder, improve Execution
* refactor: 💡 cleanup expression_types folder
* refactor: 💡 improve typing names of expression types
* refactor: 💡 remove lodash from ExpressionType and improve types
* test: 💍 add ExpressionType tests
* refactor: 💡 remove function wrappers around types
* refactor: 💡 move functions to /common
* test: 💍 improve expression function tests
* feat: 🎸 create /parser folder
* refactor: 💡 move function types into /expression_functions dir
* refactor: 💡 improve parser setup
* refactor: 💡 fix export structure and move args into expr_func
* test: 💍 add ExpressionFunctionParameter tests
* fix: 🐛 fix executor types and imports
* refactor: 💡 move getByAlias to plugin, fix Execution types
* feat: 🎸 add function for argument parsing
* test: 💍 add Executor type tests
* test: 💍 add executor function and context tests
* test: 💍 check that Executor returns Execution
* test: 💍 add basic tests for Execution
* test: 💍 add basic test for execution of a chain of functions
* test: 💍 add "mult" function tot tests
* feat: 🎸 create separate expression_renderer folder
* feat: 🎸 use new executor in public plugin
* feat: 🎸 remove renderers from executor, add result to execution
* fix: 🐛 fix Kibana TypeScript errors
* test: 💍 add file to write integration tests for expr plugin
* refactor: 💡 move state_containers to /common
* refactor: 💡 move /parser to /ast and inline format() function
* refactor: 💡 remove remaining @kbn/interpreter imports
* feat: 🎸 better handling and typing for Executor context
* feat: 🎸 use Executor.run function in plugin
* fix: 🐛 fix TypeScript type errors
* test: 💍 move integration tests into one file
* feat: 🎸 create ExpressionsService
* chore: 🤖 clean up legacy code
* feat: 🎸 use ExpressionsService in /public
* refactor: 💡 move inspector adapters to /common
* feat: 🎸 improve execution
* feat: 🎸 add state to execution state and don't clone AST
* test: 💍 add tests for Execution object
* test: 💍 improve expression test helpers
* test: 💍 add Execution tests
* refactor: 💡 improve required argument checking
* fix: 🐛 fix Kibana TypeScript errors
* test: 💍 add ExpressionsService unit tests
* fix: 🐛 fix Expression plugin TypeScript types
* refactor: 💡 prefix React component with React*
* fix: 🐛 fix X-Pack TypeScript errors
* fix: 🐛 fix test TypeScript errors
* fix: 🐛 fix issues preventing loading
* feat: 🎸 remove getInitialContext() handler
* fix: 🐛 fix TypeScript errors
* chore: 🤖 remove uicomponent interface
* chore: 🤖 remove missing import
* fix: 🐛 correctly handle .query in "kibana" expression function
* refactor: 💡 call first arg in expression functions "input"
* fix: 🐛 do not free Execution state container
* test: 💍 fix tests after refactor
* test: 💍 fix more tests after refactor
* fix: 🐛 remove redundant export
* test: 💍 update intepreter_functional test shapshots
* fix: 🐛 relax "kibana" function throwing on missin gsearch ctx
* refactor: 💡 don't use ExpressionAST interface in Canvas
* docs: ✏️ improve ExpressionRenderer JSDocs
* refactor: 💡 rename context.types to inputTypes in internal fn
* refactor: 💡 replace context.types by unknown in ExprFuncDef
* refactor: 💡 improve expression function definitions in OSS
* fix: 🐛 correctly set name on metric_vis_fn
* refactor: 💡 improve Lens definitions of expression functions
* refactor: 💡 improve Canvas expression function definitions
* test: 💍 add createMockExecutionContext() helper
* refactor: 💡 add some type to events$ observable in expr handler
* feat: 🎸 add types to observables in data handler
* refactor: 💡 use inputTypes in canvas
* fix: 🐛 fix interpreter grammer generation script
* feat: 🎸 allow array in getByAlias
* test: 💍 simplify test function specs
* test: 💍 fix autocomplete tests
* fix: 🐛 use correct expression types and NP getFunctions() API
* refactor: 💡 use NP expressions to get renderer
* fix: 🐛 use context.types on server-side Canvas function defs
* refactor: 💡 use NP API to register Canvas renderers
* feat: 🎸 use NP API to get types
* style: 💄 minor formatting changes
* feat: 🎸 use NP API to get expression functions
* fix: 🐛 fix Canvas workpads
* test: 💍 add missing mock functions
* refactor: 💡 improve Lens func definition argument types
* fix: 🐛 fix Lens type error
* feat: 🎸 make lens datatable work again
* feat: 🎸 bootstrap ExpressionsService on server-side
* feat: 🎸 expose more registry related functions in contract
* feat: 🎸 add environment: server to server-side expressions
* docs: ✏️ add documentation
* test: 💍 add missing Jest mocks
* fix: 🐛 correct TypeScript type
* docs: ✏️ improve documentation
* fix: 🐛 make FunctionHelpDict type contain only Canvas functions
* fix: 🐛 fix merge conflict
* test: 💍 fix expression mocks
* fix: fix TypeScript disabled help type
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-12 09:26:48 +01:00
Tim Sullivan
736ed90ca3
[Reporting/FieldFormats] expose setFieldFormats
and call from ReportingPlugin.start ( #56563 ) ( #56875 )
...
* [Reporting] New Platform Migration
Part of #53898
* fix CI
* fix typescript
Co-authored-by: Alexey Antonov <alexwizp@gmail.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Alexey Antonov <alexwizp@gmail.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-05 11:33:21 -07:00
Greg Thompson
13476af53f
Upgrade EUI to v18.3.0 ( #56228 ) ( #56702 )
...
* eui to 18.3.0
* ts interface update
* src snapshot updates
* x-pack snapshot updates
* icons in nav
* Homepage updates, nav drawer and tests
* feedback
* more feedback
* euiIconType for observability and security
* remove unused translations
Co-authored-by: dave.snider@gmail.com <dave.snider@gmail.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: dave.snider@gmail.com <dave.snider@gmail.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-02-04 09:15:53 -06:00
Peter Pisljar
11f828c5b8
filtering (making it work with expressions) ( #55351 ) ( #56622 )
2020-02-03 11:59:04 -05:00
Nick Partridge
dd8eaab229
[Metric] convert mocha tests to jest ( #54054 ) ( #55210 )
...
* Add fixtures/* alias to tsconfig and jest config
* Convert metric tests to jest
* Convert remaining js files to ts
2020-01-17 13:33:46 -06:00
Chandler Prall
52fc921f09
Upgraded EUI to 18.2.1 ( #55090 ) ( #55132 )
2020-01-17 08:18:45 -07:00
Greg Thompson
e0d6407bde
[7.x] Upgrade EUI to v18.2.0 ( #54786 ) ( #54869 )
...
* Upgrade EUI to v18.2.0 (#54786 )
* 18.2.0
* ts update
* Updated `euiColorVis0`
* Update `euiColorVis1`
* Updating `euiColorVis2`
* Updated `euiColorVis3`
* Updated the rest
* Updated hard-coded viz palette hexes to latest
* src snapshot updates
* x-pack test updates
* mock jest fn
* Updated two vegalite visualization screenshots
Co-authored-by: Caroline Horn <549577+cchaos@users.noreply.github.com>
Co-authored-by: Chandler Prall <chandler.prall@gmail.com>
* snapshot
Co-authored-by: Caroline Horn <549577+cchaos@users.noreply.github.com>
Co-authored-by: Chandler Prall <chandler.prall@gmail.com>
2020-01-14 22:53:57 -06:00
Chandler Prall
2c66ffb3b8
[7.x] Backport/7.x/pr 54042 ( #54799 )
...
* Upgraded EUI to 18.0.0
* Fix breaks from `palette._.colors` changes
* snapshots
* Updated hard coded hex color codes in tests, fixed TS errors
* Updated a functional test's selector; added (BSD-3-Clause AND Apache-2.0) to license checker whitelist
* Functional test selector update
* Updated vega browser-ci tests for palette changes
* One more location for EUI package number update and yarn lock
* Fixed lurking [but introduced] TypeScript logic bug
* Swap a prop definition for the same value but tied closer to its source
* updates for backport
Co-authored-by: Caroline Horn <549577+cchaos@users.noreply.github.com>
2020-01-14 18:53:06 -05:00
Greg Thompson
9314ed1a63
Upgrade EUI to v17.3.1 ( #53655 ) ( #53769 )
...
* eui to 17.3.0
* eui to 17.3.1
* TS updates
* snapshot updates
* update data-test-subj
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2019-12-23 11:12:59 -06:00
Chandler Prall
a5b5a8d201
[7.x ]Backport/7.x/pr 52688 ( #53720 )
...
* more types
* table types changes
* siem table conversions
* Updated rest of x-pack for EUI table typees
* updated x-pack changes against master
* Remove change to Direction's definition in generated file, resolve resulting TS issues by casting
* updated some types, updated snapshots
2019-12-20 13:57:09 -07:00
Greg Thompson
aa16e700c4
Upgrade EUI to v17.0.0 ( #52342 ) ( #52523 )
...
* eui to 17.0.0
* Fix sass imports and mixin usages
* Fix kbn ui-framework
* snapshot updates
* switch text
* switch functional update
* test subject
2019-12-09 12:51:51 -06:00
Greg Thompson
b284c154e5
Upgrade EUI to v16.1.0 ( #52088 ) ( #52340 )
...
* eui 16.1.0
* snapshot udpates
* more snapshot updates
* enqueueStateChange mock, resulting snapshot updates
2019-12-05 16:21:50 -06:00
patrykkopycinski
ba001d36f2
[Dependencies]: upgrade react to latest v16.12.0 ( #51145 ) ( #51868 )
2019-11-28 12:25:09 +01:00
Anton Dosov
81a1f56a3c
Expressions service fixes: better error and loading states handling ( #51183 ) ( #51800 )
...
1. This pr fixes regression in v7.6 - #51153 .
Visualisation which are using ExpressionLoader directly are swallowing render errors in 7.6, because generic error handling is happening only on expression_renderer.tsx level (react component wrapper around renderer).
Now react agnostic render code render.ts, loader.ts:
has it's own default error handler which is toast from notification service.
It also allows to pass custom error handler instead of default one
React expression renderer expression_renderer.tsx:
if consumer wants to render error as react component inline, then the component uses custom error handler from render.ts to wire up react component.
2. This pr fixes issue of loader.ts where initial loading$ was not emitted
Had to change loadingSubject from Subject to BehaviorSubject to remember the last value
3. This pr fixes dependencies in effects of expression_renderer.tsx
# Conflicts:
# src/plugins/expressions/public/loader.test.ts
2019-11-27 14:00:14 +01:00
patrykkopycinski
a44ccb7fab
[SIEM] Fix Timeline drag and drop behavior ( #51558 ) ( #51793 )
2019-11-27 10:56:06 +01:00
Anton Dosov
e74a8066eb
Typescriptify and shim kbn_tp_run_pipeline test plugin ( #50645 ) ( #51714 )
...
* Typscriptify and shim kbn_tp_run_pipeline test plugin
* fix imports to not re-export ‘legacy’ from root of plugin
2019-11-26 15:41:45 +01:00
Greg Thompson
de03089cb2
Upgrade EUI to 16.0.0 ( #50779 ) ( #51241 )
...
* eui to 16.0.0
* type defs
* card click
* snapshot updates
* time format test updates
* ts return
* integration fix
* async
* more time format fixes
* more time format fixes
* test updates
* add uisettings dateformat timepicker test
* after method to clear setting
2019-11-21 09:04:03 -06:00
Anton Dosov
2d633dc1e6
Enable expression service screenshot tests ( #50472 ) ( #51263 )
...
* Enables interpreter screenshot tests which were disabled in #42842
* Refactors tests to use expression service
* Fixes edge cases in expression service render:
** fixes swallowing of promise rejections from renderer.render()
** fixes swallowing of errors which emitted sync in render()
* Adds default value to colorRange type, as otherwise it fails in runtime if not passed
# Conflicts:
# src/plugins/expressions/public/loader.test.ts
2019-11-21 14:56:34 +01:00
Liza Katz
f39a1b29a2
Use NP registry instead of ui/registry/field_formats ( #48108 ) ( #51171 )
...
* Create Field Format Provider
* Pass Field Format as a start dependency
* Register utils in the new field formats
* Fix types issue
* Make FieldFormats instance as a service
* Exclude importing of register.js
* Remove uiExports/fieldFormats imports
* Migrate some dependencies to new Field Format
* Migrate field format to new instance
* Fix type errors
* Fix Jest tests
* Move from getFieldFormat to npSetup
* Fix types errors
* Fix reviews
* Fix types errors
* Fix types
* fix CI
* Bind getConfig to FieldFormatRegisty
* Mock FieldFormat in FieldItem
* Fix DataPanel tests
* Fix DataPanel tests
* Fix Jest tests
* Create a fieldFormats mock for mocha tests
* fix CI
* fix CI
* Mock fieldFormatsRegistry in all visualizations
* Fix 'should create scripted field' functional test
* Change FieldFormat.from return type
* Fix reviews
* Fix mocha test
* Fix mocha tests
* Encapsulate FieldFormatRegistry
* Pretty field_item.tsx
* Fix reviews
* Fix PR comments
* Fix CI
* Replace any by a specific type
* Fix mocha tests
* Remove config from url converter
* Expand Field Format ID type for creating custom converters
* Fix a jest test
* Update migration doc
* Add quote and semicolon
* Fix types errors which doesn't relate to the aim of PR
2019-11-20 18:58:26 +02:00
Greg Thompson
2a7a122dab
Upgrade EUI to v14.9.0 ( #49678 ) ( #50526 )
...
* eui to 14.9.0
* euiswitch updtates
* misc snapshot
* x-pack functional fixes
* more euiswitch functional test fixes
* label-less switches for spaces management
* more euiswitch fixes
* telemetry form a11y
* snapshot update
* label updates
* more switch updates
* lint
2019-11-14 09:04:02 -06:00
Peter Pisljar
f4b918da11
remove visualize loader ( #46910 ) ( #50319 )
...
# Conflicts:
# src/legacy/core_plugins/expressions/public/np_ready/public/execute.ts
# src/legacy/core_plugins/expressions/public/np_ready/public/loader.test.ts
2019-11-12 11:03:25 -05:00
Chandler Prall
2ee194ea5f
Upgrade EUI to v14.8.0 ( #49375 ) ( #49658 )
...
* Upgrade EUI to v14.8.0
* update snapshot for determinism
2019-10-29 13:21:40 -06:00
Greg Thompson
3848bbb4bb
Upgrade EUI to 14.7.0 ( #49110 ) ( #49201 )
...
* eui 14.7.0
* icon updates
* snapshot updates
* storyshot updates
* remove config addition
2019-10-24 11:50:05 -05:00
Greg Thompson
5a5b042136
Upgrade EUI to 14.5.0 ( #48119 ) ( #48241 )
...
* eui 14.5.0
* snapshot updates
* update ChromeBreadcrumb interface
* change bad id selector to data-test-subj selector
2019-10-15 11:56:01 -05:00
Vadim Dalecky
831d708f25
Improve Interpreter TypeScript typings ( #47212 ) ( #47485 )
...
* fix: 🐛 correct createError() implementation and typings
* feat: 🎸 improve expressions service TypeScript types
* perf: ⚡ ️ improve ExpressionLoader class
* feat: 🎸 improve Interpreter types
* feat: 🎸 improve Interpreter function typings
* feat: 🎸 improve Interepreter test TypeScript typings
* feat: 🎸 TypeScriptify kibana_context expression function
* feat: 🎸 TypeScriptify "kibana" expressions functions
* feat: 🎸 TypeScriptify "visualization" function
* feat: 🎸 TypeScriptify Interpreter initialization
* test: 💍 fix interpreter tests
* feat: 🎸 add TypeScript typing to some of the executor internals
* fix: 🐛 this fixes visualizations; why?
* chore: 🤖 delete redundant files and fix TypeScript error
* perf: ⚡ ️ use not null assertion for .dataHandler
* refactor: 💡 stricten AnyExpressionFunction type
* fix: 🐛 set correct initial pipeline exec context
* feat: 🎸 improve expression type typings
* test: 💍 call interpreter with correct input from func tests
2019-10-07 22:58:31 +02:00
Greg Thompson
ec9c68f7af
Upgrade EUI to 14.4.0 ( #46949 ) ( #47247 )
...
* eui to 14.4.0
* euicard ts updates
* snaps
2019-10-03 13:55:40 -05:00
dave.snider@gmail.com
9eeeb24dc3
Update EUI to 14.3.0 ( #46824 ) ( #46867 )
...
* Update EUI to 14.3.0
and update snaps
* TS Colors fix
2019-09-27 20:48:49 -04:00
Caroline Horn
159fee4e5b
Upgrade EUI to 14.2.0 ( #46075 ) ( #46160 )
...
* Upgraded EUI to 14.2.0
* Remove form row + button shim
* Uncomment compressed prop from EuiComboBoxes
* Fix and/or simplify prepend/append usages
* Update two test files to correctly call EuiRange's onChange prop
2019-09-19 14:36:24 -04:00
Caroline Horn
82b23d43d7
Update EUI to 14.0.0 ( #45475 ) ( #45813 )
2019-09-16 15:52:47 -04:00
Greg Thompson
3a0059ab69
[7.x] Upgrade EUI to 13.8.1 ( #45052 ) ( #45398 )
...
* Upgrade EUI to 13.8.1 (#45052 )
* eui to 13.8.0
* euibutton ts updates
* euicontextmenupanel ts updates
* misc ts updates
* src snapshot updates
* x-pack snapshot updates
* 13.8.1
* snapshot update (poor merge conflict resolution)
2019-09-11 12:52:43 -05:00
Greg Thompson
c6f6ddfd47
eui to 13.6.1 ( #44149 ) ( #44183 )
2019-08-27 19:41:54 -05:00
Greg Thompson
9194883c0d
Upgrade EUI to 13.6.0 ( #43916 ) ( #44146 )
...
* eui to 13.6.0
* euirange updates
* euipage snapshot updates
* add classname toggle for nav locking
* new header wrapper component; removed observable
* Add styles for locked nav
And updated BEM naming of `header-global-wrapper`
* move headerwrapper
* isLocked localStorage
* remove useEffect
2019-08-27 17:25:09 -05:00
dave.snider@gmail.com
905ab26de3
Upgrade EUI@13.3.0 ( #42858 ) ( #43613 )
...
Upgrades 13.3.0
2019-08-20 16:28:58 -07:00
Dmitry Lemeshko
feb070df6a
bump chromedriver version to 76 ( #42468 ) ( #42874 )
...
* bump chromedriver version to 76
* [test/interpreter_functional] update snapshots
* [test/interpreter_functional] skip failing tests
* Revert "[test/interpreter_functional] update snapshots"
This reverts commit 6401554882
.
* [test/interpreter_functional] skip snapshot tests
2019-08-08 07:40:37 +02:00
Chandler Prall
4295fe2d3c
Upgraded EUI 13.0.0 -> 13.1.1 ( #42298 ) ( #42604 )
...
* Upgraded EUI 13.0.0 -> 13.1.0
* Bump to 13.1.1
* Reset MutationObserver polyfill to original operation
* Reset x-pack's MutationObserver polyfill to original operation
2019-08-05 09:26:43 -06:00
dave.snider@gmail.com
27f1696f4e
EUI 13.0.0 ( #41723 ) ( #42540 )
2019-08-02 13:45:20 -07:00
Vadim Dalecky
9cefd7e9ce
[7.x] Inspector 👉 New Platform ( #42164 ) ( #42530 )
...
* refactor: 💡 remove SASS and clean up InspectorView component
* refactor: 💡 clean up inspector, convert .js -> .ts
* feat: 🎸 add Inspector NP plugin boilerplate
* feat: 🎸 move view registry to NP, move types, add registerView
* docs: ✏️ move inspector README to NP plugin
* refactor: 💡 move ui/inspector/ui to NP
* refactor: 💡 move Inspector adapters to NP
* refactor: 💡 move Inspector.isAvailable to New Platform
* refactor: 💡 move Inspector.open to New Platform plugin
* test: 💍 move Inspector tests to NP plugin
* chore: 🤖 fix imports
* feat: 🎸 update translations
* test: 💍 fix failing translation snapshot
* test: 💍 fix yarn test:browser tests
* Update src/legacy/ui/public/inspector/build_tabular_inspector_data.ts
Co-Authored-By: Stacey Gammon <gammon@elastic.co>
* [ML] [Job wizards] switching to new kibana context provider
* fix: 🐛 specify translation path directly to the plugin
* docs: ✏️ add comment about Webpack config fix
* Update src/legacy/ui/public/inspector/build_tabular_inspector_data.ts
Co-Authored-By: Stacey Gammon <gammon@elastic.co>
* Update src/legacy/ui/public/inspector/build_tabular_inspector_data.ts
Co-Authored-By: Stacey Gammon <gammon@elastic.co>
* feat: 🎸 improve types as per review
* fix: 🐛 remove <InspectorView> comp and fix view layouts
* test: 💍 improve mocks
2019-08-02 18:36:18 +02:00
Greg Thompson
657d45df62
Upgrade EUI to 12.4.0 ( #41577 ) ( #41691 )
...
* eui 12.4.0
* styled-components ts conflict
* update combobox test service to always open on open call
* Revert "update combobox test service to always open on open call"
This reverts commit 43074e6006
.
* scroll combobox into view
* scroll before filter
2019-07-22 14:15:18 -05:00
Peter Pisljar
945dde0e85
unskipping interpreter functional tests ( #40840 ) ( #40871 )
2019-07-22 09:20:44 +02:00
Chandler Prall
b9bb2e60e5
EUI 12.3.1 ( #41061 ) ( #41164 )
...
* eui 12.3.1
* add data logos
* Fix TS uses, one SCSS use of euiOverflowShadow
* fix overflow shadow mixin in sass
* homepage logos
* refix typo on homepage
* hp snaps
2019-07-15 13:18:19 -06:00
dave.snider@gmail.com
3f9ffdb78c
EUI@12.2.0 ( #40039 ) ( #40059 )
...
* EUI@12.2.0
* update EuiFormRow to hold a single child, removes comments only
2019-07-01 14:39:31 -04:00
Peter Pisljar
5341d11005
updating metricvis interpreter func arguments ( #34532 ) ( #39872 )
2019-06-28 08:16:09 +02:00
Greg Thompson
4070c581ec
[7.x] Upgrade EUI to 12.1.0 ( #39601 ) ( #39699 )
...
* Upgrade EUI to 12.1.0 (#39601 )
* eui@12.1.0
* jest regenerator-runtime babel-polyfill
* TS Toast -> EuiGlobalToastListToast
* EuiBadge
* EuiCopy
* snapshot updates
* simplify toast interface usage
* misc review cleanup
* remove eui core-js resolution
* toast interface import
2019-06-26 13:07:22 -05:00
Greg Thompson
0ca094b416
[7.x] Upgrade EUI to 11.3.2 ( #38262 ) ( #39031 )
...
* Upgrade EUI to 11.3.2 (#38262 )
* eui 11.3.1
* EuiSuperSelect TS updates
* EuiColorPicker updates
* EuiBadge updates
* a11y updates
* i18n service updates
* remove unused translations
* move valueOfSelected logic to private method
* update EuiColorPicker class name
* Updated canvas storyshots
* i18n fixes; maps color selection position
* i18n snapshot updates
* update canvas storyshots
* snapshot updates
* 11.3.2
* maps colorpicker
* space avatar colorpicker
* update i18n json
2019-06-17 07:57:18 -06:00