@praxisui/dynamic-fields 3.0.0-beta.1 → 3.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as _angular_core from '@angular/core';
2
2
  import { WritableSignal, InjectionToken, Provider, OnInit, OnDestroy, AfterViewInit, DestroyRef, ElementRef, ChangeDetectorRef, OnChanges, TemplateRef, EventEmitter, ComponentRef, SimpleChanges, Type, EnvironmentProviders, Injector } from '@angular/core';
3
3
  import { AbstractControl, ControlValueAccessor, NgControl, ValidationErrors, FormControl, FormGroup, FormGroupDirective, NgForm } from '@angular/forms';
4
4
  import { Observable, BehaviorSubject } from 'rxjs';
5
- import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, GenericCrudService, GlobalConfigService, OptionDTO, FieldMetadata, MaterialButtonMetadata, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialAutocompleteMetadata, MaterialToggleMetadata, MaterialRangeSliderMetadata, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, ComponentDocMeta, FieldControlType, CapabilityCatalog } from '@praxisui/core';
5
+ import { ComponentMetadata, PraxisTextValue, PraxisI18nDictionary, PraxisI18nConfig, PraxisI18nMessageDescriptor, PraxisI18nService, OptionSourceMetadata, GenericCrudService, GlobalConfigService, OptionDTO, FieldMetadata, MaterialButtonMetadata, MaterialInputMetadata, MaterialColorInputMetadata, MaterialDateInputMetadata, MaterialDatepickerMetadata, MaterialDateRangeMetadata, DateRangePreset, DateRangeValue, MaterialDatetimeLocalInputMetadata, MaterialEmailInputMetadata, MaterialTextareaMetadata, MaterialNumericMetadata, MaterialCurrencyMetadata, MaterialCpfCnpjMetadata, MaterialPriceRangeMetadata, MaterialMonthInputMetadata, MaterialPasswordMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialAutocompleteMetadata, MaterialToggleMetadata, MaterialRangeSliderMetadata, RangeSliderValue, InlinePeriodRangeMetadata, FieldControlType, MaterialTimepickerMetadata, MaterialTimeRangeMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialMultiSelectTreeMetadata, MaterialSliderMetadata, MaterialPhoneMetadata, MaterialTimeInputMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialColorPickerMetadata, MaterialYearInputMetadata, ComponentDocMeta, CapabilityCatalog } from '@praxisui/core';
6
6
  import { Router } from '@angular/router';
7
7
  import { MatDialog, MatDialogRef } from '@angular/material/dialog';
8
8
  import { MatSelect } from '@angular/material/select';
@@ -689,7 +689,9 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
689
689
  */
690
690
  protected getSpecificCssClasses(): string[];
691
691
  private setupFormControlIntegration;
692
+ private syncComponentStateFromControl;
692
693
  private refreshErrorTooltip;
