osocna-react-tailwind 0.0.35 → 0.0.37

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 @@
1
+ export declare const EmployeeData: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const UserData: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import { ReactNode } from 'react';
2
+ export type SetAppTitle = (title: string) => void;
3
+ export type SetTabTitle = (title: string) => void;
4
+ export type SetAppHeaderTools = (tools: ReactNode | null) => void;
5
+ export interface OsocnaAppContextValue {
6
+ setAppTitle: SetAppTitle;
7
+ setTabTitle: SetTabTitle;
8
+ setAppHeaderTools: SetAppHeaderTools;
9
+ }
10
+ export declare const OsocnaAppContext: import('react').Context<OsocnaAppContextValue>;
@@ -0,0 +1,10 @@
1
+ import { ReactNode } from 'react';
2
+ import { AppLinks } from 'osocna-shared/OsocnaContext';
3
+ interface OsocnaAppProviderProps {
4
+ appTitle: string;
5
+ appLinks?: Array<AppLinks>;
6
+ children: ReactNode;
7
+ oidcConfig: any;
8
+ }
9
+ export declare const OsocnaAppProvider: ({ appTitle, appLinks, children, oidcConfig, }: OsocnaAppProviderProps) => import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from './OsocnaAppContext';
2
+ export * from './OsocnaAppProvider';
@@ -0,0 +1,8 @@
1
+ import { PersonNotificacionInterface } from '../../../interfaces/afiliados/person-notificacion.interface';
2
+ interface ListadoNotificacionesCardProps {
3
+ notificacion: PersonNotificacionInterface;
4
+ onEditNotificacion: (notificacion: PersonNotificacionInterface) => void;
5
+ onArchiveNotificacion: (notificacion: PersonNotificacionInterface) => void;
6
+ }
7
+ export declare const ListadoNotificacionesCard: ({ notificacion, onEditNotificacion, onArchiveNotificacion, }: ListadoNotificacionesCardProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,13 @@
1
+ export declare enum RelevantAreaEnum {
2
+ 'Afiliaciones' = 1,
3
+ 'Salud Mental' = 2,
4
+ 'Autorizaciones' = 3,
5
+ 'Liquidaciones' = 4,
6
+ 'Legales' = 5,
7
+ 'RRHH' = 6,
8
+ 'Contaduria' = 7,
9
+ 'Recuperos' = 8,
10
+ 'Sistemas' = 9,
11
+ 'Comercial' = 10,
12
+ 'Consejo Directivo' = 11
13
+ }
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './components';
2
2
  export * from './interfaces';
3
3
  export * from './cruds';
4
+ export * from './contexts';