Skip to content

Commit b5974ae

Browse files
fix
1 parent 3f18f03 commit b5974ae

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternselect.debouncedfetch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
<b>Signature:</b>
88

99
```typescript
10-
debouncedFetch: _.DebouncedFunc<(searchValue: string) => Promise<void>>;
10+
debouncedFetch: ((searchValue: string) => Promise<void>) & _.Cancelable;
1111
```

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatternselect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export declare class IndexPatternSelect extends Component<IndexPatternSelectProp
2020
2121
| Property | Modifiers | Type | Description |
2222
| --- | --- | --- | --- |
23-
| [debouncedFetch](./kibana-plugin-plugins-data-public.indexpatternselect.debouncedfetch.md) | | <code>_.DebouncedFunc&lt;(searchValue: string) =&gt; Promise&lt;void&gt;&gt;</code> | |
23+
| [debouncedFetch](./kibana-plugin-plugins-data-public.indexpatternselect.debouncedfetch.md) | | <code>((searchValue: string) =&gt; Promise&lt;void&gt;) &amp; _.Cancelable</code> | |
2424
| [fetchOptions](./kibana-plugin-plugins-data-public.indexpatternselect.fetchoptions.md) | | <code>(searchValue?: string) =&gt; void</code> | |
2525
| [fetchSelectedIndexPattern](./kibana-plugin-plugins-data-public.indexpatternselect.fetchselectedindexpattern.md) | | <code>(indexPatternId: string) =&gt; Promise&lt;void&gt;</code> | |
2626
| [onChange](./kibana-plugin-plugins-data-public.indexpatternselect.onchange.md) | | <code>(selectedOptions: any) =&gt; void</code> | |

packages/kbn-optimizer/src/integration_tests/__snapshots__/basic_optimization.test.ts.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/plugins/data/public/public.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1309,7 +1309,7 @@ export class IndexPatternSelect extends Component<IndexPatternSelectProps> {
13091309
// (undocumented)
13101310
componentWillUnmount(): void;
13111311
// (undocumented)
1312-
debouncedFetch: _.DebouncedFunc<(searchValue: string) => Promise<void>>;
1312+
debouncedFetch: ((searchValue: string) => Promise<void>) & _.Cancelable;
13131313
// (undocumented)
13141314
fetchOptions: (searchValue?: string) => void;
13151315
// (undocumented)

yarn.lock

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21292,7 +21292,7 @@ parse-link-header@^1.0.1:
2129221292
dependencies:
2129321293
xtend "~4.0.1"
2129421294

21295-
parse-ms@^2.0.0:
21295+
parse-ms@^2.0.0, parse-ms@^2.1.0:
2129621296
version "2.1.0"
2129721297
resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d"
2129821298
integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==
@@ -21997,7 +21997,14 @@ pretty-hrtime@^1.0.0, pretty-hrtime@^1.0.3:
2199721997
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
2199821998
integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=
2199921999

22000-
pretty-ms@*, pretty-ms@^4.0.0:
22000+
pretty-ms@*:
22001+
version "7.0.0"
22002+
resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-7.0.0.tgz#45781273110caf35f55cab21a8a9bd403a233dc0"
22003+
integrity sha512-J3aPWiC5e9ZeZFuSeBraGxSkGMOvulSWsxDByOcbD1Pr75YL3LSNIKIb52WXbCLE1sS5s4inBBbryjF4Y05Ceg==
22004+
dependencies:
22005+
parse-ms "^2.1.0"
22006+
22007+
pretty-ms@^4.0.0:
2200122008
version "4.0.0"
2200222009
resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-4.0.0.tgz#31baf41b94fd02227098aaa03bd62608eb0d6e92"
2200322010
integrity sha512-qG66ahoLCwpLXD09ZPHSCbUWYTqdosB7SMP4OffgTgL2PBKXMuUsrk5Bwg8q4qPkjTXsKBMr+YK3Ltd/6F9s/Q==

0 commit comments

Comments
 (0)