@leanix/components 0.4.678 → 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.
|
@@ -496,11 +496,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
496
496
|
*/
|
|
497
497
|
class TinySpinnerComponent {
|
|
498
498
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: TinySpinnerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
499
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: TinySpinnerComponent, isStandalone: true, selector: "lx-tiny-spinner", ngImport: i0, template: "<i class=\"far fa-spinner fa-spin fa-fw\"></i>\n", styles: [".fa-spin{-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}.fa-spinner:before{content:\"\\f110\"}\n"] }); }
|
|
499
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: TinySpinnerComponent, isStandalone: true, selector: "lx-tiny-spinner", ngImport: i0, template: "<i class=\"far fa-spinner fa-spin fa-fw\"></i>\n", styles: ["@keyframes subtleScaleUpKeyFrames{0%{transform:scale(.95);opacity:0}}.spin{animation:spin 2s infinite linear}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-spin{-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}.fa-spinner:before{content:\"\\f110\"}\n"] }); }
|
|
500
500
|
}
|
|
501
501
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: TinySpinnerComponent, decorators: [{
|
|
502
502
|
type: Component,
|
|
503
|
-
args: [{ selector: 'lx-tiny-spinner', template: "<i class=\"far fa-spinner fa-spin fa-fw\"></i>\n", styles: [".fa-spin{-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}.fa-spinner:before{content:\"\\f110\"}\n"] }]
|
|
503
|
+
args: [{ selector: 'lx-tiny-spinner', template: "<i class=\"far fa-spinner fa-spin fa-fw\"></i>\n", styles: ["@keyframes subtleScaleUpKeyFrames{0%{transform:scale(.95);opacity:0}}.spin{animation:spin 2s infinite linear}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.fa-spin{-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}.fa-spinner:before{content:\"\\f110\"}\n"] }]
|
|
504
504
|
}] });
|
|
505
505
|
|
|
506
506
|
/**
|
|
@@ -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 =
|
|
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 ?
|
|
11592
|
+
return interpolatedValue != null ? `${propertyName}="${interpolatedValue}"` : '';
|
|
11587
11593
|
}
|
|
11588
11594
|
|
|
11589
11595
|
/**
|