@arsedizioni/ars-utils 20.4.22 → 20.4.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/clipper.ui/index.d.ts
CHANGED
|
@@ -1033,7 +1033,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
|
|
|
1033
1033
|
private changeDetector;
|
|
1034
1034
|
private clipperService;
|
|
1035
1035
|
readonly useSelections: _angular_core.InputSignal<boolean>;
|
|
1036
|
-
readonly selectionSource: _angular_core.InputSignal<"
|
|
1036
|
+
readonly selectionSource: _angular_core.InputSignal<"none" | "selection" | "bag">;
|
|
1037
1037
|
protected selection: () => ClipperDocumentInfo[];
|
|
1038
1038
|
readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
|
|
1039
1039
|
readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;
|
|
@@ -2123,19 +2123,19 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2123
2123
|
n.anchors = anchors;
|
|
2124
2124
|
}
|
|
2125
2125
|
if (n.validityState > 0) {
|
|
2126
|
-
n.validityDescription = '
|
|
2126
|
+
n.validityDescription = 'Non è più vigente';
|
|
2127
2127
|
n.isExpired = true;
|
|
2128
2128
|
if (n.validUntilDate) {
|
|
2129
2129
|
const expiringDate = startOfDay(new Date(n.validUntilDate));
|
|
2130
2130
|
if (expiringDate < today) {
|
|
2131
2131
|
n.validityDescription =
|
|
2132
|
-
'
|
|
2132
|
+
'Non più vigente dal ' +
|
|
2133
2133
|
SystemUtils.formatDate(expiringDate) +
|
|
2134
2134
|
'.';
|
|
2135
2135
|
}
|
|
2136
2136
|
else {
|
|
2137
2137
|
n.validityDescription =
|
|
2138
|
-
'
|
|
2138
|
+
'Non sarà più vigente dal ' +
|
|
2139
2139
|
SystemUtils.formatDate(expiringDate) +
|
|
2140
2140
|
'.';
|
|
2141
2141
|
n.isExpired = false;
|