@ngrdt/forms 0.0.50 → 0.0.54
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/fesm2022/ngrdt-forms.mjs +18 -1
- package/fesm2022/ngrdt-forms.mjs.map +1 -1
- package/index.d.ts +11 -1
- package/package.json +3 -3
package/fesm2022/ngrdt-forms.mjs
CHANGED
|
@@ -1175,6 +1175,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0", ngImpor
|
|
|
1175
1175
|
}]
|
|
1176
1176
|
}] });
|
|
1177
1177
|
|
|
1178
|
+
class RdtTextAreaComponent extends RdtBaseFormInputComponent {
|
|
1179
|
+
autocomplete = input(undefined, {
|
|
1180
|
+
transform: nullToUndefined,
|
|
1181
|
+
});
|
|
1182
|
+
cols = input(undefined, { transform: nullToUndefinedNumeric });
|
|
1183
|
+
rows = input(undefined, { transform: nullToUndefinedNumeric });
|
|
1184
|
+
wrap = input(undefined, { transform: nullToUndefined });
|
|
1185
|
+
isEmpty(value) {
|
|
1186
|
+
return value === '' || value === null;
|
|
1187
|
+
}
|
|
1188
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.0.0", ngImport: i0, type: RdtTextAreaComponent, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
1189
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "17.1.0", version: "20.0.0", type: RdtTextAreaComponent, isStandalone: true, inputs: { autocomplete: { classPropertyName: "autocomplete", publicName: "autocomplete", isSignal: true, isRequired: false, transformFunction: null }, cols: { classPropertyName: "cols", publicName: "cols", isSignal: true, isRequired: false, transformFunction: null }, rows: { classPropertyName: "rows", publicName: "rows", isSignal: true, isRequired: false, transformFunction: null }, wrap: { classPropertyName: "wrap", publicName: "wrap", isSignal: true, isRequired: false, transformFunction: null } }, usesInheritance: true, ngImport: i0 });
|
|
1190
|
+
}
|
|
1191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.0", ngImport: i0, type: RdtTextAreaComponent, decorators: [{
|
|
1192
|
+
type: Directive
|
|
1193
|
+
}] });
|
|
1194
|
+
|
|
1178
1195
|
class RdtTextInputComponent extends RdtBaseFormInputComponent {
|
|
1179
1196
|
type = input('text');
|
|
1180
1197
|
autocomplete = input(undefined, {
|
|
@@ -1443,5 +1460,5 @@ class RdtCommonValidators {
|
|
|
1443
1460
|
* Generated bundle index. Do not edit.
|
|
1444
1461
|
*/
|
|
1445
1462
|
|
|
1446
|
-
export { NO_OP_FILE_READER, NoOpFileReader, RDT_DEFAULT_FILE_LABEL_FN, RDT_DEFAULT_FILE_READER, RDT_DEFAULT_MAX_FILE_SIZE, RdtBaseFormInputComponent, RdtBaseSelectCommonComponent, RdtCheckboxComponent, RdtCommonValidators, RdtDateComponent, RdtDateValidators, RdtFileInputComponent, RdtFileReader, RdtFileReaderArrayBuffer, RdtFileReaderBase64, RdtMultiSelectComponent, RdtNumericInputComponent, RdtOfflineSelectDatasource, RdtSelectDatasource, RdtSelectOfflineDatasourceProviderDirective, RdtSelectOptionDirective, RdtSelectStore, RdtSingleSelectComponent, RdtTextInputComponent, VnshFileReaderText, czechFileLabelFn, getRdtSelectPage, rdtSelectInitialState };
|
|
1463
|
+
export { NO_OP_FILE_READER, NoOpFileReader, RDT_DEFAULT_FILE_LABEL_FN, RDT_DEFAULT_FILE_READER, RDT_DEFAULT_MAX_FILE_SIZE, RdtBaseFormInputComponent, RdtBaseSelectCommonComponent, RdtCheckboxComponent, RdtCommonValidators, RdtDateComponent, RdtDateValidators, RdtFileInputComponent, RdtFileReader, RdtFileReaderArrayBuffer, RdtFileReaderBase64, RdtMultiSelectComponent, RdtNumericInputComponent, RdtOfflineSelectDatasource, RdtSelectDatasource, RdtSelectOfflineDatasourceProviderDirective, RdtSelectOptionDirective, RdtSelectStore, RdtSingleSelectComponent, RdtTextAreaComponent, RdtTextInputComponent, VnshFileReaderText, czechFileLabelFn, getRdtSelectPage, rdtSelectInitialState };
|
|
1447
1464
|
//# sourceMappingURL=ngrdt-forms.mjs.map
|