@elderbyte/ngx-starter 19.1.0-beta.7 → 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-style-fixes.scss +5 -0
- package/theming/system/_elder-design-tokens.scss +4 -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
|
@@ -68,7 +68,10 @@
|
|
|
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;
|
|
72
75
|
|
|
73
76
|
// xy
|
|
74
77
|
--elder-round-form-field-outline: none;
|
|
@@ -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 *
|