@vacano/ui 1.15.1 → 1.15.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
@@ -61,7 +61,7 @@ export declare type AlertVariant = 'normal' | 'success' | 'warning' | 'danger';
61
61
 
62
62
  export declare const alpha: (hexColor: string, percentage: number) => string;
63
63
 
64
- export declare const Autocomplete: ({ className, classnames, disabled, fullWidth, label, ref, message, size, variant, value, onChange, onSearch, debounceMs, minChars, noResultsMessage, ...rest }: AutocompleteProps) => JSX.Element;
64
+ export declare const Autocomplete: ({ className, classnames, disabled, fullWidth, label, ref, message, portalRenderNode, size, variant, value, onChange, onSearch, debounceMs, minChars, noResultsMessage, ...rest }: AutocompleteProps) => JSX.Element;
65
65
 
66
66
  export declare type AutocompleteClassNames = {
67
67
  input?: string;
@@ -82,6 +82,7 @@ export declare type AutocompleteProps = VacanoComponentProps<HTMLInputElement, A
82
82
  variant?: AutocompleteVariant;
83
83
  noResultsMessage?: string;
84
84
  message?: string;
85
+ portalRenderNode?: HTMLElement | null;
85
86
  };
86
87
 
87
88
  export declare type AutocompleteSuggestion = {
@@ -1410,9 +1411,9 @@ export declare type TimelineClassNames = {
1410
1411
  };
1411
1412
 
1412
1413
  export declare type TimelineItem = {
1413
- title: string;
1414
+ title: ReactNode;
1414
1415
  description?: ReactNode;
1415
- children?: ReactNode;
1416
+ content?: ReactNode;
1416
1417
  };
1417
1418
 
1418
1419
  export declare type TimelineProps = VacanoComponentProps<HTMLDivElement, TimelineClassNames> & Omit<HTMLAttributes<HTMLDivElement>, 'className'> & {