@elderbyte/ngx-starter 19.2.4 → 19.2.5
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/fesm2022/elderbyte-ngx-starter.mjs +1077 -1065
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/data-view/common/activation/data-view-activation-controller.service.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/components/card-organizer/card-stack/elder-card-stack.component.scss +0 -5
- package/src/lib/components/navigation/nav/nav-list/elder-nav-list.component.scss +0 -5
- package/src/lib/components/shell/shell/elder-shell.component.scss +0 -1
- package/theming/utilities/_elder-common-utils.scss +42 -2
package/lib/components/data-view/common/activation/data-view-activation-controller.service.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare class DataViewActivationController<T> {
|
|
|
11
11
|
* Fields *
|
|
12
12
|
* *
|
|
13
13
|
**************************************************************************/
|
|
14
|
-
private
|
|
14
|
+
private dataContext$;
|
|
15
15
|
private dataInView$;
|
|
16
16
|
private options;
|
|
17
17
|
/***************************************************************************
|
|
@@ -54,6 +54,7 @@ export declare class DataViewActivationController<T> {
|
|
|
54
54
|
private previousDataItemInternal;
|
|
55
55
|
private nextDataItemInternal;
|
|
56
56
|
private handleAutoActivations;
|
|
57
|
+
private isActiveItemValid;
|
|
57
58
|
private autoActivateItem;
|
|
58
59
|
private deactivateById;
|
|
59
60
|
private get hasActiveItem();
|
package/package.json
CHANGED
|
@@ -22,6 +22,10 @@
|
|
|
22
22
|
text-align: center;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
+
.full-width {
|
|
26
|
+
width: 100%; // legacy, keep for now
|
|
27
|
+
}
|
|
28
|
+
|
|
25
29
|
.overflow-hidden {
|
|
26
30
|
overflow: hidden;
|
|
27
31
|
}
|
|
@@ -30,8 +34,44 @@
|
|
|
30
34
|
overflow: auto;
|
|
31
35
|
}
|
|
32
36
|
|
|
33
|
-
.
|
|
34
|
-
|
|
37
|
+
.overflow-visible {
|
|
38
|
+
overflow: visible;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.overflow-scroll {
|
|
42
|
+
overflow: scroll;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.overflow-x-hidden {
|
|
46
|
+
overflow-x: hidden;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.overflow-x-auto {
|
|
50
|
+
overflow-x: auto;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.overflow-x-visible {
|
|
54
|
+
overflow-x: visible;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.overflow-x-scroll {
|
|
58
|
+
overflow-x: scroll;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.overflow-y-hidden {
|
|
62
|
+
overflow-y: hidden;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.overflow-y-auto {
|
|
66
|
+
overflow-y: auto;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.overflow-y-visible {
|
|
70
|
+
overflow-y: visible;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.overflow-y-scroll {
|
|
74
|
+
overflow-y: scroll;
|
|
35
75
|
}
|
|
36
76
|
|
|
37
77
|
.scrollable {
|