tsv2-library 0.2.49 → 0.2.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -87,6 +87,27 @@ export interface MultiSelectProps {
87
87
  * @default 'Search'
88
88
  */
89
89
  filterPlaceholder?: string;
90
+ /**
91
+ * Defines how the selected items are displayed.
92
+ *
93
+ * @default 'chip'
94
+ */
95
+ display?: 'comma' | 'chip';
96
+ /**
97
+ * Defines the placeholder (label in input) as medium font.
98
+ * Used in preset.
99
+ *
100
+ * @default false
101
+ */
102
+ fontMediumPlaceholder?: boolean;
103
+ /**
104
+ * Label to display after exceeding max selected labels.
105
+ */
106
+ selectedItemsLabel?: string;
107
+ /**
108
+ * Decides how many selected item labels to show at most.
109
+ */
110
+ maxSelectedLabels?: number;
90
111
  }
91
112
 
92
113
  /**