From 3395ccb5c80208093ccbd350c589d8243b9af346 Mon Sep 17 00:00:00 2001
From: Mohd Ashraf <57627350+mohdashraf010897@users.noreply.github.com>
Date: Wed, 19 Jan 2022 00:26:25 +0530
Subject: [PATCH 1/2] feat(vue): added isOpen prop deffor MultiDropdownList
---
content/docs/reactivesearch/vue/list/MultiDropdownList.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/docs/reactivesearch/vue/list/MultiDropdownList.md b/content/docs/reactivesearch/vue/list/MultiDropdownList.md
index 1761a0056..36f1b0fc2 100644
--- a/content/docs/reactivesearch/vue/list/MultiDropdownList.md
+++ b/content/docs/reactivesearch/vue/list/MultiDropdownList.md
@@ -248,7 +248,7 @@ export default {
enable creating a URL query string parameter based on the selected value of the list. This is useful for sharing URLs with the component state. Defaults to `false`.
- **showLoadMore** `Boolean` [optional]
defaults to `false` and works only with elasticsearch >= 6 since it uses [composite aggregations](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-composite-aggregation.html). This adds a "Load More" button to load the aggs on demand combined with the `size` prop. Composite aggregations are in beta and this is an experimental API which might change in a future release.
-
+- **isOpen** `Boolean` [optional] When set to `true` the dropdown is displayed on the initial render. Defaults to `false`.
## Demo
From 16c34170f30c688f1cb684ad409f9b8ece601145 Mon Sep 17 00:00:00 2001
From: Mohd Ashraf <57627350+mohdashraf010897@users.noreply.github.com>
Date: Wed, 19 Jan 2022 00:28:15 +0530
Subject: [PATCH 2/2] feat(vue): added isOpen prop deffor SingleDropdownList
---
content/docs/reactivesearch/vue/list/SingleDropdownList.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/content/docs/reactivesearch/vue/list/SingleDropdownList.md b/content/docs/reactivesearch/vue/list/SingleDropdownList.md
index ac8110224..4f37f62f6 100644
--- a/content/docs/reactivesearch/vue/list/SingleDropdownList.md
+++ b/content/docs/reactivesearch/vue/list/SingleDropdownList.md
@@ -209,6 +209,7 @@ You can use render as a slot as shown below:
- **showLoadMore** `Boolean` [optional]
defaults to `false` and works only with elasticsearch >= 6 since it uses [composite aggregations](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-composite-aggregation.html). This adds a "Load More" button to load the aggs on demand combined with the `size` prop. Composite aggregations are in beta and this is an experimental API which might change in a future release.
+- **isOpen** `Boolean` [optional] When set to `true` the dropdown is displayed on the initial render. Defaults to `false`.
## Demo