@praxisui/core 3.0.0-beta.5 → 3.0.0-beta.7
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 +18 -0
- package/fesm2022/praxisui-core.mjs +2966 -116
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +733 -324
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, Type, Provider, ErrorHandler, EnvironmentProviders, EventEmitter,
|
|
2
|
+
import { InjectionToken, Type, Provider, ErrorHandler, EnvironmentProviders, OnChanges, EventEmitter, SimpleChanges, OnInit, OnDestroy, ElementRef, Renderer2 } from '@angular/core';
|
|
3
3
|
import * as rxjs from 'rxjs';
|
|
4
4
|
import { Observable, BehaviorSubject } from 'rxjs';
|
|
5
5
|
import { HttpHeaders, HttpContext, HttpClient, HttpParams, HttpInterceptorFn, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpFeature, HttpFeatureKind, HttpContextToken } from '@angular/common/http';
|
|
@@ -91,261 +91,6 @@ interface OptionSourceMetadata {
|
|
|
91
91
|
includeIds?: boolean;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
/**
|
|
95
|
-
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
96
|
-
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
97
|
-
* - Todas as funções expostas são funções reais (nunca strings):
|
|
98
|
-
* - conditionalDisplay: () => boolean
|
|
99
|
-
* - conditionalRequired: () => boolean
|
|
100
|
-
* - transformValueFunction: (val: any) => any
|
|
101
|
-
* - Suporte completo a ValidatorOptions (sincronos e assíncronos),
|
|
102
|
-
* incluindo mensagens e comportamento de validação (gatilhos, debounce, exibição de erros).
|
|
103
|
-
*/
|
|
104
|
-
interface FieldDefinition {
|
|
105
|
-
name: string;
|
|
106
|
-
label?: string;
|
|
107
|
-
description?: string;
|
|
108
|
-
type?: string;
|
|
109
|
-
controlType?: string;
|
|
110
|
-
mode?: string;
|
|
111
|
-
placeholder?: string;
|
|
112
|
-
defaultValue?: any;
|
|
113
|
-
group?: string;
|
|
114
|
-
order?: number;
|
|
115
|
-
width?: number | string;
|
|
116
|
-
isFlex?: boolean;
|
|
117
|
-
displayOrientation?: string;
|
|
118
|
-
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
119
|
-
variant?: string;
|
|
120
|
-
density?: 'compact' | 'comfortable' | 'spacious';
|
|
121
|
-
layout?: 'horizontal' | 'vertical';
|
|
122
|
-
disabled?: boolean;
|
|
123
|
-
readOnly?: boolean;
|
|
124
|
-
multiple?: boolean;
|
|
125
|
-
editable?: boolean;
|
|
126
|
-
validationMode?: string;
|
|
127
|
-
unique?: boolean;
|
|
128
|
-
mask?: string;
|
|
129
|
-
sortable?: boolean;
|
|
130
|
-
/** Função que define obrigatoriedade condicional. */
|
|
131
|
-
conditionalRequired?: () => boolean;
|
|
132
|
-
viewOnlyStyle?: string;
|
|
133
|
-
/** Lista de gatilhos de validação, ex.: ["blur", "change"]. */
|
|
134
|
-
validationTriggers?: string[];
|
|
135
|
-
hidden?: boolean;
|
|
136
|
-
tableHidden?: boolean;
|
|
137
|
-
formHidden?: boolean;
|
|
138
|
-
filterable?: boolean;
|
|
139
|
-
/** Função que controla se o campo é exibido. */
|
|
140
|
-
conditionalDisplay?: () => boolean;
|
|
141
|
-
dependentField?: string;
|
|
142
|
-
resetOnDependentChange?: boolean;
|
|
143
|
-
inlineEditing?: boolean;
|
|
144
|
-
/** Função de transformação de valor antes de salvar/exibir. */
|
|
145
|
-
transformValueFunction?: (val: any) => any;
|
|
146
|
-
debounceTime?: number;
|
|
147
|
-
helpText?: string;
|
|
148
|
-
hint?: string;
|
|
149
|
-
hiddenCondition?: any;
|
|
150
|
-
tooltipOnHover?: boolean;
|
|
151
|
-
icon?: string;
|
|
152
|
-
iconPosition?: string;
|
|
153
|
-
iconSize?: string | number;
|
|
154
|
-
iconColor?: string;
|
|
155
|
-
iconClass?: string;
|
|
156
|
-
iconStyle?: string;
|
|
157
|
-
iconFontSize?: string | number;
|
|
158
|
-
valueField?: string;
|
|
159
|
-
displayField?: string;
|
|
160
|
-
filterField?: string;
|
|
161
|
-
endpoint?: string;
|
|
162
|
-
resourcePath?: string;
|
|
163
|
-
optionSource?: OptionSourceMetadata;
|
|
164
|
-
emptyOptionText?: string;
|
|
165
|
-
options?: {
|
|
166
|
-
key: string;
|
|
167
|
-
value: string;
|
|
168
|
-
}[];
|
|
169
|
-
filter?: any;
|
|
170
|
-
filterCriteria?: any;
|
|
171
|
-
searchable?: boolean;
|
|
172
|
-
selectAll?: boolean;
|
|
173
|
-
maxSelections?: number;
|
|
174
|
-
optionLabelKey?: string;
|
|
175
|
-
optionValueKey?: string;
|
|
176
|
-
filterOptions?: any[];
|
|
177
|
-
numericFormat?: string;
|
|
178
|
-
numericStep?: number;
|
|
179
|
-
numericMin?: number;
|
|
180
|
-
numericMax?: number;
|
|
181
|
-
numericMaxLength?: number;
|
|
182
|
-
optionGroups?: {
|
|
183
|
-
key: string;
|
|
184
|
-
value: string;
|
|
185
|
-
}[];
|
|
186
|
-
disabledOptions?: string[];
|
|
187
|
-
buttons?: any[];
|
|
188
|
-
/** Obrigatório. */
|
|
189
|
-
required?: boolean;
|
|
190
|
-
requiredMessage?: string;
|
|
191
|
-
/** Tamanho mínimo/máximo (strings). */
|
|
192
|
-
minLength?: number;
|
|
193
|
-
minLengthMessage?: string;
|
|
194
|
-
maxLength?: number;
|
|
195
|
-
maxLengthMessage?: string;
|
|
196
|
-
/** Limites numéricos. */
|
|
197
|
-
min?: number;
|
|
198
|
-
max?: number;
|
|
199
|
-
/** Mensagens dedicadas para min/max numéricos. */
|
|
200
|
-
minMessage?: string;
|
|
201
|
-
maxMessage?: string;
|
|
202
|
-
/** Mensagem quando ambos limites (range) são aplicados. */
|
|
203
|
-
rangeMessage?: string;
|
|
204
|
-
/** Padrão (regex). Aceita pattern/regex. */
|
|
205
|
-
pattern?: string;
|
|
206
|
-
patternMessage?: string;
|
|
207
|
-
/** Validação de e-mail. */
|
|
208
|
-
email?: boolean;
|
|
209
|
-
emailMessage?: string;
|
|
210
|
-
/** Validação de URL. */
|
|
211
|
-
url?: boolean;
|
|
212
|
-
urlMessage?: string;
|
|
213
|
-
/** Requer que valor combine com outro campo. */
|
|
214
|
-
matchField?: string;
|
|
215
|
-
matchFieldMessage?: string;
|
|
216
|
-
/** Requer que o checkbox esteja marcado. */
|
|
217
|
-
requiredChecked?: boolean;
|
|
218
|
-
/** Tipos de arquivo permitidos e tamanho máximo. */
|
|
219
|
-
allowedFileTypes?: string[];
|
|
220
|
-
fileTypeMessage?: string;
|
|
221
|
-
maxFileSize?: number;
|
|
222
|
-
/** Validador customizado síncrono. */
|
|
223
|
-
customValidator?: (value: any, model?: any) => any;
|
|
224
|
-
/** Validador customizado assíncrono. */
|
|
225
|
-
asyncValidator?: (value: any, model?: any) => Promise<any>;
|
|
226
|
-
/** Validador de unicidade (ex.: consulta ao backend). */
|
|
227
|
-
uniqueValidator?: (value: any, model?: any) => boolean | Promise<boolean>;
|
|
228
|
-
uniqueMessage?: string;
|
|
229
|
-
/** Validação condicional baseada em outro(s) campos/estado. */
|
|
230
|
-
conditionalValidation?: (value: any, model?: any) => boolean | string | Promise<boolean | string>;
|
|
231
|
-
/** Mínimo de palavras (para textos longos). */
|
|
232
|
-
minWords?: number;
|
|
233
|
-
/** Gatilho(s) de validação (alias de validationTriggers). */
|
|
234
|
-
/** Tempo de debounce (ms) para executar validação. */
|
|
235
|
-
validationDebounce?: number;
|
|
236
|
-
/** Exibir erros inline no campo. */
|
|
237
|
-
showInlineErrors?: boolean;
|
|
238
|
-
/** Posição preferida da mensagem de erro (ex.: below, right). */
|
|
239
|
-
errorPosition?: string;
|
|
240
|
-
[key: string]: any;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
declare enum ApiEndpoint {
|
|
244
|
-
Default = "default",
|
|
245
|
-
HumanResources = "humanResources",
|
|
246
|
-
UiWrappersTest = "uiWrappersTest"
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
interface ApiUrlEntry {
|
|
250
|
-
baseUrl?: string;
|
|
251
|
-
path?: string;
|
|
252
|
-
fullUrl?: string;
|
|
253
|
-
version?: string;
|
|
254
|
-
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
255
|
-
}
|
|
256
|
-
interface ApiUrlConfig {
|
|
257
|
-
[key: string]: ApiUrlEntry;
|
|
258
|
-
}
|
|
259
|
-
declare const API_URL: InjectionToken<ApiUrlConfig>;
|
|
260
|
-
declare function buildApiUrl(entry: ApiUrlEntry): string;
|
|
261
|
-
declare function buildHeaders(entry: ApiUrlEntry): HttpHeaders | undefined;
|
|
262
|
-
|
|
263
|
-
/**
|
|
264
|
-
* SchemaNormalizerService
|
|
265
|
-
* -----------------------
|
|
266
|
-
* Serviço responsável por converter um esquema bruto (OpenAPI + x-ui) em uma
|
|
267
|
-
* lista tipada de FieldDefinition consumida pelo restante do sistema
|
|
268
|
-
* (mapeadores de metadata, criador de FormGroup, carregador de campos dinâmicos, etc.).
|
|
269
|
-
*
|
|
270
|
-
* Entrada esperada
|
|
271
|
-
* - Objeto JSON no formato OpenAPI/JSON Schema contendo:
|
|
272
|
-
* - properties: { [name: string]: { type, title, description, ... , 'x-ui': { ... } } }
|
|
273
|
-
* - Em cada propriedade, o objeto 'x-ui' define aspectos de UI/validação.
|
|
274
|
-
*
|
|
275
|
-
* Saída (FieldDefinition[])
|
|
276
|
-
* - Tipagem forte de campos com funções reais (nunca strings) para regras condicionais e validadores customizados.
|
|
277
|
-
* - Todas as propriedades de validação e comportamento consolidadas no mesmo objeto do campo.
|
|
278
|
-
*
|
|
279
|
-
* Segurança e observações
|
|
280
|
-
* - Este serviço aceita funções em formato string dentro do x-ui (ex.: uniqueValidator, conditionalValidation),
|
|
281
|
-
* e as converte via new Function. Isso exige backend confiável e controlado.
|
|
282
|
-
* Em ambientes não confiáveis, evite funções como string ou implemente um sandbox/whitelist.
|
|
283
|
-
* - Valores booleanos/numéricos são normalizados para tipos nativos.
|
|
284
|
-
* - Arrays de opções são convertidos para pares { key, value } previsíveis.
|
|
285
|
-
*
|
|
286
|
-
* Exemplo mínimo de entrada
|
|
287
|
-
* const schema = {
|
|
288
|
-
* properties: {
|
|
289
|
-
* email: {
|
|
290
|
-
* type: 'string',
|
|
291
|
-
* title: 'E-mail',
|
|
292
|
-
* 'x-ui': { controlType: 'input', type: 'string', required: true, email: true }
|
|
293
|
-
* }
|
|
294
|
-
* }
|
|
295
|
-
* };
|
|
296
|
-
* const fields = normalizer.normalizeSchema(schema);
|
|
297
|
-
* // fields: [{ name: 'email', label: 'E-mail', type: 'string', controlType: 'input', required: true, email: true }]
|
|
298
|
-
*/
|
|
299
|
-
declare class SchemaNormalizerService {
|
|
300
|
-
/** Convert value to boolean. Accepts boolean, string or number. */
|
|
301
|
-
private parseBoolean;
|
|
302
|
-
/** Ensure an array of strings from various inputs. */
|
|
303
|
-
private parseStringArray;
|
|
304
|
-
/** Parse option arrays into `{ key, value }` objects. */
|
|
305
|
-
private parseOptions;
|
|
306
|
-
private parseOptionSource;
|
|
307
|
-
/**
|
|
308
|
-
* Converte string/Function em função real.
|
|
309
|
-
* Atenção: usa `new Function` para avaliar strings – requer backend confiável.
|
|
310
|
-
*/
|
|
311
|
-
private parseFunction;
|
|
312
|
-
/** Parse a predicate function: () => boolean */
|
|
313
|
-
private parsePredicateFunction;
|
|
314
|
-
/** Parse a transform function: (val: any) => any */
|
|
315
|
-
private parseTransformFunction;
|
|
316
|
-
/**
|
|
317
|
-
* Parse de validador condicional: (value: any, model?: any) => boolean | string | Promise<boolean | string>
|
|
318
|
-
*/
|
|
319
|
-
private parseConditionalValidator;
|
|
320
|
-
/**
|
|
321
|
-
* Extrai e normaliza propriedades de validação a partir do objeto x-ui.
|
|
322
|
-
* Suporta: required, min/max, minLength/maxLength, pattern/regex, email, url,
|
|
323
|
-
* matchField, uniqueValidator (+message), conditionalValidation, requiredChecked,
|
|
324
|
-
* arquivos (allowedFileTypes, fileTypeMessage, maxFileSize), custom/async validators,
|
|
325
|
-
* minWords e comportamento (validationTrigger(s), validationDebounce, showInlineErrors, errorPosition).
|
|
326
|
-
*/
|
|
327
|
-
private parseValidators;
|
|
328
|
-
/** Parse array of button definitions. */
|
|
329
|
-
private parseButtons;
|
|
330
|
-
private resolveNonEmptyStringToken;
|
|
331
|
-
private isNumericSchemaType;
|
|
332
|
-
private resolveNumericFormatToken;
|
|
333
|
-
/**
|
|
334
|
-
* Converte o schema bruto do backend (OpenAPI + x-ui) em FieldDefinition[] tipado.
|
|
335
|
-
* Regras:
|
|
336
|
-
* - Ignora propriedades sem x-ui.
|
|
337
|
-
* - Garante ordenação por 'order' quando presente.
|
|
338
|
-
* - Funções condicionais/transformações sempre viram funções reais.
|
|
339
|
-
*
|
|
340
|
-
* @param schema Objeto OpenAPI/JSON Schema com properties e x-ui por propriedade.
|
|
341
|
-
* @returns FieldDefinition[] prontos para mapeamento/uso no restante do sistema.
|
|
342
|
-
*/
|
|
343
|
-
normalizeSchema(schema: any): FieldDefinition[];
|
|
344
|
-
private resolveFieldType;
|
|
345
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SchemaNormalizerService, never>;
|
|
346
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SchemaNormalizerService>;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
94
|
/**
|
|
350
95
|
* Nova arquitetura modular do TableConfig v2.0
|
|
351
96
|
* Preparada para crescimento exponencial e alinhada com as 5 abas do editor
|
|
@@ -2093,53 +1838,335 @@ interface KeyboardAccessibilityConfig {
|
|
|
2093
1838
|
* Estrutura modular alinhada com as 5 abas do editor
|
|
2094
1839
|
* Preparada para crescimento exponencial
|
|
2095
1840
|
*/
|
|
2096
|
-
interface TableConfigV2 {
|
|
2097
|
-
/** Metadados da configuração */
|
|
2098
|
-
meta?: ConfigMetadata;
|
|
2099
|
-
/** Definições de colunas */
|
|
2100
|
-
columns: ColumnDefinition[];
|
|
2101
|
-
/** Comportamento geral da tabela (Aba: Visão Geral & Comportamento) */
|
|
2102
|
-
behavior?: TableBehaviorConfig;
|
|
2103
|
-
/** Configurações de aparência e layout (Aba: Visão Geral & Comportamento) */
|
|
2104
|
-
appearance?: TableAppearanceConfig;
|
|
2105
|
-
/** Barra de ferramentas (Aba: Barra de Ferramentas & Ações) */
|
|
2106
|
-
toolbar?: ToolbarConfig;
|
|
2107
|
-
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
2108
|
-
actions?: TableActionsConfig;
|
|
2109
|
-
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
2110
|
-
export?: ExportConfig;
|
|
2111
|
-
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
2112
|
-
messages?: MessagesConfig;
|
|
2113
|
-
/** Localização e i18n (Aba: Mensagens & Localização) */
|
|
2114
|
-
localization?: LocalizationConfig;
|
|
2115
|
-
/** Configurações avançadas de dados */
|
|
2116
|
-
data?: DataConfig;
|
|
2117
|
-
/** Temas e customização visual */
|
|
2118
|
-
theme?: ThemeConfig;
|
|
2119
|
-
/** Configurações de performance */
|
|
2120
|
-
performance?: PerformanceConfig;
|
|
2121
|
-
/** Plugins e extensões */
|
|
2122
|
-
plugins?: PluginConfig[];
|
|
2123
|
-
/** Configurações de acessibilidade */
|
|
2124
|
-
accessibility?: AccessibilityConfig;
|
|
1841
|
+
interface TableConfigV2 {
|
|
1842
|
+
/** Metadados da configuração */
|
|
1843
|
+
meta?: ConfigMetadata;
|
|
1844
|
+
/** Definições de colunas */
|
|
1845
|
+
columns: ColumnDefinition[];
|
|
1846
|
+
/** Comportamento geral da tabela (Aba: Visão Geral & Comportamento) */
|
|
1847
|
+
behavior?: TableBehaviorConfig;
|
|
1848
|
+
/** Configurações de aparência e layout (Aba: Visão Geral & Comportamento) */
|
|
1849
|
+
appearance?: TableAppearanceConfig;
|
|
1850
|
+
/** Barra de ferramentas (Aba: Barra de Ferramentas & Ações) */
|
|
1851
|
+
toolbar?: ToolbarConfig;
|
|
1852
|
+
/** Ações por linha e em lote (Aba: Barra de Ferramentas & Ações) */
|
|
1853
|
+
actions?: TableActionsConfig;
|
|
1854
|
+
/** Configurações de exportação (Aba: Barra de Ferramentas & Ações) */
|
|
1855
|
+
export?: ExportConfig;
|
|
1856
|
+
/** Mensagens personalizadas (Aba: Mensagens & Localização) */
|
|
1857
|
+
messages?: MessagesConfig;
|
|
1858
|
+
/** Localização e i18n (Aba: Mensagens & Localização) */
|
|
1859
|
+
localization?: LocalizationConfig;
|
|
1860
|
+
/** Configurações avançadas de dados */
|
|
1861
|
+
data?: DataConfig;
|
|
1862
|
+
/** Temas e customização visual */
|
|
1863
|
+
theme?: ThemeConfig;
|
|
1864
|
+
/** Configurações de performance */
|
|
1865
|
+
performance?: PerformanceConfig;
|
|
1866
|
+
/** Plugins e extensões */
|
|
1867
|
+
plugins?: PluginConfig[];
|
|
1868
|
+
/** Configurações de acessibilidade */
|
|
1869
|
+
accessibility?: AccessibilityConfig;
|
|
1870
|
+
/**
|
|
1871
|
+
* Regras de estilo condicionais aplicadas à linha inteira (escopo global)
|
|
1872
|
+
*/
|
|
1873
|
+
rowConditionalStyles?: Array<{
|
|
1874
|
+
condition: string;
|
|
1875
|
+
cssClass?: string;
|
|
1876
|
+
style?: {
|
|
1877
|
+
[key: string]: string;
|
|
1878
|
+
};
|
|
1879
|
+
description?: string;
|
|
1880
|
+
}>;
|
|
1881
|
+
/** Estado serializado do construtor para regras de linha (round‑trip) */
|
|
1882
|
+
_rowStyleRulesState?: any;
|
|
1883
|
+
}
|
|
1884
|
+
/**
|
|
1885
|
+
* Type guard to check if config is V2
|
|
1886
|
+
*/
|
|
1887
|
+
declare function isTableConfigV2(config: any): config is TableConfigV2;
|
|
1888
|
+
|
|
1889
|
+
type ValuePresentationType = 'string' | 'number' | 'currency' | 'percentage' | 'date' | 'datetime' | 'time' | 'boolean';
|
|
1890
|
+
type ValuePresentationStyle = 'default' | 'short' | 'medium' | 'long' | 'full' | 'compact';
|
|
1891
|
+
interface ValuePresentationConfig {
|
|
1892
|
+
type: ValuePresentationType;
|
|
1893
|
+
style?: ValuePresentationStyle;
|
|
1894
|
+
format?: string;
|
|
1895
|
+
currency?: Partial<CurrencyLocaleConfig>;
|
|
1896
|
+
number?: Partial<NumberLocaleConfig>;
|
|
1897
|
+
}
|
|
1898
|
+
interface ValuePresentationResolutionContext {
|
|
1899
|
+
localization?: LocalizationConfig | null;
|
|
1900
|
+
surfaceLocale?: string | null;
|
|
1901
|
+
appLocale?: string | null;
|
|
1902
|
+
valueLocale?: string | null;
|
|
1903
|
+
}
|
|
1904
|
+
interface ResolvedValuePresentation {
|
|
1905
|
+
type: ValuePresentationType;
|
|
1906
|
+
locale: string;
|
|
1907
|
+
style?: ValuePresentationStyle;
|
|
1908
|
+
format?: string;
|
|
1909
|
+
currency?: CurrencyLocaleConfig;
|
|
1910
|
+
number?: NumberLocaleConfig;
|
|
1911
|
+
dateTime?: DateTimeLocaleConfig;
|
|
1912
|
+
}
|
|
1913
|
+
|
|
1914
|
+
/**
|
|
1915
|
+
* Contrato de saída do normalizador de esquema (SchemaNormalizerService):
|
|
1916
|
+
* - Converte metadados `x-ui` em FieldDefinition tipado.
|
|
1917
|
+
* - Todas as funções expostas são funções reais (nunca strings):
|
|
1918
|
+
* - conditionalDisplay: () => boolean
|
|
1919
|
+
* - conditionalRequired: () => boolean
|
|
1920
|
+
* - transformValueFunction: (val: any) => any
|
|
1921
|
+
* - Suporte completo a ValidatorOptions (sincronos e assíncronos),
|
|
1922
|
+
* incluindo mensagens e comportamento de validação (gatilhos, debounce, exibição de erros).
|
|
1923
|
+
*/
|
|
1924
|
+
interface FieldDefinition {
|
|
1925
|
+
name: string;
|
|
1926
|
+
label?: string;
|
|
1927
|
+
description?: string;
|
|
1928
|
+
type?: string;
|
|
1929
|
+
controlType?: string;
|
|
1930
|
+
mode?: string;
|
|
1931
|
+
placeholder?: string;
|
|
1932
|
+
defaultValue?: any;
|
|
1933
|
+
group?: string;
|
|
1934
|
+
order?: number;
|
|
1935
|
+
width?: number | string;
|
|
1936
|
+
isFlex?: boolean;
|
|
1937
|
+
displayOrientation?: string;
|
|
1938
|
+
selectionMode?: 'boolean' | 'single' | 'multiple';
|
|
1939
|
+
variant?: string;
|
|
1940
|
+
density?: 'compact' | 'comfortable' | 'spacious';
|
|
1941
|
+
layout?: 'horizontal' | 'vertical';
|
|
1942
|
+
disabled?: boolean;
|
|
1943
|
+
readOnly?: boolean;
|
|
1944
|
+
multiple?: boolean;
|
|
1945
|
+
editable?: boolean;
|
|
1946
|
+
validationMode?: string;
|
|
1947
|
+
unique?: boolean;
|
|
1948
|
+
mask?: string;
|
|
1949
|
+
sortable?: boolean;
|
|
1950
|
+
/** Função que define obrigatoriedade condicional. */
|
|
1951
|
+
conditionalRequired?: () => boolean;
|
|
1952
|
+
viewOnlyStyle?: string;
|
|
1953
|
+
/** Lista de gatilhos de validação, ex.: ["blur", "change"]. */
|
|
1954
|
+
validationTriggers?: string[];
|
|
1955
|
+
hidden?: boolean;
|
|
1956
|
+
tableHidden?: boolean;
|
|
1957
|
+
formHidden?: boolean;
|
|
1958
|
+
filterable?: boolean;
|
|
1959
|
+
/** Função que controla se o campo é exibido. */
|
|
1960
|
+
conditionalDisplay?: () => boolean;
|
|
1961
|
+
dependentField?: string;
|
|
1962
|
+
resetOnDependentChange?: boolean;
|
|
1963
|
+
inlineEditing?: boolean;
|
|
1964
|
+
/** Função de transformação de valor antes de salvar/exibir. */
|
|
1965
|
+
transformValueFunction?: (val: any) => any;
|
|
1966
|
+
debounceTime?: number;
|
|
1967
|
+
helpText?: string;
|
|
1968
|
+
hint?: string;
|
|
1969
|
+
hiddenCondition?: any;
|
|
1970
|
+
tooltipOnHover?: boolean;
|
|
1971
|
+
icon?: string;
|
|
1972
|
+
iconPosition?: string;
|
|
1973
|
+
iconSize?: string | number;
|
|
1974
|
+
iconColor?: string;
|
|
1975
|
+
iconClass?: string;
|
|
1976
|
+
iconStyle?: string;
|
|
1977
|
+
iconFontSize?: string | number;
|
|
1978
|
+
valueField?: string;
|
|
1979
|
+
displayField?: string;
|
|
1980
|
+
filterField?: string;
|
|
1981
|
+
endpoint?: string;
|
|
1982
|
+
resourcePath?: string;
|
|
1983
|
+
optionSource?: OptionSourceMetadata;
|
|
1984
|
+
emptyOptionText?: string;
|
|
1985
|
+
options?: {
|
|
1986
|
+
key: string;
|
|
1987
|
+
value: string;
|
|
1988
|
+
}[];
|
|
1989
|
+
filter?: any;
|
|
1990
|
+
filterCriteria?: any;
|
|
1991
|
+
searchable?: boolean;
|
|
1992
|
+
selectAll?: boolean;
|
|
1993
|
+
maxSelections?: number;
|
|
1994
|
+
optionLabelKey?: string;
|
|
1995
|
+
optionValueKey?: string;
|
|
1996
|
+
filterOptions?: any[];
|
|
1997
|
+
numericFormat?: string;
|
|
1998
|
+
valuePresentation?: ValuePresentationConfig;
|
|
1999
|
+
numericStep?: number;
|
|
2000
|
+
numericMin?: number;
|
|
2001
|
+
numericMax?: number;
|
|
2002
|
+
numericMaxLength?: number;
|
|
2003
|
+
optionGroups?: {
|
|
2004
|
+
key: string;
|
|
2005
|
+
value: string;
|
|
2006
|
+
}[];
|
|
2007
|
+
disabledOptions?: string[];
|
|
2008
|
+
buttons?: any[];
|
|
2009
|
+
/** Obrigatório. */
|
|
2010
|
+
required?: boolean;
|
|
2011
|
+
requiredMessage?: string;
|
|
2012
|
+
/** Tamanho mínimo/máximo (strings). */
|
|
2013
|
+
minLength?: number;
|
|
2014
|
+
minLengthMessage?: string;
|
|
2015
|
+
maxLength?: number;
|
|
2016
|
+
maxLengthMessage?: string;
|
|
2017
|
+
/** Limites numéricos. */
|
|
2018
|
+
min?: number;
|
|
2019
|
+
max?: number;
|
|
2020
|
+
/** Mensagens dedicadas para min/max numéricos. */
|
|
2021
|
+
minMessage?: string;
|
|
2022
|
+
maxMessage?: string;
|
|
2023
|
+
/** Mensagem quando ambos limites (range) são aplicados. */
|
|
2024
|
+
rangeMessage?: string;
|
|
2025
|
+
/** Padrão (regex). Aceita pattern/regex. */
|
|
2026
|
+
pattern?: string;
|
|
2027
|
+
patternMessage?: string;
|
|
2028
|
+
/** Validação de e-mail. */
|
|
2029
|
+
email?: boolean;
|
|
2030
|
+
emailMessage?: string;
|
|
2031
|
+
/** Validação de URL. */
|
|
2032
|
+
url?: boolean;
|
|
2033
|
+
urlMessage?: string;
|
|
2034
|
+
/** Requer que valor combine com outro campo. */
|
|
2035
|
+
matchField?: string;
|
|
2036
|
+
matchFieldMessage?: string;
|
|
2037
|
+
/** Requer que o checkbox esteja marcado. */
|
|
2038
|
+
requiredChecked?: boolean;
|
|
2039
|
+
/** Tipos de arquivo permitidos e tamanho máximo. */
|
|
2040
|
+
allowedFileTypes?: string[];
|
|
2041
|
+
fileTypeMessage?: string;
|
|
2042
|
+
maxFileSize?: number;
|
|
2043
|
+
/** Validador customizado síncrono. */
|
|
2044
|
+
customValidator?: (value: any, model?: any) => any;
|
|
2045
|
+
/** Validador customizado assíncrono. */
|
|
2046
|
+
asyncValidator?: (value: any, model?: any) => Promise<any>;
|
|
2047
|
+
/** Validador de unicidade (ex.: consulta ao backend). */
|
|
2048
|
+
uniqueValidator?: (value: any, model?: any) => boolean | Promise<boolean>;
|
|
2049
|
+
uniqueMessage?: string;
|
|
2050
|
+
/** Validação condicional baseada em outro(s) campos/estado. */
|
|
2051
|
+
conditionalValidation?: (value: any, model?: any) => boolean | string | Promise<boolean | string>;
|
|
2052
|
+
/** Mínimo de palavras (para textos longos). */
|
|
2053
|
+
minWords?: number;
|
|
2054
|
+
/** Gatilho(s) de validação (alias de validationTriggers). */
|
|
2055
|
+
/** Tempo de debounce (ms) para executar validação. */
|
|
2056
|
+
validationDebounce?: number;
|
|
2057
|
+
/** Exibir erros inline no campo. */
|
|
2058
|
+
showInlineErrors?: boolean;
|
|
2059
|
+
/** Posição preferida da mensagem de erro (ex.: below, right). */
|
|
2060
|
+
errorPosition?: string;
|
|
2061
|
+
[key: string]: any;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
declare enum ApiEndpoint {
|
|
2065
|
+
Default = "default",
|
|
2066
|
+
HumanResources = "humanResources",
|
|
2067
|
+
UiWrappersTest = "uiWrappersTest"
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
interface ApiUrlEntry {
|
|
2071
|
+
baseUrl?: string;
|
|
2072
|
+
path?: string;
|
|
2073
|
+
fullUrl?: string;
|
|
2074
|
+
version?: string;
|
|
2075
|
+
headers?: HttpHeaders | Record<string, string | string[]>;
|
|
2076
|
+
}
|
|
2077
|
+
interface ApiUrlConfig {
|
|
2078
|
+
[key: string]: ApiUrlEntry;
|
|
2079
|
+
}
|
|
2080
|
+
declare const API_URL: InjectionToken<ApiUrlConfig>;
|
|
2081
|
+
declare function buildApiUrl(entry: ApiUrlEntry): string;
|
|
2082
|
+
declare function buildHeaders(entry: ApiUrlEntry): HttpHeaders | undefined;
|
|
2083
|
+
|
|
2084
|
+
/**
|
|
2085
|
+
* SchemaNormalizerService
|
|
2086
|
+
* -----------------------
|
|
2087
|
+
* Serviço responsável por converter um esquema bruto (OpenAPI + x-ui) em uma
|
|
2088
|
+
* lista tipada de FieldDefinition consumida pelo restante do sistema
|
|
2089
|
+
* (mapeadores de metadata, criador de FormGroup, carregador de campos dinâmicos, etc.).
|
|
2090
|
+
*
|
|
2091
|
+
* Entrada esperada
|
|
2092
|
+
* - Objeto JSON no formato OpenAPI/JSON Schema contendo:
|
|
2093
|
+
* - properties: { [name: string]: { type, title, description, ... , 'x-ui': { ... } } }
|
|
2094
|
+
* - Em cada propriedade, o objeto 'x-ui' define aspectos de UI/validação.
|
|
2095
|
+
*
|
|
2096
|
+
* Saída (FieldDefinition[])
|
|
2097
|
+
* - Tipagem forte de campos com funções reais (nunca strings) para regras condicionais e validadores customizados.
|
|
2098
|
+
* - Todas as propriedades de validação e comportamento consolidadas no mesmo objeto do campo.
|
|
2099
|
+
*
|
|
2100
|
+
* Segurança e observações
|
|
2101
|
+
* - Este serviço aceita funções em formato string dentro do x-ui (ex.: uniqueValidator, conditionalValidation),
|
|
2102
|
+
* e as converte via new Function. Isso exige backend confiável e controlado.
|
|
2103
|
+
* Em ambientes não confiáveis, evite funções como string ou implemente um sandbox/whitelist.
|
|
2104
|
+
* - Valores booleanos/numéricos são normalizados para tipos nativos.
|
|
2105
|
+
* - Arrays de opções são convertidos para pares { key, value } previsíveis.
|
|
2106
|
+
*
|
|
2107
|
+
* Exemplo mínimo de entrada
|
|
2108
|
+
* const schema = {
|
|
2109
|
+
* properties: {
|
|
2110
|
+
* email: {
|
|
2111
|
+
* type: 'string',
|
|
2112
|
+
* title: 'E-mail',
|
|
2113
|
+
* 'x-ui': { controlType: 'input', type: 'string', required: true, email: true }
|
|
2114
|
+
* }
|
|
2115
|
+
* }
|
|
2116
|
+
* };
|
|
2117
|
+
* const fields = normalizer.normalizeSchema(schema);
|
|
2118
|
+
* // fields: [{ name: 'email', label: 'E-mail', type: 'string', controlType: 'input', required: true, email: true }]
|
|
2119
|
+
*/
|
|
2120
|
+
declare class SchemaNormalizerService {
|
|
2121
|
+
/** Convert value to boolean. Accepts boolean, string or number. */
|
|
2122
|
+
private parseBoolean;
|
|
2123
|
+
/** Ensure an array of strings from various inputs. */
|
|
2124
|
+
private parseStringArray;
|
|
2125
|
+
/** Parse option arrays into `{ key, value }` objects. */
|
|
2126
|
+
private parseOptions;
|
|
2127
|
+
private parseOptionSource;
|
|
2128
|
+
private parseValuePresentation;
|
|
2125
2129
|
/**
|
|
2126
|
-
*
|
|
2130
|
+
* Converte string/Function em função real.
|
|
2131
|
+
* Atenção: usa `new Function` para avaliar strings – requer backend confiável.
|
|
2127
2132
|
*/
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2133
|
+
private parseFunction;
|
|
2134
|
+
/** Parse a predicate function: () => boolean */
|
|
2135
|
+
private parsePredicateFunction;
|
|
2136
|
+
/** Parse a transform function: (val: any) => any */
|
|
2137
|
+
private parseTransformFunction;
|
|
2138
|
+
/**
|
|
2139
|
+
* Parse de validador condicional: (value: any, model?: any) => boolean | string | Promise<boolean | string>
|
|
2140
|
+
*/
|
|
2141
|
+
private parseConditionalValidator;
|
|
2142
|
+
/**
|
|
2143
|
+
* Extrai e normaliza propriedades de validação a partir do objeto x-ui.
|
|
2144
|
+
* Suporta: required, min/max, minLength/maxLength, pattern/regex, email, url,
|
|
2145
|
+
* matchField, uniqueValidator (+message), conditionalValidation, requiredChecked,
|
|
2146
|
+
* arquivos (allowedFileTypes, fileTypeMessage, maxFileSize), custom/async validators,
|
|
2147
|
+
* minWords e comportamento (validationTrigger(s), validationDebounce, showInlineErrors, errorPosition).
|
|
2148
|
+
*/
|
|
2149
|
+
private parseValidators;
|
|
2150
|
+
/** Parse array of button definitions. */
|
|
2151
|
+
private parseButtons;
|
|
2152
|
+
private resolveNonEmptyStringToken;
|
|
2153
|
+
private isNumericSchemaType;
|
|
2154
|
+
private resolveNumericFormatToken;
|
|
2155
|
+
/**
|
|
2156
|
+
* Converte o schema bruto do backend (OpenAPI + x-ui) em FieldDefinition[] tipado.
|
|
2157
|
+
* Regras:
|
|
2158
|
+
* - Ignora propriedades sem x-ui.
|
|
2159
|
+
* - Garante ordenação por 'order' quando presente.
|
|
2160
|
+
* - Funções condicionais/transformações sempre viram funções reais.
|
|
2161
|
+
*
|
|
2162
|
+
* @param schema Objeto OpenAPI/JSON Schema com properties e x-ui por propriedade.
|
|
2163
|
+
* @returns FieldDefinition[] prontos para mapeamento/uso no restante do sistema.
|
|
2164
|
+
*/
|
|
2165
|
+
normalizeSchema(schema: any): FieldDefinition[];
|
|
2166
|
+
private resolveFieldType;
|
|
2167
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SchemaNormalizerService, never>;
|
|
2168
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SchemaNormalizerService>;
|
|
2138
2169
|
}
|
|
2139
|
-
/**
|
|
2140
|
-
* Type guard to check if config is V2
|
|
2141
|
-
*/
|
|
2142
|
-
declare function isTableConfigV2(config: any): config is TableConfigV2;
|
|
2143
2170
|
|
|
2144
2171
|
type TableConfig = TableConfigV2;
|
|
2145
2172
|
|
|
@@ -2528,6 +2555,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
2528
2555
|
private schemaNormalizer;
|
|
2529
2556
|
private globalConfig;
|
|
2530
2557
|
private static readonly ERROR_MESSAGES;
|
|
2558
|
+
private static readonly unavailableFilteredSchemaUrls;
|
|
2531
2559
|
private baseApiUrl;
|
|
2532
2560
|
private apiUrl;
|
|
2533
2561
|
private endpoints;
|
|
@@ -2610,6 +2638,7 @@ declare class GenericCrudService<T, ID extends string | number = string | number
|
|
|
2610
2638
|
* ```
|
|
2611
2639
|
*/
|
|
2612
2640
|
getSchema(options?: CrudOperationOptions): Observable<FieldDefinition[]>;
|
|
2641
|
+
private fetchDirectSchema;
|
|
2613
2642
|
/** Retorna o campo identificador do recurso (ex.: 'id', 'codigo'), quando derivado do schema. */
|
|
2614
2643
|
getResourceIdField(): string | undefined;
|
|
2615
2644
|
/** Retorna o último schemaId e hash conhecidos após getSchema()/getFilteredSchema(). */
|
|
@@ -3157,6 +3186,8 @@ declare const API_CONFIG_STORAGE_OPTIONS: InjectionToken<ApiConfigStorageOptions
|
|
|
3157
3186
|
* HTTP-based storage that talks to praxis-config-starter user-config API.
|
|
3158
3187
|
*/
|
|
3159
3188
|
declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
3189
|
+
private static readonly unavailableLoadBaseUrls;
|
|
3190
|
+
private static readonly loadAvailabilityProbes;
|
|
3160
3191
|
private readonly http;
|
|
3161
3192
|
private readonly opts;
|
|
3162
3193
|
private readonly baseUrl;
|
|
@@ -3165,7 +3196,11 @@ declare class ApiConfigStorage implements AsyncConfigStorage {
|
|
|
3165
3196
|
private readonly componentTypeResolver;
|
|
3166
3197
|
private readonly cache;
|
|
3167
3198
|
constructor();
|
|
3199
|
+
private shouldLogLoadError;
|
|
3200
|
+
private shouldLogSaveError;
|
|
3201
|
+
private shouldLogClearError;
|
|
3168
3202
|
loadConfig<T>(key: string): Observable<T | null>;
|
|
3203
|
+
private executeLoadConfigRequest;
|
|
3169
3204
|
saveConfig<T>(key: string, config: T): Observable<void>;
|
|
3170
3205
|
private shouldPropagateSaveError;
|
|
3171
3206
|
private shouldPropagateClearError;
|
|
@@ -3195,6 +3230,14 @@ type GlobalActionContext = {
|
|
|
3195
3230
|
payload?: any;
|
|
3196
3231
|
pageContext?: Record<string, any> | null;
|
|
3197
3232
|
meta?: Record<string, any>;
|
|
3233
|
+
runtime?: {
|
|
3234
|
+
row?: any;
|
|
3235
|
+
item?: any;
|
|
3236
|
+
selection?: any;
|
|
3237
|
+
formData?: any;
|
|
3238
|
+
value?: any;
|
|
3239
|
+
state?: any;
|
|
3240
|
+
};
|
|
3198
3241
|
};
|
|
3199
3242
|
type GlobalActionHandler = (payload?: any, context?: GlobalActionContext) => Promise<GlobalActionResult> | GlobalActionResult;
|
|
3200
3243
|
interface GlobalActionHandlerEntry {
|
|
@@ -3250,10 +3293,12 @@ declare class GlobalActionService {
|
|
|
3250
3293
|
private readonly registry;
|
|
3251
3294
|
private readonly globalConfig;
|
|
3252
3295
|
private readonly dialog;
|
|
3296
|
+
private readonly surface;
|
|
3253
3297
|
private readonly toast;
|
|
3254
3298
|
private readonly analytics;
|
|
3255
3299
|
private readonly api;
|
|
3256
3300
|
private readonly guardResolver;
|
|
3301
|
+
private readonly surfaceBindingRuntime;
|
|
3257
3302
|
constructor();
|
|
3258
3303
|
register(id: string, handler: GlobalActionHandler): void;
|
|
3259
3304
|
has(id: string): boolean;
|
|
@@ -3265,6 +3310,67 @@ declare class GlobalActionService {
|
|
|
3265
3310
|
static ɵprov: i0.ɵɵInjectableDeclaration<GlobalActionService>;
|
|
3266
3311
|
}
|
|
3267
3312
|
|
|
3313
|
+
type ActionDefinition = {
|
|
3314
|
+
/** Global action id to execute (e.g., 'navigation.back', 'dialog.alert'). */
|
|
3315
|
+
type?: string;
|
|
3316
|
+
/** Optional payload template for the action. */
|
|
3317
|
+
params?: Record<string, any>;
|
|
3318
|
+
};
|
|
3319
|
+
interface WidgetDefinition {
|
|
3320
|
+
/** Component id registered in ComponentMetadataRegistry */
|
|
3321
|
+
id: string;
|
|
3322
|
+
/** Inputs to bind into the component instance */
|
|
3323
|
+
inputs?: Record<string, any>;
|
|
3324
|
+
/** Map of component output name to action (global action or 'emit'). */
|
|
3325
|
+
outputs?: Record<string, ActionDefinition | 'emit'>;
|
|
3326
|
+
/**
|
|
3327
|
+
* Optional explicit order for applying inputs. Keys listed here are applied first
|
|
3328
|
+
* (in order) with change detection flush between each, then remaining inputs are applied.
|
|
3329
|
+
*/
|
|
3330
|
+
bindingOrder?: string[];
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3333
|
+
type SurfacePresentation = 'modal' | 'drawer';
|
|
3334
|
+
type SurfaceBindingMode = 'path' | 'template' | 'constant';
|
|
3335
|
+
interface SurfaceBinding {
|
|
3336
|
+
from?: string;
|
|
3337
|
+
to: string;
|
|
3338
|
+
mode?: SurfaceBindingMode;
|
|
3339
|
+
value?: any;
|
|
3340
|
+
}
|
|
3341
|
+
interface SurfaceSizeConfig {
|
|
3342
|
+
width?: string;
|
|
3343
|
+
height?: string;
|
|
3344
|
+
minWidth?: string;
|
|
3345
|
+
maxWidth?: string;
|
|
3346
|
+
minHeight?: string;
|
|
3347
|
+
maxHeight?: string;
|
|
3348
|
+
}
|
|
3349
|
+
interface SurfaceOpenPayload {
|
|
3350
|
+
presentation: SurfacePresentation;
|
|
3351
|
+
title?: string;
|
|
3352
|
+
subtitle?: string;
|
|
3353
|
+
icon?: string;
|
|
3354
|
+
size?: SurfaceSizeConfig;
|
|
3355
|
+
widget: WidgetDefinition;
|
|
3356
|
+
bindings?: SurfaceBinding[];
|
|
3357
|
+
context?: Record<string, any>;
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3360
|
+
declare class SurfaceBindingRuntimeService {
|
|
3361
|
+
resolveWidget(widget: WidgetDefinition, bindings: SurfaceBinding[] | undefined, actionPayload?: any, actionContext?: GlobalActionContext, explicitContext?: Record<string, any>): WidgetDefinition;
|
|
3362
|
+
extractByPath(obj: any, path?: string): any;
|
|
3363
|
+
resolveTemplate(node: any, context: any): any;
|
|
3364
|
+
setValueAtPath<T extends object>(obj: T, rawPath: string, value: any): T;
|
|
3365
|
+
private buildContext;
|
|
3366
|
+
private resolveBindingValue;
|
|
3367
|
+
private normalizeTargetPath;
|
|
3368
|
+
private tokenizePath;
|
|
3369
|
+
private clone;
|
|
3370
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceBindingRuntimeService, never>;
|
|
3371
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SurfaceBindingRuntimeService>;
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3268
3374
|
interface ConnectionConfigV1 {
|
|
3269
3375
|
resourcePath: string;
|
|
3270
3376
|
version: 1;
|
|
@@ -3829,6 +3935,14 @@ interface FieldMetadata extends ComponentMetadata {
|
|
|
3829
3935
|
mask?: string;
|
|
3830
3936
|
/** Format for display values */
|
|
3831
3937
|
format?: string;
|
|
3938
|
+
/**
|
|
3939
|
+
* Canonical value-presentation semantics used by read-only/display surfaces.
|
|
3940
|
+
*
|
|
3941
|
+
* When provided, this metadata should be preferred over legacy formatting
|
|
3942
|
+
* hints such as `format`, `currency`, `locale`, or control-specific
|
|
3943
|
+
* heuristics.
|
|
3944
|
+
*/
|
|
3945
|
+
valuePresentation?: ValuePresentationConfig;
|
|
3832
3946
|
/** Material Design specific configuration */
|
|
3833
3947
|
materialDesign?: MaterialDesignConfig;
|
|
3834
3948
|
/** Fields this field depends on */
|
|
@@ -6729,7 +6843,12 @@ declare function getGlobalActionCatalog(catalog: ReadonlyArray<GlobalActionCatal
|
|
|
6729
6843
|
declare const PRAXIS_GLOBAL_ACTION_CATALOG: GlobalActionCatalogEntry[];
|
|
6730
6844
|
declare function providePraxisGlobalActionCatalog(): Provider[];
|
|
6731
6845
|
|
|
6732
|
-
|
|
6846
|
+
interface GlobalSurfaceService {
|
|
6847
|
+
open: (payload: SurfaceOpenPayload, context?: GlobalActionContext) => Promise<any> | any;
|
|
6848
|
+
}
|
|
6849
|
+
declare const GLOBAL_SURFACE_SERVICE: InjectionToken<GlobalSurfaceService>;
|
|
6850
|
+
|
|
6851
|
+
type GlobalActionId = 'navigate' | 'openUrl' | 'surface.open' | 'showAlert' | 'log' | 'openDialog' | 'confirm' | 'alert' | 'prompt' | 'submitForm' | 'resetForm' | 'validateForm' | 'clearValidation' | 'saveFormDraft' | 'loadFormDraft' | 'clearFormDraft' | 'apiCall' | 'download' | 'copyToClipboard' | 'refreshOptions' | 'loadDependentData';
|
|
6733
6852
|
type GlobalActionParam = {
|
|
6734
6853
|
required?: boolean;
|
|
6735
6854
|
label?: string;
|
|
@@ -6745,9 +6864,13 @@ interface GlobalActionSpec {
|
|
|
6745
6864
|
}
|
|
6746
6865
|
declare const GLOBAL_ACTION_CATALOG: GlobalActionSpec[];
|
|
6747
6866
|
|
|
6867
|
+
declare const SURFACE_OPEN_I18N_NAMESPACE = "surfaceOpen";
|
|
6868
|
+
declare const SURFACE_OPEN_I18N_CONFIG: Partial<PraxisI18nConfig>;
|
|
6869
|
+
|
|
6748
6870
|
interface SettingsPanelRef<T = any> {
|
|
6749
6871
|
applied$: Observable<T>;
|
|
6750
6872
|
saved$: Observable<T>;
|
|
6873
|
+
closed$?: Observable<any>;
|
|
6751
6874
|
}
|
|
6752
6875
|
interface SettingsPanelOpenContent<TInputs = any> {
|
|
6753
6876
|
component: Type<any>;
|
|
@@ -6756,6 +6879,7 @@ interface SettingsPanelOpenContent<TInputs = any> {
|
|
|
6756
6879
|
interface SettingsPanelOpenOptions<TInputs = any> {
|
|
6757
6880
|
id: string;
|
|
6758
6881
|
title: string;
|
|
6882
|
+
titleIcon?: string;
|
|
6759
6883
|
content: SettingsPanelOpenContent<TInputs>;
|
|
6760
6884
|
}
|
|
6761
6885
|
interface SettingsPanelBridge {
|
|
@@ -6803,6 +6927,16 @@ declare class PraxisI18nService {
|
|
|
6803
6927
|
declare function interpolatePraxisTranslation(template: string, params?: PraxisTranslationParams): string;
|
|
6804
6928
|
declare function mergePraxisI18nConfigs(...configs: Array<Partial<PraxisI18nConfig> | null | undefined>): PraxisI18nConfig;
|
|
6805
6929
|
|
|
6930
|
+
declare function resolveValuePresentation(config: ValuePresentationConfig, context?: ValuePresentationResolutionContext): ResolvedValuePresentation;
|
|
6931
|
+
declare function resolveValuePresentationLocale(context?: ValuePresentationResolutionContext, localization?: LocalizationConfig | null): string;
|
|
6932
|
+
declare function supportsImplicitValuePresentation(type: ValuePresentationType | null | undefined): boolean;
|
|
6933
|
+
declare function resolveDefaultValuePresentationFormat(type: ValuePresentationType, style: ValuePresentationStyle | undefined, context: {
|
|
6934
|
+
localization?: LocalizationConfig | null;
|
|
6935
|
+
number: NumberLocaleConfig;
|
|
6936
|
+
currency: CurrencyLocaleConfig;
|
|
6937
|
+
dateTime: DateTimeLocaleConfig;
|
|
6938
|
+
}): string | undefined;
|
|
6939
|
+
|
|
6806
6940
|
interface MaterialTimeTrackShift {
|
|
6807
6941
|
id?: string;
|
|
6808
6942
|
label?: string;
|
|
@@ -6915,26 +7049,6 @@ interface FormHooksLayout {
|
|
|
6915
7049
|
onError?: FormHookDeclarationLite[];
|
|
6916
7050
|
}
|
|
6917
7051
|
|
|
6918
|
-
type ActionDefinition = {
|
|
6919
|
-
/** Global action id to execute (e.g., 'navigation.back', 'dialog.alert'). */
|
|
6920
|
-
type?: string;
|
|
6921
|
-
/** Optional payload template for the action. */
|
|
6922
|
-
params?: Record<string, any>;
|
|
6923
|
-
};
|
|
6924
|
-
interface WidgetDefinition {
|
|
6925
|
-
/** Component id registered in ComponentMetadataRegistry */
|
|
6926
|
-
id: string;
|
|
6927
|
-
/** Inputs to bind into the component instance */
|
|
6928
|
-
inputs?: Record<string, any>;
|
|
6929
|
-
/** Map of component output name to action (global action or 'emit'). */
|
|
6930
|
-
outputs?: Record<string, ActionDefinition | 'emit'>;
|
|
6931
|
-
/**
|
|
6932
|
-
* Optional explicit order for applying inputs. Keys listed here are applied first
|
|
6933
|
-
* (in order) with change detection flush between each, then remaining inputs are applied.
|
|
6934
|
-
*/
|
|
6935
|
-
bindingOrder?: string[];
|
|
6936
|
-
}
|
|
6937
|
-
|
|
6938
7052
|
interface Specification<T extends object = any> {
|
|
6939
7053
|
isSatisfiedBy(obj: T): boolean;
|
|
6940
7054
|
}
|
|
@@ -7327,8 +7441,37 @@ interface FormSection {
|
|
|
7327
7441
|
headerAlign?: 'start' | 'center';
|
|
7328
7442
|
/** Optional tooltip for the section header */
|
|
7329
7443
|
headerTooltip?: string;
|
|
7444
|
+
/**
|
|
7445
|
+
* Optional icon actions rendered on the trailing edge of the section header.
|
|
7446
|
+
* Intended for contextual section-level affordances such as help, refresh or drill-down.
|
|
7447
|
+
*/
|
|
7448
|
+
headerActions?: FormSectionHeaderAction[];
|
|
7330
7449
|
rows: FormRow[];
|
|
7331
7450
|
}
|
|
7451
|
+
interface FormSectionHeaderAction {
|
|
7452
|
+
/** Stable identifier used by runtime events, rule overrides and authoring surfaces. */
|
|
7453
|
+
id: string;
|
|
7454
|
+
/** Accessible label used for tooltip/aria even when the action is rendered as icon-only. */
|
|
7455
|
+
label: string;
|
|
7456
|
+
/** Icon rendered in the section header action slot. */
|
|
7457
|
+
icon: string;
|
|
7458
|
+
/** Optional action name emitted by the runtime; defaults to `id` when omitted. */
|
|
7459
|
+
action?: string;
|
|
7460
|
+
/** Optional tooltip override. Falls back to `label` when omitted. */
|
|
7461
|
+
tooltip?: string;
|
|
7462
|
+
/** Optional theme color mapped to Angular Material button tones. */
|
|
7463
|
+
color?: 'primary' | 'accent' | 'warn' | 'basic';
|
|
7464
|
+
/** Optional visibility flag. Defaults to visible when omitted. */
|
|
7465
|
+
visible?: boolean;
|
|
7466
|
+
/** Optional disabled state. */
|
|
7467
|
+
disabled?: boolean;
|
|
7468
|
+
/** Optional loading/busy state. */
|
|
7469
|
+
loading?: boolean;
|
|
7470
|
+
/** Optional CSS class applied to the action button. */
|
|
7471
|
+
className?: string;
|
|
7472
|
+
/** Optional inline styles applied to the action button. */
|
|
7473
|
+
style?: Record<string, any>;
|
|
7474
|
+
}
|
|
7332
7475
|
type FormSectionHeaderMode = 'icon' | 'avatar-image' | 'avatar-initials' | 'auto';
|
|
7333
7476
|
type FormSectionHeaderEmptyState = 'fallback-icon' | 'placeholder-avatar' | 'none';
|
|
7334
7477
|
type FormSectionHeaderSize = 'sm' | 'md' | 'lg';
|
|
@@ -7612,7 +7755,8 @@ interface FormCustomActionEvent {
|
|
|
7612
7755
|
actionId: string;
|
|
7613
7756
|
formData: any;
|
|
7614
7757
|
isValid: boolean;
|
|
7615
|
-
source: 'button' | 'shortcut';
|
|
7758
|
+
source: 'button' | 'shortcut' | 'section-header';
|
|
7759
|
+
sectionId?: string;
|
|
7616
7760
|
}
|
|
7617
7761
|
interface FormActionConfirmationEvent {
|
|
7618
7762
|
actionId: 'submit' | 'cancel' | 'reset' | string;
|
|
@@ -8256,6 +8400,50 @@ interface WidgetConnection {
|
|
|
8256
8400
|
};
|
|
8257
8401
|
}
|
|
8258
8402
|
type WidgetPageOrientation = 'vertical' | 'columns';
|
|
8403
|
+
type WidgetPageDeviceKind = 'desktop' | 'tablet' | 'mobile';
|
|
8404
|
+
interface WidgetPageSlotDefinition {
|
|
8405
|
+
id: string;
|
|
8406
|
+
label: string;
|
|
8407
|
+
description?: string;
|
|
8408
|
+
required?: boolean;
|
|
8409
|
+
accepts?: string[];
|
|
8410
|
+
minItems?: number;
|
|
8411
|
+
maxItems?: number;
|
|
8412
|
+
}
|
|
8413
|
+
interface WidgetPageWidgetSuggestion {
|
|
8414
|
+
slot: string;
|
|
8415
|
+
widgetType?: string;
|
|
8416
|
+
label?: string;
|
|
8417
|
+
priority?: 'primary' | 'secondary' | 'optional';
|
|
8418
|
+
description?: string;
|
|
8419
|
+
}
|
|
8420
|
+
interface WidgetPageDevicePolicy {
|
|
8421
|
+
stacking?: 'preserve' | 'compress' | 'linearize';
|
|
8422
|
+
hideSecondaryContentOnMobile?: boolean;
|
|
8423
|
+
preferTabsOnMobile?: boolean;
|
|
8424
|
+
}
|
|
8425
|
+
interface WidgetPageLayoutPresetDefinition {
|
|
8426
|
+
id: string;
|
|
8427
|
+
label: string;
|
|
8428
|
+
description?: string;
|
|
8429
|
+
category?: 'analytics' | 'operations' | 'master-detail' | 'workspace';
|
|
8430
|
+
defaultLayout: WidgetPageLayout;
|
|
8431
|
+
defaultGrouping?: WidgetPageGroupingDefinition[];
|
|
8432
|
+
defaultThemePreset?: string;
|
|
8433
|
+
slotModel: WidgetPageSlotDefinition[];
|
|
8434
|
+
widgetSuggestions?: WidgetPageWidgetSuggestion[];
|
|
8435
|
+
devicePolicy?: WidgetPageDevicePolicy;
|
|
8436
|
+
}
|
|
8437
|
+
interface WidgetPageThemePresetDefinition {
|
|
8438
|
+
id: string;
|
|
8439
|
+
label: string;
|
|
8440
|
+
description?: string;
|
|
8441
|
+
shellPreset?: string;
|
|
8442
|
+
tokens?: Record<string, string>;
|
|
8443
|
+
chartThemePreset?: string;
|
|
8444
|
+
density?: 'comfortable' | 'compact';
|
|
8445
|
+
motion?: 'none' | 'subtle' | 'expressive';
|
|
8446
|
+
}
|
|
8259
8447
|
interface WidgetStateNode {
|
|
8260
8448
|
/** Optional semantic type for tooling and validation. */
|
|
8261
8449
|
type?: string;
|
|
@@ -8319,6 +8507,55 @@ interface WidgetPageLayout {
|
|
|
8319
8507
|
xl?: number;
|
|
8320
8508
|
};
|
|
8321
8509
|
}
|
|
8510
|
+
interface WidgetPageWidgetLayoutOverride {
|
|
8511
|
+
className?: string;
|
|
8512
|
+
span?: number;
|
|
8513
|
+
order?: number;
|
|
8514
|
+
hidden?: boolean;
|
|
8515
|
+
}
|
|
8516
|
+
interface WidgetPageGroupingTabDefinition {
|
|
8517
|
+
id: string;
|
|
8518
|
+
label: string;
|
|
8519
|
+
widgetKeys: string[];
|
|
8520
|
+
}
|
|
8521
|
+
type WidgetPageGroupingDefinition = {
|
|
8522
|
+
kind: 'section';
|
|
8523
|
+
id: string;
|
|
8524
|
+
label?: string;
|
|
8525
|
+
widgetKeys: string[];
|
|
8526
|
+
layout?: 'stack' | 'grid' | 'row';
|
|
8527
|
+
} | {
|
|
8528
|
+
kind: 'tabs';
|
|
8529
|
+
id: string;
|
|
8530
|
+
label?: string;
|
|
8531
|
+
tabs: WidgetPageGroupingTabDefinition[];
|
|
8532
|
+
} | {
|
|
8533
|
+
kind: 'hero';
|
|
8534
|
+
id: string;
|
|
8535
|
+
widgetKeys: string[];
|
|
8536
|
+
emphasis?: 'high' | 'medium';
|
|
8537
|
+
} | {
|
|
8538
|
+
kind: 'rail';
|
|
8539
|
+
id: string;
|
|
8540
|
+
side: 'left' | 'right';
|
|
8541
|
+
widgetKeys: string[];
|
|
8542
|
+
};
|
|
8543
|
+
interface WidgetPageGroupingOverride {
|
|
8544
|
+
id: string;
|
|
8545
|
+
hidden?: boolean;
|
|
8546
|
+
widgetKeys?: string[];
|
|
8547
|
+
tabs?: WidgetPageGroupingTabDefinition[];
|
|
8548
|
+
}
|
|
8549
|
+
interface WidgetPageLayoutVariant {
|
|
8550
|
+
layout?: WidgetPageLayout;
|
|
8551
|
+
groupingOverrides?: WidgetPageGroupingOverride[];
|
|
8552
|
+
widgetOverrides?: Record<string, WidgetPageWidgetLayoutOverride>;
|
|
8553
|
+
}
|
|
8554
|
+
interface WidgetPageDeviceLayouts {
|
|
8555
|
+
desktop?: WidgetPageLayoutVariant;
|
|
8556
|
+
tablet?: WidgetPageLayoutVariant;
|
|
8557
|
+
mobile?: WidgetPageLayoutVariant;
|
|
8558
|
+
}
|
|
8322
8559
|
interface WidgetPageDefinition {
|
|
8323
8560
|
widgets: WidgetInstance[];
|
|
8324
8561
|
connections?: WidgetConnection[];
|
|
@@ -8328,6 +8565,16 @@ interface WidgetPageDefinition {
|
|
|
8328
8565
|
context?: Record<string, any>;
|
|
8329
8566
|
/** Optional layout configuration for the widget grid */
|
|
8330
8567
|
layout?: WidgetPageLayout;
|
|
8568
|
+
/** Optional canonical preset id that describes the structural intent of the page. */
|
|
8569
|
+
layoutPreset?: string;
|
|
8570
|
+
/** Optional preset-specific options consumed by builders and future runtimes. */
|
|
8571
|
+
layoutPresetOptions?: Record<string, any>;
|
|
8572
|
+
/** Optional semantic grouping model for sections, tabs, hero areas and rails. */
|
|
8573
|
+
grouping?: WidgetPageGroupingDefinition[];
|
|
8574
|
+
/** Optional device-specific layout variants. */
|
|
8575
|
+
deviceLayouts?: WidgetPageDeviceLayouts;
|
|
8576
|
+
/** Optional theme preset id for shell/chart/density defaults. */
|
|
8577
|
+
themePreset?: string;
|
|
8331
8578
|
}
|
|
8332
8579
|
|
|
8333
8580
|
interface GridItemLayout {
|
|
@@ -8353,6 +8600,11 @@ interface GridPageDefinition {
|
|
|
8353
8600
|
/** Optional declarative page state shared with builders and future runtime bridges. */
|
|
8354
8601
|
state?: WidgetPageStateInput;
|
|
8355
8602
|
context?: Record<string, any>;
|
|
8603
|
+
layoutPreset?: string;
|
|
8604
|
+
layoutPresetOptions?: Record<string, any>;
|
|
8605
|
+
grouping?: WidgetPageGroupingDefinition[];
|
|
8606
|
+
deviceLayouts?: WidgetPageDeviceLayouts;
|
|
8607
|
+
themePreset?: string;
|
|
8356
8608
|
/** Grid options */
|
|
8357
8609
|
options?: {
|
|
8358
8610
|
cols?: number;
|
|
@@ -8464,6 +8716,19 @@ interface BackConfig {
|
|
|
8464
8716
|
confirmOnDirty?: boolean;
|
|
8465
8717
|
}
|
|
8466
8718
|
|
|
8719
|
+
interface PraxisDataQueryContext {
|
|
8720
|
+
filters?: Record<string, unknown> | null;
|
|
8721
|
+
sort?: string[] | null;
|
|
8722
|
+
limit?: number | null;
|
|
8723
|
+
page?: {
|
|
8724
|
+
index?: number | null;
|
|
8725
|
+
size?: number | null;
|
|
8726
|
+
} | null;
|
|
8727
|
+
meta?: Record<string, unknown> | null;
|
|
8728
|
+
}
|
|
8729
|
+
declare function normalizePraxisDataQueryContext(context?: PraxisDataQueryContext | null): PraxisDataQueryContext | null;
|
|
8730
|
+
declare function resolvePraxisFilterCriteria(filterCriteria?: Record<string, unknown> | null, queryContext?: PraxisDataQueryContext | null): Record<string, unknown>;
|
|
8731
|
+
|
|
8467
8732
|
type LoadingPhase = 'config' | 'schema' | 'render' | 'data' | 'idle';
|
|
8468
8733
|
type LoadingStatus = 'loading' | 'success' | 'error';
|
|
8469
8734
|
interface LoadingState {
|
|
@@ -8802,10 +9067,83 @@ interface GlobalActionUiSchema {
|
|
|
8802
9067
|
id: GlobalActionId;
|
|
8803
9068
|
label: string;
|
|
8804
9069
|
fields: GlobalActionField[];
|
|
9070
|
+
editorMode?: 'default' | 'surface-open';
|
|
8805
9071
|
}
|
|
8806
9072
|
declare const GLOBAL_ACTION_UI_SCHEMAS: GlobalActionUiSchema[];
|
|
8807
9073
|
declare function getGlobalActionUiSchema(id: string | undefined): GlobalActionUiSchema | undefined;
|
|
8808
9074
|
|
|
9075
|
+
interface SurfaceOpenPreset {
|
|
9076
|
+
id: string;
|
|
9077
|
+
label: string;
|
|
9078
|
+
description: string;
|
|
9079
|
+
payload: SurfaceOpenPayload;
|
|
9080
|
+
}
|
|
9081
|
+
declare const SURFACE_OPEN_PRESETS: SurfaceOpenPreset[];
|
|
9082
|
+
|
|
9083
|
+
type SurfaceSizeField = keyof NonNullable<SurfaceOpenPayload['size']>;
|
|
9084
|
+
declare class SurfaceOpenActionEditorComponent implements OnChanges {
|
|
9085
|
+
value?: SurfaceOpenPayload | null;
|
|
9086
|
+
hostKind?: string | null;
|
|
9087
|
+
valueChange: EventEmitter<SurfaceOpenPayload>;
|
|
9088
|
+
draft: SurfaceOpenPayload;
|
|
9089
|
+
inputJsonDrafts: Record<string, string>;
|
|
9090
|
+
inputErrors: Record<string, string>;
|
|
9091
|
+
contextDraft: string;
|
|
9092
|
+
contextError: string;
|
|
9093
|
+
private readonly registry;
|
|
9094
|
+
private readonly i18n;
|
|
9095
|
+
private static nextInstanceId;
|
|
9096
|
+
private readonly instanceId;
|
|
9097
|
+
readonly sourceSuggestionsListId: string;
|
|
9098
|
+
readonly targetSuggestionsListId: string;
|
|
9099
|
+
get availablePresets(): SurfaceOpenPreset[];
|
|
9100
|
+
get componentOptions(): ComponentDocMeta[];
|
|
9101
|
+
get selectedComponentMeta(): ComponentDocMeta | undefined;
|
|
9102
|
+
get selectedInputs(): NonNullable<ComponentDocMeta['inputs']>;
|
|
9103
|
+
get bindingOrderText(): string;
|
|
9104
|
+
get bindingSourceSuggestions(): string[];
|
|
9105
|
+
get bindingTargetSuggestions(): string[];
|
|
9106
|
+
get bindingSourceSuggestionsPreview(): string;
|
|
9107
|
+
get bindingTargetSuggestionsPreview(): string;
|
|
9108
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9109
|
+
updatePresentation(value: SurfaceOpenPayload['presentation']): void;
|
|
9110
|
+
updateTextField(field: 'title' | 'subtitle' | 'icon', value: string): void;
|
|
9111
|
+
updateSizeField(field: SurfaceSizeField, value: string): void;
|
|
9112
|
+
updateWidgetId(componentId: string): void;
|
|
9113
|
+
updateBindingOrder(value: string): void;
|
|
9114
|
+
applyPreset(preset: SurfaceOpenPreset): void;
|
|
9115
|
+
isBooleanType(type?: string): boolean;
|
|
9116
|
+
isNumberType(type?: string): boolean;
|
|
9117
|
+
isJsonType(type?: string): boolean;
|
|
9118
|
+
getBooleanInputValue(name: string): boolean;
|
|
9119
|
+
getScalarInputValue(name: string): any;
|
|
9120
|
+
getJsonInputDraft(name: string): string;
|
|
9121
|
+
scalarPlaceholder(input: NonNullable<ComponentDocMeta['inputs']>[number]): string;
|
|
9122
|
+
jsonPlaceholder(input: NonNullable<ComponentDocMeta['inputs']>[number]): string;
|
|
9123
|
+
updateBooleanInput(name: string, value: boolean): void;
|
|
9124
|
+
updateScalarInput(name: string, type: string, value: any): void;
|
|
9125
|
+
updateJsonInput(name: string, value: string): void;
|
|
9126
|
+
addBinding(): void;
|
|
9127
|
+
updateBinding(index: number, field: keyof SurfaceBinding, value: any): void;
|
|
9128
|
+
removeBinding(index: number): void;
|
|
9129
|
+
updateContext(value: string): void;
|
|
9130
|
+
presetLabel(preset: SurfaceOpenPreset): string;
|
|
9131
|
+
presetDescription(preset: SurfaceOpenPreset): string;
|
|
9132
|
+
t(key: string, fallback: string, params?: Record<string, string | number | boolean | null | undefined>): string;
|
|
9133
|
+
private refreshJsonDrafts;
|
|
9134
|
+
private emitDraft;
|
|
9135
|
+
private ensureWidgetInputs;
|
|
9136
|
+
private reconcileInputsForComponent;
|
|
9137
|
+
private assignTextField;
|
|
9138
|
+
private normalizePayload;
|
|
9139
|
+
private createDefaultPayload;
|
|
9140
|
+
private stringifyJson;
|
|
9141
|
+
private clone;
|
|
9142
|
+
private uniqueStrings;
|
|
9143
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SurfaceOpenActionEditorComponent, never>;
|
|
9144
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SurfaceOpenActionEditorComponent, "praxis-surface-open-action-editor", never, { "value": { "alias": "value"; "required": false; }; "hostKind": { "alias": "hostKind"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
9145
|
+
}
|
|
9146
|
+
|
|
8809
9147
|
type AiValueKind = 'boolean' | 'string' | 'number' | 'enum' | 'expression' | 'object' | 'array';
|
|
8810
9148
|
interface AiCapabilityCategoryMap {
|
|
8811
9149
|
identity: true;
|
|
@@ -9234,6 +9572,9 @@ declare class WidgetShellComponent implements OnChanges {
|
|
|
9234
9572
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetShellComponent, "praxis-widget-shell", never, { "shell": { "alias": "shell"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, { "action": "action"; }, ["loader"], ["*"], true, never>;
|
|
9235
9573
|
}
|
|
9236
9574
|
|
|
9575
|
+
declare const BUILTIN_PAGE_LAYOUT_PRESETS: Record<string, WidgetPageLayoutPresetDefinition>;
|
|
9576
|
+
declare const BUILTIN_PAGE_THEME_PRESETS: Record<string, WidgetPageThemePresetDefinition>;
|
|
9577
|
+
|
|
9237
9578
|
declare class ConnectionManagerService {
|
|
9238
9579
|
/** Extract value from an object using dot-path (e.g., 'payload.row.id'). */
|
|
9239
9580
|
extractByPath(obj: any, path: string | undefined): any;
|
|
@@ -9287,15 +9628,44 @@ declare class WidgetPageStateRuntimeService {
|
|
|
9287
9628
|
private computeDerivedNode;
|
|
9288
9629
|
private resolveNamedSource;
|
|
9289
9630
|
private resolveSourceValues;
|
|
9631
|
+
private aggregateArray;
|
|
9632
|
+
private buildFieldList;
|
|
9633
|
+
private groupTop;
|
|
9634
|
+
private selectCase;
|
|
9635
|
+
private matchesCase;
|
|
9636
|
+
private resolveCaseValue;
|
|
9290
9637
|
private resolveTemplate;
|
|
9291
9638
|
private readPath;
|
|
9292
9639
|
private isPlainObject;
|
|
9293
9640
|
private isEqual;
|
|
9641
|
+
private isEmptyValue;
|
|
9642
|
+
private readMetricValue;
|
|
9643
|
+
private toNumber;
|
|
9644
|
+
private formatFieldValue;
|
|
9294
9645
|
private clone;
|
|
9295
9646
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetPageStateRuntimeService, never>;
|
|
9296
9647
|
static ɵprov: i0.ɵɵInjectableDeclaration<WidgetPageStateRuntimeService>;
|
|
9297
9648
|
}
|
|
9298
9649
|
|
|
9650
|
+
interface RenderedWidgetInstance extends WidgetInstance {
|
|
9651
|
+
renderClassName?: string;
|
|
9652
|
+
renderSpan?: number;
|
|
9653
|
+
}
|
|
9654
|
+
interface RenderedTabsGroup {
|
|
9655
|
+
id: string;
|
|
9656
|
+
label?: string;
|
|
9657
|
+
widgets: RenderedWidgetInstance[];
|
|
9658
|
+
}
|
|
9659
|
+
interface RenderedWidgetGroup {
|
|
9660
|
+
id: string;
|
|
9661
|
+
kind: WidgetPageGroupingDefinition['kind'] | 'ungrouped';
|
|
9662
|
+
label?: string;
|
|
9663
|
+
layout?: 'stack' | 'grid' | 'row';
|
|
9664
|
+
emphasis?: 'high' | 'medium';
|
|
9665
|
+
side?: 'left' | 'right';
|
|
9666
|
+
widgets: RenderedWidgetInstance[];
|
|
9667
|
+
tabs?: RenderedTabsGroup[];
|
|
9668
|
+
}
|
|
9299
9669
|
declare class DynamicWidgetPageComponent implements OnChanges {
|
|
9300
9670
|
private conn;
|
|
9301
9671
|
private stateRuntime;
|
|
@@ -9321,6 +9691,7 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9321
9691
|
componentInstanceId?: string;
|
|
9322
9692
|
pageChange: EventEmitter<WidgetPageDefinition>;
|
|
9323
9693
|
widgets: i0.WritableSignal<WidgetInstance[]>;
|
|
9694
|
+
renderedGroups: i0.WritableSignal<RenderedWidgetGroup[]>;
|
|
9324
9695
|
mergedContext: Record<string, any>;
|
|
9325
9696
|
pageGap: string;
|
|
9326
9697
|
gridTemplateColumns: string;
|
|
@@ -9328,6 +9699,9 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9328
9699
|
private pageState;
|
|
9329
9700
|
private pageRuntime;
|
|
9330
9701
|
private layout?;
|
|
9702
|
+
private grouping;
|
|
9703
|
+
private pageColumnCount;
|
|
9704
|
+
private activeTabs;
|
|
9331
9705
|
private appliedPersisted;
|
|
9332
9706
|
private isHydrating;
|
|
9333
9707
|
private persistenceReady;
|
|
@@ -9362,6 +9736,23 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9362
9736
|
private resolveColumns;
|
|
9363
9737
|
private ensurePageDefinition;
|
|
9364
9738
|
private parsePage;
|
|
9739
|
+
private resolvePagePresets;
|
|
9740
|
+
private mergeLayout;
|
|
9741
|
+
private applyResponsivePresentation;
|
|
9742
|
+
private resolveEffectivePresentation;
|
|
9743
|
+
private resolveDeviceVariant;
|
|
9744
|
+
private resolveDeviceKind;
|
|
9745
|
+
private applyWidgetLayoutOverrides;
|
|
9746
|
+
private applyGroupingOverrides;
|
|
9747
|
+
private buildRenderedGroups;
|
|
9748
|
+
private syncActiveTabs;
|
|
9749
|
+
activeTabId(groupId: string): string;
|
|
9750
|
+
selectGroupTab(groupId: string, tabId: string): void;
|
|
9751
|
+
resolveGroupContentLayout(group: RenderedWidgetGroup): 'stack' | 'grid' | 'row';
|
|
9752
|
+
groupGridColumn(group: RenderedWidgetGroup): string | null;
|
|
9753
|
+
widgetGridColumn(widget: RenderedWidgetInstance): string | null;
|
|
9754
|
+
widgetClassName(widget: WidgetInstance): string;
|
|
9755
|
+
private mergeClassNames;
|
|
9365
9756
|
private applyEditShellActions;
|
|
9366
9757
|
private savePage;
|
|
9367
9758
|
private loadPersistedPage;
|
|
@@ -9372,9 +9763,11 @@ declare class DynamicWidgetPageComponent implements OnChanges {
|
|
|
9372
9763
|
private sanitizeSegment;
|
|
9373
9764
|
private applyStateConnections;
|
|
9374
9765
|
private cloneStateValues;
|
|
9766
|
+
private cloneGrouping;
|
|
9375
9767
|
private collectConnectedStatePaths;
|
|
9376
9768
|
private buildStateRuntime;
|
|
9377
9769
|
private buildStateContext;
|
|
9770
|
+
private resolveShellTemplates;
|
|
9378
9771
|
private reportStateDiagnostics;
|
|
9379
9772
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicWidgetPageComponent, [null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
9380
9773
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicWidgetPageComponent, "praxis-dynamic-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; "showPageSettingsButton": { "alias": "showPageSettingsButton"; "required": false; }; "shellEditorComponent": { "alias": "shellEditorComponent"; "required": false; }; "pageEditorComponent": { "alias": "pageEditorComponent"; "required": false; }; "autoPersist": { "alias": "autoPersist"; "required": false; }; "pageIdentity": { "alias": "pageIdentity"; "required": false; }; "componentInstanceId": { "alias": "componentInstanceId"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
@@ -9434,6 +9827,22 @@ declare class DynamicGridPageComponent implements OnChanges {
|
|
|
9434
9827
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicGridPageComponent, "praxis-dynamic-grid-page", never, { "page": { "alias": "page"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "gridOptions": { "alias": "gridOptions"; "required": false; }; "enableCustomization": { "alias": "enableCustomization"; "required": false; }; }, {}, never, never, true, never>;
|
|
9435
9828
|
}
|
|
9436
9829
|
|
|
9830
|
+
declare class PraxisSurfaceHostComponent {
|
|
9831
|
+
title?: string;
|
|
9832
|
+
subtitle?: string;
|
|
9833
|
+
icon?: string;
|
|
9834
|
+
widget?: WidgetDefinition;
|
|
9835
|
+
context?: Record<string, any> | null;
|
|
9836
|
+
strictValidation: boolean;
|
|
9837
|
+
/**
|
|
9838
|
+
* Keep disabled by default to avoid duplicating the title already shown by
|
|
9839
|
+
* modal/drawer hosts. Inline consumers may opt into rendering it again.
|
|
9840
|
+
*/
|
|
9841
|
+
renderTitleInsideBody: boolean;
|
|
9842
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisSurfaceHostComponent, never>;
|
|
9843
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisSurfaceHostComponent, "praxis-surface-host", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "widget": { "alias": "widget"; "required": false; }; "context": { "alias": "context"; "required": false; }; "strictValidation": { "alias": "strictValidation"; "required": false; }; "renderTitleInsideBody": { "alias": "renderTitleInsideBody"; "required": false; }; }, {}, never, never, true, never>;
|
|
9844
|
+
}
|
|
9845
|
+
|
|
9437
9846
|
interface EmptyAction {
|
|
9438
9847
|
label: string;
|
|
9439
9848
|
icon?: string;
|
|
@@ -9806,5 +10215,5 @@ declare function provideFormHookPresets(presets: Array<FormHookPreset>): Provide
|
|
|
9806
10215
|
/** Register a whitelist of allowed hook ids/patterns. */
|
|
9807
10216
|
declare function provideHookWhitelist(allowed: Array<string | RegExp>): Provider[];
|
|
9808
10217
|
|
|
9809
|
-
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, ApiConfigStorage, ApiEndpoint, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, ConnectionManagerService, ConsoleLoggerSink, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicGridPageComponent, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisUserContextSummaryComponent, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceQuickConnectComponent, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolveSpan, slugify, stripMasksHook, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
|
|
9810
|
-
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalTableConfig, GlobalToastService, GridItemLayout, GridPageDefinition, GridPageDefinitionWithIds, GridWidgetInstance, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PraxisAnalyticsOptions, PraxisAuthContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResponsiveConfig, RichTextAppearance, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateMessagesConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, VirtualizationConfig, WidgetConnection, WidgetConnectionSource, WidgetConnectionTarget, WidgetDefinition, WidgetDerivedStateNode, WidgetInstance, WidgetPageDefinition, WidgetPageLayout, WidgetPageOrientation, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|
|
10218
|
+
export { API_CONFIG_STORAGE_OPTIONS, API_URL, ASYNC_CONFIG_STORAGE, AllowedFileTypes, ApiConfigStorage, ApiEndpoint, BUILTIN_PAGE_LAYOUT_PRESETS, BUILTIN_PAGE_THEME_PRESETS, BUILTIN_SHELL_PRESETS, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentKeyService, ComponentMetadataRegistry, ConnectionManagerService, ConsoleLoggerSink, DEFAULT_FIELD_SELECTOR_CONTROL_TYPE_MAP, DEFAULT_TABLE_CONFIG, DYNAMIC_PAGE_AI_CAPABILITIES, DYNAMIC_PAGE_COMPONENT_CONTEXT_PACK, DYNAMIC_PAGE_CONFIG_EDITOR, DYNAMIC_PAGE_SHELL_EDITOR, DefaultLoadingRenderer, DeferredAsyncConfigStorage, DynamicFormService, DynamicGridPageComponent, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EDITORIAL_ALLOWED_CONTENT_FORMATS, EDITORIAL_COMPLIANCE_PRESETS, EDITORIAL_EXTERNAL_LINK_REL, EDITORIAL_FORM_TEMPLATE_CATALOG, EDITORIAL_HTML_ENABLED, EDITORIAL_MARKDOWN_IMAGES_ENABLED, EDITORIAL_SOLUTION_CATALOG, EDITORIAL_SOLUTION_PRESETS, EDITORIAL_THEME_PRESETS, EDITORIAL_WIDGET_CONVENTION_INPUTS, EDITORIAL_WIDGET_TAG, EMPLOYEE_ONBOARDING_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_EDITORIAL_TEMPLATE, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_SOLUTION, EMPLOYEE_ONBOARDING_GUIDED_EDITORIAL_TEMPLATE, EVENT_REGISTRATION_EDITORIAL_SOLUTION, EVENT_REGISTRATION_EDITORIAL_TEMPLATE, EmptyStateCardComponent, ErrorMessageService, FIELD_METADATA_CAPABILITIES, FIELD_SELECTOR_REGISTRY_BASE, FIELD_SELECTOR_REGISTRY_DISABLE_DEFAULTS, FIELD_SELECTOR_REGISTRY_OVERRIDES, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FieldSelectorRegistry, FormHooksRegistry, GLOBAL_ACTION_CATALOG$1 as GLOBAL_ACTION_CATALOG, GLOBAL_ACTION_HANDLERS, GLOBAL_ACTION_CATALOG as GLOBAL_ACTION_SPEC_CATALOG, GLOBAL_ACTION_UI_SCHEMAS, GLOBAL_ANALYTICS_SERVICE, GLOBAL_API_CLIENT, GLOBAL_CONFIG, GLOBAL_DIALOG_SERVICE, GLOBAL_ROUTE_GUARD_RESOLVER, GLOBAL_SURFACE_SERVICE, GLOBAL_TOAST_SERVICE, GenericCrudService, GlobalActionService, GlobalConfigService, INLINE_FILTER_ALIAS_TOKENS, INLINE_FILTER_CONTROL_TYPES, INLINE_FILTER_CONTROL_TYPE_SET, INLINE_FILTER_CONTROL_TYPE_VALUES, INLINE_FILTER_TOKEN_TO_BASE_CONTROL_TYPE, INLINE_FILTER_TOKEN_TO_CONTROL_TYPE, IconPickerService, IconPosition, IconSize, LOGGER_LEVEL_BY_ENV, LOGGER_LEVEL_PRIORITY, LoadingOrchestrator, LocalConnectionStorage, LocalStorageAsyncAdapter, LocalStorageCacheAdapter, LocalStorageConfigService, LoggerService, LoggerThrottleTracker, LoggerWarnOnceTracker, MemoryCacheAdapter, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, ObservabilityDashboardService, OverlayDeciderService, PRAXIS_CORPORATE_SENSITIVE_KEYS, PRAXIS_DEFAULT_OBSERVABILITY_ALERT_RULES, PRAXIS_DYNAMIC_PAGE_COMPONENT_METADATA, PRAXIS_FOOTER_LINKS_METADATA, PRAXIS_GLOBAL_ACTION_CATALOG, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_OPTIONS, PRAXIS_GLOBAL_CONFIG_BOOTSTRAP_READY, PRAXIS_GLOBAL_CONFIG_TENANT_RESOLVER, PRAXIS_HERO_BANNER_METADATA, PRAXIS_I18N_CONFIG, PRAXIS_I18N_TRANSLATOR, PRAXIS_LEGAL_NOTICE_METADATA, PRAXIS_LOADING_CTX, PRAXIS_LOADING_RENDERER, PRAXIS_LOGGER_CONFIG, PRAXIS_LOGGER_SINKS, PRAXIS_OBSERVABILITY_DASHBOARD_OPTIONS, PRAXIS_RICH_TEXT_BLOCK_METADATA, PRAXIS_TELEMETRY_TRANSPORT, PRAXIS_USER_CONTEXT_SUMMARY_METADATA, PRIVACY_CONSENT_EDITORIAL_SOLUTION, PRIVACY_CONSENT_EDITORIAL_TEMPLATE, PraxisCore, PraxisFooterLinksComponent, PraxisGlobalErrorHandler, PraxisHeroBannerComponent, PraxisI18nService, PraxisIconDirective, PraxisIconPickerComponent, PraxisLegalNoticeComponent, PraxisLoadingInterceptor, PraxisRichTextBlockComponent, PraxisSurfaceHostComponent, PraxisUserContextSummaryComponent, RULE_PROPERTY_SCHEMA, RemoteConfigStorage, ResourceQuickConnectComponent, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SURFACE_OPEN_I18N_CONFIG, SURFACE_OPEN_I18N_NAMESPACE, SURFACE_OPEN_PRESETS, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, SurfaceBindingRuntimeService, SurfaceOpenActionEditorComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryLoggerSink, TelemetryService, ValidationPattern, WidgetPageStateRuntimeService, WidgetShellComponent, applyLocalCustomizations$1 as applyLocalCustomizations, applyLocalCustomizations as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildFormConfigFromEditorialTemplate, buildHeaders, buildPageKey, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, clampRange, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCorporateLoggerConfig, createCorporateObservabilityOptions, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, extractNormalizedError, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEditorialCompliancePresetById, getEditorialFormTemplateById, getEditorialFormTemplateCatalog, getEditorialSolutionById, getEditorialSolutionCatalog, getEditorialSolutionPresetById, getEditorialThemePresetById, getEssentialConfig, getFieldMetadataCapabilities, getGlobalActionCatalog, getGlobalActionUiSchema, getReferencedFieldMetadata, getTextTransformer, interpolatePraxisTranslation, isAllowedEditorialContentFormat, isAllowedEditorialHref, isCssTextTransform, isEditorialComponentMeta, isInlineFilterControlType, isRangeValidForFilter, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergePraxisI18nConfigs, mergeTableConfigs, migrateFormLayoutRule, minWordsValidator, normalizeControlTypeKey, normalizeControlTypeToken, normalizeEditorialLink, normalizeEnd, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, normalizePraxisDataQueryContext, normalizeStart, normalizeUnknownError, notifySuccessHook, parseJsonResponseOrEmpty, praxisLoadingInterceptorFn, prefillFromContextHook, provideDefaultFormHooks, provideFieldSelectorRegistryBase, provideFieldSelectorRegistryOverride, provideFieldSelectorRegistryRuntime, provideFormHookPresets, provideFormHooks, provideGlobalActionCatalog, provideGlobalActionHandler, provideGlobalConfig, provideGlobalConfigReady, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, providePraxisAnalyticsGlobalActions, providePraxisDynamicPageMetadata, providePraxisFooterLinksMetadata, providePraxisGlobalActionCatalog, providePraxisGlobalActions, providePraxisGlobalConfigBootstrap, providePraxisHeroBannerMetadata, providePraxisHttpLoading, providePraxisI18n, providePraxisI18nConfig, providePraxisI18nTranslator, providePraxisLegalNoticeMetadata, providePraxisLoadingDefaults, providePraxisLogging, providePraxisRichTextBlockMetadata, providePraxisToastGlobalActions, providePraxisUserContextSummaryMetadata, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveBuiltinPresets, resolveControlTypeAlias, resolveDefaultValuePresentationFormat, resolveHidden, resolveInlineFilterControlType, resolveInlineFilterControlTypeToBaseControlType, resolveLoggerConfig, resolveObservabilityOptions, resolveOffset, resolveOrder, resolvePraxisFilterCriteria, resolveSpan, resolveValuePresentation, resolveValuePresentationLocale, slugify, stripMasksHook, supportsImplicitValuePresentation, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, trim, uniqueAsyncValidator, urlValidator, withMessage, withPraxisHttpLoading };
|
|
10219
|
+
export type { AccessibilityConfig, ActionDefinition, ActionMessagesConfig, AiCapability, AiCapabilityCatalog, AiCapabilityCategory, AiCapabilityCategoryMap, AiConcept, AiConceptPack, AiValueKind, AnimationConfig, AnnouncementConfig, ApiConfigStorageOptions, ApiUrlConfig, ApiUrlEntry, AsyncConfigStorage, BackConfig, BaseMaterialInputMetadata, BatchDeleteOptions, BatchDeleteProgress, BatchDeleteResult, BorderConfig, Breakpoint, BuiltValidators, BulkAction, BulkActionsConfig, CacheAdapter, CacheConfig, CacheEntry, Capability$1 as Capability, CapabilityCatalog$1 as CapabilityCatalog, CapabilityCategory$1 as CapabilityCategory, ColorConfig, ColumnAlign, ColumnDefinition, ColumnHidden, ColumnOffset, ColumnOrder, ColumnSpan, ComponentActionParam, ComponentContextAction, ComponentContextOption, ComponentContextOptionMode, ComponentContextOptionsByPathEntry, ComponentContextPack, ComponentDocMeta, ComponentKeyParams, ComponentMergePatch, ComponentMetadata, ConfigMetadata, ConfigStorage, ConfirmationConfig, ConnectionConfigV1, ConnectionStorage, ContextAction, ContextActionsConfig, BackConfig as CoreBackConfig, CoreFieldMetadata, CrudOperationOptions, CsvExportConfig, CurrencyLocaleConfig, CursorPage, CursorRequest, CustomizationLog, DataConfig, DataTransformation, DataValidationConfig, DateRangePreset, DateRangeValue, DateTimeLocaleConfig, DebounceConfig, DeviceKind, DraggingConfig, Capability as DynamicPageCapability, CapabilityCatalog as DynamicPageCapabilityCatalog, CapabilityCategory as DynamicPageCapabilityCategory, ValueKind as DynamicPageValueKind, EditorialBlock, EditorialBlockBase, EditorialBlockKind, EditorialBlockOverride, EditorialBlockSurface, EditorialBlockTone, EditorialBlockVisibilityRule, EditorialCompliancePreset, EditorialComponentDocMeta, EditorialConnectorStyle, EditorialContentFormat, EditorialContextFieldContract, EditorialContextSummaryBlock, EditorialCustomWidgetBlock, EditorialDataCollectionBlock, EditorialDensity, EditorialFaqAccordionBlock, EditorialFaqItem, EditorialFormCompliancePreset, EditorialFormShellPreset, EditorialFormTemplate, EditorialFormTemplateBuildOptions, EditorialFormTemplateContextField, EditorialFormTemplateDefaults, EditorialFormTemplateLayoutPreset, EditorialFormTemplateMetadata, EditorialFormTemplateReference, EditorialHeroBlock, EditorialIconSpec, EditorialInfoCardItem, EditorialInfoCardsBlock, EditorialIntroHeroBlock, EditorialIntroHeroHighlightItem, EditorialJourney, EditorialJourneyOverride, EditorialJourneyStep, EditorialLayoutConfig, EditorialLayoutSpacing, EditorialLinkDefinition, EditorialLinkItem, EditorialMetaItem, EditorialMotionConfig, EditorialOrientation, EditorialPolicyItem, EditorialPolicyListBlock, EditorialPresentationShellVariant, EditorialPresentationalAction, EditorialPresentationalVisibilityRule, EditorialProblemType, EditorialResponsiveLayoutConfig, EditorialReviewField, EditorialReviewSection, EditorialReviewSectionField, EditorialReviewSectionsBlock, EditorialReviewSummaryBlock, EditorialRichTextBlock, EditorialSelectionCardItem, EditorialSelectionCardsBlock, EditorialShellVariant, EditorialSolutionDefinition, EditorialSolutionPreset, EditorialStepKind, EditorialStepVisualConfig, EditorialStepVisualVariant, EditorialStepperConfig, EditorialStepperVariant, EditorialSuccessPanelBlock, EditorialSurfaceVariant, EditorialTemplateInstance, EditorialTemplateInstanceOverrides, EditorialTemplateRef, EditorialTemplateSource, EditorialThemeBorderWidthTokens, EditorialThemeColorTokens, EditorialThemePreset, EditorialThemeRadiusTokens, EditorialThemeShadowTokens, EditorialThemeTokens, EditorialThemeTypographyTokens, EditorialTimelineStep, EditorialTimelineStepsBlock, EditorialWidgetAppearance, EditorialWidgetDefinition, EditorialWidgetInputs, EditorialWizardPresentation, ElevationConfig, EmptyAction, EmptyStateConfig, EndpointConfig, EnhancedValidationConfig, ExcelExportConfig, ExcelStylingConfig, ExportConfig, ExportFormat, ExportMessagesConfig, ExportTemplate, FetchWithEtagParams, FetchWithEtagResult, FieldConflict, FieldDefinition, FieldMetadata, FieldModification, FieldOption, FieldSelectorRegistryMap, FieldsetLayout, FilterOptions, FilteringConfig, FooterLinksAppearance, FooterLinksLayout, FormActionButton, FormActionConfirmationEvent, FormActionsLayout, FormApiLayout, FormBehaviorLayout, FormColumn, FormConfig, FormConfigMetadata, FormConfigState, FormCustomActionEvent, FormEntityEvent, FormHook, FormHookContext, FormHookDeclaration, FormHookDeclarationLite, FormHookOutcome, FormHookPreset, FormHookPresetMatch, FormHookStage, FormHookStatus, FormHooksLayout, FormInitializationError, FormLayout, FormLayoutRule, FormMessagesLayout, FormMetadataLayout, FormModeHints, FormOpenMode, FormReadyEvent, FormRow, FormRowLayout, FormRuleTargetType, FormSection, FormSectionHeaderAction, FormSectionHeaderConfig, FormSectionHeaderEmptyState, FormSectionHeaderMode, FormSectionHeaderSize, FormSubmitEvent, FormValidationEvent, FormValueChangeEvent, FormattingLocaleConfig, GeneralExportConfig, GetSchemaParams, GlobalActionCatalogEntry, GlobalActionContext, GlobalActionField, GlobalActionFieldOption, GlobalActionFieldType, GlobalActionHandler, GlobalActionHandlerEntry, GlobalActionId, GlobalActionParam, GlobalActionResult, GlobalActionSpec, GlobalActionUiSchema, GlobalAiConfig, GlobalAiEmbeddingConfig, GlobalAiProvider, GlobalAnalyticsService, GlobalApiClient, GlobalCacheConfig, GlobalConfig, GlobalCrudActionDefaults, GlobalCrudConfig, GlobalCrudDefaults, GlobalDialogAction, GlobalDialogAnimation, GlobalDialogAriaRole, GlobalDialogConfig, GlobalDialogConfigEntry, GlobalDialogPosition, GlobalDialogService, GlobalDialogStyles, GlobalDynamicFieldsAsyncSelectConfig, GlobalDynamicFieldsCascadeConfig, GlobalDynamicFieldsConfig, GlobalI18nConfig, GlobalRouteGuardResolver, GlobalSurfaceService, GlobalTableConfig, GlobalToastService, GridItemLayout, GridPageDefinition, GridPageDefinitionWithIds, GridWidgetInstance, HeroBadge, HeroBadgeTone, HeroBannerAppearance, HeroBannerVariant, HeroMetaItem, HookResolver, InlineFilterControlType, InlineMonthRangeMetadata, InlinePeriodRangeFiscalCalendar, InlinePeriodRangeGranularity, InlinePeriodRangeMetadata, InlinePeriodRangePreset, InlineRangeDistributionBin, InlineRangeDistributionConfig, InlineYearRangeMetadata, InteractionConfig, JsonExportConfig, KeyboardAccessibilityConfig, LazyLoadingConfig, LegacyTableConfig, LegalNoticeAppearance, LegalNoticeSeverity, LoadingConfig, LoadingContext, LoadingPhase$1 as LoadingPhase, LoadingScope, LoadingState, LoadingPhase as LoadingStatePhase, LocalizationConfig, LocateRequest, LoggerConfig, LoggerContext, LoggerEvent, LoggerLevel, LoggerLogOptions, LoggerNormalizedError, LoggerPIIConfig, LoggerSink, LoggerTelemetryPayload, LoggerThrottleConfig, MarginConfig, MaterialAutocompleteMetadata, MaterialButtonMetadata, MaterialButtonToggleMetadata, MaterialCheckboxMetadata, MaterialChipsMetadata, MaterialColorInputMetadata, MaterialColorPickerMetadata, MaterialCpfCnpjMetadata, MaterialCurrencyMetadata, MaterialDateInputMetadata, MaterialDateRangeMetadata, MaterialDatepickerMetadata, MaterialDatetimeLocalInputMetadata, MaterialDesignConfig, MaterialEmailInputMetadata, MaterialEmailMetadata, MaterialInputMetadata, MaterialMonthInputMetadata, MaterialMultiSelectTreeMetadata, MaterialNumericMetadata, MaterialPasswordMetadata, MaterialPhoneMetadata, MaterialPriceRangeMetadata, MaterialRadioMetadata, MaterialRangeSliderMetadata, MaterialRatingMetadata, MaterialSearchInputMetadata, MaterialSelectMetadata, MaterialSelectionListMetadata, MaterialSliderMetadata, MaterialTextareaMetadata, MaterialTimeInputMetadata, MaterialTimeRangeMetadata, MaterialTimeTrackShift, MaterialTimepickerMetadata, MaterialToggleMetadata, MaterialTransferListMetadata, MaterialTreeNode, MaterialTreeSelectMetadata, MaterialUrlInputMetadata, MaterialWeekInputMetadata, MaterialYearInputMetadata, MemoryConfig, MessageTemplate, MessagesConfig, NestedFieldsetLayout, NormalizedError, NumberLocaleConfig, ObservabilityAlert, ObservabilityAlertGroupBy, ObservabilityAlertRule, ObservabilityAlertSeverity, ObservabilityCountBucket, ObservabilityDashboardOptions, ObservabilityIngestInput, ObservabilityMetricsSnapshot, OptionDTO, OptionSourceMetadata, OptionSourceRequestOptions, OverlayDecider, OverlayDecision, OverlayDecisionContext, OverlayDecisionMatrix, OverlayPattern, OverlayRange, OverlayRule, OverlayRuleMatch, OverlayThresholds, Page, PageIdentity, PageableRequest, PaginationConfig, PartialFieldMetadata, PdfExportConfig, PerformanceConfig, PersistedPageConfig, PersistedWidgetInstance, PlainObject, PluginConfig, PollingConfig, PraxisAnalyticsOptions, PraxisAuthContext, PraxisDataQueryContext, PraxisGlobalActionsOptions, PraxisGlobalConfigBootstrapOptions, PraxisHttpLoadingOptions, PraxisI18nConfig, PraxisI18nDictionary, PraxisI18nMessageDescriptor, PraxisI18nNamespaceConfig, PraxisI18nNamespaceDictionary, PraxisI18nTranslator, PraxisLoadingRenderer, PraxisLocale, PraxisLoggingEnvironment, PraxisLoggingOptions, PraxisTextValue, PraxisToastOptions, PraxisTranslationParams, PriceRangeValue, RangeSliderInlineTexts, RangeSliderQuickPreset, RangeSliderQuickPresetLabels, RangeSliderValue, RenderingConfig, ResizingConfig, ResolvePresetOptions, ResolvedValuePresentation, ResponsiveConfig, RichTextAppearance, RichTextVariant, RowAction, RowActionsConfig, RulePropertyDefinition, RulePropertySchema, RulePropertyType, RunHooksResult, SchemaIdParams, SchemaMetaInfo, SchemaViewerContext, SelectionConfig, SerializableFieldMetadata, SettingsPanelBridge, SettingsPanelOpenContent, SettingsPanelOpenOptions, SettingsPanelRef, SettingsValueProvider, SortingConfig, SpacingConfig, StateMessagesConfig, SurfaceBinding, SurfaceBindingMode, SurfaceOpenPayload, SurfaceOpenPreset, SurfacePresentation, SurfaceSizeConfig, SyncConfig, SyncResult, TableActionsConfig, TableAppearanceConfig, TableBehaviorConfig, TableConfig, TableConfigV2 as TableConfigModern, TableConfigState, TableConfigV2, TableExpansionConfig, TableLocalDataModeConfig, TelemetryEvent, TelemetryLoggerSinkOptions, TelemetryTransport, TextTransformApply, TextTransformName, ThemeConfig, ToolbarAction, ToolbarConfig, ToolbarFilterConfig, ToolbarLayoutConfig, ToolbarSettingsConfig, TypographyConfig, UserContextSource, UserContextSummaryAppearance, UserContextSummaryField, ValidationContext, ValidationError, ValidationMessagesConfig, ValidationResult, ValidationRule, ValidatorFunction, ValidatorOptions, ValueKind$1 as ValueKind, ValuePresentationConfig, ValuePresentationResolutionContext, ValuePresentationStyle, ValuePresentationType, VirtualizationConfig, WidgetConnection, WidgetConnectionSource, WidgetConnectionTarget, WidgetDefinition, WidgetDerivedStateNode, WidgetInstance, WidgetPageDefinition, WidgetPageDeviceKind, WidgetPageDeviceLayouts, WidgetPageDevicePolicy, WidgetPageGroupingDefinition, WidgetPageGroupingOverride, WidgetPageGroupingTabDefinition, WidgetPageLayout, WidgetPageLayoutPresetDefinition, WidgetPageLayoutVariant, WidgetPageOrientation, WidgetPageSlotDefinition, WidgetPageStateDefinition, WidgetPageStateInput, WidgetPageStateRuntimeSnapshot, WidgetPageThemePresetDefinition, WidgetPageWidgetLayoutOverride, WidgetPageWidgetSuggestion, WidgetShellAction, WidgetShellActionEvent, WidgetShellActionPlacement, WidgetShellConfig, WidgetShellWindowActions, WidgetStateNode };
|