@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.
@@ -11,3 +11,4 @@ export * from './query-list-binding';
11
11
  export * from './parse-util';
12
12
  export * from './focus-util';
13
13
  export * from './batcher';
14
+ export * from './signal-input';
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "19.1.0-beta.7",
3
+ "version": "19.1.0-beta.8",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^18.0.0 || ^19.0.0",
6
6
  "@angular/common": "^18.0.0 || ^19.0.0",
@@ -21,7 +21,7 @@ $elder-tile-padding: 8px;
21
21
  }
22
22
 
23
23
  .elder-grid-footer {
24
- min-height: 44px;
24
+ min-height: var(--elder-data-element-footer-height);
25
25
  }
26
26
 
27
27
  .elder-grid-tile {
@@ -59,7 +59,7 @@
59
59
  }
60
60
 
61
61
  .elder-table-footer {
62
- height: 44px;
62
+ height: var(--elder-data-element-footer-height);
63
63
  }
64
64
 
65
65
  .elder-table-checkbox {
@@ -379,4 +379,9 @@
379
379
  &.elder-dark-theme {
380
380
  --mdc-linear-progress-track-color: var(--elder-color-highlight-dim);
381
381
  }
382
+
383
+ // disable icon button overflow
384
+ .mat-mdc-icon-button {
385
+ overflow: hidden;
386
+ }
382
387
  }
@@ -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-low);
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
- .m-0 {
252
- margin: 0;
251
+ .my-auto {
252
+ margin-top: auto;
253
+ margin-bottom: auto;
253
254
  }
254
255
 
255
- .mt-0 {
256
- margin-top: 0;
256
+ .mt-auto {
257
+ margin-top: auto;
257
258
  }
258
259
 
259
- .mb-0 {
260
- margin-bottom: 0;
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
- .mx-0 {
272
- margin-left: 0;
273
- margin-right: 0;
264
+ .mr-auto {
265
+ margin-right: auto;
274
266
  }
275
267
 
276
- .my-0 {
277
- margin-top: 0;
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 *