@sinco/react 1.1.2-rc.86 → 1.1.2-rc.87

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sinco/react",
3
- "version": "1.1.2-rc.86",
3
+ "version": "1.1.2-rc.87",
4
4
  "description": "package for the configuration of mui react sinco",
5
5
  "private": false,
6
6
  "license": "MIT",
@@ -0,0 +1,16 @@
1
+ import React, { FC } from 'react';
2
+ type RadioPosition = 'left' | 'right';
3
+ type RadioStates = 'active' | 'disabled';
4
+ type RadioHeightPosition = 'top' | 'center';
5
+ type RadioColors = 'primary' | 'secondary';
6
+ export interface CardRadioProps {
7
+ RadioPosition?: RadioPosition;
8
+ heightPosition?: RadioHeightPosition;
9
+ states?: RadioStates;
10
+ slotMedia?: React.ReactNode;
11
+ slotHeader?: React.ReactNode | string;
12
+ slotContent?: React.ReactNode | string;
13
+ color?: RadioColors;
14
+ }
15
+ export declare const CardRadio: FC<CardRadioProps>;
16
+ export {};
@@ -1,9 +1,8 @@
1
1
  import React from 'react';
2
2
  interface FooterActionsProperties {
3
- children?: React.ReactNode;
4
3
  labelChangeCounter: React.ReactNode | string;
5
4
  leftContent?: React.ReactNode;
6
5
  rightContent?: React.ReactNode;
7
6
  }
8
- export declare const FooterAction: ({ leftContent, rightContent, labelChangeCounter, children, }: FooterActionsProperties) => React.JSX.Element;
7
+ export declare const FooterAction: ({ leftContent, rightContent, labelChangeCounter, }: FooterActionsProperties) => React.JSX.Element;
9
8
  export {};
@@ -1,10 +1,15 @@
1
1
  import { FC } from 'react';
2
+ import '../../react.module.css';
2
3
  type Variant = 'buffer' | 'determinate' | 'indeterminate' | 'query' | 'lote';
3
4
  interface ProgressProps {
4
5
  time?: number;
5
6
  variant?: Variant;
6
7
  valueBuffer?: number;
7
8
  lote?: number;
9
+ porcent?: boolean;
10
+ progressBar?: boolean;
11
+ textPorcent?: boolean;
12
+ ilustration?: boolean;
8
13
  }
9
14
  export declare const ProgressSinco: FC<ProgressProps>;
10
15
  export {};
@@ -4,3 +4,4 @@ export * from "./FooterAction";
4
4
  export * from "./ToastNotification";
5
5
  export * from "./PageHeader";
6
6
  export * from "./ProgressSinco";
7
+ export * from "./CardRadio";