@mezo-org/mezo-clay 0.1.0-dev.32 → 0.1.0-dev.34

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.
@@ -42,6 +42,7 @@ export * from './tile';
42
42
  export * from './tooltip';
43
43
  export * from './top-navigation';
44
44
  export * from './typography';
45
+ export * from './select';
45
46
  export { Block } from 'baseui/block';
46
47
  export type { BlockProps } from 'baseui/block';
47
48
  export { Icon } from 'baseui/icon';
@@ -1,4 +1,4 @@
1
1
  import { SIZE_EXTENDED } from './constants';
2
2
  import { InputProps } from './types';
3
3
  export declare function getBaseInputSize(size: keyof typeof SIZE_EXTENDED): "default" | "large" | "compact" | "mini";
4
- export default function Input({ value, incomplete, complete, loading, readOnly, size, endEnhancer, overrides, withFluidFontSize, minFluidFontSize, ...restProps }: InputProps): import("react/jsx-runtime").JSX.Element;
4
+ export default function Input({ value, incomplete, complete, loading, readOnly, size, "data-attr": dataAttr, endEnhancer, overrides: baseOverrides, withFluidFontSize, minFluidFontSize, ...restProps }: InputProps): import("react/jsx-runtime").JSX.Element;
@@ -7,6 +7,7 @@ export interface InputProps extends Omit<BaseInputProps, "size"> {
7
7
  incomplete?: boolean;
8
8
  withFluidFontSize?: boolean;
9
9
  minFluidFontSize?: number;
10
+ "data-attr"?: string;
10
11
  }
11
12
  export interface PasswordInputProps extends Omit<InputProps, "type" | "inputMode" | "startEnhancer" | "endEnhancer" | "withFluidFontSize" | "minFluidFontSize"> {
12
13
  }
@@ -0,0 +1,2 @@
1
+ export declare function Animations(): import("react/jsx-runtime").JSX.Element;
2
+ export default Animations;
@@ -0,0 +1,2 @@
1
+ export declare function Breakpoints(): import("react/jsx-runtime").JSX.Element;
2
+ export default Breakpoints;
@@ -0,0 +1,2 @@
1
+ export declare function GridProperties(): import("react/jsx-runtime").JSX.Element;
2
+ export default GridProperties;
@@ -0,0 +1,2 @@
1
+ export declare function Lighting(): import("react/jsx-runtime").JSX.Element;
2
+ export default Lighting;
@@ -0,0 +1,2 @@
1
+ export declare function MediaQueries(): import("react/jsx-runtime").JSX.Element;
2
+ export default MediaQueries;
@@ -0,0 +1,13 @@
1
+ import { ReactNode } from 'react';
2
+ import { BlockProps } from 'baseui/block';
3
+ type ThemePropertyProps = {
4
+ propertyName: string;
5
+ value: string;
6
+ example?: ReactNode;
7
+ exampleProps?: BlockProps;
8
+ width?: string;
9
+ maxWidth?: string;
10
+ flexDirection?: "row" | "column";
11
+ };
12
+ export default function ThemeProperty({ propertyName, value, example, exampleProps, width, maxWidth, flexDirection, }: ThemePropertyProps): import("react/jsx-runtime").JSX.Element;
13
+ export {};
@@ -0,0 +1,2 @@
1
+ export declare function TypographyGuide(): import("react/jsx-runtime").JSX.Element;
2
+ export default TypographyGuide;