react-asc 23.5.1 → 23.6.1

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 @@
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,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';