@esfaenza/forms-and-validations 19.2.101 → 20.3.0
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/esfaenza-forms-and-validations.mjs +85 -85
- package/fesm2022/esfaenza-forms-and-validations.mjs.map +1 -1
- package/index.d.ts +543 -3
- package/package.json +6 -6
- package/lib/forms/adaptive/form-adaptive.component.d.ts +0 -39
- package/lib/forms/autocomplete/form-autocomplete.component.d.ts +0 -50
- package/lib/forms/base/base-form-control.d.ts +0 -146
- package/lib/forms/base/skeleton/input-skeleton.component.d.ts +0 -13
- package/lib/forms/checkbox/form-checkbox.component.d.ts +0 -11
- package/lib/forms/chips/form-chips.component.d.ts +0 -11
- package/lib/forms/currency/form-currency.component.d.ts +0 -11
- package/lib/forms/date/form-date.component.d.ts +0 -38
- package/lib/forms/datetime/form-datetime.component.d.ts +0 -7
- package/lib/forms/error/form-error.component.d.ts +0 -19
- package/lib/forms/file/form-file.component.d.ts +0 -39
- package/lib/forms/info/form-info.component.d.ts +0 -19
- package/lib/forms/input/form-input.component.d.ts +0 -17
- package/lib/forms/multiselect/form-multiselect.component.d.ts +0 -19
- package/lib/forms/select/form-select.component.d.ts +0 -14
- package/lib/forms/template/form-template.component.d.ts +0 -41
- package/lib/forms/textarea/form-textarea.component.d.ts +0 -13
- package/lib/forms/time/form-time.component.d.ts +0 -7
- package/lib/forms.module.d.ts +0 -28
- package/lib/models/AppFile.d.ts +0 -11
- package/lib/models/BaseFormConfiguration.d.ts +0 -27
- package/lib/models/ChangeEvent.d.ts +0 -5
- package/lib/models/EsFormsModuleConfig.d.ts +0 -7
- package/lib/services/helper.d.ts +0 -15
- package/lib/tokens.d.ts +0 -3
- package/public-api.d.ts +0 -22
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { AutoCompleteCompleteEvent } from 'primeng/autocomplete';
|
|
3
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
4
|
-
import { Observable } from "rxjs";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class EsFormAutocompleteComponent extends BaseFormControl implements ControlValueAccessor {
|
|
7
|
-
private _baseSource;
|
|
8
|
-
private _availableSource;
|
|
9
|
-
/** Numero minimo di caratteri per far partire la ricerca */
|
|
10
|
-
MinChars: import("@angular/core").InputSignal<number>;
|
|
11
|
-
/** Contesto per la funzione di ricerca */
|
|
12
|
-
SearchFunctionContext: any;
|
|
13
|
-
SearchFunction: (search: string, byid: boolean, context?: any) => Observable<{
|
|
14
|
-
id: string;
|
|
15
|
-
description: string;
|
|
16
|
-
}[]>;
|
|
17
|
-
/** Indica se usare la modalità multiselezione o no */
|
|
18
|
-
multiple: boolean | undefined;
|
|
19
|
-
forceSelection: boolean | undefined;
|
|
20
|
-
style: import("@angular/core").WritableSignal<{
|
|
21
|
-
width: string;
|
|
22
|
-
}>;
|
|
23
|
-
typeahead: import("@angular/core").WritableSignal<boolean>;
|
|
24
|
-
mode: import("@angular/core").WritableSignal<"autocomplete" | "chips">;
|
|
25
|
-
ngOnInit(): void;
|
|
26
|
-
ngAfterViewInit(): void;
|
|
27
|
-
protected innerElementReceived(): void;
|
|
28
|
-
protected setInputMode(): void;
|
|
29
|
-
search(event: AutoCompleteCompleteEvent): void;
|
|
30
|
-
changed(event: any): Promise<void>;
|
|
31
|
-
protected getValueOut(value: string | {
|
|
32
|
-
id: string;
|
|
33
|
-
description: string;
|
|
34
|
-
} | string[] | {
|
|
35
|
-
id: string;
|
|
36
|
-
description: string;
|
|
37
|
-
}[]): Promise<string | string[]>;
|
|
38
|
-
protected getValueIn(value: string | string[]): Promise<any>;
|
|
39
|
-
protected getEvaluatedModel(value: {
|
|
40
|
-
id: string;
|
|
41
|
-
description: string;
|
|
42
|
-
} | {
|
|
43
|
-
id: string;
|
|
44
|
-
description: string;
|
|
45
|
-
}[]): Promise<string>;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormAutocompleteComponent, never>;
|
|
47
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormAutocompleteComponent, "form-autocomplete", never, { "MinChars": { "alias": "MinChars"; "required": false; "isSignal": true; }; "SearchFunctionContext": { "alias": "SearchFunctionContext"; "required": false; }; "SearchFunction": { "alias": "SearchFunction"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "forceSelection": { "alias": "forceSelection"; "required": false; }; }, {}, never, never, true, never>;
|
|
48
|
-
static ngAcceptInputType_multiple: unknown;
|
|
49
|
-
static ngAcceptInputType_forceSelection: unknown;
|
|
50
|
-
}
|
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, EventEmitter, Injector, Signal, SimpleChanges, TemplateRef } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor, NgControl, NgForm, NgModel } from "@angular/forms";
|
|
3
|
-
import { Observable, Subject } from "rxjs";
|
|
4
|
-
import { LocalizationService } from "@esfaenza/localizations";
|
|
5
|
-
import { MessageService, UtilityService } from "@esfaenza/extensions";
|
|
6
|
-
import { ChangeEvent } from "../../models/ChangeEvent";
|
|
7
|
-
import { BaseFormConfiguration } from "../../models/BaseFormConfiguration";
|
|
8
|
-
import { FormsHelper } from "../../services/helper";
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
/**
|
|
11
|
-
* Componente base da cui tutti i componenti Form implementano
|
|
12
|
-
* N.B:
|
|
13
|
-
* innerInput è il componente interno
|
|
14
|
-
* ngControl è il componente esterno (form-roba)
|
|
15
|
-
*/
|
|
16
|
-
export declare abstract class BaseFormControl implements ControlValueAccessor {
|
|
17
|
-
protected inj: Injector;
|
|
18
|
-
protected innerElementReceived(): void;
|
|
19
|
-
protected onChange: (_: any) => void;
|
|
20
|
-
onTouched: () => void;
|
|
21
|
-
registerOnChange(fn: any): void;
|
|
22
|
-
registerOnTouched(fn: any): void;
|
|
23
|
-
value: any;
|
|
24
|
-
/** Elemento che contiene la proiezione dell'HTML del suffisso */
|
|
25
|
-
suffix: any;
|
|
26
|
-
/** Delegato per l'esecuzione di un'operazione al click del suffisso */
|
|
27
|
-
onSuffixAction: EventEmitter<void>;
|
|
28
|
-
/** Elemento che contiene la proiezione dell'HTML del prefisso */
|
|
29
|
-
prefix: any;
|
|
30
|
-
/** Delegato per l'esecuzione di un'operazione al click del prefisso */
|
|
31
|
-
onPrefixAction: EventEmitter<void>;
|
|
32
|
-
innerInput: NgModel;
|
|
33
|
-
protected _innerElement: ElementRef;
|
|
34
|
-
set innerElement(v: ElementRef);
|
|
35
|
-
get innerElement(): ElementRef;
|
|
36
|
-
private tooltip?;
|
|
37
|
-
inputChange: EventEmitter<ChangeEvent>;
|
|
38
|
-
inputFocus: EventEmitter<any>;
|
|
39
|
-
inputFinalized: EventEmitter<string>;
|
|
40
|
-
DisplayCondition: boolean;
|
|
41
|
-
DisplayMode: boolean;
|
|
42
|
-
DisplayLayout: 'form' | 'inline' | 'hidden';
|
|
43
|
-
FormLayout: boolean;
|
|
44
|
-
DisplayModeTemplate: TemplateRef<any>;
|
|
45
|
-
EvaluatedModel: string;
|
|
46
|
-
InlineSeparator: string;
|
|
47
|
-
FailedValidationMessage: string;
|
|
48
|
-
Label: string;
|
|
49
|
-
Last: boolean;
|
|
50
|
-
FormGroupClass: string;
|
|
51
|
-
Placeholder: string;
|
|
52
|
-
set LabelInputRatio(input: string);
|
|
53
|
-
get LabelInputRatio(): string;
|
|
54
|
-
LabelColWidth: number;
|
|
55
|
-
InputColWidth: number;
|
|
56
|
-
Form: NgForm;
|
|
57
|
-
name: string;
|
|
58
|
-
readonly: boolean | undefined;
|
|
59
|
-
disabled: boolean | undefined;
|
|
60
|
-
pattern: string | undefined;
|
|
61
|
-
Validation: boolean;
|
|
62
|
-
SetValidationSubject: Subject<{
|
|
63
|
-
fieldName: string;
|
|
64
|
-
error: string;
|
|
65
|
-
}>;
|
|
66
|
-
TooltipText: string;
|
|
67
|
-
InternalName: string;
|
|
68
|
-
required: boolean | '' | undefined;
|
|
69
|
-
/**
|
|
70
|
-
* Espressione simil-Angular per cambiare il testo dei componenti che scelgono il proprio modello da una **Source**
|
|
71
|
-
*
|
|
72
|
-
* Il funzionamento è identico al binder di angular, solo con una graffa invece che 2.
|
|
73
|
-
* È inoltre possibile aggiungere pezzi di descrizione in maniera condizionale con la sintassi **:prop?(Prop vale {prop})**
|
|
74
|
-
*/
|
|
75
|
-
Display: string;
|
|
76
|
-
IdField: string;
|
|
77
|
-
private BindCheckingGroups;
|
|
78
|
-
private BindProperties;
|
|
79
|
-
private _source;
|
|
80
|
-
get Source(): any[] | undefined;
|
|
81
|
-
set Source(val: any[] | undefined);
|
|
82
|
-
protected BoundSourceCache: {
|
|
83
|
-
[id: string]: {
|
|
84
|
-
description: string;
|
|
85
|
-
source: any;
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
BoundSource: Signal<{
|
|
89
|
-
id: string;
|
|
90
|
-
description: string;
|
|
91
|
-
}[]>;
|
|
92
|
-
protected helper: FormsHelper;
|
|
93
|
-
protected utiExts: UtilityService;
|
|
94
|
-
protected lc: LocalizationService;
|
|
95
|
-
protected msgs: MessageService;
|
|
96
|
-
protected ngControl: NgControl;
|
|
97
|
-
protected ngModel: NgModel;
|
|
98
|
-
protected FRM_DEBUG_MODE: boolean;
|
|
99
|
-
protected cdr: ChangeDetectorRef;
|
|
100
|
-
/**
|
|
101
|
-
* Indica se l'input del componente dev'essere risparato fuori con le trasformazioni da *outValue*
|
|
102
|
-
*
|
|
103
|
-
* Il controllo potrebbe essere automatico ma rischia di diventare pesante per componenti particolari/pesanti
|
|
104
|
-
*/
|
|
105
|
-
protected shouldReemitAdjustedInput: boolean;
|
|
106
|
-
statusChangesObservable: Observable<any>;
|
|
107
|
-
protected performFormLogic: boolean;
|
|
108
|
-
protected destroyed$: Subject<void>;
|
|
109
|
-
Configuration: BaseFormConfiguration;
|
|
110
|
-
protected This: import("@angular/core").WritableSignal<this>;
|
|
111
|
-
constructor(inj: Injector);
|
|
112
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
113
|
-
ngOnDestroy(): void;
|
|
114
|
-
ngOnInit(): void;
|
|
115
|
-
ngAfterViewInit(): void;
|
|
116
|
-
private showTooltip;
|
|
117
|
-
protected getTooltipText(error?: string): string;
|
|
118
|
-
private hideTooltip;
|
|
119
|
-
log(message: string): void;
|
|
120
|
-
writeValue(obj: any): Promise<void>;
|
|
121
|
-
changed(value: any): Promise<void>;
|
|
122
|
-
private finalizedDebounceInterval;
|
|
123
|
-
finalized(debounceTime?: number): void;
|
|
124
|
-
focused(event: any): void;
|
|
125
|
-
/** Valuta il contenuto della variabile BindCheckingGroups */
|
|
126
|
-
private evaluateBindCheckingGroups;
|
|
127
|
-
/** Valuta il contenuto della variabile BindProperties */
|
|
128
|
-
private evaluateBindProperties;
|
|
129
|
-
/**
|
|
130
|
-
* Trasforma un oggetto della Source alla sua versione "nuova" basandosi sulle informazioni su gruppi e proprietà
|
|
131
|
-
*
|
|
132
|
-
* @param {any} item Oggetto da trasformare
|
|
133
|
-
*
|
|
134
|
-
* @returns {{id: string, description: string}} Oggetto finale trasformato
|
|
135
|
-
*/
|
|
136
|
-
private transformSourceItem;
|
|
137
|
-
protected getEvaluatedModel(valueAfterInTransform: any): Promise<string>;
|
|
138
|
-
protected getValueOut(value: any): Promise<any>;
|
|
139
|
-
protected getValueIn(value: any): Promise<any>;
|
|
140
|
-
protected isEmptyValue(value: any): boolean;
|
|
141
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseFormControl, never>;
|
|
142
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseFormControl, never, never, { "DisplayCondition": { "alias": "DisplayCondition"; "required": false; }; "DisplayMode": { "alias": "DisplayMode"; "required": false; }; "DisplayLayout": { "alias": "DisplayLayout"; "required": false; }; "FormLayout": { "alias": "FormLayout"; "required": false; }; "DisplayModeTemplate": { "alias": "DisplayModeTemplate"; "required": false; }; "FailedValidationMessage": { "alias": "FailedValidationMessage"; "required": false; }; "Label": { "alias": "Label"; "required": false; }; "Last": { "alias": "Last"; "required": false; }; "FormGroupClass": { "alias": "FormGroupClass"; "required": false; }; "Placeholder": { "alias": "Placeholder"; "required": false; }; "LabelInputRatio": { "alias": "LabelInputRatio"; "required": false; }; "Form": { "alias": "Form"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "Validation": { "alias": "Validation"; "required": false; }; "SetValidationSubject": { "alias": "SetValidationSubject"; "required": false; }; "required": { "alias": "required"; "required": false; }; "Display": { "alias": "Display"; "required": false; }; "IdField": { "alias": "IdField"; "required": false; }; "Source": { "alias": "Source"; "required": false; }; "statusChangesObservable": { "alias": "statusChangesObservable"; "required": false; }; "Configuration": { "alias": "Configuration"; "required": false; }; }, { "onSuffixAction": "onSuffixAction"; "onPrefixAction": "onPrefixAction"; "inputChange": "inputChange"; "inputFocus": "inputFocus"; "inputFinalized": "inputFinalized"; }, ["suffix", "prefix"], never, true, never>;
|
|
143
|
-
static ngAcceptInputType_readonly: unknown;
|
|
144
|
-
static ngAcceptInputType_disabled: unknown;
|
|
145
|
-
static ngAcceptInputType_required: unknown;
|
|
146
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from "@angular/core";
|
|
2
|
-
import { BaseFormControl } from "../base-form-control";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/** Semplice componente di Input testuale, con eventuale prefisso/suffisso */
|
|
5
|
-
export declare class InputSkeletonComponent {
|
|
6
|
-
For: import("@angular/core").InputSignal<BaseFormControl>;
|
|
7
|
-
Control: import("@angular/core").InputSignal<TemplateRef<any>>;
|
|
8
|
-
ForceControlDisplay: import("@angular/core").InputSignal<boolean>;
|
|
9
|
-
/** @ignore Costruttore */
|
|
10
|
-
constructor();
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InputSkeletonComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputSkeletonComponent, "input-skeleton", never, { "For": { "alias": "For"; "required": false; "isSignal": true; }; "Control": { "alias": "Control"; "required": false; "isSignal": true; }; "ForceControlDisplay": { "alias": "ForceControlDisplay"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
13
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EsFormCheckboxComponent extends BaseFormControl implements ControlValueAccessor {
|
|
5
|
-
SliderMode: boolean;
|
|
6
|
-
ngOnInit(): void;
|
|
7
|
-
protected getValueIn(value: any): Promise<boolean>;
|
|
8
|
-
protected getEvaluatedModel(value: any): Promise<string>;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormCheckboxComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormCheckboxComponent, "form-checkbox", never, { "SliderMode": { "alias": "SliderMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { AbstractControl, ValidationErrors, Validator } from "@angular/forms";
|
|
2
|
-
import { EsFormAutocompleteComponent } from "../autocomplete/form-autocomplete.component";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EsFormChipsComponent extends EsFormAutocompleteComponent implements Validator {
|
|
5
|
-
ValidateEmail: boolean;
|
|
6
|
-
setInputMode(): void;
|
|
7
|
-
validate(control: AbstractControl): ValidationErrors;
|
|
8
|
-
registerOnValidatorChange?(fn: () => void): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormChipsComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormChipsComponent, "form-chips", never, { "ValidateEmail": { "alias": "ValidateEmail"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EsFormCurrencyComponent extends BaseFormControl implements ControlValueAccessor {
|
|
5
|
-
mode: 'currency' | 'decimal';
|
|
6
|
-
Precision: number;
|
|
7
|
-
ngAfterViewInit(): void;
|
|
8
|
-
protected innerElementReceived(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormCurrencyComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormCurrencyComponent, "form-currency", never, { "mode": { "alias": "mode"; "required": false; }; "Precision": { "alias": "Precision"; "required": false; }; }, {}, never, never, true, never>;
|
|
11
|
-
}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { WritableSignal } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { DateService } from "@esfaenza/extensions";
|
|
4
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class EsFormDateComponent extends BaseFormControl implements ControlValueAccessor {
|
|
7
|
-
/**
|
|
8
|
-
* Indica il formato da utilizzare sia in Input che in Output
|
|
9
|
-
*
|
|
10
|
-
* 1. Se date vengono utilizzate le Date di Javascript
|
|
11
|
-
*
|
|
12
|
-
* 2. Se timestring vengono utilizzate stringhe del tipo '00:00:00'
|
|
13
|
-
*
|
|
14
|
-
* 3. Se dayjs viene utilizzato, appunto, dayjs
|
|
15
|
-
*/
|
|
16
|
-
InOutFormat: 'date' | 'timestring' | 'dayjs';
|
|
17
|
-
/** Nel caso dei componenti data il Placeholder è il formato, mentre la label floattante, se esistente, dev'essere specificata */
|
|
18
|
-
FloatingLabel: boolean;
|
|
19
|
-
DateFormat: string;
|
|
20
|
-
protected datesExts: DateService;
|
|
21
|
-
protected mode: 'date' | 'datetime' | 'time' | 'month' | 'year' | 'daterange';
|
|
22
|
-
view: WritableSignal<'month' | 'year' | 'date'>;
|
|
23
|
-
dateFormat: WritableSignal<string | undefined>;
|
|
24
|
-
showTime: WritableSignal<boolean | undefined>;
|
|
25
|
-
hourFormat: WritableSignal<number | undefined>;
|
|
26
|
-
timeOnly: WritableSignal<boolean | undefined>;
|
|
27
|
-
showButtonBar: WritableSignal<boolean | undefined>;
|
|
28
|
-
selectionMode: WritableSignal<'single' | 'multiple' | 'range' | undefined>;
|
|
29
|
-
ngAfterViewInit(): void;
|
|
30
|
-
protected innerElementReceived(): void;
|
|
31
|
-
protected setInputMode(): void;
|
|
32
|
-
protected getEvaluatedModel(value: any): Promise<string>;
|
|
33
|
-
protected getValueOut(value: any): Promise<any>;
|
|
34
|
-
protected getValueIn(obj: any): Promise<any>;
|
|
35
|
-
private adjustInputModeVisuals;
|
|
36
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormDateComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormDateComponent, "form-date", never, { "InOutFormat": { "alias": "InOutFormat"; "required": false; }; "FloatingLabel": { "alias": "FloatingLabel"; "required": false; }; "DateFormat": { "alias": "DateFormat"; "required": false; }; }, {}, never, never, true, never>;
|
|
38
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { EsFormDateComponent } from "../date/form-date.component";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class EsFormDateTimeComponent extends EsFormDateComponent {
|
|
4
|
-
setInputMode(): void;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormDateTimeComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormDateTimeComponent, "form-datetime", never, {}, {}, never, never, true, never>;
|
|
7
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
/**
|
|
3
|
-
* Componente placeholder per la creazione dei form che rappresenta un blocchetto di erorre,
|
|
4
|
-
* al posto del quale possono poi comparire dei componenti form senza incasinare la grafica
|
|
5
|
-
*/
|
|
6
|
-
export declare class EsFormErrorComponent {
|
|
7
|
-
/** col-md-X per la label (Che in questoc aso è vuota) */
|
|
8
|
-
LabelColWidth: number;
|
|
9
|
-
/** col-md-X per l'input (che in questo caso contiene il messaggio d'errore proiettato nell'HTML) */
|
|
10
|
-
InputColWidth: number;
|
|
11
|
-
/** Indica se è l'ultimo componente di un form (serve per rimuovere il margine finale) */
|
|
12
|
-
Last: boolean;
|
|
13
|
-
/** Classe extra per il form-group in cui viene wrappato l'input */
|
|
14
|
-
FormGroupClass: string;
|
|
15
|
-
/** Permette di settare in una volta solo gli input LabelColWidth e InputColWidth, basta scriverlo con la sintassi "X Y" */
|
|
16
|
-
set LabelInputRatio(input: string);
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormErrorComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormErrorComponent, "form-error", never, { "LabelColWidth": { "alias": "LabelColWidth"; "required": false; }; "InputColWidth": { "alias": "InputColWidth"; "required": false; }; "Last": { "alias": "Last"; "required": false; }; "FormGroupClass": { "alias": "FormGroupClass"; "required": false; }; "LabelInputRatio": { "alias": "LabelInputRatio"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
19
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { Injector } from "@angular/core";
|
|
2
|
-
import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from "@angular/forms";
|
|
3
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
4
|
-
import { AppFile } from "../../models/AppFile";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class EsFormFileComponent extends BaseFormControl implements ControlValueAccessor, Validator {
|
|
7
|
-
/** Permette di caricare file multipli */
|
|
8
|
-
Multiple: boolean;
|
|
9
|
-
/** Permette di scaricare l'eventuale file selezionato */
|
|
10
|
-
AllowDownload: boolean;
|
|
11
|
-
/** Controllo sulla dimensione di ogni singolo file in Byte. 0 -> nessun limite */
|
|
12
|
-
MaxSize: number;
|
|
13
|
-
/** Sportivo */
|
|
14
|
-
FancyMode: boolean;
|
|
15
|
-
/** Legge sempre il contenuto del file e ne estrapola il base64 */
|
|
16
|
-
ReadFile: boolean;
|
|
17
|
-
/** @ignore Costruttore */
|
|
18
|
-
constructor(inj: Injector);
|
|
19
|
-
ngOnInit(): void;
|
|
20
|
-
validate(_: AbstractControl): ValidationErrors;
|
|
21
|
-
protected isEmptyValue(value: AppFile): boolean;
|
|
22
|
-
protected getValueIn(value: any): Promise<any>;
|
|
23
|
-
protected getValueOut(value: any): Promise<any>;
|
|
24
|
-
protected getEvaluatedModel(value: AppFile): Promise<string>;
|
|
25
|
-
openFileDialog(): void;
|
|
26
|
-
/**
|
|
27
|
-
* Helper per gestire la modifica del file attualmente bindato
|
|
28
|
-
*
|
|
29
|
-
* @param {boolean} clear Indica se bisogna svuotare l'input o meno
|
|
30
|
-
*/
|
|
31
|
-
fileChange(clear?: boolean): Promise<void>;
|
|
32
|
-
private loadFileB64;
|
|
33
|
-
/** Permette di scaricare l'eventuale file selezionato */
|
|
34
|
-
onDownloadFile(): void;
|
|
35
|
-
onFileDragOver(event: DragEvent): void;
|
|
36
|
-
onFileDropped(event: DragEvent): void;
|
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormFileComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormFileComponent, "form-file", never, { "Multiple": { "alias": "Multiple"; "required": false; }; "AllowDownload": { "alias": "AllowDownload"; "required": false; }; "MaxSize": { "alias": "MaxSize"; "required": false; }; "FancyMode": { "alias": "FancyMode"; "required": false; }; "ReadFile": { "alias": "ReadFile"; "required": false; }; }, {}, never, never, true, never>;
|
|
39
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
/**
|
|
3
|
-
* Componente placeholder per la creazione dei form che rappresenta un blocchetto di informazioni,
|
|
4
|
-
* al posto del quale possono poi comparire dei componenti form senza incasinare la grafica
|
|
5
|
-
*/
|
|
6
|
-
export declare class EsFormInfoComponent {
|
|
7
|
-
/** col-md-X per la label (Che in questoc aso è vuota) */
|
|
8
|
-
LabelColWidth: number;
|
|
9
|
-
/** col-md-X per l'input (che in questo caso contiene il messaggio d'errore proiettato nell'HTML) */
|
|
10
|
-
InputColWidth: number;
|
|
11
|
-
/** Indica se è l'ultimo componente di un form (serve per rimuovere il margine finale) */
|
|
12
|
-
Last: boolean;
|
|
13
|
-
/** Classe extra per il form-group in cui viene wrappato l'input */
|
|
14
|
-
FormGroupClass: string;
|
|
15
|
-
/** Permette di settare in una volta solo gli input LabelColWidth e InputColWidth, basta scriverlo con la sintassi "X Y" */
|
|
16
|
-
set LabelInputRatio(input: string);
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormInfoComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormInfoComponent, "form-info", never, { "LabelColWidth": { "alias": "LabelColWidth"; "required": false; }; "InputColWidth": { "alias": "InputColWidth"; "required": false; }; "Last": { "alias": "Last"; "required": false; }; "FormGroupClass": { "alias": "FormGroupClass"; "required": false; }; "LabelInputRatio": { "alias": "LabelInputRatio"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
19
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EsFormInputComponent extends BaseFormControl implements ControlValueAccessor {
|
|
5
|
-
minlength: number | undefined;
|
|
6
|
-
maxlength: number | undefined;
|
|
7
|
-
pattern: string | undefined;
|
|
8
|
-
Password: boolean;
|
|
9
|
-
passShown: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
-
Type: string;
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
setType(type: 'text' | 'password' | 'tel'): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormInputComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormInputComponent, "form-input", never, { "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "Password": { "alias": "Password"; "required": false; }; "Type": { "alias": "Type"; "required": false; }; }, {}, never, never, true, never>;
|
|
15
|
-
static ngAcceptInputType_minlength: unknown;
|
|
16
|
-
static ngAcceptInputType_maxlength: unknown;
|
|
17
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EsFormMultiselectComponent extends BaseFormControl implements ControlValueAccessor {
|
|
5
|
-
display: "comma" | "chip";
|
|
6
|
-
InOutFormat: 'KeyValues' | 'CommaSeparatedList' | 'JsonList' | 'List';
|
|
7
|
-
/** Nel caso dei componenti data il Placeholder è il formato, mentre la label floattante, se esistente, dev'essere specificata */
|
|
8
|
-
FloatingLabel: boolean;
|
|
9
|
-
MaxShownElements: number;
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
protected setDisplayMode(): void;
|
|
12
|
-
ngAfterViewInit(): void;
|
|
13
|
-
protected innerElementReceived(): void;
|
|
14
|
-
protected getValueIn(value: any): Promise<any>;
|
|
15
|
-
protected getValueOut(value: string[]): Promise<any>;
|
|
16
|
-
protected getEvaluatedModel(value: string[]): Promise<string>;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormMultiselectComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormMultiselectComponent, "form-multiselect", never, { "display": { "alias": "display"; "required": false; }; "InOutFormat": { "alias": "InOutFormat"; "required": false; }; "FloatingLabel": { "alias": "FloatingLabel"; "required": false; }; "MaxShownElements": { "alias": "MaxShownElements"; "required": false; }; }, {}, never, never, true, never>;
|
|
19
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from "@angular/core";
|
|
2
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
3
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class EsFormSelectComponent extends BaseFormControl implements ControlValueAccessor {
|
|
6
|
-
OptionsTemplate: TemplateRef<any>;
|
|
7
|
-
RequiredPlaceholder: string;
|
|
8
|
-
ngAfterViewInit(): void;
|
|
9
|
-
protected innerElementReceived(): void;
|
|
10
|
-
protected getEvaluatedModel(value: any): Promise<string>;
|
|
11
|
-
protected getValueIn(value: any): Promise<any>;
|
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormSelectComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormSelectComponent, "form-select", never, { "OptionsTemplate": { "alias": "OptionsTemplate"; "required": false; }; }, {}, never, never, true, never>;
|
|
14
|
-
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { SimpleChanges, TemplateRef } from "@angular/core";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
/**
|
|
4
|
-
* Componente da utilizzare quando l'implementazione dell'input non è disponibile nella libreria,
|
|
5
|
-
* fornisce la struttura standard di un form-component ma l'input vero e proprio viene proiettato dall'esterno
|
|
6
|
-
*/
|
|
7
|
-
export declare class EsFormTemplateComponent {
|
|
8
|
-
/** Indica se l'input è obbligatorio o no */
|
|
9
|
-
required: boolean | '' | undefined;
|
|
10
|
-
/** Mostra un testo a sinistra dell'input, **FormLayout** permettendo */
|
|
11
|
-
Label: string;
|
|
12
|
-
/** Eventuali classi extra da applicare alla Label, di default c'è solo un leggero margin top */
|
|
13
|
-
LabelClass: string;
|
|
14
|
-
/** Utilizza o meno il Layout di un form (Label con input di fianco), se false mostra solo l'input */
|
|
15
|
-
FormLayout: boolean;
|
|
16
|
-
/** col-md-X per la label */
|
|
17
|
-
LabelColWidth: number;
|
|
18
|
-
/** col-md-X per l'input */
|
|
19
|
-
InputColWidth: number;
|
|
20
|
-
/** Indica se è l'ultimo componente di un form (serve per rimuovere il margine finale) */
|
|
21
|
-
Last: boolean;
|
|
22
|
-
/** Classe extra per il form-group in cui viene wrappato l'input */
|
|
23
|
-
FormGroupClass: string;
|
|
24
|
-
/** Indica che la parte input del controllo dev'essere una label readonly e la parte label di titolo dev'essere in bold. Per utilizzare un solo componente sia per la modifica che per il dettaglio */
|
|
25
|
-
DisplayMode: boolean;
|
|
26
|
-
/** Template per visualizzare la modalità **DisplayMode** come vuole il programmatore frocio di turno */
|
|
27
|
-
DisplayModeTemplate: TemplateRef<any>;
|
|
28
|
-
/** Layout del Form quando è in modalità Display. Di default mantiene la formattazione a form */
|
|
29
|
-
DisplayLayout: 'form' | 'inline' | 'hidden';
|
|
30
|
-
/** Indica la condizione per cui un elemento in Modalità Display può essere visibile in base a ulteriori controlli */
|
|
31
|
-
DisplayCondition: boolean;
|
|
32
|
-
/** Separatore da mettere in automatico fra un elemento Form e l'altro quando sono in **DisplayMode** con **DisplayLayout** inline */
|
|
33
|
-
InlineSeparator: string;
|
|
34
|
-
/** Permette di settare in una volta solo gli input LabelColWidth e InputColWidth, basta scriverlo con la sintassi "X Y" */
|
|
35
|
-
set LabelInputRatio(input: string);
|
|
36
|
-
This: import("@angular/core").WritableSignal<this>;
|
|
37
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
38
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormTemplateComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormTemplateComponent, "form-template", never, { "required": { "alias": "required"; "required": false; }; "Label": { "alias": "Label"; "required": false; }; "LabelClass": { "alias": "LabelClass"; "required": false; }; "FormLayout": { "alias": "FormLayout"; "required": false; }; "LabelColWidth": { "alias": "LabelColWidth"; "required": false; }; "InputColWidth": { "alias": "InputColWidth"; "required": false; }; "Last": { "alias": "Last"; "required": false; }; "FormGroupClass": { "alias": "FormGroupClass"; "required": false; }; "DisplayMode": { "alias": "DisplayMode"; "required": false; }; "DisplayModeTemplate": { "alias": "DisplayModeTemplate"; "required": false; }; "DisplayLayout": { "alias": "DisplayLayout"; "required": false; }; "DisplayCondition": { "alias": "DisplayCondition"; "required": false; }; "InlineSeparator": { "alias": "InlineSeparator"; "required": false; }; "LabelInputRatio": { "alias": "LabelInputRatio"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
40
|
-
static ngAcceptInputType_required: unknown;
|
|
41
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ControlValueAccessor } from "@angular/forms";
|
|
2
|
-
import { BaseFormControl } from "../base/base-form-control";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class EsFormTextareaComponent extends BaseFormControl implements ControlValueAccessor {
|
|
5
|
-
rows: number | undefined;
|
|
6
|
-
minlength: number | undefined;
|
|
7
|
-
maxlength: number | undefined;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormTextareaComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormTextareaComponent, "form-textarea", never, { "rows": { "alias": "rows"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
-
static ngAcceptInputType_rows: unknown;
|
|
11
|
-
static ngAcceptInputType_minlength: unknown;
|
|
12
|
-
static ngAcceptInputType_maxlength: unknown;
|
|
13
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { EsFormDateComponent } from "../date/form-date.component";
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class EsFormTimeComponent extends EsFormDateComponent {
|
|
4
|
-
setInputMode(): void;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EsFormTimeComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EsFormTimeComponent, "form-time", never, {}, {}, never, never, true, never>;
|
|
7
|
-
}
|
package/lib/forms.module.d.ts
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { ModuleWithProviders } from '@angular/core';
|
|
2
|
-
import { EsFormsModuleConfig } from './models/EsFormsModuleConfig';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
import * as i1 from "@angular/common";
|
|
5
|
-
import * as i2 from "@angular/forms";
|
|
6
|
-
import * as i3 from "@esfaenza/localizations";
|
|
7
|
-
import * as i4 from "./forms/chips/form-chips.component";
|
|
8
|
-
import * as i5 from "./forms/input/form-input.component";
|
|
9
|
-
import * as i6 from "./forms/select/form-select.component";
|
|
10
|
-
import * as i7 from "./forms/date/form-date.component";
|
|
11
|
-
import * as i8 from "./forms/datetime/form-datetime.component";
|
|
12
|
-
import * as i9 from "./forms/time/form-time.component";
|
|
13
|
-
import * as i10 from "./forms/checkbox/form-checkbox.component";
|
|
14
|
-
import * as i11 from "./forms/textarea/form-textarea.component";
|
|
15
|
-
import * as i12 from "./forms/info/form-info.component";
|
|
16
|
-
import * as i13 from "./forms/error/form-error.component";
|
|
17
|
-
import * as i14 from "./forms/template/form-template.component";
|
|
18
|
-
import * as i15 from "./forms/file/form-file.component";
|
|
19
|
-
import * as i16 from "./forms/multiselect/form-multiselect.component";
|
|
20
|
-
import * as i17 from "./forms/autocomplete/form-autocomplete.component";
|
|
21
|
-
import * as i18 from "./forms/adaptive/form-adaptive.component";
|
|
22
|
-
import * as i19 from "./forms/currency/form-currency.component";
|
|
23
|
-
export declare class FormsAndValidationsModule {
|
|
24
|
-
static forRoot(config?: EsFormsModuleConfig): ModuleWithProviders<FormsAndValidationsModule>;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormsAndValidationsModule, never>;
|
|
26
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FormsAndValidationsModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.LocalizationModule, typeof i4.EsFormChipsComponent, typeof i5.EsFormInputComponent, typeof i6.EsFormSelectComponent, typeof i7.EsFormDateComponent, typeof i8.EsFormDateTimeComponent, typeof i9.EsFormTimeComponent, typeof i10.EsFormCheckboxComponent, typeof i11.EsFormTextareaComponent, typeof i12.EsFormInfoComponent, typeof i13.EsFormErrorComponent, typeof i14.EsFormTemplateComponent, typeof i15.EsFormFileComponent, typeof i16.EsFormMultiselectComponent, typeof i17.EsFormAutocompleteComponent, typeof i18.EsFormAdaptiveComponent, typeof i19.EsFormCurrencyComponent], [typeof i4.EsFormChipsComponent, typeof i5.EsFormInputComponent, typeof i6.EsFormSelectComponent, typeof i7.EsFormDateComponent, typeof i8.EsFormDateTimeComponent, typeof i9.EsFormTimeComponent, typeof i10.EsFormCheckboxComponent, typeof i11.EsFormTextareaComponent, typeof i12.EsFormInfoComponent, typeof i13.EsFormErrorComponent, typeof i14.EsFormTemplateComponent, typeof i15.EsFormFileComponent, typeof i16.EsFormMultiselectComponent, typeof i17.EsFormAutocompleteComponent, typeof i18.EsFormAdaptiveComponent, typeof i19.EsFormCurrencyComponent]>;
|
|
27
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<FormsAndValidationsModule>;
|
|
28
|
-
}
|
package/lib/models/AppFile.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/** Classe che identifica un file */
|
|
2
|
-
export declare class AppFile {
|
|
3
|
-
/** @ignore */
|
|
4
|
-
constructor();
|
|
5
|
-
/** Nome del file, Viene letto in Input e valorizzato in Output */
|
|
6
|
-
filename: string;
|
|
7
|
-
/** B64 del file, Viene letto in Input ma non valorizzato in Output (non puà leggere dal filesystem) */
|
|
8
|
-
fileb64: string;
|
|
9
|
-
/** Lista di file nativi collegati a questo input. Viene solo valorizzato in Output. Non è letto come Input */
|
|
10
|
-
nativefiles: File[];
|
|
11
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from "@angular/core";
|
|
2
|
-
import { Observable, Subject } from "rxjs";
|
|
3
|
-
export declare class BaseFormConfiguration {
|
|
4
|
-
DisplayCondition: boolean;
|
|
5
|
-
DisplayMode: boolean;
|
|
6
|
-
DisplayLayout: 'form' | 'inline' | 'hidden';
|
|
7
|
-
FormLayout: boolean;
|
|
8
|
-
DisplayModeTemplate: TemplateRef<any>;
|
|
9
|
-
Label: string;
|
|
10
|
-
Last: boolean;
|
|
11
|
-
FormGroupClass: string;
|
|
12
|
-
Placeholder: string;
|
|
13
|
-
LabelInputRatio: string;
|
|
14
|
-
name: string;
|
|
15
|
-
readonly: boolean | undefined;
|
|
16
|
-
disabled: boolean | undefined;
|
|
17
|
-
Validation: boolean;
|
|
18
|
-
SetValidationSubject: Subject<{
|
|
19
|
-
fieldName: string;
|
|
20
|
-
error: string;
|
|
21
|
-
}>;
|
|
22
|
-
required: boolean | '' | undefined;
|
|
23
|
-
Display: string;
|
|
24
|
-
IdField: string;
|
|
25
|
-
Source: any[];
|
|
26
|
-
statusChangesObservable: Observable<any>;
|
|
27
|
-
}
|
package/lib/services/helper.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Injector } from "@angular/core";
|
|
2
|
-
import { NgControl, NgForm, NgModel } from "@angular/forms";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormsHelper {
|
|
5
|
-
retrieveModelControlAndForm(inj: Injector, fieldName: string, explicitForm?: NgForm): {
|
|
6
|
-
control: NgControl;
|
|
7
|
-
model: NgModel;
|
|
8
|
-
form: {
|
|
9
|
-
natural: boolean;
|
|
10
|
-
entity: NgForm;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormsHelper, never>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FormsHelper>;
|
|
15
|
-
}
|
package/lib/tokens.d.ts
DELETED