@praxisui/dynamic-fields 9.0.0-beta.2 → 9.0.0-beta.21
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 +14 -4
- package/ai/component-registry.json +266264 -0
- package/docs/dynamic-fields-field-catalog.md +2 -3
- 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 +1421 -467
- package/package.json +9 -12
- package/src/lib/components/field-shell/praxis-field-shell.json-api.md +33 -3
- 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-checkbox-group/pdx-material-checkbox-group.json-api.md +5 -3
- package/src/lib/components/material-file-upload/pdx-material-file-upload.json-api.md +58 -27
- package/types/praxisui-dynamic-fields.d.ts +130 -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;
|
|
@@ -5914,6 +5994,7 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
5914
5994
|
onCheckboxControlKeydown(event: KeyboardEvent): void;
|
|
5915
5995
|
private syncDisabledModeControlState;
|
|
5916
5996
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
5997
|
+
setExternalControl(control: AbstractControl): void;
|
|
5917
5998
|
/** Disables options when maxSelections reached */
|
|
5918
5999
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
5919
6000
|
protected getSpecificCssClasses(): string[];
|
|
@@ -5949,6 +6030,8 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent i
|
|
|
5949
6030
|
private shouldToggleFromBooleanContent;
|
|
5950
6031
|
private shouldToggleFromMultipleContent;
|
|
5951
6032
|
private toggleBooleanCheckbox;
|
|
6033
|
+
private normalizeBooleanControlValue;
|
|
6034
|
+
private coerceBooleanControlValue;
|
|
5952
6035
|
private syncBooleanOperationalEvents;
|
|
5953
6036
|
private humanizeName;
|
|
5954
6037
|
optionLabelId(option: SelectOption<unknown>): string;
|
|
@@ -6000,17 +6083,22 @@ declare class MaterialSelectionListComponent extends SimpleBaseSelectComponent i
|
|
|
6000
6083
|
}
|
|
6001
6084
|
|
|
6002
6085
|
/**
|
|
6003
|
-
*
|
|
6086
|
+
* Baseline file upload field.
|
|
6004
6087
|
*
|
|
6005
|
-
*
|
|
6006
|
-
*
|
|
6007
|
-
*
|
|
6088
|
+
* This component owns local file selection, validation and preview. Persisting
|
|
6089
|
+
* the selected file remains a host/backend concern; use @praxisui/files-upload
|
|
6090
|
+
* when the flow needs presign, progress, conflict policy or storage events.
|
|
6008
6091
|
*/
|
|
6009
|
-
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
6092
|
+
declare class MaterialFileUploadComponent extends SimpleBaseInputComponent implements OnDestroy {
|
|
6010
6093
|
readonlyMode: boolean;
|
|
6011
6094
|
disabledMode: boolean;
|
|
6012
6095
|
visible: boolean;
|
|
6013
6096
|
presentationMode: boolean;
|
|
6097
|
+
readonly selectedFiles: _angular_core.WritableSignal<File[]>;
|
|
6098
|
+
readonly previewUrl: _angular_core.WritableSignal<string | null>;
|
|
6099
|
+
private externalValueSyncSubscription;
|
|
6100
|
+
readonly selectedSummaryText: _angular_core.Signal<string>;
|
|
6101
|
+
readonly selectedDetailText: _angular_core.Signal<string>;
|
|
6014
6102
|
/**
|
|
6015
6103
|
* Updates the control value when the user selects a file.
|
|
6016
6104
|
*/
|
|
@@ -6021,12 +6109,41 @@ declare class MaterialFileUploadComponent extends SimpleBaseInputComponent {
|
|
|
6021
6109
|
setFileUploadMetadata(metadata: ComponentMetadata): void;
|
|
6022
6110
|
fileAccept(): string | null;
|
|
6023
6111
|
allowsMultiple(): boolean;
|
|
6112
|
+
imagePreviewEnabled(): boolean;
|
|
6024
6113
|
isInteractionDisabled(): boolean;
|
|
6114
|
+
clearSelectedFiles(options?: {
|
|
6115
|
+
resetInput?: boolean;
|
|
6116
|
+
}): void;
|
|
6117
|
+
clearLabel(): string;
|
|
6118
|
+
clearAriaLabel(): string;
|
|
6119
|
+
selectedSummaryAriaLabel(): string;
|
|
6120
|
+
fileInputDescribedBy(): string | null;
|
|
6121
|
+
hintId(): string;
|
|
6122
|
+
errorId(): string;
|
|
6123
|
+
previewAltText(): string;
|
|
6124
|
+
writeValue(value: unknown): void;
|
|
6125
|
+
ngOnDestroy(): void;
|
|
6025
6126
|
/**
|
|
6026
6127
|
* CSS classes specific to the file upload wrapper.
|
|
6027
6128
|
*/
|
|
6028
6129
|
protected getSpecificCssClasses(): string[];
|
|
6130
|
+
protected onActiveControlChanged(previousControl: FormControl, currentControl: FormControl): void;
|
|
6029
6131
|
private metadataRecord;
|
|
6132
|
+
private updatePreview;
|
|
6133
|
+
private clearPreview;
|
|
6134
|
+
private validateSelectedFiles;
|
|
6135
|
+
private isAcceptedFile;
|
|
6136
|
+
private maxFileSize;
|
|
6137
|
+
private maxFiles;
|
|
6138
|
+
private applyFileError;
|
|
6139
|
+
private clearFileErrors;
|
|
6140
|
+
private syncSelectedFilesFromValue;
|
|
6141
|
+
private extractFilesFromValue;
|
|
6142
|
+
private isFile;
|
|
6143
|
+
private isImageFile;
|
|
6144
|
+
private hasKnownImageExtension;
|
|
6145
|
+
private formatBytes;
|
|
6146
|
+
private dynamicFieldsText;
|
|
6030
6147
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialFileUploadComponent, never>;
|
|
6031
6148
|
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
6149
|
}
|
|
@@ -6813,8 +6930,14 @@ declare const PDX_MATERIAL_RADIO_GROUP_COMPONENT_METADATA: ComponentDocMeta;
|
|
|
6813
6930
|
|
|
6814
6931
|
declare const PDX_MATERIAL_SEARCHABLE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6815
6932
|
|
|
6933
|
+
declare const PDX_MATERIAL_ASYNC_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
6934
|
+
|
|
6935
|
+
declare const PDX_MATERIAL_AUTOCOMPLETE_COMPONENT_METADATA: ComponentDocMeta;
|
|
6936
|
+
|
|
6816
6937
|
declare const PDX_MATERIAL_SELECTION_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6817
6938
|
|
|
6939
|
+
declare const PDX_MATERIAL_SLIDE_TOGGLE_COMPONENT_METADATA: ComponentDocMeta;
|
|
6940
|
+
|
|
6818
6941
|
declare const PDX_MATERIAL_TRANSFER_LIST_COMPONENT_METADATA: ComponentDocMeta;
|
|
6819
6942
|
|
|
6820
6943
|
declare const PDX_MATERIAL_TREE_SELECT_COMPONENT_METADATA: ComponentDocMeta;
|
|
@@ -7531,5 +7654,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7531
7654
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7532
7655
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7533
7656
|
|
|
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 };
|
|
7657
|
+
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
7658
|
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 };
|