@clasing/ui 0.1.75 → 0.1.76

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
@@ -160,6 +160,11 @@ declare interface DropdownSelectProps<T extends string | number | readonly strin
160
160
  value?: T;
161
161
  onChange?: (value: T | null) => void;
162
162
  dropdownWidth?: PopoverWidth;
163
+ asyncSearch?: boolean;
164
+ isLoading?: boolean;
165
+ onSearch?: (query: string) => void;
166
+ noOptionsMessage?: string;
167
+ disableSearchWhileLoading?: boolean;
163
168
  }
164
169
 
165
170
  declare interface IBadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeStyles> {