@elderbyte/ngx-starter 19.1.4 → 19.1.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 +1036 -1033
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/shell/shell/elder-shell.component.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/components/shell/shell/elder-shell.component.scss +13 -0
- package/theming/base/_elder-fixes-base.scss +5 -4
|
@@ -55,6 +55,7 @@ export declare class ElderShellComponent implements OnInit, OnDestroy {
|
|
|
55
55
|
readonly footerTemplate$: Observable<TemplateRef<any>>;
|
|
56
56
|
private readonly destroy$;
|
|
57
57
|
color: ThemePalette;
|
|
58
|
+
navMenuSvgIcon: string;
|
|
58
59
|
readonly menuColor$: BehaviorSubject<ThemePalette>;
|
|
59
60
|
readonly menuIconColor$: BehaviorSubject<ThemePalette>;
|
|
60
61
|
/***************************************************************************
|
|
@@ -97,5 +98,5 @@ export declare class ElderShellComponent implements OnInit, OnDestroy {
|
|
|
97
98
|
private isContained;
|
|
98
99
|
private checkSoon;
|
|
99
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderShellComponent, never>;
|
|
100
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderShellComponent, "elder-shell", never, { "sideNavToggleEnabled": { "alias": "sideNavToggleEnabled"; "required": false; }; "leftSideAutoFocus": { "alias": "leftSideAutoFocus"; "required": false; }; "rightSideAutoFocus": { "alias": "rightSideAutoFocus"; "required": false; }; "color": { "alias": "color"; "required": false; }; "menuColor": { "alias": "menuColor"; "required": false; }; "menuIconColor": { "alias": "menuIconColor"; "required": false; }; }, {}, ["sideContentLeft", "sideContentRight", "centerContent"], never, true, never>;
|
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderShellComponent, "elder-shell", never, { "sideNavToggleEnabled": { "alias": "sideNavToggleEnabled"; "required": false; }; "leftSideAutoFocus": { "alias": "leftSideAutoFocus"; "required": false; }; "rightSideAutoFocus": { "alias": "rightSideAutoFocus"; "required": false; }; "color": { "alias": "color"; "required": false; }; "navMenuSvgIcon": { "alias": "navMenuSvgIcon"; "required": false; }; "menuColor": { "alias": "menuColor"; "required": false; }; "menuIconColor": { "alias": "menuIconColor"; "required": false; }; }, {}, ["sideContentLeft", "sideContentRight", "centerContent"], never, true, never>;
|
|
101
102
|
}
|
package/package.json
CHANGED
|
@@ -26,3 +26,16 @@ mat-sidenav-container {
|
|
|
26
26
|
background-color: rgba(0, 0, 0, 0.07);
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
+
|
|
30
|
+
.elder-logo-btn {
|
|
31
|
+
display: flex;
|
|
32
|
+
padding: 5px;
|
|
33
|
+
justify-content: center;
|
|
34
|
+
align-items: center;
|
|
35
|
+
--mdc-icon-button-icon-size: 36px !important;
|
|
36
|
+
.mat-icon {
|
|
37
|
+
height: var(--mdc-icon-button-icon-size);
|
|
38
|
+
width: var(--mdc-icon-button-icon-size);
|
|
39
|
+
filter: brightness(1.09) saturate(1.07);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -94,6 +94,11 @@
|
|
|
94
94
|
opacity: 0.5;
|
|
95
95
|
};
|
|
96
96
|
|
|
97
|
+
// mat-slide-toggle label color inherit from parent context
|
|
98
|
+
.mat-mdc-slide-toggle .mat-internal-form-field {
|
|
99
|
+
color: inherit !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
97
102
|
/**************************************************************************
|
|
98
103
|
Card fixes
|
|
99
104
|
**************************************************************************/
|
|
@@ -192,8 +197,4 @@
|
|
|
192
197
|
// --mdc-switch-selected-hover-handle-color: color-mix(in hsl, var(--md-sys-color-tertiary), black 16%);
|
|
193
198
|
}
|
|
194
199
|
}
|
|
195
|
-
|
|
196
|
-
&.elder-light-theme .main-nav-logo{
|
|
197
|
-
filter: brightness(1.09) saturate(1.07);
|
|
198
|
-
}
|
|
199
200
|
}
|