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

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-09T13:40:31.613Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.0-beta.60",
5
+ "packageVersion": "9.0.0-beta.61",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 4,
@@ -14662,6 +14662,8 @@ class SurfaceOpenMaterializerService {
14662
14662
  const bulkActions = relatedActions
14663
14663
  .filter((action) => action['action'] === 'edit' || action['action'] === 'delete');
14664
14664
  const previousConfig = this.objectRecord(payload.widget?.inputs?.['config']);
14665
+ const previousAi = this.objectRecord(previousConfig['ai']);
14666
+ const previousAssistant = this.objectRecord(previousAi['assistant']);
14665
14667
  const previousBehavior = this.objectRecord(previousConfig['behavior']);
14666
14668
  const generatedConfig = {
14667
14669
  columns: schemaColumns.length ? schemaColumns : fallbackColumns,
@@ -14680,6 +14682,13 @@ class SurfaceOpenMaterializerService {
14680
14682
  },
14681
14683
  }
14682
14684
  : undefined,
14685
+ ai: {
14686
+ ...previousAi,
14687
+ assistant: {
14688
+ enabled: false,
14689
+ ...previousAssistant,
14690
+ },
14691
+ },
14683
14692
  behavior: {
14684
14693
  localDataMode: { enabled: true },
14685
14694
  pagination: { enabled: true, pageSize: 10 },
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.61",
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",