react-asc 19.0.5 → 20.1.0

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.
@@ -7,5 +7,6 @@ export interface IButtonProps extends React.ComponentProps<"button"> {
7
7
  variant?: VARIANT;
8
8
  startIcon?: React.SVGProps<SVGSVGElement>;
9
9
  endIcon?: React.SVGProps<SVGSVGElement>;
10
+ shadow?: boolean;
10
11
  }
11
12
  export declare const Button: React.FunctionComponent<IButtonProps>;
@@ -1,2 +1,5 @@
1
1
  import React from 'react';
2
- export declare const Row: (props: React.ComponentProps<"div">) => JSX.Element;
2
+ export interface IContainerProps extends React.ComponentProps<"div"> {
3
+ direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
4
+ }
5
+ export declare const Row: ({ children, direction, className, ...rest }: IContainerProps) => JSX.Element;
@@ -1,6 +1,2 @@
1
- import { ReactNode } from 'react';
2
- interface IModalFooterProps {
3
- children?: ReactNode;
4
- }
5
- export declare const ModalFooter: ({ children }: IModalFooterProps) => JSX.Element;
6
- export {};
1
+ import React from 'react';
2
+ export declare const ModalFooter: ({ children }: React.ComponentProps<'div'>) => JSX.Element;
@@ -8,4 +8,5 @@ export interface IModalButton {
8
8
  autoFocus?: boolean;
9
9
  type?: MODALBUTTONTYPE;
10
10
  focus?: boolean;
11
+ shadow?: boolean;
11
12
  }
@@ -1,2 +1,5 @@
1
1
  import React from 'react';
2
- export declare const Textarea: (props: React.ComponentProps<"textarea">) => JSX.Element;
2
+ export interface ITextareaProps extends React.ComponentProps<"textarea"> {
3
+ error?: boolean;
4
+ }
5
+ export declare const Textarea: (props: ITextareaProps) => JSX.Element;