@solcre-org/core-ui 2.20.25 → 2.20.27
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.
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
.c-entry-input--native-select{
|
|
9
9
|
position: relative;
|
|
10
|
+
min-width: 0;
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
|
|
@@ -45,6 +46,8 @@
|
|
|
45
46
|
/* ---- Single value ---- */
|
|
46
47
|
|
|
47
48
|
.c-native-select__single-value{
|
|
49
|
+
flex: 1;
|
|
50
|
+
min-width: 0;
|
|
48
51
|
white-space: nowrap;
|
|
49
52
|
overflow: hidden;
|
|
50
53
|
text-overflow: ellipsis;
|
|
@@ -55,6 +58,8 @@
|
|
|
55
58
|
/* ---- Placeholder ---- */
|
|
56
59
|
|
|
57
60
|
.c-native-select__placeholder{
|
|
61
|
+
flex: 1;
|
|
62
|
+
min-width: 0;
|
|
58
63
|
color: var(--_entry-input-placeholder-color);
|
|
59
64
|
white-space: nowrap;
|
|
60
65
|
overflow: hidden;
|
|
@@ -14921,7 +14921,7 @@ class GenericTableComponent {
|
|
|
14921
14921
|
const payload = this.createSafePayload(updatedData);
|
|
14922
14922
|
this.modelApiService.createItem(this.endpoint(), payload, this.modelFactory()).subscribe({
|
|
14923
14923
|
next: (createdItem) => {
|
|
14924
|
-
this.dataCreated.emit(
|
|
14924
|
+
this.dataCreated.emit(createdItem);
|
|
14925
14925
|
this.markItemAsNewlyModified(createdItem.getId());
|
|
14926
14926
|
this.tableActionService.closeModal();
|
|
14927
14927
|
},
|
|
@@ -17674,12 +17674,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
|
|
|
17674
17674
|
// Este archivo es generado automáticamente por scripts/update-version.js
|
|
17675
17675
|
// No edites manualmente este archivo
|
|
17676
17676
|
const VERSION = {
|
|
17677
|
-
full: '2.20.
|
|
17677
|
+
full: '2.20.27',
|
|
17678
17678
|
major: 2,
|
|
17679
17679
|
minor: 20,
|
|
17680
|
-
patch:
|
|
17681
|
-
timestamp: '2026-02-
|
|
17682
|
-
buildDate: '
|
|
17680
|
+
patch: 27,
|
|
17681
|
+
timestamp: '2026-02-26T17:19:42.630Z',
|
|
17682
|
+
buildDate: '26/2/2026'
|
|
17683
17683
|
};
|
|
17684
17684
|
|
|
17685
17685
|
class MainNavComponent {
|