vrfi-design-system 1.0.39 → 1.0.41

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.
package/dist/index.d.ts CHANGED
@@ -45,6 +45,7 @@ import { JSX as JSX_2 } from 'react';
45
45
  import { Justify } from '../../enums/justify.enum';
46
46
  import { LoaderSizes } from '../../../enums/LoaderSizes';
47
47
  import { MenuItemType } from 'antd/lib/menu/interface';
48
+ import { Meta } from '../../../models/meta.model';
48
49
  import { ModalProps as ModalProps_2 } from 'antd/lib/modal';
49
50
  import { MouseEvent as MouseEvent_2 } from 'react';
50
51
  import { NotificationTypes } from '../../enums/notificationTypes';
@@ -318,6 +319,18 @@ export declare interface FileUploadProps {
318
319
 
319
320
  export declare const FileUploadWithDropdown: ({ loading, required, selectLabel, dropdownName, dropdownOptions, className, value, onChange, maxFileSize, uploadHint, uploadTitle, uploadIcon, supportedFileType, ...propsDragDrop }: CustomDropDownFileUploadProps) => default_2.JSX.Element;
320
321
 
322
+ export declare const FiltersListing: (props: FiltersListingProps) => default_2.JSX.Element;
323
+
324
+ export declare interface FiltersListingProps {
325
+ filterData: Meta[];
326
+ searchPlaceholder?: string;
327
+ loading?: boolean;
328
+ onSelectedChange?: (selectedIds: number[]) => void;
329
+ onClose: () => void;
330
+ noDataText?: string;
331
+ noDataSubText?: string;
332
+ }
333
+
321
334
  export { FilterValue }
322
335
 
323
336
  export declare const FloatingLabel: (props: FloatingLabelProps) => default_2.JSX.Element;
@@ -657,6 +670,8 @@ export declare interface UserBadgeProps {
657
670
  inviteLink?: string;
658
671
  shareLink?: string;
659
672
  onClose: () => void;
673
+ visible: boolean;
674
+ modalWidth: number;
660
675
  }
661
676
 
662
677
  export declare function UserStatus(props: UserStatusProps): default_2.JSX.Element;