@praxisui/core 8.0.0-beta.31 → 8.0.0-beta.33

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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "8.0.0-beta.31",
3
+ "version": "8.0.0-beta.33",
4
4
  "description": "Core library for Praxis UI Workspace: types, tokens, services and utilities shared across @praxisui/* packages.",
5
5
  "peerDependencies": {
6
- "@angular/common": "^20.0.0",
7
- "@angular/core": "^20.0.0",
8
- "@angular/forms": "^20.0.0",
9
- "@angular/material": "^20.0.0",
10
- "@angular/platform-browser": "^20.0.0",
11
- "@angular/router": "^20.0.0",
6
+ "@angular/common": "^21.0.0",
7
+ "@angular/core": "^21.0.0",
8
+ "@angular/forms": "^21.0.0",
9
+ "@angular/material": "^21.0.0",
10
+ "@angular/platform-browser": "^21.0.0",
11
+ "@angular/router": "^21.0.0",
12
12
  "rxjs": "~7.8.0"
13
13
  },
14
14
  "dependencies": {
@@ -38,14 +38,15 @@
38
38
  ],
39
39
  "sideEffects": false,
40
40
  "module": "fesm2022/praxisui-core.mjs",
41
- "typings": "index.d.ts",
41
+ "typings": "types/praxisui-core.d.ts",
42
42
  "exports": {
43
43
  "./package.json": {
44
44
  "default": "./package.json"
45
45
  },
46
46
  ".": {
47
- "types": "./index.d.ts",
47
+ "types": "./types/praxisui-core.d.ts",
48
48
  "default": "./fesm2022/praxisui-core.mjs"
49
49
  }
50
- }
50
+ },
51
+ "type": "module"
51
52
  }
@@ -2,7 +2,8 @@ import * as i0 from '@angular/core';
2
2
  import { InjectionToken, Type, Provider, ErrorHandler, EnvironmentProviders, OnChanges, EventEmitter, SimpleChanges, OnInit, OnDestroy, ElementRef, AfterViewInit, Renderer2 } from '@angular/core';
3
3
  import * as rxjs from 'rxjs';
4
4
  import { Observable, BehaviorSubject } from 'rxjs';
5
- import { HttpHeaders, HttpContext, HttpClient, HttpParams, HttpInterceptorFn, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpFeature, HttpFeatureKind, HttpContextToken } from '@angular/common/http';
5
+ import { HttpHeaders, HttpContext, HttpClient, HttpParams, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent, HttpInterceptorFn, HttpFeature, HttpFeatureKind, HttpContextToken } from '@angular/common/http';
6
+ import * as _praxisui_core from '@praxisui/core';
6
7
  import { ValidationErrors, ValidatorFn, AsyncValidatorFn, FormGroup, AbstractControl, FormControl } from '@angular/forms';
7
8
  import { ThemePalette, DateAdapter } from '@angular/material/core';
8
9
  import { ActivatedRoute } from '@angular/router';
@@ -4190,7 +4191,7 @@ type LegacyTableConfig = TableConfig;
4190
4191
  /**
4191
4192
  * @deprecated Use createDefaultTableConfig instead
4192
4193
  */
4193
- declare const DEFAULT_TABLE_CONFIG: TableConfigV2;
4194
+ declare const DEFAULT_TABLE_CONFIG: _praxisui_core.TableConfigModern;
4194
4195
 
4195
4196
  type GlobalDialogAriaRole = 'dialog' | 'alertdialog';
4196
4197
  interface GlobalDialogPosition {
@@ -4991,39 +4992,39 @@ declare class TableConfigService {
4991
4992
  /**
4992
4993
  * Obtém configuração de paginação
4993
4994
  */
4994
- getPaginationConfig(): PaginationConfig | undefined;
4995
+ getPaginationConfig(): _praxisui_core.PaginationConfig | undefined;
4995
4996
  /**
4996
4997
  * Obtém configuração de ordenação
4997
4998
  */
4998
- getSortingConfig(): SortingConfig | undefined;
4999
+ getSortingConfig(): _praxisui_core.SortingConfig | undefined;
4999
5000
  /**
5000
5001
  * Obtém configuração de filtragem
5001
5002
  */
5002
- getFilteringConfig(): FilteringConfig | undefined;
5003
+ getFilteringConfig(): _praxisui_core.FilteringConfig | undefined;
5003
5004
  /**
5004
5005
  * Obtém configuração de seleção
5005
5006
  */
5006
- getSelectionConfig(): SelectionConfig | undefined;
5007
+ getSelectionConfig(): _praxisui_core.SelectionConfig | undefined;
5007
5008
  /**
5008
5009
  * Obtém configuração da toolbar
5009
5010
  */
5010
- getToolbarConfig(): ToolbarConfig | undefined;
5011
+ getToolbarConfig(): _praxisui_core.ToolbarConfig | undefined;
5011
5012
  /**
5012
5013
  * Obtém configuração de ações
5013
5014
  */
5014
- getActionsConfig(): TableActionsConfig | undefined;
5015
+ getActionsConfig(): _praxisui_core.TableActionsConfig | undefined;
5015
5016
  /**
5016
5017
  * Obtém configuração de aparência
5017
5018
  */
5018
- getAppearanceConfig(): TableAppearanceConfig | undefined;
5019
+ getAppearanceConfig(): _praxisui_core.TableAppearanceConfig | undefined;
5019
5020
  /**
5020
5021
  * Obtém configuração de mensagens
5021
5022
  */
5022
- getMessagesConfig(): MessagesConfig | undefined;
5023
+ getMessagesConfig(): _praxisui_core.MessagesConfig | undefined;
5023
5024
  /**
5024
5025
  * Obtém configuração de localização
5025
5026
  */
5026
- getLocalizationConfig(): LocalizationConfig | undefined;
5027
+ getLocalizationConfig(): _praxisui_core.LocalizationConfig | undefined;
5027
5028
  /**
5028
5029
  * Reset para configuração padrão
5029
5030
  */
@@ -12485,7 +12486,7 @@ declare function getFieldMetadataCapabilities(): Capability$1[];
12485
12486
  * Paths follow WidgetPageDefinition shape under "page".
12486
12487
  */
12487
12488
 
12488
- declare module "./index" {
12489
+ declare module "./praxisui-core" {
12489
12490
  interface AiCapabilityCategoryMap {
12490
12491
  page: true;
12491
12492
  layout: true;