@leanix/components 0.4.679 → 0.4.680

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.
@@ -1109,6 +1109,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
1109
1109
  * - `fullSpaceFixed`: Sets position to fixed with full height and width => fills window
1110
1110
  * (or ancestor with new rendering context, created, for example, with `transform: translate(0, 0)`
1111
1111
  * - `fadeBackground`: Sets background to 60% transparent white. TODO: Always use for fullSpace* classes and remove.
1112
+ *
1113
+ * @deprecated Use the `ui5-busy-indicator` component instead.
1112
1114
  */
1113
1115
  class SpinnerComponent {
1114
1116
  constructor() {
@@ -11561,9 +11563,10 @@ function formatInterpolatedInputProperty(propertyName, value) {
11561
11563
  let interpolatedValue = undefined;
11562
11564
  switch (typeof value) {
11563
11565
  case 'string':
11564
- interpolatedValue = `'${value.replace("'", "\\'")}'`;
11566
+ interpolatedValue = `${value.replace("'", "\\'")}`;
11565
11567
  break;
11566
11568
  case 'object':
11569
+ propertyName = `[${propertyName}]`;
11567
11570
  interpolatedValue = safeStringify(value)
11568
11571
  .replace(/'/g, '\u2019')
11569
11572
  .replace(/\\"/g, '\u201D')
@@ -11577,13 +11580,16 @@ function formatInterpolatedInputProperty(propertyName, value) {
11577
11580
  case 'bigint':
11578
11581
  case 'number':
11579
11582
  case 'boolean':
11583
+ case 'function':
11584
+ propertyName = `[${propertyName}]`;
11585
+ interpolatedValue = value;
11586
+ break;
11580
11587
  case 'symbol':
11581
11588
  case 'undefined':
11582
- case 'function':
11583
11589
  default:
11584
11590
  interpolatedValue = value;
11585
11591
  }
11586
- return interpolatedValue != null ? `[${propertyName}]="${interpolatedValue}"` : '';
11592
+ return interpolatedValue != null ? `${propertyName}="${interpolatedValue}"` : '';
11587
11593
  }
11588
11594
 
11589
11595
  /**