@sumaris-net/ngx-components 2.7.3-rc30 → 2.7.3-rc32
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/esm2022/src/app/core/table/testing/table-validator.service.mjs +4 -1
- package/esm2022/src/app/core/table/testing/table.testing.mjs +29 -20
- package/esm2022/src/app/shared/material/datetime/material.datetime.mjs +3 -3
- package/esm2022/src/app/shared/material/latlong/material.latlong.mjs +3 -3
- package/esm2022/src/app/shared/material/testing/common.test.mjs +3 -3
- package/fesm2022/sumaris-net.ngx-components.mjs +73 -65
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/manifest.json +1 -1
- package/src/theme/_ngx-components.table.scss +20 -2
package/package.json
CHANGED
package/src/assets/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ngx-sumaris-components",
|
|
3
3
|
"short_name": "ngx-sumaris-components",
|
|
4
4
|
"manifest_version": 1,
|
|
5
|
-
"version": "2.7.3-
|
|
5
|
+
"version": "2.7.3-rc32",
|
|
6
6
|
"default_locale": "fr",
|
|
7
7
|
"description": "Angular components for building beautiful and responsive Apps",
|
|
8
8
|
"icons": [{
|
|
@@ -283,17 +283,23 @@
|
|
|
283
283
|
|
|
284
284
|
.mat-mdc-form-field {
|
|
285
285
|
width: 100%;
|
|
286
|
-
|
|
286
|
+
|
|
287
287
|
--mat-form-field-container-text-size: 14px;
|
|
288
288
|
--mdc-filled-text-field-label-text-size: var(--mat-form-field-container-text-size);
|
|
289
289
|
--mat-select-trigger-text-size: var(--mat-form-field-container-text-size);
|
|
290
290
|
--mat-mdc-form-field-height: calc(var(--mat-row-height) - 2px);
|
|
291
|
+
--mdc-outlined-text-field-outline-width: 0;
|
|
291
292
|
height: var(--mat-mdc-form-field-height);
|
|
292
293
|
|
|
293
294
|
.mat-mdc-form-field-label {
|
|
294
295
|
width: 100%;
|
|
295
296
|
}
|
|
296
297
|
|
|
298
|
+
&.mat-form-field-appearance-fill {
|
|
299
|
+
height: var(--mat-row-height);
|
|
300
|
+
padding-top: 1px; // suppress a redundant line in table
|
|
301
|
+
}
|
|
302
|
+
|
|
297
303
|
.mat-mdc-text-field-wrapper {
|
|
298
304
|
max-height: var(--mat-mdc-form-field-height);
|
|
299
305
|
}
|
|
@@ -384,7 +390,8 @@
|
|
|
384
390
|
}
|
|
385
391
|
}
|
|
386
392
|
|
|
387
|
-
.mat-mdc-form-field-subscript-wrapper
|
|
393
|
+
.mat-mdc-form-field-subscript-wrapper,
|
|
394
|
+
.mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
|
|
388
395
|
margin-top: -1.5rem;
|
|
389
396
|
text-align: right;
|
|
390
397
|
pointer-events: none;
|
|
@@ -427,6 +434,17 @@
|
|
|
427
434
|
padding-top: 0.4em;
|
|
428
435
|
}
|
|
429
436
|
|
|
437
|
+
mat-date-time-field,
|
|
438
|
+
mat-latlong-field {
|
|
439
|
+
height: var(--mat-row-height);
|
|
440
|
+
.mat-mdc-form-field-subscript-wrapper {
|
|
441
|
+
margin-top: -1.5rem;
|
|
442
|
+
text-align: right;
|
|
443
|
+
pointer-events: none;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
|
|
430
448
|
.mat-mdc-cell > .ion-text-nowrap {
|
|
431
449
|
width: 100%;
|
|
432
450
|
overflow: hidden;
|