react-ecosistema-unp 0.5.16 → 0.6.0
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/dist/lib/accessibility.d.ts +1 -1
- package/dist/lib/auth/contexts/AuthContex.d.ts +1 -1
- package/dist/lib/auth/hooks/AuthHook.d.ts +1 -1
- package/dist/lib/main.d.ts +1 -1
- package/dist/lib/shared.d.ts +3 -3
- package/dist/lib/tables/components/EncabezadoTabla.d.ts +1 -1
- package/dist/lib/tables.d.ts +1 -1
- package/dist/lib/ui.d.ts +6 -6
- package/dist/lib/utils.d.ts +1 -1
- package/dist/main.js +1 -4
- package/package.json +5 -2
- package/dist/lib/shared/index.d.ts +0 -1
- package/dist/shared/index.js +0 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
export { BarraAccesibilidad } from './accessibility/components/BarraAccesibilidad';
|
|
1
|
+
export { BarraAccesibilidad } from './accessibility/components/BarraAccesibilidad.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React, ReactNode } from 'react';
|
|
2
|
-
import { AuthContextType } from '../types/AuthTypes';
|
|
2
|
+
import { AuthContextType } from '../types/AuthTypes.js';
|
|
3
3
|
declare const AuthContext: React.Context<AuthContextType | undefined>;
|
|
4
4
|
interface AuthProviderProps {
|
|
5
5
|
children: ReactNode;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const useAuthId: () => import('../types/AuthTypes').AuthContextType;
|
|
1
|
+
declare const useAuthId: () => import('../types/AuthTypes.js').AuthContextType;
|
|
2
2
|
export { useAuthId };
|
package/dist/lib/main.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export {};
|
package/dist/lib/shared.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { VentanaLienzo } from './shared/components/VentanaLienzo';
|
|
2
|
-
export { VentanaTabs } from './shared/components/VentanaTabs';
|
|
3
|
-
export { TabVentana } from './shared/components/TabVentana';
|
|
1
|
+
export { VentanaLienzo } from './shared/components/VentanaLienzo.js';
|
|
2
|
+
export { VentanaTabs } from './shared/components/VentanaTabs.js';
|
|
3
|
+
export { TabVentana } from './shared/components/TabVentana.js';
|
package/dist/lib/tables.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { TablaRegistros } from './tables/components/TablaRegistros';
|
|
1
|
+
export { TablaRegistros } from './tables/components/TablaRegistros.js';
|
package/dist/lib/ui.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { Encabezado } from './ui/components/Encabezado';
|
|
2
|
-
export { Subtitulo } from './ui/components/Subtitulo';
|
|
3
|
-
export { TituloModal } from './tables/components/TituloModal';
|
|
4
|
-
export { Tarjeta } from './ui/components/Tarjeta';
|
|
5
|
-
export { ContenedorTarjeta } from './ui/components/ContenedorTarjeta';
|
|
6
|
-
export { Paginador } from './ui/components/Paginador';
|
|
1
|
+
export { Encabezado } from './ui/components/Encabezado.js';
|
|
2
|
+
export { Subtitulo } from './ui/components/Subtitulo.js';
|
|
3
|
+
export { TituloModal } from './tables/components/TituloModal.js';
|
|
4
|
+
export { Tarjeta } from './ui/components/Tarjeta.js';
|
|
5
|
+
export { ContenedorTarjeta } from './ui/components/ContenedorTarjeta.js';
|
|
6
|
+
export { Paginador } from './ui/components/Paginador.js';
|
package/dist/lib/utils.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { AuthProvider } from './auth/contexts/AuthContex';
|
|
1
|
+
export { AuthProvider } from './auth/contexts/AuthContex.js';
|
package/dist/main.js
CHANGED
package/package.json
CHANGED
|
@@ -2,14 +2,17 @@
|
|
|
2
2
|
"name": "react-ecosistema-unp",
|
|
3
3
|
"author": "Ecosistema de Información - Unidad Nacional de Protección",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.6.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/lib/main.d.ts",
|
|
10
10
|
"default": "./dist/main.js"
|
|
11
11
|
},
|
|
12
|
-
"./shared":
|
|
12
|
+
"./shared": {
|
|
13
|
+
"types": "./dist/lib/shared.d.ts",
|
|
14
|
+
"default": "./dist/shared.js"
|
|
15
|
+
},
|
|
13
16
|
"./ui": {
|
|
14
17
|
"types": "./dist/lib/ui.d.ts",
|
|
15
18
|
"default": "./dist/ui.js"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { VentanaLienzo } from './components/VentanaLienzo';
|
package/dist/shared/index.js
DELETED