@ecodev/natural 68.1.1 → 69.0.0
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/package.json
CHANGED
|
@@ -8,17 +8,19 @@ body {
|
|
|
8
8
|
app-support a,
|
|
9
9
|
.rich-text a,
|
|
10
10
|
a.app-link {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
&:not(.mdc-button) {
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
border-bottom-width: 2px;
|
|
14
|
+
border-bottom-style: solid;
|
|
15
|
+
border-color: var(--mat-sys-primary-container);
|
|
16
|
+
color: var(--nat-primary-link-color);
|
|
17
|
+
text-decoration: none;
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
&:hover {
|
|
20
|
+
@supports (color: color-mix(in srgb, red, blue)) {
|
|
21
|
+
border-color: color-mix(in srgb, var(--mat-sys-primary-container) 85%, black);
|
|
22
|
+
color: color-mix(in srgb, var(--mat-sys-primary-container) 85%, black);
|
|
23
|
+
}
|
|
22
24
|
}
|
|
23
25
|
}
|
|
24
26
|
}
|
|
@@ -1482,10 +1482,6 @@ declare class NaturalAbstractList<TService extends NaturalAbstractModelService<a
|
|
|
1482
1482
|
* Search is visible in most cases, but hidden on a panel
|
|
1483
1483
|
*/
|
|
1484
1484
|
showSearch(): boolean;
|
|
1485
|
-
/**
|
|
1486
|
-
* Table should be shown only when there is data
|
|
1487
|
-
*/
|
|
1488
|
-
showTable(): boolean;
|
|
1489
1485
|
/**
|
|
1490
1486
|
* No results is shown when there is no items, but only in non-panel context only.
|
|
1491
1487
|
* In panels we want discrete mode, there is no search and no "no-results"
|