@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.
@@ -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(ClipperModel.Unknown);
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(ClipperModel.Unknown);
1550
+ this.isReadableModel = input(null);
1550
1551
  this.displayModelName = input(false);
1551
1552
  this.displayMode = input(ClipperSearchResultItemDisplayMode.List);
1552
1553
  this.displayModesEnum = ClipperSearchResultItemDisplayMode;