@praxisui/core 1.0.0-beta.16 → 1.0.0-beta.17
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/fesm2022/praxisui-core.mjs +44 -20
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +42 -2
- package/package.json +4 -4
|
@@ -851,6 +851,16 @@ class SchemaNormalizerService {
|
|
|
851
851
|
// -------------------------------------------------------------------
|
|
852
852
|
// Layout and presentation
|
|
853
853
|
// -------------------------------------------------------------------
|
|
854
|
+
// Visibility flags (x-ui)
|
|
855
|
+
if (ui.hidden !== undefined) {
|
|
856
|
+
field.hidden = this.parseBoolean(ui.hidden);
|
|
857
|
+
}
|
|
858
|
+
if (ui.tableHidden !== undefined) {
|
|
859
|
+
field.tableHidden = this.parseBoolean(ui.tableHidden);
|
|
860
|
+
}
|
|
861
|
+
if (ui.formHidden !== undefined) {
|
|
862
|
+
field.formHidden = this.parseBoolean(ui.formHidden);
|
|
863
|
+
}
|
|
854
864
|
if (ui.width !== undefined) {
|
|
855
865
|
field.width = ui.width;
|
|
856
866
|
}
|
|
@@ -2139,27 +2149,12 @@ function createDefaultTableConfig() {
|
|
|
2139
2149
|
},
|
|
2140
2150
|
actions: {
|
|
2141
2151
|
row: {
|
|
2142
|
-
enabled:
|
|
2152
|
+
enabled: false,
|
|
2143
2153
|
position: 'end',
|
|
2144
2154
|
width: '120px',
|
|
2145
2155
|
display: 'icons',
|
|
2146
2156
|
trigger: 'hover',
|
|
2147
|
-
actions: [
|
|
2148
|
-
{
|
|
2149
|
-
id: 'view',
|
|
2150
|
-
label: 'Visualizar',
|
|
2151
|
-
icon: 'visibility',
|
|
2152
|
-
action: 'view',
|
|
2153
|
-
},
|
|
2154
|
-
{ id: 'edit', label: 'Editar', icon: 'edit', action: 'edit' },
|
|
2155
|
-
{
|
|
2156
|
-
id: 'delete',
|
|
2157
|
-
label: 'Excluir',
|
|
2158
|
-
icon: 'delete',
|
|
2159
|
-
action: 'delete',
|
|
2160
|
-
autoDelete: false,
|
|
2161
|
-
},
|
|
2162
|
-
],
|
|
2157
|
+
actions: [],
|
|
2163
2158
|
},
|
|
2164
2159
|
bulk: {
|
|
2165
2160
|
enabled: false,
|
|
@@ -4131,6 +4126,13 @@ function normalizeFormConfig(config) {
|
|
|
4131
4126
|
return config;
|
|
4132
4127
|
const normalized = { ...config };
|
|
4133
4128
|
normalized.fieldMetadata = normalizeFormMetadata(config.fieldMetadata);
|
|
4129
|
+
// Ensure hints exist and fill missing values with defaults
|
|
4130
|
+
try {
|
|
4131
|
+
const defaults = getDefaultFormHints();
|
|
4132
|
+
const current = normalized.hints;
|
|
4133
|
+
normalized.hints = fillUndefined(current || {}, defaults);
|
|
4134
|
+
}
|
|
4135
|
+
catch { }
|
|
4134
4136
|
return normalized;
|
|
4135
4137
|
}
|
|
4136
4138
|
/**
|
|
@@ -4262,6 +4264,8 @@ function createDefaultFormConfig() {
|
|
|
4262
4264
|
],
|
|
4263
4265
|
},
|
|
4264
4266
|
],
|
|
4267
|
+
// Default mode hints (didactic tooltips)
|
|
4268
|
+
hints: getDefaultFormHints(),
|
|
4265
4269
|
};
|
|
4266
4270
|
return ensureIds(config);
|
|
4267
4271
|
}
|
|
@@ -4274,6 +4278,24 @@ function isValidFormConfig(config) {
|
|
|
4274
4278
|
function createEmptyFormConfig() {
|
|
4275
4279
|
return { sections: [] };
|
|
4276
4280
|
}
|
|
4281
|
+
/**
|
|
4282
|
+
* Default hint texts for data and UI modes.
|
|
4283
|
+
*/
|
|
4284
|
+
function getDefaultFormHints() {
|
|
4285
|
+
return {
|
|
4286
|
+
dataModes: {
|
|
4287
|
+
create: 'Criar novo registro. Campos editáveis e ações de salvar habilitadas.',
|
|
4288
|
+
edit: 'Editar registro existente. Campos editáveis e ações de salvar habilitadas.',
|
|
4289
|
+
view: 'Visualizar registro. Sem edição por padrão; combine com Modo Leitura ou Apresentação.',
|
|
4290
|
+
},
|
|
4291
|
+
uiModes: {
|
|
4292
|
+
presentation: 'Modo apresentação: exibe rótulo + valor formatado e oculta inputs/ações. Efetivo apenas em Visualizar.',
|
|
4293
|
+
readonly: 'Modo leitura: mantém os inputs visíveis, porém bloqueados (sem interação). Continua participando da validação e do envio.',
|
|
4294
|
+
disabled: 'Desabilitado: aparência inativa; ideal para bloquear interação visualmente. Evite desativar campos essenciais.',
|
|
4295
|
+
visible: 'Visibilidade: controla exibição sem destruir controles (útil para regras condicionais).',
|
|
4296
|
+
},
|
|
4297
|
+
};
|
|
4298
|
+
}
|
|
4277
4299
|
/**
|
|
4278
4300
|
* Merges field metadata into a FormConfig
|
|
4279
4301
|
* Useful when combining layout with server-loaded metadata
|
|
@@ -4716,6 +4738,8 @@ function mapFieldDefinitionToMetadata(field) {
|
|
|
4716
4738
|
'disabled',
|
|
4717
4739
|
'readOnly',
|
|
4718
4740
|
'hidden',
|
|
4741
|
+
'formHidden',
|
|
4742
|
+
'tableHidden',
|
|
4719
4743
|
'unique',
|
|
4720
4744
|
'mask',
|
|
4721
4745
|
'inlineEditing',
|
|
@@ -6098,7 +6122,7 @@ class PraxisIconPickerComponent {
|
|
|
6098
6122
|
<span class="pip-typed" *ngIf="query.trim()">{{ previewValue() }}</span>
|
|
6099
6123
|
</div>
|
|
6100
6124
|
</div>
|
|
6101
|
-
`, isInline: true, styles: [".pip-root{display:flex;flex-direction:column;min-width:340px;max-width:760px;max-height:80vh;overflow:hidden;padding:16px}.pip-head{display:flex;gap:12px;align-items:center;margin-bottom:12px}.pip-search{flex:1;min-width:180px}.pip-spacer{flex:1}.pip-body{flex:1;overflow:auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;padding:4px}.pip-item{display:flex;gap:10px;align-items:center;justify-content:flex-start;padding:10px;border:1px solid rgba(0,0,0,.
|
|
6125
|
+
`, isInline: true, styles: [".pip-root{display:flex;flex-direction:column;min-width:340px;max-width:760px;max-height:80vh;overflow:hidden;padding:16px}.pip-head{display:flex;gap:12px;align-items:center;margin-bottom:12px}.pip-search{flex:1;min-width:180px}.pip-spacer{flex:1}.pip-body{flex:1;overflow:auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;padding:4px}.pip-item{display:flex;gap:10px;align-items:center;justify-content:flex-start;padding:10px;border:1px solid var(--md-sys-color-outline-variant, rgba(0,0,0,.14));border-radius:10px;background:var(--md-sys-color-surface);color:var(--md-sys-color-on-surface);cursor:pointer}.pip-item:hover{background:color-mix(in oklab,var(--md-sys-color-on-surface) 8%,transparent)}.pip-name{font-size:12px;color:var(--md-sys-color-on-surface-variant, rgba(0,0,0,.6));white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.pip-hint{font-size:12px;color:var(--md-sys-color-on-surface-variant, rgba(0,0,0,.6));margin:-6px 0 8px}.pip-footer{display:flex;gap:12px;align-items:center;margin-top:10px}.pip-typed{font-family:monospace;font-size:12px;color:var(--md-sys-color-on-surface, rgba(0,0,0,.7))}.pip-family{display:flex;align-items:center}.pip-family .mat-mdc-chip-listbox{min-width:260px}.pip-root .mat-icon{font-family:Material Icons,Material Symbols Outlined,Material Symbols Rounded,Material Symbols Sharp!important;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24;color:currentColor}.material-symbols-outlined{font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:\"liga\";-webkit-font-smoothing:antialiased;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24}.material-symbols-rounded{font-family:Material Symbols Rounded;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:\"liga\";-webkit-font-smoothing:antialiased;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24}.material-symbols-sharp{font-family:Material Symbols Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:\"liga\";-webkit-font-smoothing:antialiased;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "ngmodule", type: MatFormFieldModule }, { kind: "component", type: i2$1.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i2$1.MatLabel, selector: "mat-label" }, { kind: "ngmodule", type: MatInputModule }, { kind: "directive", type: i3$2.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly", "disabledInteractive"], exportAs: ["matInput"] }, { kind: "ngmodule", type: MatIconModule }, { kind: "component", type: i4.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "ngmodule", type: MatButtonModule }, { kind: "component", type: i3$1.MatButton, selector: " button[matButton], a[matButton], button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button], a[mat-button], a[mat-raised-button], a[mat-flat-button], a[mat-stroked-button] ", inputs: ["matButton"], exportAs: ["matButton", "matAnchor"] }, { kind: "ngmodule", type: MatChipsModule }, { kind: "component", type: i8.MatChipListbox, selector: "mat-chip-listbox", inputs: ["multiple", "aria-orientation", "selectable", "compareWith", "required", "hideSingleSelectionIndicator", "value"], outputs: ["change"] }, { kind: "component", type: i8.MatChipOption, selector: "mat-basic-chip-option, [mat-basic-chip-option], mat-chip-option, [mat-chip-option]", inputs: ["selectable", "selected"], outputs: ["selectionChange"] }, { kind: "ngmodule", type: MatDialogModule }] });
|
|
6102
6126
|
}
|
|
6103
6127
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImport: i0, type: PraxisIconPickerComponent, decorators: [{
|
|
6104
6128
|
type: Component,
|
|
@@ -6142,7 +6166,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
|
6142
6166
|
<span class="pip-typed" *ngIf="query.trim()">{{ previewValue() }}</span>
|
|
6143
6167
|
</div>
|
|
6144
6168
|
</div>
|
|
6145
|
-
`, styles: [".pip-root{display:flex;flex-direction:column;min-width:340px;max-width:760px;max-height:80vh;overflow:hidden;padding:16px}.pip-head{display:flex;gap:12px;align-items:center;margin-bottom:12px}.pip-search{flex:1;min-width:180px}.pip-spacer{flex:1}.pip-body{flex:1;overflow:auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;padding:4px}.pip-item{display:flex;gap:10px;align-items:center;justify-content:flex-start;padding:10px;border:1px solid rgba(0,0,0,.
|
|
6169
|
+
`, styles: [".pip-root{display:flex;flex-direction:column;min-width:340px;max-width:760px;max-height:80vh;overflow:hidden;padding:16px}.pip-head{display:flex;gap:12px;align-items:center;margin-bottom:12px}.pip-search{flex:1;min-width:180px}.pip-spacer{flex:1}.pip-body{flex:1;overflow:auto;display:grid;grid-template-columns:repeat(auto-fill,minmax(120px,1fr));gap:10px;padding:4px}.pip-item{display:flex;gap:10px;align-items:center;justify-content:flex-start;padding:10px;border:1px solid var(--md-sys-color-outline-variant, rgba(0,0,0,.14));border-radius:10px;background:var(--md-sys-color-surface);color:var(--md-sys-color-on-surface);cursor:pointer}.pip-item:hover{background:color-mix(in oklab,var(--md-sys-color-on-surface) 8%,transparent)}.pip-name{font-size:12px;color:var(--md-sys-color-on-surface-variant, rgba(0,0,0,.6));white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.pip-hint{font-size:12px;color:var(--md-sys-color-on-surface-variant, rgba(0,0,0,.6));margin:-6px 0 8px}.pip-footer{display:flex;gap:12px;align-items:center;margin-top:10px}.pip-typed{font-family:monospace;font-size:12px;color:var(--md-sys-color-on-surface, rgba(0,0,0,.7))}.pip-family{display:flex;align-items:center}.pip-family .mat-mdc-chip-listbox{min-width:260px}.pip-root .mat-icon{font-family:Material Icons,Material Symbols Outlined,Material Symbols Rounded,Material Symbols Sharp!important;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24;color:currentColor}.material-symbols-outlined{font-family:Material Symbols Outlined;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:\"liga\";-webkit-font-smoothing:antialiased;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24}.material-symbols-rounded{font-family:Material Symbols Rounded;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:\"liga\";-webkit-font-smoothing:antialiased;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24}.material-symbols-sharp{font-family:Material Symbols Sharp;font-weight:400;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-transform:none;display:inline-block;white-space:nowrap;word-wrap:normal;direction:ltr;-webkit-font-feature-settings:\"liga\";-webkit-font-smoothing:antialiased;font-variation-settings:\"FILL\" 0,\"wght\" 400,\"GRAD\" 0,\"opsz\" 24}\n"] }]
|
|
6146
6170
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
6147
6171
|
type: Optional
|
|
6148
6172
|
}, {
|
|
@@ -7069,5 +7093,5 @@ function provideHookWhitelist(allowed) {
|
|
|
7069
7093
|
* Generated bundle index. Do not edit.
|
|
7070
7094
|
*/
|
|
7071
7095
|
|
|
7072
|
-
export { API_URL, AllowedFileTypes, ApiEndpoint, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentMetadataRegistry, ConnectionManagerService, DEFAULT_TABLE_CONFIG, DynamicFormService, DynamicGridPageComponent, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EmptyStateCardComponent, ErrorMessageService, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FormHooksRegistry, GLOBAL_CONFIG, GenericCrudService, GlobalConfigService, IconPickerService, IconPosition, IconSize, LocalConnectionStorage, LocalStorageCacheAdapter, LocalStorageConfigService, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, OverlayDeciderService, PraxisCore, PraxisIconDirective, PraxisIconPickerComponent, ResourceQuickConnectComponent, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryService, ValidationPattern, applyLocalCustomizations$2 as applyLocalCustomizations, applyLocalCustomizations$1 as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildHeaders, buildPageKey, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getEssentialConfig, getReferencedFieldMetadata, getTextTransformer, isCssTextTransform, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergeTableConfigs, minWordsValidator, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, notifySuccessHook, prefillFromContextHook, provideDefaultFormHooks, provideFormHookPresets, provideFormHooks, provideGlobalConfig, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveHidden, resolveOffset, resolveOrder, resolveSpan, slugify, stripMasksHook, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, trim, uniqueAsyncValidator, urlValidator, withMessage };
|
|
7096
|
+
export { API_URL, AllowedFileTypes, ApiEndpoint, CONFIG_STORAGE, CONNECTION_STORAGE, ComponentMetadataRegistry, ConnectionManagerService, DEFAULT_TABLE_CONFIG, DynamicFormService, DynamicGridPageComponent, DynamicWidgetLoaderDirective, DynamicWidgetPageComponent, EmptyStateCardComponent, ErrorMessageService, FORM_HOOKS, FORM_HOOKS_PRESETS, FORM_HOOKS_WHITELIST, FORM_HOOK_RESOLVERS, FieldControlType, FieldDataType, FormHooksRegistry, GLOBAL_CONFIG, GenericCrudService, GlobalConfigService, IconPickerService, IconPosition, IconSize, LocalConnectionStorage, LocalStorageCacheAdapter, LocalStorageConfigService, NumericFormat, OVERLAY_DECIDER_DEBUG, OVERLAY_DECISION_MATRIX, OverlayDeciderService, PraxisCore, PraxisIconDirective, PraxisIconPickerComponent, ResourceQuickConnectComponent, SCHEMA_VIEWER_CONTEXT, SETTINGS_PANEL_BRIDGE, SETTINGS_PANEL_DATA, STEPPER_CONFIG_EDITOR, SchemaMetadataClient, SchemaNormalizerService, SchemaViewerComponent, TABLE_CONFIG_EDITOR, TableConfigService, TelemetryService, ValidationPattern, applyLocalCustomizations$2 as applyLocalCustomizations, applyLocalCustomizations$1 as applyLocalFormCustomizations, buildAngularValidators, buildApiUrl, buildBaseColumnFromDef, buildBaseFormField, buildHeaders, buildPageKey, buildSchemaId, buildValidatorsFromValidatorOptions, cancelIfCpfInvalidHook, cloneTableConfig, cnpjAlphaValidator, collapseWhitespace, composeHeadersWithVersion, conditionalAsyncValidator, convertFormLayoutToConfig, createCpfCnpjValidator, createDefaultFormConfig, createDefaultTableConfig, createEmptyFormConfig, createPersistedPage, customAsyncValidatorFn, customValidatorFn, debounceAsyncValidator, deepMerge, ensureIds, ensureNoConflictsHookFactory, ensurePageIds, fetchWithETag, fileTypeValidator, fillUndefined, generateId, getDefaultFormHints, getEssentialConfig, getReferencedFieldMetadata, getTextTransformer, isCssTextTransform, isTableConfigV2, isValidFormConfig, isValidTableConfig, legacyCnpjValidator, legacyCpfValidator, logOnErrorHook, mapFieldDefinitionToMetadata, mapFieldDefinitionsToMetadata, matchFieldValidator, maxFileSizeValidator, mergeFieldMetadata, mergeTableConfigs, minWordsValidator, normalizeFieldConstraints, normalizeFormConfig, normalizeFormMetadata, normalizePath, notifySuccessHook, prefillFromContextHook, provideDefaultFormHooks, provideFormHookPresets, provideFormHooks, provideGlobalConfig, provideGlobalConfigSeed, provideGlobalConfigTenant, provideHookResolvers, provideHookWhitelist, provideOverlayDecisionMatrix, provideRemoteGlobalConfig, reconcileFilterConfig, reconcileFormConfig, reconcileTableConfig, removeDiacritics, reportTelemetryHookFactory, requiredCheckedValidator, resolveHidden, resolveOffset, resolveOrder, resolveSpan, slugify, stripMasksHook, syncWithServerMetadata, toCamel, toCapitalize, toKebab, toPascal, toSentenceCase, toSnake, toTitleCase, trim, uniqueAsyncValidator, urlValidator, withMessage };
|
|
7073
7097
|
//# sourceMappingURL=praxisui-core.mjs.map
|