build
This commit is contained in:
parent
9300367948
commit
86719a3c97
8 changed files with 67 additions and 28 deletions
|
|
@ -164,6 +164,7 @@ export declare const extruturas_de_campos: {
|
|||
/** Lista os campos e suas configurações */
|
||||
campos: {
|
||||
[c in keyof z.infer<(typeof visoes)[z]>]: {
|
||||
rotulo: string;
|
||||
tipo_campo: z.infer<typeof z_tipos_campos>;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -45,11 +45,17 @@ exports.extruturas_de_campos = {
|
|||
: `, agrupado por ${colunaAgrupamento.join(", ")}`}.`;
|
||||
},
|
||||
campos: {
|
||||
colanuEixoX: { tipo_campo: "coluna" },
|
||||
tabela: { tipo_campo: "tabela" },
|
||||
colunaAgrupamento: { tipo_campo: "lista_colunas" },
|
||||
filtros: { tipo_campo: "lista_filtros" },
|
||||
descricao_pelo_usuario: { tipo_campo: "texto" },
|
||||
colanuEixoX: {
|
||||
rotulo: "Coluna do Eixo X",
|
||||
tipo_campo: "coluna",
|
||||
},
|
||||
tabela: { rotulo: "Tabela", tipo_campo: "tabela" },
|
||||
colunaAgrupamento: {
|
||||
rotulo: "Colunas de Agrupamento",
|
||||
tipo_campo: "lista_colunas",
|
||||
},
|
||||
filtros: { rotulo: "Filtros", tipo_campo: "lista_filtros" },
|
||||
descricao_pelo_usuario: { rotulo: "Descrição", tipo_campo: "texto" },
|
||||
},
|
||||
},
|
||||
z_contagem_em_pizza: {
|
||||
|
|
@ -65,10 +71,10 @@ exports.extruturas_de_campos = {
|
|||
.join(", ")}`}.`;
|
||||
},
|
||||
campos: {
|
||||
colanuEixoX: { tipo_campo: "coluna" },
|
||||
tabela: { tipo_campo: "tabela" },
|
||||
filtros: { tipo_campo: "lista_filtros" },
|
||||
descricao_pelo_usuario: { tipo_campo: "texto" },
|
||||
colanuEixoX: { rotulo: "Classes", tipo_campo: "coluna" },
|
||||
tabela: { rotulo: "Tabela", tipo_campo: "tabela" },
|
||||
filtros: { rotulo: "Filtros", tipo_campo: "lista_filtros" },
|
||||
descricao_pelo_usuario: { rotulo: "Descrição", tipo_campo: "texto" },
|
||||
},
|
||||
},
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue