@praxisui/dynamic-fields 9.0.0-beta.2 → 9.0.0-beta.20
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/README.md +10 -4
- package/ai/component-registry.json +265364 -0
- package/docs/dynamic-fields-field-catalog.md +1 -2
- package/docs/dynamic-fields-inline-components-guide.md +21 -1
- package/docs/dynamic-fields-inline-filter-runtime-contract.md +11 -0
- package/fesm2022/praxisui-dynamic-fields.mjs +1111 -425
- package/package.json +9 -12
- package/src/lib/components/inline-color-label/pdx-inline-color-label.json-api.md +1 -1
- package/src/lib/components/inline-currency-range/pdx-inline-currency-range.json-api.md +49 -17
- package/src/lib/components/inline-date/pdx-inline-date.json-api.md +1 -1
- package/src/lib/components/inline-number/pdx-inline-number.json-api.md +1 -0
- package/src/lib/components/inline-range-slider/pdx-inline-range-slider.json-api.md +52 -13
- package/src/lib/components/inline-relative-period/pdx-inline-relative-period.json-api.md +103 -103
- package/src/lib/components/inline-sentiment/pdx-inline-sentiment.json-api.md +84 -84
- package/src/lib/components/inline-time-range/pdx-inline-time-range.json-api.md +2 -2
- package/src/lib/components/material-async-select/pdx-material-async-select.json-api.md +3 -2
- package/src/lib/components/material-file-upload/pdx-material-file-upload.json-api.md +58 -27
- package/types/praxisui-dynamic-fields.d.ts +127 -7
|
@@ -241,6 +241,18 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
241
241
|
validation?: {
|
|
242
242
|
genericFailed?: PraxisDynamicFieldText;
|
|
243
243
|
};
|
|
244
|
+
fileUpload?: {
|
|
245
|
+
emptySummary?: PraxisDynamicFieldText;
|
|
246
|
+
multipleSummary?: PraxisDynamicFieldText;
|
|
247
|
+
clearSelection?: PraxisDynamicFieldText;
|
|
248
|
+
clearSelectionAriaLabel?: PraxisDynamicFieldText;
|
|
249
|
+
selectedSummaryAriaLabel?: PraxisDynamicFieldText;
|
|
250
|
+
previewAlt?: PraxisDynamicFieldText;
|
|
251
|
+
sizeUnitBytes?: PraxisDynamicFieldText;
|
|
252
|
+
sizeUnitKb?: PraxisDynamicFieldText;
|
|
253
|
+
sizeUnitMb?: PraxisDynamicFieldText;
|
|
254
|
+
sizeUnitGb?: PraxisDynamicFieldText;
|
|
255
|
+
};
|
|
244
256
|
select?: {
|
|
245
257
|
loadSchemaError?: PraxisDynamicFieldText;
|
|
246
258
|
loadOptionsError?: PraxisDynamicFieldText;
|
|
@@ -281,6 +293,9 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
281
293
|
displayUpto?: PraxisDynamicFieldText;
|
|
282
294
|
presetFrom?: PraxisDynamicFieldText;
|
|
283
295
|
};
|
|
296
|
+
dateRange?: {
|
|
297
|
+
shortcutsAriaLabel?: PraxisDynamicFieldText;
|
|
298
|
+
};
|
|
284
299
|
inlineDateRange?: {
|
|
285
300
|
placeholder?: PraxisDynamicFieldText;
|
|
286
301
|
startPlaceholder?: PraxisDynamicFieldText;
|
|
@@ -326,6 +341,13 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
326
341
|
};
|
|
327
342
|
inlineRange?: {
|
|
328
343
|
placeholder?: PraxisDynamicFieldText;
|
|
344
|
+
minLabel?: PraxisDynamicFieldText;
|
|
345
|
+
maxLabel?: PraxisDynamicFieldText;
|
|
346
|
+
valueLabel?: PraxisDynamicFieldText;
|
|
347
|
+
quickPresetsLabel?: PraxisDynamicFieldText;
|
|
348
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
349
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
350
|
+
doneActionLabel?: PraxisDynamicFieldText;
|
|
329
351
|
cancelActionLabel?: PraxisDynamicFieldText;
|
|
330
352
|
};
|
|
331
353
|
inlineCurrencyRange?: {
|
|
@@ -341,6 +363,13 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
341
363
|
from?: PraxisDynamicFieldText;
|
|
342
364
|
upto?: PraxisDynamicFieldText;
|
|
343
365
|
};
|
|
366
|
+
validation?: {
|
|
367
|
+
required?: PraxisDynamicFieldText;
|
|
368
|
+
rangeOrder?: PraxisDynamicFieldText;
|
|
369
|
+
rangeMin?: PraxisDynamicFieldText;
|
|
370
|
+
rangeMax?: PraxisDynamicFieldText;
|
|
371
|
+
invalid?: PraxisDynamicFieldText;
|
|
372
|
+
};
|
|
344
373
|
};
|
|
345
374
|
inlineSelect?: {
|
|
346
375
|
placeholder?: PraxisDynamicFieldText;
|
|
@@ -359,6 +388,7 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
359
388
|
selectionTitle?: PraxisDynamicFieldText;
|
|
360
389
|
selectionBadgesAriaLabel?: PraxisDynamicFieldText;
|
|
361
390
|
removeSelectionAriaLabel?: PraxisDynamicFieldText;
|
|
391
|
+
fallbackOptionLabel?: PraxisDynamicFieldText;
|
|
362
392
|
emptyStateText?: PraxisDynamicFieldText;
|
|
363
393
|
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
364
394
|
clearActionLabel?: PraxisDynamicFieldText;
|
|
@@ -384,14 +414,43 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
384
414
|
inlineRelativePeriod?: {
|
|
385
415
|
placeholder?: PraxisDynamicFieldText;
|
|
386
416
|
panelSubtitle?: PraxisDynamicFieldText;
|
|
417
|
+
defaultOptions?: {
|
|
418
|
+
today?: PraxisDynamicFieldText;
|
|
419
|
+
yesterday?: PraxisDynamicFieldText;
|
|
420
|
+
last7?: PraxisDynamicFieldText;
|
|
421
|
+
last30?: PraxisDynamicFieldText;
|
|
422
|
+
thisMonth?: PraxisDynamicFieldText;
|
|
423
|
+
lastMonth?: PraxisDynamicFieldText;
|
|
424
|
+
thisQuarter?: PraxisDynamicFieldText;
|
|
425
|
+
thisYear?: PraxisDynamicFieldText;
|
|
426
|
+
};
|
|
387
427
|
progressEmptyLabel?: PraxisDynamicFieldText;
|
|
428
|
+
progressAriaLabel?: PraxisDynamicFieldText;
|
|
388
429
|
optionsGroupAriaLabel?: PraxisDynamicFieldText;
|
|
430
|
+
fallbackOptionLabel?: PraxisDynamicFieldText;
|
|
389
431
|
emptyStateText?: PraxisDynamicFieldText;
|
|
390
432
|
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
391
433
|
clearActionLabel?: PraxisDynamicFieldText;
|
|
392
434
|
cancelActionLabel?: PraxisDynamicFieldText;
|
|
393
435
|
applyActionLabel?: PraxisDynamicFieldText;
|
|
394
436
|
};
|
|
437
|
+
inlinePeriodRange?: {
|
|
438
|
+
minLabel?: PraxisDynamicFieldText;
|
|
439
|
+
maxLabel?: PraxisDynamicFieldText;
|
|
440
|
+
quickPresetsLabel?: PraxisDynamicFieldText;
|
|
441
|
+
};
|
|
442
|
+
inlineMonthRange?: {
|
|
443
|
+
quickPresetsLabel?: PraxisDynamicFieldText;
|
|
444
|
+
presetFull?: PraxisDynamicFieldText;
|
|
445
|
+
presetFirstHalf?: PraxisDynamicFieldText;
|
|
446
|
+
presetSecondHalf?: PraxisDynamicFieldText;
|
|
447
|
+
};
|
|
448
|
+
inlineYearRange?: {
|
|
449
|
+
minLabel?: PraxisDynamicFieldText;
|
|
450
|
+
maxLabel?: PraxisDynamicFieldText;
|
|
451
|
+
quickPresetsLabel?: PraxisDynamicFieldText;
|
|
452
|
+
presetFull?: PraxisDynamicFieldText;
|
|
453
|
+
};
|
|
395
454
|
inlineTime?: {
|
|
396
455
|
placeholder?: PraxisDynamicFieldText;
|
|
397
456
|
openPanelAriaLabel?: PraxisDynamicFieldText;
|
|
@@ -404,10 +463,18 @@ interface PraxisDynamicFieldsI18nOverrides {
|
|
|
404
463
|
inlineSentiment?: {
|
|
405
464
|
placeholder?: PraxisDynamicFieldText;
|
|
406
465
|
panelSubtitle?: PraxisDynamicFieldText;
|
|
466
|
+
defaultOptions?: {
|
|
467
|
+
terrible?: PraxisDynamicFieldText;
|
|
468
|
+
bad?: PraxisDynamicFieldText;
|
|
469
|
+
neutral?: PraxisDynamicFieldText;
|
|
470
|
+
good?: PraxisDynamicFieldText;
|
|
471
|
+
great?: PraxisDynamicFieldText;
|
|
472
|
+
};
|
|
407
473
|
barAriaEmpty?: PraxisDynamicFieldText;
|
|
408
474
|
barAriaSelected?: PraxisDynamicFieldText;
|
|
409
475
|
optionsGroupAriaLabel?: PraxisDynamicFieldText;
|
|
410
476
|
selectionPillsAriaLabel?: PraxisDynamicFieldText;
|
|
477
|
+
fallbackOptionLabel?: PraxisDynamicFieldText;
|
|
411
478
|
emptyStateText?: PraxisDynamicFieldText;
|
|
412
479
|
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
413
480
|
clearActionLabel?: PraxisDynamicFieldText;
|
|
@@ -1987,6 +2054,7 @@ declare class MaterialDateRangeComponent extends SimpleBaseInputComponent implem
|
|
|
1987
2054
|
picker: MatDateRangePicker<Date>;
|
|
1988
2055
|
private endDateInput?;
|
|
1989
2056
|
readonly shouldShowShortcuts: () => boolean;
|
|
2057
|
+
readonly shortcutOverlayAriaLabel: _angular_core.Signal<string>;
|
|
1990
2058
|
readonly overlayPositions: () => ConnectedPosition[];
|
|
1991
2059
|
private shortcutOverlayBelowPositions;
|
|
1992
2060
|
private shortcutOverlayLeftPositions;
|
|
@@ -3460,6 +3528,7 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3460
3528
|
inlineWidthPx: number;
|
|
3461
3529
|
inlineMaxWidthPx: number;
|
|
3462
3530
|
private resizeRafId;
|
|
3531
|
+
private displayFormatRafId;
|
|
3463
3532
|
private fieldLabelText;
|
|
3464
3533
|
private minValidator?;
|
|
3465
3534
|
private maxValidator?;
|
|
@@ -3513,8 +3582,10 @@ declare class InlineCurrencyComponent extends SimpleBaseInputComponent {
|
|
|
3513
3582
|
private allowNegative;
|
|
3514
3583
|
private applyMaskedInput;
|
|
3515
3584
|
private digitsToNumber;
|
|
3585
|
+
private normalizeDecimalPlaces;
|
|
3516
3586
|
private syncDigitsFromValue;
|
|
3517
3587
|
private formatDisplayValue;
|
|
3588
|
+
private scheduleDisplayFormat;
|
|
3518
3589
|
private formatDecimalValue;
|
|
3519
3590
|
private setCaretToEnd;
|
|
3520
3591
|
private detectNegative;
|
|
@@ -3684,6 +3755,7 @@ declare class InlineCurrencyRangeComponent extends SimpleBaseInputComponent {
|
|
|
3684
3755
|
private formatCurrency;
|
|
3685
3756
|
private currencyFormatter;
|
|
3686
3757
|
private resolveDecimalPlaces;
|
|
3758
|
+
private normalizeDecimalPlaces;
|
|
3687
3759
|
private allowNegative;
|
|
3688
3760
|
private recalculateInlineSizeBounds;
|
|
3689
3761
|
private resetFormatterCache;
|
|
@@ -3910,6 +3982,7 @@ declare class InlineRangeSliderComponent extends SimpleBaseInputComponent {
|
|
|
3910
3982
|
private usesCurrencyFormatting;
|
|
3911
3983
|
private usesPercentFormatting;
|
|
3912
3984
|
private resetFormatterCache;
|
|
3985
|
+
private normalizeDecimalPlaces;
|
|
3913
3986
|
private resetQuickPresetsCache;
|
|
3914
3987
|
private resetDistributionCache;
|
|
3915
3988
|
private resolveFieldLabelFromMetadata;
|
|
@@ -4259,6 +4332,7 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4259
4332
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
4260
4333
|
isInteractionBlocked(): boolean;
|
|
4261
4334
|
showQuickClear(): boolean;
|
|
4335
|
+
showPanelToggle(): boolean;
|
|
4262
4336
|
hasInlineValue(): boolean;
|
|
4263
4337
|
showInlinePlaceholder(): boolean;
|
|
4264
4338
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
@@ -4311,7 +4385,6 @@ declare class InlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
4311
4385
|
private recalculateInlineWidth;
|
|
4312
4386
|
private resolveWidthBounds;
|
|
4313
4387
|
private resolveChromeWidth;
|
|
4314
|
-
private parsePx;
|
|
4315
4388
|
private resolveFieldLabelFromMetadata;
|
|
4316
4389
|
private normalizeControlValue;
|
|
4317
4390
|
private resolveDisplayTime;
|
|
@@ -4571,6 +4644,8 @@ declare class InlineTreeSelectComponent extends SimpleBaseSelectComponent {
|
|
|
4571
4644
|
selectNode(node: MaterialTreeNode): void;
|
|
4572
4645
|
isSelected(node: MaterialTreeNode): boolean;
|
|
4573
4646
|
isNodeDisabled(node: MaterialTreeNode): boolean;
|
|
4647
|
+
isNodeSelectionOnlyDisabled(node: MaterialTreeNode): boolean;
|
|
4648
|
+
private isNodeSelectionBlocked;
|
|
4574
4649
|
handleKeydown(event: KeyboardEvent, node: MaterialTreeNode): void;
|
|
4575
4650
|
filteredTreeCount(): number;
|
|
4576
4651
|
emptyStateText(): string;
|
|
@@ -5118,9 +5193,11 @@ declare class InlineRelativePeriodComponent extends SimpleBaseSelectComponent {
|
|
|
5118
5193
|
onPanelDone(event: MouseEvent): void;
|
|
5119
5194
|
isInteractionBlocked(): boolean;
|
|
5120
5195
|
private parseOptionsSource;
|
|
5196
|
+
private defaultRelativePeriodOptions;
|
|
5121
5197
|
private selectedOptions;
|
|
5122
5198
|
private toVisualOption;
|
|
5123
5199
|
private resolveOptionSubtitle;
|
|
5200
|
+
private fallbackOptionLabel;
|
|
5124
5201
|
private resolveOptionIcon;
|
|
5125
5202
|
private selectedValues;
|
|
5126
5203
|
private resolveCloseOnSelect;
|
|
@@ -5240,8 +5317,10 @@ declare class InlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
5240
5317
|
onPanelDone(event: MouseEvent): void;
|
|
5241
5318
|
isInteractionBlocked(): boolean;
|
|
5242
5319
|
private parseOptionsSource;
|
|
5320
|
+
private defaultSentimentOptions;
|
|
5243
5321
|
private toVisualOption;
|
|
5244
5322
|
private resolveOptionEmoji;
|
|
5323
|
+
private fallbackOptionLabel;
|
|
5245
5324
|
private resolveOptionColor;
|
|
5246
5325
|
private sentimentGradientColorByIndex;
|
|
5247
5326
|
private sentimentGradientColorByRatio;
|
|
@@ -5374,6 +5453,7 @@ declare class InlineColorLabelComponent extends SimpleBaseSelectComponent<unknow
|
|
|
5374
5453
|
private parseOptionsSource;
|
|
5375
5454
|
private toVisualOption;
|
|
5376
5455
|
private resolveOptionColor;
|
|
5456
|
+
private fallbackOptionLabel;
|
|
5377
5457
|
private parseColorList;
|
|
5378
5458
|
private selectedValues;
|
|
5379
5459
|
private openPanel;
|
|
@@ -6000,17 +6080,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
|
|
|
6000
6080
|
}
|
|
6001
6081
|
|
|
6002
6082
|
/**
|
|
6003
|
-
*
|
|
6083
|
+
* Baseline file upload field.
|
|
6004
6084
|
*
|
|
6005
|
-
*
|
|
6006
|
-
*
|
|
6007
|
-
*
|
|
6085
|
+
* This component owns local file selection, validation and preview. Persisting
|
|
6086
|
+
* the selected file remains a host/backend concern; use @praxisui/files-upload
|
|
6087
|
+
* when the flow needs presign, progress, conflict policy or storage events.
|
|
6008
6088
|
*/
|
|
6009
|
-
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
6089
|
+
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
|
|
6010
6090
|
readonlyMode: boolean;
|
|
6011
6091
|
disabledMode: boolean;
|
|
6012
6092
|
visible: boolean;
|
|
6013
6093
|
presentationMode: boolean;
|
|
6094
|
+
readonly selectedFiles: _angular_core.WritableSignal<File[]>;
|
|
6095
|
+
readonly previewUrl: _angular_core.WritableSignal<string | null>;
|
|
6096
|
+
private externalValueSyncSubscription;
|
|
6097
|
+
readonly selectedSummaryText: _angular_core.Signal<string>;
|
|
6098
|
+
readonly selectedDetailText: _angular_core.Signal<string>;
|
|
6014
6099
|
/**
|
|
6015
6100
|
* Updates the control value when the user selects a file.
|
|
6016
6101
|
*/
|
|
@@ -6021,12 +6106,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
|
6021
6106
|
setFileUploadMetadata(metadata: ComponentMetadata): void;
|
|
6022
6107
|
fileAccept(): string | null;
|
|
6023
6108
|
allowsMultiple(): boolean;
|
|
6109
|
+
imagePreviewEnabled(): boolean;
|
|
6024
6110
|
isInteractionDisabled(): boolean;
|
|
6111
|
+
clearSelectedFiles(options?: {
|
|
6112
|
+
resetInput?: boolean;
|
|
6113
|
+
}): void;
|
|
6114
|
+
clearLabel(): string;
|
|
6115
|
+
clearAriaLabel(): string;
|
|
6116
|
+
selectedSummaryAriaLabel(): string;
|
|
6117
|
+
fileInputDescribedBy(): string | null;
|
|
6118
|
+
hintId(): string;
|
|
6119
|
+
errorId(): string;
|
|
6120
|
+
previewAltText(): string;
|
|
6121
|
+
writeValue(value: unknown): void;
|
|
6122
|
+
ngOnDestroy(): void;
|
|
6025
6123
|
/**
|
|
6026
6124
|
* CSS classes specific to the file upload wrapper.
|
|
6027
6125
|
*/
|
|
6028
6126
|
protected getSpecificCssClasses(): string[];
|
|
6127
|
+
protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
|
|
6029
6128
|
private metadataRecord;
|
|
6129
|
+
private updatePreview;
|
|
6130
|
+
private clearPreview;
|
|
6131
|
+
private validateSelectedFiles;
|
|
6132
|
+
private isAcceptedFile;
|
|
6133
|
+
private maxFileSize;
|
|
6134
|
+
private maxFiles;
|
|
6135
|
+
private applyFileError;
|
|
6136
|
+
private clearFileErrors;
|
|
6137
|
+
private syncSelectedFilesFromValue;
|
|
6138
|
+
private extractFilesFromValue;
|
|
6139
|
+
private isFile;
|
|
6140
|
+
private isImageFile;
|
|
6141
|
+
private hasKnownImageExtension;
|
|
6142
|
+
private formatBytes;
|
|
6143
|
+
private dynamicFieldsText;
|
|
6030
6144
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
|
|
6031
6145
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialFileUploadComponent, "pdx-material-file-upload", 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>;
|
|
6032
6146
|
}
|
|
@@ -6813,8 +6927,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
6813
6927
|
|
|
6814
6928
|
declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6815
6929
|
|
|
6930
|
+
declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6931
|
+
|
|
6932
|
+
declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
|
|
6933
|
+
|
|
6816
6934
|
declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6817
6935
|
|
|
6936
|
+
declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
|
|
6937
|
+
|
|
6818
6938
|
declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6819
6939
|
|
|
6820
6940
|
declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -7531,5 +7651,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7531
7651
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7532
7652
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7533
7653
|
|
|
7534
|
-
export { 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_PRESENTATION_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EditableCollectionComponent, EmailInputComponent, EntityLookupDialogComponent, 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_EDITABLE_COLLECTION_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_ENTITY_LOOKUP_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_PHONE_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_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES, PRAXIS_DYNAMIC_FIELDS_EDITORIAL_WAVE_1, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRAXIS_DYNAMIC_FIELDS_WAVE_1_COMPONENT_METADATA, 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, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
|
|
7654
|
+
export { 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_PRESENTATION_STATE_RECIPE, DYNAMIC_FIELD_READONLY_STATE_RECIPE, DateInputComponent, DateUtilsService, DatetimeLocalInputComponent, DynamicFieldLoaderDirective, EditableCollectionComponent, EmailInputComponent, EntityLookupDialogComponent, 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_EDITABLE_COLLECTION_COMPONENT_METADATA, PDX_EMAIL_INPUT_COMPONENT_METADATA, PDX_ENTITY_LOOKUP_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_PHONE_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_ASYNC_SELECT_COMPONENT_METADATA, PDX_MATERIAL_AUTOCOMPLETE_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_SLIDE_TOGGLE_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_AUTHORING_MANIFEST, PRAXIS_DYNAMIC_FIELDS_AUTHORING_PROFILES, PRAXIS_DYNAMIC_FIELDS_EDITORIAL_WAVE_1, PRAXIS_DYNAMIC_FIELDS_EN_US, PRAXIS_DYNAMIC_FIELDS_I18N, PRAXIS_DYNAMIC_FIELDS_LOGGER_BACKEND, PRAXIS_DYNAMIC_FIELDS_PT_BR, PRAXIS_DYNAMIC_FIELDS_WAVE_1_COMPONENT_METADATA, 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, providePraxisDynamicFieldsWave1EditorialRegistry, registerPraxisDynamicFieldsWave1EditorialDescriptors, resolvePraxisDynamicFieldsText, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
|
|
7535
7655
|
export type { BaseDynamicFieldComponent, BaseValidationConfig, ComponentLifecycleEvent, ComponentLoadResult, ComponentRegistration, ConfirmDialogData, DynamicFieldCatalogEntry, DynamicFieldCatalogFamily, DynamicFieldCatalogIconKey, DynamicFieldCatalogIconSemantic, DynamicFieldCatalogIconTone, DynamicFieldCatalogStatus, DynamicFieldCatalogTrack, DynamicFieldDataSourceKind, DynamicFieldDocLinks, DynamicFieldInteractionPattern, DynamicFieldLoaderRenderErrorEvent, DynamicFieldPreviewPreset, 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 };
|