@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
|
@@ -2758,6 +2758,60 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
2758
2758
|
args: ['dropdown']
|
|
2759
2759
|
}] } });
|
|
2760
2760
|
|
|
2761
|
+
// todo: replace with Angular CDK clipboard
|
|
2762
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
2763
|
+
const copy = require('clipboard-copy');
|
|
2764
|
+
class CopyButtonComponent {
|
|
2765
|
+
constructor() {
|
|
2766
|
+
/** JSON string or object to be saved/copied as JSON */
|
|
2767
|
+
this.data = '';
|
|
2768
|
+
/** Determine copy button Bootstrap class & color or hide it altogether */
|
|
2769
|
+
this.btn = 'default';
|
|
2770
|
+
this.success = new EventEmitter();
|
|
2771
|
+
this.error = new EventEmitter();
|
|
2772
|
+
this.NAME = 'CopyButtonComponent';
|
|
2773
|
+
// clipboard-copy uses document.execCommand to copy to clipboard. All our _whitelisted_ browsers support it.
|
|
2774
|
+
// The copy still fails on very rare occasions for unknown reasons. In those cases it's good for the user
|
|
2775
|
+
// to be able to try again. So clipboardSupport is not set to false in the catch below any more.
|
|
2776
|
+
this.clipboardSupport = typeof document.execCommand === 'function';
|
|
2777
|
+
}
|
|
2778
|
+
async copy() {
|
|
2779
|
+
try {
|
|
2780
|
+
const json = this.getStringData();
|
|
2781
|
+
await copy(json);
|
|
2782
|
+
this.success.emit({
|
|
2783
|
+
messageKey: this.dataDescription ? `${this.NAME}.dataCopySuccess` : `${this.NAME}.copySuccess`,
|
|
2784
|
+
translateParams: { data: this.dataDescription }
|
|
2785
|
+
});
|
|
2786
|
+
}
|
|
2787
|
+
catch (err) {
|
|
2788
|
+
this.error.emit({
|
|
2789
|
+
messageKey: this.dataDescription ? `${this.NAME}.dataCopyFailure` : `${this.NAME}.copyFailure`,
|
|
2790
|
+
translateParams: { data: this.dataDescription }
|
|
2791
|
+
});
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
getStringData() {
|
|
2795
|
+
return _.isString(this.data) ? this.data : JSON.stringify(this.data, null, '\t');
|
|
2796
|
+
}
|
|
2797
|
+
}
|
|
2798
|
+
CopyButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CopyButtonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
2799
|
+
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" }] });
|
|
2800
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CopyButtonComponent, decorators: [{
|
|
2801
|
+
type: Component,
|
|
2802
|
+
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" }]
|
|
2803
|
+
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
2804
|
+
type: Input
|
|
2805
|
+
}], dataDescription: [{
|
|
2806
|
+
type: Input
|
|
2807
|
+
}], btn: [{
|
|
2808
|
+
type: Input
|
|
2809
|
+
}], success: [{
|
|
2810
|
+
type: Output
|
|
2811
|
+
}], error: [{
|
|
2812
|
+
type: Output
|
|
2813
|
+
}] } });
|
|
2814
|
+
|
|
2761
2815
|
// Currency symbol map extracted from: http://symbologic.info/currency.htm
|
|
2762
2816
|
// Using custom symbology since Angular 2 currency pipe does not support all currency symbols:
|
|
2763
2817
|
// https://github.com/angular/angular/issues/6724
|
|
@@ -2880,6 +2934,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
2880
2934
|
type: Input
|
|
2881
2935
|
}], code$: [] } });
|
|
2882
2936
|
|
|
2937
|
+
class MarkInvalidDirective {
|
|
2938
|
+
constructor(element, renderer) {
|
|
2939
|
+
this.element = element;
|
|
2940
|
+
this.renderer = renderer;
|
|
2941
|
+
this.lxMarkInvalid = false;
|
|
2942
|
+
this.destroyed$ = new Subject();
|
|
2943
|
+
}
|
|
2944
|
+
ngOnInit() {
|
|
2945
|
+
this.lxMarkInvalid$.pipe(takeUntil(this.destroyed$)).subscribe((invalid) => {
|
|
2946
|
+
const border = invalid ? `1px solid ${getCssVariable('--lx-color-danger')}` : '';
|
|
2947
|
+
this.renderer.setStyle(this.element.nativeElement, 'border', border);
|
|
2948
|
+
});
|
|
2949
|
+
}
|
|
2950
|
+
ngOnDestroy() {
|
|
2951
|
+
this.destroyed$.next();
|
|
2952
|
+
}
|
|
2953
|
+
}
|
|
2954
|
+
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 });
|
|
2955
|
+
MarkInvalidDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: MarkInvalidDirective, selector: "[lxMarkInvalid]", inputs: { lxMarkInvalid: "lxMarkInvalid" }, ngImport: i0 });
|
|
2956
|
+
__decorate([
|
|
2957
|
+
Observe('lxMarkInvalid')
|
|
2958
|
+
], MarkInvalidDirective.prototype, "lxMarkInvalid$", void 0);
|
|
2959
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: MarkInvalidDirective, decorators: [{
|
|
2960
|
+
type: Directive,
|
|
2961
|
+
args: [{
|
|
2962
|
+
selector: '[lxMarkInvalid]'
|
|
2963
|
+
}]
|
|
2964
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { lxMarkInvalid: [{
|
|
2965
|
+
type: Input
|
|
2966
|
+
}], lxMarkInvalid$: [] } });
|
|
2967
|
+
|
|
2883
2968
|
class CurrencyInputComponent {
|
|
2884
2969
|
constructor(changeDetector) {
|
|
2885
2970
|
this.changeDetector = changeDetector;
|
|
@@ -2889,6 +2974,7 @@ class CurrencyInputComponent {
|
|
|
2889
2974
|
this.mode = 'edit';
|
|
2890
2975
|
this.iconPosition = 'first';
|
|
2891
2976
|
this.format = '1.2-2';
|
|
2977
|
+
this.markInvalid = false;
|
|
2892
2978
|
this.onFocusLost = new EventEmitter();
|
|
2893
2979
|
this.onChange = new EventEmitter();
|
|
2894
2980
|
this.showCurrencyInput = false;
|
|
@@ -2965,13 +3051,13 @@ class CurrencyInputComponent {
|
|
|
2965
3051
|
}
|
|
2966
3052
|
}
|
|
2967
3053
|
CurrencyInputComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: CurrencyInputComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
2968
|
-
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: [
|
|
3054
|
+
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: [
|
|
2969
3055
|
{
|
|
2970
3056
|
provide: NG_VALUE_ACCESSOR,
|
|
2971
3057
|
useExisting: forwardRef(() => CurrencyInputComponent),
|
|
2972
3058
|
multi: true
|
|
2973
3059
|
}
|
|
2974
|
-
], 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 });
|
|
3060
|
+
], 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 });
|
|
2975
3061
|
__decorate([
|
|
2976
3062
|
Observe('data')
|
|
2977
3063
|
], CurrencyInputComponent.prototype, "data$", void 0);
|
|
@@ -2983,7 +3069,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
2983
3069
|
useExisting: forwardRef(() => CurrencyInputComponent),
|
|
2984
3070
|
multi: true
|
|
2985
3071
|
}
|
|
2986
|
-
], 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"] }]
|
|
3072
|
+
], 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"] }]
|
|
2987
3073
|
}], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { code: [{
|
|
2988
3074
|
type: Input
|
|
2989
3075
|
}], decimalSeparator: [{
|
|
@@ -3002,6 +3088,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
3002
3088
|
type: Input
|
|
3003
3089
|
}], format: [{
|
|
3004
3090
|
type: Input
|
|
3091
|
+
}], markInvalid: [{
|
|
3092
|
+
type: Input
|
|
3005
3093
|
}], onFocusLost: [{
|
|
3006
3094
|
type: Output
|
|
3007
3095
|
}], onChange: [{
|
|
@@ -4034,37 +4122,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
4034
4122
|
args: ['inputWidth', { static: true }]
|
|
4035
4123
|
}] } });
|
|
4036
4124
|
|
|
4037
|
-
class MarkInvalidDirective {
|
|
4038
|
-
constructor(element, renderer) {
|
|
4039
|
-
this.element = element;
|
|
4040
|
-
this.renderer = renderer;
|
|
4041
|
-
this.lxMarkInvalid = false;
|
|
4042
|
-
this.destroyed$ = new Subject();
|
|
4043
|
-
}
|
|
4044
|
-
ngOnInit() {
|
|
4045
|
-
this.lxMarkInvalid$.pipe(takeUntil(this.destroyed$)).subscribe((invalid) => {
|
|
4046
|
-
const border = invalid ? `1px solid ${getCssVariable('--lx-color-danger')}` : '';
|
|
4047
|
-
this.renderer.setStyle(this.element.nativeElement, 'border', border);
|
|
4048
|
-
});
|
|
4049
|
-
}
|
|
4050
|
-
ngOnDestroy() {
|
|
4051
|
-
this.destroyed$.next();
|
|
4052
|
-
}
|
|
4053
|
-
}
|
|
4054
|
-
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 });
|
|
4055
|
-
MarkInvalidDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.1.1", type: MarkInvalidDirective, selector: "[lxMarkInvalid]", inputs: { lxMarkInvalid: "lxMarkInvalid" }, ngImport: i0 });
|
|
4056
|
-
__decorate([
|
|
4057
|
-
Observe('lxMarkInvalid')
|
|
4058
|
-
], MarkInvalidDirective.prototype, "lxMarkInvalid$", void 0);
|
|
4059
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImport: i0, type: MarkInvalidDirective, decorators: [{
|
|
4060
|
-
type: Directive,
|
|
4061
|
-
args: [{
|
|
4062
|
-
selector: '[lxMarkInvalid]'
|
|
4063
|
-
}]
|
|
4064
|
-
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }]; }, propDecorators: { lxMarkInvalid: [{
|
|
4065
|
-
type: Input
|
|
4066
|
-
}], lxMarkInvalid$: [] } });
|
|
4067
|
-
|
|
4068
4125
|
class MultiSelectComponent extends BaseSelectDirective {
|
|
4069
4126
|
constructor(cd) {
|
|
4070
4127
|
super();
|
|
@@ -5876,6 +5933,7 @@ LxFormsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version:
|
|
|
5876
5933
|
ExpandedDropdownComponent,
|
|
5877
5934
|
BasicDropdownItemComponent,
|
|
5878
5935
|
BreadcrumbComponent,
|
|
5936
|
+
CopyButtonComponent,
|
|
5879
5937
|
CurrencyInputComponent,
|
|
5880
5938
|
CurrencySymbolComponent,
|
|
5881
5939
|
DateInputComponent,
|
|
@@ -5921,6 +5979,7 @@ LxFormsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version:
|
|
|
5921
5979
|
ExpandedDropdownComponent,
|
|
5922
5980
|
BasicDropdownItemComponent,
|
|
5923
5981
|
BreadcrumbComponent,
|
|
5982
|
+
CopyButtonComponent,
|
|
5924
5983
|
CurrencyInputComponent,
|
|
5925
5984
|
CurrencySymbolComponent,
|
|
5926
5985
|
DateInputComponent,
|
|
@@ -5974,6 +6033,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
5974
6033
|
ExpandedDropdownComponent,
|
|
5975
6034
|
BasicDropdownItemComponent,
|
|
5976
6035
|
BreadcrumbComponent,
|
|
6036
|
+
CopyButtonComponent,
|
|
5977
6037
|
CurrencyInputComponent,
|
|
5978
6038
|
CurrencySymbolComponent,
|
|
5979
6039
|
DateInputComponent,
|
|
@@ -6027,6 +6087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6027
6087
|
ExpandedDropdownComponent,
|
|
6028
6088
|
BasicDropdownItemComponent,
|
|
6029
6089
|
BreadcrumbComponent,
|
|
6090
|
+
CopyButtonComponent,
|
|
6030
6091
|
CurrencyInputComponent,
|
|
6031
6092
|
CurrencySymbolComponent,
|
|
6032
6093
|
DateInputComponent,
|
|
@@ -6210,7 +6271,9 @@ class ModalComponent {
|
|
|
6210
6271
|
return this.explicitContent || this.implicitContent;
|
|
6211
6272
|
}
|
|
6212
6273
|
onEscape() {
|
|
6213
|
-
this.
|
|
6274
|
+
if (this.showCloseButton) {
|
|
6275
|
+
this.closeModal();
|
|
6276
|
+
}
|
|
6214
6277
|
}
|
|
6215
6278
|
ngOnInit() {
|
|
6216
6279
|
this.closeModal$?.pipe(takeUntil(this.destroyed$)).subscribe(() => this.closeModal());
|
|
@@ -6872,5 +6935,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.1", ngImpor
|
|
|
6872
6935
|
* Generated bundle index. Do not edit.
|
|
6873
6936
|
*/
|
|
6874
6937
|
|
|
6875
|
-
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 };
|
|
6938
|
+
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 };
|
|
6876
6939
|
//# sourceMappingURL=leanix-components.mjs.map
|