@arsedizioni/ars-utils 18.2.293 → 18.2.295

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.
@@ -36,7 +36,7 @@ export declare enum ClipperModel {
36
36
  News = 3,
37
37
  Articoli = 4,
38
38
  Juris = 5,
39
- Quesiti = 6,
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 module
563
- * @param module: the module
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
- private static getModuleModels;
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
@@ -34,6 +34,10 @@ export declare class ThemeService implements OnDestroy {
34
34
  * Tooltip text on toggle
35
35
  */
36
36
  readonly toggleTooltip: Signal<string>;
37
+ constructor();
38
+ /**
39
+ * Initialize
40
+ */
37
41
  initialize(): void;
38
42
  ngOnDestroy(): void;
39
43
  /**