@maro-tech/form 0.1.1 → 0.1.3
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/maro-tech-form.mjs +1073 -370
- package/fesm2022/maro-tech-form.mjs.map +1 -1
- package/package.json +1 -1
- package/types/maro-tech-form.d.ts +382 -80
|
@@ -40,7 +40,7 @@ interface UiSelectOption {
|
|
|
40
40
|
imageUrl?: string;
|
|
41
41
|
}
|
|
42
42
|
type UiSelectValue = string | string[] | null;
|
|
43
|
-
declare class
|
|
43
|
+
declare class InputSelectControlComponent implements ControlValueAccessor, OnChanges, Validator {
|
|
44
44
|
readonly closeIcon: lucide_angular.LucideIconData;
|
|
45
45
|
readonly chevronDownIcon: lucide_angular.LucideIconData;
|
|
46
46
|
readonly checkIcon: lucide_angular.LucideIconData;
|
|
@@ -53,16 +53,14 @@ declare class InputSelectComponent implements ControlValueAccessor, OnChanges, V
|
|
|
53
53
|
placeholder?: string;
|
|
54
54
|
name?: string;
|
|
55
55
|
data?: string;
|
|
56
|
+
dataParams: Record<string, string | number | boolean | null | undefined>;
|
|
56
57
|
required: boolean;
|
|
57
|
-
fullWidth: boolean;
|
|
58
58
|
disabled: boolean;
|
|
59
59
|
multiple: boolean;
|
|
60
60
|
includeBlankOption: boolean;
|
|
61
61
|
blankOptionLabel: string;
|
|
62
62
|
emptyStateLabel: string;
|
|
63
63
|
searchable: boolean;
|
|
64
|
-
remoteSearch: boolean;
|
|
65
|
-
searchPlaceholder: string;
|
|
66
64
|
private _options;
|
|
67
65
|
set options(value: UiSelectOption[]);
|
|
68
66
|
get options(): UiSelectOption[];
|
|
@@ -121,8 +119,8 @@ declare class InputSelectComponent implements ControlValueAccessor, OnChanges, V
|
|
|
121
119
|
private normalizeSuggestItem;
|
|
122
120
|
private loadSuggestItems;
|
|
123
121
|
private loadSuggestItem;
|
|
124
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
125
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
122
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSelectControlComponent, never>;
|
|
123
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSelectControlComponent, "input-select-control", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "data": { "alias": "data"; "required": false; }; "dataParams": { "alias": "dataParams"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "includeBlankOption": { "alias": "includeBlankOption"; "required": false; }; "blankOptionLabel": { "alias": "blankOptionLabel"; "required": false; }; "emptyStateLabel": { "alias": "emptyStateLabel"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "options": { "alias": "options"; "required": false; }; "error": { "alias": "error"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "triggerClass": { "alias": "triggerClass"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; }, { "valueChange": "valueChange"; "searchChange": "searchChange"; }, never, never, true, never>;
|
|
126
124
|
static ngAcceptInputType_multiple: unknown;
|
|
127
125
|
}
|
|
128
126
|
|
|
@@ -149,61 +147,82 @@ interface UiDynamicFormFieldAction {
|
|
|
149
147
|
condition?: string;
|
|
150
148
|
variant?: 'primary' | 'secondary' | 'ghost' | 'danger';
|
|
151
149
|
}
|
|
152
|
-
interface
|
|
150
|
+
interface UiDynamicFormCommonField {
|
|
153
151
|
id: string;
|
|
154
|
-
type?: UiDynamicFieldType;
|
|
155
152
|
label?: string;
|
|
156
153
|
title?: string;
|
|
157
154
|
placeholder?: string;
|
|
158
155
|
hint?: string;
|
|
159
156
|
required?: boolean;
|
|
160
157
|
disabled?: boolean;
|
|
158
|
+
col?: number;
|
|
159
|
+
hidden?: boolean | string;
|
|
160
|
+
default?: string | number | boolean | string[] | null;
|
|
161
|
+
actions?: UiDynamicFormFieldAction[];
|
|
162
|
+
className?: string;
|
|
163
|
+
}
|
|
164
|
+
interface UiDynamicFormTextField extends UiDynamicFormCommonField {
|
|
165
|
+
type?: Exclude<UiDynamicFieldType, 'select' | 'barcode' | 'checkbox' | 'color' | 'range' | 'file' | 'photo' | 'container' | 'template'>;
|
|
166
|
+
rows?: number;
|
|
167
|
+
pattern?: string;
|
|
168
|
+
}
|
|
169
|
+
interface UiDynamicFormSelectField extends UiDynamicFormCommonField {
|
|
170
|
+
type: 'select';
|
|
161
171
|
data?: string;
|
|
172
|
+
dataParams?: Record<string, string>;
|
|
162
173
|
options?: UiSelectOption[];
|
|
163
174
|
searchable?: boolean;
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
175
|
+
multiple?: boolean;
|
|
176
|
+
lookupApi?: string;
|
|
177
|
+
lookupMap?: Record<string, string>;
|
|
178
|
+
lookupErrorField?: string;
|
|
179
|
+
}
|
|
180
|
+
interface UiDynamicFormFileField extends UiDynamicFormCommonField {
|
|
181
|
+
type: 'file';
|
|
182
|
+
accept?: string;
|
|
183
|
+
multiple?: boolean;
|
|
184
|
+
}
|
|
185
|
+
interface UiDynamicFormPhotoField extends UiDynamicFormCommonField {
|
|
186
|
+
type: 'photo';
|
|
167
187
|
accept?: string;
|
|
168
188
|
multiple?: boolean;
|
|
169
189
|
limit?: number;
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
actions?: UiDynamicFormFieldAction[];
|
|
174
|
-
className?: string;
|
|
175
|
-
containerClassName?: string;
|
|
176
|
-
contentClassName?: string;
|
|
177
|
-
tag?: 'div' | 'section' | 'aside' | 'fieldset';
|
|
178
|
-
fields?: UiDynamicFormField[];
|
|
179
|
-
layout?: 'grid' | 'stack';
|
|
180
|
-
template?: string;
|
|
181
|
-
templateContext?: Record<string, unknown>;
|
|
182
|
-
autoOpen?: boolean;
|
|
183
|
-
searchButtonLabel?: string;
|
|
184
|
-
openCameraLabel?: string;
|
|
185
|
-
closeCameraLabel?: string;
|
|
186
|
-
cameraTitle?: string;
|
|
187
|
-
cameraStartingLabel?: string;
|
|
188
|
-
cameraHint?: string;
|
|
190
|
+
}
|
|
191
|
+
interface UiDynamicFormBarcodeField extends UiDynamicFormCommonField {
|
|
192
|
+
type: 'barcode';
|
|
189
193
|
lookupApi?: string;
|
|
190
194
|
lookupMap?: Record<string, string>;
|
|
191
195
|
lookupErrorField?: string;
|
|
192
196
|
}
|
|
193
|
-
interface
|
|
197
|
+
interface UiDynamicFormCheckboxField extends UiDynamicFormCommonField {
|
|
198
|
+
type: 'checkbox';
|
|
199
|
+
}
|
|
200
|
+
interface UiDynamicFormColorField extends UiDynamicFormCommonField {
|
|
201
|
+
type: 'color';
|
|
202
|
+
}
|
|
203
|
+
interface UiDynamicFormRangeField extends UiDynamicFormCommonField {
|
|
204
|
+
type: 'range';
|
|
205
|
+
}
|
|
206
|
+
interface UiDynamicFormContainerField extends UiDynamicFormCommonField {
|
|
194
207
|
type: 'container';
|
|
195
208
|
fields: UiDynamicFormField[];
|
|
196
209
|
layout?: 'grid' | 'stack';
|
|
210
|
+
title?: string;
|
|
211
|
+
hint?: string;
|
|
212
|
+
contentClassName?: string;
|
|
213
|
+
tag?: 'div' | 'section' | 'aside' | 'fieldset';
|
|
197
214
|
}
|
|
198
|
-
interface UiDynamicFormTemplateField extends
|
|
215
|
+
interface UiDynamicFormTemplateField extends UiDynamicFormCommonField {
|
|
199
216
|
type: 'template';
|
|
200
217
|
template: string;
|
|
201
218
|
templateContext?: Record<string, unknown>;
|
|
219
|
+
tag?: 'div' | 'section' | 'aside' | 'fieldset';
|
|
202
220
|
}
|
|
203
|
-
type UiDynamicFormField =
|
|
221
|
+
type UiDynamicFormField = UiDynamicFormTextField | UiDynamicFormSelectField | UiDynamicFormFileField | UiDynamicFormPhotoField | UiDynamicFormBarcodeField | UiDynamicFormCheckboxField | UiDynamicFormColorField | UiDynamicFormRangeField | UiDynamicFormContainerField | UiDynamicFormTemplateField;
|
|
204
222
|
type UiDynamicFormValue = Record<string, string | number | boolean | string[] | File | File[] | null | undefined>;
|
|
205
223
|
declare const isDynamicFormContainerField: (field: UiDynamicFormField) => field is UiDynamicFormContainerField;
|
|
206
224
|
declare const isDynamicFormTemplateField: (field: UiDynamicFormField) => field is UiDynamicFormTemplateField;
|
|
225
|
+
declare const isDynamicFormLookupField: (field: UiDynamicFormField) => field is UiDynamicFormSelectField | UiDynamicFormBarcodeField;
|
|
207
226
|
declare const flattenDynamicFormFields: (fields: UiDynamicFormField[]) => UiDynamicFormField[];
|
|
208
227
|
|
|
209
228
|
declare class UiFormLookupService {
|
|
@@ -258,8 +277,12 @@ declare class DynamicFormComponent implements OnChanges {
|
|
|
258
277
|
getLookupError(fieldId: string): string;
|
|
259
278
|
isLookupLoading(fieldId: string): boolean;
|
|
260
279
|
resolveClassName(value: unknown): string;
|
|
261
|
-
isContainerField(field: UiDynamicFormField):
|
|
262
|
-
|
|
280
|
+
isContainerField(field: UiDynamicFormField): field is Extract<UiDynamicFormField, {
|
|
281
|
+
type: 'container';
|
|
282
|
+
}>;
|
|
283
|
+
isTemplateField(field: UiDynamicFormField): field is Extract<UiDynamicFormField, {
|
|
284
|
+
type: 'template';
|
|
285
|
+
}>;
|
|
263
286
|
isFieldVisible(field: UiDynamicFormField): boolean;
|
|
264
287
|
resolveInputType(field: UiDynamicFormField): string;
|
|
265
288
|
renderTemplate(field: UiDynamicFormField): string;
|
|
@@ -347,9 +370,10 @@ declare class FormModalComponent implements OnChanges {
|
|
|
347
370
|
declare class FieldInputComponent implements OnChanges, AfterViewInit {
|
|
348
371
|
field: UiDynamicFormField;
|
|
349
372
|
value: UiDynamicFormValue[string];
|
|
373
|
+
model: UiDynamicFormValue;
|
|
350
374
|
error: string;
|
|
351
375
|
disabled: boolean;
|
|
352
|
-
|
|
376
|
+
visibleActions: UiDynamicFormFieldAction[];
|
|
353
377
|
valueChange: EventEmitter<unknown>;
|
|
354
378
|
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
355
379
|
lookupRequested: EventEmitter<void>;
|
|
@@ -365,25 +389,36 @@ declare class FieldInputComponent implements OnChanges, AfterViewInit {
|
|
|
365
389
|
private render;
|
|
366
390
|
private syncInputs;
|
|
367
391
|
static ɵfac: i0.ɵɵFactoryDeclaration<FieldInputComponent, never>;
|
|
368
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FieldInputComponent, "field-input", never, { "field": { "alias": "field"; "required": false; }; "value": { "alias": "value"; "required": false; }; "error": { "alias": "error"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "
|
|
392
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldInputComponent, "field-input", never, { "field": { "alias": "field"; "required": false; }; "value": { "alias": "value"; "required": false; }; "model": { "alias": "model"; "required": false; }; "error": { "alias": "error"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "visibleActions": { "alias": "visibleActions"; "required": false; }; }, { "valueChange": "valueChange"; "actionTriggered": "actionTriggered"; "lookupRequested": "lookupRequested"; "barcodeScanned": "barcodeScanned"; "filesChange": "filesChange"; "uploadingChange": "uploadingChange"; }, never, never, true, never>;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
declare class FieldFrameComponent {
|
|
396
|
+
label?: string;
|
|
397
|
+
hint?: string;
|
|
398
|
+
error?: string;
|
|
399
|
+
required: boolean;
|
|
400
|
+
forId?: string;
|
|
401
|
+
disabled: boolean;
|
|
402
|
+
actions: UiDynamicFormFieldAction[];
|
|
403
|
+
get hasError(): boolean;
|
|
404
|
+
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
405
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldFrameComponent, never>;
|
|
406
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FieldFrameComponent, "field-frame", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "forId": { "alias": "forId"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, ["*"], true, never>;
|
|
369
407
|
}
|
|
370
408
|
|
|
371
409
|
type UiFormInputType = 'text' | 'number' | 'date' | 'datetime' | 'email' | 'password' | 'textarea' | 'select' | 'checkbox' | 'color' | 'slug' | 'file' | 'photo' | 'barcode';
|
|
372
410
|
declare const UI_FORM_INPUT_REGISTRY: Record<UiFormInputType, Type<unknown>>;
|
|
373
411
|
|
|
374
|
-
declare class
|
|
412
|
+
declare class InputBarcodeControlComponent implements OnChanges, AfterViewInit, OnDestroy {
|
|
413
|
+
readonly cameraIcon: lucide_angular.LucideIconData;
|
|
414
|
+
readonly cameraOffIcon: lucide_angular.LucideIconData;
|
|
375
415
|
readonly value: i0.InputSignal<string>;
|
|
376
416
|
readonly label: i0.InputSignal<string>;
|
|
377
417
|
readonly placeholder: i0.InputSignal<string>;
|
|
378
418
|
readonly hint: i0.InputSignal<string>;
|
|
419
|
+
readonly error: i0.InputSignal<string>;
|
|
420
|
+
readonly required: i0.InputSignal<boolean>;
|
|
379
421
|
readonly disabled: i0.InputSignal<boolean>;
|
|
380
|
-
readonly autoOpen: i0.InputSignal<boolean>;
|
|
381
|
-
readonly searchButtonLabel: i0.InputSignal<string>;
|
|
382
|
-
readonly openCameraLabel: i0.InputSignal<string>;
|
|
383
|
-
readonly closeCameraLabel: i0.InputSignal<string>;
|
|
384
|
-
readonly cameraTitle: i0.InputSignal<string>;
|
|
385
|
-
readonly cameraStartingLabel: i0.InputSignal<string>;
|
|
386
|
-
readonly cameraHint: i0.InputSignal<string>;
|
|
387
422
|
readonly valueChange: i0.OutputEmitterRef<string>;
|
|
388
423
|
readonly scanned: i0.OutputEmitterRef<string>;
|
|
389
424
|
readonly searchRequested: i0.OutputEmitterRef<void>;
|
|
@@ -414,15 +449,33 @@ declare class InputBarcodeComponent implements OnChanges, AfterViewInit, OnDestr
|
|
|
414
449
|
private openZxingCamera;
|
|
415
450
|
private scheduleNativeScan;
|
|
416
451
|
private createNativeBarcodeDetector;
|
|
452
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputBarcodeControlComponent, never>;
|
|
453
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputBarcodeControlComponent, "input-barcode-control", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "scanned": "scanned"; "searchRequested": "searchRequested"; "cameraStateChange": "cameraStateChange"; }, never, never, true, never>;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
declare class InputBarcodeComponent {
|
|
457
|
+
value: string;
|
|
458
|
+
label: string;
|
|
459
|
+
placeholder: string;
|
|
460
|
+
hint: string;
|
|
461
|
+
error: string;
|
|
462
|
+
required: boolean;
|
|
463
|
+
disabled: boolean;
|
|
464
|
+
valueChange: EventEmitter<string>;
|
|
465
|
+
scanned: EventEmitter<string>;
|
|
466
|
+
searchRequested: EventEmitter<void>;
|
|
467
|
+
cameraStateChange: EventEmitter<"error" | "idle" | "starting" | "open">;
|
|
417
468
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputBarcodeComponent, never>;
|
|
418
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputBarcodeComponent, "input-barcode", never, { "value": { "alias": "value"; "required": false;
|
|
469
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputBarcodeComponent, "input-barcode", never, { "value": { "alias": "value"; "required": false; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "scanned": "scanned"; "searchRequested": "searchRequested"; "cameraStateChange": "cameraStateChange"; }, never, never, true, never>;
|
|
419
470
|
}
|
|
420
471
|
|
|
421
472
|
declare class InputCheckboxComponent implements ControlValueAccessor {
|
|
422
473
|
label?: string;
|
|
474
|
+
hint?: string;
|
|
475
|
+
error?: string;
|
|
476
|
+
required: boolean;
|
|
423
477
|
disabled: boolean;
|
|
424
478
|
value: boolean;
|
|
425
|
-
valueChange: EventEmitter<boolean>;
|
|
426
479
|
private onChange;
|
|
427
480
|
onTouched: () => void;
|
|
428
481
|
writeValue(value: boolean | null): void;
|
|
@@ -430,8 +483,19 @@ declare class InputCheckboxComponent implements ControlValueAccessor {
|
|
|
430
483
|
registerOnTouched(fn: () => void): void;
|
|
431
484
|
setDisabledState(isDisabled: boolean): void;
|
|
432
485
|
onValueChange(event: Event): void;
|
|
486
|
+
handleValueChange(value: boolean): void;
|
|
433
487
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputCheckboxComponent, never>;
|
|
434
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputCheckboxComponent, "input-checkbox", never, { "label": { "alias": "label"; "required": false; }; "
|
|
488
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputCheckboxComponent, "input-checkbox", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
declare class InputCheckboxControlComponent {
|
|
492
|
+
value: boolean;
|
|
493
|
+
disabled: boolean;
|
|
494
|
+
valueChange: EventEmitter<boolean>;
|
|
495
|
+
touched: EventEmitter<void>;
|
|
496
|
+
onValueChange(event: Event): void;
|
|
497
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputCheckboxControlComponent, never>;
|
|
498
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputCheckboxControlComponent, "input-checkbox-control", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
435
499
|
}
|
|
436
500
|
|
|
437
501
|
declare class InputColorComponent implements ControlValueAccessor, Validator {
|
|
@@ -441,7 +505,6 @@ declare class InputColorComponent implements ControlValueAccessor, Validator {
|
|
|
441
505
|
name?: string;
|
|
442
506
|
id?: string;
|
|
443
507
|
required: boolean;
|
|
444
|
-
fullWidth: boolean;
|
|
445
508
|
error?: string;
|
|
446
509
|
disabled: boolean;
|
|
447
510
|
value: string;
|
|
@@ -458,11 +521,24 @@ declare class InputColorComponent implements ControlValueAccessor, Validator {
|
|
|
458
521
|
setDisabledState(isDisabled: boolean): void;
|
|
459
522
|
onPickerChange(value: string): void;
|
|
460
523
|
onHexInput(value: string): void;
|
|
524
|
+
handleValueChange(value: string): void;
|
|
461
525
|
markTouched(): void;
|
|
462
526
|
private normalizeHexInput;
|
|
463
527
|
private isColorValue;
|
|
464
528
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputColorComponent, never>;
|
|
465
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputColorComponent, "input-color", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
529
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputColorComponent, "input-color", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, {}, never, never, true, never>;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
declare class InputColorControlComponent {
|
|
533
|
+
id?: string;
|
|
534
|
+
name?: string;
|
|
535
|
+
disabled: boolean;
|
|
536
|
+
value: string;
|
|
537
|
+
pickerValue: string;
|
|
538
|
+
valueChange: EventEmitter<string>;
|
|
539
|
+
touched: EventEmitter<void>;
|
|
540
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputColorControlComponent, never>;
|
|
541
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputColorControlComponent, "input-color-control", never, { "id": { "alias": "id"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "pickerValue": { "alias": "pickerValue"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
466
542
|
}
|
|
467
543
|
|
|
468
544
|
type UiInputElement$6 = 'input' | 'textarea';
|
|
@@ -472,7 +548,7 @@ interface CalendarDay$1 {
|
|
|
472
548
|
currentMonth: boolean;
|
|
473
549
|
}
|
|
474
550
|
type CalendarView$1 = 'days' | 'months' | 'years';
|
|
475
|
-
declare class
|
|
551
|
+
declare class InputDateControlComponent implements ControlValueAccessor, Validator {
|
|
476
552
|
private readonly cdr;
|
|
477
553
|
private readonly popupService;
|
|
478
554
|
private readonly closeActivePopup;
|
|
@@ -488,7 +564,6 @@ declare class InputDateComponent implements ControlValueAccessor, Validator {
|
|
|
488
564
|
readonly nextMonthIcon: lucide_angular.LucideIconData;
|
|
489
565
|
rows: number;
|
|
490
566
|
required: boolean;
|
|
491
|
-
fullWidth: boolean;
|
|
492
567
|
autocomplete: string;
|
|
493
568
|
pattern?: string;
|
|
494
569
|
error?: string;
|
|
@@ -541,8 +616,36 @@ declare class InputDateComponent implements ControlValueAccessor, Validator {
|
|
|
541
616
|
private parseDate;
|
|
542
617
|
private parseInputDate;
|
|
543
618
|
private toDateValue;
|
|
619
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputDateControlComponent, never>;
|
|
620
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputDateControlComponent, "input-date-control", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
declare class InputDateComponent implements ControlValueAccessor, Validator, AfterViewInit {
|
|
624
|
+
private control?;
|
|
625
|
+
label?: string;
|
|
626
|
+
hint?: string;
|
|
627
|
+
error?: string;
|
|
628
|
+
placeholder?: string;
|
|
629
|
+
name?: string;
|
|
630
|
+
id?: string;
|
|
631
|
+
required: boolean;
|
|
632
|
+
disabled: boolean;
|
|
633
|
+
autocomplete: string;
|
|
634
|
+
pattern?: string;
|
|
635
|
+
rows: number;
|
|
636
|
+
actions: UiDynamicFormFieldAction[];
|
|
637
|
+
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
638
|
+
private pendingValue;
|
|
639
|
+
private onChange;
|
|
640
|
+
private onTouched;
|
|
641
|
+
ngAfterViewInit(): void;
|
|
642
|
+
writeValue(value: string | number | null): void;
|
|
643
|
+
registerOnChange(fn: (value: string | number | null) => void): void;
|
|
644
|
+
registerOnTouched(fn: () => void): void;
|
|
645
|
+
setDisabledState(value: boolean): void;
|
|
646
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
544
647
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDateComponent, never>;
|
|
545
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputDateComponent, "input-date", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "
|
|
648
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputDateComponent, "input-date", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
546
649
|
}
|
|
547
650
|
|
|
548
651
|
interface CalendarDay {
|
|
@@ -551,7 +654,7 @@ interface CalendarDay {
|
|
|
551
654
|
currentMonth: boolean;
|
|
552
655
|
}
|
|
553
656
|
type CalendarView = 'days' | 'months' | 'years';
|
|
554
|
-
declare class
|
|
657
|
+
declare class InputDatetimeControlComponent implements ControlValueAccessor, Validator {
|
|
555
658
|
private readonly cdr;
|
|
556
659
|
private readonly popupService;
|
|
557
660
|
private readonly closeActivePopup;
|
|
@@ -562,7 +665,6 @@ declare class InputDatetimeComponent implements ControlValueAccessor, Validator
|
|
|
562
665
|
id?: string;
|
|
563
666
|
rows: number;
|
|
564
667
|
required: boolean;
|
|
565
|
-
fullWidth: boolean;
|
|
566
668
|
autocomplete: string;
|
|
567
669
|
pattern?: string;
|
|
568
670
|
error?: string;
|
|
@@ -621,8 +723,36 @@ declare class InputDatetimeComponent implements ControlValueAccessor, Validator
|
|
|
621
723
|
private startOfMonth;
|
|
622
724
|
private parseDate;
|
|
623
725
|
private toDateValue;
|
|
726
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputDatetimeControlComponent, never>;
|
|
727
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputDatetimeControlComponent, "input-datetime-control", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
declare class InputDatetimeComponent implements ControlValueAccessor, Validator, AfterViewInit {
|
|
731
|
+
private control?;
|
|
732
|
+
label?: string;
|
|
733
|
+
hint?: string;
|
|
734
|
+
error?: string;
|
|
735
|
+
placeholder?: string;
|
|
736
|
+
name?: string;
|
|
737
|
+
id?: string;
|
|
738
|
+
required: boolean;
|
|
739
|
+
disabled: boolean;
|
|
740
|
+
autocomplete: string;
|
|
741
|
+
pattern?: string;
|
|
742
|
+
rows: number;
|
|
743
|
+
actions: UiDynamicFormFieldAction[];
|
|
744
|
+
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
745
|
+
private pendingValue;
|
|
746
|
+
private onChange;
|
|
747
|
+
private onTouched;
|
|
748
|
+
ngAfterViewInit(): void;
|
|
749
|
+
writeValue(value: string | number | null): void;
|
|
750
|
+
registerOnChange(fn: (value: string | number | null) => void): void;
|
|
751
|
+
registerOnTouched(fn: () => void): void;
|
|
752
|
+
setDisabledState(value: boolean): void;
|
|
753
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
624
754
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputDatetimeComponent, never>;
|
|
625
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputDatetimeComponent, "input-datetime", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "
|
|
755
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputDatetimeComponent, "input-datetime", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
626
756
|
}
|
|
627
757
|
|
|
628
758
|
type UiInputElement$5 = 'input' | 'textarea';
|
|
@@ -637,7 +767,6 @@ declare class InputEmailComponent implements ControlValueAccessor, Validator {
|
|
|
637
767
|
readonly element: UiInputElement$5;
|
|
638
768
|
rows: number;
|
|
639
769
|
required: boolean;
|
|
640
|
-
fullWidth: boolean;
|
|
641
770
|
autocomplete?: string;
|
|
642
771
|
pattern?: string;
|
|
643
772
|
error?: string;
|
|
@@ -658,18 +787,33 @@ declare class InputEmailComponent implements ControlValueAccessor, Validator {
|
|
|
658
787
|
onValueChange(value: string): void;
|
|
659
788
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
660
789
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputEmailComponent, never>;
|
|
661
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputEmailComponent, "input-email", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
790
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputEmailComponent, "input-email", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
declare class InputEmailControlComponent {
|
|
794
|
+
placeholder?: string;
|
|
795
|
+
name?: string;
|
|
796
|
+
id?: string;
|
|
797
|
+
autocomplete?: string;
|
|
798
|
+
pattern?: string;
|
|
799
|
+
disabled: boolean;
|
|
800
|
+
value: string | number | null;
|
|
801
|
+
valueChange: EventEmitter<string>;
|
|
802
|
+
touched: EventEmitter<void>;
|
|
803
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputEmailControlComponent, never>;
|
|
804
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputEmailControlComponent, "input-email-control", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
662
805
|
}
|
|
663
806
|
|
|
664
807
|
declare class InputFileComponent implements ControlValueAccessor {
|
|
665
808
|
label?: string;
|
|
666
809
|
hint?: string;
|
|
810
|
+
error?: string;
|
|
811
|
+
required: boolean;
|
|
667
812
|
accept?: string;
|
|
668
813
|
multiple: boolean;
|
|
669
814
|
disabled: boolean;
|
|
670
|
-
value: File | File[] | null;
|
|
671
|
-
valueChange: EventEmitter<File | File[] | null>;
|
|
672
815
|
filesChange: EventEmitter<File[]>;
|
|
816
|
+
value: File | File[] | null;
|
|
673
817
|
private onChange;
|
|
674
818
|
onTouched: () => void;
|
|
675
819
|
writeValue(value: File | File[] | null): void;
|
|
@@ -678,9 +822,23 @@ declare class InputFileComponent implements ControlValueAccessor {
|
|
|
678
822
|
setDisabledState(isDisabled: boolean): void;
|
|
679
823
|
get selectedFiles(): File[];
|
|
680
824
|
onFilesSelected(event: Event): void;
|
|
825
|
+
handleFilesSelected(files: File[]): void;
|
|
681
826
|
remove(index: number): void;
|
|
682
827
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputFileComponent, never>;
|
|
683
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputFileComponent, "input-file", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "
|
|
828
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputFileComponent, "input-file", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "filesChange": "filesChange"; }, never, never, true, never>;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
declare class InputFileControlComponent {
|
|
832
|
+
accept?: string;
|
|
833
|
+
multiple: boolean;
|
|
834
|
+
disabled: boolean;
|
|
835
|
+
selectedFiles: File[];
|
|
836
|
+
filesSelected: EventEmitter<File[]>;
|
|
837
|
+
removeFile: EventEmitter<number>;
|
|
838
|
+
touched: EventEmitter<void>;
|
|
839
|
+
onFilesSelected(event: Event): void;
|
|
840
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputFileControlComponent, never>;
|
|
841
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputFileControlComponent, "input-file-control", never, { "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selectedFiles": { "alias": "selectedFiles"; "required": false; }; }, { "filesSelected": "filesSelected"; "removeFile": "removeFile"; "touched": "touched"; }, never, never, true, never>;
|
|
684
842
|
}
|
|
685
843
|
|
|
686
844
|
type UiInputElement$4 = 'input' | 'textarea';
|
|
@@ -695,7 +853,6 @@ declare class InputComponent implements ControlValueAccessor {
|
|
|
695
853
|
element: UiInputElement$4;
|
|
696
854
|
rows: number;
|
|
697
855
|
required: boolean;
|
|
698
|
-
fullWidth: boolean;
|
|
699
856
|
autocomplete?: string;
|
|
700
857
|
pattern?: string;
|
|
701
858
|
error?: string;
|
|
@@ -715,7 +872,24 @@ declare class InputComponent implements ControlValueAccessor {
|
|
|
715
872
|
onValueChange(value: string): void;
|
|
716
873
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
717
874
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputComponent, never>;
|
|
718
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "input-base", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "element": { "alias": "element"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
875
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputComponent, "input-base", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "element": { "alias": "element"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
declare class InputBaseControlComponent {
|
|
879
|
+
placeholder?: string;
|
|
880
|
+
name?: string;
|
|
881
|
+
id?: string;
|
|
882
|
+
type: string;
|
|
883
|
+
element: 'input' | 'textarea';
|
|
884
|
+
rows: number;
|
|
885
|
+
autocomplete?: string;
|
|
886
|
+
pattern?: string;
|
|
887
|
+
disabled: boolean;
|
|
888
|
+
value: string | number | null;
|
|
889
|
+
valueChange: EventEmitter<string>;
|
|
890
|
+
touched: EventEmitter<void>;
|
|
891
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputBaseControlComponent, never>;
|
|
892
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputBaseControlComponent, "input-base-control", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "element": { "alias": "element"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
719
893
|
}
|
|
720
894
|
|
|
721
895
|
type UiInputElement$3 = 'input' | 'textarea';
|
|
@@ -730,7 +904,6 @@ declare class InputNumberComponent implements ControlValueAccessor, Validator {
|
|
|
730
904
|
readonly element: UiInputElement$3;
|
|
731
905
|
rows: number;
|
|
732
906
|
required: boolean;
|
|
733
|
-
fullWidth: boolean;
|
|
734
907
|
autocomplete?: string;
|
|
735
908
|
disabled: boolean;
|
|
736
909
|
pattern?: string;
|
|
@@ -752,7 +925,19 @@ declare class InputNumberComponent implements ControlValueAccessor, Validator {
|
|
|
752
925
|
preventWheelChange(event: WheelEvent): void;
|
|
753
926
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
754
927
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberComponent, never>;
|
|
755
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "input-number", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
928
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberComponent, "input-number", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
declare class InputNumberControlComponent {
|
|
932
|
+
placeholder?: string;
|
|
933
|
+
name?: string;
|
|
934
|
+
id?: string;
|
|
935
|
+
disabled: boolean;
|
|
936
|
+
value: string | number | null;
|
|
937
|
+
valueChange: EventEmitter<string>;
|
|
938
|
+
touched: EventEmitter<void>;
|
|
939
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberControlComponent, never>;
|
|
940
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputNumberControlComponent, "input-number-control", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
756
941
|
}
|
|
757
942
|
|
|
758
943
|
type UiInputElement$2 = 'input' | 'textarea';
|
|
@@ -769,7 +954,6 @@ declare class InputPasswordComponent implements ControlValueAccessor, Validator
|
|
|
769
954
|
readonly element: UiInputElement$2;
|
|
770
955
|
rows: number;
|
|
771
956
|
required: boolean;
|
|
772
|
-
fullWidth: boolean;
|
|
773
957
|
autocomplete?: string;
|
|
774
958
|
pattern?: string;
|
|
775
959
|
error?: string;
|
|
@@ -792,7 +976,24 @@ declare class InputPasswordComponent implements ControlValueAccessor, Validator
|
|
|
792
976
|
togglePassword(event: Event): void;
|
|
793
977
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
794
978
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordComponent, never>;
|
|
795
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "input-password", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
979
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordComponent, "input-password", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
declare class InputPasswordControlComponent {
|
|
983
|
+
readonly showIcon: lucide_angular.LucideIconData;
|
|
984
|
+
readonly hideIcon: lucide_angular.LucideIconData;
|
|
985
|
+
placeholder?: string;
|
|
986
|
+
name?: string;
|
|
987
|
+
id?: string;
|
|
988
|
+
autocomplete?: string;
|
|
989
|
+
pattern?: string;
|
|
990
|
+
disabled: boolean;
|
|
991
|
+
value: string | number | null;
|
|
992
|
+
valueChange: EventEmitter<string>;
|
|
993
|
+
touched: EventEmitter<void>;
|
|
994
|
+
visible: boolean;
|
|
995
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordControlComponent, never>;
|
|
996
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPasswordControlComponent, "input-password-control", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
796
997
|
}
|
|
797
998
|
|
|
798
999
|
interface UiPhotoPreview {
|
|
@@ -805,14 +1006,15 @@ declare class InputPhotoComponent implements OnChanges, OnDestroy, ControlValueA
|
|
|
805
1006
|
private readonly http;
|
|
806
1007
|
label?: string;
|
|
807
1008
|
hint?: string;
|
|
1009
|
+
error?: string;
|
|
1010
|
+
required: boolean;
|
|
808
1011
|
accept: string;
|
|
809
1012
|
multiple: boolean;
|
|
810
1013
|
limit: number;
|
|
811
1014
|
disabled: boolean;
|
|
812
|
-
value: string | string[] | null;
|
|
813
|
-
valueChange: EventEmitter<string | string[] | null>;
|
|
814
1015
|
filesChange: EventEmitter<File[]>;
|
|
815
1016
|
uploadingChange: EventEmitter<boolean>;
|
|
1017
|
+
value: string | string[] | null;
|
|
816
1018
|
pendingFiles: File[];
|
|
817
1019
|
previews: UiPhotoPreview[];
|
|
818
1020
|
uploading: boolean;
|
|
@@ -827,6 +1029,7 @@ declare class InputPhotoComponent implements OnChanges, OnDestroy, ControlValueA
|
|
|
827
1029
|
ngOnDestroy(): void;
|
|
828
1030
|
get canSelectMore(): boolean;
|
|
829
1031
|
onFilesSelected(event: Event): void;
|
|
1032
|
+
handleFilesSelected(files: File[]): void;
|
|
830
1033
|
remove(index: number): void;
|
|
831
1034
|
drop(event: CdkDragDrop<UiPhotoPreview[]>): void;
|
|
832
1035
|
private get ids();
|
|
@@ -839,7 +1042,22 @@ declare class InputPhotoComponent implements OnChanges, OnDestroy, ControlValueA
|
|
|
839
1042
|
private resolveImageUrl;
|
|
840
1043
|
private isPreviewableType;
|
|
841
1044
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputPhotoComponent, never>;
|
|
842
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputPhotoComponent, "input-photo", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "
|
|
1045
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPhotoComponent, "input-photo", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "limit": { "alias": "limit"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "filesChange": "filesChange"; "uploadingChange": "uploadingChange"; }, never, never, true, never>;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
declare class InputPhotoControlComponent {
|
|
1049
|
+
accept: string;
|
|
1050
|
+
multiple: boolean;
|
|
1051
|
+
disabled: boolean;
|
|
1052
|
+
canSelectMore: boolean;
|
|
1053
|
+
previews: UiPhotoPreview[];
|
|
1054
|
+
filesSelected: EventEmitter<File[]>;
|
|
1055
|
+
removed: EventEmitter<number>;
|
|
1056
|
+
dropped: EventEmitter<CdkDragDrop<UiPhotoPreview[], UiPhotoPreview[], any>>;
|
|
1057
|
+
touched: EventEmitter<void>;
|
|
1058
|
+
selectFiles(event: Event): void;
|
|
1059
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPhotoControlComponent, never>;
|
|
1060
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPhotoControlComponent, "input-photo-control", never, { "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "canSelectMore": { "alias": "canSelectMore"; "required": false; }; "previews": { "alias": "previews"; "required": false; }; }, { "filesSelected": "filesSelected"; "removed": "removed"; "dropped": "dropped"; "touched": "touched"; }, never, never, true, never>;
|
|
843
1061
|
}
|
|
844
1062
|
|
|
845
1063
|
interface UiPhotoGalleryEntry {
|
|
@@ -852,6 +1070,9 @@ interface UiPhotoGalleryEntry {
|
|
|
852
1070
|
declare class InputPhotoGalleryComponent implements OnInit, OnChanges, OnDestroy {
|
|
853
1071
|
private readonly http;
|
|
854
1072
|
label: string;
|
|
1073
|
+
hint?: string;
|
|
1074
|
+
error?: string;
|
|
1075
|
+
required: boolean;
|
|
855
1076
|
orderLabel: string;
|
|
856
1077
|
imageIds: string[];
|
|
857
1078
|
disabled: boolean;
|
|
@@ -875,10 +1096,14 @@ declare class InputPhotoGalleryComponent implements OnInit, OnChanges, OnDestroy
|
|
|
875
1096
|
private uploadPendingImages;
|
|
876
1097
|
private uploadFile;
|
|
877
1098
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputPhotoGalleryComponent, never>;
|
|
878
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputPhotoGalleryComponent, "input-photo-gallery", never, { "label": { "alias": "label"; "required": false; }; "orderLabel": { "alias": "orderLabel"; "required": false; }; "imageIds": { "alias": "imageIds"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "afterUpload": { "alias": "afterUpload"; "required": false; }; "resolveImageUrl": { "alias": "resolveImageUrl"; "required": false; }; "notify": { "alias": "notify"; "required": false; }; }, { "imageIdsChange": "imageIdsChange"; }, never, never, true, never>;
|
|
1099
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputPhotoGalleryComponent, "input-photo-gallery", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "orderLabel": { "alias": "orderLabel"; "required": false; }; "imageIds": { "alias": "imageIds"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "afterUpload": { "alias": "afterUpload"; "required": false; }; "resolveImageUrl": { "alias": "resolveImageUrl"; "required": false; }; "notify": { "alias": "notify"; "required": false; }; }, { "imageIdsChange": "imageIdsChange"; }, never, never, true, never>;
|
|
879
1100
|
}
|
|
880
1101
|
|
|
881
1102
|
declare class InputRangeSliderComponent implements OnChanges, AfterViewInit {
|
|
1103
|
+
label?: string;
|
|
1104
|
+
hint?: string;
|
|
1105
|
+
error?: string;
|
|
1106
|
+
required: boolean;
|
|
882
1107
|
min: number;
|
|
883
1108
|
max: number;
|
|
884
1109
|
step: number;
|
|
@@ -908,7 +1133,42 @@ declare class InputRangeSliderComponent implements OnChanges, AfterViewInit {
|
|
|
908
1133
|
private syncNativeInputs;
|
|
909
1134
|
private syncNativeInput;
|
|
910
1135
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputRangeSliderComponent, never>;
|
|
911
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputRangeSliderComponent, "input-range-slider", never, { "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "startValue": { "alias": "startValue"; "required": false; }; "endValue": { "alias": "endValue"; "required": false; }; "startLabel": { "alias": "startLabel"; "required": false; }; "endLabel": { "alias": "endLabel"; "required": false; }; }, { "startValueChange": "startValueChange"; "endValueChange": "endValueChange"; "interactionEnd": "interactionEnd"; }, never, never, true, never>;
|
|
1136
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputRangeSliderComponent, "input-range-slider", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "step": { "alias": "step"; "required": false; }; "startValue": { "alias": "startValue"; "required": false; }; "endValue": { "alias": "endValue"; "required": false; }; "startLabel": { "alias": "startLabel"; "required": false; }; "endLabel": { "alias": "endLabel"; "required": false; }; }, { "startValueChange": "startValueChange"; "endValueChange": "endValueChange"; "interactionEnd": "interactionEnd"; }, never, never, true, never>;
|
|
1137
|
+
}
|
|
1138
|
+
|
|
1139
|
+
declare class InputSelectComponent implements ControlValueAccessor, Validator, AfterViewInit {
|
|
1140
|
+
private control?;
|
|
1141
|
+
label?: string;
|
|
1142
|
+
hint?: string;
|
|
1143
|
+
error?: string;
|
|
1144
|
+
placeholder?: string;
|
|
1145
|
+
name?: string;
|
|
1146
|
+
data?: string;
|
|
1147
|
+
dataParams: Record<string, string | number | boolean | null | undefined>;
|
|
1148
|
+
required: boolean;
|
|
1149
|
+
disabled: boolean;
|
|
1150
|
+
multiple: boolean;
|
|
1151
|
+
includeBlankOption: boolean;
|
|
1152
|
+
blankOptionLabel: string;
|
|
1153
|
+
emptyStateLabel: string;
|
|
1154
|
+
searchable: boolean;
|
|
1155
|
+
options: UiSelectOption[];
|
|
1156
|
+
triggerClass: string;
|
|
1157
|
+
panelClass: string;
|
|
1158
|
+
valueChange: EventEmitter<UiSelectValue>;
|
|
1159
|
+
searchChange: EventEmitter<string>;
|
|
1160
|
+
private pendingValue;
|
|
1161
|
+
private onChange;
|
|
1162
|
+
private onTouched;
|
|
1163
|
+
ngAfterViewInit(): void;
|
|
1164
|
+
writeValue(value: UiSelectValue): void;
|
|
1165
|
+
registerOnChange(fn: (value: UiSelectValue) => void): void;
|
|
1166
|
+
registerOnTouched(fn: () => void): void;
|
|
1167
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1168
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1169
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSelectComponent, never>;
|
|
1170
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSelectComponent, "input-select", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "error": { "alias": "error"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "data": { "alias": "data"; "required": false; }; "dataParams": { "alias": "dataParams"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "includeBlankOption": { "alias": "includeBlankOption"; "required": false; }; "blankOptionLabel": { "alias": "blankOptionLabel"; "required": false; }; "emptyStateLabel": { "alias": "emptyStateLabel"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "options": { "alias": "options"; "required": false; }; "triggerClass": { "alias": "triggerClass"; "required": false; }; "panelClass": { "alias": "panelClass"; "required": false; }; }, { "valueChange": "valueChange"; "searchChange": "searchChange"; }, never, never, true, never>;
|
|
1171
|
+
static ngAcceptInputType_multiple: unknown;
|
|
912
1172
|
}
|
|
913
1173
|
|
|
914
1174
|
declare class InputSlugComponent implements ControlValueAccessor, Validator {
|
|
@@ -918,7 +1178,6 @@ declare class InputSlugComponent implements ControlValueAccessor, Validator {
|
|
|
918
1178
|
name?: string;
|
|
919
1179
|
id?: string;
|
|
920
1180
|
required: boolean;
|
|
921
|
-
fullWidth: boolean;
|
|
922
1181
|
autocomplete: string;
|
|
923
1182
|
error?: string;
|
|
924
1183
|
invalidInput: EventEmitter<void>;
|
|
@@ -935,9 +1194,23 @@ declare class InputSlugComponent implements ControlValueAccessor, Validator {
|
|
|
935
1194
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
936
1195
|
setDisabledState(isDisabled: boolean): void;
|
|
937
1196
|
onValueChange(target: HTMLInputElement): void;
|
|
1197
|
+
handleValueChange(value: string): void;
|
|
938
1198
|
private normalizeSlug;
|
|
939
1199
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputSlugComponent, never>;
|
|
940
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputSlugComponent, "input-slug", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
1200
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSlugComponent, "input-slug", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "error": { "alias": "error"; "required": false; }; }, { "invalidInput": "invalidInput"; }, never, never, true, never>;
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
declare class InputSlugControlComponent {
|
|
1204
|
+
placeholder?: string;
|
|
1205
|
+
name?: string;
|
|
1206
|
+
id?: string;
|
|
1207
|
+
autocomplete: string;
|
|
1208
|
+
disabled: boolean;
|
|
1209
|
+
value: string;
|
|
1210
|
+
valueChange: EventEmitter<string>;
|
|
1211
|
+
touched: EventEmitter<void>;
|
|
1212
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSlugControlComponent, never>;
|
|
1213
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputSlugControlComponent, "input-slug-control", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
941
1214
|
}
|
|
942
1215
|
|
|
943
1216
|
type UiInputElement$1 = 'input' | 'textarea';
|
|
@@ -952,7 +1225,6 @@ declare class InputTextComponent implements ControlValueAccessor, Validator {
|
|
|
952
1225
|
readonly element: UiInputElement$1;
|
|
953
1226
|
rows: number;
|
|
954
1227
|
required: boolean;
|
|
955
|
-
fullWidth: boolean;
|
|
956
1228
|
autocomplete?: string;
|
|
957
1229
|
pattern?: string;
|
|
958
1230
|
error?: string;
|
|
@@ -973,7 +1245,25 @@ declare class InputTextComponent implements ControlValueAccessor, Validator {
|
|
|
973
1245
|
onValueChange(value: string): void;
|
|
974
1246
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
975
1247
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextComponent, never>;
|
|
976
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "input-text", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
1248
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextComponent, "input-text", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
declare class InputTextControlComponent {
|
|
1252
|
+
placeholder?: string;
|
|
1253
|
+
name?: string;
|
|
1254
|
+
id?: string;
|
|
1255
|
+
type: string;
|
|
1256
|
+
element: 'input' | 'textarea';
|
|
1257
|
+
rows: number;
|
|
1258
|
+
autocomplete?: string;
|
|
1259
|
+
pattern?: string;
|
|
1260
|
+
disabled: boolean;
|
|
1261
|
+
value: string | number | null;
|
|
1262
|
+
valueChange: EventEmitter<string>;
|
|
1263
|
+
touched: EventEmitter<void>;
|
|
1264
|
+
enterPressed: EventEmitter<void>;
|
|
1265
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextControlComponent, never>;
|
|
1266
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextControlComponent, "input-text-control", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "element": { "alias": "element"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; "enterPressed": "enterPressed"; }, never, never, true, never>;
|
|
977
1267
|
}
|
|
978
1268
|
|
|
979
1269
|
type UiInputElement = 'input' | 'textarea';
|
|
@@ -988,7 +1278,6 @@ declare class InputTextareaComponent implements ControlValueAccessor, Validator
|
|
|
988
1278
|
readonly element: UiInputElement;
|
|
989
1279
|
rows: number;
|
|
990
1280
|
required: boolean;
|
|
991
|
-
fullWidth: boolean;
|
|
992
1281
|
autocomplete?: string;
|
|
993
1282
|
pattern?: string;
|
|
994
1283
|
error?: string;
|
|
@@ -1009,8 +1298,21 @@ declare class InputTextareaComponent implements ControlValueAccessor, Validator
|
|
|
1009
1298
|
onValueChange(value: string): void;
|
|
1010
1299
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
1011
1300
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaComponent, never>;
|
|
1012
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "input-textarea", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "
|
|
1301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaComponent, "input-textarea", never, { "label": { "alias": "label"; "required": false; }; "hint": { "alias": "hint"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "required": { "alias": "required"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "error": { "alias": "error"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; }, { "actionTriggered": "actionTriggered"; }, never, never, true, never>;
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1304
|
+
declare class InputTextareaControlComponent {
|
|
1305
|
+
placeholder?: string;
|
|
1306
|
+
name?: string;
|
|
1307
|
+
id?: string;
|
|
1308
|
+
rows: number;
|
|
1309
|
+
disabled: boolean;
|
|
1310
|
+
value: string | number | null;
|
|
1311
|
+
valueChange: EventEmitter<string>;
|
|
1312
|
+
touched: EventEmitter<void>;
|
|
1313
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaControlComponent, never>;
|
|
1314
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<InputTextareaControlComponent, "input-textarea-control", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "touched": "touched"; }, never, never, true, never>;
|
|
1013
1315
|
}
|
|
1014
1316
|
|
|
1015
|
-
export { ACTION_API, ACTION_FORM, ACTION_PRINT, ACTION_SUBMIT, DynamicFormComponent, FieldInputComponent, FormModalComponent, InputBarcodeComponent, InputCheckboxComponent, InputColorComponent, InputComponent, InputDateComponent, InputDatetimeComponent, InputEmailComponent, InputFileComponent, InputNumberComponent, InputPasswordComponent, InputPhotoComponent, InputPhotoGalleryComponent, InputRangeSliderComponent, InputSelectComponent, InputSlugComponent, InputTextComponent, InputTextareaComponent, MaroFormsApiService, UI_FORM_INPUT_REGISTRY, UiFormContext, UiFormLookupService, flattenDynamicFormFields, isDynamicFormContainerField, isDynamicFormTemplateField };
|
|
1016
|
-
export type { ActionType, ApiPluginMethod, MaroFormViewAction, MaroFormViewResponse, UiDynamicFieldType,
|
|
1317
|
+
export { ACTION_API, ACTION_FORM, ACTION_PRINT, ACTION_SUBMIT, DynamicFormComponent, FieldFrameComponent, FieldInputComponent, FormModalComponent, InputBarcodeComponent, InputBarcodeControlComponent, InputBaseControlComponent, InputCheckboxComponent, InputCheckboxControlComponent, InputColorComponent, InputColorControlComponent, InputComponent, InputDateComponent, InputDateControlComponent, InputDatetimeComponent, InputDatetimeControlComponent, InputEmailComponent, InputEmailControlComponent, InputFileComponent, InputFileControlComponent, InputNumberComponent, InputNumberControlComponent, InputPasswordComponent, InputPasswordControlComponent, InputPhotoComponent, InputPhotoControlComponent, InputPhotoGalleryComponent, InputRangeSliderComponent, InputSelectComponent, InputSelectControlComponent, InputSlugComponent, InputSlugControlComponent, InputTextComponent, InputTextControlComponent, InputTextareaComponent, InputTextareaControlComponent, MaroFormsApiService, UI_FORM_INPUT_REGISTRY, UiFormContext, UiFormLookupService, flattenDynamicFormFields, isDynamicFormContainerField, isDynamicFormLookupField, isDynamicFormTemplateField };
|
|
1318
|
+
export type { ActionType, ApiPluginMethod, MaroFormViewAction, MaroFormViewResponse, UiDynamicFieldType, UiDynamicFormBarcodeField, UiDynamicFormCheckboxField, UiDynamicFormColorField, UiDynamicFormCommonField, UiDynamicFormContainerField, UiDynamicFormField, UiDynamicFormFieldAction, UiDynamicFormFileField, UiDynamicFormPhotoField, UiDynamicFormRangeField, UiDynamicFormSelectField, UiDynamicFormTemplateField, UiDynamicFormTextField, UiDynamicFormValue, UiFormErrors, UiFormInputType, UiFormSubmitState, UiFormValue, UiPhotoGalleryEntry, UiPhotoPreview, UiSelectOption, UiSelectValue };
|