@ynput/ayon-react-components 1.15.19 → 1.15.21
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.
|
@@ -27,7 +27,8 @@ export declare const Scrollable: import("styled-components/dist/types").IStyledC
|
|
|
27
27
|
env: number | false | [timeout?: number | false | null | undefined, maxWait?: number | false | null | undefined, leading?: boolean | null | undefined] | null;
|
|
28
28
|
} | (number | false | [timeout?: number | false | null | undefined, maxWait?: number | false | null | undefined, leading?: boolean | null | undefined] | null) | undefined;
|
|
29
29
|
attributes?: string[] | null | undefined;
|
|
30
|
-
ignoreMutation?: ((mutation: MutationRecord) =>
|
|
30
|
+
ignoreMutation?: ((mutation: MutationRecord) => boolean) | null | undefined;
|
|
31
|
+
flowDirectionStyles?: ((viewport: HTMLElement) => Record<string, unknown>) | null | undefined;
|
|
31
32
|
} | undefined;
|
|
32
33
|
overflow?: {
|
|
33
34
|
x?: import("overlayscrollbars").OverflowBehavior | undefined;
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
export type FilterValuePt = {
|
|
3
|
+
style?: {
|
|
4
|
+
color?: string;
|
|
5
|
+
};
|
|
6
|
+
};
|
|
2
7
|
export type FilterValue = {
|
|
3
8
|
id: string;
|
|
4
9
|
label: string;
|
|
@@ -7,6 +12,7 @@ export type FilterValue = {
|
|
|
7
12
|
color?: string | null;
|
|
8
13
|
isCustom?: boolean;
|
|
9
14
|
parentId?: string | null;
|
|
15
|
+
pt?: FilterValuePt;
|
|
10
16
|
};
|
|
11
17
|
export type FilterOperator = 'AND' | 'OR';
|
|
12
18
|
export type Filter = {
|
|
@@ -35,4 +41,5 @@ export interface Option extends Filter {
|
|
|
35
41
|
searchLabel?: string;
|
|
36
42
|
contentBefore?: React.ReactNode;
|
|
37
43
|
contentAfter?: React.ReactNode;
|
|
44
|
+
pt?: FilterValuePt;
|
|
38
45
|
}
|