@praxisui/core 1.0.0-beta.23 → 1.0.0-beta.24
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 +16 -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;
|
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.24",
|
|
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",
|