@arsedizioni/ars-utils 19.2.8 → 19.2.10
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +5 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +29 -13
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-evolution.common.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -1863,7 +1863,7 @@ class ClipperUtils {
|
|
|
1863
1863
|
* @returns the group name
|
|
1864
1864
|
*/
|
|
1865
1865
|
static getClipperModuleGroupName(value) {
|
|
1866
|
-
return ClipperModuleGroups.filter(
|
|
1866
|
+
return ClipperModuleGroups.filter(n => n.value === value)?.[0].name;
|
|
1867
1867
|
}
|
|
1868
1868
|
/**
|
|
1869
1869
|
* Return the list of modules of a group
|
|
@@ -1871,7 +1871,7 @@ class ClipperUtils {
|
|
|
1871
1871
|
* @returns the list of modules
|
|
1872
1872
|
*/
|
|
1873
1873
|
static getClipperModuleGroupItems(value) {
|
|
1874
|
-
return ClipperModules.filter(
|
|
1874
|
+
return ClipperModules.filter(n => n.parentValue === value);
|
|
1875
1875
|
}
|
|
1876
1876
|
/**
|
|
1877
1877
|
* Check modules against current selected in filter
|
|
@@ -2032,6 +2032,9 @@ class ClipperSearchUtils {
|
|
|
2032
2032
|
case ClipperModule.GazzetteBollettiniEFontiDiverse:
|
|
2033
2033
|
models.push(ClipperModel.AggiornamentoNormativo);
|
|
2034
2034
|
break;
|
|
2035
|
+
case ClipperModule.GiurisprudenzaRecente:
|
|
2036
|
+
models.push(ClipperModel.GiurisprudenzaRecente);
|
|
2037
|
+
break;
|
|
2035
2038
|
case ClipperModule.NormativaVigente:
|
|
2036
2039
|
models.push(ClipperModel.NormativaVigente);
|
|
2037
2040
|
break;
|