tcce-design-system 0.3.18 → 0.3.20
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.
|
@@ -280,7 +280,7 @@ export declare const ColumnFilter: {
|
|
|
280
280
|
};
|
|
281
281
|
|
|
282
282
|
export declare const ColumnFilterMenu: {
|
|
283
|
-
({ options, selectedValues, onChange, onClose, searchPlaceholder, }: ColumnFilterMenuProps): JSX.Element;
|
|
283
|
+
({ options, selectedValues, onChange, onClose, searchPlaceholder, position, }: ColumnFilterMenuProps): JSX.Element;
|
|
284
284
|
displayName: string;
|
|
285
285
|
};
|
|
286
286
|
|
|
@@ -290,6 +290,10 @@ export declare interface ColumnFilterMenuProps {
|
|
|
290
290
|
onChange: (values: string[]) => void;
|
|
291
291
|
onClose: () => void;
|
|
292
292
|
searchPlaceholder?: string;
|
|
293
|
+
position: {
|
|
294
|
+
top: number;
|
|
295
|
+
left: number;
|
|
296
|
+
};
|
|
293
297
|
}
|
|
294
298
|
|
|
295
299
|
export declare interface ColumnFilterProps<T extends Record<string, unknown>> {
|