@elderbyte/ngx-starter 19.1.0-beta.6 → 19.1.0-beta.8
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 +12 -9
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/common/utils/public_api.d.ts +1 -0
- package/lib/components/select/single/elder-select/elder-select.component.d.ts +1 -1
- package/package.json +1 -1
- package/src/lib/components/data-view/grid/elder-grid/elder-grid.component.scss +1 -1
- package/src/lib/components/data-view/table/elder-table/elder-table.component.scss +1 -1
- package/theming/style-tweaks/_elder-form.scss +2 -1
- package/theming/style-tweaks/_elder-style-fixes.scss +6 -0
- package/theming/system/_elder-design-tokens.scss +8 -1
- package/theming/utility-classes/_elder-layout-system.scss +41 -20
|
@@ -144,6 +144,6 @@ export declare class ElderSelectComponent<TEntity = any, TId = any, TValue = TEn
|
|
|
144
144
|
*/
|
|
145
145
|
protected writeToControl(value: TValue): void;
|
|
146
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderSelectComponent<any, any, any>, never>;
|
|
147
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ElderSelectComponent<any, any, any>, "elder-select", never, { "nullDisplay": { "alias": "nullDisplay"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "entity": { "alias": "entity"; "required": false; }; "entityId": { "alias": "entityId"; "required": false; }; }, { "entityIdChange": "entityIdChange"; "entityIdUpdated": "entityIdUpdated"; "entityChange": "entityChange"; "entityUpdated": "entityUpdated"; }, never, never, true, never>;
|
|
147
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ElderSelectComponent<any, any, any>, "elder-select", never, { "nullDisplay": { "alias": "nullDisplay"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "entity": { "alias": "entity"; "required": false; }; "entityId": { "alias": "entityId"; "required": false; }; }, { "entityIdChange": "entityIdChange"; "entityIdUpdated": "entityIdUpdated"; "entityChange": "entityChange"; "entityUpdated": "entityUpdated"; "entity$": "entity"; }, never, never, true, never>;
|
|
148
148
|
}
|
|
149
149
|
export {};
|
package/package.json
CHANGED
|
@@ -327,12 +327,13 @@
|
|
|
327
327
|
border-radius: 24px;
|
|
328
328
|
background-color: var(--md-sys-color-surface-container);
|
|
329
329
|
cursor: text;
|
|
330
|
+
outline: var(--elder-round-form-field-outline);
|
|
330
331
|
|
|
331
332
|
.mdc-notched-outline .mat-mdc-notch-piece {
|
|
332
333
|
border: none !important;
|
|
333
334
|
}
|
|
334
335
|
&:hover {
|
|
335
|
-
background-color: var(--md-sys-color-surface-container-
|
|
336
|
+
background-color: var(--md-sys-color-surface-container-high);
|
|
336
337
|
}
|
|
337
338
|
&.mat-focused {
|
|
338
339
|
outline: solid 1px var(--md-sys-color-primary);
|
|
@@ -178,6 +178,7 @@
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
&.elder-dark-theme {
|
|
181
|
+
.mat-toolbar,
|
|
181
182
|
.mat-toolbar.mat-primary,
|
|
182
183
|
.mat-toolbar.mat-accent {
|
|
183
184
|
background-color: var(--elder-dark-gray) !important;
|
|
@@ -378,4 +379,9 @@
|
|
|
378
379
|
&.elder-dark-theme {
|
|
379
380
|
--mdc-linear-progress-track-color: var(--elder-color-highlight-dim);
|
|
380
381
|
}
|
|
382
|
+
|
|
383
|
+
// disable icon button overflow
|
|
384
|
+
.mat-mdc-icon-button {
|
|
385
|
+
overflow: hidden;
|
|
386
|
+
}
|
|
381
387
|
}
|
|
@@ -68,7 +68,13 @@
|
|
|
68
68
|
--md-sys-color-on-primary-fixed-dim: var(--md-sys-color-on-surface);
|
|
69
69
|
|
|
70
70
|
// dialog
|
|
71
|
-
--elder-dialog-panel-bg-color: var(md-sys-color-surface-container-
|
|
71
|
+
--elder-dialog-panel-bg-color: var(--md-sys-color-surface-container-lowest);
|
|
72
|
+
|
|
73
|
+
// data footer
|
|
74
|
+
--elder-data-element-footer-height: 48px;
|
|
75
|
+
|
|
76
|
+
// xy
|
|
77
|
+
--elder-round-form-field-outline: none;
|
|
72
78
|
|
|
73
79
|
&.elder-dark-theme {
|
|
74
80
|
--elder-dialog-panel-bg-color: var(--md-sys-color-surface-container);
|
|
@@ -82,6 +88,7 @@
|
|
|
82
88
|
|
|
83
89
|
// dark theme overwrites
|
|
84
90
|
&.elder-dark-theme {
|
|
91
|
+
--elder-round-form-field-outline: solid 1px var(--md-sys-color-outline);
|
|
85
92
|
--mat-sidenav-scrim-color: rgba(255, 255, 255, 0.4);
|
|
86
93
|
//--md-sys-color-primary-container: #d2cab4; // lighten up dark mode container color
|
|
87
94
|
--md-sys-color-primary-container: var(--elder-gold-semi-dark);
|
|
@@ -248,34 +248,25 @@
|
|
|
248
248
|
margin-right: auto;
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
.
|
|
252
|
-
margin:
|
|
251
|
+
.my-auto {
|
|
252
|
+
margin-top: auto;
|
|
253
|
+
margin-bottom: auto;
|
|
253
254
|
}
|
|
254
255
|
|
|
255
|
-
.mt-
|
|
256
|
-
margin-top:
|
|
256
|
+
.mt-auto {
|
|
257
|
+
margin-top: auto;
|
|
257
258
|
}
|
|
258
259
|
|
|
259
|
-
.mb-
|
|
260
|
-
margin-bottom:
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.mr-0 {
|
|
264
|
-
margin-right: 0;
|
|
265
|
-
}
|
|
266
|
-
|
|
267
|
-
.ml-0 {
|
|
268
|
-
margin-left: 0;
|
|
260
|
+
.mb-auto {
|
|
261
|
+
margin-bottom: auto;
|
|
269
262
|
}
|
|
270
263
|
|
|
271
|
-
.
|
|
272
|
-
margin-
|
|
273
|
-
margin-right: 0;
|
|
264
|
+
.mr-auto {
|
|
265
|
+
margin-right: auto;
|
|
274
266
|
}
|
|
275
267
|
|
|
276
|
-
.
|
|
277
|
-
margin-
|
|
278
|
-
margin-bottom: 0;
|
|
268
|
+
.ml-auto {
|
|
269
|
+
margin-left: auto;
|
|
279
270
|
}
|
|
280
271
|
|
|
281
272
|
.m-xs {
|
|
@@ -458,6 +449,36 @@
|
|
|
458
449
|
margin-bottom: $xxl;
|
|
459
450
|
}
|
|
460
451
|
|
|
452
|
+
.m-0 {
|
|
453
|
+
margin: 0;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.mt-0 {
|
|
457
|
+
margin-top: 0;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.mb-0 {
|
|
461
|
+
margin-bottom: 0;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.mr-0 {
|
|
465
|
+
margin-right: 0;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.ml-0 {
|
|
469
|
+
margin-left: 0;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.mx-0 {
|
|
473
|
+
margin-left: 0;
|
|
474
|
+
margin-right: 0;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.my-0 {
|
|
478
|
+
margin-top: 0;
|
|
479
|
+
margin-bottom: 0;
|
|
480
|
+
}
|
|
481
|
+
|
|
461
482
|
/***************************************************************************
|
|
462
483
|
* *
|
|
463
484
|
* Layout Widths *
|