Skip to content

Commit 8f9baa9

Browse files
authored
Merge pull request #303 from appbaseio/feat-searchbox/category-value-setter
feat: add doc ref for setCategoryValue setter
2 parents 72d63b6 + d224520 commit 8f9baa9

6 files changed

Lines changed: 8 additions & 0 deletions

File tree

content/docs/reactivesearch/react-native-searchbox/searchcomponent.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,6 +579,7 @@ Returns the current mic instance. Can be used to set mic language and other prop
579579
The following methods can be used to set or update the properties in the search state:
580580

581581
- **setValue** `( value: any, options?: Options ) => void` can be used to set the `value` property
582+
- **setCategoryValue** `(categoryValue: string, options?: Options) => void` can be used to set the `categoryValue` property
582583
- **setSize** `( size: number, options?: Options ) => void` can be used to set the `size` property
583584
- **setFrom** `( from: number, options?: Options ) => void` can be used to set the `from` property. Useful to implement pagination.
584585
- **setFuzziness** `( fuzziness: string|number, options?: Options ) => void` can be used to set the `fuzziness` property.

content/docs/reactivesearch/react-searchbox/searchbox.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -564,6 +564,7 @@ Here, we are specifying that the suggestions should update whenever one of the b
564564
- **`triggerCustomQuery`** `(options): Promise<any>` can be used to trigger the `defaultQuery` programmatically
565565
- **`setDataField`** `( dataField: string | Array<string | DataField>, options?: Options ) => void`
566566
- **`setValue`** `( value: any, options?: Options ) => void` can be used to set the `value` property
567+
- **setCategoryValue** `(categoryValue: string, options?: Options) => void` can be used to set the `categoryValue` property.
567568
- **`setSize`** `( size: number, options?: Options ) => void` can be used to set the `size` property
568569
- **`setFrom`** `( from: number, options?: Options ) => void` can be used to set the `from` property. Useful to implement pagination.
569570
- **setAfter** `(after: object, options?: Options) => void`

content/docs/reactivesearch/react-searchbox/searchcomponent.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,7 @@ Returns the current mic instance. Can be used to set mic language and other prop
583583
The following methods can be used to set or update the properties in the search state:
584584

585585
- **setValue** `( value: any, options?: Options ) => void` can be used to set the `value` property
586+
- **setCategoryValue** `(categoryValue: string, options?: Options) => void` can be used to set the `categoryValue` property.
586587
- **setSize** `( size: number, options?: Options ) => void` can be used to set the `size` property
587588
- **setFrom** `( from: number, options?: Options ) => void` can be used to set the `from` property. Useful to implement pagination.
588589
- **setFuzziness** `( fuzziness: string|number, options?: Options ) => void` can be used to set the `fuzziness` property.

content/docs/reactivesearch/searchbase/overview/searchcomponent.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -593,6 +593,8 @@ The following methods of `SearchComponent` class can be used to set or update th
593593
can be used to set the custom `results`
594594
- **setValue** `(value: string, options?: Options) => void`
595595
can be used to set the `value` property
596+
- **setCategoryValue** `(categoryValue: string, options?: Options) => void`
597+
can be used to set the `categoryValue` property.
596598
597599
- **setReact** `(react: Object, options?: types.Options): void`
598600
can be used to set the `react` property
@@ -708,6 +710,7 @@ These are the properties that can be subscribed for the changes:
708710
- `requestStatus`
709711
- `error`
710712
- `value`
713+
- `categoryValue`
711714
- `query`
712715
- `micStatus`
713716
- `dataField`

content/docs/reactivesearch/vue-searchbox/searchbox.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,7 @@ These are the properties that can be subscribed to:
872872
- **`triggerCustomQuery`** `(options): Promise<any>` can be used to trigger the `defaultQuery` programmatically
873873
- **`setDataField`** `( dataField: String | Array<String | DataField>, options?: Options ) => void`
874874
- **`setValue`** `( value: any, options?: Options ) => void` can be used to set the `value` property
875+
- **setCategoryValue** `(categoryValue: string, options?: Options) => void` can be used to set the `categoryValue` property.
875876
- **`setSize`** `( size: Number, options?: Options ) => void` can be used to set the `size` property
876877
- **`setFrom`** `( from: Number, options?: Options ) => void` can be used to set the `from` property. Useful to implement pagination.
877878
- **`setFuzziness`** `( fuzziness: String|Number, options?: Options ) => void` can be used to set the `fuzziness` property.

content/docs/reactivesearch/vue-searchbox/searchcomponent.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -648,6 +648,7 @@ Returns the current mic instance. Can be used to set mic language and other prop
648648
The following methods can be used to set or update the properties in the search state:
649649
650650
- **setValue** `( value: any, options?: Options ) => void` can be used to set the `value` property
651+
- **setCategoryValue** `(categoryValue: string, options?: Options) => void` can be used to set the `categoryValue` property.
651652
- **setSize** `( size: number, options?: Options ) => void` can be used to set the `size` property
652653
- **setFrom** `( from: number, options?: Options ) => void` can be used to set the `from` property. Useful to implement pagination.
653654
- **setAfter** `(after: object, options?: Options) => void`

0 commit comments

Comments
 (0)