@praxisui/core 1.0.0-beta.43 → 1.0.0-beta.44

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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -473,7 +473,7 @@ interface SortingConfig {
473
473
  /** Habilitar ordenação */
474
474
  enabled: boolean;
475
475
 
476
- /** Permitir ordenação múltipla */
476
+ /** Permitir ordenação múltipla (schema-only no runtime atual) */
477
477
  multiSort: boolean;
478
478
 
479
479
  /** Estratégia de ordenação */
@@ -490,6 +490,8 @@ interface SortingConfig {
490
490
  }
491
491
  ```
492
492
 
493
+ Observação enterprise: `multiSort` está disponível no contrato de schema, porém no runtime atual deve ser tratado como `schema-only` (apenas 1 critério de ordenação efetivo).
494
+
493
495
  ## 🎨 Configurações de Aparência
494
496
 
495
497
  ### TableAppearanceConfig
@@ -659,7 +661,8 @@ export class MyComponent {
659
661
  this.configService.setConfig(this.tableConfig);
660
662
 
661
663
  // Verificar recursos
662
- const hasMultiSort = this.configService.isFeatureEnabled('multiSort');
664
+ // No runtime atual, multiSort permanece schema-only.
665
+ const hasMultiSort = false;
663
666
  const hasBulkActions = this.configService.isFeatureEnabled('bulkActions');
664
667
  const hasExport = this.configService.isFeatureEnabled('export');
665
668
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "1.0.0-beta.43",
3
+ "version": "1.0.0-beta.44",
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",