@praxisui/core 1.0.0-beta.18 → 1.0.0-beta.20
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 +30 -18
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +24 -2
- package/package.json +1 -1
|
@@ -2139,27 +2139,12 @@ function createDefaultTableConfig() {
|
|
|
2139
2139
|
},
|
|
2140
2140
|
actions: {
|
|
2141
2141
|
row: {
|
|
2142
|
-
enabled:
|
|
2142
|
+
enabled: false,
|
|
2143
2143
|
position: 'end',
|
|
2144
2144
|
width: '120px',
|
|
2145
2145
|
display: 'icons',
|
|
2146
2146
|
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
|
-
],
|
|
2147
|
+
actions: [],
|
|
2163
2148
|
},
|
|
2164
2149
|
bulk: {
|
|
2165
2150
|
enabled: false,
|
|
@@ -4131,6 +4116,13 @@ function normalizeFormConfig(config) {
|
|
|
4131
4116
|
return config;
|
|
4132
4117
|
const normalized = { ...config };
|
|
4133
4118
|
normalized.fieldMetadata = normalizeFormMetadata(config.fieldMetadata);
|
|
4119
|
+
// Ensure hints exist and fill missing values with defaults
|
|
4120
|
+
try {
|
|
4121
|
+
const defaults = getDefaultFormHints();
|
|
4122
|
+
const current = normalized.hints;
|
|
4123
|
+
normalized.hints = fillUndefined(current || {}, defaults);
|
|
4124
|
+
}
|
|
4125
|
+
catch { }
|
|
4134
4126
|
return normalized;
|
|
4135
4127
|
}
|
|
4136
4128
|
/**
|
|
@@ -4262,6 +4254,8 @@ function createDefaultFormConfig() {
|
|
|
4262
4254
|
],
|
|
4263
4255
|
},
|
|
4264
4256
|
],
|
|
4257
|
+
// Default mode hints (didactic tooltips)
|
|
4258
|
+
hints: getDefaultFormHints(),
|
|
4265
4259
|
};
|
|
4266
4260
|
return ensureIds(config);
|
|
4267
4261
|
}
|
|
@@ -4274,6 +4268,24 @@ function isValidFormConfig(config) {
|
|
|
4274
4268
|
function createEmptyFormConfig() {
|
|
4275
4269
|
return { sections: [] };
|
|
4276
4270
|
}
|
|
4271
|
+
/**
|
|
4272
|
+
* Default hint texts for data and UI modes.
|
|
4273
|
+
*/
|
|
4274
|
+
function getDefaultFormHints() {
|
|
4275
|
+
return {
|
|
4276
|
+
dataModes: {
|
|
4277
|
+
create: 'Criar novo registro. Campos editáveis e ações de salvar habilitadas.',
|
|
4278
|
+
edit: 'Editar registro existente. Campos editáveis e ações de salvar habilitadas.',
|
|
4279
|
+
view: 'Visualizar registro. Sem edição por padrão; combine com Modo Leitura ou Apresentação.',
|
|
4280
|
+
},
|
|
4281
|
+
uiModes: {
|
|
4282
|
+
presentation: 'Modo apresentação: exibe rótulo + valor formatado e oculta inputs/ações. Efetivo apenas em Visualizar.',
|
|
4283
|
+
readonly: 'Modo leitura: mantém os inputs visíveis, porém bloqueados (sem interação). Continua participando da validação e do envio.',
|
|
4284
|
+
disabled: 'Desabilitado: aparência inativa; ideal para bloquear interação visualmente. Evite desativar campos essenciais.',
|
|
4285
|
+
visible: 'Visibilidade: controla exibição sem destruir controles (útil para regras condicionais).',
|
|
4286
|
+
},
|
|
4287
|
+
};
|
|
4288
|
+
}
|
|
4277
4289
|
/**
|
|
4278
4290
|
* Merges field metadata into a FormConfig
|
|
4279
4291
|
* Useful when combining layout with server-loaded metadata
|
|
@@ -7069,5 +7081,5 @@ function provideHookWhitelist(allowed) {
|
|
|
7069
7081
|
* Generated bundle index. Do not edit.
|
|
7070
7082
|
*/
|
|
7071
7083
|
|
|
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 };
|
|
7084
|
+
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
7085
|
//# sourceMappingURL=praxisui-core.mjs.map
|