@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.
@@ -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.6",
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 {
@@ -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-low);
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-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;
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
- .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 *