Skip to content

Commit

Permalink
update api docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pan-kot committed Oct 18, 2024
1 parent e2cdb62 commit dd8a730
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__tests__/__snapshots__/documenter.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -12667,7 +12667,7 @@ The \`operation\` property has two valid values: "and", "or", and controls the j
The \`tokens\` property is an array of objects that will be displayed to the user beneath the filtering input. When \`enableTokenGroups=true\`, the
\`tokenGroups\` property is used instead, which supports nested tokens.
Each token has the following properties:
* value [string]: The string value of the token to be used as a filter.
* value [unknown]: The value of the token to be used as a filter. Can be null or string for default tokens, string[] for enum tokens, and anything for tokens with custom forms.
* propertyKey [string]: The key of the corresponding property in filteringProperties.
* operator ['<' | '<=' | '>' | '>=' | ':' | '!:' | '=' | '!=' | '^' | '!^']: The operator which indicates how to filter the dataset using this token.
",
Expand Down
2 changes: 1 addition & 1 deletion src/property-filter/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export interface PropertyFilterProps extends BaseComponentProps, ExpandToViewpor
* `tokenGroups` property is used instead, which supports nested tokens.
*
* Each token has the following properties:
* * value [string]: The string value of the token to be used as a filter.
* * value [unknown]: The value of the token to be used as a filter. Can be null or string for default tokens, string[] for enum tokens, and anything for tokens with custom forms.
* * propertyKey [string]: The key of the corresponding property in filteringProperties.
* * operator ['<' | '<=' | '>' | '>=' | ':' | '!:' | '=' | '!=' | '^' | '!^']: The operator which indicates how to filter the dataset using this token.
*/
Expand Down

0 comments on commit dd8a730

Please sign in to comment.