intelica-library-components 1.1.152 → 1.1.153
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/index.d.ts
CHANGED
|
@@ -1825,17 +1825,21 @@ declare class DashboardQsComponent {
|
|
|
1825
1825
|
private readonly sharedService;
|
|
1826
1826
|
private readonly route;
|
|
1827
1827
|
containers: QueryList<ElementRef>;
|
|
1828
|
+
protected readonly dashboardIdInput: i0.InputSignal<string | undefined>;
|
|
1829
|
+
protected readonly parametersInput: i0.InputSignal<Record<string, string[]> | undefined>;
|
|
1830
|
+
protected readonly heightInput: i0.InputSignal<string | undefined>;
|
|
1828
1831
|
private readonly routeData;
|
|
1829
1832
|
readonly dashboardId: i0.Signal<string | undefined>;
|
|
1830
1833
|
readonly parameters: i0.Signal<Record<string, string[]> | undefined>;
|
|
1831
1834
|
readonly height: i0.Signal<string>;
|
|
1832
1835
|
readonly isLoading: i0.WritableSignal<boolean>;
|
|
1836
|
+
readonly isLoadingChange: i0.OutputEmitterRef<boolean>;
|
|
1833
1837
|
private readonly viewReady;
|
|
1834
1838
|
constructor();
|
|
1835
1839
|
ngAfterViewInit(): void;
|
|
1836
1840
|
EmbedDashboard(dashboardId: string): Promise<void>;
|
|
1837
1841
|
static ɵfac: i0.ɵɵFactoryDeclaration<DashboardQsComponent, never>;
|
|
1838
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardQsComponent, "intelica-dashboard-qs", never, {}, {}, never, never, true, never>;
|
|
1842
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DashboardQsComponent, "intelica-dashboard-qs", never, { "dashboardIdInput": { "alias": "dashboardId"; "required": false; "isSignal": true; }; "parametersInput": { "alias": "parameters"; "required": false; "isSignal": true; }; "heightInput": { "alias": "height"; "required": false; "isSignal": true; }; }, { "isLoadingChange": "isLoadingChange"; }, never, never, true, never>;
|
|
1839
1843
|
}
|
|
1840
1844
|
|
|
1841
1845
|
declare class CheckboxFilterDirective extends FilterDirective implements OnChanges, ControlValueAccessor {
|