@praxisui/table 3.0.0-beta.7 → 3.0.0-beta.8

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/index.d.ts CHANGED
@@ -1753,9 +1753,11 @@ interface ExtendedColumnDefinition extends ColumnDefinition {
1753
1753
  }
1754
1754
  declare class ColumnsConfigEditorComponent implements OnInit, OnDestroy {
1755
1755
  private cdr;
1756
- readonly ratingAriaLabelPlaceholder = "Avalia\u00E7\u00E3o {value} de {max}";
1757
- readonly ratingRendererHint = "Renderer padronizado e somente leitura para uso em tabela. \u00CDcones customizados n\u00E3o s\u00E3o suportados neste contexto. Valores fracionados s\u00E3o normalizados em passos de 0.5 no grid. Use {value} e {max} no aria-label para sobrescrever o texto acess\u00EDvel completo; sem placeholders, o valor informado funciona como prefixo.";
1758
- readonly composeRatingRendererHint = "Compose/Rating usa o mesmo renderer can\u00F4nico de tabela e normaliza fra\u00E7\u00F5es em passos de 0.5. Use {value} e {max} para sobrescrever o texto acess\u00EDvel completo.";
1756
+ private readonly i18n;
1757
+ tx(key: string, fallback: string): string;
1758
+ readonly ratingAriaLabelPlaceholder: string;
1759
+ readonly ratingRendererHint: string;
1760
+ readonly composeRatingRendererHint: string;
1759
1761
  config: TableConfig;
1760
1762
  configChange: EventEmitter<_praxisui_core.TableConfigModern>;
1761
1763
  columnChange: EventEmitter<ColumnChange>;
@@ -2025,11 +2027,13 @@ interface BehaviorConfigChange {
2025
2027
  }
2026
2028
  declare class BehaviorConfigEditorComponent implements OnInit, OnDestroy, OnChanges {
2027
2029
  private fb;
2030
+ private readonly i18n;
2031
+ tx(key: string, fallback: string): string;
2028
2032
  readonly schemaOnlyLimitationsDocPath = "praxis-table.json-api.md#known-limitations-and-mismatches";
2029
- readonly multiSortSchemaOnlyTooltip = "behavior.sorting.multiSort \u00E9 schema-only no runtime atual. Consulte a documenta\u00E7\u00E3o de limita\u00E7\u00F5es.";
2030
- readonly columnFiltersSchemaOnlyTooltip = "behavior.filtering.columnFilters.enabled \u00E9 schema-only no runtime atual. Consulte a documenta\u00E7\u00E3o de limita\u00E7\u00F5es.";
2031
- readonly draggingRowsSchemaOnlyTooltip = "behavior.dragging.rows \u00E9 schema-only no runtime atual. Consulte a documenta\u00E7\u00E3o de limita\u00E7\u00F5es.";
2032
- readonly expansionSchemaOnlyTooltip = "behavior.expansion.* possui runtime P0A ativo para detail row schema-driven (sem virtualiza\u00E7\u00E3o).";
2033
+ readonly multiSortSchemaOnlyTooltip: string;
2034
+ readonly columnFiltersSchemaOnlyTooltip: string;
2035
+ readonly draggingRowsSchemaOnlyTooltip: string;
2036
+ readonly expansionSchemaOnlyTooltip: string;
2033
2037
  config: TableConfig;
2034
2038
  resourcePath?: string;
2035
2039
  forceClientStrategies: boolean;
@@ -2152,7 +2156,7 @@ declare class ToolbarActionsEditorComponent implements OnInit, OnDestroy, OnChan
2152
2156
  editingRowActionIndex: number | null;
2153
2157
  editingBulkActionIndex: number | null;
2154
2158
  readonly globalActionCatalog: GlobalActionSpec[];
2155
- readonly internalActionCatalog: InternalActionSpec[];
2159
+ get internalActionCatalog(): InternalActionSpec[];
2156
2160
  readonly customActionValue = "__custom__";
2157
2161
  readonly validShortcutScopes: ToolbarShortcutScope[];
2158
2162
  private readonly actionFieldDrafts;
@@ -2161,6 +2165,7 @@ declare class ToolbarActionsEditorComponent implements OnInit, OnDestroy, OnChan
2161
2165
  private readonly i18n;
2162
2166
  private destroy$;
2163
2167
  constructor(fb: FormBuilder, iconPicker: IconPickerService);
2168
+ tx(key: string, fallback: string): string;
2164
2169
  getGlobalActionSpecLabel(spec: {
2165
2170
  id?: string;
2166
2171
  label?: string;
@@ -2285,10 +2290,12 @@ declare class MessagesLocalizationEditorComponent implements OnInit, OnDestroy {
2285
2290
  config: TableConfig;
2286
2291
  configChange: EventEmitter<_praxisui_core.TableConfigModern>;
2287
2292
  messagesLocalizationChange: EventEmitter<MessagesLocalizationChange>;
2293
+ private readonly i18n;
2288
2294
  messagesForm: FormGroup;
2289
2295
  isV2: boolean;
2290
2296
  private destroy$;
2291
2297
  constructor(fb: FormBuilder);
2298
+ tx(key: string, fallback: string): string;
2292
2299
  ngOnInit(): void;
2293
2300
  ngOnDestroy(): void;
2294
2301
  private initializeForm;
@@ -2602,7 +2609,9 @@ declare class PraxisTableConfigEditor implements OnInit, OnDestroy, SettingsValu
2602
2609
  private readonly panelData;
2603
2610
  private readonly crudService;
2604
2611
  private readonly panelRef;
2612
+ private readonly i18n;
2605
2613
  constructor(cdr: ChangeDetectorRef, configService: TableConfigService);
2614
+ tx(key: string, fallback: string): string;
2606
2615
  private isDebugLoggingEnabled;
2607
2616
  private debugLog;
2608
2617
  ngOnInit(): void;
@@ -2889,6 +2898,7 @@ declare class TableRulesEditorComponent implements OnChanges, OnInit, OnDestroy
2889
2898
  private dynamicForm;
2890
2899
  private crud?;
2891
2900
  private static runtimeRegistryInstanceCounter;
2901
+ private readonly i18n;
2892
2902
  config: TableConfig;
2893
2903
  resourcePath?: string;
2894
2904
  fields?: FieldDefinition[] | null;
@@ -2940,7 +2950,6 @@ declare class TableRulesEditorComponent implements OnChanges, OnInit, OnDestroy
2940
2950
  /** Log a focused view for a single field */
2941
2951
  private logSingleFieldMeta;
2942
2952
  private logFieldChoices;
2943
- i18nDefault: Record<string, string>;
2944
2953
  t(key: string): string;
2945
2954
  constructor(cdr: ChangeDetectorRef, registry: OperatorsRegistryService, compiler: RuleCompilerService, dynamicForm: DynamicFormService, crud?: GenericCrudService<any> | undefined);
2946
2955
  private configureDslRuntime;
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@praxisui/table",
3
- "version": "3.0.0-beta.7",
3
+ "version": "3.0.0-beta.8",
4
4
  "description": "Advanced data table for Angular (Praxis UI) with editing, filtering, sorting, virtualization, and settings panel integration.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
7
7
  "@angular/core": "^20.0.0",
8
- "@praxisui/core": "^3.0.0-beta.7",
9
- "@praxisui/dynamic-fields": "^3.0.0-beta.7",
10
- "@praxisui/dynamic-form": "^3.0.0-beta.7",
11
- "@praxisui/metadata-editor": "^3.0.0-beta.7",
12
- "@praxisui/settings-panel": "^3.0.0-beta.7",
13
- "@praxisui/table-rule-builder": "^3.0.0-beta.7"
8
+ "@praxisui/core": "^3.0.0-beta.8",
9
+ "@praxisui/dynamic-fields": "^3.0.0-beta.8",
10
+ "@praxisui/dynamic-form": "^3.0.0-beta.8",
11
+ "@praxisui/metadata-editor": "^3.0.0-beta.8",
12
+ "@praxisui/settings-panel": "^3.0.0-beta.8",
13
+ "@praxisui/table-rule-builder": "^3.0.0-beta.8"
14
14
  },
15
15
  "dependencies": {
16
16
  "tslib": "^2.3.0"