@seniorsistemas/angular-components 18.1.0-feature-sds-276-69157a05 → 18.1.0-feature-sds-276-e3f599ca

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.
Files changed (91) hide show
  1. package/dynamic-form/dynamic-form/components/grid/row/row.component.d.ts +1 -1
  2. package/dynamic-form/dynamic-form/components/lookup/lookup.component.d.ts +5 -5
  3. package/dynamic-form/dynamic-form/components/structure/fieldset/fieldset.component.d.ts +1 -1
  4. package/dynamic-form/dynamic-form/components/structure/section/section.component.d.ts +1 -1
  5. package/dynamic-form/dynamic-form/dynamic-form.component.d.ts +12 -1
  6. package/dynamic-form/dynamic-form/dynamic-form.d.ts +3 -7
  7. package/dynamic-form/dynamic-form/dynamic-form.directive.d.ts +1 -1
  8. package/dynamic-form/dynamic-form/dynamic-form.module.d.ts +6 -74
  9. package/dynamic-form/dynamic-form/form-field/configurations/fields/bignumber-field.d.ts +4 -4
  10. package/dynamic-form/dynamic-form/form-field/configurations/fields/currency-field.d.ts +2 -2
  11. package/dynamic-form/dynamic-form/form-field/configurations/fields/number-field.d.ts +2 -2
  12. package/dynamic-form/dynamic-form/form-field/configurations/fields/select-field.d.ts +2 -2
  13. package/dynamic-form/dynamic-form/form-field/configurations/fields/text-field.d.ts +2 -2
  14. package/dynamic-form/dynamic-form/form-field/fields/autocomplete/autocomplete-field.component.d.ts +1 -1
  15. package/dynamic-form/dynamic-form/form-field/fields/bignumber/bignumber-field.component.d.ts +3 -2
  16. package/dynamic-form/dynamic-form/form-field/fields/boolean/boolean-radio-field/boolean-field.component.d.ts +1 -1
  17. package/dynamic-form/dynamic-form/form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component.d.ts +1 -1
  18. package/dynamic-form/dynamic-form/form-field/fields/button-field/button-field.component.d.ts +1 -1
  19. package/dynamic-form/dynamic-form/form-field/fields/calendar/calendar-field.component.d.ts +1 -1
  20. package/dynamic-form/dynamic-form/form-field/fields/checkbox/checkbox-field.component.d.ts +1 -1
  21. package/dynamic-form/dynamic-form/form-field/fields/chips/chips-field.component.d.ts +1 -1
  22. package/dynamic-form/dynamic-form/form-field/fields/country-phone-picker/country-phone-picker-field.component.d.ts +1 -1
  23. package/dynamic-form/dynamic-form/form-field/fields/currency/currency-field.component.d.ts +1 -1
  24. package/dynamic-form/dynamic-form/form-field/fields/file-upload/file-upload-field.component.d.ts +1 -1
  25. package/dynamic-form/dynamic-form/form-field/fields/lookup/lookup-field.component.d.ts +1 -1
  26. package/dynamic-form/dynamic-form/form-field/fields/number/number-field.component.d.ts +1 -1
  27. package/dynamic-form/dynamic-form/form-field/fields/password/password-field.component.d.ts +1 -1
  28. package/dynamic-form/dynamic-form/form-field/fields/profile-picture/profile-picture-field.component.d.ts +1 -1
  29. package/dynamic-form/dynamic-form/form-field/fields/radio-button/radio-button-field.component.d.ts +1 -1
  30. package/dynamic-form/dynamic-form/form-field/fields/select/select-field.component.d.ts +1 -1
  31. package/dynamic-form/dynamic-form/form-field/fields/slider/slider-field.component.d.ts +1 -1
  32. package/dynamic-form/dynamic-form/form-field/fields/star-rating/star-rating-field.component.d.ts +1 -1
  33. package/dynamic-form/dynamic-form/form-field/fields/text/text-field.component.d.ts +1 -1
  34. package/dynamic-form/dynamic-form/form-field/fields/text-area/text-area-field.component.d.ts +1 -1
  35. package/dynamic-form/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.d.ts +1 -1
  36. package/dynamic-form/public-api.d.ts +3 -3
  37. package/esm2022/control-errors/lib/control-errors/control-errors.component.mjs +3 -3
  38. package/esm2022/custom-fields/lib/custom-fields/custom-fields.component.mjs +5 -5
  39. package/esm2022/custom-fields/lib/custom-fields/models/custom-field-type.mjs +3 -3
  40. package/esm2022/dynamic-form/dynamic-form/components/grid/row/row.component.mjs +11 -9
  41. package/esm2022/dynamic-form/dynamic-form/components/lookup/lookup.component.mjs +66 -39
  42. package/esm2022/dynamic-form/dynamic-form/components/structure/fieldset/fieldset.component.mjs +5 -4
  43. package/esm2022/dynamic-form/dynamic-form/components/structure/section/section.component.mjs +4 -4
  44. package/esm2022/dynamic-form/dynamic-form/dynamic-form.component.mjs +15 -4
  45. package/esm2022/dynamic-form/dynamic-form/dynamic-form.directive.mjs +6 -5
  46. package/esm2022/dynamic-form/dynamic-form/dynamic-form.mjs +4 -8
  47. package/esm2022/dynamic-form/dynamic-form/dynamic-form.module.mjs +6 -268
  48. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/autocomplete-field.mjs +1 -1
  49. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/bignumber-field.mjs +1 -1
  50. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/currency-field.mjs +1 -1
  51. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/field.mjs +1 -1
  52. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/lookup-field.mjs +1 -1
  53. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/number-field.mjs +1 -1
  54. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/select-field.mjs +1 -1
  55. package/esm2022/dynamic-form/dynamic-form/form-field/configurations/fields/text-field.mjs +1 -1
  56. package/esm2022/dynamic-form/dynamic-form/form-field/fields/autocomplete/autocomplete-field.component.mjs +7 -6
  57. package/esm2022/dynamic-form/dynamic-form/form-field/fields/bignumber/bignumber-field.component.mjs +32 -17
  58. package/esm2022/dynamic-form/dynamic-form/form-field/fields/boolean/boolean-radio-field/boolean-field.component.mjs +9 -8
  59. package/esm2022/dynamic-form/dynamic-form/form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component.mjs +10 -7
  60. package/esm2022/dynamic-form/dynamic-form/form-field/fields/button-field/button-field.component.mjs +4 -4
  61. package/esm2022/dynamic-form/dynamic-form/form-field/fields/calendar/calendar-field.component.mjs +10 -8
  62. package/esm2022/dynamic-form/dynamic-form/form-field/fields/checkbox/checkbox-field.component.mjs +5 -3
  63. package/esm2022/dynamic-form/dynamic-form/form-field/fields/chips/chips-field.component.mjs +11 -9
  64. package/esm2022/dynamic-form/dynamic-form/form-field/fields/country-phone-picker/country-phone-picker-field.component.mjs +6 -4
  65. package/esm2022/dynamic-form/dynamic-form/form-field/fields/currency/currency-field.component.mjs +11 -10
  66. package/esm2022/dynamic-form/dynamic-form/form-field/fields/file-upload/file-upload-field.component.mjs +6 -6
  67. package/esm2022/dynamic-form/dynamic-form/form-field/fields/lookup/lookup-field.component.mjs +7 -6
  68. package/esm2022/dynamic-form/dynamic-form/form-field/fields/number/number-field.component.mjs +27 -12
  69. package/esm2022/dynamic-form/dynamic-form/form-field/fields/password/password-field.component.mjs +22 -10
  70. package/esm2022/dynamic-form/dynamic-form/form-field/fields/profile-picture/profile-picture-field.component.mjs +8 -6
  71. package/esm2022/dynamic-form/dynamic-form/form-field/fields/radio-button/radio-button-field.component.mjs +17 -9
  72. package/esm2022/dynamic-form/dynamic-form/form-field/fields/select/select-field.component.mjs +7 -6
  73. package/esm2022/dynamic-form/dynamic-form/form-field/fields/slider/slider-field.component.mjs +8 -6
  74. package/esm2022/dynamic-form/dynamic-form/form-field/fields/star-rating/star-rating-field.component.mjs +6 -5
  75. package/esm2022/dynamic-form/dynamic-form/form-field/fields/text/text-field.component.mjs +25 -11
  76. package/esm2022/dynamic-form/dynamic-form/form-field/fields/text-area/text-area-field.component.mjs +8 -6
  77. package/esm2022/dynamic-form/dynamic-form/form-field/fields/text-area-ia/text-area-ia-field.component.mjs +8 -6
  78. package/esm2022/dynamic-form/public-api.mjs +14 -13
  79. package/esm2022/dynamic-form/src/optional-fields/editor/public-api.mjs +1 -18
  80. package/esm2022/inline-edit/lib/inline-edit/components/fields/inline-edit-lookup/inline-edit-lookup.component.mjs +3 -5
  81. package/fesm2022/seniorsistemas-angular-components-control-errors.mjs +2 -2
  82. package/fesm2022/seniorsistemas-angular-components-control-errors.mjs.map +1 -1
  83. package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs +6 -6
  84. package/fesm2022/seniorsistemas-angular-components-custom-fields.mjs.map +1 -1
  85. package/fesm2022/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs +0 -18
  86. package/fesm2022/seniorsistemas-angular-components-dynamic-form-src-optional-fields-editor.mjs.map +1 -1
  87. package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs +1877 -2000
  88. package/fesm2022/seniorsistemas-angular-components-dynamic-form.mjs.map +1 -1
  89. package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs +7 -8
  90. package/fesm2022/seniorsistemas-angular-components-inline-edit.mjs.map +1 -1
  91. package/package.json +13 -13
