@arsedizioni/ars-utils 18.2.269 → 18.2.271

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.
@@ -14,7 +14,8 @@ export declare enum ClipperModuleGroup {
14
14
  Contributi = 3,
15
15
  DGInfo = 4,
16
16
  Calendario = 11,
17
- Archivio = 12
17
+ Archivio = 12,
18
+ Ricerca = 99
18
19
  }
19
20
  export declare enum ClipperModule {
20
21
  NormativaVigente = 4,
@@ -27,7 +28,7 @@ export declare enum ClipperModule {
27
28
  Approfondimenti = 6,
28
29
  QuesitiECasiRisolti = 10,
29
30
  MetodiDiAnalisi = 11,
30
- Search = 999
31
+ Ricerca = 99
31
32
  }
32
33
  export declare enum ClipperModel {
33
34
  Unknown = 0,
@@ -537,13 +538,13 @@ export declare class ClipperUtils {
537
538
  * @param value: the module name
538
539
  * @returns the list of modules
539
540
  */
540
- static getClipperModuleGroupItems(value: ClipperModuleGroup): NameValueItem<number>[];
541
+ static getClipperModuleGroupItems(value: ClipperModuleGroup): NameValueItem<ClipperModule>[];
541
542
  /**
542
543
  * Return the list of available sort options for a list of modules
543
544
  * @param modules : the modules list
544
545
  * @returns the list of availbale sort options
545
546
  */
546
- static getClipperAvailableSortOptions(modules?: NameValueItem<number>[] | undefined, params?: ClipperSearchParams | undefined): NameValueItem<ClipperSort>[];
547
+ static getClipperAvailableSortOptions(module?: ClipperModule | undefined, params?: ClipperSearchParams | undefined): NameValueItem<ClipperSort>[];
547
548
  }
548
549
  export declare class ClipperSearchUtils {
549
550
  /**