@praxisui/table 1.0.0-beta.59 → 1.0.0-beta.60

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.
@@ -13155,8 +13155,9 @@ class BehaviorConfigEditorComponent {
13155
13155
  keyboardEnabled: behavior.interaction.keyboard?.enabled || false,
13156
13156
  });
13157
13157
  }
13158
- if (behavior.expansion) {
13159
- const expansion = behavior.expansion;
13158
+ const behaviorAny = behavior;
13159
+ if (behaviorAny.expansion) {
13160
+ const expansion = behaviorAny.expansion;
13160
13161
  const detail = (expansion.detail || {});
13161
13162
  const source = (detail.source || {});
13162
13163
  const resource = (source.resource || {});