cloud-ide-element 1.1.172 → 1.1.175

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.
@@ -4154,9 +4154,7 @@ class CideEleFloatingContainerService {
4154
4154
  // Set inputs if provided
4155
4155
  if (config?.inputs) {
4156
4156
  Object.keys(config.inputs).forEach(key => {
4157
- if (componentRef.instance && typeof componentRef.instance === 'object' && key in componentRef.instance) {
4158
- componentRef.instance[key] = config.inputs[key];
4159
- }
4157
+ componentRef.setInput(key, config.inputs[key]);
4160
4158
  });
4161
4159
  }
4162
4160
  // Set outputs if provided