build
This commit is contained in:
parent
86719a3c97
commit
3c7db25ca5
8 changed files with 17 additions and 1 deletions
|
|
@ -35,6 +35,8 @@ export const extruturas_de_campos: {
|
|||
[z in keyof typeof visoes]: {
|
||||
/** Nome da Visão */
|
||||
visao: z
|
||||
/** Rotulo */
|
||||
rotulo: string
|
||||
/** Retorna a tabela Referente ao Registro */
|
||||
tabela: (_: z.infer<(typeof visoes)[z]>) => string
|
||||
/** Descrição */
|
||||
|
|
@ -50,6 +52,7 @@ export const extruturas_de_campos: {
|
|||
} = {
|
||||
z_contagem_em_barra_vertical: {
|
||||
visao: "z_contagem_em_barra_vertical",
|
||||
rotulo: "Contagem em Barra Vertical",
|
||||
tabela: ({ tabela }) => tabela,
|
||||
descricao: ({
|
||||
tabela,
|
||||
|
|
@ -92,6 +95,7 @@ export const extruturas_de_campos: {
|
|||
},
|
||||
z_contagem_em_pizza: {
|
||||
visao: "z_contagem_em_pizza",
|
||||
rotulo: "Contagem em Pizza",
|
||||
tabela: ({ tabela }) => tabela,
|
||||
descricao: ({ tabela, descricao_pelo_usuario, colanuEixoX, filtros }) => {
|
||||
if (String(descricao_pelo_usuario || "").trim())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue