@praxisui/dynamic-fields 9.0.4-rc.45 → 9.0.4-rc.47
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 +9 -0
- package/ai/component-registry.json +2 -2
- package/fesm2022/praxisui-dynamic-fields.mjs +2562 -2273
- package/package.json +3 -3
- package/src/lib/components/inline-entity-lookup/pdx-inline-entity-lookup.json-api.md +2 -2
- package/src/lib/components/inline-multi-select/pdx-inline-multi-select.json-api.md +4 -3
- package/src/lib/components/material-async-select/pdx-material-async-select.json-api.md +9 -8
- package/src/lib/components/material-select/pdx-material-select.json-api.md +7 -7
- package/types/praxisui-dynamic-fields.d.ts +171 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-fields",
|
|
3
|
-
"version": "9.0.4-rc.
|
|
3
|
+
"version": "9.0.4-rc.47",
|
|
4
4
|
"description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@angular/platform-browser": "^21.0.0",
|
|
12
12
|
"@angular/router": "^21.0.0",
|
|
13
13
|
"rxjs": "^7.8.0",
|
|
14
|
-
"@praxisui/core": "^9.0.4-rc.
|
|
15
|
-
"@praxisui/cron-builder": "^9.0.4-rc.
|
|
14
|
+
"@praxisui/core": "^9.0.4-rc.47",
|
|
15
|
+
"@praxisui/cron-builder": "^9.0.4-rc.47"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"libphonenumber-js": "^1.12.41",
|
|
@@ -129,7 +129,7 @@ Este documento e a referencia canonica da API JSON de pdx-inline-entity-lookup.
|
|
|
129
129
|
| `metadata.optionSource.display.fields` | object[] | false | n/a | Active | Campos ricos semanticos exibidos na lista e no valor selecionado. Cada item aceita `key`, `propertyPath`, `label`, `icon`, `presentation`, `tone` e `format`. |
|
|
130
130
|
| `metadata.optionSource.display.badgePropertyPaths` | string[] | false | n/a | Active | Campos publicados como badges/chips quando o backend tambem os materializa no payload de option. |
|
|
131
131
|
| `metadata.optionSource.display.statusLabelMap` | Record<string, string> | false | n/a | Active | Traduz somente o rótulo visual do status; o código canônico continua governando seleção, filtros e tons. |
|
|
132
|
-
| `metadata.searchable` | boolean | false | `true` para fontes nao categoricas | Active | Materializa a acao acessivel de busca
|
|
132
|
+
| `metadata.searchable` | boolean | false | `true` para fontes nao categoricas | Active | Materializa a acao acessivel de busca como irma externa do `MatSelect` e abre o dialogo governado sem inserir controles interativos no listbox. |
|
|
133
133
|
| `metadata.dialog` | object | false | configuracao derivada do campo | Active | Customiza titulo, tamanho, preview, colunas e acoes da busca governada. |
|
|
134
134
|
| `metadata.dialog.enabled` | boolean | false | herda `metadata.searchable` | Active | `false` desativa explicitamente a superficie de busca; `true` a habilita mesmo quando `searchable=false`. |
|
|
135
135
|
|
|
@@ -181,7 +181,7 @@ Nao ha paths experimentais confirmados no contrato publico desta revisao.
|
|
|
181
181
|
| `metadata.optionSource.display` | object | false | n/a | contrato semantico de UX, nao CSS | Governanca de preset, uso, densidade, campos ricos, secundarios e badges do resultado. |
|
|
182
182
|
| `metadata.resourcePath` | string | false | n/a | component-defined | Partial; verify per source_of_truth. |
|
|
183
183
|
| `metadata.inlineAutoSize.*` | object | false | n/a | component-defined | Partial; verify per source_of_truth. |
|
|
184
|
-
| `metadata.searchable` | boolean | false | `true` para fontes nao categoricas | boolean | Active; abre a busca governada por uma acao irma do `mat-select
|
|
184
|
+
| `metadata.searchable` | boolean | false | `true` para fontes nao categoricas | boolean | Active; abre a busca governada por uma acao externa irma do `mat-select`, nunca projetada no trigger ou no painel de opcoes. |
|
|
185
185
|
| `metadata.dialog` | object | false | derivado do campo | `LookupDialogMetadata` | Active; configura a busca avancada sem redefinir identidade ou option source. |
|
|
186
186
|
| `metadata.dialog.enabled` | boolean | false | herda `metadata.searchable` | boolean | Active; opt-out explicito quando `false`. |
|
|
187
187
|
|
|
@@ -319,12 +319,13 @@ Resumo de composicao deste componente:
|
|
|
319
319
|
- `Parcial`: `multiple` declarado, mas runtime e forçado para `true`.
|
|
320
320
|
|
|
321
321
|
### 4. Mapeamento de Comportamento
|
|
322
|
-
-
|
|
323
|
-
-
|
|
322
|
+
- O trigger e um unico botao combobox; tokens selecionados sao apresentacionais e nao criam botoes aninhados.
|
|
323
|
+
- O painel conectado inclui busca no cabecalho quando `searchable=true`, lista de opcoes em `listbox` e acoes em footer irmao.
|
|
324
324
|
- `showOptionDisabled()` bloqueia novas escolhas quando `maxSelections` e atingido.
|
|
325
325
|
- Sem `resourcePath`, busca filtra lista local; com endpoint, usa pipeline remoto.
|
|
326
326
|
- Em `inlineOverlay.applyMode: "explicit"`, clique em opcoes, remocao e `Limpar` do painel alteram apenas o rascunho; `Aplicar` emite `valueChange/selectionChange`, enquanto `Cancelar`, `Esc` ou fechamento externo restauram a selecao confirmada.
|
|
327
|
-
- O quick-clear
|
|
327
|
+
- O quick-clear e irmao do trigger, fora do combobox e do painel, e comita imediatamente.
|
|
328
|
+
- Busca, botoes de opcao e footer existem apenas no overlay anexado; nenhuma acao e projetada como conteudo de `mat-select`/`mat-option`.
|
|
328
329
|
|
|
329
330
|
### 5. Exemplo Minimo (JSON + Uso)
|
|
330
331
|
```json
|
|
@@ -22,8 +22,8 @@ source_of_truth:
|
|
|
22
22
|
- "projects/praxis-dynamic-fields/src/lib/components/material-async-select/material-async-select.component.ts"
|
|
23
23
|
- "projects/praxis-dynamic-fields/src/lib/base/simple-base-select.component.ts"
|
|
24
24
|
- "projects/praxis-core/src/lib/models/material-field-metadata.interface.ts"
|
|
25
|
-
source_of_truth_last_verified: "2026-
|
|
26
|
-
last_updated: "2026-
|
|
25
|
+
source_of_truth_last_verified: "2026-08-11"
|
|
26
|
+
last_updated: "2026-08-11"
|
|
27
27
|
toc: true
|
|
28
28
|
sidebar: true
|
|
29
29
|
tags:
|
|
@@ -328,17 +328,17 @@ Garantias:
|
|
|
328
328
|
- no combobox simples pesquisavel, a proxima pagina e carregada
|
|
329
329
|
automaticamente quando o scroll se aproxima do fim da lista; nao existe
|
|
330
330
|
botao interativo dentro do `listbox`.
|
|
331
|
-
- no caminho
|
|
332
|
-
|
|
331
|
+
- no caminho de selecao por painel, busca, opcoes e a acao opcional de carregar
|
|
332
|
+
mais sao regioes irmas dentro do overlay conectado; o footer so existe no DOM
|
|
333
|
+
enquanto o painel esta aberto e nunca integra o `listbox`.
|
|
333
334
|
- fontes locais (`selectOptions`/`options`) e `loadOn='none'` antes da primeira carga nao exibem acao de paginacao.
|
|
334
335
|
- em paginacao numerada, o fim usa `totalPages`/`totalElements` quando fornecidos pelo backend; se ausentes, usa `content.length < pageSize` como fallback.
|
|
335
336
|
|
|
336
337
|
Limites:
|
|
337
338
|
|
|
338
339
|
- debounce de busca interno permanece fixo em `300ms`.
|
|
339
|
-
- selecao multipla
|
|
340
|
-
|
|
341
|
-
combobox simples.
|
|
340
|
+
- selecao multipla usa o overlay conectado com `listbox` multisselecao; ela nao
|
|
341
|
+
projeta busca ou acoes dentro de `mat-select` e nao reutiliza o combobox simples.
|
|
342
342
|
- ordenacao nao possui contrato dedicado nesta camada.
|
|
343
343
|
- `loadOn` e `useCursor` dependem da capacidade do backend e da configuracao global.
|
|
344
344
|
|
|
@@ -406,7 +406,7 @@ Precedencia de comportamento:
|
|
|
406
406
|
| `metadata.filterCriteria` | `Record<string, any>` | Active | Filtros base para consulta remota. |
|
|
407
407
|
| `metadata.optionLabelKey` | `string` | Active | Chave de label no payload remoto. |
|
|
408
408
|
| `metadata.optionValueKey` | `string` | Active | Chave de value no payload remoto. |
|
|
409
|
-
| `metadata.searchable` | `boolean` | Active | Em single, escolhe
|
|
409
|
+
| `metadata.searchable` | `boolean` | Active | Em single, escolhe o combobox pesquisavel; nos demais casos, habilita `pdx-collection-search` no cabecalho do overlay de colecao. |
|
|
410
410
|
| `metadata.loadOn` | `'open' \| 'init' \| 'none'` | Runtime-extension | Estrategia de primeira carga remota. |
|
|
411
411
|
| `metadata.dependencyLoadOnChange` | `'respectLoadOn' \| 'immediate' \| 'manual'` | Runtime-extension | Regras de recarga por dependencia. |
|
|
412
412
|
|
|
@@ -490,6 +490,7 @@ Correcao: use `dependencyLoadOnChange='immediate'` ou dispare recarga no host.
|
|
|
490
490
|
| `--pdx-select-panel-action-hover-surface` / `--pdx-select-panel-action-focus-ring` | overlay footer | Estados hover e foco visivel | O host deve preservar contraste AA em temas claro e escuro. |
|
|
491
491
|
| `--pdx-select-panel-load-more-surface` / `--pdx-select-panel-load-more-outline` | overlay footer | Tratamento do botao `Carregar mais` | Permite distinguir a acao sem acoplamento a internals MDC. |
|
|
492
492
|
| `--pdx-select-panel-actions-gap` / `--pdx-select-panel-actions-padding` / `--pdx-select-panel-action-min-height` / `--pdx-select-panel-action-padding` / `--pdx-select-panel-action-radius` / `--pdx-select-panel-action-disabled-opacity` | overlay footer | Densidade, geometria e estado desabilitado | Altura default de 44 px preserva alvo corporativo acessivel. |
|
|
493
|
+
| `--praxis-collection-search-*` | overlay header | Superficie, texto, outline, foco, densidade, tipografia e raio da busca | Contrato compartilhado com Table. `--praxis-collection-search-radius` aceita `0`, valores intermediarios e pill; nao criar aliases locais. |
|
|
493
494
|
|
|
494
495
|
## Examples (obrigatorio)
|
|
495
496
|
|
|
@@ -22,8 +22,8 @@ source_of_truth:
|
|
|
22
22
|
- "projects/praxis-dynamic-fields/src/lib/components/material-select/material-select.component.ts"
|
|
23
23
|
- "projects/praxis-dynamic-fields/src/lib/base/simple-base-select.component.ts"
|
|
24
24
|
- "projects/praxis-core/src/lib/models/material-field-metadata.interface.ts"
|
|
25
|
-
source_of_truth_last_verified: "2026-
|
|
26
|
-
last_updated: "2026-
|
|
25
|
+
source_of_truth_last_verified: "2026-08-11"
|
|
26
|
+
last_updated: "2026-08-11"
|
|
27
27
|
toc: true
|
|
28
28
|
sidebar: true
|
|
29
29
|
tags:
|
|
@@ -337,12 +337,12 @@ Garantias:
|
|
|
337
337
|
Limites:
|
|
338
338
|
|
|
339
339
|
- componente opera em selecao unica (nao e multi-select).
|
|
340
|
-
- `searchable=true`
|
|
340
|
+
- `searchable=true` materializa a busca no cabecalho do overlay conectado, como regiao irma do `listbox`.
|
|
341
341
|
- `clearButton` e suportado via runtime base, mas nao tipado explicitamente em `MaterialSelectMetadata`.
|
|
342
342
|
|
|
343
343
|
#### Controle de comportamento
|
|
344
344
|
|
|
345
|
-
**O que isso habilita:** padrao unico de carregamento local/remoto e exibicao de opcoes no
|
|
345
|
+
**O que isso habilita:** padrao unico de carregamento local/remoto e exibicao de opcoes no overlay conectado de colecao.
|
|
346
346
|
|
|
347
347
|
**Quando usar:** quando a regra de negocio exige previsibilidade de UX e compatibilidade entre squads.
|
|
348
348
|
|
|
@@ -395,7 +395,7 @@ Precedencia de comportamento:
|
|
|
395
395
|
| `metadata.selectOptions` | `Array<{ value; text; label?; disabled? }>` | Active | Fonte principal de opcoes locais. |
|
|
396
396
|
| `metadata.options` | `Array<any>` | Runtime-extension | Alias legado quando `selectOptions` nao e informado. |
|
|
397
397
|
| `metadata.emptyOptionText` | `string` | Active | Exibe opcao vazia com valor `null`. |
|
|
398
|
-
| `metadata.searchable` | `boolean` |
|
|
398
|
+
| `metadata.searchable` | `boolean` | Active | Renderiza `pdx-collection-search` no cabecalho do overlay, fora do `listbox`. |
|
|
399
399
|
| `metadata.multiple` | `boolean` | Partial | Campo declarado, porem runtime deste componente permanece single (`false`). |
|
|
400
400
|
| `metadata.selectAll` | `boolean` | Partial | Sem efeito funcional em modo single. |
|
|
401
401
|
| `metadata.maxSelections` | `number` | Partial | Sem efeito funcional em modo single. |
|
|
@@ -421,8 +421,8 @@ Contrato compartilhado completo:
|
|
|
421
421
|
1. Multi-selecao nao funciona neste componente.
|
|
422
422
|
Correcao: use `pdx-material-multi-select` ou `pdx-material-async-select` com `multiple=true`.
|
|
423
423
|
|
|
424
|
-
2.
|
|
425
|
-
Correcao:
|
|
424
|
+
2. A busca nao aparece com `searchable=true`.
|
|
425
|
+
Correcao: confirme que o painel esta aberto e que o metadata efetivo nao sobrescreveu `searchable`; a busca so existe no DOM enquanto o overlay esta anexado.
|
|
426
426
|
|
|
427
427
|
3. Opcoes nao carregam no remoto.
|
|
428
428
|
Correcao: valide `resourcePath`, `filterCriteria` e mapeamento `optionLabelKey/optionValueKey`.
|
|
@@ -2516,18 +2516,80 @@ declare class SearchInputComponent extends SimpleBaseInputComponent {
|
|
|
2516
2516
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchInputComponent, "pdx-search-input", never, { "readonlyMode": { "alias": "readonlyMode"; "required": false; }; "disabledMode": { "alias": "disabledMode"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "presentationMode": { "alias": "presentationMode"; "required": false; }; }, { "validationChange": "validationChange"; }, never, never, true, never>;
|
|
2517
2517
|
}
|
|
2518
2518
|
|
|
2519
|
+
declare class PdxCollectionSearchComponent {
|
|
2520
|
+
readonly value: _angular_core.InputSignal<string>;
|
|
2521
|
+
readonly placeholder: _angular_core.InputSignal<string>;
|
|
2522
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2523
|
+
readonly clearAriaLabel: _angular_core.InputSignal<string>;
|
|
2524
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
2525
|
+
readonly density: _angular_core.InputSignal<"compact" | "regular">;
|
|
2526
|
+
readonly icon: _angular_core.InputSignal<string>;
|
|
2527
|
+
readonly clearIcon: _angular_core.InputSignal<string>;
|
|
2528
|
+
readonly valueChange: _angular_core.OutputEmitterRef<string>;
|
|
2529
|
+
readonly cleared: _angular_core.OutputEmitterRef<void>;
|
|
2530
|
+
private readonly searchInput;
|
|
2531
|
+
focus(): void;
|
|
2532
|
+
onInput(event: Event): void;
|
|
2533
|
+
clearValue(): void;
|
|
2534
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdxCollectionSearchComponent, never>;
|
|
2535
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdxCollectionSearchComponent, "pdx-collection-search", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": true; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "clearAriaLabel": { "alias": "clearAriaLabel"; "required": true; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "clearIcon": { "alias": "clearIcon"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "cleared": "cleared"; }, never, never, true, never>;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
declare class PdxCollectionOverlayTriggerDirective {
|
|
2539
|
+
readonly elementRef: ElementRef<HTMLElement>;
|
|
2540
|
+
focus(): void;
|
|
2541
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdxCollectionOverlayTriggerDirective, never>;
|
|
2542
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PdxCollectionOverlayTriggerDirective, "[pdxCollectionOverlayTrigger]", never, {}, {}, never, never, true, never>;
|
|
2543
|
+
}
|
|
2544
|
+
type PdxCollectionOverlayCloseReason = 'escape' | 'outside' | 'detach' | 'programmatic';
|
|
2545
|
+
declare class PdxCollectionOverlayComponent {
|
|
2546
|
+
readonly open: _angular_core.ModelSignal<boolean>;
|
|
2547
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2548
|
+
readonly panelClass: _angular_core.InputSignal<string>;
|
|
2549
|
+
readonly panelWidth: _angular_core.InputSignal<string | number | null>;
|
|
2550
|
+
readonly density: _angular_core.InputSignal<"compact" | "regular">;
|
|
2551
|
+
readonly opened: _angular_core.OutputEmitterRef<void>;
|
|
2552
|
+
readonly closed: _angular_core.OutputEmitterRef<PdxCollectionOverlayCloseReason>;
|
|
2553
|
+
readonly trigger: _angular_core.Signal<PdxCollectionOverlayTriggerDirective>;
|
|
2554
|
+
readonly positions: ConnectedPosition[];
|
|
2555
|
+
resolvedPanelWidth(): number | string;
|
|
2556
|
+
close(reason: PdxCollectionOverlayCloseReason, restoreFocus?: boolean): void;
|
|
2557
|
+
onOverlayKeydown(event: KeyboardEvent): void;
|
|
2558
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PdxCollectionOverlayComponent, never>;
|
|
2559
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PdxCollectionOverlayComponent, "pdx-collection-overlay", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; "panelWidth": { "alias": "panelWidth"; "required": false; "isSignal": true; }; "density": { "alias": "density"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "opened": "opened"; "closed": "closed"; }, ["trigger"], ["[pdxCollectionOverlayTrigger]", "[pdxCollectionOverlayHeader]", "[pdxCollectionOverlayOptions]", "[pdxCollectionOverlayFooter]"], true, never>;
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2519
2562
|
declare class MaterialSelectComponent extends SimpleBaseSelectComponent {
|
|
2520
2563
|
readonlyMode: boolean;
|
|
2521
2564
|
disabledMode: boolean;
|
|
2522
2565
|
visible: boolean;
|
|
2523
2566
|
presentationMode: boolean;
|
|
2524
|
-
|
|
2567
|
+
readonly panelOpen: _angular_core.WritableSignal<boolean>;
|
|
2568
|
+
private readonly collectionOverlay;
|
|
2569
|
+
private readonly collectionSearch;
|
|
2570
|
+
private readonly overlayTrigger;
|
|
2571
|
+
private readonly overlayOptions;
|
|
2525
2572
|
protected defaultPanelClass(): string;
|
|
2526
2573
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
2527
2574
|
ngOnInit(): void;
|
|
2575
|
+
ngAfterViewInit(): void;
|
|
2528
2576
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2529
2577
|
onSearchInputEvent(event: Event): void;
|
|
2530
|
-
|
|
2578
|
+
toggleOverlay(): void;
|
|
2579
|
+
onOverlayOpened(): void;
|
|
2580
|
+
onOverlayClosed(): void;
|
|
2581
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2582
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2583
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2584
|
+
selectEmptyOption(): void;
|
|
2585
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2586
|
+
hasSelectionValue(): boolean;
|
|
2587
|
+
materialDisplayText(): string;
|
|
2588
|
+
labelId(): string;
|
|
2589
|
+
panelId(): string;
|
|
2590
|
+
overlayPanelWidth(): string;
|
|
2591
|
+
private focusOverlayOption;
|
|
2592
|
+
private sameValue;
|
|
2531
2593
|
private optionsFromLegacy;
|
|
2532
2594
|
private normalizeOption;
|
|
2533
2595
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaterialSelectComponent, never>;
|
|
@@ -2539,7 +2601,11 @@ declare class InlineSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2539
2601
|
disabledMode: boolean;
|
|
2540
2602
|
visible: boolean;
|
|
2541
2603
|
presentationMode: boolean;
|
|
2542
|
-
|
|
2604
|
+
readonly panelOpen: _angular_core.WritableSignal<boolean>;
|
|
2605
|
+
private readonly collectionOverlay;
|
|
2606
|
+
private readonly collectionSearch;
|
|
2607
|
+
private readonly overlayTrigger;
|
|
2608
|
+
private readonly overlayOptions;
|
|
2543
2609
|
inlineMinWidthPx: number;
|
|
2544
2610
|
inlineMaxWidthPx: number;
|
|
2545
2611
|
private fieldLabelText;
|
|
@@ -2550,6 +2616,7 @@ declare class InlineSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2550
2616
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
2551
2617
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2552
2618
|
onComponentInit(): void;
|
|
2619
|
+
ngAfterViewInit(): void;
|
|
2553
2620
|
onViewportResize(): void;
|
|
2554
2621
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2555
2622
|
protected getSpecificCssClasses(): string[];
|
|
@@ -2558,7 +2625,17 @@ declare class InlineSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2558
2625
|
showQuickClear(): boolean;
|
|
2559
2626
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
2560
2627
|
onQuickClear(event: MouseEvent): void;
|
|
2561
|
-
|
|
2628
|
+
toggleOverlay(): void;
|
|
2629
|
+
onOverlayOpened(): void;
|
|
2630
|
+
onOverlayClosed(): void;
|
|
2631
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2632
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2633
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2634
|
+
selectEmptyOption(): void;
|
|
2635
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2636
|
+
panelId(): string;
|
|
2637
|
+
overlayPanelWidth(): string;
|
|
2638
|
+
private focusOverlayOption;
|
|
2562
2639
|
onSearchInput(term: string): void;
|
|
2563
2640
|
onSearchInputEvent(event: Event): void;
|
|
2564
2641
|
private hasValue;
|
|
@@ -2608,6 +2685,11 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2608
2685
|
visible: boolean;
|
|
2609
2686
|
presentationMode: boolean;
|
|
2610
2687
|
private searchInput?;
|
|
2688
|
+
readonly panelOpen: _angular_core.WritableSignal<boolean>;
|
|
2689
|
+
protected readonly collectionOverlay: _angular_core.Signal<PdxCollectionOverlayComponent | undefined>;
|
|
2690
|
+
protected readonly collectionSearch: _angular_core.Signal<PdxCollectionSearchComponent | undefined>;
|
|
2691
|
+
protected readonly overlayTrigger: _angular_core.Signal<ElementRef<HTMLButtonElement> | undefined>;
|
|
2692
|
+
protected readonly overlayOptions: _angular_core.Signal<readonly ElementRef<HTMLButtonElement>[]>;
|
|
2611
2693
|
private readonly store;
|
|
2612
2694
|
readonly endReached: _angular_core.WritableSignal<boolean>;
|
|
2613
2695
|
private initialLoadStrategy;
|
|
@@ -2616,6 +2698,7 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2616
2698
|
protected defaultPanelClass(): string;
|
|
2617
2699
|
setSelectMetadata(metadata: SearchableSelectMetadata): void;
|
|
2618
2700
|
ngOnInit(): void;
|
|
2701
|
+
ngAfterViewInit(): void;
|
|
2619
2702
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2620
2703
|
searchableSelectAriaDisabled(): 'true' | null;
|
|
2621
2704
|
searchableSelectAriaReadonly(): 'true' | null;
|
|
@@ -2626,6 +2709,18 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2626
2709
|
searchInputAriaLabel(): string;
|
|
2627
2710
|
onSearchInputEvent(event: Event): void;
|
|
2628
2711
|
onOpened(opened: boolean): void;
|
|
2712
|
+
toggleOverlay(): void;
|
|
2713
|
+
onOverlayOpened(): void;
|
|
2714
|
+
onOverlayClosed(): void;
|
|
2715
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2716
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2717
|
+
selectEmptyOption(): void;
|
|
2718
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2719
|
+
hasSelectionValue(): boolean;
|
|
2720
|
+
materialDisplayText(): string;
|
|
2721
|
+
labelId(): string;
|
|
2722
|
+
panelId(): string;
|
|
2723
|
+
overlayPanelWidth(): string;
|
|
2629
2724
|
private getSelectedIds;
|
|
2630
2725
|
private preloadSelected;
|
|
2631
2726
|
private refreshOptions;
|
|
@@ -2640,6 +2735,8 @@ declare class MaterialSearchableSelectComponent extends SimpleBaseSelectComponen
|
|
|
2640
2735
|
onSearch(term: string): void;
|
|
2641
2736
|
protected registerMatSelect(select: MatSelect): void;
|
|
2642
2737
|
private refocusSearchInput;
|
|
2738
|
+
protected focusOverlayOption(index: number): void;
|
|
2739
|
+
private resolveMaterialOptionLabel;
|
|
2643
2740
|
reload(reset: boolean): void;
|
|
2644
2741
|
protected onDependenciesChanged(): void;
|
|
2645
2742
|
private syncDisabledModeControlState;
|
|
@@ -2654,8 +2751,8 @@ declare class InlineSearchableSelectComponent extends MaterialSearchableSelectCo
|
|
|
2654
2751
|
setSelectMetadata(metadata: MaterialSelectMetadata): void;
|
|
2655
2752
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2656
2753
|
onComponentInit(): void;
|
|
2754
|
+
ngAfterViewInit(): void;
|
|
2657
2755
|
onViewportResize(): void;
|
|
2658
|
-
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2659
2756
|
protected getSpecificCssClasses(): string[];
|
|
2660
2757
|
hasSelection(): boolean;
|
|
2661
2758
|
selectedCount(): number;
|
|
@@ -2665,12 +2762,22 @@ declare class InlineSearchableSelectComponent extends MaterialSearchableSelectCo
|
|
|
2665
2762
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
2666
2763
|
onQuickClear(event: MouseEvent): void;
|
|
2667
2764
|
onOpenedChange(opened: boolean): void;
|
|
2765
|
+
toggleOverlay(): void;
|
|
2766
|
+
onOverlayOpened(): void;
|
|
2767
|
+
onOverlayClosed(): void;
|
|
2768
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
2769
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
2770
|
+
selectEmptyOption(): void;
|
|
2771
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2668
2772
|
onSearchInput(term: string): void;
|
|
2669
2773
|
onSearchInputEvent(event: Event): void;
|
|
2670
2774
|
showLoadMore(): boolean;
|
|
2671
2775
|
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2672
2776
|
panelActionsVisible(): boolean;
|
|
2673
2777
|
showEndReachedMessage(): boolean;
|
|
2778
|
+
overlayPanelWidth(): string;
|
|
2779
|
+
panelId(): string;
|
|
2780
|
+
isOverlayDisabled(): boolean;
|
|
2674
2781
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2675
2782
|
placeholderText(): string;
|
|
2676
2783
|
searchPlaceholderText(): string;
|
|
@@ -2732,7 +2839,13 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2732
2839
|
presentationMode: boolean;
|
|
2733
2840
|
private searchInput?;
|
|
2734
2841
|
private autocomplete?;
|
|
2842
|
+
readonly materialPanelOpen: _angular_core.WritableSignal<boolean>;
|
|
2843
|
+
private readonly materialCollectionOverlay;
|
|
2844
|
+
private readonly materialCollectionSearch;
|
|
2845
|
+
private readonly materialOverlayTrigger;
|
|
2846
|
+
private readonly materialOverlayOptions;
|
|
2735
2847
|
readonly termControl: FormControl<unknown>;
|
|
2848
|
+
materialSearchTerm(): string;
|
|
2736
2849
|
readonly activeLookupFilters: _angular_core.WritableSignal<LookupFilterRequest[]>;
|
|
2737
2850
|
readonly selectedLookupSortKey: _angular_core.WritableSignal<string | null>;
|
|
2738
2851
|
readonly selectedLookupSearchStrategyKey: _angular_core.WritableSignal<string | null>;
|
|
@@ -2753,7 +2866,21 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2753
2866
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2754
2867
|
searchInputAriaLabel(): string;
|
|
2755
2868
|
ngOnInit(): void;
|
|
2869
|
+
ngAfterViewInit(): void;
|
|
2756
2870
|
onOpened(opened: boolean): void;
|
|
2871
|
+
toggleMaterialOverlay(): void;
|
|
2872
|
+
onMaterialOverlayOpened(): void;
|
|
2873
|
+
onMaterialOverlayClosed(): void;
|
|
2874
|
+
onMaterialTriggerKeydown(event: KeyboardEvent): void;
|
|
2875
|
+
onMaterialSearchKeydown(event: KeyboardEvent): void;
|
|
2876
|
+
selectMaterialOption(option: SelectOption<unknown>): void;
|
|
2877
|
+
selectMaterialEmptyOption(): void;
|
|
2878
|
+
onMaterialOptionKeydown(event: KeyboardEvent): void;
|
|
2879
|
+
hasMaterialSelection(): boolean;
|
|
2880
|
+
materialDisplayText(): string;
|
|
2881
|
+
materialLabelId(): string;
|
|
2882
|
+
materialPanelId(): string;
|
|
2883
|
+
materialOverlayPanelWidth(): string;
|
|
2757
2884
|
usesSearchCombobox(): boolean;
|
|
2758
2885
|
comboboxInputAriaLabel(): string;
|
|
2759
2886
|
autocompletePanelClass(): string;
|
|
@@ -2809,6 +2936,8 @@ declare class MaterialAsyncSelectComponent extends SimpleBaseSelectComponent {
|
|
|
2809
2936
|
retry(): void;
|
|
2810
2937
|
protected registerMatSelect(select: MatSelect): void;
|
|
2811
2938
|
private refocusSearchInput;
|
|
2939
|
+
private focusMaterialOption;
|
|
2940
|
+
private resolveMaterialOptionLabel;
|
|
2812
2941
|
reload(reset: boolean): void;
|
|
2813
2942
|
protected setupRemoteSelectionHydration(): void;
|
|
2814
2943
|
protected onDependenciesChanged(): void;
|
|
@@ -2854,12 +2983,16 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2854
2983
|
readonly isPanelOpen: _angular_core.WritableSignal<boolean>;
|
|
2855
2984
|
private fieldLabelText;
|
|
2856
2985
|
private staticOptions;
|
|
2986
|
+
private readonly collectionOverlay;
|
|
2987
|
+
private readonly collectionSearch;
|
|
2988
|
+
private readonly overlayTrigger;
|
|
2989
|
+
private readonly overlayOptions;
|
|
2857
2990
|
private currentMetadata;
|
|
2858
2991
|
setSelectMetadata(metadata: InlineAsyncSelectMetadata): void;
|
|
2859
2992
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
2860
2993
|
onComponentInit(): void;
|
|
2994
|
+
ngAfterViewInit(): void;
|
|
2861
2995
|
onViewportResize(): void;
|
|
2862
|
-
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
2863
2996
|
protected getSpecificCssClasses(): string[];
|
|
2864
2997
|
hasSelection(): boolean;
|
|
2865
2998
|
selectedCount(): number;
|
|
@@ -2869,12 +3002,23 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2869
3002
|
onTriggerIconMouseDown(event: MouseEvent): void;
|
|
2870
3003
|
onQuickClear(event: MouseEvent): void;
|
|
2871
3004
|
onOpenedChange(opened: boolean): void;
|
|
3005
|
+
toggleOverlay(): void;
|
|
3006
|
+
onOverlayOpened(): void;
|
|
3007
|
+
onOverlayClosed(): void;
|
|
3008
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
3009
|
+
selectOverlayOption(option: SelectOption<unknown>): void;
|
|
3010
|
+
selectEmptyOption(): void;
|
|
3011
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
2872
3012
|
onSearchInputEvent(event: Event): void;
|
|
2873
3013
|
onSearchInput(term: string): void;
|
|
2874
3014
|
showLoadMore(): boolean;
|
|
2875
3015
|
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
2876
3016
|
panelActionsVisible(): boolean;
|
|
2877
3017
|
showEndReachedMessage(): boolean;
|
|
3018
|
+
overlayPanelWidth(): string;
|
|
3019
|
+
panelId(): string;
|
|
3020
|
+
isOverlayDisabled(): boolean;
|
|
3021
|
+
private focusOverlayOption;
|
|
2878
3022
|
onLoadMoreClick(event: MouseEvent): void;
|
|
2879
3023
|
placeholderText(): string;
|
|
2880
3024
|
searchPlaceholderText(): string;
|
|
@@ -2884,7 +3028,7 @@ declare class InlineAsyncSelectComponent extends MaterialAsyncSelectComponent {
|
|
|
2884
3028
|
private equalsOptionValue;
|
|
2885
3029
|
private asRecord;
|
|
2886
3030
|
private resolveFieldLabelFromMetadata;
|
|
2887
|
-
|
|
3031
|
+
currentSearchTerm(): string;
|
|
2888
3032
|
private applyStaticOptionsFilter;
|
|
2889
3033
|
private humanizeFieldName;
|
|
2890
3034
|
private recalculateInlineSizeBounds;
|
|
@@ -3369,7 +3513,11 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3369
3513
|
disabledMode: boolean;
|
|
3370
3514
|
visible: boolean;
|
|
3371
3515
|
presentationMode: boolean;
|
|
3372
|
-
|
|
3516
|
+
readonly overlayOpen: _angular_core.WritableSignal<boolean>;
|
|
3517
|
+
private readonly collectionOverlay;
|
|
3518
|
+
private readonly collectionSearch;
|
|
3519
|
+
private readonly overlayTrigger;
|
|
3520
|
+
private readonly overlayOptions;
|
|
3373
3521
|
inlineMinWidthPx: number;
|
|
3374
3522
|
inlineMaxWidthPx: number;
|
|
3375
3523
|
private fieldLabelText;
|
|
@@ -3379,8 +3527,8 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3379
3527
|
selectAllLabel(): string;
|
|
3380
3528
|
setSelectMetadata(metadata: SimpleSelectMetadata<unknown>): void;
|
|
3381
3529
|
protected setMetadata(metadata: MaterialSelectMetadata): void;
|
|
3382
|
-
protected registerMatSelect(select: MatSelect): void;
|
|
3383
3530
|
onComponentInit(): void;
|
|
3531
|
+
ngAfterViewInit(): void;
|
|
3384
3532
|
onViewportResize(): void;
|
|
3385
3533
|
errorStateMatcher(): _angular_material_core.ErrorStateMatcher;
|
|
3386
3534
|
protected getSpecificCssClasses(): string[];
|
|
@@ -3401,6 +3549,16 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3401
3549
|
onQuickClear(event: MouseEvent): void;
|
|
3402
3550
|
onRemoveSelectedToken(event: MouseEvent, value: unknown): void;
|
|
3403
3551
|
onOpenedChange(opened: boolean): void;
|
|
3552
|
+
toggleOverlay(): void;
|
|
3553
|
+
onOverlayOpened(): void;
|
|
3554
|
+
onOverlayClosed(): void;
|
|
3555
|
+
onTriggerKeydown(event: KeyboardEvent): void;
|
|
3556
|
+
onPanelSearchKeydown(event: KeyboardEvent): void;
|
|
3557
|
+
onOptionKeydown(event: KeyboardEvent): void;
|
|
3558
|
+
toggleOverlayValue(value: unknown): void;
|
|
3559
|
+
toggleOverlaySelectAll(): void;
|
|
3560
|
+
panelId(): string;
|
|
3561
|
+
overlayPanelWidth(): string;
|
|
3404
3562
|
showPanelActions(): boolean;
|
|
3405
3563
|
showPanelClearAction(): boolean;
|
|
3406
3564
|
panelActionsAriaLabel(): string;
|
|
@@ -3428,6 +3586,8 @@ declare class InlineMultiSelectComponent extends SimpleBaseSelectComponent {
|
|
|
3428
3586
|
ariaLabel(): string;
|
|
3429
3587
|
private currentValues;
|
|
3430
3588
|
private restorePanelCommittedValue;
|
|
3589
|
+
private updateOverlayValue;
|
|
3590
|
+
private focusOverlayOption;
|
|
3431
3591
|
private usesExplicitApplyMode;
|
|
3432
3592
|
private inlineOverlayAction;
|
|
3433
3593
|
private resolveOptionLabel;
|
|
@@ -7835,5 +7995,5 @@ declare function normalizeFormMetadata(input: FieldMetadata[] | JsonSchema): Fie
|
|
|
7835
7995
|
declare const CLEAR_BUTTON_CONTROL_TYPES: Set<string>;
|
|
7836
7996
|
declare function supportsClearButtonControlType(controlType?: string | null): boolean;
|
|
7837
7997
|
|
|
7838
|
-
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 };
|
|
7839
|
-
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 };
|
|
7998
|
+
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, PdxCollectionOverlayComponent, PdxCollectionOverlayTriggerDirective, PdxCollectionSearchComponent, 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 };
|
|
7999
|
+
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, PdxCollectionOverlayCloseReason, PopupSettings, PraxisDynamicFieldText, PraxisDynamicFieldsI18nOptions, PraxisDynamicFieldsI18nOverrides, PreloadStatus, RatingIconState, RegistryStats, SelectOption, ShortcutHandler, ShortcutInfo, SimpleSelectMetadata, TimeRangeValue, ValueChangeOptions };
|