File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
packages/main/src/components/FilterGroupItem Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ export interface FilterGroupItemPropTypes extends CommonProps {
5
5
/**
6
6
* The mandatory key each `FilterGroupItem` needs to implement.
7
7
*
8
- * __Note:__ `filterKey` needs to be unique for each `FilterGroupItem` per `FilterBar`.
9
- *
10
- * __Note:__ Whitespaces are not supported!
8
+ * __Note:__
9
+ * - `filterKey` needs to be unique for each `FilterGroupItem` per `FilterBar`.
10
+ * - Whitespace characters are not supported.
11
11
*/
12
12
filterKey : string | number ;
13
13
/**
@@ -27,7 +27,6 @@ export interface FilterGroupItemPropTypes extends CommonProps {
27
27
/**
28
28
* Defines the group name of the filter.
29
29
*
30
- *
31
30
* @default "Basic"
32
31
*/
33
32
groupName ?: string ;
@@ -44,12 +43,13 @@ export interface FilterGroupItemPropTypes extends CommonProps {
44
43
/**
45
44
* Defines whether the filter is required.
46
45
*
47
- * __Note:__ Required filters cannot be removed from the `FilterBar`.
46
+ * __Note:__
47
+ * - Required filters cannot be removed from the `FilterBar`.
48
+ * - If `required` is set to `true`, the corresponding input component should also receive the `required` prop explicitly.
48
49
*/
49
50
required ?: boolean ;
50
51
/**
51
52
* Defines whether the filter is hidden.
52
- *
53
53
*/
54
54
hidden ?: boolean ;
55
55
/**
You can’t perform that action at this time.
0 commit comments