@praxisui/core 1.0.0-beta.60 → 1.0.0-beta.61
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.
|
@@ -8065,6 +8065,9 @@ function createDefaultFormConfig() {
|
|
|
8065
8065
|
],
|
|
8066
8066
|
},
|
|
8067
8067
|
],
|
|
8068
|
+
formBlocksBefore: [],
|
|
8069
|
+
formBlocksBeforeActions: [],
|
|
8070
|
+
formBlocksAfter: [],
|
|
8068
8071
|
// Default mode hints (didactic tooltips)
|
|
8069
8072
|
hints: getDefaultFormHints(),
|
|
8070
8073
|
};
|
|
@@ -8077,7 +8080,7 @@ function isValidFormConfig(config) {
|
|
|
8077
8080
|
* Cria configuração vazia para inicialização
|
|
8078
8081
|
*/
|
|
8079
8082
|
function createEmptyFormConfig() {
|
|
8080
|
-
return { sections: [], formBlocksBefore: [], formBlocksAfter: [] };
|
|
8083
|
+
return { sections: [], formBlocksBefore: [], formBlocksBeforeActions: [], formBlocksAfter: [] };
|
|
8081
8084
|
}
|
|
8082
8085
|
/**
|
|
8083
8086
|
* Default hint texts for data and UI modes.
|