@praxisui/settings-panel 8.0.0-beta.60 → 8.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.
@@ -1777,12 +1777,13 @@ class SurfaceDrawerComponent {
1777
1777
  return;
1778
1778
  }
1779
1779
  const supportedInputs = this.resolveSupportedInputs(componentRef);
1780
+ const canUseSetInput = typeof componentRef.setInput === 'function';
1780
1781
  for (const [key, value] of Object.entries(inputs)) {
1781
- if (supportedInputs && !supportedInputs.has(key)) {
1782
+ if (!canUseSetInput && supportedInputs && !supportedInputs.has(key)) {
1782
1783
  continue;
1783
1784
  }
1784
1785
  try {
1785
- if (typeof componentRef.setInput === 'function') {
1786
+ if (canUseSetInput) {
1786
1787
  componentRef.setInput(key, value);
1787
1788
  }
1788
1789
  else {
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@praxisui/settings-panel",
3
- "version": "8.0.0-beta.60",
3
+ "version": "8.0.0-beta.62",
4
4
  "description": "Settings panel for Praxis UI libraries: open editors for configuration at runtime and persist settings.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
7
7
  "@angular/core": "^21.0.0",
8
8
  "@angular/cdk": "^21.0.0",
9
9
  "@angular/material": "^21.0.0",
10
- "@praxisui/ai": "^8.0.0-beta.60",
11
- "@praxisui/core": "^8.0.0-beta.60",
12
- "@praxisui/dynamic-fields": "^8.0.0-beta.60",
10
+ "@praxisui/ai": "^8.0.0-beta.62",
11
+ "@praxisui/core": "^8.0.0-beta.62",
12
+ "@praxisui/dynamic-fields": "^8.0.0-beta.62",
13
13
  "rxjs": "~7.8.0"
14
14
  },
15
15
  "dependencies": {