@zimyo/ui 1.6.2 → 1.6.3

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
@@ -37,8 +37,9 @@ interface SelectProps<OptionType extends Option> extends Props<OptionType, boole
37
37
  searchByID?: boolean;
38
38
  value?: any;
39
39
  floatingLabel?: boolean;
40
+ maxChipVisible?: number;
40
41
  }
41
- declare function Select<OptionType extends Option>({ label, error, className, size, required, valueKey, labelKey, isMulti, value, options, onChange, searchByID, floatingLabel, ...props }: SelectProps<OptionType>): react_jsx_runtime.JSX.Element;
42
+ declare function Select<OptionType extends Option>({ label, error, className, size, required, valueKey, labelKey, isMulti, value, options, onChange, searchByID, floatingLabel, maxChipVisible, ...props }: SelectProps<OptionType>): react_jsx_runtime.JSX.Element;
42
43
 
43
44
  interface AccordionProps extends Omit<AccordionProps$1, 'sx' | 'onChange' | 'expanded'> {
44
45
  type?: 'single' | 'multiple';
@@ -133,7 +134,7 @@ declare const Code: ({ children, sx }: CodeProps) => react_jsx_runtime.JSX.Eleme
133
134
  interface ModalProps {
134
135
  open: boolean;
135
136
  onClose: () => void;
136
- title?: string;
137
+ title?: string | any;
137
138
  description?: string;
138
139
  children?: React$1.ReactNode;
139
140
  actions?: React$1.ReactNode;