@elderbyte/ngx-starter 19.2.3 → 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 +216 -171
- 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/lib/components/data-view/grid/activation/elder-grid-activation.directive.d.ts +1 -1
- package/lib/components/layout/public_api.d.ts +1 -0
- package/lib/components/layout/single-pane-wrapper/single-pane-wrapper.component.d.ts +7 -0
- 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();
|
|
@@ -42,5 +42,5 @@ export declare class ElderGridActivationDirective<T = any> {
|
|
|
42
42
|
**************************************************************************/
|
|
43
43
|
activate(item: T, options: ItemActivationOptions): void;
|
|
44
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderGridActivationDirective<any>, never>;
|
|
45
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderGridActivationDirective<any>, "[elderGridActivation]",
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderGridActivationDirective<any>, "elder-grid[elderGridActivation]", ["elderGridActivation"], { "activationOptions": { "alias": "elderGridActivation"; "required": false; }; "activeItem": { "alias": "activeItem"; "required": false; }; }, { "activeItemEventChange": "activeItemEventChange"; "activeItemChange": "activeItemChange"; }, never, never, true, never>;
|
|
46
46
|
}
|
|
@@ -5,3 +5,4 @@ export * from './pane/header/pane-title.component';
|
|
|
5
5
|
export * from './pane/header/pane-subtitle.component';
|
|
6
6
|
export * from './pane/header/pane-actions.component';
|
|
7
7
|
export * from './basic-pane-layout/basic-pane-layout.component';
|
|
8
|
+
export * from './single-pane-wrapper/single-pane-wrapper.component';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ElderSinglePaneWrapperComponent {
|
|
3
|
+
innerClass: string;
|
|
4
|
+
class: string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSinglePaneWrapperComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderSinglePaneWrapperComponent, "elder-single-pane-wrapper", never, { "innerClass": { "alias": "innerClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
7
|
+
}
|
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 {
|