@praxisui/metadata-editor 3.0.0-beta.4 → 3.0.0-beta.5
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.
|
@@ -2536,6 +2536,17 @@ const passwordInputProperties = [
|
|
|
2536
2536
|
{ name: 'ariaLabelledby', label: 'ARIA labelledby', editorType: 'text', group: 'Acessibilidade', hint: 'ID de elemento que atua como label.' },
|
|
2537
2537
|
{ name: 'tabIndex', label: 'TabIndex', editorType: 'number', group: 'Acessibilidade' },
|
|
2538
2538
|
// Ações
|
|
2539
|
+
{ name: 'revealToggle.enabled', label: 'Reveal: habilitar', editorType: 'checkbox', group: 'Ações', hint: 'Mostra botão para alternar a visibilidade da senha.' },
|
|
2540
|
+
{ name: 'revealToggle.style', label: 'Reveal: estilo', editorType: 'select', group: 'Ações', options: [
|
|
2541
|
+
{ value: 'icon', text: 'Ícone' },
|
|
2542
|
+
{ value: 'text', text: 'Texto' },
|
|
2543
|
+
] },
|
|
2544
|
+
{ name: 'revealToggle.showLabel', label: 'Reveal: label (mostrar)', editorType: 'text', group: 'Ações', hint: 'Usado quando o estilo estiver em texto.' },
|
|
2545
|
+
{ name: 'revealToggle.hideLabel', label: 'Reveal: label (ocultar)', editorType: 'text', group: 'Ações', hint: 'Usado quando o estilo estiver em texto.' },
|
|
2546
|
+
{ name: 'revealToggle.iconShow', label: 'Reveal: ícone (mostrar)', editorType: 'text', group: 'Ações', hint: "Material Symbols (ex.: mi:visibility). Use o seletor ao lado para buscar." },
|
|
2547
|
+
{ name: 'revealToggle.iconHide', label: 'Reveal: ícone (ocultar)', editorType: 'text', group: 'Ações', hint: "Material Symbols (ex.: mi:visibility_off). Use o seletor ao lado para buscar." },
|
|
2548
|
+
{ name: 'revealToggle.tooltip', label: 'Reveal: tooltip', editorType: 'text', group: 'Ações' },
|
|
2549
|
+
{ name: 'revealToggle.ariaLabel', label: 'Reveal: aria-label', editorType: 'text', group: 'Ações', hint: 'Descreve a ação do botão para leitores de tela.' },
|
|
2539
2550
|
{ name: 'clearButton.enabled', label: 'Clear: habilitar', editorType: 'checkbox', group: 'Ações', hint: 'Mostra botão para limpar valor.' },
|
|
2540
2551
|
{ name: 'clearButton.icon', label: 'Clear: ícone', editorType: 'text', group: 'Ações', hint: "Material Symbols (ex.: mi:clear). Use o seletor ao lado para buscar." },
|
|
2541
2552
|
{ name: 'clearButton.iconColor', label: 'Clear: cor do ícone', editorType: 'color', group: 'Ações', hint: 'primary/accent/warn ou cor CSS (ex.: #496ddb, rgb(73,109,219), red)' },
|