@c10t/nice-component-library 0.0.15 → 0.0.16
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.
|
@@ -5116,6 +5116,8 @@ class CvaSmartTableComponent {
|
|
|
5116
5116
|
[isFormControl]="false"
|
|
5117
5117
|
[disabled]="column.disabled ? column.disabled(result) : false"
|
|
5118
5118
|
[text]="result[column.columnDef]"
|
|
5119
|
+
[minLength]="column.min ? column.min(result) : undefined"
|
|
5120
|
+
[maxLength]="column.max ? column.max(result) : undefined"
|
|
5119
5121
|
[required]="getRequired(column)"
|
|
5120
5122
|
[errorMessages]="getErrorMessageMap(column)"
|
|
5121
5123
|
(onChange)="onCellValueChange(result, column, $event);">
|
|
@@ -5347,6 +5349,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
|
|
|
5347
5349
|
[isFormControl]="false"
|
|
5348
5350
|
[disabled]="column.disabled ? column.disabled(result) : false"
|
|
5349
5351
|
[text]="result[column.columnDef]"
|
|
5352
|
+
[minLength]="column.min ? column.min(result) : undefined"
|
|
5353
|
+
[maxLength]="column.max ? column.max(result) : undefined"
|
|
5350
5354
|
[required]="getRequired(column)"
|
|
5351
5355
|
[errorMessages]="getErrorMessageMap(column)"
|
|
5352
5356
|
(onChange)="onCellValueChange(result, column, $event);">
|