@canaia/ui-kit 0.0.12-alpha.1 → 0.0.12-alpha.10

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,4 @@
1
+ import { default as React } from 'react';
2
+ import { ModalAccountErrorProps } from './ModalError.types.tsx';
3
+ declare const ModalAccountError: React.FC<ModalAccountErrorProps>;
4
+ export default ModalAccountError;
@@ -0,0 +1,10 @@
1
+ export type ModalAccountErrorProps = {
2
+ isOpen: boolean;
3
+ onClose: () => void;
4
+ onClickButton2?: () => void;
5
+ textButton2?: string;
6
+ description: string;
7
+ description2?: string;
8
+ closeOnEsc?: boolean;
9
+ closeOnOverlayClick?: boolean;
10
+ };
@@ -0,0 +1,6 @@
1
+ declare const WarningIcon: React.FC<{
2
+ width?: number;
3
+ height?: number;
4
+ color?: string;
5
+ }>;
6
+ export default WarningIcon;
@@ -0,0 +1,2 @@
1
+ export { default } from './ModalError';
2
+ export type { ModalAccountErrorProps } from './ModalError.types.tsx';
@@ -12,4 +12,5 @@ export interface PositiveModalProps {
12
12
  hideCloseButton?: boolean;
13
13
  closeOnEsc?: boolean;
14
14
  closeOnOverlayClick?: boolean;
15
+ descriptionSecondary?: string;
15
16
  }
@@ -47,3 +47,5 @@ export { default as ModalInactivity } from './components/ModalInactivity';
47
47
  export { default as ModalPermission } from './components/ModalPermission';
48
48
  export { default as SpinnerLittle } from './components/SpinnerLittle';
49
49
  export { default as ChaHelpCanaia } from './components/ChatHelpCanaia';
50
+ export { default as ModalError } from './components/ModalError';
51
+ export { default as ModalEliminatedSuccess } from './components/ModalEliminate';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@canaia/ui-kit",
3
- "version": "0.0.12-alpha.1",
3
+ "version": "0.0.12-alpha.10",
4
4
  "main": "dist/canaia-ui-kit.umd.js",
5
5
  "module": "dist/canaia-ui-kit.es.js",
6
6
  "type": "module",