@ynput/ayon-react-components 1.17.4 → 1.17.5

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.
@@ -11,4 +11,4 @@ export interface AssigneeDropdownProps {
11
11
  allSelected?: boolean;
12
12
  error?: string;
13
13
  }
14
- export declare const AssigneeDropdownTemplate: ({ name, avatarUrl, fullName, isSelected, isSelectedMixed, multiSelect, onClick, size, selectAll, allSelected, error, }: AssigneeDropdownProps) => import("react/jsx-runtime").JSX.Element | null;
14
+ export declare const AssigneeDropdownTemplate: ({ name, avatarUrl, fullName, isSelected, isSelectedMixed, multiSelect, onClick, size, selectAll, allSelected, error, }: AssigneeDropdownProps) => import("react").JSX.Element | null;
@@ -15,4 +15,4 @@ export interface DefaultItemTemplateProps extends HTMLAttributes<HTMLSpanElement
15
15
  endContent?: React.ReactNode;
16
16
  startContent?: React.ReactNode;
17
17
  }
18
- export declare const DefaultItemTemplate: ({ option, dataKey, labelKey, selected, mixedSelected, value, multiSelect, minSelected, itemClassName, itemStyle, endContent, startContent, className, ...props }: DefaultItemTemplateProps) => import("react/jsx-runtime").JSX.Element;
18
+ export declare const DefaultItemTemplate: ({ option, dataKey, labelKey, selected, mixedSelected, value, multiSelect, minSelected, itemClassName, itemStyle, endContent, startContent, className, ...props }: DefaultItemTemplateProps) => import("react").JSX.Element;
@@ -6,7 +6,7 @@ export interface EnumTemplateProps extends Omit<DefaultValueTemplateProps, 'valu
6
6
  isSelected?: boolean;
7
7
  isChanged?: boolean;
8
8
  }
9
- export declare const EnumTemplate: ({ option, isSelected, isChanged, ...props }: EnumTemplateProps) => import("react/jsx-runtime").JSX.Element;
9
+ export declare const EnumTemplate: ({ option, isSelected, isChanged, ...props }: EnumTemplateProps) => import("react").JSX.Element;
10
10
  export type EnumDropdownOption = {
11
11
  value: string | number | boolean;
12
12
  label: string;
@@ -6,5 +6,5 @@ interface DnDTemplatesProps extends EntityCardProps {
6
6
  items: string[];
7
7
  }[];
8
8
  }
9
- declare const DnDTemplate: (props: DnDTemplatesProps) => import("react/jsx-runtime").JSX.Element;
9
+ declare const DnDTemplate: (props: DnDTemplatesProps) => import("react").JSX.Element;
10
10
  export default DnDTemplate;
@@ -3,5 +3,5 @@ import { EntityCardProps } from '../EntityCard';
3
3
  interface DraggableProps extends EntityCardProps {
4
4
  id: string;
5
5
  }
6
- export declare function Draggable(props: DraggableProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function Draggable(props: DraggableProps): import("react").JSX.Element;
7
7
  export {};
@@ -8,5 +8,5 @@ interface DroppableProps {
8
8
  items: string[];
9
9
  }[];
10
10
  }
11
- export declare function Droppable(props: DroppableProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function Droppable(props: DroppableProps): React.JSX.Element;
12
12
  export {};
@@ -3,6 +3,7 @@ import { default as iconSet } from './icons.json';
3
3
  export type IconType = keyof typeof iconSet;
4
4
  export type IconPropType = IconType | (string & {});
5
5
  export interface IconProps extends React.HTMLAttributes<HTMLSpanElement> {
6
- icon: IconType;
6
+ icon: IconPropType;
7
+ filled?: boolean;
7
8
  }
8
9
  export declare const Icon: import('react').ForwardRefExoticComponent<IconProps & import('react').RefAttributes<HTMLSpanElement>>;
@@ -3,4 +3,4 @@ import { ReactDatePickerProps } from 'react-datepicker';
3
3
  export interface InputDateProps extends ReactDatePickerProps {
4
4
  style?: React.CSSProperties;
5
5
  }
6
- export declare const InputDate: (props: InputDateProps) => import("react/jsx-runtime").JSX.Element;
6
+ export declare const InputDate: (props: InputDateProps) => import("react").JSX.Element;
@@ -4,4 +4,4 @@ import { Option } from './types';
4
4
  export interface SearchFilterCustomRangeDebugProps extends Omit<SearchFilterProps, 'options' | 'filters' | 'onChange' | 'onFinish'> {
5
5
  baseOptions: Option[];
6
6
  }
7
- export declare const SearchFilterCustomRangeDebug: ({ baseOptions, pt, ...props }: SearchFilterCustomRangeDebugProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const SearchFilterCustomRangeDebug: ({ baseOptions, pt, ...props }: SearchFilterCustomRangeDebugProps) => import("react").JSX.Element;