@leanix/components 0.4.710 → 0.4.711
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.
|
@@ -1140,7 +1140,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
1140
1140
|
*
|
|
1141
1141
|
* @Component({
|
|
1142
1142
|
* selector: 'lx-my-component',
|
|
1143
|
-
* standalone: true,
|
|
1144
1143
|
* imports: [CdkStepperModule, StepperComponent],
|
|
1145
1144
|
* templateUrl: './my-component.component.html'
|
|
1146
1145
|
* })
|
|
@@ -3034,7 +3033,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
3034
3033
|
*
|
|
3035
3034
|
* @Component({
|
|
3036
3035
|
* selector: 'lx-my-component',
|
|
3037
|
-
* standalone: true,
|
|
3038
3036
|
* imports: [TokenizerComponent, TokenComponent],
|
|
3039
3037
|
* template: `
|
|
3040
3038
|
* <lx-tokenizer>
|
|
@@ -10458,7 +10456,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
10458
10456
|
ErrorMessageComponent,
|
|
10459
10457
|
MarkInvalidDirective,
|
|
10460
10458
|
AutofocusDirective
|
|
10461
|
-
], changeDetection: ChangeDetectionStrategy.OnPush,
|
|
10459
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<lx-modal size=\"dialog\" [open]=\"true\" (close)=\"closeModal()\">\n <lx-modal-header [title]=\"NAME + '.link' | translate\" />\n\n <form #form=\"ngForm\" (submit)=\"saveLink()\">\n <div class=\"link-modal-body\">\n <div class=\"form-group required\">\n <label for=\"text\">{{ NAME + '.linkText' | translate }}</label>\n <input\n #titleInput=\"ngModel\"\n class=\"form-control\"\n name=\"text\"\n type=\"text\"\n [ngModel]=\"text\"\n [lxAutofocus]=\"true\"\n [lxAutofocusTimeout]=\"10\"\n [lxMarkInvalid]=\"form.submitted && titleInput.control.touched && titleInput.hasError('required')\"\n required\n />\n </div>\n\n <div class=\"form-group required\">\n <label for=\"url\">{{ NAME + '.url' | translate }}</label>\n <input\n #urlInput=\"ngModel\"\n class=\"form-control\"\n name=\"url\"\n type=\"text\"\n [ngModel]=\"url\"\n [lxMarkInvalid]=\"form.submitted && urlInput.control.touched && urlInput.hasError('invalidUrl')\"\n lxUrl\n />\n @if (form.submitted && urlInput.control.touched && urlInput.hasError('invalidUrl')) {\n <lx-error-message>\n {{ NAME + '.invalidUrl' | translate }}\n </lx-error-message>\n }\n </div>\n </div>\n\n <lx-modal-footer>\n <div class=\"link-modal-actions\">\n <div class=\"link-modal-left-buttons\">\n @if (url) {\n <button lx-button type=\"button\" size=\"large\" color=\"danger\" (click)=\"removeLink()\">\n {{ NAME + '.removeLink' | translate }}\n </button>\n }\n </div>\n\n <div class=\"link-modal-right-buttons\">\n <button lx-button type=\"button\" size=\"large\" (click)=\"closeModal()\">\n {{ NAME + '.cancel' | translate }}\n </button>\n <button lx-button type=\"submit\" [disabled]=\"!titleInput.control.value || !urlInput.control.value\" color=\"primary\" size=\"large\">\n {{ NAME + '.ok' | translate }}\n </button>\n </div>\n </div>\n </lx-modal-footer>\n </form>\n</lx-modal>\n", styles: [".link-modal-body{display:flex;flex-direction:column;padding:20px 64px}.link-modal-actions{display:flex;justify-content:space-between}.link-modal-right-buttons{display:flex;gap:10px}\n"] }]
|
|
10462
10460
|
}], propDecorators: { editor: [{
|
|
10463
10461
|
type: Input,
|
|
10464
10462
|
args: [{ required: true }]
|