@ynput/ayon-react-components 1.3.0 → 1.3.2
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/Dropdown/Dropdown.styled.d.ts +0 -2
- package/dist/Layout/Section/Section.d.ts +4 -0
- package/dist/Panels/Panel/Panel.d.ts +1 -2
- package/dist/ShortcutTag/index.d.ts +1 -0
- package/dist/ayon-react-components.es.js +4125 -4104
- package/dist/ayon-react-components.umd.js +167 -163
- package/dist/index.d.ts +22 -0
- package/dist/style.css +2 -2
- package/package.json +1 -1
|
@@ -16,9 +16,7 @@ type ScrollableProps = {
|
|
|
16
16
|
export declare const Scrollable: import("styled-components").StyledComponent<(<T extends import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> = "div">(props: import("overlayscrollbars-react").OverlayScrollbarsComponentProps<T>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | null), any, ScrollableProps, never>;
|
|
17
17
|
export declare const Options: import("styled-components").StyledComponent<"ul", any, {}, never>;
|
|
18
18
|
export declare const ListItem: import("styled-components").StyledComponent<"li", any, {
|
|
19
|
-
$focused: boolean;
|
|
20
19
|
$usingKeyboard: boolean;
|
|
21
|
-
$disabled?: boolean | undefined;
|
|
22
20
|
}, never>;
|
|
23
21
|
export declare const DefaultItem: import("styled-components").StyledComponent<"span", any, {
|
|
24
22
|
$isSelected: boolean;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
|
+
export type SectionProps = HTMLAttributes<HTMLElement> & {
|
|
3
|
+
direction?: 'row' | 'column';
|
|
4
|
+
wrap?: boolean;
|
|
5
|
+
};
|
|
2
6
|
export declare const Section: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLElement> & {
|
|
3
7
|
direction?: "row" | "column" | undefined;
|
|
4
8
|
wrap?: boolean | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
|
-
type PanelProps = HTMLAttributes<HTMLDivElement> & {
|
|
2
|
+
export type PanelProps = HTMLAttributes<HTMLDivElement> & {
|
|
3
3
|
direction?: 'row' | 'column';
|
|
4
4
|
};
|
|
5
5
|
export declare const PanelStyled: import("styled-components").StyledComponent<"div", any, {
|
|
@@ -8,4 +8,3 @@ export declare const PanelStyled: import("styled-components").StyledComponent<"d
|
|
|
8
8
|
export declare const Panel: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & {
|
|
9
9
|
direction?: "row" | "column" | undefined;
|
|
10
10
|
} & import("react").RefAttributes<HTMLDivElement>>;
|
|
11
|
-
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ShortcutTag';
|