barsa-develop-components 1.0.367 → 1.0.368
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/lib/column-form-viewer/column-form-viewer.component.mjs +1 -1
- package/esm2020/lib/form-report-view/form-report-view.component.mjs +11 -5
- package/esm2020/lib/form-report-view-item/form-report-view-item.component.mjs +17 -8
- package/esm2020/lib/geographic-location/geographic-location.component.mjs +1 -1
- package/esm2020/lib/subform-in-row-report/subform-in-row-report.component.mjs +10 -5
- package/fesm2015/barsa-develop-components.mjs +34 -21
- package/fesm2015/barsa-develop-components.mjs.map +1 -1
- package/fesm2020/barsa-develop-components.mjs +36 -16
- package/fesm2020/barsa-develop-components.mjs.map +1 -1
- package/lib/form-report-view/form-report-view.component.d.ts +4 -2
- package/lib/form-report-view-item/form-report-view-item.component.d.ts +7 -10
- package/lib/subform-in-row-report/subform-in-row-report.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,10 +1,12 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { ReportViewBaseComponent, FormSetting } from 'barsa-novin-ray-core';
|
|
1
|
+
import { OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ReportViewBaseComponent, FormSetting, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
3
|
import { FormReportViewSetting } from '../models';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class FormReportViewComponent extends ReportViewBaseComponent<FormReportViewSetting> implements OnInit {
|
|
6
|
+
containerRef: ViewContainerRef;
|
|
6
7
|
formSettingItem: FormSetting;
|
|
7
8
|
ngOnInit(): void;
|
|
9
|
+
_trackByRow(index: number, row: MetaobjectDataModel): string;
|
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormReportViewComponent, never>;
|
|
9
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormReportViewComponent, "bdc-form-report-view", never, {}, {}, never, never, false>;
|
|
10
12
|
}
|
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { BaseViewItemPropsComponent, FormSetting, MetaobjectDataModel, TypeUlvMainCtrlr, FormComponentParams } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormReportViewItemComponent extends
|
|
4
|
+
export declare class FormReportViewItemComponent extends BaseViewItemPropsComponent implements OnInit {
|
|
5
5
|
mo: MetaobjectDataModel;
|
|
6
|
+
UlvMainCtrlr: TypeUlvMainCtrlr;
|
|
6
7
|
fieldDict: Record<string, string>;
|
|
7
|
-
formParams:
|
|
8
|
-
formSetting: FormSetting | null;
|
|
9
|
-
moId: string;
|
|
10
|
-
typeDefId: string | undefined;
|
|
11
|
-
viewId: any;
|
|
12
|
-
isSimple: boolean;
|
|
13
|
-
};
|
|
8
|
+
formParams: FormComponentParams;
|
|
14
9
|
toolbarItems: any[];
|
|
10
|
+
OwnformSetting: FormSetting;
|
|
15
11
|
ngOnInit(): void;
|
|
12
|
+
onMoChanged(mo: MetaobjectDataModel): void;
|
|
16
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormReportViewItemComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormReportViewItemComponent, "bdc-form-report-view-item", never, { "mo": "mo"; "fieldDict": "fieldDict"; }, {}, never, never, false>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormReportViewItemComponent, "bdc-form-report-view-item", never, { "mo": "mo"; "UlvMainCtrlr": "UlvMainCtrlr"; "fieldDict": "fieldDict"; }, {}, never, never, false>;
|
|
18
15
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BaseItemContentPropsComponent, UiReportViewBaseSetting } from 'barsa-novin-ray-core';
|
|
2
|
+
import { BaseItemContentPropsComponent, UiReportViewBaseSetting, FormComponentParams } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SubformInRowReportComponent extends BaseItemContentPropsComponent<UiReportViewBaseSetting> implements OnInit {
|
|
5
5
|
formPanelCtrl: any;
|
|
6
6
|
loaded: boolean;
|
|
7
|
+
params: FormComponentParams;
|
|
7
8
|
ngOnInit(): void;
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubformInRowReportComponent, never>;
|
|
9
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<SubformInRowReportComponent, "bdc-subform-in-row-report", never, {}, {}, never, never, false>;
|