@praxisui/core 1.0.0-beta.67 → 1.0.0-beta.68
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 +27 -0
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +53 -1
- package/package.json +1 -1
|
@@ -9609,6 +9609,33 @@ const RULE_PROPERTY_SCHEMA = {
|
|
|
9609
9609
|
{ name: 'title', type: 'string', label: 'Título' },
|
|
9610
9610
|
{ name: 'description', type: 'string', label: 'Descrição' },
|
|
9611
9611
|
{ name: 'icon', type: 'string', label: 'Ícone' },
|
|
9612
|
+
{ name: 'sectionHeader', type: 'object', label: 'Header visual rico' },
|
|
9613
|
+
{
|
|
9614
|
+
name: 'sectionHeader.mode',
|
|
9615
|
+
type: 'enum',
|
|
9616
|
+
label: 'Modo visual do header',
|
|
9617
|
+
enumValues: [
|
|
9618
|
+
{ value: 'icon', label: 'Ícone' },
|
|
9619
|
+
{ value: 'avatar-image', label: 'Avatar por imagem' },
|
|
9620
|
+
{ value: 'avatar-initials', label: 'Avatar por iniciais' },
|
|
9621
|
+
{ value: 'auto', label: 'Automático' },
|
|
9622
|
+
],
|
|
9623
|
+
},
|
|
9624
|
+
{ name: 'sectionHeader.sourceField', type: 'string', label: 'Campo da imagem' },
|
|
9625
|
+
{ name: 'sectionHeader.initialsSourceField', type: 'string', label: 'Campo para iniciais' },
|
|
9626
|
+
{ name: 'sectionHeader.altField', type: 'string', label: 'Campo descritivo (alt)' },
|
|
9627
|
+
{ name: 'sectionHeader.fallbackIcon', type: 'string', label: 'Ícone de fallback' },
|
|
9628
|
+
{
|
|
9629
|
+
name: 'sectionHeader.emptyState',
|
|
9630
|
+
type: 'enum',
|
|
9631
|
+
label: 'Estado vazio do header',
|
|
9632
|
+
enumValues: [
|
|
9633
|
+
{ value: 'placeholder-avatar', label: 'Placeholder neutro' },
|
|
9634
|
+
{ value: 'fallback-icon', label: 'Ícone de fallback' },
|
|
9635
|
+
{ value: 'none', label: 'Nada' },
|
|
9636
|
+
],
|
|
9637
|
+
},
|
|
9638
|
+
{ name: 'sectionHeader.initialsMaxLength', type: 'number', label: 'Máximo de iniciais' },
|
|
9612
9639
|
{ name: 'className', type: 'string', label: 'Classe CSS' },
|
|
9613
9640
|
{ name: 'style', type: 'object', label: 'Estilos inline' },
|
|
9614
9641
|
{ name: 'borderColor', type: 'string', label: 'Cor da borda' },
|