@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.
@@ -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
  }