Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykkopycinski committed Oct 2, 2020
1 parent 3f18f03 commit b5974ae
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
<b>Signature:</b>

```typescript
debouncedFetch: _.DebouncedFunc<(searchValue: string) => Promise<void>>;
debouncedFetch: ((searchValue: string) => Promise<void>) & _.Cancelable;
```
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export declare class IndexPatternSelect extends Component<IndexPatternSelectProp
| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [debouncedFetch](./kibana-plugin-plugins-data-public.indexpatternselect.debouncedfetch.md) | | <code>_.DebouncedFunc&lt;(searchValue: string) =&gt; Promise&lt;void&gt;&gt;</code> | |
| [debouncedFetch](./kibana-plugin-plugins-data-public.indexpatternselect.debouncedfetch.md) | | <code>((searchValue: string) =&gt; Promise&lt;void&gt;) &amp; _.Cancelable</code> | |
| [fetchOptions](./kibana-plugin-plugins-data-public.indexpatternselect.fetchoptions.md) | | <code>(searchValue?: string) =&gt; void</code> | |
| [fetchSelectedIndexPattern](./kibana-plugin-plugins-data-public.indexpatternselect.fetchselectedindexpattern.md) | | <code>(indexPatternId: string) =&gt; Promise&lt;void&gt;</code> | |
| [onChange](./kibana-plugin-plugins-data-public.indexpatternselect.onchange.md) | | <code>(selectedOptions: any) =&gt; void</code> | |
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/plugins/data/public/public.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1309,7 +1309,7 @@ export class IndexPatternSelect extends Component<IndexPatternSelectProps> {
// (undocumented)
componentWillUnmount(): void;
// (undocumented)
debouncedFetch: _.DebouncedFunc<(searchValue: string) => Promise<void>>;
debouncedFetch: ((searchValue: string) => Promise<void>) & _.Cancelable;
// (undocumented)
fetchOptions: (searchValue?: string) => void;
// (undocumented)
Expand Down
11 changes: 9 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21292,7 +21292,7 @@ parse-link-header@^1.0.1:
dependencies:
xtend "~4.0.1"

parse-ms@^2.0.0:
parse-ms@^2.0.0, parse-ms@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-2.1.0.tgz#348565a753d4391fa524029956b172cb7753097d"
integrity sha512-kHt7kzLoS9VBZfUsiKjv43mr91ea+U05EyKkEtqp7vNbHxmaVuEqN7XxeEVnGrMtYOAxGrDElSi96K7EgO1zCA==
Expand Down Expand Up @@ -21997,7 +21997,14 @@ pretty-hrtime@^1.0.0, pretty-hrtime@^1.0.3:
resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1"
integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=

pretty-ms@*, pretty-ms@^4.0.0:
pretty-ms@*:
version "7.0.0"
resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-7.0.0.tgz#45781273110caf35f55cab21a8a9bd403a233dc0"
integrity sha512-J3aPWiC5e9ZeZFuSeBraGxSkGMOvulSWsxDByOcbD1Pr75YL3LSNIKIb52WXbCLE1sS5s4inBBbryjF4Y05Ceg==
dependencies:
parse-ms "^2.1.0"

pretty-ms@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-4.0.0.tgz#31baf41b94fd02227098aaa03bd62608eb0d6e92"
integrity sha512-qG66ahoLCwpLXD09ZPHSCbUWYTqdosB7SMP4OffgTgL2PBKXMuUsrk5Bwg8q4qPkjTXsKBMr+YK3Ltd/6F9s/Q==
Expand Down

0 comments on commit b5974ae

Please sign in to comment.