@ynput/ayon-react-components 1.17.3 → 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.
- package/dist/Dropdowns/AssigneeSelect/AssigneeDropdownTemplate.d.ts +1 -1
- package/dist/Dropdowns/Dropdown/DefaultItemTemplate.d.ts +1 -1
- package/dist/Dropdowns/EnumDropdown/EnumDropdown.d.ts +1 -1
- package/dist/EntityCard/DnD/DnDTemplate.d.ts +1 -1
- package/dist/EntityCard/DnD/Draggable.d.ts +1 -1
- package/dist/EntityCard/DnD/Droppable.d.ts +1 -1
- package/dist/Inputs/InputDate/InputDate.d.ts +1 -1
- package/dist/SearchFilter/SearchFilterCustomRangeDebug.d.ts +1 -1
- package/dist/ayon-react-components.es.js +2214 -2211
- package/dist/ayon-react-components.umd.js +138 -138
- package/package.json +1 -1
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
6
|
+
export declare function Draggable(props: DraggableProps): import("react").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -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
|
|
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
|
|
7
|
+
export declare const SearchFilterCustomRangeDebug: ({ baseOptions, pt, ...props }: SearchFilterCustomRangeDebugProps) => import("react").JSX.Element;
|