@eclass/ui-kit 1.4.4 → 1.5.2

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.
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { BaseProps } from './Icon';
2
+ import { BaseProps } from './Base';
3
3
  export declare function ArrowRight(props: BaseProps): JSX.Element;
4
4
  export declare namespace ArrowRight {
5
5
  var displayName: string;
@@ -9,5 +9,5 @@ interface IconProps extends BaseProps {
9
9
  viewBox?: string;
10
10
  children: React.ReactChild | React.ReactChild[];
11
11
  }
12
- export declare function Icon({ w, h, color, m, viewBox, children, }: IconProps): JSX.Element;
12
+ export declare function Base({ w, h, color, m, viewBox, children, }: IconProps): JSX.Element;
13
13
  export {};
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { BaseProps } from './Icon';
2
+ import { BaseProps } from './Base';
3
3
  export declare function Certificate(props: BaseProps): JSX.Element;
4
4
  export declare namespace Certificate {
5
5
  var displayName: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { BaseProps } from './Icon';
2
+ import { BaseProps } from './Base';
3
3
  export declare function CircularCheck(props: BaseProps): JSX.Element;
4
4
  export declare namespace CircularCheck {
5
5
  var displayName: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { BaseProps } from './Icon';
2
+ import { BaseProps } from './Base';
3
3
  export declare function CircularInformation(props: BaseProps): JSX.Element;
4
4
  export declare namespace CircularInformation {
5
5
  var displayName: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { BaseProps } from './Icon';
2
+ import { BaseProps } from './Base';
3
3
  export declare function Profile(props: BaseProps): JSX.Element;
4
4
  export declare namespace Profile {
5
5
  var displayName: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { BaseProps } from './Icon';
2
+ import { BaseProps } from './Base';
3
3
  export declare function Schedule(props: BaseProps): JSX.Element;
4
4
  export declare namespace Schedule {
5
5
  var displayName: string;
@@ -6,6 +6,10 @@ export interface LabelProps {
6
6
  size?: 'md' | 'sm';
7
7
  m?: string;
8
8
  }
9
+ /**
10
+ * Componente Label
11
+ * @example <Label>Etiqueta</Label>
12
+ */
9
13
  export declare function Label({ children, bg, color, size, m, }: LabelProps): JSX.Element;
10
14
  export declare namespace Label {
11
15
  var displayName: string;
@@ -1,5 +1,13 @@
1
1
  /// <reference types="react" />
2
- export declare function Progress({ value }: any): JSX.Element;
2
+ interface ProgressProps {
3
+ value: number;
4
+ }
5
+ /**
6
+ * Componente Progress circular, valores permitidos entre 0 - 100
7
+ * @example <Progress value={35} />
8
+ */
9
+ export declare function Progress({ value }: ProgressProps): JSX.Element;
3
10
  export declare namespace Progress {
4
11
  var displayName: string;
5
12
  }
13
+ export {};
@@ -1,4 +1,13 @@
1
1
  /// <reference types="react" />
2
+ /**
3
+ * Componente Ripples se debe poner entre un Wrapper y su contenido
4
+ * @example
5
+ * <div>
6
+ * <Ripples>
7
+ * <p>Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
8
+ * </Ripples>
9
+ * </div>
10
+ */
2
11
  export declare function Ripples({ children, color }: any): JSX.Element;
3
12
  export declare namespace Ripples {
4
13
  var displayName: string;