@maro-tech/form 0.1.1 → 0.1.2
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 +1042 -350
- package/fesm2022/maro-tech-form.mjs.map +1 -1
- package/package.json +1 -1
- package/types/maro-tech-form.d.ts +376 -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;
|
|
@@ -54,15 +54,12 @@ declare class InputSelectComponent implements ControlValueAccessor, OnChanges, V
|
|
|
54
54
|
name?: string;
|
|
55
55
|
data?: string;
|
|
56
56
|
required: boolean;
|
|
57
|
-
fullWidth: boolean;
|
|
58
57
|
disabled: boolean;
|
|
59
58
|
multiple: boolean;
|
|
60
59
|
includeBlankOption: boolean;
|
|
61
60
|
blankOptionLabel: string;
|
|
62
61
|
emptyStateLabel: string;
|
|
63
62
|
searchable: boolean;
|
|
64
|
-
remoteSearch: boolean;
|
|
65
|
-
searchPlaceholder: string;
|
|
66
63
|
private _options;
|
|
67
64
|
set options(value: UiSelectOption[]);
|
|
68
65
|
get options(): UiSelectOption[];
|
|
@@ -121,8 +118,8 @@ declare class InputSelectComponent implements ControlValueAccessor, OnChanges, V
|
|
|
121
118
|
private normalizeSuggestItem;
|
|
122
119
|
private loadSuggestItems;
|
|
123
120
|
private loadSuggestItem;
|
|
124
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
125
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
121
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSelectControlComponent, never>;
|
|
122
|
+
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; }; "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
123
|
static ngAcceptInputType_multiple: unknown;
|
|
127
124
|
}
|
|
128
125
|
|
|
@@ -149,61 +146,81 @@ interface UiDynamicFormFieldAction {
|
|
|
149
146
|
condition?: string;
|
|
150
147
|
variant?: 'primary' | 'secondary' | 'ghost' | 'danger';
|
|
151
148
|
}
|
|
152
|
-
interface
|
|
149
|
+
interface UiDynamicFormCommonField {
|
|
153
150
|
id: string;
|
|
154
|
-
type?: UiDynamicFieldType;
|
|
155
151
|
label?: string;
|
|
156
152
|
title?: string;
|
|
157
153
|
placeholder?: string;
|
|
158
154
|
hint?: string;
|
|
159
155
|
required?: boolean;
|
|
160
156
|
disabled?: boolean;
|
|
157
|
+
col?: number;
|
|
158
|
+
hidden?: boolean | string;
|
|
159
|
+
default?: string | number | boolean | string[] | null;
|
|
160
|
+
actions?: UiDynamicFormFieldAction[];
|
|
161
|
+
className?: string;
|
|
162
|
+
}
|
|
163
|
+
interface UiDynamicFormTextField extends UiDynamicFormCommonField {
|
|
164
|
+
type?: Exclude<UiDynamicFieldType, 'select' | 'barcode' | 'checkbox' | 'color' | 'range' | 'file' | 'photo' | 'container' | 'template'>;
|
|
165
|
+
rows?: number;
|
|
166
|
+
pattern?: string;
|
|
167
|
+
}
|
|
168
|
+
interface UiDynamicFormSelectField extends UiDynamicFormCommonField {
|
|
169
|
+
type: 'select';
|
|
161
170
|
data?: string;
|
|
162
171
|
options?: UiSelectOption[];
|
|
163
172
|
searchable?: boolean;
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
173
|
+
multiple?: boolean;
|
|
174
|
+
lookupApi?: string;
|
|
175
|
+
lookupMap?: Record<string, string>;
|
|
176
|
+
lookupErrorField?: string;
|
|
177
|
+
}
|
|
178
|
+
interface UiDynamicFormFileField extends UiDynamicFormCommonField {
|
|
179
|
+
type: 'file';
|
|
180
|
+
accept?: string;
|
|
181
|
+
multiple?: boolean;
|
|
182
|
+
}
|
|
183
|
+
interface UiDynamicFormPhotoField extends UiDynamicFormCommonField {
|
|
184
|
+
type: 'photo';
|
|
167
185
|
accept?: string;
|
|
168
186
|
multiple?: boolean;
|
|
169
187
|
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;
|
|
188
|
+
}
|
|
189
|
+
interface UiDynamicFormBarcodeField extends UiDynamicFormCommonField {
|
|
190
|
+
type: 'barcode';
|
|
189
191
|
lookupApi?: string;
|
|
190
192
|
lookupMap?: Record<string, string>;
|
|
191
193
|
lookupErrorField?: string;
|
|
192
194
|
}
|
|
193
|
-
interface
|
|
195
|
+
interface UiDynamicFormCheckboxField extends UiDynamicFormCommonField {
|
|
196
|
+
type: 'checkbox';
|
|
197
|
+
}
|
|
198
|
+
interface UiDynamicFormColorField extends UiDynamicFormCommonField {
|
|
199
|
+
type: 'color';
|
|
200
|
+
}
|
|
201
|
+
interface UiDynamicFormRangeField extends UiDynamicFormCommonField {
|
|
202
|
+
type: 'range';
|
|
203
|
+
}
|
|
204
|
+
interface UiDynamicFormContainerField extends UiDynamicFormCommonField {
|
|
194
205
|
type: 'container';
|
|
195
206
|
fields: UiDynamicFormField[];
|
|
196
207
|
layout?: 'grid' | 'stack';
|
|
208
|
+
title?: string;
|
|
209
|
+
hint?: string;
|
|
210
|
+
contentClassName?: string;
|
|
211
|
+
tag?: 'div' | 'section' | 'aside' | 'fieldset';
|
|
197
212
|
}
|
|
198
|
-
interface UiDynamicFormTemplateField extends
|
|
213
|
+
interface UiDynamicFormTemplateField extends UiDynamicFormCommonField {
|
|
199
214
|
type: 'template';
|
|
200
215
|
template: string;
|
|
201
216
|
templateContext?: Record<string, unknown>;
|
|
217
|
+
tag?: 'div' | 'section' | 'aside' | 'fieldset';
|
|
202
218
|
}
|
|
203
|
-
type UiDynamicFormField =
|
|
219
|
+
type UiDynamicFormField = UiDynamicFormTextField | UiDynamicFormSelectField | UiDynamicFormFileField | UiDynamicFormPhotoField | UiDynamicFormBarcodeField | UiDynamicFormCheckboxField | UiDynamicFormColorField | UiDynamicFormRangeField | UiDynamicFormContainerField | UiDynamicFormTemplateField;
|
|
204
220
|
type UiDynamicFormValue = Record<string, string | number | boolean | string[] | File | File[] | null | undefined>;
|
|
205
221
|
declare const isDynamicFormContainerField: (field: UiDynamicFormField) => field is UiDynamicFormContainerField;
|
|
206
222
|
declare const isDynamicFormTemplateField: (field: UiDynamicFormField) => field is UiDynamicFormTemplateField;
|
|
223
|
+
declare const isDynamicFormLookupField: (field: UiDynamicFormField) => field is UiDynamicFormSelectField | UiDynamicFormBarcodeField;
|
|
207
224
|
declare const flattenDynamicFormFields: (fields: UiDynamicFormField[]) => UiDynamicFormField[];
|
|
208
225
|
|
|
209
226
|
declare class UiFormLookupService {
|
|
@@ -258,8 +275,12 @@ declare class DynamicFormComponent implements OnChanges {
|
|
|
258
275
|
getLookupError(fieldId: string): string;
|
|
259
276
|
isLookupLoading(fieldId: string): boolean;
|
|
260
277
|
resolveClassName(value: unknown): string;
|
|
261
|
-
isContainerField(field: UiDynamicFormField):
|
|
262
|
-
|
|
278
|
+
isContainerField(field: UiDynamicFormField): field is Extract<UiDynamicFormField, {
|
|
279
|
+
type: 'container';
|
|
280
|
+
}>;
|
|
281
|
+
isTemplateField(field: UiDynamicFormField): field is Extract<UiDynamicFormField, {
|
|
282
|
+
type: 'template';
|
|
283
|
+
}>;
|
|
263
284
|
isFieldVisible(field: UiDynamicFormField): boolean;
|
|
264
285
|
resolveInputType(field: UiDynamicFormField): string;
|
|
265
286
|
renderTemplate(field: UiDynamicFormField): string;
|
|
@@ -349,7 +370,7 @@ declare class FieldInputComponent implements OnChanges, AfterViewInit {
|
|
|
349
370
|
value: UiDynamicFormValue[string];
|
|
350
371
|
error: string;
|
|
351
372
|
disabled: boolean;
|
|
352
|
-
|
|
373
|
+
visibleActions: UiDynamicFormFieldAction[];
|
|
353
374
|
valueChange: EventEmitter<unknown>;
|
|
354
375
|
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
355
376
|
lookupRequested: EventEmitter<void>;
|
|
@@ -365,25 +386,35 @@ declare class FieldInputComponent implements OnChanges, AfterViewInit {
|
|
|
365
386
|
private render;
|
|
366
387
|
private syncInputs;
|
|
367
388
|
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; }; "
|
|
389
|
+
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; }; "visibleActions": { "alias": "visibleActions"; "required": false; }; }, { "valueChange": "valueChange"; "actionTriggered": "actionTriggered"; "lookupRequested": "lookupRequested"; "barcodeScanned": "barcodeScanned"; "filesChange": "filesChange"; "uploadingChange": "uploadingChange"; }, never, never, true, never>;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
declare class FieldFrameComponent {
|
|
393
|
+
label?: string;
|
|
394
|
+
hint?: string;
|
|
395
|
+
error?: string;
|
|
396
|
+
required: boolean;
|
|
397
|
+
forId?: string;
|
|
398
|
+
disabled: boolean;
|
|
399
|
+
actions: UiDynamicFormFieldAction[];
|
|
400
|
+
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
401
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FieldFrameComponent, never>;
|
|
402
|
+
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
403
|
}
|
|
370
404
|
|
|
371
405
|
type UiFormInputType = 'text' | 'number' | 'date' | 'datetime' | 'email' | 'password' | 'textarea' | 'select' | 'checkbox' | 'color' | 'slug' | 'file' | 'photo' | 'barcode';
|
|
372
406
|
declare const UI_FORM_INPUT_REGISTRY: Record<UiFormInputType, Type<unknown>>;
|
|
373
407
|
|
|
374
|
-
declare class
|
|
408
|
+
declare class InputBarcodeControlComponent implements OnChanges, AfterViewInit, OnDestroy {
|
|
409
|
+
readonly cameraIcon: lucide_angular.LucideIconData;
|
|
410
|
+
readonly cameraOffIcon: lucide_angular.LucideIconData;
|
|
375
411
|
readonly value: i0.InputSignal<string>;
|
|
376
412
|
readonly label: i0.InputSignal<string>;
|
|
377
413
|
readonly placeholder: i0.InputSignal<string>;
|
|
378
414
|
readonly hint: i0.InputSignal<string>;
|
|
415
|
+
readonly error: i0.InputSignal<string>;
|
|
416
|
+
readonly required: i0.InputSignal<boolean>;
|
|
379
417
|
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
418
|
readonly valueChange: i0.OutputEmitterRef<string>;
|
|
388
419
|
readonly scanned: i0.OutputEmitterRef<string>;
|
|
389
420
|
readonly searchRequested: i0.OutputEmitterRef<void>;
|
|
@@ -414,15 +445,33 @@ declare class InputBarcodeComponent implements OnChanges, AfterViewInit, OnDestr
|
|
|
414
445
|
private openZxingCamera;
|
|
415
446
|
private scheduleNativeScan;
|
|
416
447
|
private createNativeBarcodeDetector;
|
|
448
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputBarcodeControlComponent, never>;
|
|
449
|
+
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>;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
declare class InputBarcodeComponent {
|
|
453
|
+
value: string;
|
|
454
|
+
label: string;
|
|
455
|
+
placeholder: string;
|
|
456
|
+
hint: string;
|
|
457
|
+
error: string;
|
|
458
|
+
required: boolean;
|
|
459
|
+
disabled: boolean;
|
|
460
|
+
valueChange: EventEmitter<string>;
|
|
461
|
+
scanned: EventEmitter<string>;
|
|
462
|
+
searchRequested: EventEmitter<void>;
|
|
463
|
+
cameraStateChange: EventEmitter<"error" | "idle" | "starting" | "open">;
|
|
417
464
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputBarcodeComponent, never>;
|
|
418
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputBarcodeComponent, "input-barcode", never, { "value": { "alias": "value"; "required": false;
|
|
465
|
+
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
466
|
}
|
|
420
467
|
|
|
421
468
|
declare class InputCheckboxComponent implements ControlValueAccessor {
|
|
422
469
|
label?: string;
|
|
470
|
+
hint?: string;
|
|
471
|
+
error?: string;
|
|
472
|
+
required: boolean;
|
|
423
473
|
disabled: boolean;
|
|
424
474
|
value: boolean;
|
|
425
|
-
valueChange: EventEmitter<boolean>;
|
|
426
475
|
private onChange;
|
|
427
476
|
onTouched: () => void;
|
|
428
477
|
writeValue(value: boolean | null): void;
|
|
@@ -430,8 +479,19 @@ declare class InputCheckboxComponent implements ControlValueAccessor {
|
|
|
430
479
|
registerOnTouched(fn: () => void): void;
|
|
431
480
|
setDisabledState(isDisabled: boolean): void;
|
|
432
481
|
onValueChange(event: Event): void;
|
|
482
|
+
handleValueChange(value: boolean): void;
|
|
433
483
|
static ɵfac: i0.ɵɵFactoryDeclaration<InputCheckboxComponent, never>;
|
|
434
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InputCheckboxComponent, "input-checkbox", never, { "label": { "alias": "label"; "required": false; }; "
|
|
484
|
+
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>;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
declare class InputCheckboxControlComponent {
|
|
488
|
+
value: boolean;
|
|
489
|
+
disabled: boolean;
|
|
490
|
+
valueChange: EventEmitter<boolean>;
|
|
491
|
+
touched: EventEmitter<void>;
|
|
492
|
+
onValueChange(event: Event): void;
|
|
493
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputCheckboxControlComponent, never>;
|
|
494
|
+
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
495
|
}
|
|
436
496
|
|
|
437
497
|
declare class InputColorComponent implements ControlValueAccessor, Validator {
|
|
@@ -441,7 +501,6 @@ declare class InputColorComponent implements ControlValueAccessor, Validator {
|
|
|
441
501
|
name?: string;
|
|
442
502
|
id?: string;
|
|
443
503
|
required: boolean;
|
|
444
|
-
fullWidth: boolean;
|
|
445
504
|
error?: string;
|
|
446
505
|
disabled: boolean;
|
|
447
506
|
value: string;
|
|
@@ -458,11 +517,24 @@ declare class InputColorComponent implements ControlValueAccessor, Validator {
|
|
|
458
517
|
setDisabledState(isDisabled: boolean): void;
|
|
459
518
|
onPickerChange(value: string): void;
|
|
460
519
|
onHexInput(value: string): void;
|
|
520
|
+
handleValueChange(value: string): void;
|
|
461
521
|
markTouched(): void;
|
|
462
522
|
private normalizeHexInput;
|
|
463
523
|
private isColorValue;
|
|
464
524
|
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; }; "
|
|
525
|
+
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>;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
declare class InputColorControlComponent {
|
|
529
|
+
id?: string;
|
|
530
|
+
name?: string;
|
|
531
|
+
disabled: boolean;
|
|
532
|
+
value: string;
|
|
533
|
+
pickerValue: string;
|
|
534
|
+
valueChange: EventEmitter<string>;
|
|
535
|
+
touched: EventEmitter<void>;
|
|
536
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputColorControlComponent, never>;
|
|
537
|
+
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
538
|
}
|
|
467
539
|
|
|
468
540
|
type UiInputElement$6 = 'input' | 'textarea';
|
|
@@ -472,7 +544,7 @@ interface CalendarDay$1 {
|
|
|
472
544
|
currentMonth: boolean;
|
|
473
545
|
}
|
|
474
546
|
type CalendarView$1 = 'days' | 'months' | 'years';
|
|
475
|
-
declare class
|
|
547
|
+
declare class InputDateControlComponent implements ControlValueAccessor, Validator {
|
|
476
548
|
private readonly cdr;
|
|
477
549
|
private readonly popupService;
|
|
478
550
|
private readonly closeActivePopup;
|
|
@@ -488,7 +560,6 @@ declare class InputDateComponent implements ControlValueAccessor, Validator {
|
|
|
488
560
|
readonly nextMonthIcon: lucide_angular.LucideIconData;
|
|
489
561
|
rows: number;
|
|
490
562
|
required: boolean;
|
|
491
|
-
fullWidth: boolean;
|
|
492
563
|
autocomplete: string;
|
|
493
564
|
pattern?: string;
|
|
494
565
|
error?: string;
|
|
@@ -541,8 +612,36 @@ declare class InputDateComponent implements ControlValueAccessor, Validator {
|
|
|
541
612
|
private parseDate;
|
|
542
613
|
private parseInputDate;
|
|
543
614
|
private toDateValue;
|
|
615
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputDateControlComponent, never>;
|
|
616
|
+
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>;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
declare class InputDateComponent implements ControlValueAccessor, Validator, AfterViewInit {
|
|
620
|
+
private control?;
|
|
621
|
+
label?: string;
|
|
622
|
+
hint?: string;
|
|
623
|
+
error?: string;
|
|
624
|
+
placeholder?: string;
|
|
625
|
+
name?: string;
|
|
626
|
+
id?: string;
|
|
627
|
+
required: boolean;
|
|
628
|
+
disabled: boolean;
|
|
629
|
+
autocomplete: string;
|
|
630
|
+
pattern?: string;
|
|
631
|
+
rows: number;
|
|
632
|
+
actions: UiDynamicFormFieldAction[];
|
|
633
|
+
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
634
|
+
private pendingValue;
|
|
635
|
+
private onChange;
|
|
636
|
+
private onTouched;
|
|
637
|
+
ngAfterViewInit(): void;
|
|
638
|
+
writeValue(value: string | number | null): void;
|
|
639
|
+
registerOnChange(fn: (value: string | number | null) => void): void;
|
|
640
|
+
registerOnTouched(fn: () => void): void;
|
|
641
|
+
setDisabledState(value: boolean): void;
|
|
642
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
544
643
|
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; }; "
|
|
644
|
+
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
645
|
}
|
|
547
646
|
|
|
548
647
|
interface CalendarDay {
|
|
@@ -551,7 +650,7 @@ interface CalendarDay {
|
|
|
551
650
|
currentMonth: boolean;
|
|
552
651
|
}
|
|
553
652
|
type CalendarView = 'days' | 'months' | 'years';
|
|
554
|
-
declare class
|
|
653
|
+
declare class InputDatetimeControlComponent implements ControlValueAccessor, Validator {
|
|
555
654
|
private readonly cdr;
|
|
556
655
|
private readonly popupService;
|
|
557
656
|
private readonly closeActivePopup;
|
|
@@ -562,7 +661,6 @@ declare class InputDatetimeComponent implements ControlValueAccessor, Validator
|
|
|
562
661
|
id?: string;
|
|
563
662
|
rows: number;
|
|
564
663
|
required: boolean;
|
|
565
|
-
fullWidth: boolean;
|
|
566
664
|
autocomplete: string;
|
|
567
665
|
pattern?: string;
|
|
568
666
|
error?: string;
|
|
@@ -621,8 +719,36 @@ declare class InputDatetimeComponent implements ControlValueAccessor, Validator
|
|
|
621
719
|
private startOfMonth;
|
|
622
720
|
private parseDate;
|
|
623
721
|
private toDateValue;
|
|
722
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputDatetimeControlComponent, never>;
|
|
723
|
+
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>;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
declare class InputDatetimeComponent implements ControlValueAccessor, Validator, AfterViewInit {
|
|
727
|
+
private control?;
|
|
728
|
+
label?: string;
|
|
729
|
+
hint?: string;
|
|
730
|
+
error?: string;
|
|
731
|
+
placeholder?: string;
|
|
732
|
+
name?: string;
|
|
733
|
+
id?: string;
|
|
734
|
+
required: boolean;
|
|
735
|
+
disabled: boolean;
|
|
736
|
+
autocomplete: string;
|
|
737
|
+
pattern?: string;
|
|
738
|
+
rows: number;
|
|
739
|
+
actions: UiDynamicFormFieldAction[];
|
|
740
|
+
actionTriggered: EventEmitter<UiDynamicFormFieldAction>;
|
|
741
|
+
private pendingValue;
|
|
742
|
+
private onChange;
|
|
743
|
+
private onTouched;
|
|
744
|
+
ngAfterViewInit(): void;
|
|
745
|
+
writeValue(value: string | number | null): void;
|
|
746
|
+
registerOnChange(fn: (value: string | number | null) => void): void;
|
|
747
|
+
registerOnTouched(fn: () => void): void;
|
|
748
|
+
setDisabledState(value: boolean): void;
|
|
749
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
624
750
|
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; }; "
|
|
751
|
+
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
752
|
}
|
|
627
753
|
|
|
628
754
|
type UiInputElement$5 = 'input' | 'textarea';
|
|
@@ -637,7 +763,6 @@ declare class InputEmailComponent implements ControlValueAccessor, Validator {
|
|
|
637
763
|
readonly element: UiInputElement$5;
|
|
638
764
|
rows: number;
|
|
639
765
|
required: boolean;
|
|
640
|
-
fullWidth: boolean;
|
|
641
766
|
autocomplete?: string;
|
|
642
767
|
pattern?: string;
|
|
643
768
|
error?: string;
|
|
@@ -658,18 +783,33 @@ declare class InputEmailComponent implements ControlValueAccessor, Validator {
|
|
|
658
783
|
onValueChange(value: string): void;
|
|
659
784
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
660
785
|
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; }; "
|
|
786
|
+
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>;
|
|
787
|
+
}
|
|
788
|
+
|
|
789
|
+
declare class InputEmailControlComponent {
|
|
790
|
+
placeholder?: string;
|
|
791
|
+
name?: string;
|
|
792
|
+
id?: string;
|
|
793
|
+
autocomplete?: string;
|
|
794
|
+
pattern?: string;
|
|
795
|
+
disabled: boolean;
|
|
796
|
+
value: string | number | null;
|
|
797
|
+
valueChange: EventEmitter<string>;
|
|
798
|
+
touched: EventEmitter<void>;
|
|
799
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputEmailControlComponent, never>;
|
|
800
|
+
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
801
|
}
|
|
663
802
|
|
|
664
803
|
declare class InputFileComponent implements ControlValueAccessor {
|
|
665
804
|
label?: string;
|
|
666
805
|
hint?: string;
|
|
806
|
+
error?: string;
|
|
807
|
+
required: boolean;
|
|
667
808
|
accept?: string;
|
|
668
809
|
multiple: boolean;
|
|
669
810
|
disabled: boolean;
|
|
670
|
-
value: File | File[] | null;
|
|
671
|
-
valueChange: EventEmitter<File | File[] | null>;
|
|
672
811
|
filesChange: EventEmitter<File[]>;
|
|
812
|
+
value: File | File[] | null;
|
|
673
813
|
private onChange;
|
|
674
814
|
onTouched: () => void;
|
|
675
815
|
writeValue(value: File | File[] | null): void;
|
|
@@ -678,9 +818,23 @@ declare class InputFileComponent implements ControlValueAccessor {
|
|
|
678
818
|
setDisabledState(isDisabled: boolean): void;
|
|
679
819
|
get selectedFiles(): File[];
|
|
680
820
|
onFilesSelected(event: Event): void;
|
|
821
|
+
handleFilesSelected(files: File[]): void;
|
|
681
822
|
remove(index: number): void;
|
|
682
823
|
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; }; "
|
|
824
|
+
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>;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
declare class InputFileControlComponent {
|
|
828
|
+
accept?: string;
|
|
829
|
+
multiple: boolean;
|
|
830
|
+
disabled: boolean;
|
|
831
|
+
selectedFiles: File[];
|
|
832
|
+
filesSelected: EventEmitter<File[]>;
|
|
833
|
+
removeFile: EventEmitter<number>;
|
|
834
|
+
touched: EventEmitter<void>;
|
|
835
|
+
onFilesSelected(event: Event): void;
|
|
836
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputFileControlComponent, never>;
|
|
837
|
+
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
838
|
}
|
|
685
839
|
|
|
686
840
|
type UiInputElement$4 = 'input' | 'textarea';
|
|
@@ -695,7 +849,6 @@ declare class InputComponent implements ControlValueAccessor {
|
|
|
695
849
|
element: UiInputElement$4;
|
|
696
850
|
rows: number;
|
|
697
851
|
required: boolean;
|
|
698
|
-
fullWidth: boolean;
|
|
699
852
|
autocomplete?: string;
|
|
700
853
|
pattern?: string;
|
|
701
854
|
error?: string;
|
|
@@ -715,7 +868,24 @@ declare class InputComponent implements ControlValueAccessor {
|
|
|
715
868
|
onValueChange(value: string): void;
|
|
716
869
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
717
870
|
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; }; "
|
|
871
|
+
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>;
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
declare class InputBaseControlComponent {
|
|
875
|
+
placeholder?: string;
|
|
876
|
+
name?: string;
|
|
877
|
+
id?: string;
|
|
878
|
+
type: string;
|
|
879
|
+
element: 'input' | 'textarea';
|
|
880
|
+
rows: number;
|
|
881
|
+
autocomplete?: string;
|
|
882
|
+
pattern?: string;
|
|
883
|
+
disabled: boolean;
|
|
884
|
+
value: string | number | null;
|
|
885
|
+
valueChange: EventEmitter<string>;
|
|
886
|
+
touched: EventEmitter<void>;
|
|
887
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputBaseControlComponent, never>;
|
|
888
|
+
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
889
|
}
|
|
720
890
|
|
|
721
891
|
type UiInputElement$3 = 'input' | 'textarea';
|
|
@@ -730,7 +900,6 @@ declare class InputNumberComponent implements ControlValueAccessor, Validator {
|
|
|
730
900
|
readonly element: UiInputElement$3;
|
|
731
901
|
rows: number;
|
|
732
902
|
required: boolean;
|
|
733
|
-
fullWidth: boolean;
|
|
734
903
|
autocomplete?: string;
|
|
735
904
|
disabled: boolean;
|
|
736
905
|
pattern?: string;
|
|
@@ -752,7 +921,19 @@ declare class InputNumberComponent implements ControlValueAccessor, Validator {
|
|
|
752
921
|
preventWheelChange(event: WheelEvent): void;
|
|
753
922
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
754
923
|
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; }; "
|
|
924
|
+
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>;
|
|
925
|
+
}
|
|
926
|
+
|
|
927
|
+
declare class InputNumberControlComponent {
|
|
928
|
+
placeholder?: string;
|
|
929
|
+
name?: string;
|
|
930
|
+
id?: string;
|
|
931
|
+
disabled: boolean;
|
|
932
|
+
value: string | number | null;
|
|
933
|
+
valueChange: EventEmitter<string>;
|
|
934
|
+
touched: EventEmitter<void>;
|
|
935
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputNumberControlComponent, never>;
|
|
936
|
+
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
937
|
}
|
|
757
938
|
|
|
758
939
|
type UiInputElement$2 = 'input' | 'textarea';
|
|
@@ -769,7 +950,6 @@ declare class InputPasswordComponent implements ControlValueAccessor, Validator
|
|
|
769
950
|
readonly element: UiInputElement$2;
|
|
770
951
|
rows: number;
|
|
771
952
|
required: boolean;
|
|
772
|
-
fullWidth: boolean;
|
|
773
953
|
autocomplete?: string;
|
|
774
954
|
pattern?: string;
|
|
775
955
|
error?: string;
|
|
@@ -792,7 +972,24 @@ declare class InputPasswordComponent implements ControlValueAccessor, Validator
|
|
|
792
972
|
togglePassword(event: Event): void;
|
|
793
973
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
794
974
|
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; }; "
|
|
975
|
+
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>;
|
|
976
|
+
}
|
|
977
|
+
|
|
978
|
+
declare class InputPasswordControlComponent {
|
|
979
|
+
readonly showIcon: lucide_angular.LucideIconData;
|
|
980
|
+
readonly hideIcon: lucide_angular.LucideIconData;
|
|
981
|
+
placeholder?: string;
|
|
982
|
+
name?: string;
|
|
983
|
+
id?: string;
|
|
984
|
+
autocomplete?: string;
|
|
985
|
+
pattern?: string;
|
|
986
|
+
disabled: boolean;
|
|
987
|
+
value: string | number | null;
|
|
988
|
+
valueChange: EventEmitter<string>;
|
|
989
|
+
touched: EventEmitter<void>;
|
|
990
|
+
visible: boolean;
|
|
991
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPasswordControlComponent, never>;
|
|
992
|
+
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
993
|
}
|
|
797
994
|
|
|
798
995
|
interface UiPhotoPreview {
|
|
@@ -805,14 +1002,15 @@ declare class InputPhotoComponent implements OnChanges, OnDestroy, ControlValueA
|
|
|
805
1002
|
private readonly http;
|
|
806
1003
|
label?: string;
|
|
807
1004
|
hint?: string;
|
|
1005
|
+
error?: string;
|
|
1006
|
+
required: boolean;
|
|
808
1007
|
accept: string;
|
|
809
1008
|
multiple: boolean;
|
|
810
1009
|
limit: number;
|
|
811
1010
|
disabled: boolean;
|
|
812
|
-
value: string | string[] | null;
|
|
813
|
-
valueChange: EventEmitter<string | string[] | null>;
|
|
814
1011
|
filesChange: EventEmitter<File[]>;
|
|
815
1012
|
uploadingChange: EventEmitter<boolean>;
|
|
1013
|
+
value: string | string[] | null;
|
|
816
1014
|
pendingFiles: File[];
|
|
817
1015
|
previews: UiPhotoPreview[];
|
|
818
1016
|
uploading: boolean;
|
|
@@ -827,6 +1025,7 @@ declare class InputPhotoComponent implements OnChanges, OnDestroy, ControlValueA
|
|
|
827
1025
|
ngOnDestroy(): void;
|
|
828
1026
|
get canSelectMore(): boolean;
|
|
829
1027
|
onFilesSelected(event: Event): void;
|
|
1028
|
+
handleFilesSelected(files: File[]): void;
|
|
830
1029
|
remove(index: number): void;
|
|
831
1030
|
drop(event: CdkDragDrop<UiPhotoPreview[]>): void;
|
|
832
1031
|
private get ids();
|
|
@@ -839,7 +1038,22 @@ declare class InputPhotoComponent implements OnChanges, OnDestroy, ControlValueA
|
|
|
839
1038
|
private resolveImageUrl;
|
|
840
1039
|
private isPreviewableType;
|
|
841
1040
|
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; }; "
|
|
1041
|
+
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>;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
declare class InputPhotoControlComponent {
|
|
1045
|
+
accept: string;
|
|
1046
|
+
multiple: boolean;
|
|
1047
|
+
disabled: boolean;
|
|
1048
|
+
canSelectMore: boolean;
|
|
1049
|
+
previews: UiPhotoPreview[];
|
|
1050
|
+
filesSelected: EventEmitter<File[]>;
|
|
1051
|
+
removed: EventEmitter<number>;
|
|
1052
|
+
dropped: EventEmitter<CdkDragDrop<UiPhotoPreview[], UiPhotoPreview[], any>>;
|
|
1053
|
+
touched: EventEmitter<void>;
|
|
1054
|
+
selectFiles(event: Event): void;
|
|
1055
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputPhotoControlComponent, never>;
|
|
1056
|
+
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
1057
|
}
|
|
844
1058
|
|
|
845
1059
|
interface UiPhotoGalleryEntry {
|
|
@@ -852,6 +1066,9 @@ interface UiPhotoGalleryEntry {
|
|
|
852
1066
|
declare class InputPhotoGalleryComponent implements OnInit, OnChanges, OnDestroy {
|
|
853
1067
|
private readonly http;
|
|
854
1068
|
label: string;
|
|
1069
|
+
hint?: string;
|
|
1070
|
+
error?: string;
|
|
1071
|
+
required: boolean;
|
|
855
1072
|
orderLabel: string;
|
|
856
1073
|
imageIds: string[];
|
|
857
1074
|
disabled: boolean;
|
|
@@ -875,10 +1092,14 @@ declare class InputPhotoGalleryComponent implements OnInit, OnChanges, OnDestroy
|
|
|
875
1092
|
private uploadPendingImages;
|
|
876
1093
|
private uploadFile;
|
|
877
1094
|
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>;
|
|
1095
|
+
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
1096
|
}
|
|
880
1097
|
|
|
881
1098
|
declare class InputRangeSliderComponent implements OnChanges, AfterViewInit {
|
|
1099
|
+
label?: string;
|
|
1100
|
+
hint?: string;
|
|
1101
|
+
error?: string;
|
|
1102
|
+
required: boolean;
|
|
882
1103
|
min: number;
|
|
883
1104
|
max: number;
|
|
884
1105
|
step: number;
|
|
@@ -908,7 +1129,41 @@ declare class InputRangeSliderComponent implements OnChanges, AfterViewInit {
|
|
|
908
1129
|
private syncNativeInputs;
|
|
909
1130
|
private syncNativeInput;
|
|
910
1131
|
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>;
|
|
1132
|
+
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>;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
declare class InputSelectComponent implements ControlValueAccessor, Validator, AfterViewInit {
|
|
1136
|
+
private control?;
|
|
1137
|
+
label?: string;
|
|
1138
|
+
hint?: string;
|
|
1139
|
+
error?: string;
|
|
1140
|
+
placeholder?: string;
|
|
1141
|
+
name?: string;
|
|
1142
|
+
data?: string;
|
|
1143
|
+
required: boolean;
|
|
1144
|
+
disabled: boolean;
|
|
1145
|
+
multiple: boolean;
|
|
1146
|
+
includeBlankOption: boolean;
|
|
1147
|
+
blankOptionLabel: string;
|
|
1148
|
+
emptyStateLabel: string;
|
|
1149
|
+
searchable: boolean;
|
|
1150
|
+
options: UiSelectOption[];
|
|
1151
|
+
triggerClass: string;
|
|
1152
|
+
panelClass: string;
|
|
1153
|
+
valueChange: EventEmitter<UiSelectValue>;
|
|
1154
|
+
searchChange: EventEmitter<string>;
|
|
1155
|
+
private pendingValue;
|
|
1156
|
+
private onChange;
|
|
1157
|
+
private onTouched;
|
|
1158
|
+
ngAfterViewInit(): void;
|
|
1159
|
+
writeValue(value: UiSelectValue): void;
|
|
1160
|
+
registerOnChange(fn: (value: UiSelectValue) => void): void;
|
|
1161
|
+
registerOnTouched(fn: () => void): void;
|
|
1162
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1163
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1164
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSelectComponent, never>;
|
|
1165
|
+
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; }; "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>;
|
|
1166
|
+
static ngAcceptInputType_multiple: unknown;
|
|
912
1167
|
}
|
|
913
1168
|
|
|
914
1169
|
declare class InputSlugComponent implements ControlValueAccessor, Validator {
|
|
@@ -918,7 +1173,6 @@ declare class InputSlugComponent implements ControlValueAccessor, Validator {
|
|
|
918
1173
|
name?: string;
|
|
919
1174
|
id?: string;
|
|
920
1175
|
required: boolean;
|
|
921
|
-
fullWidth: boolean;
|
|
922
1176
|
autocomplete: string;
|
|
923
1177
|
error?: string;
|
|
924
1178
|
invalidInput: EventEmitter<void>;
|
|
@@ -935,9 +1189,23 @@ declare class InputSlugComponent implements ControlValueAccessor, Validator {
|
|
|
935
1189
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
936
1190
|
setDisabledState(isDisabled: boolean): void;
|
|
937
1191
|
onValueChange(target: HTMLInputElement): void;
|
|
1192
|
+
handleValueChange(value: string): void;
|
|
938
1193
|
private normalizeSlug;
|
|
939
1194
|
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; }; "
|
|
1195
|
+
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>;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
declare class InputSlugControlComponent {
|
|
1199
|
+
placeholder?: string;
|
|
1200
|
+
name?: string;
|
|
1201
|
+
id?: string;
|
|
1202
|
+
autocomplete: string;
|
|
1203
|
+
disabled: boolean;
|
|
1204
|
+
value: string;
|
|
1205
|
+
valueChange: EventEmitter<string>;
|
|
1206
|
+
touched: EventEmitter<void>;
|
|
1207
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputSlugControlComponent, never>;
|
|
1208
|
+
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
1209
|
}
|
|
942
1210
|
|
|
943
1211
|
type UiInputElement$1 = 'input' | 'textarea';
|
|
@@ -952,7 +1220,6 @@ declare class InputTextComponent implements ControlValueAccessor, Validator {
|
|
|
952
1220
|
readonly element: UiInputElement$1;
|
|
953
1221
|
rows: number;
|
|
954
1222
|
required: boolean;
|
|
955
|
-
fullWidth: boolean;
|
|
956
1223
|
autocomplete?: string;
|
|
957
1224
|
pattern?: string;
|
|
958
1225
|
error?: string;
|
|
@@ -973,7 +1240,24 @@ declare class InputTextComponent implements ControlValueAccessor, Validator {
|
|
|
973
1240
|
onValueChange(value: string): void;
|
|
974
1241
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
975
1242
|
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; }; "
|
|
1243
|
+
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>;
|
|
1244
|
+
}
|
|
1245
|
+
|
|
1246
|
+
declare class InputTextControlComponent {
|
|
1247
|
+
placeholder?: string;
|
|
1248
|
+
name?: string;
|
|
1249
|
+
id?: string;
|
|
1250
|
+
type: string;
|
|
1251
|
+
element: 'input' | 'textarea';
|
|
1252
|
+
rows: number;
|
|
1253
|
+
autocomplete?: string;
|
|
1254
|
+
pattern?: string;
|
|
1255
|
+
disabled: boolean;
|
|
1256
|
+
value: string | number | null;
|
|
1257
|
+
valueChange: EventEmitter<string>;
|
|
1258
|
+
touched: EventEmitter<void>;
|
|
1259
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextControlComponent, never>;
|
|
1260
|
+
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"; }, never, never, true, never>;
|
|
977
1261
|
}
|
|
978
1262
|
|
|
979
1263
|
type UiInputElement = 'input' | 'textarea';
|
|
@@ -988,7 +1272,6 @@ declare class InputTextareaComponent implements ControlValueAccessor, Validator
|
|
|
988
1272
|
readonly element: UiInputElement;
|
|
989
1273
|
rows: number;
|
|
990
1274
|
required: boolean;
|
|
991
|
-
fullWidth: boolean;
|
|
992
1275
|
autocomplete?: string;
|
|
993
1276
|
pattern?: string;
|
|
994
1277
|
error?: string;
|
|
@@ -1009,8 +1292,21 @@ declare class InputTextareaComponent implements ControlValueAccessor, Validator
|
|
|
1009
1292
|
onValueChange(value: string): void;
|
|
1010
1293
|
triggerAction(action: UiDynamicFormFieldAction): void;
|
|
1011
1294
|
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; }; "
|
|
1295
|
+
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>;
|
|
1296
|
+
}
|
|
1297
|
+
|
|
1298
|
+
declare class InputTextareaControlComponent {
|
|
1299
|
+
placeholder?: string;
|
|
1300
|
+
name?: string;
|
|
1301
|
+
id?: string;
|
|
1302
|
+
rows: number;
|
|
1303
|
+
disabled: boolean;
|
|
1304
|
+
value: string | number | null;
|
|
1305
|
+
valueChange: EventEmitter<string>;
|
|
1306
|
+
touched: EventEmitter<void>;
|
|
1307
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InputTextareaControlComponent, never>;
|
|
1308
|
+
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
1309
|
}
|
|
1014
1310
|
|
|
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,
|
|
1311
|
+
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 };
|
|
1312
|
+
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 };
|