@praxisui/core 9.0.4-rc.7 → 9.0.4-rc.9

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-08-02T02:54:19.460Z",
3
+ "generatedAt": "2026-08-02T20:43:58.578Z",
4
4
  "packageName": "@praxisui/core",
5
- "packageVersion": "9.0.4-rc.7",
5
+ "packageVersion": "9.0.4-rc.9",
6
6
  "sourceRegistry": "praxis-component-registry-ingestion",
7
7
  "sourceRegistryVersion": "1.0.0",
8
8
  "componentCount": 4,
@@ -15961,8 +15961,15 @@ class SurfaceOpenMaterializerService {
15961
15961
  const previousAi = this.objectRecord(previousConfig['ai']);
15962
15962
  const previousAssistant = this.objectRecord(previousAi['assistant']);
15963
15963
  const previousBehavior = this.objectRecord(previousConfig['behavior']);
15964
+ const previousColumns = Array.isArray(previousConfig['columns'])
15965
+ ? previousConfig['columns']
15966
+ : [];
15964
15967
  const generatedConfig = {
15965
- columns: schemaColumns.length ? schemaColumns : fallbackColumns,
15968
+ columns: previousColumns.length
15969
+ ? previousColumns
15970
+ : schemaColumns.length
15971
+ ? schemaColumns
15972
+ : fallbackColumns,
15966
15973
  toolbar: toolbarActions.length
15967
15974
  ? {
15968
15975
  ...previousToolbar,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/core",
3
- "version": "9.0.4-rc.7",
3
+ "version": "9.0.4-rc.9",
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",