@arsedizioni/ars-utils 18.4.43 → 18.4.45
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/esm2022/clipper.common/common/definitions.mjs +2 -9
- package/esm2022/clipper.ui/ui/document-menu/document-menu.component.mjs +2 -2
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +2 -2
- package/esm2022/clipper.ui/ui/search-result-manager/search-result-manager.mjs +2 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +1 -8
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +3 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -88,7 +88,7 @@ class ClipperDocumentMenuComponent {
|
|
|
88
88
|
this.item = input();
|
|
89
89
|
this.isReference = input(false);
|
|
90
90
|
this.isReadable = input(true);
|
|
91
|
-
this.isReadableModel = input(
|
|
91
|
+
this.isReadableModel = input(null);
|
|
92
92
|
this.isLawInForce = input(false);
|
|
93
93
|
this.canPrint = input(false);
|
|
94
94
|
this.canFind = input(false);
|
|
@@ -1206,6 +1206,7 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
1206
1206
|
}
|
|
1207
1207
|
if (n.model !== ClipperModel.AggiornamentoNormativo &&
|
|
1208
1208
|
n.model !== ClipperModel.NormativaVigente &&
|
|
1209
|
+
n.model !== ClipperModel.GiurisprudenzaRecente &&
|
|
1209
1210
|
n.model !== ClipperModel.Juris &&
|
|
1210
1211
|
n.date) {
|
|
1211
1212
|
n.date = startOfDay(new Date(n.date ?? n.publishingDate));
|
|
@@ -1546,7 +1547,7 @@ class ClipperSearchResultItemComponent {
|
|
|
1546
1547
|
this.tilePictureUrl = input();
|
|
1547
1548
|
this.isSelectable = input(true);
|
|
1548
1549
|
this.isReadable = input(true);
|
|
1549
|
-
this.isReadableModel = input(
|
|
1550
|
+
this.isReadableModel = input(null);
|
|
1550
1551
|
this.displayModelName = input(false);
|
|
1551
1552
|
this.displayMode = input(ClipperSearchResultItemDisplayMode.List);
|
|
1552
1553
|
this.displayModesEnum = ClipperSearchResultItemDisplayMode;
|