@leanix/components 0.3.113 → 0.3.115
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.
- package/esm2020/index.mjs +2 -1
- package/esm2020/lib/forms-ui/components/copy-button/copy-button.component.mjs +59 -0
- package/esm2020/lib/forms-ui/components/currency/currency-input.component.mjs +8 -4
- package/esm2020/lib/forms-ui/forms-ui.module.mjs +6 -1
- package/esm2020/lib/modal-ui/components/modal/modal.component.mjs +4 -2
- package/fesm2015/leanix-components.mjs +101 -36
- package/fesm2015/leanix-components.mjs.map +1 -1
- package/fesm2020/leanix-components.mjs +99 -36
- package/fesm2020/leanix-components.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/lib/forms-ui/components/copy-button/copy-button.component.d.ts +25 -0
- package/lib/forms-ui/components/currency/currency-input.component.d.ts +3 -3
- package/lib/forms-ui/forms-ui.module.d.ts +46 -45
- package/package.json +2 -1
|
@@ -2777,6 +2777,62 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
2777
2777
|
args: ['dropdown']
|
|
2778
2778
|
}] } });
|
|
2779
2779
|
|
|
2780
|
+
// todo: replace with Angular CDK clipboard
|
|
2781
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
2782
|
+
const copy = require('clipboard-copy');
|
|
2783
|
+
class CopyButtonComponent {
|
|
2784
|
+
constructor() {
|
|
2785
|
+
/** JSON string or object to be saved/copied as JSON */
|
|
2786
|
+
this.data = '';
|
|
2787
|
+
/** Determine copy button Bootstrap class & color or hide it altogether */
|
|
2788
|
+
this.btn = 'default';
|
|
2789
|
+
this.success = new EventEmitter();
|
|
2790
|
+
this.error = new EventEmitter();
|
|
2791
|
+
this.NAME = 'CopyButtonComponent';
|
|
2792
|
+
// clipboard-copy uses document.execCommand to copy to clipboard. All our _whitelisted_ browsers support it.
|
|
2793
|
+
// The copy still fails on very rare occasions for unknown reasons. In those cases it's good for the user
|
|
2794
|
+
// to be able to try again. So clipboardSupport is not set to false in the catch below any more.
|
|
2795
|
+
this.clipboardSupport = typeof document.execCommand === 'function';
|
|
2796
|
+
}
|
|
2797
|
+
copy() {
|
|
2798
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2799
|
+
try {
|
|
2800
|
+
const json = this.getStringData();
|
|
2801
|
+
yield copy(json);
|
|
2802
|
+
this.success.emit({
|
|
2803
|
+
messageKey: this.dataDescription ? `${this.NAME}.dataCopySuccess` : `${this.NAME}.copySuccess`,
|
|
2804
|
+
translateParams: { data: this.dataDescription }
|
|
2805
|
+
});
|
|
2806
|
+
}
|
|
2807
|
+
catch (err) {
|
|
2808
|
+
this.error.emit({
|
|
2809
|
+
messageKey: this.dataDescription ? `${this.NAME}.dataCopyFailure` : `${this.NAME}.copyFailure`,
|
|
2810
|
+
translateParams: { data: this.dataDescription }
|
|
2811
|
+
});
|
|
2812
|
+
}
|
|
2813
|
+
});
|
|
2814
|
+
}
|
|
2815
|
+
getStringData() {
|
|
2816
|
+
return _.isString(this.data) ? this.data : JSON.stringify(this.data, null, '\t');
|
|
2817
|
+
}
|
|
2818
|
+
}
|
|
2819
|
+
CopyButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CopyButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2820
|
+
CopyButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: CopyButtonComponent, selector: "lx-copy-button", inputs: { data: "data", dataDescription: "dataDescription", btn: "btn" }, outputs: { success: "success", error: "error" }, ngImport: i0, template: "<button *ngIf=\"clipboardSupport\" (click)=\"copy()\" class=\"btn btn-{{ btn }} btnCopyJson\">\n <i class=\"far fa-copy\"></i>\n <span>\n {{ 'buttons.copy' | translate }}\n </span>\n</button>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i1$2.TranslatePipe, name: "translate" }] });
|
|
2821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CopyButtonComponent, decorators: [{
|
|
2822
|
+
type: Component,
|
|
2823
|
+
args: [{ selector: 'lx-copy-button', template: "<button *ngIf=\"clipboardSupport\" (click)=\"copy()\" class=\"btn btn-{{ btn }} btnCopyJson\">\n <i class=\"far fa-copy\"></i>\n <span>\n {{ 'buttons.copy' | translate }}\n </span>\n</button>\n" }]
|
|
2824
|
+
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
2825
|
+
type: Input
|
|
2826
|
+
}], dataDescription: [{
|
|
2827
|
+
type: Input
|
|
2828
|
+
}], btn: [{
|
|
2829
|
+
type: Input
|
|
2830
|
+
}], success: [{
|
|
2831
|
+
type: Output
|
|
2832
|
+
}], error: [{
|
|
2833
|
+
type: Output
|
|
2834
|
+
}] } });
|
|
2835
|
+
|
|
2780
2836
|
// Currency symbol map extracted from: http://symbologic.info/currency.htm
|
|
2781
2837
|
// Using custom symbology since Angular 2 currency pipe does not support all currency symbols:
|
|
2782
2838
|
// https://github.com/angular/angular/issues/6724
|
|
@@ -2899,6 +2955,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
2899
2955
|
type: Input
|
|
2900
2956
|
}], code$: [] } });
|
|
2901
2957
|
|
|
2958
|
+
class MarkInvalidDirective {
|
|
2959
|
+
constructor(element, renderer) {
|
|
2960
|
+
this.element = element;
|
|
2961
|
+
this.renderer = renderer;
|
|
2962
|
+
this.lxMarkInvalid = false;
|
|
2963
|
+
this.destroyed$ = new Subject();
|
|
2964
|
+
}
|
|
2965
|
+
ngOnInit() {
|
|
2966
|
+
this.lxMarkInvalid$.pipe(takeUntil(this.destroyed$)).subscribe((invalid) => {
|
|
2967
|
+
const border = invalid ? `1px solid ${getCssVariable('--lx-color-danger')}` : '';
|
|
2968
|
+
this.renderer.setStyle(this.element.nativeElement, 'border', border);
|
|
2969
|
+
});
|
|
2970
|
+
}
|
|
2971
|
+
ngOnDestroy() {
|
|
2972
|
+
this.destroyed$.next();
|
|
2973
|
+
}
|
|
2974
|
+
}
|
|
2975
|
+
MarkInvalidDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: MarkInvalidDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
2976
|
+
MarkInvalidDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: MarkInvalidDirective, selector: "[lxMarkInvalid]", inputs: { lxMarkInvalid: "lxMarkInvalid" }, ngImport: i0 });
|
|
2977
|
+
__decorate([
|
|
2978
|
+
Observe('lxMarkInvalid')
|
|
2979
|
+
], MarkInvalidDirective.prototype, "lxMarkInvalid$", void 0);
|
|
2980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: MarkInvalidDirective, decorators: [{
|
|
2981
|
+
type: Directive,
|
|
2982
|
+
args: [{
|
|
2983
|
+
selector: '[lxMarkInvalid]'
|
|
2984
|
+
}]
|
|
2985
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { lxMarkInvalid: [{
|
|
2986
|
+
type: Input
|
|
2987
|
+
}], lxMarkInvalid$: [] } });
|
|
2988
|
+
|
|
2902
2989
|
class CurrencyInputComponent {
|
|
2903
2990
|
constructor(changeDetector) {
|
|
2904
2991
|
this.changeDetector = changeDetector;
|
|
@@ -2908,6 +2995,7 @@ class CurrencyInputComponent {
|
|
|
2908
2995
|
this.mode = 'edit';
|
|
2909
2996
|
this.iconPosition = 'first';
|
|
2910
2997
|
this.format = '1.2-2';
|
|
2998
|
+
this.markInvalid = false;
|
|
2911
2999
|
this.onFocusLost = new EventEmitter();
|
|
2912
3000
|
this.onChange = new EventEmitter();
|
|
2913
3001
|
this.showCurrencyInput = false;
|
|
@@ -2984,13 +3072,13 @@ class CurrencyInputComponent {
|
|
|
2984
3072
|
}
|
|
2985
3073
|
}
|
|
2986
3074
|
CurrencyInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CurrencyInputComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2987
|
-
CurrencyInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: CurrencyInputComponent, selector: "lx-currency-input", inputs: { code: "code", decimalSeparator: "decimalSeparator", placeholder: "placeholder", data: "data", disabled: "disabled", mode: "mode", fieldDefinitionType: "fieldDefinitionType", iconPosition: "iconPosition", format: "format" }, outputs: { onFocusLost: "onFocusLost", onChange: "onChange" }, providers: [
|
|
3075
|
+
CurrencyInputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.1", type: CurrencyInputComponent, selector: "lx-currency-input", inputs: { code: "code", decimalSeparator: "decimalSeparator", placeholder: "placeholder", data: "data", disabled: "disabled", mode: "mode", fieldDefinitionType: "fieldDefinitionType", iconPosition: "iconPosition", format: "format", markInvalid: "markInvalid" }, outputs: { onFocusLost: "onFocusLost", onChange: "onChange" }, providers: [
|
|
2988
3076
|
{
|
|
2989
3077
|
provide: NG_VALUE_ACCESSOR,
|
|
2990
3078
|
useExisting: forwardRef(() => CurrencyInputComponent),
|
|
2991
3079
|
multi: true
|
|
2992
3080
|
}
|
|
2993
|
-
], viewQueries: [{ propertyName: "currencyInput", first: true, predicate: ["currencyInput"], descendants: true }], ngImport: i0, template: "<div *ngIf=\"mode === 'edit'\" class=\"container input-group\">\n <div *ngIf=\"iconPosition === 'first'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n <input\n [attr.disabled]=\"disabled ? true : null\"\n *ngIf=\"!showCurrencyInput\"\n type=\"text\"\n class=\"form-control currencyDisplayValue\"\n placeholder=\"{{ placeholder }}\"\n [value]=\"dataValue$ | async | number : format\"\n (focus)=\"focusCurrencyInput()\"\n />\n <input\n [attr.disabled]=\"disabled ? true : null\"\n [class.hideInput]=\"!showCurrencyInput\"\n type=\"text\"\n inputmode=\"numeric\"\n class=\"form-control currencyInput\"\n name=\"inputAmount\"\n #currencyInput\n placeholder=\"{{ placeholder }}\"\n [ngModel]=\"dataValue$ | async\"\n (blur)=\"onBlur()\"\n (ngModelChange)=\"valueChanged($event)\"\n />\n <div *ngIf=\"iconPosition === 'end'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n</div>\n<span *ngIf=\"mode === 'view'\" [class.placeholder]=\"(dataValue$ | async) === null && placeholder\">\n <!-- Not using Angular 2 currency pipe since a lot of currency symbols are missing: https://github.com/angular/angular/issues/6724 -->\n <lx-currency-symbol *ngIf=\"iconPosition === 'first'\" [code]=\"code\"></lx-currency-symbol>\n {{ (dataValue$ | async | number : format) || placeholder }}\n <lx-currency-symbol *ngIf=\"iconPosition === 'end'\" [code]=\"code\"></lx-currency-symbol>\n</span>\n", styles: [".container{width:100%!important;padding:0}.labelContainer{width:5%!important;min-width:40px}input{width:100%}.hideInput{display:none}.placeholder{color:#99a5bb}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: CurrencySymbolComponent, selector: "lx-currency-symbol", inputs: ["code"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i1.DecimalPipe, name: "number" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
3081
|
+
], viewQueries: [{ propertyName: "currencyInput", first: true, predicate: ["currencyInput"], descendants: true }], ngImport: i0, template: "<div *ngIf=\"mode === 'edit'\" class=\"container input-group\">\n <div *ngIf=\"iconPosition === 'first'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n <input\n [attr.disabled]=\"disabled ? true : null\"\n *ngIf=\"!showCurrencyInput\"\n type=\"text\"\n class=\"form-control currencyDisplayValue\"\n placeholder=\"{{ placeholder }}\"\n [lxMarkInvalid]=\"markInvalid\"\n [value]=\"dataValue$ | async | number : format\"\n (focus)=\"focusCurrencyInput()\"\n />\n <input\n autocomplete=\"off\"\n [attr.disabled]=\"disabled ? true : null\"\n [class.hideInput]=\"!showCurrencyInput\"\n type=\"text\"\n inputmode=\"numeric\"\n class=\"form-control currencyInput\"\n name=\"inputAmount\"\n #currencyInput\n placeholder=\"{{ placeholder }}\"\n [ngModel]=\"dataValue$ | async\"\n (blur)=\"onBlur()\"\n (ngModelChange)=\"valueChanged($event)\"\n />\n <div *ngIf=\"iconPosition === 'end'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n</div>\n<span *ngIf=\"mode === 'view'\" [class.placeholder]=\"(dataValue$ | async) === null && placeholder\">\n <!-- Not using Angular 2 currency pipe since a lot of currency symbols are missing: https://github.com/angular/angular/issues/6724 -->\n <lx-currency-symbol *ngIf=\"iconPosition === 'first'\" [code]=\"code\"></lx-currency-symbol>\n {{ (dataValue$ | async | number : format) || placeholder }}\n <lx-currency-symbol *ngIf=\"iconPosition === 'end'\" [code]=\"code\"></lx-currency-symbol>\n</span>\n", styles: [".container{width:100%!important;padding:0}.labelContainer{width:5%!important;min-width:40px}input{width:100%}.hideInput{display:none}.placeholder{color:#99a5bb}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: CurrencySymbolComponent, selector: "lx-currency-symbol", inputs: ["code"] }, { kind: "directive", type: MarkInvalidDirective, selector: "[lxMarkInvalid]", inputs: ["lxMarkInvalid"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i1.DecimalPipe, name: "number" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2994
3082
|
__decorate([
|
|
2995
3083
|
Observe('data')
|
|
2996
3084
|
], CurrencyInputComponent.prototype, "data$", void 0);
|
|
@@ -3002,7 +3090,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
3002
3090
|
useExisting: forwardRef(() => CurrencyInputComponent),
|
|
3003
3091
|
multi: true
|
|
3004
3092
|
}
|
|
3005
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"mode === 'edit'\" class=\"container input-group\">\n <div *ngIf=\"iconPosition === 'first'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n <input\n [attr.disabled]=\"disabled ? true : null\"\n *ngIf=\"!showCurrencyInput\"\n type=\"text\"\n class=\"form-control currencyDisplayValue\"\n placeholder=\"{{ placeholder }}\"\n [value]=\"dataValue$ | async | number : format\"\n (focus)=\"focusCurrencyInput()\"\n />\n <input\n [attr.disabled]=\"disabled ? true : null\"\n [class.hideInput]=\"!showCurrencyInput\"\n type=\"text\"\n inputmode=\"numeric\"\n class=\"form-control currencyInput\"\n name=\"inputAmount\"\n #currencyInput\n placeholder=\"{{ placeholder }}\"\n [ngModel]=\"dataValue$ | async\"\n (blur)=\"onBlur()\"\n (ngModelChange)=\"valueChanged($event)\"\n />\n <div *ngIf=\"iconPosition === 'end'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n</div>\n<span *ngIf=\"mode === 'view'\" [class.placeholder]=\"(dataValue$ | async) === null && placeholder\">\n <!-- Not using Angular 2 currency pipe since a lot of currency symbols are missing: https://github.com/angular/angular/issues/6724 -->\n <lx-currency-symbol *ngIf=\"iconPosition === 'first'\" [code]=\"code\"></lx-currency-symbol>\n {{ (dataValue$ | async | number : format) || placeholder }}\n <lx-currency-symbol *ngIf=\"iconPosition === 'end'\" [code]=\"code\"></lx-currency-symbol>\n</span>\n", styles: [".container{width:100%!important;padding:0}.labelContainer{width:5%!important;min-width:40px}input{width:100%}.hideInput{display:none}.placeholder{color:#99a5bb}\n"] }]
|
|
3093
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div *ngIf=\"mode === 'edit'\" class=\"container input-group\">\n <div *ngIf=\"iconPosition === 'first'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n <input\n [attr.disabled]=\"disabled ? true : null\"\n *ngIf=\"!showCurrencyInput\"\n type=\"text\"\n class=\"form-control currencyDisplayValue\"\n placeholder=\"{{ placeholder }}\"\n [lxMarkInvalid]=\"markInvalid\"\n [value]=\"dataValue$ | async | number : format\"\n (focus)=\"focusCurrencyInput()\"\n />\n <input\n autocomplete=\"off\"\n [attr.disabled]=\"disabled ? true : null\"\n [class.hideInput]=\"!showCurrencyInput\"\n type=\"text\"\n inputmode=\"numeric\"\n class=\"form-control currencyInput\"\n name=\"inputAmount\"\n #currencyInput\n placeholder=\"{{ placeholder }}\"\n [ngModel]=\"dataValue$ | async\"\n (blur)=\"onBlur()\"\n (ngModelChange)=\"valueChanged($event)\"\n />\n <div *ngIf=\"iconPosition === 'end'\" class=\"labelContainer input-group-addon\">\n <lx-currency-symbol [code]=\"code\"></lx-currency-symbol>\n </div>\n</div>\n<span *ngIf=\"mode === 'view'\" [class.placeholder]=\"(dataValue$ | async) === null && placeholder\">\n <!-- Not using Angular 2 currency pipe since a lot of currency symbols are missing: https://github.com/angular/angular/issues/6724 -->\n <lx-currency-symbol *ngIf=\"iconPosition === 'first'\" [code]=\"code\"></lx-currency-symbol>\n {{ (dataValue$ | async | number : format) || placeholder }}\n <lx-currency-symbol *ngIf=\"iconPosition === 'end'\" [code]=\"code\"></lx-currency-symbol>\n</span>\n", styles: [".container{width:100%!important;padding:0}.labelContainer{width:5%!important;min-width:40px}input{width:100%}.hideInput{display:none}.placeholder{color:#99a5bb}\n"] }]
|
|
3006
3094
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { code: [{
|
|
3007
3095
|
type: Input
|
|
3008
3096
|
}], decimalSeparator: [{
|
|
@@ -3021,6 +3109,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
3021
3109
|
type: Input
|
|
3022
3110
|
}], format: [{
|
|
3023
3111
|
type: Input
|
|
3112
|
+
}], markInvalid: [{
|
|
3113
|
+
type: Input
|
|
3024
3114
|
}], onFocusLost: [{
|
|
3025
3115
|
type: Output
|
|
3026
3116
|
}], onChange: [{
|
|
@@ -4063,37 +4153,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
4063
4153
|
args: ['inputWidth', { static: true }]
|
|
4064
4154
|
}] } });
|
|
4065
4155
|
|
|
4066
|
-
class MarkInvalidDirective {
|
|
4067
|
-
constructor(element, renderer) {
|
|
4068
|
-
this.element = element;
|
|
4069
|
-
this.renderer = renderer;
|
|
4070
|
-
this.lxMarkInvalid = false;
|
|
4071
|
-
this.destroyed$ = new Subject();
|
|
4072
|
-
}
|
|
4073
|
-
ngOnInit() {
|
|
4074
|
-
this.lxMarkInvalid$.pipe(takeUntil(this.destroyed$)).subscribe((invalid) => {
|
|
4075
|
-
const border = invalid ? `1px solid ${getCssVariable('--lx-color-danger')}` : '';
|
|
4076
|
-
this.renderer.setStyle(this.element.nativeElement, 'border', border);
|
|
4077
|
-
});
|
|
4078
|
-
}
|
|
4079
|
-
ngOnDestroy() {
|
|
4080
|
-
this.destroyed$.next();
|
|
4081
|
-
}
|
|
4082
|
-
}
|
|
4083
|
-
MarkInvalidDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: MarkInvalidDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Directive });
|
|
4084
|
-
MarkInvalidDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: MarkInvalidDirective, selector: "[lxMarkInvalid]", inputs: { lxMarkInvalid: "lxMarkInvalid" }, ngImport: i0 });
|
|
4085
|
-
__decorate([
|
|
4086
|
-
Observe('lxMarkInvalid')
|
|
4087
|
-
], MarkInvalidDirective.prototype, "lxMarkInvalid$", void 0);
|
|
4088
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: MarkInvalidDirective, decorators: [{
|
|
4089
|
-
type: Directive,
|
|
4090
|
-
args: [{
|
|
4091
|
-
selector: '[lxMarkInvalid]'
|
|
4092
|
-
}]
|
|
4093
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { lxMarkInvalid: [{
|
|
4094
|
-
type: Input
|
|
4095
|
-
}], lxMarkInvalid$: [] } });
|
|
4096
|
-
|
|
4097
4156
|
class MultiSelectComponent extends BaseSelectDirective {
|
|
4098
4157
|
constructor(cd) {
|
|
4099
4158
|
super();
|
|
@@ -5917,6 +5976,7 @@ LxFormsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version:
|
|
|
5917
5976
|
ExpandedDropdownComponent,
|
|
5918
5977
|
BasicDropdownItemComponent,
|
|
5919
5978
|
BreadcrumbComponent,
|
|
5979
|
+
CopyButtonComponent,
|
|
5920
5980
|
CurrencyInputComponent,
|
|
5921
5981
|
CurrencySymbolComponent,
|
|
5922
5982
|
DateInputComponent,
|
|
@@ -5962,6 +6022,7 @@ LxFormsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version:
|
|
|
5962
6022
|
ExpandedDropdownComponent,
|
|
5963
6023
|
BasicDropdownItemComponent,
|
|
5964
6024
|
BreadcrumbComponent,
|
|
6025
|
+
CopyButtonComponent,
|
|
5965
6026
|
CurrencyInputComponent,
|
|
5966
6027
|
CurrencySymbolComponent,
|
|
5967
6028
|
DateInputComponent,
|
|
@@ -6015,6 +6076,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6015
6076
|
ExpandedDropdownComponent,
|
|
6016
6077
|
BasicDropdownItemComponent,
|
|
6017
6078
|
BreadcrumbComponent,
|
|
6079
|
+
CopyButtonComponent,
|
|
6018
6080
|
CurrencyInputComponent,
|
|
6019
6081
|
CurrencySymbolComponent,
|
|
6020
6082
|
DateInputComponent,
|
|
@@ -6068,6 +6130,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6068
6130
|
ExpandedDropdownComponent,
|
|
6069
6131
|
BasicDropdownItemComponent,
|
|
6070
6132
|
BreadcrumbComponent,
|
|
6133
|
+
CopyButtonComponent,
|
|
6071
6134
|
CurrencyInputComponent,
|
|
6072
6135
|
CurrencySymbolComponent,
|
|
6073
6136
|
DateInputComponent,
|
|
@@ -6251,7 +6314,9 @@ class ModalComponent {
|
|
|
6251
6314
|
return this.explicitContent || this.implicitContent;
|
|
6252
6315
|
}
|
|
6253
6316
|
onEscape() {
|
|
6254
|
-
this.
|
|
6317
|
+
if (this.showCloseButton) {
|
|
6318
|
+
this.closeModal();
|
|
6319
|
+
}
|
|
6255
6320
|
}
|
|
6256
6321
|
ngOnInit() {
|
|
6257
6322
|
var _a;
|
|
@@ -6920,5 +6985,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6920
6985
|
* Generated bundle index. Do not edit.
|
|
6921
6986
|
*/
|
|
6922
6987
|
|
|
6923
|
-
export { ARROW_DOWN, ARROW_LEFT, ARROW_RIGHT, ARROW_UP, AfterViewInitDirective, AutocloseDirective, AutofocusDirective, BACKSPACE, BadgeComponent, BaseSelectDirective, BasicDropdownComponent, BasicDropdownItemComponent, BrPipe, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CURRENCY_SYMBOL_MAP, CardComponent, CdkOptionsDropdownComponent, CdkOptionsSubDropdownComponent, CollapsibleComponent, ColoredLabelComponent, ContrastColorPipe, CurrencyInputComponent, CurrencySymbolComponent, CustomDatePipe, DATE_FN_LOCALE, DATE_FORMATS, DateInputComponent, DragAndDropListComponent, DragAndDropListItemComponent, ENTER, ESCAPE, EllipsisComponent, ErrorMessageComponent, ExpandedDropdownComponent, FORM_CONTROL_ERROR_DISPLAY_STRATEGY, FORM_CONTROL_ERROR_NAMESPACE, FilterSelectionPipe, FilterTermPipe, FormErrorComponent, FormErrorDirective, FormSubmitDirective, FormatNumberPipe, GLOBAL_TRANSLATION_OPTIONS, HighlightRangePipe, HighlightTermPipe, HtmlDirective, IconComponent, IconScaleComponent, KeyboardActionSourceDirective, KeyboardSelectAction, KeyboardSelectDirective, LOCALE_FN, LX_ELLIPSIS_DEBOUNCE_ON_RESIZE, LxCoreUiModule, LxDragAndDropListModule, LxFormsModule, LxIsUuidPipe, LxLinkifyPipe, LxModalModule, LxPopoverUiModule, LxTabUiModule, LxTimeAgo, LxTooltipModule, LxTranslatePipe, LxUnlinkifyPipe, MODAL_CLOSE, MarkInvalidDirective, MarkdownPipe, ModalComponent, ModalContentDirective, ModalFooterComponent, ModalHeaderComponent, MultiSelectComponent, NbspPipe, OptionComponent, OptionGroupComponent, OptionGroupDropdownComponent, OptionsDropdownComponent, OptionsSubDropdownComponent, PickerComponent, PickerOptionComponent, PickerTriggerDirective, PillItemComponent, PillListComponent, PopoverClickDirective, PopoverComponent, PopoverContentDirective, PopoverHoverDirective, RELEVANCE_SORTING_KEY, Required, ResizeObserverService, ResponsiveInputComponent, SPACE, SelectDropdownDirective, SelectListComponent, SelectableItemDirective, SelectedOptionDirective, SingleSelectComponent, SliderToggleComponent, SortPipe, Sorting, SortingDropdownComponent, SortingDropdownTriggerComponent, SpinnerComponent, TAB, TabComponent, TabGroupComponent, TableComponent, TableHeaderComponent, TinySpinnerComponent, TooltipComponent, TooltipDirective, TranslationAfterPipe, TranslationBeforePipe, TranslationBetweenPipe, UnescapeCurlyBracesPipe, ValidateDateInForeseeableFuture, ValidateStringNotInArray, ValidateStringNotInArrayAsync, getContrastColor, getTranslationParts, isValidHexColor, isValidX, isValidY, provideFormControlErrorDisplayStrategy, provideFormControlErrorNamespace, shorthandHexHandle };
|
|
6988
|
+
export { ARROW_DOWN, ARROW_LEFT, ARROW_RIGHT, ARROW_UP, AfterViewInitDirective, AutocloseDirective, AutofocusDirective, BACKSPACE, BadgeComponent, BaseSelectDirective, BasicDropdownComponent, BasicDropdownItemComponent, BrPipe, BreadcrumbComponent, ButtonComponent, ButtonGroupComponent, CURRENCY_SYMBOL_MAP, CardComponent, CdkOptionsDropdownComponent, CdkOptionsSubDropdownComponent, CollapsibleComponent, ColoredLabelComponent, ContrastColorPipe, CopyButtonComponent, CurrencyInputComponent, CurrencySymbolComponent, CustomDatePipe, DATE_FN_LOCALE, DATE_FORMATS, DateInputComponent, DragAndDropListComponent, DragAndDropListItemComponent, ENTER, ESCAPE, EllipsisComponent, ErrorMessageComponent, ExpandedDropdownComponent, FORM_CONTROL_ERROR_DISPLAY_STRATEGY, FORM_CONTROL_ERROR_NAMESPACE, FilterSelectionPipe, FilterTermPipe, FormErrorComponent, FormErrorDirective, FormSubmitDirective, FormatNumberPipe, GLOBAL_TRANSLATION_OPTIONS, HighlightRangePipe, HighlightTermPipe, HtmlDirective, IconComponent, IconScaleComponent, KeyboardActionSourceDirective, KeyboardSelectAction, KeyboardSelectDirective, LOCALE_FN, LX_ELLIPSIS_DEBOUNCE_ON_RESIZE, LxCoreUiModule, LxDragAndDropListModule, LxFormsModule, LxIsUuidPipe, LxLinkifyPipe, LxModalModule, LxPopoverUiModule, LxTabUiModule, LxTimeAgo, LxTooltipModule, LxTranslatePipe, LxUnlinkifyPipe, MODAL_CLOSE, MarkInvalidDirective, MarkdownPipe, ModalComponent, ModalContentDirective, ModalFooterComponent, ModalHeaderComponent, MultiSelectComponent, NbspPipe, OptionComponent, OptionGroupComponent, OptionGroupDropdownComponent, OptionsDropdownComponent, OptionsSubDropdownComponent, PickerComponent, PickerOptionComponent, PickerTriggerDirective, PillItemComponent, PillListComponent, PopoverClickDirective, PopoverComponent, PopoverContentDirective, PopoverHoverDirective, RELEVANCE_SORTING_KEY, Required, ResizeObserverService, ResponsiveInputComponent, SPACE, SelectDropdownDirective, SelectListComponent, SelectableItemDirective, SelectedOptionDirective, SingleSelectComponent, SliderToggleComponent, SortPipe, Sorting, SortingDropdownComponent, SortingDropdownTriggerComponent, SpinnerComponent, TAB, TabComponent, TabGroupComponent, TableComponent, TableHeaderComponent, TinySpinnerComponent, TooltipComponent, TooltipDirective, TranslationAfterPipe, TranslationBeforePipe, TranslationBetweenPipe, UnescapeCurlyBracesPipe, ValidateDateInForeseeableFuture, ValidateStringNotInArray, ValidateStringNotInArrayAsync, getContrastColor, getTranslationParts, isValidHexColor, isValidX, isValidY, provideFormControlErrorDisplayStrategy, provideFormControlErrorNamespace, shorthandHexHandle };
|
|
6924
6989
|
//# sourceMappingURL=leanix-components.mjs.map
|