@praxisui/core 9.0.0-beta.60 → 9.0.0-beta.62

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "schemaVersion": "1.0.0",
3
- "generatedAt": "2026-07-09T12:14:45.592Z",
3
+ "generatedAt": "2026-07-09T14:19:11.232Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.0-beta.60",
5
+ "packageVersion": "9.0.0-beta.62",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 4,
@@ -14089,6 +14089,8 @@ class RelatedResourceSurfaceResolverService {
14089
14089
  ...(payload.widget.inputs || {}),
14090
14090
  configPersistenceStrategy: 'volatile',
14091
14091
  resourcePath: this.normalizeResourcePath(relatedResource.childResourcePath),
14092
+ apiEndpointKey: request.apiEndpointKey ?? null,
14093
+ apiUrlEntry: request.apiUrlEntry ?? null,
14092
14094
  tableId: request.tableId || this.buildStableTableId(surface, relatedResource, parentResourceId),
14093
14095
  config: this.buildTableConfig(request.tableConfig, request.emptyState),
14094
14096
  queryContext,
@@ -14662,6 +14664,8 @@ class SurfaceOpenMaterializerService {
14662
14664
  const bulkActions = relatedActions
14663
14665
  .filter((action) => action['action'] === 'edit' || action['action'] === 'delete');
14664
14666
  const previousConfig = this.objectRecord(payload.widget?.inputs?.['config']);
14667
+ const previousAi = this.objectRecord(previousConfig['ai']);
14668
+ const previousAssistant = this.objectRecord(previousAi['assistant']);
14665
14669
  const previousBehavior = this.objectRecord(previousConfig['behavior']);
14666
14670
  const generatedConfig = {
14667
14671
  columns: schemaColumns.length ? schemaColumns : fallbackColumns,
@@ -14680,6 +14684,13 @@ class SurfaceOpenMaterializerService {
14680
14684
  },
14681
14685
  }
14682
14686
  : undefined,
14687
+ ai: {
14688
+ ...previousAi,
14689
+ assistant: {
14690
+ enabled: false,
14691
+ ...previousAssistant,
14692
+ },
14693
+ },
14683
14694
  behavior: {
14684
14695
  localDataMode: { enabled: true },
14685
14696
  pagination: { enabled: true, pageSize: 10 },
@@ -14863,12 +14874,12 @@ class SurfaceOpenMaterializerService {
14863
14874
  return String(surface?.['path'] || '').trim();
14864
14875
  }
14865
14876
  normalizeResourcePath(value) {
14866
- const raw = String(value || '').trim();
14877
+ let raw = String(value || '').trim();
14867
14878
  if (!raw)
14868
14879
  return '';
14869
14880
  if (/^https?:\/\//i.test(raw)) {
14870
14881
  try {
14871
- return new URL(raw).pathname.replace(/\/+$/, '');
14882
+ raw = decodeURIComponent(new URL(raw).pathname);
14872
14883
  }
14873
14884
  catch {
14874
14885
  return '';
@@ -37511,6 +37522,8 @@ class PraxisRelatedResourceOutletComponent {
37511
37522
  tableConfig: this.tableConfig(),
37512
37523
  emptyState: this.emptyState(),
37513
37524
  queryContext: this.queryContext(),
37525
+ apiEndpointKey: this.apiEndpointKey(),
37526
+ apiUrlEntry: this.apiUrlEntry(),
37514
37527
  });
37515
37528
  }, ...(ngDevMode ? [{ debugName: "resolution" }] : /* istanbul ignore next */ []));
37516
37529
  renderResolution = computed(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.0-beta.60",
3
+ "version": "9.0.0-beta.62",
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": "^21.0.0",
@@ -9726,6 +9726,8 @@ interface RelatedResourceSurfaceResolverRequest {
9726
9726
  tableConfig?: Record<string, unknown> | null;
9727
9727
  emptyState?: Record<string, unknown> | null;
9728
9728
  queryContext?: RelatedResourceQueryContext | null;
9729
+ apiEndpointKey?: ApiEndpoint | null;
9730
+ apiUrlEntry?: ApiUrlEntry | null;
9729
9731
  }
9730
9732
  interface RelatedResourceSurfaceResolution {
9731
9733
  state: RelatedResourceResolutionState;