react-asc 23.5.2 → 23.7.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.
@@ -6,4 +6,4 @@ export interface IDrawerProps extends React.ComponentProps<'div'> {
6
6
  permanent?: boolean;
7
7
  target?: HTMLElement;
8
8
  }
9
- export declare const Drawer: (props: IDrawerProps) => React.ReactPortal;
9
+ export declare const Drawer: (props: IDrawerProps) => JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const MinValidator: (valueA: number, valueB: number) => boolean;
@@ -2,3 +2,4 @@ export * from './EmailValidtor';
2
2
  export * from './IsEmptyValidator';
3
3
  export * from './IsEqualValidator';
4
4
  export * from './MaxValidator';
5
+ export * from './MinValidator';
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ export interface IPortalProps {
3
+ children: React.ReactNode;
4
+ target?: HTMLElement;
5
+ className?: string;
6
+ }
7
+ export declare const Portal: ({ children, target, className }: IPortalProps) => import("react").ReactPortal;
@@ -0,0 +1 @@
1
+ export * from './Portal';
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface ISkeletonAvatarProps extends React.ComponentProps<'div'> {
3
+ indeterminate?: boolean;
4
+ }
5
+ export declare const SkeletonAvatar: (props: ISkeletonAvatarProps) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface ISkeletonFooterProps extends React.ComponentProps<'div'> {
3
+ indeterminate?: boolean;
4
+ }
5
+ export declare const SkeletonFooter: (props: ISkeletonFooterProps) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface ISkeletonImageProps extends React.ComponentProps<'div'> {
3
+ indeterminate?: boolean;
4
+ }
5
+ export declare const SkeletonImage: (props: ISkeletonImageProps) => JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ export interface ISkeletonTextProps extends React.ComponentProps<'div'> {
3
+ indeterminate?: boolean;
4
+ }
5
+ export declare const SkeletonText: (props: ISkeletonTextProps) => JSX.Element;
@@ -0,0 +1,4 @@
1
+ export * from './SkeletonAvatar';
2
+ export * from './SkeletonText';
3
+ export * from './SkeletonFooter';
4
+ export * from './SkeletonImage';
@@ -32,6 +32,7 @@ export * from './Snackbar';
32
32
  export * from './SpeedDial';
33
33
  export * from './Select';
34
34
  export * from './Stepper';
35
+ export * from './Skeleton';
35
36
  export * from './Table';
36
37
  export * from './Tabs';
37
38
  export * from './Textarea';