@praxisui/core 1.0.0-beta.23 → 1.0.0-beta.25
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 +12 -0
- package/fesm2022/praxisui-core.mjs.map +1 -1
- package/index.d.ts +18 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1710,6 +1710,22 @@ interface GlobalCrudDefaults {
|
|
|
1710
1710
|
modal?: Record<string, any>;
|
|
1711
1711
|
back?: Record<string, any>;
|
|
1712
1712
|
header?: Record<string, any>;
|
|
1713
|
+
/**
|
|
1714
|
+
* Quando usado via <praxis-crud>, habilita automaticamente a coluna de ações por linha
|
|
1715
|
+
* com base nas ações declaradas (ex.: view/edit). Desligue para controlar manualmente.
|
|
1716
|
+
* Default: true
|
|
1717
|
+
*/
|
|
1718
|
+
autoRowActions?: boolean;
|
|
1719
|
+
/**
|
|
1720
|
+
* Formato padrão para exibição das ações de linha geradas automaticamente.
|
|
1721
|
+
* Default: 'icons'
|
|
1722
|
+
*/
|
|
1723
|
+
rowActionsDisplay?: 'icons' | 'buttons' | 'menu';
|
|
1724
|
+
/**
|
|
1725
|
+
* Inclui ação de delete na coluna de ações quando houver ação 'delete' declarada.
|
|
1726
|
+
* Por padrão permanece desabilitado para evitar comportamentos não intencionais.
|
|
1727
|
+
*/
|
|
1728
|
+
includeDeleteInRow?: boolean;
|
|
1713
1729
|
}
|
|
1714
1730
|
interface GlobalCrudConfig {
|
|
1715
1731
|
defaults?: GlobalCrudDefaults;
|
|
@@ -5026,6 +5042,8 @@ interface FormActionsLayout {
|
|
|
5026
5042
|
orientation?: 'horizontal' | 'vertical';
|
|
5027
5043
|
spacing?: 'compact' | 'normal' | 'spacious';
|
|
5028
5044
|
sticky?: boolean;
|
|
5045
|
+
/** Exibir divisor superior (linha) acima da barra de ações */
|
|
5046
|
+
divider?: boolean;
|
|
5029
5047
|
/**
|
|
5030
5048
|
* Structural placement of the actions bar within the form layout.
|
|
5031
5049
|
* - afterSections: render once after all sections (default)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/core",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.25",
|
|
4
4
|
"description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|