@vacano/ui 1.15.2 → 1.15.4

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 = {
@@ -1407,12 +1408,14 @@ export declare type TimelineClassNames = {
1407
1408
  title?: string;
1408
1409
  description?: string;
1409
1410
  body?: string;
1411
+ actions?: string;
1410
1412
  };
1411
1413
 
1412
1414
  export declare type TimelineItem = {
1413
1415
  title: ReactNode;
1414
1416
  description?: ReactNode;
1415
1417
  content?: ReactNode;
1418
+ actions?: ReactNode;
1416
1419
  };
1417
1420
 
1418
1421
  export declare type TimelineProps = VacanoComponentProps<HTMLDivElement, TimelineClassNames> & Omit<HTMLAttributes<HTMLDivElement>, 'className'> & {