@praxisui/table 9.0.42 → 9.0.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.
package/README.md CHANGED
@@ -171,6 +171,11 @@ Common outputs:
171
171
  - `loadingStateChange`, `collectionLinksChange`
172
172
  - `widgetEvent`
173
173
 
174
+ Automatic schema hydration and drift verification update the runtime projection
175
+ and emit schema/metadata diagnostics, but they do not emit `configChange` or a
176
+ persistable `tableInputPatch`. Those authoring outputs are reserved for explicit
177
+ user operations such as applying table settings or Quick Connect.
178
+
174
179
  Row, selection and action events can include the read-only `resourceIdentity`
175
180
  materialized from the response schema. A valid explicit identity is preferred;
176
181
  otherwise a valid `idField` can produce a diagnostic key-only fallback. This
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-08-30T12:51:40.847Z",
3
+ "generatedAt": "2026-08-30T15:02:07.421Z",
4
4
  "packageName": "@praxisui/table",
5
- "packageVersion": "9.0.42",
5
+ "packageVersion": "9.0.44",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 3,
@@ -45248,7 +45248,7 @@ class PraxisTable {
45248
45248
  if (this.aiAdapter || this.aiAdapterLoadStarted)
45249
45249
  return;
45250
45250
  this.aiAdapterLoadStarted = true;
45251
- import('./praxisui-table-table-ai.adapter-oSqul1ew.mjs')
45251
+ import('./praxisui-table-table-ai.adapter-XK5WSLXC.mjs')
45252
45252
  .then(({ TableAiAdapter }) => {
45253
45253
  if (!this.isAiAssistantEnabled()) {
45254
45254
  this.aiAssistantOpenAfterAdapterLoad = false;
@@ -45994,7 +45994,7 @@ class PraxisTable {
45994
45994
  initializeAiAssistantController() {
45995
45995
  if (!this.aiAdapter || this.aiAssistantController)
45996
45996
  return;
45997
- import('./praxisui-table-table-agentic-authoring-turn-flow-C1rc3ai5.mjs')
45997
+ import('./praxisui-table-table-agentic-authoring-turn-flow-XFwFkts0.mjs')
45998
45998
  .then(({ TableAgenticAuthoringTurnFlow }) => {
45999
45999
  if (this.aiAssistantController || !this.aiAdapter)
46000
46000
  return;
@@ -52543,15 +52543,6 @@ class PraxisTable {
52543
52543
  }
52544
52544
  catch { }
52545
52545
  }
52546
- scheduleWidgetInputPatch(inputPatch, trigger) {
52547
- const clonedPatch = this.cloneInputPatch(inputPatch);
52548
- setTimeout(() => {
52549
- this.emitWidgetInputPatch(clonedPatch, trigger);
52550
- if (Object.prototype.hasOwnProperty.call(clonedPatch, 'config')) {
52551
- this.configChange.emit(this.toPortableTableConfig(clonedPatch['config']));
52552
- }
52553
- }, 0);
52554
- }
52555
52546
  cloneInputPatch(inputPatch) {
52556
52547
  try {
52557
52548
  return JSON.parse(JSON.stringify(inputPatch));
@@ -52890,6 +52881,11 @@ class PraxisTable {
52890
52881
  return;
52891
52882
  if (!this.isRemoteMode())
52892
52883
  return;
52884
+ if (this.usesSchemaColumnProjection()
52885
+ && this.schemaColumnFieldsSnapshot.length > 0) {
52886
+ this.config.columns = this.projectSchemaColumns(this.schemaColumnFieldsSnapshot, this.config.columnProjection);
52887
+ return;
52888
+ }
52893
52889
  if (this.schemaFieldsSnapshot.length === 0)
52894
52890
  return;
52895
52891
  if (!this.visibleColumns.length)
@@ -54534,7 +54530,6 @@ class PraxisTable {
54534
54530
  }
54535
54531
  this.loadFilterSchemaSnapshot();
54536
54532
  this.setupColumns();
54537
- this.configChange.emit(this.toPortableTableConfig());
54538
54533
  }
54539
54534
  catch { }
54540
54535
  this.runtimeSchemaMeta = {
@@ -54617,23 +54612,12 @@ class PraxisTable {
54617
54612
  else {
54618
54613
  this.applySchemaFieldPresentationsToExistingColumns(fields);
54619
54614
  }
54620
- this.emitWidgetInputPatch({
54621
- config: this.config,
54622
- resourcePath: this.resourcePath,
54623
- horizontalScroll: this.horizontalScroll,
54624
- }, 'schema-loaded');
54625
- this.configChange.emit(this.toPortableTableConfig());
54626
54615
  const mountCtx = this.buildLoadingContext('mount', 'Montando colunas…', false);
54627
54616
  this.beginLoading(mountCtx);
54628
54617
  try {
54629
54618
  this.emitLoadingState('render', 'loading', 'Montando colunas da tabela...');
54630
54619
  this.setupColumns();
54631
54620
  this.emitLoadingState('render', 'success', 'Colunas montadas.');
54632
- this.scheduleWidgetInputPatch({
54633
- config: this.config,
54634
- resourcePath: this.resourcePath,
54635
- horizontalScroll: this.horizontalScroll,
54636
- }, 'schema-rendered');
54637
54621
  }
54638
54622
  finally {
54639
54623
  this.endLoading(mountCtx);
@@ -1,6 +1,6 @@
1
1
  import { Observable, firstValueFrom } from 'rxjs';
2
2
  import { withAuthoringScopePolicy } from '@praxisui/ai';
3
- import { ae as setTableActionGlobalActionRef } from './praxisui-table-praxisui-table-DsGW8c1t.mjs';
3
+ import { ae as setTableActionGlobalActionRef } from './praxisui-table-praxisui-table-Dm3eeAlp.mjs';
4
4
 
5
5
  class TableAgenticAuthoringTurnFlow {
6
6
  adapter;
@@ -1,7 +1,7 @@
1
1
  import { firstValueFrom } from 'rxjs';
2
2
  import { BaseAiAdapter, sanitizePraxisAssistantText, createComponentAuthoringContext } from '@praxisui/ai';
3
3
  import { PRAXIS_GLOBAL_ACTION_CATALOG, deepMerge } from '@praxisui/core';
4
- import { K as TABLE_COMPONENT_EDIT_PLAN_OPERATION_IDS, m as PRAXIS_TABLE_AUTHORING_MANIFEST, T as TABLE_AI_CAPABILITIES, _ as coerceTableComponentEditPlans, a0 as compileTableComponentEditPlans, O as TASK_PRESETS, a5 as getTableComponentEditPlanCapabilities, G as TABLE_COMPONENT_EDIT_PLAN_EXPECTED_PATHS, z as TABLE_COMPONENT_EDIT_PLAN_ALLOWED_CHANGE_KINDS, H as TABLE_COMPONENT_EDIT_PLAN_JSON_SCHEMA, L as TABLE_COMPONENT_EDIT_PLAN_VERSION, E as TABLE_COMPONENT_EDIT_PLAN_BATCH_KIND, I as TABLE_COMPONENT_EDIT_PLAN_KIND } from './praxisui-table-praxisui-table-DsGW8c1t.mjs';
4
+ import { K as TABLE_COMPONENT_EDIT_PLAN_OPERATION_IDS, m as PRAXIS_TABLE_AUTHORING_MANIFEST, T as TABLE_AI_CAPABILITIES, _ as coerceTableComponentEditPlans, a0 as compileTableComponentEditPlans, O as TASK_PRESETS, a5 as getTableComponentEditPlanCapabilities, G as TABLE_COMPONENT_EDIT_PLAN_EXPECTED_PATHS, z as TABLE_COMPONENT_EDIT_PLAN_ALLOWED_CHANGE_KINDS, H as TABLE_COMPONENT_EDIT_PLAN_JSON_SCHEMA, L as TABLE_COMPONENT_EDIT_PLAN_VERSION, E as TABLE_COMPONENT_EDIT_PLAN_BATCH_KIND, I as TABLE_COMPONENT_EDIT_PLAN_KIND } from './praxisui-table-praxisui-table-Dm3eeAlp.mjs';
5
5
 
6
6
  const TABLE_ROW_EXPRESSION_CONTEXT_OPTION = {
7
7
  mode: 'expression',
@@ -1 +1 @@
1
- export { A as ANALYTICS_TABLE_ROW_KEY_FIELD, a as AnalyticsTableConfigAdapterService, b as AnalyticsTableContractService, c as AnalyticsTableStatsApiService, B as BOOLEAN_PRESETS, d as BehaviorConfigEditorComponent, C as CURRENCY_PRESETS, e as ColumnsConfigEditorComponent, D as DATE_PRESETS, f as DataFormatterComponent, g as DataFormattingService, F as FORMULA_TEMPLATES, h as FilterConfigService, i as FilterSettingsComponent, j as FormulaGeneratorService, J as JsonConfigEditorComponent, M as MessagesLocalizationEditorComponent, N as NUMBER_PRESETS, P as PERCENTAGE_PRESETS, k as PRAXIS_FILTER_AUTHORING_MANIFEST, l as PRAXIS_FILTER_COMPONENT_METADATA, m as PRAXIS_TABLE_AUTHORING_MANIFEST, n as PRAXIS_TABLE_COMPONENT_METADATA, o as PRAXIS_TABLE_TOOLBAR_APPEARANCE_PRESETS, p as PRAXIS_TABLE_TOOLBAR_DEFAULT_APPEARANCE, q as PRAXIS_TABLE_TOOLBAR_TOKEN_PRESETS, r as PraxisFilter, s as PraxisFilterWidgetConfigEditor, t as PraxisTable, u as PraxisTableConfigEditor, v as PraxisTableInlineAuthoringEditorComponent, w as PraxisTableToolbar, x as PraxisTableWidgetConfigEditor, S as STRING_PRESETS, T as TABLE_AI_CAPABILITIES, y as TABLE_COMPONENT_AI_CAPABILITIES, z as TABLE_COMPONENT_EDIT_PLAN_ALLOWED_CHANGE_KINDS, E as TABLE_COMPONENT_EDIT_PLAN_BATCH_KIND, G as TABLE_COMPONENT_EDIT_PLAN_EXPECTED_PATHS, H as TABLE_COMPONENT_EDIT_PLAN_JSON_SCHEMA, I as TABLE_COMPONENT_EDIT_PLAN_KIND, L as TABLE_COMPONENT_EDIT_PLAN_VERSION, O as TASK_PRESETS, Q as TableDefaultsProvider, R as TableRulesEditorComponent, U as ToolbarActionsEditorComponent, V as ValueMappingEditorComponent, W as VisualFormulaBuilderComponent, X as analyticsComparisonMetricField, Y as buildTableApplyPlan, Z as coerceTableComponentEditPlan, _ as coerceTableComponentEditPlans, $ as compileTableComponentEditPlan, a0 as compileTableComponentEditPlans, a1 as createTableAuthoringDocument, a2 as getActionId, a3 as getEnum, a4 as getTableCapabilities, a5 as getTableComponentEditPlanCapabilities, a6 as isTableRendererSupportedByRichContentP0, a7 as mapTableRendererToRichContentP0, a8 as normalizeTableAuthoringDocument, a9 as parseLegacyOrTableDocument, aa as providePraxisFilterMetadata, ab as providePraxisTableMetadata, ac as providePraxisTableToolbarAppearance, ad as serializeTableAuthoringDocument, af as toCanonicalTableConfig, ag as validateTableAuthoringDocument } from './praxisui-table-praxisui-table-DsGW8c1t.mjs';
1
+ export { A as ANALYTICS_TABLE_ROW_KEY_FIELD, a as AnalyticsTableConfigAdapterService, b as AnalyticsTableContractService, c as AnalyticsTableStatsApiService, B as BOOLEAN_PRESETS, d as BehaviorConfigEditorComponent, C as CURRENCY_PRESETS, e as ColumnsConfigEditorComponent, D as DATE_PRESETS, f as DataFormatterComponent, g as DataFormattingService, F as FORMULA_TEMPLATES, h as FilterConfigService, i as FilterSettingsComponent, j as FormulaGeneratorService, J as JsonConfigEditorComponent, M as MessagesLocalizationEditorComponent, N as NUMBER_PRESETS, P as PERCENTAGE_PRESETS, k as PRAXIS_FILTER_AUTHORING_MANIFEST, l as PRAXIS_FILTER_COMPONENT_METADATA, m as PRAXIS_TABLE_AUTHORING_MANIFEST, n as PRAXIS_TABLE_COMPONENT_METADATA, o as PRAXIS_TABLE_TOOLBAR_APPEARANCE_PRESETS, p as PRAXIS_TABLE_TOOLBAR_DEFAULT_APPEARANCE, q as PRAXIS_TABLE_TOOLBAR_TOKEN_PRESETS, r as PraxisFilter, s as PraxisFilterWidgetConfigEditor, t as PraxisTable, u as PraxisTableConfigEditor, v as PraxisTableInlineAuthoringEditorComponent, w as PraxisTableToolbar, x as PraxisTableWidgetConfigEditor, S as STRING_PRESETS, T as TABLE_AI_CAPABILITIES, y as TABLE_COMPONENT_AI_CAPABILITIES, z as TABLE_COMPONENT_EDIT_PLAN_ALLOWED_CHANGE_KINDS, E as TABLE_COMPONENT_EDIT_PLAN_BATCH_KIND, G as TABLE_COMPONENT_EDIT_PLAN_EXPECTED_PATHS, H as TABLE_COMPONENT_EDIT_PLAN_JSON_SCHEMA, I as TABLE_COMPONENT_EDIT_PLAN_KIND, L as TABLE_COMPONENT_EDIT_PLAN_VERSION, O as TASK_PRESETS, Q as TableDefaultsProvider, R as TableRulesEditorComponent, U as ToolbarActionsEditorComponent, V as ValueMappingEditorComponent, W as VisualFormulaBuilderComponent, X as analyticsComparisonMetricField, Y as buildTableApplyPlan, Z as coerceTableComponentEditPlan, _ as coerceTableComponentEditPlans, $ as compileTableComponentEditPlan, a0 as compileTableComponentEditPlans, a1 as createTableAuthoringDocument, a2 as getActionId, a3 as getEnum, a4 as getTableCapabilities, a5 as getTableComponentEditPlanCapabilities, a6 as isTableRendererSupportedByRichContentP0, a7 as mapTableRendererToRichContentP0, a8 as normalizeTableAuthoringDocument, a9 as parseLegacyOrTableDocument, aa as providePraxisFilterMetadata, ab as providePraxisTableMetadata, ac as providePraxisTableToolbarAppearance, ad as serializeTableAuthoringDocument, af as toCanonicalTableConfig, ag as validateTableAuthoringDocument } from './praxisui-table-praxisui-table-Dm3eeAlp.mjs';
package/package.json CHANGED
@@ -1,24 +1,24 @@
1
1
  {
2
2
  "name": "@praxisui/table",
3
- "version": "9.0.42",
3
+ "version": "9.0.44",
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": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
8
  "@angular/platform-browser": "^21.0.0",
9
- "@praxisui/ai": "^9.0.42",
10
- "@praxisui/core": "^9.0.42",
11
- "@praxisui/dynamic-fields": "^9.0.42",
12
- "@praxisui/dynamic-form": "^9.0.42",
13
- "@praxisui/metadata-editor": "^9.0.42",
14
- "@praxisui/rich-content": "^9.0.42",
15
- "@praxisui/settings-panel": "^9.0.42",
16
- "@praxisui/table-rule-builder": "^9.0.42",
9
+ "@praxisui/ai": "^9.0.44",
10
+ "@praxisui/core": "^9.0.44",
11
+ "@praxisui/dynamic-fields": "^9.0.44",
12
+ "@praxisui/dynamic-form": "^9.0.44",
13
+ "@praxisui/metadata-editor": "^9.0.44",
14
+ "@praxisui/rich-content": "^9.0.44",
15
+ "@praxisui/settings-panel": "^9.0.44",
16
+ "@praxisui/table-rule-builder": "^9.0.44",
17
17
  "@angular/cdk": "^21.0.0",
18
18
  "@angular/forms": "^21.0.0",
19
19
  "@angular/material": "^21.0.0",
20
20
  "@angular/router": "^21.0.0",
21
- "@praxisui/dialog": "^9.0.42",
21
+ "@praxisui/dialog": "^9.0.44",
22
22
  "rxjs": "~7.8.0"
23
23
  },
24
24
  "dependencies": {
@@ -2051,7 +2051,6 @@ declare class PraxisTable implements OnInit, OnChanges, AfterViewInit, AfterCont
2051
2051
  private applyTableConfig;
2052
2052
  private buildTableEditorRuntimeContext;
2053
2053
  private emitWidgetInputPatch;
2054
- private scheduleWidgetInputPatch;
2055
2054
  private cloneInputPatch;
2056
2055
  private executeTableEditorApplyPlan;
2057
2056
  private attachRuntimeMetadataToEditorConfig;