mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Bump immer dependencies (#90267)
* Bump immer dependencies * Update processed_search_response.ts * Update processed_search_response.ts Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
fd1d965039
commit
8769c8d3ba
3 changed files with 19 additions and 10 deletions
|
@ -220,7 +220,7 @@
|
|||
"http-proxy-agent": "^2.1.0",
|
||||
"https-proxy-agent": "^5.0.0",
|
||||
"idx": "^2.5.6",
|
||||
"immer": "^1.5.0",
|
||||
"immer": "^8.0.1",
|
||||
"inline-style": "^2.0.0",
|
||||
"intl": "^1.2.5",
|
||||
"intl-format-cache": "^2.1.0",
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
*/
|
||||
|
||||
import { produce } from 'immer';
|
||||
import { Index } from '../../../../types';
|
||||
|
||||
const shard1 = {
|
||||
id: ['L22w_FX2SbqlQYOP5QrYDg', '.kibana_1', '0'],
|
||||
|
@ -336,11 +337,14 @@ const search1Child = {
|
|||
(searchRoot.treeRoot as any) = search1;
|
||||
(shard1.searches[0] as any) = searchRoot;
|
||||
|
||||
export const processedResponseWithFirstShard = produce<any>(null, () => [
|
||||
{
|
||||
shards: [shard1],
|
||||
time: 0.058419,
|
||||
name: '.kibana_1',
|
||||
visible: false,
|
||||
},
|
||||
]);
|
||||
export const processedResponseWithFirstShard = produce<Index[]>(
|
||||
[
|
||||
{
|
||||
shards: [shard1],
|
||||
time: 0.058419,
|
||||
name: '.kibana_1',
|
||||
visible: false,
|
||||
},
|
||||
],
|
||||
() => undefined
|
||||
);
|
||||
|
|
|
@ -17000,11 +17000,16 @@ immediate@~3.0.5:
|
|||
resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b"
|
||||
integrity sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=
|
||||
|
||||
immer@1.10.0, immer@^1.5.0:
|
||||
immer@1.10.0:
|
||||
version "1.10.0"
|
||||
resolved "https://registry.yarnpkg.com/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
|
||||
integrity sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg==
|
||||
|
||||
immer@^8.0.1:
|
||||
version "8.0.1"
|
||||
resolved "https://registry.yarnpkg.com/immer/-/immer-8.0.1.tgz#9c73db683e2b3975c424fb0572af5889877ae656"
|
||||
integrity sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==
|
||||
|
||||
import-cwd@^2.0.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue