@elderbyte/ngx-starter 19.1.7 → 19.1.9
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 +28 -5
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/layout/pane/header/pane-subtitle.component.d.ts +5 -0
- package/lib/components/layout/public_api.d.ts +1 -0
- package/package.json +1 -1
- package/theming/abstracts/_elder-design-tokens.scss +8 -0
- package/theming/base/_elder-form-base.scss +0 -7
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class ElderPaneSubtitleComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ElderPaneSubtitleComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderPaneSubtitleComponent, "elder-pane-subtitle", never, {}, {}, never, ["*"], true, never>;
|
|
5
|
+
}
|
|
@@ -2,5 +2,6 @@ export * from './pane/pane.component';
|
|
|
2
2
|
export * from './pane/pane-content.component';
|
|
3
3
|
export * from './pane/header/pane-header.component';
|
|
4
4
|
export * from './pane/header/pane-title.component';
|
|
5
|
+
export * from './pane/header/pane-subtitle.component';
|
|
5
6
|
export * from './pane/header/pane-actions.component';
|
|
6
7
|
export * from './basic-pane-layout/basic-pane-layout.component';
|
package/package.json
CHANGED
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
--md-sys-color-background: var(--md-sys-color-surface-container);
|
|
13
13
|
--mat-app-background-color: var(--md-sys-color-background);
|
|
14
14
|
|
|
15
|
+
// elder sizes
|
|
16
|
+
--elder-size-xs: #{map.get(config.$sizes, xs)};
|
|
17
|
+
--elder-size-sm: #{map.get(config.$sizes, sm)};
|
|
18
|
+
--elder-size-md: #{map.get(config.$sizes, md)};
|
|
19
|
+
--elder-size-lg: #{map.get(config.$sizes, lg)};
|
|
20
|
+
--elder-size-xl: #{map.get(config.$sizes, xl)};
|
|
21
|
+
--elder-size-xxl: #{map.get(config.$sizes, xxl)};
|
|
22
|
+
|
|
15
23
|
// mat variables
|
|
16
24
|
--mat-sidenav-container-width: auto; // is set to around 300px by default in MAT 3 (MAT 2 was auto by default)
|
|
17
25
|
--mat-badge-small-size-text-size: 9px; // this is the mat2 setting, mat3 somehow sets this to 0, which hides the font, unclear why.
|
|
@@ -354,13 +354,6 @@
|
|
|
354
354
|
--mdc-outlined-text-field-caret-color: var(--md-sys-color-inverse-on-surface) !important;
|
|
355
355
|
}
|
|
356
356
|
}
|
|
357
|
-
|
|
358
|
-
/***************************************************************************
|
|
359
|
-
Fixes mysterious rare formfield bug where beginning of placeholder text is partially cut off
|
|
360
|
-
**************************************************************************/
|
|
361
|
-
.mat-mdc-form-field-has-icon-prefix .mat-mdc-text-field-wrapper {
|
|
362
|
-
--mat-mdc-form-field-label-offset-x: -14px;
|
|
363
|
-
}
|
|
364
357
|
}
|
|
365
358
|
|
|
366
359
|
@function calc-side-paddings($density) {
|