@praxisui/dynamic-fields 1.0.0-beta.61 → 1.0.0-beta.62
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 -5
- package/fesm2022/praxisui-dynamic-fields.mjs +1904 -783
- package/fesm2022/praxisui-dynamic-fields.mjs.map +1 -1
- package/index.d.ts +386 -27
- package/package.json +9 -8
package/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { WritableSignal, OnInit, OnDestroy, AfterViewInit, DestroyRef, ElementRef, ChangeDetectorRef, OnChanges, TemplateRef, EventEmitter, ComponentRef, SimpleChanges,
|
|
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, 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, 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';
|
|
6
6
|
import { Router } from '@angular/router';
|
|
7
7
|
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
8
8
|
import { MatSelect } from '@angular/material/select';
|
|
@@ -209,6 +209,218 @@ declare function isLoadingCapableComponent(component: BaseDynamicFieldComponent)
|
|
|
209
209
|
setLoading: (loading: boolean) => void;
|
|
210
210
|
};
|
|
211
211
|
|
|
212
|
+
type PraxisDynamicFieldText = PraxisTextValue;
|
|
213
|
+
interface PraxisDynamicFieldsI18nOverrides {
|
|
214
|
+
actions?: {
|
|
215
|
+
clear?: {
|
|
216
|
+
tooltip?: PraxisDynamicFieldText;
|
|
217
|
+
ariaLabel?: PraxisDynamicFieldText;
|
|
218
|
+
ariaLabelWithLabel?: PraxisDynamicFieldText;
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
dialog?: {
|
|
222
|
+
confirm?: PraxisDynamicFieldText;
|
|
223
|
+
cancel?: PraxisDynamicFieldText;
|
|
224
|
+
};
|
|
225
|
+
button?: {
|
|
226
|
+
confirmTitle?: PraxisDynamicFieldText;
|
|
227
|
+
confirmMessage?: PraxisDynamicFieldText;
|
|
228
|
+
defaultLabel?: PraxisDynamicFieldText;
|
|
229
|
+
shortcutDescription?: PraxisDynamicFieldText;
|
|
230
|
+
validationLoadingAriaLabel?: PraxisDynamicFieldText;
|
|
231
|
+
validationLoadingSrOnly?: PraxisDynamicFieldText;
|
|
232
|
+
};
|
|
233
|
+
confirm?: {
|
|
234
|
+
title?: PraxisDynamicFieldText;
|
|
235
|
+
message?: PraxisDynamicFieldText;
|
|
236
|
+
confirmText?: PraxisDynamicFieldText;
|
|
237
|
+
cancelText?: PraxisDynamicFieldText;
|
|
238
|
+
};
|
|
239
|
+
validation?: {
|
|
240
|
+
genericFailed?: PraxisDynamicFieldText;
|
|
241
|
+
};
|
|
242
|
+
select?: {
|
|
243
|
+
loadSchemaError?: PraxisDynamicFieldText;
|
|
244
|
+
loadOptionsError?: PraxisDynamicFieldText;
|
|
245
|
+
emptyOptionText?: PraxisDynamicFieldText;
|
|
246
|
+
missingOptionLabel?: PraxisDynamicFieldText;
|
|
247
|
+
searchPlaceholder?: PraxisDynamicFieldText;
|
|
248
|
+
searchAriaLabel?: PraxisDynamicFieldText;
|
|
249
|
+
loading?: PraxisDynamicFieldText;
|
|
250
|
+
loadMore?: PraxisDynamicFieldText;
|
|
251
|
+
endOfList?: PraxisDynamicFieldText;
|
|
252
|
+
loadingOptionsAriaLabel?: PraxisDynamicFieldText;
|
|
253
|
+
};
|
|
254
|
+
tree?: {
|
|
255
|
+
expandNodeAriaLabel?: PraxisDynamicFieldText;
|
|
256
|
+
collapseNodeAriaLabel?: PraxisDynamicFieldText;
|
|
257
|
+
};
|
|
258
|
+
loader?: {
|
|
259
|
+
missingComponent?: PraxisDynamicFieldText;
|
|
260
|
+
};
|
|
261
|
+
password?: {
|
|
262
|
+
reveal?: {
|
|
263
|
+
show?: PraxisDynamicFieldText;
|
|
264
|
+
hide?: PraxisDynamicFieldText;
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
inlineDistance?: {
|
|
268
|
+
placeholder?: PraxisDynamicFieldText;
|
|
269
|
+
panelSubtitle?: PraxisDynamicFieldText;
|
|
270
|
+
unitToggleAriaLabel?: PraxisDynamicFieldText;
|
|
271
|
+
presetsAriaLabel?: PraxisDynamicFieldText;
|
|
272
|
+
ariaSelection?: PraxisDynamicFieldText;
|
|
273
|
+
valueSingle?: PraxisDynamicFieldText;
|
|
274
|
+
valueRange?: PraxisDynamicFieldText;
|
|
275
|
+
valueFrom?: PraxisDynamicFieldText;
|
|
276
|
+
valueUpto?: PraxisDynamicFieldText;
|
|
277
|
+
displayFrom?: PraxisDynamicFieldText;
|
|
278
|
+
displayUpto?: PraxisDynamicFieldText;
|
|
279
|
+
presetFrom?: PraxisDynamicFieldText;
|
|
280
|
+
};
|
|
281
|
+
inlineDateRange?: {
|
|
282
|
+
placeholder?: PraxisDynamicFieldText;
|
|
283
|
+
startPlaceholder?: PraxisDynamicFieldText;
|
|
284
|
+
endPlaceholder?: PraxisDynamicFieldText;
|
|
285
|
+
startAriaLabel?: PraxisDynamicFieldText;
|
|
286
|
+
endAriaLabel?: PraxisDynamicFieldText;
|
|
287
|
+
ariaSelection?: PraxisDynamicFieldText;
|
|
288
|
+
quickPresetsAriaLabel?: PraxisDynamicFieldText;
|
|
289
|
+
overlayCancelLabel?: PraxisDynamicFieldText;
|
|
290
|
+
overlayApplyLabel?: PraxisDynamicFieldText;
|
|
291
|
+
overlayActionsAriaLabel?: PraxisDynamicFieldText;
|
|
292
|
+
overlayCancelAriaLabel?: PraxisDynamicFieldText;
|
|
293
|
+
overlayApplyAriaLabel?: PraxisDynamicFieldText;
|
|
294
|
+
presetAriaLabel?: PraxisDynamicFieldText;
|
|
295
|
+
presetAriaLabelModeAuto?: PraxisDynamicFieldText;
|
|
296
|
+
presetAriaLabelModeConfirm?: PraxisDynamicFieldText;
|
|
297
|
+
};
|
|
298
|
+
inlineTimeRange?: {
|
|
299
|
+
placeholder?: PraxisDynamicFieldText;
|
|
300
|
+
ariaSelection?: PraxisDynamicFieldText;
|
|
301
|
+
quickPresetsAriaLabel?: PraxisDynamicFieldText;
|
|
302
|
+
startInputLabel?: PraxisDynamicFieldText;
|
|
303
|
+
endInputLabel?: PraxisDynamicFieldText;
|
|
304
|
+
presetAriaLabel?: PraxisDynamicFieldText;
|
|
305
|
+
validation?: {
|
|
306
|
+
range?: PraxisDynamicFieldText;
|
|
307
|
+
minDistance?: PraxisDynamicFieldText;
|
|
308
|
+
maxDistance?: PraxisDynamicFieldText;
|
|
309
|
+
invalid?: PraxisDynamicFieldText;
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
inlineCurrencyRange?: {
|
|
313
|
+
placeholder?: PraxisDynamicFieldText;
|
|
314
|
+
ariaSelection?: PraxisDynamicFieldText;
|
|
315
|
+
value?: {
|
|
316
|
+
from?: PraxisDynamicFieldText;
|
|
317
|
+
upto?: PraxisDynamicFieldText;
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
inlineSelect?: {
|
|
321
|
+
placeholder?: PraxisDynamicFieldText;
|
|
322
|
+
searchPlaceholder?: PraxisDynamicFieldText;
|
|
323
|
+
};
|
|
324
|
+
inlineTreeSelect?: {
|
|
325
|
+
placeholder?: PraxisDynamicFieldText;
|
|
326
|
+
searchPlaceholder?: PraxisDynamicFieldText;
|
|
327
|
+
emptySearch?: PraxisDynamicFieldText;
|
|
328
|
+
emptyDefault?: PraxisDynamicFieldText;
|
|
329
|
+
};
|
|
330
|
+
inlineColorLabel?: {
|
|
331
|
+
placeholder?: PraxisDynamicFieldText;
|
|
332
|
+
panelSubtitle?: PraxisDynamicFieldText;
|
|
333
|
+
optionsGroupAriaLabel?: PraxisDynamicFieldText;
|
|
334
|
+
selectionTitle?: PraxisDynamicFieldText;
|
|
335
|
+
selectionBadgesAriaLabel?: PraxisDynamicFieldText;
|
|
336
|
+
removeSelectionAriaLabel?: PraxisDynamicFieldText;
|
|
337
|
+
emptyStateText?: PraxisDynamicFieldText;
|
|
338
|
+
};
|
|
339
|
+
inlinePipeline?: {
|
|
340
|
+
placeholder?: PraxisDynamicFieldText;
|
|
341
|
+
panelSubtitle?: PraxisDynamicFieldText;
|
|
342
|
+
searchPlaceholder?: PraxisDynamicFieldText;
|
|
343
|
+
selectionActionsAriaLabel?: PraxisDynamicFieldText;
|
|
344
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
345
|
+
selectionPillsAriaLabel?: PraxisDynamicFieldText;
|
|
346
|
+
barAriaEmpty?: PraxisDynamicFieldText;
|
|
347
|
+
barAriaSelected?: PraxisDynamicFieldText;
|
|
348
|
+
optionsGroupAriaLabelMultiple?: PraxisDynamicFieldText;
|
|
349
|
+
optionsGroupAriaLabelSingle?: PraxisDynamicFieldText;
|
|
350
|
+
emptyStateText?: PraxisDynamicFieldText;
|
|
351
|
+
};
|
|
352
|
+
inlineRelativePeriod?: {
|
|
353
|
+
placeholder?: PraxisDynamicFieldText;
|
|
354
|
+
panelSubtitle?: PraxisDynamicFieldText;
|
|
355
|
+
progressEmptyLabel?: PraxisDynamicFieldText;
|
|
356
|
+
optionsGroupAriaLabel?: PraxisDynamicFieldText;
|
|
357
|
+
emptyStateText?: PraxisDynamicFieldText;
|
|
358
|
+
};
|
|
359
|
+
inlineTime?: {
|
|
360
|
+
placeholder?: PraxisDynamicFieldText;
|
|
361
|
+
openPanelAriaLabel?: PraxisDynamicFieldText;
|
|
362
|
+
closePanelAriaLabel?: PraxisDynamicFieldText;
|
|
363
|
+
hourLabel?: PraxisDynamicFieldText;
|
|
364
|
+
minuteLabel?: PraxisDynamicFieldText;
|
|
365
|
+
secondLabel?: PraxisDynamicFieldText;
|
|
366
|
+
emptyStateLabel?: PraxisDynamicFieldText;
|
|
367
|
+
};
|
|
368
|
+
inlineSentiment?: {
|
|
369
|
+
placeholder?: PraxisDynamicFieldText;
|
|
370
|
+
panelSubtitle?: PraxisDynamicFieldText;
|
|
371
|
+
barAriaEmpty?: PraxisDynamicFieldText;
|
|
372
|
+
barAriaSelected?: PraxisDynamicFieldText;
|
|
373
|
+
optionsGroupAriaLabel?: PraxisDynamicFieldText;
|
|
374
|
+
selectionPillsAriaLabel?: PraxisDynamicFieldText;
|
|
375
|
+
emptyStateText?: PraxisDynamicFieldText;
|
|
376
|
+
};
|
|
377
|
+
autocomplete?: {
|
|
378
|
+
inputAriaLabel?: PraxisDynamicFieldText;
|
|
379
|
+
noResults?: PraxisDynamicFieldText;
|
|
380
|
+
};
|
|
381
|
+
color?: {
|
|
382
|
+
paletteButtonAriaLabel?: PraxisDynamicFieldText;
|
|
383
|
+
openPickerTooltip?: PraxisDynamicFieldText;
|
|
384
|
+
openPickerAriaLabel?: PraxisDynamicFieldText;
|
|
385
|
+
copyValueTooltip?: PraxisDynamicFieldText;
|
|
386
|
+
copyValueAriaLabel?: PraxisDynamicFieldText;
|
|
387
|
+
nativeInputAriaLabel?: PraxisDynamicFieldText;
|
|
388
|
+
recentSectionLabel?: PraxisDynamicFieldText;
|
|
389
|
+
swatchAriaLabel?: PraxisDynamicFieldText;
|
|
390
|
+
gradientTabLabel?: PraxisDynamicFieldText;
|
|
391
|
+
paletteTabLabel?: PraxisDynamicFieldText;
|
|
392
|
+
opacityLabel?: PraxisDynamicFieldText;
|
|
393
|
+
addPaletteColorLabel?: PraxisDynamicFieldText;
|
|
394
|
+
clearActionLabel?: PraxisDynamicFieldText;
|
|
395
|
+
cancelActionLabel?: PraxisDynamicFieldText;
|
|
396
|
+
applyActionLabel?: PraxisDynamicFieldText;
|
|
397
|
+
};
|
|
398
|
+
multiSelect?: {
|
|
399
|
+
selectAllLabel?: PraxisDynamicFieldText;
|
|
400
|
+
};
|
|
401
|
+
transferList?: {
|
|
402
|
+
availableLabel?: PraxisDynamicFieldText;
|
|
403
|
+
selectedLabel?: PraxisDynamicFieldText;
|
|
404
|
+
moveSelectedToRightAriaLabel?: PraxisDynamicFieldText;
|
|
405
|
+
moveAllToRightAriaLabel?: PraxisDynamicFieldText;
|
|
406
|
+
moveSelectedToLeftAriaLabel?: PraxisDynamicFieldText;
|
|
407
|
+
moveAllToLeftAriaLabel?: PraxisDynamicFieldText;
|
|
408
|
+
};
|
|
409
|
+
checkboxGroup?: {
|
|
410
|
+
optionUnavailableDescription?: PraxisDynamicFieldText;
|
|
411
|
+
};
|
|
412
|
+
}
|
|
413
|
+
interface PraxisDynamicFieldsI18nOptions {
|
|
414
|
+
locale?: string;
|
|
415
|
+
fallbackLocale?: string;
|
|
416
|
+
dictionaries?: Record<string, PraxisI18nDictionary>;
|
|
417
|
+
overrides?: PraxisDynamicFieldsI18nOverrides;
|
|
418
|
+
}
|
|
419
|
+
declare const PRAXIS_DYNAMIC_FIELDS_I18N: InjectionToken<PraxisDynamicFieldsI18nOverrides>;
|
|
420
|
+
declare function createPraxisDynamicFieldsI18nConfig(options?: PraxisDynamicFieldsI18nOptions): Partial<PraxisI18nConfig>;
|
|
421
|
+
declare function providePraxisDynamicFieldsI18n(options?: PraxisDynamicFieldsI18nOptions): Provider[];
|
|
422
|
+
declare function resolvePraxisDynamicFieldsText(value: PraxisDynamicFieldText | null | undefined, fallback?: string): PraxisI18nMessageDescriptor;
|
|
423
|
+
|
|
212
424
|
interface BasicComponentState {
|
|
213
425
|
initialized: boolean;
|
|
214
426
|
focused: boolean;
|
|
@@ -254,6 +466,8 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
254
466
|
protected readonly elementRef: ElementRef<any>;
|
|
255
467
|
protected readonly cdr: ChangeDetectorRef;
|
|
256
468
|
private readonly injector;
|
|
469
|
+
protected readonly i18n: PraxisI18nService;
|
|
470
|
+
protected readonly dynamicFieldsI18n: PraxisDynamicFieldsI18nOverrides | null;
|
|
257
471
|
private resolvedNgControl;
|
|
258
472
|
/** Subject para eventos de lifecycle */
|
|
259
473
|
readonly lifecycleEvents$: BehaviorSubject<ComponentLifecycleEvent | null>;
|
|
@@ -476,6 +690,16 @@ declare abstract class SimpleBaseInputComponent implements ControlValueAccessor,
|
|
|
476
690
|
protected getSpecificCssClasses(): string[];
|
|
477
691
|
private setupFormControlIntegration;
|
|
478
692
|
private refreshErrorTooltip;
|
|
693
|
+
protected tDynamicFields(keySuffix: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
694
|
+
protected resolveDynamicFieldsMessage(value: string | {
|
|
695
|
+
key?: string;
|
|
696
|
+
text?: string;
|
|
697
|
+
params?: Record<string, any>;
|
|
698
|
+
} | null | undefined, keySuffix: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
699
|
+
protected clearActionTooltip(): string | null;
|
|
700
|
+
protected clearActionAriaLabel(): string;
|
|
701
|
+
private resolveClearActionContextLabel;
|
|
702
|
+
private interpolateValidationMessage;
|
|
479
703
|
private setupValidators;
|
|
480
704
|
private applyValidators;
|
|
481
705
|
private createCustomValidator;
|
|
@@ -523,6 +747,8 @@ declare abstract class SimpleBaseButtonComponent implements OnInit, OnDestroy, B
|
|
|
523
747
|
protected readonly cdr: ChangeDetectorRef;
|
|
524
748
|
protected readonly router: Router;
|
|
525
749
|
protected readonly dialog: MatDialog;
|
|
750
|
+
protected readonly i18n: PraxisI18nService;
|
|
751
|
+
protected readonly dynamicFieldsI18n: PraxisDynamicFieldsI18nOverrides | null;
|
|
526
752
|
/** Subject para eventos de lifecycle */
|
|
527
753
|
readonly lifecycleEvents$: BehaviorSubject<ComponentLifecycleEvent | null>;
|
|
528
754
|
/** Metadata do componente */
|
|
@@ -624,6 +850,12 @@ declare abstract class SimpleBaseButtonComponent implements OnInit, OnDestroy, B
|
|
|
624
850
|
* Emite evento de lifecycle
|
|
625
851
|
*/
|
|
626
852
|
private emitLifecycleEvent;
|
|
853
|
+
protected tDynamicFields(keySuffix: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
854
|
+
protected resolveDynamicFieldsMessage(value: string | {
|
|
855
|
+
key?: string;
|
|
856
|
+
text?: string;
|
|
857
|
+
params?: Record<string, any>;
|
|
858
|
+
} | null | undefined, keySuffix: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
627
859
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SimpleBaseButtonComponent, never>;
|
|
628
860
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<SimpleBaseButtonComponent, never, never, {}, { "actionExecuted": "actionExecuted"; "click": "click"; "focusChange": "focusChange"; }, never, never, true, never>;
|
|
629
861
|
}
|
|
@@ -638,6 +870,8 @@ interface SelectOption<T = any> {
|
|
|
638
870
|
value: T;
|
|
639
871
|
/** Whether the option is disabled */
|
|
640
872
|
disabled?: boolean;
|
|
873
|
+
/** Optional supporting text rendered by components that expose rich option content */
|
|
874
|
+
description?: string;
|
|
641
875
|
}
|
|
642
876
|
/**
|
|
643
877
|
* Metadata configuration for simple select components.
|
|
@@ -775,6 +1009,12 @@ declare abstract class SimpleBaseSelectComponent<T = any> extends SimpleBaseInpu
|
|
|
775
1009
|
* Cor do ícone de reset do painel.
|
|
776
1010
|
*/
|
|
777
1011
|
panelResetIconColor(): string | undefined;
|
|
1012
|
+
searchInputPlaceholder(): string;
|
|
1013
|
+
searchInputAriaLabel(): string;
|
|
1014
|
+
loadingOptionsLabel(): string;
|
|
1015
|
+
loadMoreOptionsLabel(): string;
|
|
1016
|
+
endOfOptionsLabel(): string;
|
|
1017
|
+
loadingOptionsAriaLabel(): string;
|
|
778
1018
|
/**
|
|
779
1019
|
* Ícone para estado "selecionado" em opções do painel.
|
|
780
1020
|
*/
|
|
@@ -883,6 +1123,10 @@ declare class OptionStore<ID = string | number> {
|
|
|
883
1123
|
get items(): OptionDTO<ID>[];
|
|
884
1124
|
}
|
|
885
1125
|
|
|
1126
|
+
declare const PRAXIS_DYNAMIC_FIELDS_PT_BR: PraxisI18nDictionary;
|
|
1127
|
+
|
|
1128
|
+
declare const PRAXIS_DYNAMIC_FIELDS_EN_US: PraxisI18nDictionary;
|
|
1129
|
+
|
|
886
1130
|
/**
|
|
887
1131
|
* @fileoverview Diretiva para renderização dinâmica de campos de formulário
|
|
888
1132
|
*
|
|
@@ -924,6 +1168,41 @@ declare class OptionStore<ID = string | number> {
|
|
|
924
1168
|
* deterministically to prevent memory leaks.
|
|
925
1169
|
*/
|
|
926
1170
|
|
|
1171
|
+
interface DynamicFieldLoaderRenderErrorEvent {
|
|
1172
|
+
phase: 'executeRendering' | 'detectChanges';
|
|
1173
|
+
fieldName: string;
|
|
1174
|
+
/**
|
|
1175
|
+
* Código estável para telemetria, regras de suporte e tratamento no host.
|
|
1176
|
+
*/
|
|
1177
|
+
code: 'component_resolution_failed' | 'component_missing' | 'component_detect_changes_failed';
|
|
1178
|
+
/**
|
|
1179
|
+
* Retrocompatibilidade prática: mantém o erro técnico no mesmo campo
|
|
1180
|
+
* já consumido pelos hosts existentes.
|
|
1181
|
+
*/
|
|
1182
|
+
error: unknown;
|
|
1183
|
+
/**
|
|
1184
|
+
* Alias explícito para consumo novo e leitura sem ambiguidade.
|
|
1185
|
+
*/
|
|
1186
|
+
technicalError: unknown;
|
|
1187
|
+
/**
|
|
1188
|
+
* Mensagem técnica derivada do erro original, útil para telemetria e suporte.
|
|
1189
|
+
*/
|
|
1190
|
+
technicalMessage: string;
|
|
1191
|
+
/**
|
|
1192
|
+
* Mensagem pronta para UX/host quando existir uma versão localizada.
|
|
1193
|
+
* Ausente para erros puramente técnicos.
|
|
1194
|
+
*/
|
|
1195
|
+
userMessage?: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* Contexto mínimo e serializável para observabilidade corporativa.
|
|
1198
|
+
*/
|
|
1199
|
+
context?: {
|
|
1200
|
+
controlType?: string;
|
|
1201
|
+
index?: number;
|
|
1202
|
+
stage?: string;
|
|
1203
|
+
};
|
|
1204
|
+
fatal: boolean;
|
|
1205
|
+
}
|
|
927
1206
|
/**
|
|
928
1207
|
* Diretiva que renderiza campos de formulário dinamicamente baseado em metadados.
|
|
929
1208
|
*
|
|
@@ -959,6 +1238,8 @@ declare class DynamicFieldLoaderDirective implements OnInit, OnDestroy, OnChange
|
|
|
959
1238
|
private readonly viewContainer;
|
|
960
1239
|
private readonly componentRegistry;
|
|
961
1240
|
private readonly cdr;
|
|
1241
|
+
private readonly i18n;
|
|
1242
|
+
private readonly dynamicFieldsI18n;
|
|
962
1243
|
/**
|
|
963
1244
|
* Metadados dos campos a serem renderizados.
|
|
964
1245
|
*
|
|
@@ -1092,12 +1373,7 @@ declare class DynamicFieldLoaderDirective implements OnInit, OnDestroy, OnChange
|
|
|
1092
1373
|
fieldName: string;
|
|
1093
1374
|
}>;
|
|
1094
1375
|
/** Evento emitido quando ocorre erro durante renderização de campo */
|
|
1095
|
-
renderError: EventEmitter<
|
|
1096
|
-
phase: "executeRendering" | "detectChanges";
|
|
1097
|
-
fieldName: string;
|
|
1098
|
-
error: unknown;
|
|
1099
|
-
fatal: boolean;
|
|
1100
|
-
}>;
|
|
1376
|
+
renderError: EventEmitter<DynamicFieldLoaderRenderErrorEvent>;
|
|
1101
1377
|
/** @internal Emits when a field is hovered in canvas mode */
|
|
1102
1378
|
canvasMouseEnter: EventEmitter<{
|
|
1103
1379
|
field: FieldMetadata;
|
|
@@ -1144,6 +1420,8 @@ declare class DynamicFieldLoaderDirective implements OnInit, OnDestroy, OnChange
|
|
|
1144
1420
|
private isDestroyedLifecycleError;
|
|
1145
1421
|
private reportRenderError;
|
|
1146
1422
|
private createReportedFatalError;
|
|
1423
|
+
private tDynamicFields;
|
|
1424
|
+
private resolveDynamicFieldsMessage;
|
|
1147
1425
|
ngOnInit(): void;
|
|
1148
1426
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1149
1427
|
ngOnDestroy(): void;
|
|
@@ -1261,6 +1539,8 @@ declare class MaterialButtonComponent extends SimpleBaseButtonComponent implemen
|
|
|
1261
1539
|
readonly keyboardShortcut: _angular_core.Signal<any>;
|
|
1262
1540
|
/** Tooltip text */
|
|
1263
1541
|
readonly tooltipText: _angular_core.Signal<string>;
|
|
1542
|
+
readonly validationLoadingAriaLabel: _angular_core.Signal<string>;
|
|
1543
|
+
readonly validationLoadingSrOnly: _angular_core.Signal<string>;
|
|
1264
1544
|
ngOnInit(): void;
|
|
1265
1545
|
ngOnDestroy(): void;
|
|
1266
1546
|
/**
|
|
@@ -1392,6 +1672,13 @@ declare class ColorInputComponent extends SimpleBaseInputComponent {
|
|
|
1392
1672
|
onSwatchClick(c: string): void;
|
|
1393
1673
|
isSelected(c: string): boolean;
|
|
1394
1674
|
copyCurrent(): void;
|
|
1675
|
+
colorPickerButtonTooltip(): string;
|
|
1676
|
+
colorPickerButtonAriaLabel(): string;
|
|
1677
|
+
copyButtonTooltip(): string;
|
|
1678
|
+
copyButtonAriaLabel(): string;
|
|
1679
|
+
nativeColorInputAriaLabel(): string;
|
|
1680
|
+
recentSectionLabel(): string;
|
|
1681
|
+
colorSwatchAriaLabel(color: string): string;
|
|
1395
1682
|
private applyColor;
|
|
1396
1683
|
currentSolidHex(): string;
|
|
1397
1684
|
private pushRecent;
|
|
@@ -1873,10 +2160,10 @@ declare class PasswordInputComponent extends SimpleBaseInputComponent {
|
|
|
1873
2160
|
readonly validationChange: _angular_core.OutputEmitterRef<ValidationErrors | null>;
|
|
1874
2161
|
private readonly reveal;
|
|
1875
2162
|
readonly revealStyle: _angular_core.Signal<any>;
|
|
1876
|
-
readonly revealLabel: _angular_core.Signal<
|
|
2163
|
+
readonly revealLabel: _angular_core.Signal<string>;
|
|
1877
2164
|
readonly revealIcon: _angular_core.Signal<any>;
|
|
1878
|
-
readonly revealAriaLabel: _angular_core.Signal<
|
|
1879
|
-
readonly revealTooltip: _angular_core.Signal<
|
|
2165
|
+
readonly revealAriaLabel: _angular_core.Signal<string>;
|
|
2166
|
+
readonly revealTooltip: _angular_core.Signal<string>;
|
|
1880
2167
|
readonlyMode: boolean;
|
|
1881
2168
|
disabledMode: boolean;
|
|
1882
2169
|
visible: boolean;
|
|
@@ -1973,7 +2260,6 @@ declare class FilterInlineSelectComponent extends SimpleBaseSelectComponent {
|
|
|
1973
2260
|
searchPlaceholderText(): string;
|
|
1974
2261
|
searchInputAriaLabel(): string;
|
|
1975
2262
|
private resolveFieldLabelFromMetadata;
|
|
1976
|
-
private humanizeFieldName;
|
|
1977
2263
|
ariaLabel(): string;
|
|
1978
2264
|
private recalculateInlineSizeBounds;
|
|
1979
2265
|
private resolveWidthBounds;
|
|
@@ -2062,7 +2348,6 @@ declare class FilterInlineSearchableSelectComponent extends MaterialSearchableSe
|
|
|
2062
2348
|
private resolveOptionLabel;
|
|
2063
2349
|
private equalsOptionValue;
|
|
2064
2350
|
private resolveFieldLabelFromMetadata;
|
|
2065
|
-
private humanizeFieldName;
|
|
2066
2351
|
private recalculateInlineSizeBounds;
|
|
2067
2352
|
private resolveWidthBounds;
|
|
2068
2353
|
private currentInlineMetadata;
|
|
@@ -2128,6 +2413,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2128
2413
|
protected registerMatSelect(select: MatSelect): void;
|
|
2129
2414
|
reload(reset: boolean): void;
|
|
2130
2415
|
protected onDependenciesChanged(): void;
|
|
2416
|
+
private missingOptionLabel;
|
|
2417
|
+
private loadOptionsErrorLabel;
|
|
2131
2418
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAsyncSelectComponent, never>;
|
|
2132
2419
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialAsyncSelectComponent, "pdx-material-async-select", 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>;
|
|
2133
2420
|
}
|
|
@@ -2292,6 +2579,7 @@ declare class FilterInlineMultiSelectComponent extends SimpleBaseSelectComponent
|
|
|
2292
2579
|
inlineMinWidthPx: number;
|
|
2293
2580
|
inlineMaxWidthPx: number;
|
|
2294
2581
|
private fieldLabelText;
|
|
2582
|
+
selectAllLabel(): string;
|
|
2295
2583
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
2296
2584
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2297
2585
|
onComponentInit(): void;
|
|
@@ -2378,6 +2666,7 @@ declare class MaterialAutocompleteComponent extends SimpleBaseSelectComponent<Au
|
|
|
2378
2666
|
ngOnInit(): void;
|
|
2379
2667
|
errorStateMatcher(): _angular_material_error_options_d_CGdTZUYk.E;
|
|
2380
2668
|
autocompleteInputAriaLabel(): string;
|
|
2669
|
+
noResultsLabel(): string;
|
|
2381
2670
|
onSearchInputEvent(event: Event): void;
|
|
2382
2671
|
isReadonlyEffective(): boolean;
|
|
2383
2672
|
private getSelectedId;
|
|
@@ -2393,6 +2682,8 @@ declare class MaterialAutocompleteComponent extends SimpleBaseSelectComponent<Au
|
|
|
2393
2682
|
private toAutocompleteOption;
|
|
2394
2683
|
private toOptionId;
|
|
2395
2684
|
private toRecord;
|
|
2685
|
+
private missingOptionLabel;
|
|
2686
|
+
private loadOptionsErrorLabel;
|
|
2396
2687
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialAutocompleteComponent, never>;
|
|
2397
2688
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MaterialAutocompleteComponent, "pdx-material-autocomplete", 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>;
|
|
2398
2689
|
}
|
|
@@ -2439,7 +2730,6 @@ declare class FilterInlineAutocompleteComponent extends MaterialAutocompleteComp
|
|
|
2439
2730
|
private resolveChromeWidth;
|
|
2440
2731
|
private parsePx;
|
|
2441
2732
|
private resolveFieldLabelFromMetadata;
|
|
2442
|
-
private humanizeFieldName;
|
|
2443
2733
|
trackByOption(index: number, option: {
|
|
2444
2734
|
label: string;
|
|
2445
2735
|
value: OptionDTO<unknown>;
|
|
@@ -2690,7 +2980,6 @@ declare class FilterInlineCurrencyRangeComponent extends SimpleBaseInputComponen
|
|
|
2690
2980
|
private resetFormatterCache;
|
|
2691
2981
|
private resetDistributionCache;
|
|
2692
2982
|
private resolveFieldLabelFromMetadata;
|
|
2693
|
-
private humanizeFieldName;
|
|
2694
2983
|
private currencyLocaleFallback;
|
|
2695
2984
|
private compactDistributionBins;
|
|
2696
2985
|
private rememberTriggerElement;
|
|
@@ -3140,7 +3429,6 @@ declare class FilterInlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
3140
3429
|
private resolveChromeWidth;
|
|
3141
3430
|
private parsePx;
|
|
3142
3431
|
private resolveFieldLabelFromMetadata;
|
|
3143
|
-
private humanizeFieldName;
|
|
3144
3432
|
private normalizeControlValue;
|
|
3145
3433
|
private resolveDisplayTime;
|
|
3146
3434
|
private refreshTimeOptions;
|
|
@@ -3166,6 +3454,8 @@ declare class FilterInlineTimeComponent extends MaterialTimepickerComponent {
|
|
|
3166
3454
|
private resolveEffectiveInlineMode;
|
|
3167
3455
|
private resolveInlineMode;
|
|
3168
3456
|
private resolveInlineTexts;
|
|
3457
|
+
private parseInlineTexts;
|
|
3458
|
+
private nonEmptyText;
|
|
3169
3459
|
private scrollSelectedIntoView;
|
|
3170
3460
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterInlineTimeComponent, never>;
|
|
3171
3461
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterInlineTimeComponent, "pdx-filter-inline-time", never, {}, {}, never, never, true, never>;
|
|
@@ -3381,7 +3671,7 @@ declare class FilterInlineTreeSelectComponent extends SimpleBaseSelectComponent
|
|
|
3381
3671
|
private normalizeNodes;
|
|
3382
3672
|
private buildParentMap;
|
|
3383
3673
|
private resolveFieldLabelFromMetadata;
|
|
3384
|
-
|
|
3674
|
+
toggleNodeAriaLabel(node: MaterialTreeNode): string;
|
|
3385
3675
|
private areValuesEqual;
|
|
3386
3676
|
private recalculateInlineSizeBounds;
|
|
3387
3677
|
private resolveWidthBounds;
|
|
@@ -3542,7 +3832,12 @@ declare class FilterInlineDistanceRadiusComponent extends FilterInlineRangeSlide
|
|
|
3542
3832
|
private resolveColorToken;
|
|
3543
3833
|
private resolveLabelFromMetadata;
|
|
3544
3834
|
private currentDistanceMetadata;
|
|
3545
|
-
private
|
|
3835
|
+
private distanceText;
|
|
3836
|
+
private distanceSingleLabel;
|
|
3837
|
+
private distanceRangeLabel;
|
|
3838
|
+
private distanceFromLabel;
|
|
3839
|
+
private distanceUpToLabel;
|
|
3840
|
+
private distanceFromMidLabel;
|
|
3546
3841
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterInlineDistanceRadiusComponent, never>;
|
|
3547
3842
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterInlineDistanceRadiusComponent, "pdx-filter-inline-distance-radius", never, {}, {}, never, never, true, never>;
|
|
3548
3843
|
}
|
|
@@ -3644,7 +3939,7 @@ declare class FilterInlinePipelineStatusComponent extends SimpleBaseSelectCompon
|
|
|
3644
3939
|
private pipelineGradientColorByRatio;
|
|
3645
3940
|
private parseColorPalette;
|
|
3646
3941
|
private resolvePipelineText;
|
|
3647
|
-
private
|
|
3942
|
+
private interpolateLegacyAwareTemplate;
|
|
3648
3943
|
private resolveMetadataKey;
|
|
3649
3944
|
private parseObjectConfig;
|
|
3650
3945
|
private nonEmptyText;
|
|
@@ -3652,7 +3947,6 @@ declare class FilterInlinePipelineStatusComponent extends SimpleBaseSelectCompon
|
|
|
3652
3947
|
private mapRawOption;
|
|
3653
3948
|
private equalsOptionValue;
|
|
3654
3949
|
private resolveFieldLabelFromMetadata;
|
|
3655
|
-
private humanizeFieldName;
|
|
3656
3950
|
private recalculateInlineSizeBounds;
|
|
3657
3951
|
private resolveWidthBounds;
|
|
3658
3952
|
private rememberTriggerElement;
|
|
@@ -3837,10 +4131,10 @@ declare class FilterInlineRelativePeriodComponent extends SimpleBaseSelectCompon
|
|
|
3837
4131
|
private resolveMetadataKey;
|
|
3838
4132
|
private parseObjectConfig;
|
|
3839
4133
|
private nonEmptyText;
|
|
4134
|
+
private interpolateLegacyAwareTemplate;
|
|
3840
4135
|
private resolveColorToken;
|
|
3841
4136
|
private mapRawOption;
|
|
3842
4137
|
private resolveFieldLabelFromMetadata;
|
|
3843
|
-
private humanizeFieldName;
|
|
3844
4138
|
private recalculateInlineSizeBounds;
|
|
3845
4139
|
private resolveWidthBounds;
|
|
3846
4140
|
private rememberTriggerElement;
|
|
@@ -3927,10 +4221,10 @@ declare class FilterInlineSentimentComponent extends SimpleBaseSelectComponent {
|
|
|
3927
4221
|
private resolveMetadataKey;
|
|
3928
4222
|
private parseObjectConfig;
|
|
3929
4223
|
private nonEmptyText;
|
|
4224
|
+
private interpolateLegacyAwareTemplate;
|
|
3930
4225
|
private resolveColorToken;
|
|
3931
4226
|
private mapRawOption;
|
|
3932
4227
|
private resolveFieldLabelFromMetadata;
|
|
3933
|
-
private humanizeFieldName;
|
|
3934
4228
|
private recalculateInlineSizeBounds;
|
|
3935
4229
|
private resolveWidthBounds;
|
|
3936
4230
|
private rememberTriggerElement;
|
|
@@ -4019,9 +4313,9 @@ declare class FilterInlineColorLabelComponent extends SimpleBaseSelectComponent<
|
|
|
4019
4313
|
private resolveMetadataKey;
|
|
4020
4314
|
private parseObjectConfig;
|
|
4021
4315
|
private nonEmptyText;
|
|
4316
|
+
private interpolateLegacyAwareTemplate;
|
|
4022
4317
|
private mapRawOption;
|
|
4023
4318
|
private resolveFieldLabelFromMetadata;
|
|
4024
|
-
private humanizeFieldName;
|
|
4025
4319
|
private recalculateInlineSizeBounds;
|
|
4026
4320
|
private resolveWidthBounds;
|
|
4027
4321
|
private rememberTriggerElement;
|
|
@@ -4037,6 +4331,7 @@ declare class MaterialMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
4037
4331
|
disabledMode: boolean;
|
|
4038
4332
|
visible: boolean;
|
|
4039
4333
|
presentationMode: boolean;
|
|
4334
|
+
selectAllLabel(): string;
|
|
4040
4335
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
4041
4336
|
/** Disables options when maxSelections reached */
|
|
4042
4337
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
@@ -4083,6 +4378,8 @@ declare class MaterialMultiSelectTreeComponent extends SimpleBaseInputComponent
|
|
|
4083
4378
|
onClearClick(): void;
|
|
4084
4379
|
/** Configure component metadata */
|
|
4085
4380
|
setTreeMetadata(metadata: MaterialMultiSelectTreeMetadata): void;
|
|
4381
|
+
loadingOptionsAriaLabel(): string;
|
|
4382
|
+
toggleNodeAriaLabel(node: MaterialTreeNode): string;
|
|
4086
4383
|
private normalizeNodes;
|
|
4087
4384
|
/** Whether a node has children */
|
|
4088
4385
|
hasChild: (_: number, node: MaterialTreeNode) => boolean;
|
|
@@ -4108,8 +4405,7 @@ declare class MaterialMultiSelectTreeComponent extends SimpleBaseInputComponent
|
|
|
4108
4405
|
isNodeDisabled(node: MaterialTreeNode): boolean;
|
|
4109
4406
|
/** CSS hook */
|
|
4110
4407
|
protected getSpecificCssClasses(): string[];
|
|
4111
|
-
|
|
4112
|
-
clearButtonAriaLabel(): string;
|
|
4408
|
+
clearActionAriaLabel(): string;
|
|
4113
4409
|
clearButtonIconColor(): string | undefined;
|
|
4114
4410
|
clearButtonIcon(): string;
|
|
4115
4411
|
private clearButtonConfig;
|
|
@@ -4143,6 +4439,7 @@ declare class MaterialTreeSelectComponent extends SimpleBaseSelectComponent {
|
|
|
4143
4439
|
private normalizeNodes;
|
|
4144
4440
|
private buildParentMap;
|
|
4145
4441
|
hasChild: (_: number, node: MaterialTreeNode) => boolean;
|
|
4442
|
+
toggleNodeAriaLabel(node: MaterialTreeNode): string;
|
|
4146
4443
|
selectNode(node: MaterialTreeNode): void;
|
|
4147
4444
|
private resolveValue;
|
|
4148
4445
|
private getPath;
|
|
@@ -4333,6 +4630,46 @@ declare class MaterialCheckboxGroupComponent extends SimpleBaseSelectComponent {
|
|
|
4333
4630
|
/** Disables options when maxSelections reached */
|
|
4334
4631
|
isOptionDisabled(option: SelectOption<unknown>): boolean;
|
|
4335
4632
|
protected getSpecificCssClasses(): string[];
|
|
4633
|
+
isBooleanCheckbox(): boolean;
|
|
4634
|
+
isMultipleCheckbox(): boolean;
|
|
4635
|
+
selectionMode(): 'boolean' | 'multiple';
|
|
4636
|
+
variant(): 'default' | 'consent' | 'compact' | 'tiles';
|
|
4637
|
+
density(): 'compact' | 'comfortable' | 'spacious';
|
|
4638
|
+
isRequiredCheckbox(): boolean;
|
|
4639
|
+
booleanLabelId(): string;
|
|
4640
|
+
booleanDescriptionId(): string;
|
|
4641
|
+
booleanHintId(): string;
|
|
4642
|
+
booleanErrorId(): string;
|
|
4643
|
+
groupHintId(): string;
|
|
4644
|
+
groupErrorId(): string;
|
|
4645
|
+
booleanAriaLabel(): string | null;
|
|
4646
|
+
booleanLabelledBy(): string | null;
|
|
4647
|
+
booleanDescribedBy(): string | null;
|
|
4648
|
+
groupDescribedBy(): string | null;
|
|
4649
|
+
booleanLinks(): Array<{
|
|
4650
|
+
label: string;
|
|
4651
|
+
href: string;
|
|
4652
|
+
target?: '_blank' | '_self';
|
|
4653
|
+
rel?: string;
|
|
4654
|
+
}>;
|
|
4655
|
+
defaultLinkRel(target: '_blank' | '_self' | undefined): string | null;
|
|
4656
|
+
onBooleanContentClick(event: MouseEvent): void;
|
|
4657
|
+
onBooleanCheckboxChange(): void;
|
|
4658
|
+
onMultipleOptionContentClick(option: SelectOption<unknown>, event: MouseEvent): void;
|
|
4659
|
+
onSelectAllContentClick(event: MouseEvent): void;
|
|
4660
|
+
private shouldToggleFromBooleanContent;
|
|
4661
|
+
private shouldToggleFromMultipleContent;
|
|
4662
|
+
private toggleBooleanCheckbox;
|
|
4663
|
+
private syncBooleanOperationalEvents;
|
|
4664
|
+
private humanizeName;
|
|
4665
|
+
optionLabelId(option: SelectOption<unknown>): string;
|
|
4666
|
+
optionDescriptionId(option: SelectOption<unknown>): string | null;
|
|
4667
|
+
optionAriaLabel(option: SelectOption<unknown>): string | null;
|
|
4668
|
+
optionSupportingText(option: SelectOption<unknown>): string | null;
|
|
4669
|
+
selectAllLabelId(): string;
|
|
4670
|
+
selectAllAriaLabel(): string | null;
|
|
4671
|
+
selectAllLabelText(): string;
|
|
4672
|
+
private optionDomToken;
|
|
4336
4673
|
private optionsFromLegacy;
|
|
4337
4674
|
private normalizeOption;
|
|
4338
4675
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialCheckboxGroupComponent, never>;
|
|
@@ -4628,6 +4965,7 @@ declare class MaterialColorPickerComponent extends SimpleBaseInputComponent {
|
|
|
4628
4965
|
errorStateMatcher(): _angular_material_error_options_d_CGdTZUYk.E;
|
|
4629
4966
|
isReadonlyEffective(): boolean;
|
|
4630
4967
|
previewColor(): string;
|
|
4968
|
+
colorPaletteAriaLabel(): string;
|
|
4631
4969
|
private defaultColor;
|
|
4632
4970
|
private defaultHex;
|
|
4633
4971
|
private resolveCssColor;
|
|
@@ -4767,6 +5105,21 @@ declare class PdxColorPickerComponent extends SimpleBaseInputComponent implement
|
|
|
4767
5105
|
constructor(bottomSheet: MatBottomSheet);
|
|
4768
5106
|
private resolveClearButtonConfig;
|
|
4769
5107
|
showClearAction(): boolean;
|
|
5108
|
+
clearActionTooltip(): string | null;
|
|
5109
|
+
clearActionAriaLabel(): string;
|
|
5110
|
+
clearActionLabel(): string;
|
|
5111
|
+
colorPickerButtonTooltip(): string;
|
|
5112
|
+
colorPickerButtonAriaLabel(): string;
|
|
5113
|
+
copyButtonTooltip(): string;
|
|
5114
|
+
copyButtonAriaLabel(): string;
|
|
5115
|
+
gradientTabLabel(): string;
|
|
5116
|
+
paletteTabLabel(): string;
|
|
5117
|
+
opacityLabel(): string;
|
|
5118
|
+
recentSectionLabel(): string;
|
|
5119
|
+
addPaletteColorLabel(): string;
|
|
5120
|
+
colorSwatchAriaLabel(color: string): string;
|
|
5121
|
+
cancelActionLabel(): string;
|
|
5122
|
+
applyActionLabel(): string;
|
|
4770
5123
|
ngOnInit(): void;
|
|
4771
5124
|
writeValue(obj: unknown): void;
|
|
4772
5125
|
handleFocus(): void;
|
|
@@ -4879,6 +5232,10 @@ declare class MaterialTransferListComponent extends SimpleBaseSelectComponent {
|
|
|
4879
5232
|
readonly filteredRight: _angular_core.Signal<SelectOption<unknown>[]>;
|
|
4880
5233
|
constructor();
|
|
4881
5234
|
setSelectMetadata(metadata: TransferListMetadata): void;
|
|
5235
|
+
moveSelectedToRightAriaLabel(): string;
|
|
5236
|
+
moveAllToRightAriaLabel(): string;
|
|
5237
|
+
moveSelectedToLeftAriaLabel(): string;
|
|
5238
|
+
moveAllToLeftAriaLabel(): string;
|
|
4882
5239
|
ngOnInit(): void;
|
|
4883
5240
|
private updateListsFromValue;
|
|
4884
5241
|
getSelectedOptions(list: MatSelectionList): SelectOption[];
|
|
@@ -5910,6 +6267,8 @@ declare function emitToDynamicFieldsLoggerBackend(level: DynamicFieldsLoggerLeve
|
|
|
5910
6267
|
interface JsonSchemaProperty {
|
|
5911
6268
|
type?: string;
|
|
5912
6269
|
format?: string;
|
|
6270
|
+
title?: string;
|
|
6271
|
+
description?: string;
|
|
5913
6272
|
oneOf?: JsonSchemaProperty[];
|
|
5914
6273
|
anyOf?: JsonSchemaProperty[];
|
|
5915
6274
|
'x-ui'?: {
|
|
@@ -5989,5 +6348,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
5989
6348
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
5990
6349
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
5991
6350
|
|
|
5992
|
-
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, FilterInlineAsyncSelectComponent, FilterInlineAutocompleteComponent, FilterInlineColorLabelComponent, FilterInlineCurrencyComponent, FilterInlineCurrencyRangeComponent, FilterInlineDateComponent, FilterInlineDateRangeComponent, FilterInlineDistanceRadiusComponent, FilterInlineEntityLookupComponent, FilterInlineInputComponent, FilterInlineMultiSelectComponent, FilterInlineNumberComponent, FilterInlinePipelineStatusComponent, FilterInlineRangeSliderComponent, FilterInlineRatingComponent, FilterInlineRelativePeriodComponent, FilterInlineScorePriorityComponent, FilterInlineSearchableSelectComponent, FilterInlineSelectComponent, FilterInlineSentimentComponent, FilterInlineTimeComponent, FilterInlineTimeRangeComponent, FilterInlineToggleComponent, FilterInlineTreeSelectComponent, 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_FILTER_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_FILTER_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_FILTER_INLINE_CURRENCY_COMPONENT_METADATA, PDX_FILTER_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_FILTER_INLINE_DATE_COMPONENT_METADATA, PDX_FILTER_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_FILTER_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_FILTER_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_FILTER_INLINE_INPUT_COMPONENT_METADATA, PDX_FILTER_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_NUMBER_COMPONENT_METADATA, PDX_FILTER_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_FILTER_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_FILTER_INLINE_RATING_COMPONENT_METADATA, PDX_FILTER_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_FILTER_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_FILTER_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_FILTER_INLINE_TIME_COMPONENT_METADATA, PDX_FILTER_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_FILTER_INLINE_TOGGLE_COMPONENT_METADATA, PDX_FILTER_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_LOGGER_BACKEND, 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, emitToDynamicFieldsLoggerBackend, enableDebugForComponent, getControlTypeCatalog, getErrorStateMatcherForField, inferErrorStateStrategy, initializeComponentSystem, initializeComponentSystemSync, isBaseDynamicFieldComponent, isLoadingCapableComponent, isValidJsonSchema, isValueBasedComponent, logger, mapJsonSchemaToFields, mapPropertyToFieldMetadata, normalizeFormMetadata, provideMaterialAvatarMetadata, providePraxisDynamicFields, providePraxisDynamicFieldsCore, providePraxisDynamicFieldsCoreNoDefaults, providePraxisDynamicFieldsNoDefaults, setDynamicFieldsLoggerBackend, silenceComponent, supportsClearButtonControlType };
|
|
5993
|
-
export type { ActionContext, ActionHandler, ActionResult, BaseDynamicFieldComponent, BaseValidationConfig, ComponentLifecycleEvent, ComponentLoadResult, ComponentRegistration, ConfirmDialogData, DynamicFieldsCoreLogOptions, DynamicFieldsCoreLoggerBackend, DynamicFieldsLoggerContext, DynamicFieldsLoggerLevel, ErrorStateStrategy, GradientSettings, IComponentRegistry, JsonSchema, JsonSchemaProperty, LoggerConfig, LoggerLevel, OptionSource, PaletteSettings, PopupSettings, PreloadStatus, RatingIconState, RegistryStats, SelectOption, ShortcutHandler, ShortcutInfo, SimpleSelectMetadata, TimeRangeValue, ValueChangeOptions };
|
|
6351
|
+
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, FilterInlineAsyncSelectComponent, FilterInlineAutocompleteComponent, FilterInlineColorLabelComponent, FilterInlineCurrencyComponent, FilterInlineCurrencyRangeComponent, FilterInlineDateComponent, FilterInlineDateRangeComponent, FilterInlineDistanceRadiusComponent, FilterInlineEntityLookupComponent, FilterInlineInputComponent, FilterInlineMultiSelectComponent, FilterInlineNumberComponent, FilterInlinePipelineStatusComponent, FilterInlineRangeSliderComponent, FilterInlineRatingComponent, FilterInlineRelativePeriodComponent, FilterInlineScorePriorityComponent, FilterInlineSearchableSelectComponent, FilterInlineSelectComponent, FilterInlineSentimentComponent, FilterInlineTimeComponent, FilterInlineTimeRangeComponent, FilterInlineToggleComponent, FilterInlineTreeSelectComponent, 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_FILTER_INLINE_ASYNC_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_AUTOCOMPLETE_COMPONENT_METADATA, PDX_FILTER_INLINE_COLOR_LABEL_COMPONENT_METADATA, PDX_FILTER_INLINE_CURRENCY_COMPONENT_METADATA, PDX_FILTER_INLINE_CURRENCY_RANGE_COMPONENT_METADATA, PDX_FILTER_INLINE_DATE_COMPONENT_METADATA, PDX_FILTER_INLINE_DATE_RANGE_COMPONENT_METADATA, PDX_FILTER_INLINE_DISTANCE_RADIUS_COMPONENT_METADATA, PDX_FILTER_INLINE_ENTITY_LOOKUP_COMPONENT_METADATA, PDX_FILTER_INLINE_INPUT_COMPONENT_METADATA, PDX_FILTER_INLINE_MULTI_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_NUMBER_COMPONENT_METADATA, PDX_FILTER_INLINE_PIPELINE_STATUS_COMPONENT_METADATA, PDX_FILTER_INLINE_RANGE_SLIDER_COMPONENT_METADATA, PDX_FILTER_INLINE_RATING_COMPONENT_METADATA, PDX_FILTER_INLINE_RELATIVE_PERIOD_COMPONENT_METADATA, PDX_FILTER_INLINE_SCORE_PRIORITY_COMPONENT_METADATA, PDX_FILTER_INLINE_SEARCHABLE_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_SELECT_COMPONENT_METADATA, PDX_FILTER_INLINE_SENTIMENT_COMPONENT_METADATA, PDX_FILTER_INLINE_TIME_COMPONENT_METADATA, PDX_FILTER_INLINE_TIME_RANGE_COMPONENT_METADATA, PDX_FILTER_INLINE_TOGGLE_COMPONENT_METADATA, PDX_FILTER_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 };
|
|
6352
|
+
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 };
|