@arsedizioni/ars-utils 18.4.97 → 18.4.99
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.common/common/definitions.d.ts +4 -1
- package/esm2022/clipper.common/common/definitions.mjs +10 -4
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +9 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -286,7 +286,9 @@ export interface ClipperDocumentInfo {
|
|
|
286
286
|
isExpired?: boolean | null;
|
|
287
287
|
isExpiring?: boolean | null;
|
|
288
288
|
isMenuOpen?: boolean | null;
|
|
289
|
+
applicableFromDate?: Date | null;
|
|
289
290
|
validityState?: number | null;
|
|
291
|
+
validFromDate?: Date | null;
|
|
290
292
|
validUntilDate?: Date | null;
|
|
291
293
|
validityDescription?: string | null;
|
|
292
294
|
validityInfo?: string | null;
|
|
@@ -855,9 +857,10 @@ export declare class ClipperSearchUtils {
|
|
|
855
857
|
/**
|
|
856
858
|
* Get hte model list related to a list of modules
|
|
857
859
|
* @param modules: the modules to check
|
|
860
|
+
* @parma single: true to select only the most representative
|
|
858
861
|
* @returns the list fo models
|
|
859
862
|
*/
|
|
860
|
-
static getModulesModels(modules: NameValueItem<ClipperModule>[] | null | undefined): ClipperModel[];
|
|
863
|
+
static getModulesModels(modules: NameValueItem<ClipperModule>[] | null | undefined, single?: boolean | null): ClipperModel[];
|
|
861
864
|
/**
|
|
862
865
|
* Check if current filter is a text based search
|
|
863
866
|
* @param params : the search params to check
|