osocna-react-tailwind 0.1.10 → 0.1.12
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/components/widgets/index.d.ts +1 -0
- package/dist/components/widgets/niveles-de-atencion.tsx/AfiliacionesPorPeriodoYNivelDeAtencion.d.ts +5 -1
- package/dist/components/widgets/niveles-de-atencion.tsx/AfiliacionesVigentesPorPeriodo.d.ts +6 -0
- package/dist/components/widgets/opciones-afiliados/monotributo/AltasPorPeriodoProcesados.d.ts +5 -1
- package/dist/index.js +1434 -1224
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/components/widgets/niveles-de-atencion.tsx/AfiliacionesPorPeriodoYNivelDeAtencion.d.ts
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
interface AfiliacionesPorPeriodoYNivelDeAtencionProps {
|
|
2
|
+
paramPrefix?: string;
|
|
3
|
+
}
|
|
4
|
+
export declare const AfiliacionesPorPeriodoYNivelDeAtencion: (props: AfiliacionesPorPeriodoYNivelDeAtencionProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
interface AfiliacionesVigentesPorPeriodoProps {
|
|
2
|
+
paramPrefix?: string;
|
|
3
|
+
}
|
|
4
|
+
export declare const AfiliacionesVigentesPorPeriodoContent: ({ paramPrefix, }: AfiliacionesVigentesPorPeriodoProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const AfiliacionesVigentesPorPeriodo: (props: AfiliacionesVigentesPorPeriodoProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export {};
|
package/dist/components/widgets/opciones-afiliados/monotributo/AltasPorPeriodoProcesados.d.ts
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
interface AltasPorPeriodoProcesadosProps {
|
|
2
|
+
paramPrefix?: string;
|
|
3
|
+
}
|
|
4
|
+
export declare const AltasPorPeriodoProcesados: (props: AltasPorPeriodoProcesadosProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|