@@ -18,5 +18,5 @@ export declare class RowComponent implements BaseStructureComponentConfig {
18
18
  size?: FieldSizeConfig;
19
19
  }): string[];
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<RowComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<RowComponent, "s-row", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "group": { "alias": "group"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<RowComponent, "s-row", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "group": { "alias": "group"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
22
22
  }
@@ -9,12 +9,12 @@ import { Table } from 'primeng/table';
9
9
  import { DefaultFilter } from './types/default-filter';
10
10
  import { LabelOptions } from './types/label-options';
11
11
  import { LoadingStateIndicators } from '@seniorsistemas/angular-components/loading-state';
12
- import { CurrencyFieldConfig } from '../../form-field/configurations/fields/currency-field';
13
- import { DynamicType } from '../../form-field/configurations/fields/field';
14
12
  import { SelectFieldConfig } from '../../form-field/configurations/fields/select-field';
15
13
  import { BignumberFieldConfig } from '../../form-field/configurations/fields/bignumber-field';
16
14
  import { NumberFieldConfig } from '../../form-field/configurations/fields/number-field';
15
+ import { CurrencyFieldConfig } from '../../form-field/configurations/fields/currency-field';
17
16
  import { TextFieldConfig } from '../../form-field/configurations/fields/text-field';
17
+ import { DynamicType } from '../../form-field/configurations/fields/field';
18
18
  import { DynamicStructure } from '../../configurations/structure/structure';
19
19
  import * as i0 from "@angular/core";
20
20
  export declare class LookupComponent implements ControlValueAccessor, OnChanges, OnInit, OnDestroy {
@@ -106,7 +106,7 @@ export declare class LookupComponent implements ControlValueAccessor, OnChanges,
106
106
  writeValue(value: any): void;
107
107
  setDisabledState(disabled: boolean): void;
108
108
  getFieldValue(obj: any, path: string): any;
109
- getBadgeFromValue(value: unknown, field: SelectFieldConfig): Partial<Pick<import("dist/badge/public-api").BadgeComponent, "type" | "iconClass" | "color" | "iconPosition">> | undefined;
109
+ getBadgeFromValue(value: unknown, field: SelectFieldConfig): Partial<Pick<import("@seniorsistemas/angular-components/badge").BadgeComponent, "type" | "iconClass" | "color" | "iconPosition">> | undefined;
110
110
  getLabelForValue(value: unknown, field: SelectFieldConfig): string;
111
111
  isBooleanValue(obj: any, path: string): boolean;
112
112
  getFieldWidth(col: any): any;
@@ -123,9 +123,9 @@ export declare class LookupComponent implements ControlValueAccessor, OnChanges,
123
123
  getColWidth(label: string): string;
124
124
  getScale(scale: any): number;
125
125
  private isFunction;
126
- getIntegerMaskConfig(col: BignumberFieldConfig | NumberFieldConfig): MaskConfig;
127
126
  getDoubleMaskConfig(col: NumberFieldConfig | BignumberFieldConfig): MaskConfig;
128
127
  getMoneyMaskConfig(col: CurrencyFieldConfig): MaskConfig;
128
+ getIntegerMaskConfig(col: BignumberFieldConfig | NumberFieldConfig): MaskConfig;
129
129
  getNumberMaskConfig(col: NumberFieldConfig | BignumberFieldConfig): MaskConfig;
130
130
  parseValueMaskValue(col: DynamicType, rowData: any): any;
131
131
  fieldHasMask(field: DynamicType): field is NumberFieldConfig | BignumberFieldConfig | TextFieldConfig;
@@ -133,7 +133,7 @@ export declare class LookupComponent implements ControlValueAccessor, OnChanges,
133
133
  private _setFocusFilter;
134
134
  private _subscribeEvents;
135
135
  static ɵfac: i0.ɵɵFactoryDeclaration<LookupComponent, never>;
136
- static ɵcmp: i0.ɵɵComponentDeclaration<LookupComponent, "s-lookup", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "id": { "alias": "id"; "required": false; }; "autocompleteForceSelection": { "alias": "autocompleteForceSelection"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "lookupSuggestions": { "alias": "lookupSuggestions"; "required": false; }; "lookupDisplayField": { "alias": "lookupDisplayField"; "required": false; }; "lookupDisplayFieldTooltip": { "alias": "lookupDisplayFieldTooltip"; "required": false; }; "lookupEmptyMessage": { "alias": "lookupEmptyMessage"; "required": false; }; "lookupAppendTo": { "alias": "lookupAppendTo"; "required": false; }; "searchEmptyDescription": { "alias": "searchEmptyDescription"; "required": false; }; "searchGridData": { "alias": "searchGridData"; "required": false; }; "searchTotalRecords": { "alias": "searchTotalRecords"; "required": false; }; "searchFields": { "alias": "searchFields"; "required": false; }; "searchGridFields": { "alias": "searchGridFields"; "required": false; }; "multiSortMeta": { "alias": "multiSortMeta"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "sortableColumnsDisabled": { "alias": "sortableColumnsDisabled"; "required": false; }; "lookupRowProps": { "alias": "lookupRowProps"; "required": false; }; "defaultFilter": { "alias": "defaultFilter"; "required": false; }; "showAddOption": { "alias": "showAddOption"; "required": false; }; "showEditOption": { "alias": "showEditOption"; "required": false; }; "showRemoveOption": { "alias": "showRemoveOption"; "required": false; }; "dialogFullScreen": { "alias": "dialogFullScreen"; "required": false; "isSignal": true; }; "labelOptions": { "alias": "labelOptions"; "required": false; }; }, { "onLookupRequest": "onLookupRequest"; "onSearchRequest": "onSearchRequest"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onKeyUp": "onKeyUp"; "onSelect": "onSelect"; "onUnselect": "onUnselect"; "onClear": "onClear"; "onAdd": "onAdd"; "onEdit": "onEdit"; "onRemove": "onRemove"; "onClearButtonClick": "onClearButtonClick"; }, never, never, false, never>;
136
+ static ɵcmp: i0.ɵɵComponentDeclaration<LookupComponent, "s-lookup", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "id": { "alias": "id"; "required": false; }; "autocompleteForceSelection": { "alias": "autocompleteForceSelection"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "dataKey": { "alias": "dataKey"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "lookupSuggestions": { "alias": "lookupSuggestions"; "required": false; }; "lookupDisplayField": { "alias": "lookupDisplayField"; "required": false; }; "lookupDisplayFieldTooltip": { "alias": "lookupDisplayFieldTooltip"; "required": false; }; "lookupEmptyMessage": { "alias": "lookupEmptyMessage"; "required": false; }; "lookupAppendTo": { "alias": "lookupAppendTo"; "required": false; }; "searchEmptyDescription": { "alias": "searchEmptyDescription"; "required": false; }; "searchGridData": { "alias": "searchGridData"; "required": false; }; "searchTotalRecords": { "alias": "searchTotalRecords"; "required": false; }; "searchFields": { "alias": "searchFields"; "required": false; }; "searchGridFields": { "alias": "searchGridFields"; "required": false; }; "multiSortMeta": { "alias": "multiSortMeta"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "sortableColumnsDisabled": { "alias": "sortableColumnsDisabled"; "required": false; }; "lookupRowProps": { "alias": "lookupRowProps"; "required": false; }; "defaultFilter": { "alias": "defaultFilter"; "required": false; }; "showAddOption": { "alias": "showAddOption"; "required": false; }; "showEditOption": { "alias": "showEditOption"; "required": false; }; "showRemoveOption": { "alias": "showRemoveOption"; "required": false; }; "dialogFullScreen": { "alias": "dialogFullScreen"; "required": false; "isSignal": true; }; "labelOptions": { "alias": "labelOptions"; "required": false; }; }, { "onLookupRequest": "onLookupRequest"; "onSearchRequest": "onSearchRequest"; "onFocus": "onFocus"; "onBlur": "onBlur"; "onKeyUp": "onKeyUp"; "onSelect": "onSelect"; "onUnselect": "onUnselect"; "onClear": "onClear"; "onAdd": "onAdd"; "onEdit": "onEdit"; "onRemove": "onRemove"; "onClearButtonClick": "onClearButtonClick"; }, never, never, true, never>;
137
137
  static ngAcceptInputType_lookupAppendTo: string | undefined;
138
138
  }
139
139
  export interface BooleanOptionsLabelConfig {
@@ -8,5 +8,5 @@ export declare class FieldsetComponent implements BaseStructureComponentConfig {
8
8
  group: import("@angular/core").InputSignal<FormGroup<any>>;
9
9
  errorMessages: import("@angular/core").InputSignal<any>;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<FieldsetComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<FieldsetComponent, "ng-component", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "group": { "alias": "group"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<FieldsetComponent, "ng-component", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "group": { "alias": "group"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
12
12
  }
@@ -10,5 +10,5 @@ export declare class SectionComponent implements BaseStructureComponentConfig {
10
10
  get flexContainer(): boolean | undefined;
11
11
  get configs(): (import("@seniorsistemas/angular-components/dynamic-form").DynamicType | import("@seniorsistemas/angular-components/dynamic-form").DynamicStructure)[];
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<SectionComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "s-section", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "group": { "alias": "group"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<SectionComponent, "s-section", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "config": { "alias": "config"; "required": true; "isSignal": true; }; "group": { "alias": "group"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
14
14
  }
@@ -14,6 +14,17 @@ export declare class DynamicFormComponent {
14
14
  form: import("@angular/core").InputSignal<FormGroup<any>>;
15
15
  errorMessages: import("@angular/core").InputSignal<any>;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "s-dynamic-form", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "configs": { "alias": "configs"; "required": false; "isSignal": true; }; "fields": { "alias": "fields"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<DynamicFormComponent, "s-dynamic-form", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "configs": { "alias": "configs"; "required": false; "isSignal": true; }; "fields": { "alias": "fields"; "required": false; "isSignal": true; }; "form": { "alias": "form"; "required": true; "isSignal": true; }; "errorMessages": { "alias": "errorMessages"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
18
18
  }
19
+ /**
20
+ * Transforma uma lista plana de `DynamicType` em uma estrutura aninhada de campos.
21
+ * * Esta função encapsula os tipos dinâmicos dentro de um objeto de linha ('row'),
22
+ * permitindo que eles sejam consumidos por componentes que esperam a interface `DynamicStructure`.
23
+ *
24
+ * @param {DynamicType[]} dynamicTypes - Array de campos dinâmicos a serem processados.
25
+ * @returns {DynamicStructure} Retorna um array contendo um objeto de estrutura com a propriedade 'fields'.
26
+ * * @example
27
+ * const structure = formatToDynamicStructure(meusCampos);
28
+ * // Retorno esperado: [{ type: 'row', fields: [...] }]
29
+ */
19
30
  export declare const dynamicTypeToDynamicStructure: (dynamicTypes: DynamicType[]) => DynamicStructure[];
@@ -6,21 +6,18 @@ import { DynamicStructure as FieldDynamicStructure } from './configurations/stru
6
6
  import { BaseFieldComponentConfig } from './form-field/fields/base-field-component';
7
7
  export declare abstract class DynamicForm {
8
8
  group: FormGroup;
9
- errorMessages: any;
10
9
  abstract createComponent(viewContainerRef: ViewContainerRef): any;
11
10
  abstract updateVariables(component: ComponentRef<any>): void;
12
11
  abstract getComponent(): any;
13
- constructor({ group, errorMessages }: {
12
+ constructor({ group }: {
14
13
  group: FormGroup;
15
- errorMessages: any;
16
14
  });
17
15
  }
18
16
  export declare class DynamicField extends DynamicForm {
19
17
  field: DynamicType;
20
- constructor({ group, field, errorMessages }: {
18
+ constructor({ group, field }: {
21
19
  group: FormGroup;
22
20
  field: DynamicType;
23
- errorMessages: any;
24
21
  });
25
22
  createComponent(viewContainerRef: ViewContainerRef): ComponentRef<BaseFieldComponentConfig>;
26
23
  updateVariables(component: ComponentRef<any>): void;
@@ -28,10 +25,9 @@ export declare class DynamicField extends DynamicForm {
28
25
  }
29
26
  export declare class DynamicStructure extends DynamicForm {
30
27
  config: FieldDynamicStructure;
31
- constructor({ group, config, errorMessages, }: {
28
+ constructor({ group, config }: {
32
29
  group: FormGroup;
33
30
  config: FieldDynamicStructure;
34
- errorMessages: any;
35
31
  });
36
32
  createComponent(viewContainerRef: ViewContainerRef): ComponentRef<BaseStructureComponentConfig>;
37
33
  updateVariables(component: ComponentRef<any>): void;
@@ -24,5 +24,5 @@ export declare class DynamicFormDirective implements OnInit, OnChanges, OnDestro
24
24
  private isStructure;
25
25
  private get getType();
26
26
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormDirective, never>;
27
- static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicFormDirective, "[sDynamicForm]", never, { "sDynamicForm": { "alias": "sDynamicForm"; "required": false; }; }, {}, never, never, false, never>;
27
+ static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicFormDirective, "[sDynamicForm]", never, { "sDynamicForm": { "alias": "sDynamicForm"; "required": false; }; }, {}, never, never, true, never>;
28
28
  }
@@ -1,79 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./form-field/fields/file-upload/file-upload-field.component";
3
- import * as i2 from "./form-field/fields/autocomplete/autocomplete-field.component";
4
- import * as i3 from "./form-field/fields/boolean/boolean-radio-field/boolean-field.component";
5
- import * as i4 from "./form-field/fields/boolean/boolean-switch-field/boolean-switch-field.component";
6
- import * as i5 from "./form-field/fields/calendar/calendar-field.component";
7
- import * as i6 from "./form-field/fields/chips/chips-field.component";
8
- import * as i7 from "./form-field/fields/country-phone-picker/country-phone-picker-field.component";
9
- import * as i8 from "./dynamic-form.component";
10
- import * as i9 from "./dynamic-form.directive";
11
- import * as i10 from "./components/structure/fieldset/fieldset.component";
12
- import * as i11 from "./components/lookup/lookup.component";
13
- import * as i12 from "./form-field/fields/lookup/lookup-field.component";
14
- import * as i13 from "./form-field/fields/radio-button/radio-button-field.component";
15
- import * as i14 from "./components/grid/row/row.component";
16
- import * as i15 from "./components/structure/section/section.component";
17
- import * as i16 from "./form-field/fields/select/select-field.component";
18
- import * as i17 from "./form-field/fields/slider/slider-field.component";
19
- import * as i18 from "./form-field/fields/text-area/text-area-field.component";
20
- import * as i19 from "./form-field/fields/text-area-ia/text-area-ia-field.component";
21
- import * as i20 from "./form-field/fields/button-field/button-field.component";
22
- import * as i21 from "./form-field/fields/text/text-field.component";
23
- import * as i22 from "./form-field/fields/bignumber/bignumber-field.component";
24
- import * as i23 from "./form-field/fields/profile-picture/profile-picture-field.component";
25
- import * as i24 from "./form-field/fields/password/password-field.component";
26
- import * as i25 from "./form-field/fields/number/number-field.component";
27
- import * as i26 from "./form-field/fields/currency/currency-field.component";
28
- import * as i27 from "./form-field/fields/checkbox/checkbox-field.component";
29
- import * as i28 from "./form-field/fields/star-rating/star-rating-field.component";
30
- import * as i29 from "primeng/autocomplete";
31
- import * as i30 from "@seniorsistemas/angular-components/badge";
32
- import * as i31 from "@seniorsistemas/angular-components/bignumber-input";
33
- import * as i32 from "@seniorsistemas/angular-components/button";
34
- import * as i33 from "@seniorsistemas/angular-components/calendar-mask";
35
- import * as i34 from "@seniorsistemas/angular-components/chips";
36
- import * as i35 from "@angular/common";
37
- import * as i36 from "@seniorsistemas/angular-components/control-errors";
38
- import * as i37 from "@seniorsistemas/angular-components/country-phone-picker";
39
- import * as i38 from "@seniorsistemas/angular-components/dialog";
40
- import * as i39 from "@seniorsistemas/angular-components/empty-state";
41
- import * as i40 from "@angular/forms";
42
- import * as i41 from "angular2-hotkeys";
43
- import * as i42 from "primeng/inputmask";
44
- import * as i43 from "primeng/inputtext";
45
- import * as i44 from "primeng/keyfilter";
46
- import * as i45 from "@seniorsistemas/angular-components/loading-state";
47
- import * as i46 from "@seniorsistemas/angular-components/locale";
48
- import * as i47 from "@seniorsistemas/angular-components/localized-number-input";
49
- import * as i48 from "primeng/panel";
50
- import * as i49 from "primeng/button";
51
- import * as i50 from "primeng/table";
52
- import * as i51 from "@seniorsistemas/angular-components/tooltip";
53
- import * as i52 from "@seniorsistemas/angular-components/fieldset";
54
- import * as i53 from "@seniorsistemas/angular-components/table-header";
55
- import * as i54 from "@seniorsistemas/angular-components/file-upload";
56
- import * as i55 from "@seniorsistemas/angular-components/info-sign";
57
- import * as i56 from "@seniorsistemas/angular-components/mask";
58
- import * as i57 from "@seniorsistemas/angular-components/mouse-events";
59
- import * as i58 from "@seniorsistemas/angular-components/switch";
60
- import * as i59 from "@seniorsistemas/angular-components/password-strength";
61
- import * as i60 from "@seniorsistemas/angular-components/slider";
62
- import * as i61 from "primeng/datepicker";
63
- import * as i62 from "@ngx-translate/core";
64
- import * as i63 from "primeng/multiselect";
65
- import * as i64 from "@seniorsistemas/angular-components/profile-picture-picker";
66
- import * as i65 from "@seniorsistemas/angular-components/number-input";
67
- import * as i66 from "@seniorsistemas/angular-components/checkbox-list";
68
- import * as i67 from "@seniorsistemas/angular-components/text-area-ia";
69
- import * as i68 from "@seniorsistemas/angular-components/text-area";
70
- import * as i69 from "@seniorsistemas/angular-components/star-rating";
71
- import * as i70 from "@seniorsistemas/angular-components/select";
72
- import * as i71 from "@seniorsistemas/angular-components/template";
73
- import * as i72 from "@seniorsistemas/angular-components/radio-button";
74
- import * as i73 from "./components/field-label/field-label.component";
2
+ import * as i1 from "@seniorsistemas/angular-components/badge";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "./components/field-label/field-label.component";
5
+ import * as i4 from "./dynamic-form.directive";
6
+ import * as i5 from "./dynamic-form.component";
75
7
  export declare class DynamicFormModule {
76
8
  static ɵfac: i0.ɵɵFactoryDeclaration<DynamicFormModule, never>;
77
- static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFormModule, [typeof i1.FileUploadFieldComponent, typeof i2.AutocompleteFieldComponent, typeof i3.BooleanFieldComponent, typeof i4.BooleanSwitchFieldComponent, typeof i5.CalendarFieldComponent, typeof i6.ChipsFieldComponent, typeof i7.CountryPhonePickerFieldComponent, typeof i8.DynamicFormComponent, typeof i9.DynamicFormDirective, typeof i10.FieldsetComponent, typeof i11.LookupComponent, typeof i12.LookupFieldComponent, typeof i13.RadioButtonFieldComponent, typeof i14.RowComponent, typeof i15.SectionComponent, typeof i16.SelectFieldComponent, typeof i17.SliderFieldComponent, typeof i18.TextAreaFieldComponent, typeof i19.TextAreaIAFieldComponent, typeof i20.ButtonFieldComponent, typeof i21.TextFieldComponent, typeof i22.BignumberFieldComponent, typeof i23.ProfilePictureFieldComponent, typeof i24.PasswordFieldComponent, typeof i25.NumberFieldComponent, typeof i26.CurrencyFieldComponent, typeof i27.CheckboxFieldComponent, typeof i28.StarRatingFieldComponent], [typeof i29.AutoCompleteModule, typeof i30.BadgeModule, typeof i31.BignumberInputModule, typeof i32.ButtonModule, typeof i33.CalendarMaskModule, typeof i34.ChipsModule, typeof i35.CommonModule, typeof i36.ControlErrorsModule, typeof i37.CountryPhonePickerModule, typeof i38.DialogComponent, typeof i39.EmptyStateModule, typeof i40.FormsModule, typeof i41.HotkeyModule, typeof i42.InputMaskModule, typeof i43.InputTextModule, typeof i44.KeyFilterModule, typeof i45.LoadingStateModule, typeof i46.LocaleModule, typeof i47.LocalizedNumberInputModule, typeof i48.PanelModule, typeof i49.ButtonModule, typeof i50.TableModule, typeof i40.ReactiveFormsModule, typeof i51.TooltipModule, typeof i52.FieldsetModule, typeof i53.TableHeaderCheckboxModule, typeof i54.FileUploadModule, typeof i55.InfoSignModule, typeof i56.MaskFormatterModule, typeof i41.HotkeyModule, typeof i57.MouseEventsModule, typeof i58.SwitchModule, typeof i59.PasswordStrengthModule, typeof i60.SliderModule, typeof i61.DatePickerModule, typeof i62.TranslateModule, typeof i63.MultiSelectModule, typeof i64.ProfilePicturePickerModule, typeof i65.NumberInputModule, typeof i66.CheckboxListModule, typeof i67.TextAreaIAModule, typeof i68.TextAreaModule, typeof i69.StarRatingComponent, typeof i70.SelectComponent, typeof i71.TemplateModule, typeof i72.RadioButtonComponent, typeof i73.FieldLabelComponent], [typeof i8.DynamicFormComponent, typeof i9.DynamicFormDirective, typeof i11.LookupComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicFormModule, never, [typeof i1.BadgeModule, typeof i2.CommonModule, typeof i3.FieldLabelComponent, typeof i4.DynamicFormDirective, typeof i5.DynamicFormComponent], [typeof i5.DynamicFormComponent, typeof i4.DynamicFormDirective]>;
78
10
  static ɵinj: i0.ɵɵInjectorDeclaration<DynamicFormModule>;
79
11
  }
@@ -3,8 +3,8 @@ import { AddonConfig } from '../../addon-config';
3
3
  import { FieldConfig } from './field';
4
4
  type stringFn = () => string;
5
5
  export interface BignumberFieldConfig extends FieldConfig {
6
- type: 'bigNumber' | 'number' | 'decimal';
7
- allowNegative: boolean;
6
+ type: 'number' | 'double';
7
+ allowNegative?: boolean;
8
8
  numberLocaleOptions?: NumberLocaleOptions;
9
9
  browserAutocomplete?: boolean;
10
10
  precision?: Function | number;
@@ -21,8 +21,8 @@ export interface BignumberFieldConfig extends FieldConfig {
21
21
  }
22
22
  declare module './field' {
23
23
  interface FieldTypeMap {
24
- bigNumber: BignumberFieldConfig;
25
- decimal: BignumberFieldConfig;
24
+ number: BignumberFieldConfig;
25
+ double: BignumberFieldConfig;
26
26
  }
27
27
  }
28
28
  export {};
@@ -4,12 +4,12 @@ import { NumberFieldConfig } from './number-field';
4
4
  * @deprecated should use BigNumberField instead
5
5
  */
6
6
  export interface CurrencyFieldConfig extends Omit<NumberFieldConfig, 'type' | 'alignTo'> {
7
- type: 'currency';
7
+ type: 'money';
8
8
  alignTo?: 'left' | 'right';
9
9
  currency?: () => Currency;
10
10
  }
11
11
  declare module './field' {
12
12
  interface FieldTypeMap {
13
- currency: CurrencyFieldConfig;
13
+ money: CurrencyFieldConfig;
14
14
  }
15
15
  }
@@ -7,7 +7,7 @@ type stringFn = () => string | string;
7
7
  * @deprecated Should use BignumberFieldConfig instead
8
8
  */
9
9
  export interface NumberFieldConfig extends FieldConfig {
10
- type: 'number' | 'legacyNumber';
10
+ type: 'integer' | 'legacyNumber';
11
11
  /**
12
12
  * @deprecated `numberLocaleOptions` should not be used. It is not needed anymore and should be removed if possible.
13
13
  */
@@ -27,7 +27,7 @@ export interface NumberFieldConfig extends FieldConfig {
27
27
  }
28
28
  declare module './field' {
29
29
  interface FieldTypeMap {
30
- number: NumberFieldConfig;
30
+ integer: NumberFieldConfig;
31
31
  legacyNumber: NumberFieldConfig;
32
32
  }
33
33
  }
@@ -2,7 +2,7 @@ import { BadgeComponent } from '@seniorsistemas/angular-components/badge';
2
2
  import { FieldConfig } from './field';
3
3
  type selectOptionFn = () => SelectOption[];
4
4
  export interface SelectFieldConfig extends FieldConfig {
5
- type: 'select';
5
+ type: 'enum';
6
6
  appendTo?: string;
7
7
  optionLabel?: string;
8
8
  optionValue?: string;
@@ -27,7 +27,7 @@ export type SelectOption = {
27
27
  };
28
28
  declare module './field' {
29
29
  interface FieldTypeMap {
30
- select: SelectFieldConfig;
30
+ enum: SelectFieldConfig;
31
31
  }
32
32
  }
33
33
  export {};
@@ -3,7 +3,7 @@ import { FieldConfig } from './field';
3
3
  type stringFn = () => string;
4
4
  type booleanFn = () => boolean;
5
5
  export interface TextFieldConfig extends FieldConfig {
6
- type: 'text' | 'binary';
6
+ type: 'string' | 'binary';
7
7
  mask?: stringFn | string;
8
8
  readonly?: () => boolean;
9
9
  characterPattern?: stringFn | string;
@@ -24,7 +24,7 @@ export interface TextFieldConfig extends FieldConfig {
24
24
  }
25
25
  declare module './field' {
26
26
  interface FieldTypeMap {
27
- text: TextFieldConfig;
27
+ string: TextFieldConfig;
28
28
  binary: TextFieldConfig;
29
29
  }
30
30
  }
@@ -16,5 +16,5 @@ export declare class AutocompleteFieldComponent implements BaseFieldComponentCon
16
16
  ngAfterViewInit(): void;
17
17
  private setInputRef;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteFieldComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
20
20
  }
@@ -4,11 +4,12 @@ import { LocaleService } from '@seniorsistemas/angular-components/locale';
4
4
  import { FormFieldUtilsService } from '../../../services/form-field-utils.service';
5
5
  import { BignumberFieldConfig } from '../../configurations/fields/bignumber-field';
6
6
  import { BaseFieldComponentConfig } from '../base-field-component';
7
+ import { NumberFieldConfig } from '../../configurations/fields/number-field';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class BignumberFieldComponent implements OnInit, AfterViewInit, OnDestroy, BaseFieldComponentConfig {
9
10
  private readonly localeService;
10
11
  private readonly changeDetectorRef;
11
- field: import("@angular/core").InputSignal<BignumberFieldConfig>;
12
+ field: import("@angular/core").InputSignal<BignumberFieldConfig | NumberFieldConfig>;
12
13
  formControl: import("@angular/core").InputSignal<FormControl<any>>;
13
14
  fieldUtils: FormFieldUtilsService;
14
15
  onInput: EventEmitter<any>;
@@ -23,5 +24,5 @@ export declare class BignumberFieldComponent implements OnInit, AfterViewInit, O
23
24
  private onLocaleService;
24
25
  private onScale;
25
26
  static ɵfac: i0.ɵɵFactoryDeclaration<BignumberFieldComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<BignumberFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, false, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<BignumberFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, true, never>;
27
28
  }
@@ -7,5 +7,5 @@ export declare class BooleanFieldComponent implements BaseFieldComponentConfig {
7
7
  formControl: import("@angular/core").InputSignal<FormControl<any>>;
8
8
  onClear(): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<BooleanFieldComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<BooleanFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<BooleanFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
11
11
  }
@@ -6,5 +6,5 @@ export declare class BooleanSwitchFieldComponent implements BaseFieldComponentCo
6
6
  field: import("@angular/core").InputSignal<BooleanSwitchFieldConfig>;
7
7
  formControl: import("@angular/core").InputSignal<FormControl<any>>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<BooleanSwitchFieldComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<BooleanSwitchFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<BooleanSwitchFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
10
10
  }
@@ -7,5 +7,5 @@ export declare class ButtonFieldComponent implements BaseFieldComponentConfig {
7
7
  handleMouseEnter(): void;
8
8
  handleMouseLeave(): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<ButtonFieldComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<ButtonFieldComponent, "s-button-field", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<ButtonFieldComponent, "s-button-field", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
11
11
  }
@@ -31,5 +31,5 @@ export declare class CalendarFieldComponent implements BaseFieldComponentConfig,
31
31
  get timeOnly(): boolean;
32
32
  get showTime(): boolean;
33
33
  static ɵfac: i0.ɵɵFactoryDeclaration<CalendarFieldComponent, never>;
34
- static ɵcmp: i0.ɵɵComponentDeclaration<CalendarFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<CalendarFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
35
35
  }
@@ -6,5 +6,5 @@ export declare class CheckboxFieldComponent implements BaseFieldComponentConfig
6
6
  field: import("@angular/core").InputSignal<CheckboxFieldConfig>;
7
7
  formControl: import("@angular/core").InputSignal<FormControl<any>>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxFieldComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
10
10
  }
@@ -18,5 +18,5 @@ export declare class ChipsFieldComponent implements BaseFieldComponentConfig, Af
18
18
  ngAfterViewInit(): void;
19
19
  private setInputRef;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<ChipsFieldComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<ChipsFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipsFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
22
22
  }
@@ -10,5 +10,5 @@ export declare class CountryPhonePickerFieldComponent implements BaseFieldCompon
10
10
  constructor(changeDetectorRef: ChangeDetectorRef);
11
11
  ngAfterViewInit(): void;
12
12
  static ɵfac: i0.ɵɵFactoryDeclaration<CountryPhonePickerFieldComponent, never>;
13
- static ɵcmp: i0.ɵɵComponentDeclaration<CountryPhonePickerFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<CountryPhonePickerFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
14
14
  }
@@ -660,5 +660,5 @@ export declare class CurrencyFieldComponent implements BaseFieldComponentConfig,
660
660
  private onLocaleService;
661
661
  parseAlignTo(field: CurrencyFieldConfig): NumberAlignmentOption;
662
662
  static ɵfac: i0.ɵɵFactoryDeclaration<CurrencyFieldComponent, never>;
663
- static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
663
+ static ɵcmp: i0.ɵɵComponentDeclaration<CurrencyFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
664
664
  }
@@ -16,5 +16,5 @@ export declare class FileUploadFieldComponent implements BaseFieldComponentConfi
16
16
  private setInputRef;
17
17
  private dispatchFocusInputRef;
18
18
  static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadFieldComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
20
20
  }
@@ -14,5 +14,5 @@ export declare class LookupFieldComponent implements BaseFieldComponentConfig, O
14
14
  ngOnInit(): void;
15
15
  private setLookupData;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<LookupFieldComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<LookupFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<LookupFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
18
18
  }
@@ -26,5 +26,5 @@ export declare class NumberFieldComponent implements OnInit, OnDestroy, BaseFiel
26
26
  private onLocaleService;
27
27
  private setInputRef;
28
28
  static ɵfac: i0.ɵɵFactoryDeclaration<NumberFieldComponent, never>;
29
- static ɵcmp: i0.ɵɵComponentDeclaration<NumberFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, false, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<NumberFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, true, never>;
30
30
  }
@@ -20,5 +20,5 @@ export declare class PasswordFieldComponent implements OnInit, AfterViewInit, On
20
20
  onChangeVisible(): void;
21
21
  ngAfterViewInit(): void;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<PasswordFieldComponent, never>;
23
- static ɵcmp: i0.ɵɵComponentDeclaration<PasswordFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, false, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<PasswordFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, true, never>;
24
24
  }
@@ -6,5 +6,5 @@ export declare class ProfilePictureFieldComponent implements BaseFieldComponentC
6
6
  field: import("@angular/core").InputSignal<ProfilePictureConfig>;
7
7
  formControl: import("@angular/core").InputSignal<FormControl<any>>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<ProfilePictureFieldComponent, never>;
9
- static ɵcmp: i0.ɵɵComponentDeclaration<ProfilePictureFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProfilePictureFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
10
10
  }
@@ -13,5 +13,5 @@ export declare class RadioButtonFieldComponent implements OnInit, OnDestroy, Bas
13
13
  ngOnDestroy(): void;
14
14
  onClear(): void;
15
15
  static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonFieldComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onClick": "onClick"; "onFocus": "onFocus"; }, never, never, false, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onClick": "onClick"; "onFocus": "onFocus"; }, never, never, true, never>;
17
17
  }
@@ -8,5 +8,5 @@ export declare class SelectFieldComponent implements BaseFieldComponentConfig {
8
8
  formControl: import("@angular/core").InputSignal<FormControl<any>>;
9
9
  fieldUtils: FormFieldUtilsService;
10
10
  static ɵfac: i0.ɵɵFactoryDeclaration<SelectFieldComponent, never>;
11
- static ɵcmp: i0.ɵɵComponentDeclaration<SelectFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<SelectFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
12
12
  }
@@ -19,5 +19,5 @@ export declare class SliderFieldComponent implements OnInit, OnDestroy, BaseFiel
19
19
  private getNonRangeLabel;
20
20
  get label(): string;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<SliderFieldComponent, never>;
22
- static ɵcmp: i0.ɵɵComponentDeclaration<SliderFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onChange": "onChange"; "onSlideEnd": "onSlideEnd"; }, never, never, false, never>;
22
+ static ɵcmp: i0.ɵɵComponentDeclaration<SliderFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onChange": "onChange"; "onSlideEnd": "onSlideEnd"; }, never, never, true, never>;
23
23
  }
@@ -7,5 +7,5 @@ export declare class StarRatingFieldComponent implements BaseFieldComponentConfi
7
7
  formControl: import("@angular/core").InputSignal<FormControl<any>>;
8
8
  onValueChange(newValue: number): void;
9
9
  static ɵfac: i0.ɵɵFactoryDeclaration<StarRatingFieldComponent, never>;
10
- static ɵcmp: i0.ɵɵComponentDeclaration<StarRatingFieldComponent, "s-star-rating-field", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
10
+ static ɵcmp: i0.ɵɵComponentDeclaration<StarRatingFieldComponent, "s-star-rating-field", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
11
11
  }
@@ -21,5 +21,5 @@ export declare class TextFieldComponent implements OnInit, AfterViewInit, OnDest
21
21
  ngOnDestroy(): void;
22
22
  get inputElement(): any;
23
23
  static ɵfac: i0.ɵɵFactoryDeclaration<TextFieldComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, false, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, { "onInput": "onInput"; "onFocus": "onFocus"; "onComplete": "onComplete"; }, never, never, true, never>;
25
25
  }
@@ -14,5 +14,5 @@ export declare class TextAreaFieldComponent implements BaseFieldComponentConfig,
14
14
  ngAfterViewInit(): void;
15
15
  ngOnDestroy(): void;
16
16
  static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaFieldComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
18
18
  }
@@ -11,5 +11,5 @@ export declare class TextAreaIAFieldComponent implements BaseFieldComponentConfi
11
11
  ngOnInit(): void;
12
12
  ngOnDestroy(): void;
13
13
  static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaIAFieldComponent, never>;
14
- static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaIAFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaIAFieldComponent, "ng-component", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "formControl": { "alias": "formControl"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
15
15
  }