@arsedizioni/ars-utils 18.2.293 → 18.2.294
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 -16
- package/core/services/theme.service.d.ts +4 -0
- package/esm2022/clipper.common/common/definitions.mjs +35 -121
- package/esm2022/core/services/theme.service.mjs +6 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +34 -120
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +5 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -36,7 +36,7 @@ export declare enum ClipperModel {
|
|
|
36
36
|
News = 3,
|
|
37
37
|
Articoli = 4,
|
|
38
38
|
Juris = 5,
|
|
39
|
-
Quesiti =
|
|
39
|
+
Quesiti = 8,
|
|
40
40
|
NormativaVigente = 9,
|
|
41
41
|
Scadenze = 10,
|
|
42
42
|
Coordinamento = 11,
|
|
@@ -547,29 +547,17 @@ export declare class ClipperUtils {
|
|
|
547
547
|
static getClipperAvailableSortOptions(modules?: NameValueItem<ClipperModule>[] | null | undefined, params?: ClipperSearchParams | null | undefined): NameValueItem<ClipperSort>[];
|
|
548
548
|
}
|
|
549
549
|
export declare class ClipperSearchUtils {
|
|
550
|
-
/**
|
|
551
|
-
* Check if search params have at least on params set
|
|
552
|
-
* @param params : the search params to check
|
|
553
|
-
* @returns true if validation succeded
|
|
554
|
-
*/
|
|
555
|
-
static canSearch(params: ClipperSearchParams): boolean;
|
|
556
550
|
/**
|
|
557
551
|
* Clear the search params object
|
|
558
552
|
* @param params : the search params to clear
|
|
559
553
|
*/
|
|
560
554
|
static clear(params: ClipperSearchParams): void;
|
|
561
555
|
/**
|
|
562
|
-
* Get hte model list related to a
|
|
563
|
-
* @param
|
|
556
|
+
* Get hte model list related to a list of modules
|
|
557
|
+
* @param modules: the modules to check
|
|
564
558
|
* @returns the list fo models
|
|
565
559
|
*/
|
|
566
|
-
|
|
567
|
-
/**
|
|
568
|
-
* Prepare the module specific query
|
|
569
|
-
* @param params : the search params to use
|
|
570
|
-
* @returns the new search params
|
|
571
|
-
*/
|
|
572
|
-
static prepare(params: ClipperSearchParams): ClipperSearchParams;
|
|
560
|
+
static getModulesModels(modules: NameValueItem<ClipperModule>[] | null | undefined): ClipperModel[];
|
|
573
561
|
/**
|
|
574
562
|
* Check if current filter is a text based search
|
|
575
563
|
* @param params : the search params to check
|