@arsedizioni/ars-utils 18.2.267 → 18.2.268
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 +6 -0
- package/clipper.ui/ui/clipper.scss +8 -3
- package/esm2022/clipper.common/common/definitions.mjs +11 -1
- 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/esm2022/clipper.ui/ui/search-result-manager/search-result-manager.mjs +5 -5
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +10 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +14 -14
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -514,6 +514,12 @@ export declare class ClipperDashboard {
|
|
|
514
514
|
getUnreadItems(module: ClipperModule): number;
|
|
515
515
|
}
|
|
516
516
|
export declare class ClipperUtils {
|
|
517
|
+
/**
|
|
518
|
+
* Check if a model is readable
|
|
519
|
+
* @param model : the model to check
|
|
520
|
+
* @returns : true if the model is readable
|
|
521
|
+
*/
|
|
522
|
+
static isClipperModelReadable(model: ClipperModel): boolean;
|
|
517
523
|
/**
|
|
518
524
|
* Return the Clipper module from model
|
|
519
525
|
* @param model: the model
|
|
@@ -23,21 +23,26 @@
|
|
|
23
23
|
background-color: var(--ars-color-primary-hi, #12c0ae);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.expired,
|
|
27
26
|
.unread {
|
|
28
27
|
color: var(--ars-color-error, #ff5449) !important;
|
|
29
28
|
}
|
|
30
29
|
|
|
30
|
+
.expired {
|
|
31
|
+
color: var(--ars-color-error-low, #a80710) !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
31
34
|
.expiring {
|
|
32
35
|
color: var(--ars-color-warning, #FFC107) !important;
|
|
33
36
|
}
|
|
34
37
|
|
|
35
|
-
.error-bg,
|
|
36
|
-
.expired-bg,
|
|
37
38
|
.unread-bg {
|
|
38
39
|
background-color: var(--ars-color-error, #ff5449);
|
|
39
40
|
}
|
|
40
41
|
|
|
42
|
+
.error-bg,
|
|
43
|
+
.expired-bg {
|
|
44
|
+
background-color: var(--ars-color-error, #a80710);
|
|
45
|
+
}
|
|
41
46
|
.expiring-bg {
|
|
42
47
|
background-color: var(--ars-color-warning, #FFC107);
|
|
43
48
|
}
|