@ultraviolet/ui 2.0.0-beta.6 → 2.0.0-beta.8

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.
@@ -14,25 +14,9 @@ type SelectBarProps = {
14
14
  label?: string;
15
15
  tooltip?: string;
16
16
  };
17
- export declare const StyledInputWrapper: import("@emotion/styled").StyledComponent<{
17
+ declare const StyledInputWrapper: import("@emotion/styled").StyledComponent<{
18
18
  theme?: import("@emotion/react").Theme;
19
19
  as?: React.ElementType;
20
- } & {
21
- gap?: keyof import("../..").UltravioletUITheme["space"] | number;
22
- direction?: "row" | "column";
23
- alignItems?: import("react").CSSProperties["alignItems"];
24
- justifyContent?: import("react").CSSProperties["justifyContent"];
25
- wrap?: boolean | import("react").CSSProperties["flexWrap"];
26
- width?: import("react").CSSProperties["width"];
27
- maxWidth?: import("react").CSSProperties["maxWidth"];
28
- minWidth?: import("react").CSSProperties["minWidth"];
29
- flex?: import("react").CSSProperties["flex"];
30
- className?: string;
31
- children: import("react").ReactNode;
32
- 'data-testid'?: string;
33
- id?: string;
34
- } & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement> & {
35
- theme?: import("@emotion/react").Theme;
36
20
  } & {
37
21
  'data-readonly': boolean;
38
22
  'data-disabled': boolean;
@@ -40,6 +24,6 @@ export declare const StyledInputWrapper: import("@emotion/styled").StyledCompone
40
24
  'data-state': "neutral" | "success" | "danger";
41
25
  'data-dropdownvisible': boolean;
42
26
  'aria-label'?: string;
43
- }, {}, {}>;
44
- export declare const SelectBar: ({ size, clearable, disabled, readOnly, placeholder, success, error, autoFocus, tooltip, innerRef, id, "data-testid": dataTestId, label, }: SelectBarProps) => import("@emotion/react/jsx-runtime").JSX.Element;
45
- export {};
27
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
28
+ declare const SelectBar: ({ size, clearable, disabled, readOnly, placeholder, success, error, autoFocus, tooltip, innerRef, id, "data-testid": dataTestId, label, }: SelectBarProps) => import("@emotion/react/jsx-runtime").JSX.Element;
29
+ export { SelectBar, StyledInputWrapper };