breviarium 0.2.21 → 0.2.23
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/Makefile +3 -0
- package/README.md +0 -2
- package/databases/all_invitatorium.json +4386 -0
- package/databases/all_laudes.json +39393 -0
- package/databases/all_lectures.json +24883 -0
- package/databases/all_nona.json +10252 -0
- package/databases/all_officium.json +24797 -0
- package/databases/all_sexta.json +10252 -0
- package/databases/all_tertia.json +10252 -0
- package/databases/all_vesperae.json +41591 -0
- package/databases/es/commons/antifonas.json +30 -0
- package/databases/es/commons/cantico_evangelico_antifonas.json +2990 -0
- package/databases/es/commons/celebraciones.json +2866 -0
- package/databases/es/commons/himnos.json +1130 -0
- package/databases/es/commons/invitacion_padrenuestro.json +214 -0
- package/databases/es/commons/invitatorios.json +302 -0
- package/databases/es/commons/lectura_breve_citas.json +3094 -0
- package/databases/es/commons/lectura_breve_textos.json +1986 -0
- package/databases/es/commons/lecturas_fecha_anio_liturgico.json +4386 -0
- package/databases/es/commons/lecturas_referencia.json +9850 -0
- package/databases/es/commons/lecturas_texto.json +8226 -0
- package/databases/es/commons/lecturas_tiempo_ciclo_paridad.json +90 -0
- package/databases/es/commons/oficio_citas.json +3770 -0
- package/databases/es/commons/oficio_difuntos.json +172 -0
- package/databases/es/commons/oficio_textos.json +3782 -0
- package/databases/es/commons/oficio_titulos.json +3765 -0
- package/databases/es/commons/oraciones_finales.json +3346 -0
- package/databases/es/commons/preces_contenido.json +39998 -0
- package/databases/es/commons/preces_intro.json +1010 -0
- package/databases/es/commons/preces_respuesta.json +826 -0
- package/databases/es/commons/responsorios.json +81114 -0
- package/databases/es/commons/salmos_antifonas.json +5278 -0
- package/databases/es/commons/salmos_citas.json +1250 -0
- package/databases/es/commons/salmos_textos.json +1238 -0
- package/databases/es/commons/titulo_hora_liturgica.json +30 -0
- package/databases/es/completorium/1.json +30 -0
- package/databases/es/completorium/2.json +30 -0
- package/databases/es/completorium/3.json +30 -0
- package/databases/es/completorium/4.json +33 -0
- package/databases/es/completorium/5.json +30 -0
- package/databases/es/completorium/6.json +30 -0
- package/databases/es/completorium/7.json +33 -0
- package/dist/breviarium.cjs.js +77 -1
- package/dist/breviarium.cjs.js.map +1 -1
- package/dist/breviarium.es.js +136 -24
- package/dist/breviarium.es.js.map +1 -1
- package/dist/breviarium.umd.js +77 -1
- package/dist/breviarium.umd.js.map +1 -1
- package/dist/prayer-manager-interface.d.ts +107 -22
- package/dist/prayers/db/es/completorium/index.d.ts +8 -0
- package/dist/prayers/prayer-manager.d.ts +8 -1
- package/package.json +1 -1
- package/process-and-compress.sh +41 -0
- package/src/prayer-manager-interface.ts +122 -24
- package/src/prayers/db/all_officium.json +2874 -2874
- package/src/prayers/db/all_vesperae.json +13152 -13152
- package/src/prayers/db/es/all_easter_vigil_lectures.json +176 -0
- package/src/prayers/db/es/commons/invitatory_psalms.json +22 -0
- package/src/prayers/db/es/completorium/1.json +6 -6
- package/src/prayers/db/es/completorium/2.json +6 -6
- package/src/prayers/db/es/completorium/3.json +6 -6
- package/src/prayers/db/es/completorium/4.json +9 -9
- package/src/prayers/db/es/completorium/5.json +6 -6
- package/src/prayers/db/es/completorium/6.json +6 -6
- package/src/prayers/db/es/completorium/7.json +9 -9
- package/src/prayers/db/es/completorium/index.ts +9 -0
- package/src/prayers/prayer-manager.ts +52 -3
- package/src/prayers/db/all_completorium.ts +0 -9
- package/src/prayers/db/es/commons/index.ts +0 -51
- /package/{src/prayers/db → databases/es}/all_easter_vigil_lectures.json +0 -0
- /package/{src/prayers/db → databases/es/commons}/invitatory_psalms.json +0 -0
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import antifonas from "./antifonas.json";
|
|
2
|
-
import cantico_evangelico_antifonas from "./cantico_evangelico_antifonas.json";
|
|
3
|
-
import celebraciones from "./celebraciones.json";
|
|
4
|
-
import himnos from "./himnos.json";
|
|
5
|
-
import invitacion_padrenuestro from './invitacion_padrenuestro.json';
|
|
6
|
-
import lectura_breve_textos from "./lectura_breve_textos.json";
|
|
7
|
-
import lectura_breve_citas from "./lectura_breve_citas.json";
|
|
8
|
-
import lecturas_fecha_anio_liturgico from "./lecturas_fecha_anio_liturgico.json";
|
|
9
|
-
import lecturas_referencia from "./lecturas_referencia.json";
|
|
10
|
-
import lecturas_texto from "./lecturas_texto.json";
|
|
11
|
-
import oficio_difuntos from "./oficio_difuntos.json";
|
|
12
|
-
import oficio_titulos from "./oficio_titulos.json";
|
|
13
|
-
import oficio_citas from "./oficio_citas.json";
|
|
14
|
-
import oficio_textos from "./oficio_textos.json";
|
|
15
|
-
import oraciones_finales from "./oraciones_finales.json";
|
|
16
|
-
import preces_contenido from "./preces_contenido.json";
|
|
17
|
-
import preces_intro from "./preces_intro.json";
|
|
18
|
-
import preces_respuesta from "./preces_respuesta.json";
|
|
19
|
-
import responsorios from "./responsorios.json";
|
|
20
|
-
import salmos_antifonas from "./salmos_antifonas.json";
|
|
21
|
-
import salmos_citas from "./salmos_citas.json";
|
|
22
|
-
import salmos_textos from "./salmos_textos.json";
|
|
23
|
-
import titulo_hora_liturgica from "./titulo_hora_liturgica.json";
|
|
24
|
-
import invitatorios from "./invitatorios.json";
|
|
25
|
-
|
|
26
|
-
export {
|
|
27
|
-
antifonas,
|
|
28
|
-
cantico_evangelico_antifonas,
|
|
29
|
-
celebraciones,
|
|
30
|
-
himnos,
|
|
31
|
-
invitacion_padrenuestro,
|
|
32
|
-
lectura_breve_textos,
|
|
33
|
-
lectura_breve_citas,
|
|
34
|
-
lecturas_fecha_anio_liturgico,
|
|
35
|
-
lecturas_referencia,
|
|
36
|
-
lecturas_texto,
|
|
37
|
-
oficio_difuntos,
|
|
38
|
-
oficio_titulos,
|
|
39
|
-
oficio_citas,
|
|
40
|
-
oficio_textos,
|
|
41
|
-
oraciones_finales,
|
|
42
|
-
preces_contenido,
|
|
43
|
-
preces_intro,
|
|
44
|
-
preces_respuesta,
|
|
45
|
-
responsorios,
|
|
46
|
-
salmos_antifonas,
|
|
47
|
-
salmos_citas,
|
|
48
|
-
salmos_textos,
|
|
49
|
-
titulo_hora_liturgica,
|
|
50
|
-
invitatorios
|
|
51
|
-
}
|
|
File without changes
|
|
File without changes
|