siam-ui-utils 1.0.7 → 1.0.8
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.
- package/package.json +1 -1
- package/CustomBootstrap.tsx +0 -10
- package/CustomSelectInput.tsx +0 -12
- package/IntlMessages.tsx +0 -8
- package/index.d.ts +0 -62
- package/index.ts +0 -4
package/package.json
CHANGED
package/CustomBootstrap.tsx
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { Col } from 'reactstrap';
|
|
3
|
-
|
|
4
|
-
const Colxx = (props: any) => (
|
|
5
|
-
<Col {...props} widths={['xxs', 'xs', 'sm', 'md', 'lg', 'xl', 'xxl']} />
|
|
6
|
-
);
|
|
7
|
-
const Separator = ({ className }: { className: string }) => (
|
|
8
|
-
<div className={`separator ${className}`} />
|
|
9
|
-
);
|
|
10
|
-
export { Colxx, Separator };
|
package/CustomSelectInput.tsx
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import React from "react";
|
|
2
|
-
import { components } from 'react-select';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
const CustomSelectInput = (props: any) => {
|
|
6
|
-
const customProps = { ...props };
|
|
7
|
-
delete customProps.autoCorrect;
|
|
8
|
-
delete customProps.autoCapitalize;
|
|
9
|
-
return <components.Input {...customProps} />;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
export { CustomSelectInput };
|
package/IntlMessages.tsx
DELETED
package/index.d.ts
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
declare module "siam-ui-utils" {
|
|
2
|
-
//CUSTOMBOOSTRAP
|
|
3
|
-
export function Colxx(props: JSX.IntrinsicAttributes & JSX.IntrinsicClassAttributes<Col> & Readonly<ColProps>);
|
|
4
|
-
export function Separator ({ className }: { className: string });
|
|
5
|
-
|
|
6
|
-
//CUSTOMSELECTINPUT
|
|
7
|
-
export function CustomSelectInput (props: any);
|
|
8
|
-
|
|
9
|
-
//INTL-MESSAGES
|
|
10
|
-
export function IntlMessages(props: any);
|
|
11
|
-
|
|
12
|
-
//ICONOS
|
|
13
|
-
export function UserIcon(props:any);
|
|
14
|
-
export function AnularAyudaIcon(props: any);
|
|
15
|
-
export function AsesoriaBurbujaButton(props: any);
|
|
16
|
-
export function AsesoriaBurbujaIcon(props: any);
|
|
17
|
-
export function AtencionPresencial(props: any);
|
|
18
|
-
export function AtencionTelefonica(props: any);
|
|
19
|
-
export function AtencionTurnoTelefonico(props: any);
|
|
20
|
-
export function AtencionVirtual(props: any);
|
|
21
|
-
export function BibliotecaBurbujaButton(props: any);
|
|
22
|
-
export function BibliotecaBurbujaIcon(props: any);
|
|
23
|
-
export function CancelarTurnoIcon(props: any);
|
|
24
|
-
export function CodigoVerificacionIcon(props: any);
|
|
25
|
-
export const passwordEyeSvg;
|
|
26
|
-
export const passwordEyeOpenSvg;
|
|
27
|
-
export const contactoBarraSup;
|
|
28
|
-
export const pagosMenuLateral;
|
|
29
|
-
export const delegacionMenuLateral;
|
|
30
|
-
export const delegacionesVerde;
|
|
31
|
-
export const telefonoCeleste;
|
|
32
|
-
export const mailRojo;
|
|
33
|
-
export const whatAppIcon;
|
|
34
|
-
export const telefonoEmergencia;
|
|
35
|
-
export const telefonoConsulta;
|
|
36
|
-
export const telefonoExequial;
|
|
37
|
-
export const telefonoSalud;
|
|
38
|
-
export const descarga;
|
|
39
|
-
export const descargaOver;
|
|
40
|
-
export const anularAyuda;
|
|
41
|
-
export const continuar;
|
|
42
|
-
export const pdfImage;
|
|
43
|
-
export function CursoAutogestionadoColor(props: any);
|
|
44
|
-
export function CursoAutogestionado(props: any);
|
|
45
|
-
export function CursoBurbujaButton(props: any);
|
|
46
|
-
export function CursoBurbujaIcon(props: any);
|
|
47
|
-
export function CursoPresencialColor(props: any);
|
|
48
|
-
export function CursoPresencial(props: any);
|
|
49
|
-
export function CursoVirtualColor(props: any);
|
|
50
|
-
export function CursoVirtual(props: any);
|
|
51
|
-
export function DelegacionesIcon(props: any);
|
|
52
|
-
export function ForgotDniIcon(props: any);
|
|
53
|
-
export function ForgotPasswordIcon(props: any);
|
|
54
|
-
export function IconButtonSvg(props: any);
|
|
55
|
-
export function LapizActContactoPerfilButton(props: any);
|
|
56
|
-
export function Icon(props: any);
|
|
57
|
-
export function VerificarSinVerificarIcon(props: any);
|
|
58
|
-
export function VerificarVerificadoIcon(props: any);
|
|
59
|
-
export function WhatsappIconButton(props: any);
|
|
60
|
-
|
|
61
|
-
}
|
|
62
|
-
|
package/index.ts
DELETED