@db-ux/ngx-core-components 2.3.0 → 2.4.0-0-af2a02f
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.
|
@@ -2547,7 +2547,12 @@ class DBInput {
|
|
|
2547
2547
|
@if(dataList()){
|
|
2548
2548
|
<datalist [attr.id]="_dataListId()">
|
|
2549
2549
|
@for (option of getDataList();track trackByOption0;let i = $index) {
|
|
2550
|
-
<option
|
|
2550
|
+
<option
|
|
2551
|
+
[attr.value]="option.value"
|
|
2552
|
+
[attr.data-value]="option.hiddenValue"
|
|
2553
|
+
>
|
|
2554
|
+
{{option.label}}
|
|
2555
|
+
</option>
|
|
2551
2556
|
}
|
|
2552
2557
|
</datalist>
|
|
2553
2558
|
}
|
|
@@ -2620,7 +2625,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
2620
2625
|
@if(dataList()){
|
|
2621
2626
|
<datalist [attr.id]="_dataListId()">
|
|
2622
2627
|
@for (option of getDataList();track trackByOption0;let i = $index) {
|
|
2623
|
-
<option
|
|
2628
|
+
<option
|
|
2629
|
+
[attr.value]="option.value"
|
|
2630
|
+
[attr.data-value]="option.hiddenValue"
|
|
2631
|
+
>
|
|
2632
|
+
{{option.label}}
|
|
2633
|
+
</option>
|
|
2624
2634
|
}
|
|
2625
2635
|
</datalist>
|
|
2626
2636
|
}
|