@ngrdt/forms 0.0.50 → 0.0.53
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/index.d.ts
CHANGED
|
@@ -457,6 +457,16 @@ declare abstract class RdtSingleSelectComponent<TItem, TId> extends RdtBaseSelec
|
|
|
457
457
|
|
|
458
458
|
declare function getRdtSelectPage<TValue>(data: RdtLabelValue<TValue>[], pageIndex: number, pageSize: number): RdtSelectPage<RdtLabelValue<TValue>>;
|
|
459
459
|
|
|
460
|
+
declare abstract class RdtTextAreaComponent extends RdtBaseFormInputComponent<string, string> {
|
|
461
|
+
readonly autocomplete: _angular_core.InputSignalWithTransform<RdtAutocompleteOptions | undefined, Nullable<RdtAutocompleteOptions>>;
|
|
462
|
+
readonly cols: _angular_core.InputSignalWithTransform<Nullable<number>, Nullable<string | number>>;
|
|
463
|
+
readonly rows: _angular_core.InputSignalWithTransform<Nullable<number>, Nullable<string | number>>;
|
|
464
|
+
readonly wrap: _angular_core.InputSignalWithTransform<Nullable<"off" | "hard" | "soft">, Nullable<"off" | "hard" | "soft">>;
|
|
465
|
+
protected isEmpty(value: string | null): boolean;
|
|
466
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RdtTextAreaComponent, never>;
|
|
467
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RdtTextAreaComponent, never, never, { "autocomplete": { "alias": "autocomplete"; "required": false; "isSignal": true; }; "cols": { "alias": "cols"; "required": false; "isSignal": true; }; "rows": { "alias": "rows"; "required": false; "isSignal": true; }; "wrap": { "alias": "wrap"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
468
|
+
}
|
|
469
|
+
|
|
460
470
|
type RdtInputType = 'text' | 'number' | 'email' | 'password';
|
|
461
471
|
|
|
462
472
|
declare abstract class RdtTextInputComponent extends RdtBaseFormInputComponent<string, string> {
|
|
@@ -499,5 +509,5 @@ declare class RdtCommonValidators {
|
|
|
499
509
|
static cannotContainAccents: ValidatorFn;
|
|
500
510
|
}
|
|
501
511
|
|
|
502
|
-
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 };
|
|
512
|
+
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 };
|
|
503
513
|
export type { RdtDateType, RdtFileLabelFn, RdtLabelValue, RdtLabelValueId, RdtRenderedSelectOption, RdtSelectPage, RdtSelectRequestParams, RdtSelectState };
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ngrdt/forms",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.53",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@ngrdt/core": "^0.0.
|
|
6
|
-
"@ngrdt/utils": "^0.0.
|
|
5
|
+
"@ngrdt/core": "^0.0.53",
|
|
6
|
+
"@ngrdt/utils": "^0.0.53",
|
|
7
7
|
"@angular/core": ">=18.2.0",
|
|
8
8
|
"@angular/forms": ">=18.2.0",
|
|
9
9
|
"rxjs": ">=7.0.0",
|