@mezo-org/mezo-clay 0.1.0-dev.5 → 0.1.0-dev.7

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.
@@ -0,0 +1,7 @@
1
+ import { ReactElement } from 'react';
2
+ import { BreadcrumbsProps as BaseBreadcrumbsProps } from 'baseui/breadcrumbs';
3
+ import { Icon } from '../icons';
4
+ export type BreadcrumbsProps = BaseBreadcrumbsProps & {
5
+ icon?: ReactElement<typeof Icon>;
6
+ };
7
+ export declare function Breadcrumbs({ children, icon, overrides, ...restProps }: BreadcrumbsProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ export * from './breadcrumbs';
2
+ export { StyledSeparator as BreadcrumbStyledSeparator } from 'baseui/breadcrumbs';
@@ -0,0 +1,6 @@
1
+ import { CardProps as BaseUiCardProps } from 'baseui/card';
2
+ export type CardProps = {
3
+ withBorder?: boolean;
4
+ backgroundColor?: string;
5
+ } & BaseUiCardProps;
6
+ export default function Card({ withBorder, backgroundColor, overrides, children, ...props }: CardProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,3 @@
1
+ export { StyledBody as CardBody, StyledAction as CardFooter } from 'baseui/card';
2
+ export { default as Card } from './card';
3
+ export type { CardProps } from './card';
@@ -0,0 +1,5 @@
1
+ import { CheckboxProps as BaseCheckboxProps } from 'baseui/checkbox';
2
+ export type CheckboxProps = BaseCheckboxProps & {
3
+ prefilled?: boolean;
4
+ };
5
+ export declare function Checkbox({ overrides, checked, disabled, error, prefilled, ...restProps }: CheckboxProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './checkbox';
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ declare const CircleCut: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
9
+ export default CircleCut;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ export declare const Copy03: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ export declare const Cryptocurrency04: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,9 @@
1
+ import * as React from "react";
2
+ declare const Handshake: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
9
+ export default Handshake;
@@ -13,20 +13,25 @@ export { default as ChevronRight } from './chevron-right';
13
13
  export { default as ChevronSelectorHorizontal } from './chevron-selector-horizontal';
14
14
  export { default as ChevronSelectorVertical } from './chevron-selector-vertical';
15
15
  export { default as ChevronUp } from './chevron-up';
16
+ export { default as CircleCut } from './circle-cut';
16
17
  export { default as Close } from './close';
17
18
  export { default as CoinsHand } from './coins-hand';
18
19
  export { CoinsSwap02 } from './coins-swap';
20
+ export { Copy03 } from './copy';
21
+ export { Cryptocurrency04 } from './cryptocurrency';
19
22
  export { Cube01 } from './cube';
20
23
  export { default as Discord } from './discord';
21
24
  export { default as Eye } from './eye';
22
25
  export { default as EyeOff } from './eye-off';
23
26
  export { default as Google } from './google';
27
+ export { default as Handshake } from './handshake';
24
28
  export { default as Heart } from './heart';
25
29
  export { HomeSmile } from './home-smile';
26
30
  export { InfoCircle, InfoCircleBadge } from './info-circle';
27
31
  export { Lightning01 } from './lightning';
28
32
  export { LinkExternal02 } from './link-external';
29
33
  export { default as Loading } from './loading';
34
+ export { Lock03 } from './lock';
30
35
  export { LogIn01 } from './log-in';
31
36
  export { MatsCircle, MatsCircleBlack } from './mats-circle';
32
37
  export { default as Menu } from './menu';
@@ -40,7 +45,8 @@ export { SearchSmall, SearchMedium, SearchLarge } from './search';
40
45
  export { Settings03 } from './settings';
41
46
  export { default as Square } from './square';
42
47
  export { Star01, Star01Outline, Star05, Star05Outline } from './star';
43
- export { Trophy01 } from './trophy';
48
+ export { Tag02 } from './tag';
49
+ export { Trophy02 } from './trophy';
44
50
  export { default as User03 } from './user';
45
51
  export { Wallet03, Wallet04 } from './wallet';
46
52
  export { default as XCircle } from './x-circle';
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ export declare const Lock03: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ export declare const Tag02: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
+ children?: React.ReactNode;
4
+ size?: import('baseui/icon').Size;
5
+ color?: import('baseui/icon').Color;
6
+ title?: string | null;
7
+ overrides?: import('baseui/icon').IconOverrides;
8
+ } & import('baseui/icon').StyledComponentArgs & React.RefAttributes<SVGSVGElement>>;
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- export declare const Trophy01: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
2
+ export declare const Trophy02: React.ForwardRefExoticComponent<React.SVGAttributes<SVGElement> & {
3
3
  children?: React.ReactNode;
4
4
  size?: import('baseui/icon').Size;
5
5
  color?: import('baseui/icon').Color;
@@ -2,9 +2,11 @@ export * from './accordion';
2
2
  export * from './badge';
3
3
  export * from './banner';
4
4
  export * from './block';
5
+ export * from './breadcrumbs';
5
6
  export * from './button';
6
7
  export * from './button-group';
7
8
  export * from './button-icon';
9
+ export * from './checkbox';
8
10
  export * from './divider';
9
11
  export * from './flex-grid';
10
12
  export * from './form-control';
@@ -13,12 +15,17 @@ export * from './input';
13
15
  export * from './link';
14
16
  export * from './list';
15
17
  export * from './message-card';
18
+ export * from './modal';
16
19
  export * from './popover';
20
+ export * from './progress-bar';
21
+ export * from './radio';
17
22
  export * from './side-navigation';
18
23
  export * from './skeleton';
24
+ export * from './spinner';
19
25
  export * from './tabs';
20
26
  export * from './tag';
21
27
  export * from './textarea';
22
28
  export * from './typography';
29
+ export * from './card';
23
30
  export { Block } from 'baseui/block';
24
31
  export { Popover, StatefulPopover } from 'baseui/popover';
@@ -0,0 +1,3 @@
1
+ export { ModalBody, SIZE as MODAL_SIZE, ROLE as MODAL_ROLE } from 'baseui/modal';
2
+ export type { SharedStylePropsArg as ModalSharedStylePropsArg } from 'baseui/modal';
3
+ export * from './modal';
@@ -0,0 +1,24 @@
1
+ import { ComponentProps, PropsWithChildren } from 'react';
2
+ import { ModalHeader as BaseModalHeader, ModalFooter as BaseModalFooter, ModalBody as BaseModalBody, ModalButton as BaseModalButton, ModalProps as BaseModalProps, SharedStylePropsArg } from 'baseui/modal';
3
+ export type ModalHeaderProps = ComponentProps<typeof BaseModalHeader>;
4
+ export declare function ModalHeader(props: ModalHeaderProps): import("react/jsx-runtime").JSX.Element;
5
+ type ModalImageProps = {
6
+ imageSrc: string;
7
+ imageAriaLabel: string;
8
+ };
9
+ export type ModalHeaderWithImageProps = ModalHeaderProps & ModalImageProps;
10
+ export declare function ModalHeaderWithImage({ imageSrc, imageAriaLabel, children, ...restProps }: ModalHeaderWithImageProps): import("react/jsx-runtime").JSX.Element;
11
+ export type ModalBodyWithImageProps = ComponentProps<typeof BaseModalBody> & ModalImageProps & {
12
+ imageLayout?: "left" | "right";
13
+ imageWidth?: "string";
14
+ };
15
+ export declare function ModalBodyWithImage({ children, imageSrc, imageAriaLabel, imageLayout, imageWidth, }: ModalBodyWithImageProps): import("react/jsx-runtime").JSX.Element;
16
+ export type ModalFooterProps = ComponentProps<typeof BaseModalFooter>;
17
+ export declare function ModalFooter(props: ModalFooterProps): import("react/jsx-runtime").JSX.Element;
18
+ export declare function ModalSecondaryButtonWrapper({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;
19
+ export type ModalButtonProps = ComponentProps<typeof BaseModalButton>;
20
+ export declare function ModalButton({ overrides, ...restProps }: ModalButtonProps): import("react/jsx-runtime").JSX.Element;
21
+ export declare function ModalClose(props: SharedStylePropsArg): import("react/jsx-runtime").JSX.Element;
22
+ export type ModalProps = BaseModalProps;
23
+ export declare function Modal({ overrides, ...restProps }: BaseModalProps): import("react/jsx-runtime").JSX.Element;
24
+ export {};
@@ -0,0 +1 @@
1
+ export declare function useInterval(callback: () => void, delay: number | null): void;
@@ -0,0 +1,2 @@
1
+ export type { ProgressBarProps, ProgressBarRoundedProps, } from 'baseui/progress-bar';
2
+ export * from './progress-bar';
@@ -0,0 +1,3 @@
1
+ import { ProgressBarProps as BaseProgressBarProps } from 'baseui/progress-bar';
2
+ export declare function ProgressBar({ overrides, ...restProps }: BaseProgressBarProps): import("react/jsx-runtime").JSX.Element;
3
+ export { ProgressBarRounded } from 'baseui/progress-bar';
@@ -0,0 +1,3 @@
1
+ export type { RadioProps, RadioGroupProps } from 'baseui/radio';
2
+ export { RadioGroup } from 'baseui/radio';
3
+ export * from './radio';
@@ -0,0 +1,2 @@
1
+ import { RadioProps as BaseRadioProps } from 'baseui/radio';
2
+ export declare function Radio({ overrides, ...restProps }: BaseRadioProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export * from './spinner';
@@ -0,0 +1,11 @@
1
+ import { ReactNode } from 'react';
2
+ import { SpinnerProps as BaseSpinnerProps } from 'baseui/spinner';
3
+ import { Sizing } from 'baseui/themes';
4
+ type Size = "small" | "medium" | "large" | "xlarge";
5
+ export type SpinnerProps = Omit<Omit<BaseSpinnerProps, "$size">, "$borderWidth"> & {
6
+ $size?: number | string | keyof Sizing | Size;
7
+ $borderWidth?: number | string | keyof Sizing | Size;
8
+ label?: ReactNode;
9
+ };
10
+ export declare function Spinner({ $color, $size, $borderWidth, label }: SpinnerProps): import("react/jsx-runtime").JSX.Element;
11
+ export {};