@arsedizioni/ars-utils 18.2.268 → 18.2.270
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 -3
- package/clipper.ui/ui/clipper.scss +1 -1
- package/esm2022/clipper.common/common/definitions.mjs +16 -7
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/document/document.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/references/references.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-facets/search-facets.component.mjs +3 -3
- package/esm2022/clipper.ui/ui/search-result-item/search-result-item.component.mjs +3 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +15 -6
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +10 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -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
|
-
|
|
31
|
+
Ricerca = 99
|
|
31
32
|
}
|
|
32
33
|
export declare enum ClipperModel {
|
|
33
34
|
Unknown = 0,
|
|
@@ -543,7 +544,7 @@ export declare class ClipperUtils {
|
|
|
543
544
|
* @param modules : the modules list
|
|
544
545
|
* @returns the list of availbale sort options
|
|
545
546
|
*/
|
|
546
|
-
static getClipperAvailableSortOptions(
|
|
547
|
+
static getClipperAvailableSortOptions(module?: ClipperModule | undefined, params?: ClipperSearchParams | undefined): NameValueItem<ClipperSort>[];
|
|
547
548
|
}
|
|
548
549
|
export declare class ClipperSearchUtils {
|
|
549
550
|
/**
|