@open-rlb/ng-app 3.1.34 → 3.1.35
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.
|
@@ -2456,7 +2456,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
2456
2456
|
|
|
2457
2457
|
class ErrorModalComponent {
|
|
2458
2458
|
constructor() {
|
|
2459
|
-
this.data = input(
|
|
2459
|
+
this.data = input.required(...(ngDevMode ? [{ debugName: "data" }] : []));
|
|
2460
2460
|
this.valid = model(true, ...(ngDevMode ? [{ debugName: "valid" }] : []));
|
|
2461
2461
|
}
|
|
2462
2462
|
onEnter() { }
|
|
@@ -2464,7 +2464,7 @@ class ErrorModalComponent {
|
|
|
2464
2464
|
console.log(this.data());
|
|
2465
2465
|
}
|
|
2466
2466
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ErrorModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2467
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.5", type: ErrorModalComponent, isStandalone: true, selector: "ng-component", inputs: { data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired:
|
|
2467
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "21.1.5", type: ErrorModalComponent, isStandalone: true, selector: "ng-component", inputs: { data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null }, valid: { classPropertyName: "valid", publicName: "valid", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { valid: "validChange" }, hostDirectives: [{ directive: i2$1.ModalDirective, inputs: ["id", "id", "data-instance", "data-instance", "data-options", "data-options"] }], ngImport: i0, template: `
|
|
2468
2468
|
<div class="modal-header">
|
|
2469
2469
|
<h5 class="modal-title">{{ data().title }}</h5>
|
|
2470
2470
|
<button
|
|
@@ -2522,11 +2522,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
2522
2522
|
},
|
|
2523
2523
|
],
|
|
2524
2524
|
}]
|
|
2525
|
-
}], propDecorators: { data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required:
|
|
2525
|
+
}], propDecorators: { data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required: true }] }], valid: [{ type: i0.Input, args: [{ isSignal: true, alias: "valid", required: false }] }, { type: i0.Output, args: ["validChange"] }] } });
|
|
2526
2526
|
|
|
2527
2527
|
class ModalAppsComponent {
|
|
2528
2528
|
constructor() {
|
|
2529
|
-
this.data = input(
|
|
2529
|
+
this.data = input.required(...(ngDevMode ? [{ debugName: "data" }] : []));
|
|
2530
2530
|
this.valid = model(true, ...(ngDevMode ? [{ debugName: "valid" }] : []));
|
|
2531
2531
|
this.apps = [];
|
|
2532
2532
|
}
|
|
@@ -2534,7 +2534,7 @@ class ModalAppsComponent {
|
|
|
2534
2534
|
this.result = app;
|
|
2535
2535
|
}
|
|
2536
2536
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: ModalAppsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2537
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.1.5", type: ModalAppsComponent, isStandalone: true, selector: "ng-component", inputs: { data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired:
|
|
2537
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "21.1.5", type: ModalAppsComponent, isStandalone: true, selector: "ng-component", inputs: { data: { classPropertyName: "data", publicName: "data", isSignal: true, isRequired: true, transformFunction: null }, valid: { classPropertyName: "valid", publicName: "valid", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { valid: "validChange" }, hostDirectives: [{ directive: i2$1.ModalDirective, inputs: ["id", "id", "data-instance", "data-instance", "data-options", "data-options"] }], ngImport: i0, template: `
|
|
2538
2538
|
<div class="modal-header">
|
|
2539
2539
|
<h5 class="modal-title">{{ data().title }}</h5>
|
|
2540
2540
|
<button
|
|
@@ -2611,7 +2611,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImpor
|
|
|
2611
2611
|
`,
|
|
2612
2612
|
hostDirectives: [{ directive: ModalDirective, inputs: ['id', 'data-instance', 'data-options'] }],
|
|
2613
2613
|
}]
|
|
2614
|
-
}], propDecorators: { data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required:
|
|
2614
|
+
}], propDecorators: { data: [{ type: i0.Input, args: [{ isSignal: true, alias: "data", required: true }] }], valid: [{ type: i0.Input, args: [{ isSignal: true, alias: "valid", required: false }] }, { type: i0.Output, args: ["validChange"] }] } });
|
|
2615
2615
|
|
|
2616
2616
|
class AppSelectorComponent {
|
|
2617
2617
|
constructor(_location, appsService, authService) {
|