694
+ protected ariaInvalidAttribute(): 'true' | null;
693
695
  protected tDynamicFields(keySuffix: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
694
696
  protected resolveDynamicFieldsMessage(value: string | {
695
697
  key?: string;
@@ -896,6 +898,8 @@ interface SimpleSelectMetadata<T = any> extends ComponentMetadata {
896
898
  loadOn?: 'open' | 'init' | 'none';
897
899
  /** Backend resource for dynamic options */
898
900
  resourcePath?: string;
901
+ /** Canonical metadata-driven source for derived options */
902
+ optionSource?: OptionSourceMetadata;
899
903
  /** Additional filter criteria for backend requests */
900
904
  filterCriteria?: Record<string, any>;
901
905
  /** Key for option label when loading from backend */
@@ -933,6 +937,8 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
933
937
  readonly maxSelections: _angular_core.WritableSignal<number | null>;
934
938
  /** Backend resource path for dynamic option loading */
935
939
  readonly resourcePath: _angular_core.WritableSignal<string | null>;
940
+ /** Canonical source for derived options */
941
+ readonly optionSource: _angular_core.WritableSignal<OptionSourceMetadata | null>;
936
942
  /** Criteria applied to backend filtering */
937
943
  readonly filterCriteria: _angular_core.WritableSignal<Record<string, any>>;
938
944
  /** Field used for option labels when loading from backend */
@@ -1087,6 +1093,7 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
1087
1093
  protected loadSchema(resolveLabel: boolean, resolveValue: boolean): void;
1088
1094
  /** Loads options from backend using GenericCrudService */
1089
1095
  protected loadOptions(page?: number, searchTerm?: string, criteria?: Record<string, any>): void;
1096
+ private currentIncludeIds;
1090
1097
  /** Dev-only warning when legacy alias keys are used instead of canonical ones */
1091
1098
  protected devWarnSelectAliases(meta: any, component?: string): void;
1092
1099
  /** Public API to reload options; overridden by async/searchable variants */
@@ -2372,11 +2379,13 @@ interface AsyncSelectMetadata {
2372
2379
  }>;
2373
2380
  useCursor?: boolean;
2374
2381
  multiple?: boolean;
2382
+ searchable?: boolean;
2375
2383
  selectAll?: boolean;
2376
2384
  maxSelections?: number | null;
2377
2385
  emptyOptionText?: string | null;
2378
2386
  loadOn?: LoadStrategy;
2379
2387
  resourcePath?: string;
2388
+ optionSource?: OptionSourceMetadata;
2380
2389
  filterCriteria?: Record<string, unknown>;
2381
2390
  optionLabelKey?: string;
2382
2391
  optionValueKey?: string;
@@ -2398,6 +2407,7 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
2398
2407
  private cursorPageIndex;
2399
2408
  private dataVersion?;
2400
2409
  private useCursor;
2410
+ private isCategoricalBucketOptionSource;
2401
2411
  setSelectMetadata(metadata: AsyncSelectMetadata): void;
2402
2412
  errorStateMatcher(): _angular_material_error_options_d_CGdTZUYk.E;
2403
2413
  searchInputAriaLabel(): string;
@@ -2767,7 +2777,12 @@ declare class InlineNumberComponent extends SimpleBaseInputComponent {
2767
2777
  onViewportResize(): void;
2768
2778
  protected getSpecificCssClasses(): string[];
2769
2779
  leadingIconName(): string;
2780
+ showPercentGraphicMode(): boolean;
2770
2781
  showPercentSuffix(): boolean;
2782
+ percentDisplayText(): string;
2783
+ percentRangeText(): string;
2784
+ percentAngle(): number;
2785
+ percentFillWidth(): number;
2771
2786
  effectiveMinValue(): number | null;
2772
2787
  effectiveMaxValue(): number | null;
2773
2788
  effectiveStepValue(): number | null;
@@ -2794,6 +2809,10 @@ declare class InlineNumberComponent extends SimpleBaseInputComponent {
2794
2809
  private resolveEffectiveMax;
2795
2810
  private resolveEffectiveStep;
2796
2811
  private defaultFieldLabel;
2812
+ private currentNumericValue;
2813
+ private percentRatio;
2814
+ private formatCompactNumber;
2815
+ private longestMeasureCandidate;
2797
2816
  private isPercentFormat;
2798
2817
  private resolveNonEmptyString;
2799
2818
  private resolveFieldLabelFromMetadata;
@@ -3161,6 +3180,105 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
3161
3180
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InlineRangeSliderComponent, "pdx-inline-range-slider", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, {}, never, never, true, never>;
3162
3181
  }
3163
3182
 
3183
+ type PeriodRangeState = {
3184
+ values: string[];
3185
+ indexByValue: Map<string, number>;
3186
+ };
3187
+ declare class InlinePeriodRangeComponent extends SimpleBaseInputComponent {
3188
+ private innerComponent?;
3189
+ readonlyMode: boolean;
3190
+ disabledMode: boolean;
3191
+ visible: boolean;
3192
+ presentationMode: boolean;
3193
+ readonly sliderControl: FormControl<RangeSliderValue | null>;
3194
+ private syncingFromOuter;
3195
+ private syncingFromInner;
3196
+ readonly periodState: _angular_core.Signal<PeriodRangeState | null>;
3197
+ readonly resolvedMetadata: _angular_core.Signal<MaterialRangeSliderMetadata | null>;
3198
+ ngOnInit(): void;
3199
+ ngAfterViewInit(): void;
3200
+ writeValue(value: any): void;
3201
+ setInputMetadata(metadata: InlinePeriodRangeMetadata): void;
3202
+ protected setMetadata(metadata: InlinePeriodRangeMetadata): void;
3203
+ protected getSpecificCssClasses(): string[];
3204
+ private syncFromOuterValue;
3205
+ private syncFromInnerValue;
3206
+ private toSliderValue;
3207
+ private toOuterValue;
3208
+ private adaptQuickPresets;
3209
+ private formatPeriodLabel;
3210
+ private formatMonthValue;
3211
+ private defaultIcon;
3212
+ private buildPeriods;
3213
+ private buildMonthPeriods;
3214
+ private buildQuarterPeriods;
3215
+ private buildYearPeriods;
3216
+ private parseYearMonth;
3217
+ private parseQuarter;
3218
+ private parseYear;
3219
+ private boundIndex;
3220
+ private syncInnerMetadata;
3221
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlinePeriodRangeComponent, never>;
3222
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<InlinePeriodRangeComponent, "pdx-inline-period-range", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, {}, never, never, true, never>;
3223
+ }
3224
+
3225
+ type YearRangeMetadata = Omit<MaterialRangeSliderMetadata, 'controlType'> & {
3226
+ controlType: typeof FieldControlType.INLINE_YEAR_RANGE;
3227
+ displayFormat?: 'year' | 'compact-year-range';
3228
+ quickPresetsLabels?: {
3229
+ full?: string;
3230
+ current?: string;
3231
+ previous?: string;
3232
+ recent?: string;
3233
+ };
3234
+ } & Record<string, unknown>;
3235
+ declare class InlineYearRangeComponent extends SimpleBaseInputComponent {
3236
+ private innerComponent?;
3237
+ readonlyMode: boolean;
3238
+ disabledMode: boolean;
3239
+ visible: boolean;
3240
+ presentationMode: boolean;
3241
+ readonly resolvedMetadata: _angular_core.Signal<MaterialRangeSliderMetadata | null>;
3242
+ protected getSpecificCssClasses(): string[];
3243
+ ngAfterViewInit(): void;
3244
+ setInputMetadata(metadata: YearRangeMetadata): void;
3245
+ protected setMetadata(metadata: YearRangeMetadata): void;
3246
+ private syncInnerMetadata;
3247
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineYearRangeComponent, never>;
3248
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<InlineYearRangeComponent, "pdx-inline-year-range", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, {}, never, never, true, never>;
3249
+ }
3250
+
3251
+ type MonthRangeMetadata = Omit<MaterialRangeSliderMetadata, 'controlType'> & {
3252
+ controlType: typeof FieldControlType.INLINE_MONTH_RANGE;
3253
+ displayFormat?: 'month' | 'month-short-range';
3254
+ monthLabels?: string[];
3255
+ quickPresetsLabels?: {
3256
+ full?: string;
3257
+ q1?: string;
3258
+ q2?: string;
3259
+ q3?: string;
3260
+ q4?: string;
3261
+ firstHalf?: string;
3262
+ secondHalf?: string;
3263
+ };
3264
+ } & Record<string, unknown>;
3265
+ declare class InlineMonthRangeComponent extends SimpleBaseInputComponent {
3266
+ private innerComponent?;
3267
+ readonlyMode: boolean;
3268
+ disabledMode: boolean;
3269
+ visible: boolean;
3270
+ presentationMode: boolean;
3271
+ readonly resolvedMetadata: _angular_core.Signal<MaterialRangeSliderMetadata | null>;
3272
+ protected getSpecificCssClasses(): string[];
3273
+ ngAfterViewInit(): void;
3274
+ setInputMetadata(metadata: MonthRangeMetadata): void;
3275
+ protected setMetadata(metadata: MonthRangeMetadata): void;
3276
+ private resolveMonthLabels;
3277
+ private syncInnerMetadata;
3278
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<InlineMonthRangeComponent, never>;
3279
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<InlineMonthRangeComponent, "pdx-inline-month-range", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, {}, never, never, true, never>;
3280
+ }
3281
+
3164
3282
  declare class InlineDateComponent extends MaterialDatepickerComponent {
3165
3283
  inputEl?: ElementRef<HTMLInputElement>;
3166
3284
  measureEl?: ElementRef<HTMLElement>;
@@ -5303,6 +5421,12 @@ declare const PDX_INLINE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
5303
5421
 
5304
5422
  declare const PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA: ComponentDocMeta;
5305
5423
 
5424
+ declare const PDX_INLINE_PERIOD_RANGE_COMPONENT_METADATA: ComponentDocMeta;
5425
+
5426
+ declare const PDX_INLINE_YEAR_RANGE_COMPONENT_METADATA: ComponentDocMeta;
5427
+
5428
+ declare const PDX_INLINE_MONTH_RANGE_COMPONENT_METADATA: ComponentDocMeta;
5429
+
5306
5430
  declare const PDX_INLINE_DATE_COMPONENT_METADATA: ComponentDocMeta;
5307
5431
 
5308
5432
  declare const PDX_INLINE_DATE_RANGE_COMPONENT_METADATA: ComponentDocMeta;
@@ -6050,6 +6174,80 @@ declare function providePraxisDynamicFieldsNoDefaults(): (Provider | Environment
6050
6174
  */
6051
6175
  declare function providePraxisDynamicFieldsCoreNoDefaults(): Provider[];
6052
6176
 
6177
+ type DynamicFieldCatalogTrack = 'primary-form' | 'inline-filter';
6178
+ type DynamicFieldCatalogFamily = 'text' | 'numbers-range' | 'date-time' | 'selection' | 'trees-lists' | 'toggle-choice' | 'upload-color-visual';
6179
+ type DynamicFieldCatalogStatus = 'stable' | 'preview' | 'experimental' | 'partial-docs';
6180
+ type DynamicFieldDataSourceKind = 'local' | 'remote' | 'mixed' | 'specialized';
6181
+ type DynamicFieldStateKey = 'default' | 'filled' | 'disabled' | 'readonly' | 'error';
6182
+ interface DynamicFieldDocLinks {
6183
+ catalogSlug: string;
6184
+ detailFragment: string;
6185
+ selectionGuideSlug: string;
6186
+ overviewSlug?: string;
6187
+ jsonApiPath?: string;
6188
+ }
6189
+ interface DynamicFieldSnippetRecipe {
6190
+ language: 'ts' | 'json';
6191
+ snippet: string;
6192
+ note?: string;
6193
+ }
6194
+ interface DynamicFieldPreviewStateRecipe {
6195
+ state: DynamicFieldStateKey;
6196
+ label: string;
6197
+ supported: boolean;
6198
+ metadataPatch?: Record<string, unknown>;
6199
+ initialValue?: unknown;
6200
+ errorMessage?: string;
6201
+ note?: string;
6202
+ }
6203
+ interface DynamicFieldPreviewRecipe {
6204
+ recipeId: string;
6205
+ fieldName: string;
6206
+ label: string;
6207
+ description?: string;
6208
+ baseMetadata: Record<string, unknown>;
6209
+ states: DynamicFieldPreviewStateRecipe[];
6210
+ }
6211
+ interface DynamicFieldCatalogEntry {
6212
+ id: string;
6213
+ controlType: FieldControlType | string;
6214
+ track: DynamicFieldCatalogTrack;
6215
+ family: DynamicFieldCatalogFamily;
6216
+ status: DynamicFieldCatalogStatus;
6217
+ friendlyName: string;
6218
+ description: string;
6219
+ tags: string[];
6220
+ keywords: string[];
6221
+ valueShape: string;
6222
+ recommendedWhen: string[];
6223
+ avoidWhen: string[];
6224
+ dataSourceKind: DynamicFieldDataSourceKind;
6225
+ supportsStates: DynamicFieldStateKey[];
6226
+ docs: DynamicFieldDocLinks;
6227
+ previewRecipe: DynamicFieldPreviewRecipe;
6228
+ snippetRecipe: DynamicFieldSnippetRecipe;
6229
+ a11yNotes?: string[];
6230
+ themingNotes?: string[];
6231
+ }
6232
+
6233
+ declare const DYNAMIC_FIELD_DEFAULT_STATE_RECIPE: DynamicFieldPreviewStateRecipe;
6234
+ declare const DYNAMIC_FIELD_FILLED_STATE_RECIPE: DynamicFieldPreviewStateRecipe;
6235
+ declare const DYNAMIC_FIELD_DISABLED_STATE_RECIPE: DynamicFieldPreviewStateRecipe;
6236
+ declare const DYNAMIC_FIELD_READONLY_STATE_RECIPE: DynamicFieldPreviewStateRecipe;
6237
+ declare const DYNAMIC_FIELD_ERROR_STATE_RECIPE: DynamicFieldPreviewStateRecipe;
6238
+ declare const DYNAMIC_FIELD_BASE_STATE_RECIPES: DynamicFieldPreviewStateRecipe[];
6239
+ declare function createDynamicFieldPreviewRecipe(input: {
6240
+ recipeId: string;
6241
+ fieldName: string;
6242
+ label: string;
6243
+ controlType: string;
6244
+ description?: string;
6245
+ metadata?: Record<string, unknown>;
6246
+ states?: DynamicFieldPreviewStateRecipe[];
6247
+ }): DynamicFieldPreviewRecipe;
6248
+
6249
+ declare const DYNAMIC_FIELDS_PLAYGROUND_CATALOG: DynamicFieldCatalogEntry[];
6250
+
6053
6251
  declare const CONTROL_TYPE_AI_CATALOGS: Partial<Record<FieldControlType, CapabilityCatalog>>;
6054
6252
  declare function getControlTypeCatalog(controlType?: FieldControlType | string | null): CapabilityCatalog;
6055
6253
 
@@ -6347,5 +6545,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
6347
6545
  declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
6348
6546
  declare function supportsClearButtonControlType(controlType?: string | null): boolean;
6349
6547
 
6350
- export { ActionResolverService, BRAZIL_INPUTS_AI_CAPABILITIES, CACHE_TTL, CHIPS_CONTROLS_AI_CAPABILITIES, CLEAR_BUTTON_CONTROL_TYPES, COLOR_CONTROLS_AI_CAPABILITIES, CONTROL_TYPE_AI_CATALOGS, ColorInputComponent, ComponentPreloaderService, ComponentRegistryService, ConfirmDialogComponent, DATE_CONTROLS_AI_CAPABILITIES, DISPLAY_ACTION_AI_CAPABILITIES, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EmailInputComponent, FILE_UPLOAD_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMultiSelectComponent, InlineNumberComponent, InlinePipelineStatusComponent, InlineRangeSliderComponent, InlineRatingComponent, InlineRelativePeriodComponent, InlineScorePriorityComponent, InlineSearchableSelectComponent, InlineSelectComponent, InlineSentimentComponent, InlineTimeComponent, InlineTimeRangeComponent, InlineToggleComponent, InlineTreeSelectComponent, KeyboardShortcutService, LIST_CONTROLS_AI_CAPABILITIES, LoggerPresets, MAX_LOAD_ATTEMPTS, MaterialAsyncSelectComponent, MaterialAutocompleteComponent, MaterialAvatarComponent, MaterialButtonComponent, MaterialButtonToggleComponent, MaterialCheckboxGroupComponent, MaterialChipsComponent, MaterialColorPickerComponent, MaterialCpfCnpjInputComponent, MaterialCurrencyComponent, MaterialDateRangeComponent, MaterialDatepickerComponent, MaterialFileUploadComponent, MaterialMultiSelectComponent, MaterialMultiSelectTreeComponent, MaterialPriceRangeComponent, MaterialRadioGroupComponent, MaterialRatingComponent, MaterialSearchableSelectComponent, MaterialSelectComponent, MaterialSelectionListComponent, MaterialSlideToggleComponent, MaterialSliderComponent, MaterialTextareaComponent, MaterialTimepickerComponent, MaterialTransferListComponent, MaterialTreeSelectComponent, MonthInputComponent, NUMERIC_INPUTS_AI_CAPABILITIES, NumberInputComponent, OptionStore, PDX_COLOR_INPUT_COMPONENT_METADATA, PDX_COLOR_PICKER_COMPONENT_METADATA, PDX_DATETIME_LOCAL_INPUT_COMPONENT_METADATA, PDX_DATE_INPUT_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_FIELD_SHELL_COMPONENT_METADATA, PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_INLINE_CURRENCY_COMPONENT_METADATA, PDX_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_INLINE_DATE_COMPONENT_METADATA, PDX_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_INPUT_COMPONENT_METADATA, PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_INLINE_NUMBER_COMPONENT_METADATA, PDX_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_INLINE_RATING_COMPONENT_METADATA, PDX_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_INLINE_SELECT_COMPONENT_METADATA, PDX_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_INLINE_TIME_COMPONENT_METADATA, PDX_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_INLINE_TOGGLE_COMPONENT_METADATA, PDX_INLINE_TREE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_AVATAR_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_CHECKBOX_GROUP_COMPONENT_METADATA, PDX_MATERIAL_CHIPS_COMPONENT_METADATA, PDX_MATERIAL_COLORPICKER_COMPONENT_METADATA, PDX_MATERIAL_CPF_CNPJ_INPUT_COMPONENT_METADATA, PDX_MATERIAL_CURRENCY_COMPONENT_METADATA, PDX_MATERIAL_DATEPICKER_COMPONENT_METADATA, PDX_MATERIAL_DATE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_FILE_UPLOAD_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_TREE_COMPONENT_METADATA, PDX_MATERIAL_PRICE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA, PDX_MATERIAL_RANGE_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_RATING_COMPONENT_METADATA, PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA, PDX_MATERIAL_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_TEXTAREA_COMPONENT_METADATA, PDX_MATERIAL_TIMEPICKER_COMPONENT_METADATA, PDX_MATERIAL_TIME_RANGE_COMPONENT_METADATA, PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA, PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA, PDX_MONTH_INPUT_COMPONENT_METADATA, PDX_NUMBER_INPUT_COMPONENT_METADATA, PDX_PASSWORD_INPUT_COMPONENT_METADATA, PDX_PHONE_INPUT_COMPONENT_METADATA, PDX_PRELOAD_STATUS_COMPONENT_METADATA, PDX_SEARCH_INPUT_COMPONENT_METADATA, PDX_TEXT_INPUT_COMPONENT_METADATA, PDX_TIME_INPUT_COMPONENT_METADATA, PDX_URL_INPUT_COMPONENT_METADATA, PDX_WEEK_INPUT_COMPONENT_METADATA, PDX_YEAR_INPUT_COMPONENT_METADATA, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRICE_RANGE_AI_CAPABILITIES, PasswordInputComponent, PdxColorPickerComponent, PdxMaterialRangeSliderComponent, PdxMaterialTimeRangeComponent, PdxYearInputComponent, PhoneInputComponent, PraxisErrorStateMatcher, PreloadStatusComponent, RETRY_DELAY, SELECT_CONTROLS_AI_CAPABILITIES, SearchInputComponent, SimpleBaseButtonComponent, SimpleBaseInputComponent, SimpleBaseSelectComponent, TEXT_INPUTS_AI_CAPABILITIES, TIME_RANGE_AI_CAPABILITIES, TOGGLE_CONTROLS_AI_CAPABILITIES, TREE_CONTROLS_AI_CAPABILITIES, TextInputComponent, TimeInputComponent, UrlInputComponent, WeekInputComponent, YEAR_INPUT_AI_CAPABILITIES, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
6351
- export type { ActionContext, ActionHandler, ActionResult, BaseDynamicFieldComponent, BaseValidationConfig, ComponentLifecycleEvent, ComponentLoadResult, ComponentRegistration, ConfirmDialogData, DynamicFieldLoaderRenderErrorEvent, DynamicFieldsCoreLogOptions, DynamicFieldsCoreLoggerBackend, DynamicFieldsLoggerContext, DynamicFieldsLoggerLevel, ErrorStateStrategy, GradientSettings, IComponentRegistry, JsonSchema, JsonSchemaProperty, LoggerConfig, LoggerLevel, OptionSource, PaletteSettings, PopupSettings, PraxisDynamicFieldText, PraxisDynamicFieldsI18nOptions, PraxisDynamicFieldsI18nOverrides, PreloadStatus, RatingIconState, RegistryStats, SelectOption, ShortcutHandler, ShortcutInfo, SimpleSelectMetadata, TimeRangeValue, ValueChangeOptions };
6548
+ export { ActionResolverService, BRAZIL_INPUTS_AI_CAPABILITIES, CACHE_TTL, CHIPS_CONTROLS_AI_CAPABILITIES, CLEAR_BUTTON_CONTROL_TYPES, COLOR_CONTROLS_AI_CAPABILITIES, CONTROL_TYPE_AI_CATALOGS, ColorInputComponent, ComponentPreloaderService, ComponentRegistryService, ConfirmDialogComponent, DATE_CONTROLS_AI_CAPABILITIES, DISPLAY_ACTION_AI_CAPABILITIES, DYNAMIC_FIELDS_PLAYGROUND_CATALOG, DYNAMIC_FIELD_BASE_STATE_RECIPES, DYNAMIC_FIELD_DEFAULT_STATE_RECIPE, DYNAMIC_FIELD_DISABLED_STATE_RECIPE, DYNAMIC_FIELD_ERROR_STATE_RECIPE, DYNAMIC_FIELD_FILLED_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EmailInputComponent, FILE_UPLOAD_AI_CAPABILITIES, InlineAsyncSelectComponent, InlineAutocompleteComponent, InlineColorLabelComponent, InlineCurrencyComponent, InlineCurrencyRangeComponent, InlineDateComponent, InlineDateRangeComponent, InlineDistanceRadiusComponent, InlineEntityLookupComponent, InlineInputComponent, InlineMonthRangeComponent, InlineMultiSelectComponent, InlineNumberComponent, InlinePeriodRangeComponent, InlinePipelineStatusComponent, InlineRangeSliderComponent, InlineRatingComponent, InlineRelativePeriodComponent, InlineScorePriorityComponent, InlineSearchableSelectComponent, InlineSelectComponent, InlineSentimentComponent, InlineTimeComponent, InlineTimeRangeComponent, InlineToggleComponent, InlineTreeSelectComponent, InlineYearRangeComponent, KeyboardShortcutService, LIST_CONTROLS_AI_CAPABILITIES, LoggerPresets, MAX_LOAD_ATTEMPTS, MaterialAsyncSelectComponent, MaterialAutocompleteComponent, MaterialAvatarComponent, MaterialButtonComponent, MaterialButtonToggleComponent, MaterialCheckboxGroupComponent, MaterialChipsComponent, MaterialColorPickerComponent, MaterialCpfCnpjInputComponent, MaterialCurrencyComponent, MaterialDateRangeComponent, MaterialDatepickerComponent, MaterialFileUploadComponent, MaterialMultiSelectComponent, MaterialMultiSelectTreeComponent, MaterialPriceRangeComponent, MaterialRadioGroupComponent, MaterialRatingComponent, MaterialSearchableSelectComponent, MaterialSelectComponent, MaterialSelectionListComponent, MaterialSlideToggleComponent, MaterialSliderComponent, MaterialTextareaComponent, MaterialTimepickerComponent, MaterialTransferListComponent, MaterialTreeSelectComponent, MonthInputComponent, NUMERIC_INPUTS_AI_CAPABILITIES, NumberInputComponent, OptionStore, PDX_COLOR_INPUT_COMPONENT_METADATA, PDX_COLOR_PICKER_COMPONENT_METADATA, PDX_DATETIME_LOCAL_INPUT_COMPONENT_METADATA, PDX_DATE_INPUT_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_FIELD_SHELL_COMPONENT_METADATA, PDX_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_INLINE_CURRENCY_COMPONENT_METADATA, PDX_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_INLINE_DATE_COMPONENT_METADATA, PDX_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_INLINE_INPUT_COMPONENT_METADATA, PDX_INLINE_MONTH_RANGE_COMPONENT_METADATA, PDX_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_INLINE_NUMBER_COMPONENT_METADATA, PDX_INLINE_PERIOD_RANGE_COMPONENT_METADATA, PDX_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_INLINE_RATING_COMPONENT_METADATA, PDX_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_INLINE_SELECT_COMPONENT_METADATA, PDX_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_INLINE_TIME_COMPONENT_METADATA, PDX_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_INLINE_TOGGLE_COMPONENT_METADATA, PDX_INLINE_TREE_SELECT_COMPONENT_METADATA, PDX_INLINE_YEAR_RANGE_COMPONENT_METADATA, PDX_MATERIAL_AVATAR_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_COMPONENT_METADATA, PDX_MATERIAL_BUTTON_TOGGLE_COMPONENT_METADATA, PDX_MATERIAL_CHECKBOX_GROUP_COMPONENT_METADATA, PDX_MATERIAL_CHIPS_COMPONENT_METADATA, PDX_MATERIAL_COLORPICKER_COMPONENT_METADATA, PDX_MATERIAL_CPF_CNPJ_INPUT_COMPONENT_METADATA, PDX_MATERIAL_CURRENCY_COMPONENT_METADATA, PDX_MATERIAL_DATEPICKER_COMPONENT_METADATA, PDX_MATERIAL_DATE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_FILE_UPLOAD_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_COMPONENT_METADATA, PDX_MATERIAL_MULTI_SELECT_TREE_COMPONENT_METADATA, PDX_MATERIAL_PRICE_RANGE_COMPONENT_METADATA, PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA, PDX_MATERIAL_RANGE_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_RATING_COMPONENT_METADATA, PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA, PDX_MATERIAL_SELECT_COMPONENT_METADATA, PDX_MATERIAL_SLIDER_COMPONENT_METADATA, PDX_MATERIAL_TEXTAREA_COMPONENT_METADATA, PDX_MATERIAL_TIMEPICKER_COMPONENT_METADATA, PDX_MATERIAL_TIME_RANGE_COMPONENT_METADATA, PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA, PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA, PDX_MONTH_INPUT_COMPONENT_METADATA, PDX_NUMBER_INPUT_COMPONENT_METADATA, PDX_PASSWORD_INPUT_COMPONENT_METADATA, PDX_PHONE_INPUT_COMPONENT_METADATA, PDX_PRELOAD_STATUS_COMPONENT_METADATA, PDX_SEARCH_INPUT_COMPONENT_METADATA, PDX_TEXT_INPUT_COMPONENT_METADATA, PDX_TIME_INPUT_COMPONENT_METADATA, PDX_URL_INPUT_COMPONENT_METADATA, PDX_WEEK_INPUT_COMPONENT_METADATA, PDX_YEAR_INPUT_COMPONENT_METADATA, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRICE_RANGE_AI_CAPABILITIES, PasswordInputComponent, PdxColorPickerComponent, PdxMaterialRangeSliderComponent, PdxMaterialTimeRangeComponent, PdxYearInputComponent, PhoneInputComponent, PraxisErrorStateMatcher, PreloadStatusComponent, RETRY_DELAY, SELECT_CONTROLS_AI_CAPABILITIES, SearchInputComponent, SimpleBaseButtonComponent, SimpleBaseInputComponent, SimpleBaseSelectComponent, TEXT_INPUTS_AI_CAPABILITIES, TIME_RANGE_AI_CAPABILITIES, TOGGLE_CONTROLS_AI_CAPABILITIES, TREE_CONTROLS_AI_CAPABILITIES, TextInputComponent, TimeInputComponent, UrlInputComponent, WeekInputComponent, YEAR_INPUT_AI_CAPABILITIES, bindDynamicFieldsLoggerBackendFromInjector, clearDynamicFieldsLoggerBackend, configureDynamicFieldsLogger, createDynamicFieldPreviewRecipe, createErrorStateMatcher, createPraxisDynamicFieldsI18nConfig, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsI18n, providePraxisDynamicFieldsNoDefaults, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
6549
+ export type { ActionContext, ActionHandler, ActionResult, BaseDynamicFieldComponent, BaseValidationConfig, ComponentLifecycleEvent, ComponentLoadResult, ComponentRegistration, ConfirmDialogData, DynamicFieldCatalogEntry, DynamicFieldCatalogFamily, DynamicFieldCatalogStatus, DynamicFieldCatalogTrack, DynamicFieldDataSourceKind, DynamicFieldDocLinks, DynamicFieldLoaderRenderErrorEvent, DynamicFieldPreviewRecipe, DynamicFieldPreviewStateRecipe, DynamicFieldSnippetRecipe, DynamicFieldStateKey, DynamicFieldsCoreLogOptions, DynamicFieldsCoreLoggerBackend, DynamicFieldsLoggerContext, DynamicFieldsLoggerLevel, ErrorStateStrategy, GradientSettings, IComponentRegistry, JsonSchema, JsonSchemaProperty, LoggerConfig, LoggerLevel, OptionSource, PaletteSettings, PopupSettings, PraxisDynamicFieldText, PraxisDynamicFieldsI18nOptions, PraxisDynamicFieldsI18nOverrides, PreloadStatus, RatingIconState, RegistryStats, SelectOption, ShortcutHandler, ShortcutInfo, SimpleSelectMetadata, TimeRangeValue, ValueChangeOptions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-fields",
3
- "version": "3.0.0-beta.1",
3
+ "version": "3.0.0-beta.3",
4
4
  "description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.1.0",
@@ -10,10 +10,10 @@
10
10
  "@angular/cdk": "^20.1.0",
11
11
  "@angular/router": "^20.1.0",
12
12
  "rxjs": "^7.8.0",
13
- "@praxisui/specification-core": "^3.0.0-beta.1",
14
- "@praxisui/core": "^3.0.0-beta.1",
15
- "@praxisui/cron-builder": "^3.0.0-beta.1",
16
- "@praxisui/dialog": "^3.0.0-beta.1"
13
+ "@praxisui/specification-core": "^3.0.0-beta.3",
14
+ "@praxisui/core": "^3.0.0-beta.3",
15
+ "@praxisui/cron-builder": "^3.0.0-beta.3",
16
+ "@praxisui/dialog": "^3.0.0-beta.3"
17
17
  },
18
18
  "dependencies": {
19
19
  "tslib": "^2.3.0"