barsa-sap-ui 1.0.274 → 1.0.277
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/apply-conditional-formmatings.directive.mjs +19 -14
- package/esm2020/lib/barsa-cartable-form/barsa-cartable-form.component.mjs +45 -0
- package/esm2020/lib/barsa-cartable-template/barsa-cartable-template.component.mjs +24 -0
- package/esm2020/lib/barsa-column-indicator/barsa-column-indicator.component.mjs +23 -0
- package/esm2020/lib/barsa-group-cartable/barsa-cartable-group.component.mjs +96 -0
- package/esm2020/lib/barsa-sap-ui.module.mjs +34 -29
- package/esm2020/lib/barsa-search-form/barsa-search-form.component.mjs +1 -1
- package/esm2020/lib/barsa-table-column/barsa-table-column.component.mjs +43 -0
- package/esm2020/lib/barsa-table-header/barsa-table-header.component.mjs +6 -3
- package/esm2020/lib/barsa-table-row/barsa-table-row.component.mjs +7 -6
- package/esm2020/lib/barsa-tree-item/barsa-tree-item.component.mjs +3 -3
- package/esm2020/lib/barsa-ulv-main/barsa-ulv-main.component.mjs +3 -3
- package/esm2020/lib/card-item/card-item.component.mjs +3 -3
- package/esm2020/lib/card-view-content/card-view-content.component.mjs +3 -3
- package/esm2020/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.mjs +5 -3
- package/esm2020/lib/index.mjs +21 -11
- package/esm2020/lib/layout-actions/layout-actions.component.mjs +3 -3
- package/esm2020/lib/list-item/list-item.component.mjs +3 -3
- package/esm2020/lib/models/grid-view.mjs +1 -1
- package/esm2020/lib/report-view-renderer.directive.mjs +16 -2
- package/esm2020/lib/rich-text-static/rich-text-static.component.mjs +37 -10
- package/esm2020/lib/sap-ui-report-base.component.mjs +9 -2
- package/esm2020/lib/ui-form-panel/ui-form-panel.component.mjs +4 -3
- package/esm2020/lib/ui-grid/ui-grid.component.mjs +3 -3
- package/esm2020/lib/ui-list-view/ui-list-view.component.mjs +19 -10
- package/esm2020/lib/ui-matrix-view/ui-matrix-view.component.mjs +3 -3
- package/esm2020/lib/ui-mo-info-ulv-combo/ui-mo-info-ulv-combo.component.mjs +5 -4
- package/esm2020/lib/ui-report-container/ui-report-container.component.mjs +3 -3
- package/esm2020/lib/ui-table-view/ui-table-view.component.mjs +9 -30
- package/esm2020/lib/ulv-context-menu/ulv-context-menu.component.mjs +5 -3
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/barsa-sap-ui.mjs +403 -148
- package/fesm2015/barsa-sap-ui.mjs.map +1 -1
- package/fesm2020/barsa-sap-ui.mjs +390 -133
- package/fesm2020/barsa-sap-ui.mjs.map +1 -1
- package/lib/apply-conditional-formmatings.directive.d.ts +7 -7
- package/lib/barsa-cartable-form/barsa-cartable-form.component.d.ts +15 -0
- package/lib/barsa-cartable-template/barsa-cartable-template.component.d.ts +14 -0
- package/lib/barsa-column-indicator/barsa-column-indicator.component.d.ts +11 -0
- package/lib/barsa-group-cartable/barsa-cartable-group.component.d.ts +30 -0
- package/lib/barsa-sap-ui.module.d.ts +44 -39
- package/lib/barsa-table-column/barsa-table-column.component.d.ts +16 -0
- package/lib/barsa-table-header/barsa-table-header.component.d.ts +3 -1
- package/lib/barsa-table-row/barsa-table-row.component.d.ts +3 -5
- package/lib/fundamental-dynamic-form/fundamental-dynamic-form.component.d.ts +2 -1
- package/lib/index.d.ts +4 -1
- package/lib/models/grid-view.d.ts +2 -7
- package/lib/report-view-renderer.directive.d.ts +4 -2
- package/lib/rich-text-static/rich-text-static.component.d.ts +5 -1
- package/lib/sap-ui-report-base.component.d.ts +3 -1
- package/lib/ui-form-panel/ui-form-panel.component.d.ts +1 -0
- package/lib/ui-list-view/ui-list-view.component.d.ts +9 -1
- package/lib/ui-table-view/ui-table-view.component.d.ts +1 -2
- package/lib/ulv-context-menu/ulv-context-menu.component.d.ts +2 -1
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
-
import { BaseDirective
|
|
1
|
+
import { ElementRef, OnChanges, OnInit, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { BaseDirective } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ApplyConditionalFormatsDirective extends BaseDirective implements OnInit {
|
|
4
|
+
export declare class ApplyConditionalFormatsDirective extends BaseDirective implements OnInit, OnChanges {
|
|
5
5
|
protected _el: ElementRef;
|
|
6
6
|
private renderer2;
|
|
7
|
-
private ulvMainService;
|
|
8
7
|
applyConditionalFormats: {
|
|
9
8
|
Cls: string;
|
|
10
9
|
Column?: string;
|
|
@@ -13,13 +12,14 @@ export declare class ApplyConditionalFormatsDirective extends BaseDirective impl
|
|
|
13
12
|
Alias: string;
|
|
14
13
|
CssClass: string;
|
|
15
14
|
}[];
|
|
16
|
-
|
|
15
|
+
styleIndex: number[];
|
|
17
16
|
hostEl: any;
|
|
18
17
|
dbName: string;
|
|
19
18
|
style: string;
|
|
20
|
-
constructor(_el: ElementRef, renderer2: Renderer2
|
|
19
|
+
constructor(_el: ElementRef, renderer2: Renderer2);
|
|
21
20
|
ngOnInit(): void;
|
|
21
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
22
22
|
private _apply;
|
|
23
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApplyConditionalFormatsDirective, never>;
|
|
24
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ApplyConditionalFormatsDirective, "[applyConditionalFormats]", never, { "applyConditionalFormats": "applyConditionalFormats"; "
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ApplyConditionalFormatsDirective, "[applyConditionalFormats]", never, { "applyConditionalFormats": "applyConditionalFormats"; "styleIndex": "styleIndex"; "hostEl": "hostEl"; "dbName": "dbName"; }, {}, never, never, false>;
|
|
25
25
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { FormBaseComponent, FormPanelService, PortalService, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BarsaCartableFormComponent extends FormBaseComponent implements OnInit {
|
|
5
|
+
protected _cdr: ChangeDetectorRef;
|
|
6
|
+
protected _portalService: PortalService;
|
|
7
|
+
protected _formPanelService: FormPanelService;
|
|
8
|
+
protected _el: ElementRef;
|
|
9
|
+
_isSmallDevice: boolean;
|
|
10
|
+
constructor(_cdr: ChangeDetectorRef, _portalService: PortalService, _formPanelService: FormPanelService, _el: ElementRef);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
protected _isSmalDeviceSize(deviceSize: AbbrevationDeviceSize): boolean;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaCartableFormComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaCartableFormComponent, "bsu-barsa-cartable-form", never, {}, {}, never, never, false>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import { RichTextStaticComponent } from '../rich-text-static/rich-text-static.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BarsaCartableTemplateComponent extends RichTextStaticComponent implements OnInit {
|
|
6
|
+
parameters: MetaobjectDataModel;
|
|
7
|
+
mo: MetaobjectDataModel;
|
|
8
|
+
text: string;
|
|
9
|
+
relatedMo: MetaobjectDataModel;
|
|
10
|
+
ngOnInit(): void;
|
|
11
|
+
protected get moContext(): MetaobjectDataModel;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaCartableTemplateComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaCartableTemplateComponent, "bsu-barsa-cartable-template", never, { "parameters": "parameters"; "mo": "mo"; }, {}, never, never, false>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { BaseComponent } from 'barsa-novin-ray-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BarsaColumnIndicatorComponent extends BaseComponent implements OnInit {
|
|
5
|
+
backColor: string;
|
|
6
|
+
hideBorderBottom: boolean;
|
|
7
|
+
ngOnInit(): void;
|
|
8
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaColumnIndicatorComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaColumnIndicatorComponent, "bsu-barsa-column-indicator", never, { "backColor": "backColor"; "hideBorderBottom": "hideBorderBottom"; }, {}, never, never, false>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { BaseViewItemPropsComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BarsaCartableGroupComponent extends BaseViewItemPropsComponent implements OnInit {
|
|
5
|
+
events: EventEmitter<{
|
|
6
|
+
title: string;
|
|
7
|
+
data: any;
|
|
8
|
+
}>;
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
allItem: {
|
|
13
|
+
unreadCount: number;
|
|
14
|
+
allCount: number;
|
|
15
|
+
};
|
|
16
|
+
allItemChecked: boolean;
|
|
17
|
+
builtinGroups: MetaobjectDataModel[];
|
|
18
|
+
isLastBuiltin: boolean;
|
|
19
|
+
isBuiltin: any;
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
22
|
+
detectChanges(): void;
|
|
23
|
+
_rowCheckAll(): void;
|
|
24
|
+
onClick(isAll: boolean): void;
|
|
25
|
+
_rowCheck(): void;
|
|
26
|
+
private _checkSystemi;
|
|
27
|
+
private _calcAll;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaCartableGroupComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaCartableGroupComponent, "bsu-barsa-cartable-group", never, {}, { "events": "events"; }, never, never, false>;
|
|
30
|
+
}
|
|
@@ -138,50 +138,55 @@ import * as i133 from "./list-item/list-item.component";
|
|
|
138
138
|
import * as i134 from "./htree-create-new/htree-create-new.component";
|
|
139
139
|
import * as i135 from "./barsa-table-header/barsa-table-header.component";
|
|
140
140
|
import * as i136 from "./barsa-table-row/barsa-table-row.component";
|
|
141
|
-
import * as i137 from "./
|
|
142
|
-
import * as i138 from "./
|
|
143
|
-
import * as i139 from "./
|
|
144
|
-
import * as i140 from "./
|
|
145
|
-
import * as i141 from "./
|
|
146
|
-
import * as i142 from "./
|
|
147
|
-
import * as i143 from "./
|
|
148
|
-
import * as i144 from "./file-viewer-
|
|
149
|
-
import * as i145 from "./file-viewer/file-viewer.component";
|
|
150
|
-
import * as i146 from "./
|
|
151
|
-
import * as i147 from "./
|
|
152
|
-
import * as i148 from "./notification-
|
|
153
|
-
import * as i149 from "./
|
|
154
|
-
import * as i150 from "./
|
|
155
|
-
import * as i151 from "./
|
|
156
|
-
import * as i152 from "./barsa-
|
|
157
|
-
import * as i153 from "./column-
|
|
158
|
-
import * as i154 from "./
|
|
159
|
-
import * as i155 from "./
|
|
160
|
-
import * as i156 from "./
|
|
161
|
-
import * as i157 from "./
|
|
162
|
-
import * as i158 from "./
|
|
163
|
-
import * as i159 from "./
|
|
164
|
-
import * as i160 from "./
|
|
165
|
-
import * as i161 from "./
|
|
166
|
-
import * as i162 from "
|
|
167
|
-
import * as i163 from "
|
|
168
|
-
import * as i164 from "
|
|
169
|
-
import * as i165 from "
|
|
170
|
-
import * as i166 from "
|
|
171
|
-
import * as i167 from "@
|
|
172
|
-
import * as i168 from "@
|
|
173
|
-
import * as i169 from "
|
|
174
|
-
import * as i170 from "
|
|
175
|
-
import * as i171 from "@angular/cdk/
|
|
176
|
-
import * as i172 from "
|
|
177
|
-
import * as i173 from "
|
|
141
|
+
import * as i137 from "./barsa-table-column/barsa-table-column.component";
|
|
142
|
+
import * as i138 from "./breadcrumb/breadcrumb.component";
|
|
143
|
+
import * as i139 from "./ui-label/ui-label.component";
|
|
144
|
+
import * as i140 from "./form-toolbar-button/form-toolbar-button.component";
|
|
145
|
+
import * as i141 from "./barsa-search-form/barsa-search-form.component";
|
|
146
|
+
import * as i142 from "./report-new-top-form/report-new-top-form.component";
|
|
147
|
+
import * as i143 from "./barsa-network-offline/barsa-network-offline.component";
|
|
148
|
+
import * as i144 from "./file-viewer-content/file-viewer-content.component";
|
|
149
|
+
import * as i145 from "./file-viewer-popover/file-viewer-popover.component";
|
|
150
|
+
import * as i146 from "./file-viewer/file-viewer.component";
|
|
151
|
+
import * as i147 from "./blob-viewer/blob-viewer.component";
|
|
152
|
+
import * as i148 from "./execute-push-notification-command/execute-push-notification-command.component";
|
|
153
|
+
import * as i149 from "./notification-item/notification-item.component";
|
|
154
|
+
import * as i150 from "./barsa-cartable-template/barsa-cartable-template.component";
|
|
155
|
+
import * as i151 from "./barsa-group-cartable/barsa-cartable-group.component";
|
|
156
|
+
import * as i152 from "./barsa-cartable-form/barsa-cartable-form.component";
|
|
157
|
+
import * as i153 from "./barsa-column-indicator/barsa-column-indicator.component";
|
|
158
|
+
import * as i154 from "./upload-file-status.pipe";
|
|
159
|
+
import * as i155 from "./sap-font.pipe";
|
|
160
|
+
import * as i156 from "./sap-font-class.pipe";
|
|
161
|
+
import * as i157 from "./barsa-tree-item/node-has-one-depth-level.pipe";
|
|
162
|
+
import * as i158 from "./column-matrix-renderer/matrix-value.pipe";
|
|
163
|
+
import * as i159 from "./dynamic-page-size.pipe";
|
|
164
|
+
import * as i160 from "./wizard-layout.directive";
|
|
165
|
+
import * as i161 from "./col-renderer.directive";
|
|
166
|
+
import * as i162 from "./apply-conditional-formmatings.directive";
|
|
167
|
+
import * as i163 from "./report-view-renderer.directive";
|
|
168
|
+
import * as i164 from "./fullscreen-dialog.directive";
|
|
169
|
+
import * as i165 from "./fullscreen-files.directive";
|
|
170
|
+
import * as i166 from "./download-files.directive";
|
|
171
|
+
import * as i167 from "@angular/common";
|
|
172
|
+
import * as i168 from "@angular/forms";
|
|
173
|
+
import * as i169 from "barsa-novin-ray-core";
|
|
174
|
+
import * as i170 from "@angular/cdk/drag-drop";
|
|
175
|
+
import * as i171 from "@angular/cdk/table";
|
|
176
|
+
import * as i172 from "@fundamental-ngx/core";
|
|
177
|
+
import * as i173 from "@fundamental-ngx/platform";
|
|
178
|
+
import * as i174 from "ngx-color/swatches";
|
|
179
|
+
import * as i175 from "ngx-color/chrome";
|
|
180
|
+
import * as i176 from "@angular/cdk/clipboard";
|
|
181
|
+
import * as i177 from "barsa-calendar";
|
|
182
|
+
import * as i178 from "./barsa-sap-ui-routing.module";
|
|
178
183
|
export declare class BarsaSapUiModule extends BaseModule {
|
|
179
184
|
protected dcm: DynamicComponentService;
|
|
180
185
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
181
|
-
protected dynamicComponents: (typeof import("barsa-sap-ui").GanttDhtmlChartViewComponent | typeof import("barsa-sap-ui").LayoutControlComponent | typeof import("barsa-sap-ui").UlvColumnSettingsComponent | typeof import("barsa-sap-ui").UiGridSortSettingComponent | typeof import("barsa-sap-ui").UlvSortSettingsComponent | typeof import("barsa-sap-ui").UlvGroupbySettingsComponent | typeof import("barsa-sap-ui").UlvFilterSettingsComponent | typeof import("barsa-sap-ui").UiMoInfoGeneralObjectUiComponent | typeof import("barsa-sap-ui").FileInDialogComponent | typeof import("barsa-sap-ui").BarsaAspViewerComponent | typeof import("barsa-sap-ui").CustomDateTimeComponent | typeof import("barsa-sap-ui").UiExceptionFormComponent | typeof import("barsa-sap-ui").UiMatrixViewComponent | typeof import("barsa-sap-ui").UiGraphComponent | typeof import("barsa-sap-ui").UiTreeViewComponent | typeof import("barsa-sap-ui").ColumnRendererComponent | typeof import("barsa-sap-ui").UiCardViewComponent | typeof import("barsa-sap-ui").UiListViewComponent | typeof import("barsa-sap-ui").UiTableViewComponent | typeof import("barsa-sap-ui").UlNotifyPopupComponent | typeof import("barsa-sap-ui").ReportSearchPanelSaveComponent | typeof import("barsa-sap-ui").ReportSearchFieldsHiddenSettingsComponent | typeof import("barsa-sap-ui").ReportSearchFieldsManageComponent | typeof import("barsa-sap-ui").ManageFiltersReportComponent | typeof import("barsa-sap-ui").ReportNavigatorComponent | typeof import("barsa-sap-ui").LyLineComponent | typeof import("barsa-sap-ui").UiUlvMainUiComponent | typeof import("barsa-sap-ui").BarsaTreeItemComponent | typeof import("barsa-sap-ui").BarsaTinyemceComponent | typeof import("barsa-sap-ui").UlvFormMultiSelectComponent | typeof import("barsa-sap-ui").UiUlvFormMultiSelectUiComponent | typeof import("barsa-sap-ui").LayoutActionsComponent | typeof import("barsa-sap-ui").FundamentalDynamicFormComponent | typeof import("barsa-sap-ui").UlToastAdapterComponent | typeof import("barsa-sap-ui").GlobalSearchModuleComponent | typeof import("barsa-sap-ui").GlobalSearchPanelComponent | typeof import("barsa-sap-ui").LySimpleLabelComponent | typeof import("barsa-sap-ui").UlLoadingMaskUiComponent | typeof import("barsa-sap-ui").UlvContextMenuComponent | typeof import("barsa-sap-ui").PageWithHeaderComponent | typeof import("barsa-sap-ui").UlMsgBoxAdapterComponent | typeof import("barsa-sap-ui").LyLabelComponent | typeof import("barsa-sap-ui").LyVerticalLayoutComponent | typeof import("barsa-sap-ui").LyHorizontalLayoutComponent | typeof import("barsa-sap-ui").FormDialogLessComponent | typeof import("barsa-sap-ui").UiFormPanelComponent | typeof import("barsa-sap-ui").LayoutWizardComponent | typeof import("barsa-sap-ui").ResponsiveToolbarRendererComponent | typeof import("barsa-sap-ui").ResponsiveToolbarComponent | typeof FormDialogComponent | typeof import("barsa-sap-ui").UlvSettingsComponent | typeof import("barsa-sap-ui").UiFormPanelToolbarComponent | typeof import("barsa-sap-ui").UiInfoBarPanelComponent | typeof import("barsa-sap-ui").UlvPagingComponent | typeof import("barsa-sap-ui").UlvToolbarComponent | typeof import("barsa-sap-ui").UlvSelectionComponent | typeof import("barsa-sap-ui").LyLayoutContainerOfRootComponent | typeof import("barsa-sap-ui").CardItemComponent | typeof import("barsa-sap-ui").BarsaUlvMainComponent | typeof import("barsa-sap-ui").ListItemComponent | typeof import("barsa-sap-ui").BarsaTableRowComponent | typeof import("barsa-sap-ui").BarsaTableHeaderComponent | typeof import("barsa-sap-ui").BreadcrumbComponent | typeof import("barsa-sap-ui").FormToolbarButtonComponent | typeof import("barsa-sap-ui").ReportNewTopFormComponent | typeof import("barsa-sap-ui").BarsaNetworkOfflineComponent | typeof import("barsa-sap-ui").FileViewerContentComponent | typeof import("barsa-sap-ui").FileViewerComponent | typeof import("barsa-sap-ui").BlobViewerComponent | typeof import("barsa-sap-ui").ExecutePushNotificationCommandComponent)[];
|
|
186
|
+
protected dynamicComponents: (typeof import("barsa-sap-ui").GanttDhtmlChartViewComponent | typeof import("barsa-sap-ui").LayoutControlComponent | typeof import("barsa-sap-ui").UlvColumnSettingsComponent | typeof import("barsa-sap-ui").UiGridSortSettingComponent | typeof import("barsa-sap-ui").UlvSortSettingsComponent | typeof import("barsa-sap-ui").UlvGroupbySettingsComponent | typeof import("barsa-sap-ui").UlvFilterSettingsComponent | typeof import("barsa-sap-ui").UiMoInfoGeneralObjectUiComponent | typeof import("barsa-sap-ui").FileInDialogComponent | typeof import("barsa-sap-ui").BarsaAspViewerComponent | typeof import("barsa-sap-ui").CustomDateTimeComponent | typeof import("barsa-sap-ui").UiExceptionFormComponent | typeof import("barsa-sap-ui").UiMatrixViewComponent | typeof import("barsa-sap-ui").UiGraphComponent | typeof import("barsa-sap-ui").UiTreeViewComponent | typeof import("barsa-sap-ui").ColumnRendererComponent | typeof import("barsa-sap-ui").UiCardViewComponent | typeof import("barsa-sap-ui").UiListViewComponent | typeof import("barsa-sap-ui").UiTableViewComponent | typeof import("barsa-sap-ui").UlNotifyPopupComponent | typeof import("barsa-sap-ui").ReportSearchPanelSaveComponent | typeof import("barsa-sap-ui").ReportSearchFieldsHiddenSettingsComponent | typeof import("barsa-sap-ui").ReportSearchFieldsManageComponent | typeof import("barsa-sap-ui").ManageFiltersReportComponent | typeof import("barsa-sap-ui").ReportNavigatorComponent | typeof import("barsa-sap-ui").LyLineComponent | typeof import("barsa-sap-ui").UiUlvMainUiComponent | typeof import("barsa-sap-ui").BarsaTreeItemComponent | typeof import("barsa-sap-ui").BarsaTinyemceComponent | typeof import("barsa-sap-ui").UlvFormMultiSelectComponent | typeof import("barsa-sap-ui").UiUlvFormMultiSelectUiComponent | typeof import("barsa-sap-ui").LayoutActionsComponent | typeof import("barsa-sap-ui").FundamentalDynamicFormComponent | typeof import("barsa-sap-ui").UlToastAdapterComponent | typeof import("barsa-sap-ui").GlobalSearchModuleComponent | typeof import("barsa-sap-ui").GlobalSearchPanelComponent | typeof import("barsa-sap-ui").LySimpleLabelComponent | typeof import("barsa-sap-ui").UlLoadingMaskUiComponent | typeof import("barsa-sap-ui").UlvContextMenuComponent | typeof import("barsa-sap-ui").PageWithHeaderComponent | typeof import("barsa-sap-ui").UlMsgBoxAdapterComponent | typeof import("barsa-sap-ui").LyLabelComponent | typeof import("barsa-sap-ui").LyVerticalLayoutComponent | typeof import("barsa-sap-ui").LyHorizontalLayoutComponent | typeof import("barsa-sap-ui").FormDialogLessComponent | typeof import("barsa-sap-ui").UiFormPanelComponent | typeof import("barsa-sap-ui").LayoutWizardComponent | typeof import("barsa-sap-ui").ResponsiveToolbarRendererComponent | typeof import("barsa-sap-ui").ResponsiveToolbarComponent | typeof FormDialogComponent | typeof import("barsa-sap-ui").UlvSettingsComponent | typeof import("barsa-sap-ui").UiFormPanelToolbarComponent | typeof import("barsa-sap-ui").UiInfoBarPanelComponent | typeof import("barsa-sap-ui").UlvPagingComponent | typeof import("barsa-sap-ui").UlvToolbarComponent | typeof import("barsa-sap-ui").UlvSelectionComponent | typeof import("barsa-sap-ui").LyLayoutContainerOfRootComponent | typeof import("barsa-sap-ui").CardItemComponent | typeof import("barsa-sap-ui").BarsaUlvMainComponent | typeof import("barsa-sap-ui").ListItemComponent | typeof import("barsa-sap-ui").BarsaTableRowComponent | typeof import("barsa-sap-ui").BarsaTableColumnComponent | typeof import("barsa-sap-ui").BarsaTableHeaderComponent | typeof import("barsa-sap-ui").BreadcrumbComponent | typeof import("barsa-sap-ui").FormToolbarButtonComponent | typeof import("barsa-sap-ui").ReportNewTopFormComponent | typeof import("barsa-sap-ui").BarsaNetworkOfflineComponent | typeof import("barsa-sap-ui").FileViewerContentComponent | typeof import("barsa-sap-ui").FileViewerComponent | typeof import("barsa-sap-ui").BlobViewerComponent | typeof import("barsa-sap-ui").ExecutePushNotificationCommandComponent | typeof import("barsa-sap-ui").BarsaCartableFormComponent | typeof import("barsa-sap-ui").BarsaCartableGroupComponent)[];
|
|
182
187
|
constructor(dcm: DynamicComponentService, componentFactoryResolver: ComponentFactoryResolver);
|
|
183
188
|
static forRoot(): ModuleWithProviders<BarsaSapUiModule>;
|
|
184
189
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaSapUiModule, never>;
|
|
185
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiModule, [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelToolbarComponent, typeof i29.UiFormPanelComponent, typeof i30.UiSearchCommandInfoUiComponent, typeof i31.UlvSettingsComponent, typeof i32.UiTinymceComponent, typeof i33.UiButtonComponent, typeof i34.UiDateTimeComponent, typeof i35.FormDialogComponent, typeof i36.HeaderFacetKeyValueComponent, typeof i37.HeaderFacetFormComponent, typeof i38.HeaderFacetRateComponent, typeof i39.HeaderFacetProgressComponent, typeof i40.HeaderFacetMicrochartComponent, typeof i41.HeaderFacetPlainTextComponent, typeof i42.UiMoInfoSubFormUiComponent, typeof i43.ResponsiveToolbarComponent, typeof i44.ResponsiveToolbarRendererComponent, typeof i45.UiTextAreaComponent, typeof i46.LayoutControlComponent, typeof i47.LayoutWizardComponent, typeof i48.FormWizardComponent, typeof i49.FormDialogLessComponent, typeof i50.RichTextStaticComponent, typeof i51.UiPicturesInfoComponent, typeof i52.LyHorizontalLayoutComponent, typeof i53.LyVerticalLayoutComponent, typeof i54.LyTabContainerComponent, typeof i55.LyTabPageComponent, typeof i56.LyLabelComponent, typeof i57.UiMoInfoComboViewerComponent, typeof i58.UlMsgBoxAdapterComponent, typeof i59.UiTreeComponent, typeof i60.PageWithHeaderComponent, typeof i61.HeaderAvatarComponent, typeof i62.UiWorkflowPanelUiComponent, typeof i63.UlvContextMenuComponent, typeof i64.UlLoadingMaskUiComponent, typeof i65.UiTextFieldAutoCompleteComponent, typeof i66.CaptchaFieldComponent, typeof i67.LySimpleLabelComponent, typeof i68.GlobalSearchPanelComponent, typeof i69.GlobalSearchModuleComponent, typeof i70.GlobalSearchComponent, typeof i71.HyperlinkComponent, typeof i72.StaticTextComponent, typeof i73.UlToastAdapterComponent, typeof i74.MessageStripComponent, typeof i75.UiLinearListContainerWithButtonComponent, typeof i76.FundamentalDynamicFormComponent, typeof i77.LayoutActionsComponent, typeof i78.LyLayoutContainerComponent, typeof i79.UiUlvFormMultiSelectUiComponent, typeof i80.UlvFormMultiSelectComponent, typeof i81.UlvColumnSettingsComponent, typeof i82.UlvFilterSettingsComponent, typeof i83.UlvSortSettingsComponent, typeof i84.UlvGroupbySettingsComponent, typeof i85.BarsaListFileLinearComponent, typeof i86.UiPdfViewerComponent, typeof i87.BarsaTinyemceComponent, typeof i88.UiMonacoEditorComponent, typeof i89.BarsaMonacoEditorComponent, typeof i90.BarsaDateTimePickerComponent, typeof i91.BarsaTreeItemComponent, typeof i92.UiSwitchButtonComponent, typeof i93.UiColorUiComponent, typeof i94.LyLineComponent, typeof i95.UiUlvMainUiComponent, typeof i96.ReportNavigatorComponent, typeof i97.ManageFiltersReportComponent, typeof i98.ReportSearchFieldsManageComponent, typeof i99.ReportSearchFieldsHiddenSettingsComponent, typeof i100.SearchPanelComponent, typeof i101.ReportSearchPanelSaveComponent, typeof i102.UiGridFilterSettingsComponent, typeof i103.UiGridFilterItemComponent, typeof i104.UiDateRangeExComponent, typeof i105.UlNotifyPopupComponent, typeof i106.UiTableViewComponent, typeof i107.UiListViewComponent, typeof i108.UiCardViewComponent, typeof i109.UiReportContainerComponent, typeof i110.NoDataComponent, typeof i111.ColumnRendererComponent, typeof i112.InlineSaveAndCancelComponent, typeof i113.UiTreeViewComponent, typeof i112.InlineSaveAndCancelComponent, typeof i114.UiCalendarComponent, typeof i115.UiAspReportViewerComponent, typeof i116.UiGraphComponent, typeof i117.UiExceptionFormComponent, typeof i118.UiEditableGridComponent, typeof i119.ColumnMatrixRendererComponent, typeof i120.UiMatrixViewComponent, typeof i121.CustomDateTimeComponent, typeof i122.BarsaAspViewerComponent, typeof i123.FileInDialogComponent, typeof i124.UiMoInfoGeneralObjectUiComponent, typeof i125.UiGanttChartComponent, typeof i126.GanttDhtmlChartViewComponent, typeof i127.ProgressIndicatorComponent, typeof i128.CardViewContentComponent, typeof i129.CardItemComponent, typeof i130.UiCardViewHorizontalGroupComponent, typeof i131.TitleComponent, typeof i132.BarsaUlvMainComponent, typeof i133.ListItemComponent, typeof i134.HtreeCreateNewComponent, typeof i135.BarsaTableHeaderComponent, typeof i136.BarsaTableRowComponent, typeof i137.BreadcrumbComponent, typeof i138.UiLabelComponent, typeof i139.FormToolbarButtonComponent, typeof i140.BarsaSearchFormComponent, typeof i141.ReportNewTopFormComponent, typeof i142.BarsaNetworkOfflineComponent, typeof i143.FileViewerContentComponent, typeof i144.FileViewerPopoverComponent, typeof i145.FileViewerComponent, typeof i146.BlobViewerComponent, typeof i147.ExecutePushNotificationCommandComponent, typeof i148.NotificationItemComponent, typeof i149.UploadFileStatusPipe, typeof i150.SapFontPipe, typeof i151.SapFontClassPipe, typeof i108.StringToArrayPipe, typeof i152.NodeHasOneDepthLevelPipe, typeof i153.MatrixValuePipe, typeof i154.DynamicPageSizePipe, typeof i155.WizardLayoutDirective, typeof i156.ColRendererDirective, typeof i157.ApplyConditionalFormatsDirective, typeof i158.ReportViewRendererDirective, typeof i159.FullscreenDialogDirective, typeof i160.FullscreenFilesDirective, typeof i161.DownloadFilesDirective], [typeof i162.CommonModule, typeof i163.FormsModule, typeof i163.ReactiveFormsModule, typeof i164.BarsaNovinRayCoreModule, typeof i165.DragDropModule, typeof i166.CdkTableModule, typeof i167.FundamentalNgxCoreModule, typeof i167.FacetModule, typeof i167.WizardModule, typeof i167.PipeModule, typeof i168.FundamentalNgxPlatformModule, typeof i168.PlatformDynamicPageModule, typeof i168.PlatformTextAreaModule, typeof i168.PlatformSearchFieldModule, typeof i169.ColorSwatchesModule, typeof i170.ColorChromeModule, typeof i171.ClipboardModule, typeof i172.BarsaCalendarModule, typeof i173.BarsaSapUiRoutingModule, typeof i167.ContentDensityModule], [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelToolbarComponent, typeof i29.UiFormPanelComponent, typeof i30.UiSearchCommandInfoUiComponent, typeof i31.UlvSettingsComponent, typeof i32.UiTinymceComponent, typeof i33.UiButtonComponent, typeof i34.UiDateTimeComponent, typeof i35.FormDialogComponent, typeof i36.HeaderFacetKeyValueComponent, typeof i37.HeaderFacetFormComponent, typeof i38.HeaderFacetRateComponent, typeof i39.HeaderFacetProgressComponent, typeof i40.HeaderFacetMicrochartComponent, typeof i41.HeaderFacetPlainTextComponent, typeof i42.UiMoInfoSubFormUiComponent, typeof i43.ResponsiveToolbarComponent, typeof i44.ResponsiveToolbarRendererComponent, typeof i45.UiTextAreaComponent, typeof i46.LayoutControlComponent, typeof i47.LayoutWizardComponent, typeof i48.FormWizardComponent, typeof i49.FormDialogLessComponent, typeof i50.RichTextStaticComponent, typeof i51.UiPicturesInfoComponent, typeof i52.LyHorizontalLayoutComponent, typeof i53.LyVerticalLayoutComponent, typeof i54.LyTabContainerComponent, typeof i55.LyTabPageComponent, typeof i56.LyLabelComponent, typeof i57.UiMoInfoComboViewerComponent, typeof i58.UlMsgBoxAdapterComponent, typeof i59.UiTreeComponent, typeof i60.PageWithHeaderComponent, typeof i61.HeaderAvatarComponent, typeof i62.UiWorkflowPanelUiComponent, typeof i63.UlvContextMenuComponent, typeof i64.UlLoadingMaskUiComponent, typeof i65.UiTextFieldAutoCompleteComponent, typeof i66.CaptchaFieldComponent, typeof i67.LySimpleLabelComponent, typeof i68.GlobalSearchPanelComponent, typeof i69.GlobalSearchModuleComponent, typeof i70.GlobalSearchComponent, typeof i71.HyperlinkComponent, typeof i72.StaticTextComponent, typeof i73.UlToastAdapterComponent, typeof i74.MessageStripComponent, typeof i75.UiLinearListContainerWithButtonComponent, typeof i76.FundamentalDynamicFormComponent, typeof i77.LayoutActionsComponent, typeof i78.LyLayoutContainerComponent, typeof i79.UiUlvFormMultiSelectUiComponent, typeof i80.UlvFormMultiSelectComponent, typeof i81.UlvColumnSettingsComponent, typeof i82.UlvFilterSettingsComponent, typeof i83.UlvSortSettingsComponent, typeof i84.UlvGroupbySettingsComponent, typeof i85.BarsaListFileLinearComponent, typeof i86.UiPdfViewerComponent, typeof i87.BarsaTinyemceComponent, typeof i88.UiMonacoEditorComponent, typeof i89.BarsaMonacoEditorComponent, typeof i90.BarsaDateTimePickerComponent, typeof i91.BarsaTreeItemComponent, typeof i92.UiSwitchButtonComponent, typeof i93.UiColorUiComponent, typeof i94.LyLineComponent, typeof i95.UiUlvMainUiComponent, typeof i96.ReportNavigatorComponent, typeof i97.ManageFiltersReportComponent, typeof i98.ReportSearchFieldsManageComponent, typeof i99.ReportSearchFieldsHiddenSettingsComponent, typeof i100.SearchPanelComponent, typeof i101.ReportSearchPanelSaveComponent, typeof i102.UiGridFilterSettingsComponent, typeof i103.UiGridFilterItemComponent, typeof i104.UiDateRangeExComponent, typeof i105.UlNotifyPopupComponent, typeof i106.UiTableViewComponent, typeof i107.UiListViewComponent, typeof i108.UiCardViewComponent, typeof i109.UiReportContainerComponent, typeof i110.NoDataComponent, typeof i111.ColumnRendererComponent, typeof i112.InlineSaveAndCancelComponent, typeof i113.UiTreeViewComponent, typeof i112.InlineSaveAndCancelComponent, typeof i114.UiCalendarComponent, typeof i115.UiAspReportViewerComponent, typeof i116.UiGraphComponent, typeof i117.UiExceptionFormComponent, typeof i118.UiEditableGridComponent, typeof i119.ColumnMatrixRendererComponent, typeof i120.UiMatrixViewComponent, typeof i121.CustomDateTimeComponent, typeof i122.BarsaAspViewerComponent, typeof i123.FileInDialogComponent, typeof i124.UiMoInfoGeneralObjectUiComponent, typeof i125.UiGanttChartComponent, typeof i126.GanttDhtmlChartViewComponent, typeof i127.ProgressIndicatorComponent, typeof i128.CardViewContentComponent, typeof i129.CardItemComponent, typeof i130.UiCardViewHorizontalGroupComponent, typeof i131.TitleComponent, typeof i132.BarsaUlvMainComponent, typeof i133.ListItemComponent, typeof i134.HtreeCreateNewComponent, typeof i135.BarsaTableHeaderComponent, typeof i136.BarsaTableRowComponent, typeof i137.BreadcrumbComponent, typeof i138.UiLabelComponent, typeof i139.FormToolbarButtonComponent, typeof i140.BarsaSearchFormComponent, typeof i141.ReportNewTopFormComponent, typeof i142.BarsaNetworkOfflineComponent, typeof i143.FileViewerContentComponent, typeof i144.FileViewerPopoverComponent, typeof i145.FileViewerComponent, typeof i146.BlobViewerComponent, typeof i147.ExecutePushNotificationCommandComponent, typeof i148.NotificationItemComponent, typeof i155.WizardLayoutDirective, typeof i156.ColRendererDirective, typeof i157.ApplyConditionalFormatsDirective, typeof i158.ReportViewRendererDirective, typeof i159.FullscreenDialogDirective, typeof i160.FullscreenFilesDirective, typeof i161.DownloadFilesDirective, typeof i149.UploadFileStatusPipe, typeof i150.SapFontPipe, typeof i151.SapFontClassPipe, typeof i108.StringToArrayPipe, typeof i152.NodeHasOneDepthLevelPipe, typeof i153.MatrixValuePipe, typeof i154.DynamicPageSizePipe]>;
|
|
190
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaSapUiModule, [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelToolbarComponent, typeof i29.UiFormPanelComponent, typeof i30.UiSearchCommandInfoUiComponent, typeof i31.UlvSettingsComponent, typeof i32.UiTinymceComponent, typeof i33.UiButtonComponent, typeof i34.UiDateTimeComponent, typeof i35.FormDialogComponent, typeof i36.HeaderFacetKeyValueComponent, typeof i37.HeaderFacetFormComponent, typeof i38.HeaderFacetRateComponent, typeof i39.HeaderFacetProgressComponent, typeof i40.HeaderFacetMicrochartComponent, typeof i41.HeaderFacetPlainTextComponent, typeof i42.UiMoInfoSubFormUiComponent, typeof i43.ResponsiveToolbarComponent, typeof i44.ResponsiveToolbarRendererComponent, typeof i45.UiTextAreaComponent, typeof i46.LayoutControlComponent, typeof i47.LayoutWizardComponent, typeof i48.FormWizardComponent, typeof i49.FormDialogLessComponent, typeof i50.RichTextStaticComponent, typeof i51.UiPicturesInfoComponent, typeof i52.LyHorizontalLayoutComponent, typeof i53.LyVerticalLayoutComponent, typeof i54.LyTabContainerComponent, typeof i55.LyTabPageComponent, typeof i56.LyLabelComponent, typeof i57.UiMoInfoComboViewerComponent, typeof i58.UlMsgBoxAdapterComponent, typeof i59.UiTreeComponent, typeof i60.PageWithHeaderComponent, typeof i61.HeaderAvatarComponent, typeof i62.UiWorkflowPanelUiComponent, typeof i63.UlvContextMenuComponent, typeof i64.UlLoadingMaskUiComponent, typeof i65.UiTextFieldAutoCompleteComponent, typeof i66.CaptchaFieldComponent, typeof i67.LySimpleLabelComponent, typeof i68.GlobalSearchPanelComponent, typeof i69.GlobalSearchModuleComponent, typeof i70.GlobalSearchComponent, typeof i71.HyperlinkComponent, typeof i72.StaticTextComponent, typeof i73.UlToastAdapterComponent, typeof i74.MessageStripComponent, typeof i75.UiLinearListContainerWithButtonComponent, typeof i76.FundamentalDynamicFormComponent, typeof i77.LayoutActionsComponent, typeof i78.LyLayoutContainerComponent, typeof i79.UiUlvFormMultiSelectUiComponent, typeof i80.UlvFormMultiSelectComponent, typeof i81.UlvColumnSettingsComponent, typeof i82.UlvFilterSettingsComponent, typeof i83.UlvSortSettingsComponent, typeof i84.UlvGroupbySettingsComponent, typeof i85.BarsaListFileLinearComponent, typeof i86.UiPdfViewerComponent, typeof i87.BarsaTinyemceComponent, typeof i88.UiMonacoEditorComponent, typeof i89.BarsaMonacoEditorComponent, typeof i90.BarsaDateTimePickerComponent, typeof i91.BarsaTreeItemComponent, typeof i92.UiSwitchButtonComponent, typeof i93.UiColorUiComponent, typeof i94.LyLineComponent, typeof i95.UiUlvMainUiComponent, typeof i96.ReportNavigatorComponent, typeof i97.ManageFiltersReportComponent, typeof i98.ReportSearchFieldsManageComponent, typeof i99.ReportSearchFieldsHiddenSettingsComponent, typeof i100.SearchPanelComponent, typeof i101.ReportSearchPanelSaveComponent, typeof i102.UiGridFilterSettingsComponent, typeof i103.UiGridFilterItemComponent, typeof i104.UiDateRangeExComponent, typeof i105.UlNotifyPopupComponent, typeof i106.UiTableViewComponent, typeof i107.UiListViewComponent, typeof i108.UiCardViewComponent, typeof i109.UiReportContainerComponent, typeof i110.NoDataComponent, typeof i111.ColumnRendererComponent, typeof i112.InlineSaveAndCancelComponent, typeof i113.UiTreeViewComponent, typeof i112.InlineSaveAndCancelComponent, typeof i114.UiCalendarComponent, typeof i115.UiAspReportViewerComponent, typeof i116.UiGraphComponent, typeof i117.UiExceptionFormComponent, typeof i118.UiEditableGridComponent, typeof i119.ColumnMatrixRendererComponent, typeof i120.UiMatrixViewComponent, typeof i121.CustomDateTimeComponent, typeof i122.BarsaAspViewerComponent, typeof i123.FileInDialogComponent, typeof i124.UiMoInfoGeneralObjectUiComponent, typeof i125.UiGanttChartComponent, typeof i126.GanttDhtmlChartViewComponent, typeof i127.ProgressIndicatorComponent, typeof i128.CardViewContentComponent, typeof i129.CardItemComponent, typeof i130.UiCardViewHorizontalGroupComponent, typeof i131.TitleComponent, typeof i132.BarsaUlvMainComponent, typeof i133.ListItemComponent, typeof i134.HtreeCreateNewComponent, typeof i135.BarsaTableHeaderComponent, typeof i136.BarsaTableRowComponent, typeof i137.BarsaTableColumnComponent, typeof i138.BreadcrumbComponent, typeof i139.UiLabelComponent, typeof i140.FormToolbarButtonComponent, typeof i141.BarsaSearchFormComponent, typeof i142.ReportNewTopFormComponent, typeof i143.BarsaNetworkOfflineComponent, typeof i144.FileViewerContentComponent, typeof i145.FileViewerPopoverComponent, typeof i146.FileViewerComponent, typeof i147.BlobViewerComponent, typeof i148.ExecutePushNotificationCommandComponent, typeof i149.NotificationItemComponent, typeof i150.BarsaCartableTemplateComponent, typeof i151.BarsaCartableGroupComponent, typeof i152.BarsaCartableFormComponent, typeof i153.BarsaColumnIndicatorComponent, typeof i154.UploadFileStatusPipe, typeof i155.SapFontPipe, typeof i156.SapFontClassPipe, typeof i108.StringToArrayPipe, typeof i157.NodeHasOneDepthLevelPipe, typeof i158.MatrixValuePipe, typeof i159.DynamicPageSizePipe, typeof i160.WizardLayoutDirective, typeof i161.ColRendererDirective, typeof i162.ApplyConditionalFormatsDirective, typeof i163.ReportViewRendererDirective, typeof i164.FullscreenDialogDirective, typeof i165.FullscreenFilesDirective, typeof i166.DownloadFilesDirective], [typeof i167.CommonModule, typeof i168.FormsModule, typeof i168.ReactiveFormsModule, typeof i169.BarsaNovinRayCoreModule, typeof i170.DragDropModule, typeof i171.CdkTableModule, typeof i172.FundamentalNgxCoreModule, typeof i172.FacetModule, typeof i172.WizardModule, typeof i172.PipeModule, typeof i173.FundamentalNgxPlatformModule, typeof i173.PlatformDynamicPageModule, typeof i173.PlatformTextAreaModule, typeof i173.PlatformSearchFieldModule, typeof i174.ColorSwatchesModule, typeof i175.ColorChromeModule, typeof i176.ClipboardModule, typeof i177.BarsaCalendarModule, typeof i178.BarsaSapUiRoutingModule, typeof i172.ContentDensityModule], [typeof i1.UiTextFieldComponent, typeof i2.LyLayoutFieldLabelComponent, typeof i3.UiCheckBoxComponent, typeof i4.UiSimpleComboComponent, typeof i5.UiRadioGroupComponent, typeof i6.UiGridComponent, typeof i7.LyLayoutContainerOfRootComponent, typeof i8.LyLayoutPanelComponent, typeof i9.UiReadOnlyFieldComponent, typeof i10.UiContainerWithButtonComponent, typeof i11.UiPictureFileComponent, typeof i12.UiMoInfoUlvComboComponent, typeof i13.UiMultiSelectComboComponent, typeof i14.UiNumDecimalUiComponent, typeof i15.UiNumIntUiComponent, typeof i16.UiTimeSpanComponent, typeof i17.UiFileLinearListBoxComponent, typeof i18.LyEmptySpaceComponent, typeof i19.UiSinglePictureComponent, typeof i20.UlvSelectionComponent, typeof i21.UlvToolbarComponent, typeof i22.UlvPagingComponent, typeof i23.UiGridSortSettingComponent, typeof i24.UiGridSortItemComponent, typeof i25.UiGridColumnsComponent, typeof i26.MaskComponent, typeof i27.UiInfoBarPanelComponent, typeof i28.UiFormPanelToolbarComponent, typeof i29.UiFormPanelComponent, typeof i30.UiSearchCommandInfoUiComponent, typeof i31.UlvSettingsComponent, typeof i32.UiTinymceComponent, typeof i33.UiButtonComponent, typeof i34.UiDateTimeComponent, typeof i35.FormDialogComponent, typeof i36.HeaderFacetKeyValueComponent, typeof i37.HeaderFacetFormComponent, typeof i38.HeaderFacetRateComponent, typeof i39.HeaderFacetProgressComponent, typeof i40.HeaderFacetMicrochartComponent, typeof i41.HeaderFacetPlainTextComponent, typeof i42.UiMoInfoSubFormUiComponent, typeof i43.ResponsiveToolbarComponent, typeof i44.ResponsiveToolbarRendererComponent, typeof i45.UiTextAreaComponent, typeof i46.LayoutControlComponent, typeof i47.LayoutWizardComponent, typeof i48.FormWizardComponent, typeof i49.FormDialogLessComponent, typeof i50.RichTextStaticComponent, typeof i51.UiPicturesInfoComponent, typeof i52.LyHorizontalLayoutComponent, typeof i53.LyVerticalLayoutComponent, typeof i54.LyTabContainerComponent, typeof i55.LyTabPageComponent, typeof i56.LyLabelComponent, typeof i57.UiMoInfoComboViewerComponent, typeof i58.UlMsgBoxAdapterComponent, typeof i59.UiTreeComponent, typeof i60.PageWithHeaderComponent, typeof i61.HeaderAvatarComponent, typeof i62.UiWorkflowPanelUiComponent, typeof i63.UlvContextMenuComponent, typeof i64.UlLoadingMaskUiComponent, typeof i65.UiTextFieldAutoCompleteComponent, typeof i66.CaptchaFieldComponent, typeof i67.LySimpleLabelComponent, typeof i68.GlobalSearchPanelComponent, typeof i69.GlobalSearchModuleComponent, typeof i70.GlobalSearchComponent, typeof i71.HyperlinkComponent, typeof i72.StaticTextComponent, typeof i73.UlToastAdapterComponent, typeof i74.MessageStripComponent, typeof i75.UiLinearListContainerWithButtonComponent, typeof i76.FundamentalDynamicFormComponent, typeof i77.LayoutActionsComponent, typeof i78.LyLayoutContainerComponent, typeof i79.UiUlvFormMultiSelectUiComponent, typeof i80.UlvFormMultiSelectComponent, typeof i81.UlvColumnSettingsComponent, typeof i82.UlvFilterSettingsComponent, typeof i83.UlvSortSettingsComponent, typeof i84.UlvGroupbySettingsComponent, typeof i85.BarsaListFileLinearComponent, typeof i86.UiPdfViewerComponent, typeof i87.BarsaTinyemceComponent, typeof i88.UiMonacoEditorComponent, typeof i89.BarsaMonacoEditorComponent, typeof i90.BarsaDateTimePickerComponent, typeof i91.BarsaTreeItemComponent, typeof i92.UiSwitchButtonComponent, typeof i93.UiColorUiComponent, typeof i94.LyLineComponent, typeof i95.UiUlvMainUiComponent, typeof i96.ReportNavigatorComponent, typeof i97.ManageFiltersReportComponent, typeof i98.ReportSearchFieldsManageComponent, typeof i99.ReportSearchFieldsHiddenSettingsComponent, typeof i100.SearchPanelComponent, typeof i101.ReportSearchPanelSaveComponent, typeof i102.UiGridFilterSettingsComponent, typeof i103.UiGridFilterItemComponent, typeof i104.UiDateRangeExComponent, typeof i105.UlNotifyPopupComponent, typeof i106.UiTableViewComponent, typeof i107.UiListViewComponent, typeof i108.UiCardViewComponent, typeof i109.UiReportContainerComponent, typeof i110.NoDataComponent, typeof i111.ColumnRendererComponent, typeof i112.InlineSaveAndCancelComponent, typeof i113.UiTreeViewComponent, typeof i112.InlineSaveAndCancelComponent, typeof i114.UiCalendarComponent, typeof i115.UiAspReportViewerComponent, typeof i116.UiGraphComponent, typeof i117.UiExceptionFormComponent, typeof i118.UiEditableGridComponent, typeof i119.ColumnMatrixRendererComponent, typeof i120.UiMatrixViewComponent, typeof i121.CustomDateTimeComponent, typeof i122.BarsaAspViewerComponent, typeof i123.FileInDialogComponent, typeof i124.UiMoInfoGeneralObjectUiComponent, typeof i125.UiGanttChartComponent, typeof i126.GanttDhtmlChartViewComponent, typeof i127.ProgressIndicatorComponent, typeof i128.CardViewContentComponent, typeof i129.CardItemComponent, typeof i130.UiCardViewHorizontalGroupComponent, typeof i131.TitleComponent, typeof i132.BarsaUlvMainComponent, typeof i133.ListItemComponent, typeof i134.HtreeCreateNewComponent, typeof i135.BarsaTableHeaderComponent, typeof i136.BarsaTableRowComponent, typeof i137.BarsaTableColumnComponent, typeof i138.BreadcrumbComponent, typeof i139.UiLabelComponent, typeof i140.FormToolbarButtonComponent, typeof i141.BarsaSearchFormComponent, typeof i142.ReportNewTopFormComponent, typeof i143.BarsaNetworkOfflineComponent, typeof i144.FileViewerContentComponent, typeof i145.FileViewerPopoverComponent, typeof i146.FileViewerComponent, typeof i147.BlobViewerComponent, typeof i148.ExecutePushNotificationCommandComponent, typeof i149.NotificationItemComponent, typeof i150.BarsaCartableTemplateComponent, typeof i151.BarsaCartableGroupComponent, typeof i152.BarsaCartableFormComponent, typeof i153.BarsaColumnIndicatorComponent, typeof i160.WizardLayoutDirective, typeof i161.ColRendererDirective, typeof i162.ApplyConditionalFormatsDirective, typeof i163.ReportViewRendererDirective, typeof i164.FullscreenDialogDirective, typeof i165.FullscreenFilesDirective, typeof i166.DownloadFilesDirective, typeof i154.UploadFileStatusPipe, typeof i155.SapFontPipe, typeof i156.SapFontClassPipe, typeof i108.StringToArrayPipe, typeof i157.NodeHasOneDepthLevelPipe, typeof i158.MatrixValuePipe, typeof i159.DynamicPageSizePipe]>;
|
|
186
191
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaSapUiModule>;
|
|
187
192
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { BaseViewItemPropsComponent, ReportViewColumn, MetaobjectDataModel, LayoutSetting, EjrayOlgo } from 'barsa-novin-ray-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class BarsaTableColumnComponent extends BaseViewItemPropsComponent implements OnInit {
|
|
5
|
+
column: ReportViewColumn;
|
|
6
|
+
mo: MetaobjectDataModel;
|
|
7
|
+
index: number;
|
|
8
|
+
inlineEditMode: boolean;
|
|
9
|
+
layout94: LayoutSetting;
|
|
10
|
+
customComponent: EjrayOlgo | null;
|
|
11
|
+
detailsComponentSetting: any;
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTableColumnComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableColumnComponent, "bsu-barsa-table-column", never, { "column": "column"; "mo": "mo"; "index": "index"; "inlineEditMode": "inlineEditMode"; "layout94": "layout94"; "customComponent": "customComponent"; "detailsComponentSetting": "detailsComponentSetting"; }, {}, never, never, false>;
|
|
16
|
+
}
|
|
@@ -19,12 +19,14 @@ export declare class BarsaTableHeaderComponent extends BaseComponent {
|
|
|
19
19
|
tableWidth: number;
|
|
20
20
|
resizedByUser: boolean;
|
|
21
21
|
disableResponsive: boolean;
|
|
22
|
+
rowIndicator: boolean;
|
|
22
23
|
allCheckbox: EventEmitter<boolean>;
|
|
23
24
|
sortAscending: EventEmitter<any>;
|
|
24
25
|
sortDescending: EventEmitter<any>;
|
|
25
26
|
filter: EventEmitter<ReportViewColumn>;
|
|
26
27
|
columnsSmallerThanTableWidth: boolean;
|
|
27
28
|
columnsWidth: number;
|
|
29
|
+
startIndex: number;
|
|
28
30
|
/**
|
|
29
31
|
*
|
|
30
32
|
*/
|
|
@@ -38,5 +40,5 @@ export declare class BarsaTableHeaderComponent extends BaseComponent {
|
|
|
38
40
|
onFilter(column: ReportViewColumn, menu: any): void;
|
|
39
41
|
_trackByColumn(index: number, column: ReportViewColumn): string;
|
|
40
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTableHeaderComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableHeaderComponent, "bsu-barsa-table-header", never, { "allChecked": "allChecked"; "isCheckList": "isCheckList"; "columns": "columns"; "fitWidth": "fitWidth"; "contextMenuItems": "contextMenuItems"; "canView": "canView"; "hideOpenIcon": "hideOpenIcon"; "disableOverflowContextMenu": "disableOverflowContextMenu"; "inlineEditMode": "inlineEditMode"; "hideHeader": "hideHeader"; "showDetailsInRow": "showDetailsInRow"; "viewSetting": "viewSetting"; "tableWidth": "tableWidth"; "resizedByUser": "resizedByUser"; "disableResponsive": "disableResponsive"; }, { "allCheckbox": "allCheckbox"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "filter": "filter"; }, never, never, false>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BarsaTableHeaderComponent, "bsu-barsa-table-header", never, { "allChecked": "allChecked"; "isCheckList": "isCheckList"; "columns": "columns"; "fitWidth": "fitWidth"; "contextMenuItems": "contextMenuItems"; "canView": "canView"; "hideOpenIcon": "hideOpenIcon"; "disableOverflowContextMenu": "disableOverflowContextMenu"; "inlineEditMode": "inlineEditMode"; "hideHeader": "hideHeader"; "showDetailsInRow": "showDetailsInRow"; "viewSetting": "viewSetting"; "tableWidth": "tableWidth"; "resizedByUser": "resizedByUser"; "disableResponsive": "disableResponsive"; "rowIndicator": "rowIndicator"; }, { "allCheckbox": "allCheckbox"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "filter": "filter"; }, never, never, false>;
|
|
42
44
|
}
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import { OnInit, TemplateRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { MoForReportModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import { BaseViewItemPropsComponent, EjrayOlgo, ReportViewColumn } from 'barsa-novin-ray-core';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BarsaTableRowComponent extends BaseViewItemPropsComponent implements OnInit {
|
|
5
6
|
showDetailsInRow: boolean;
|
|
6
7
|
detailsComponent?: EjrayOlgo;
|
|
7
8
|
detailsColumns: ReportViewColumn[];
|
|
8
9
|
detailsText: string;
|
|
9
|
-
columnComponents:
|
|
10
|
-
column: ReportViewColumn;
|
|
11
|
-
component: MetaobjectDataModel;
|
|
12
|
-
}[];
|
|
10
|
+
columnComponents: MoForReportModel | null;
|
|
13
11
|
detailsFormItems: TemplateRef<any>;
|
|
14
12
|
detailsCollapsed: boolean;
|
|
15
13
|
detailsComponentSetting: any;
|
|
@@ -39,6 +39,7 @@ export declare class FundamentalDynamicFormComponent extends BaseComponent imple
|
|
|
39
39
|
deviceSize: 's' | 'm' | 'l' | 'xl';
|
|
40
40
|
dirValue: 'rtl' | 'ltr';
|
|
41
41
|
portrait: boolean;
|
|
42
|
+
standalone: boolean;
|
|
42
43
|
modernTabs: LayoutSetting[];
|
|
43
44
|
titleRef: ViewContainerRef;
|
|
44
45
|
headerAvatarRef: TemplateRef<any>;
|
|
@@ -56,5 +57,5 @@ export declare class FundamentalDynamicFormComponent extends BaseComponent imple
|
|
|
56
57
|
getNumber(val: any): number;
|
|
57
58
|
onDynamicComponentEvents(e: any): void;
|
|
58
59
|
static ɵfac: i0.ɵɵFactoryDeclaration<FundamentalDynamicFormComponent, never>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FundamentalDynamicFormComponent, "bsu-fundamental-dynamic-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "portrait": "portrait"; "modernTabs": "modernTabs"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; }, never, never, false>;
|
|
60
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FundamentalDynamicFormComponent, "bsu-fundamental-dynamic-form", never, { "breadCrumbs": "breadCrumbs"; "toolbarVisible": "toolbarVisible"; "toolbarItems": "toolbarItems"; "layoutActions": "layoutActions"; "layout94": "layout94"; "parameters": "parameters"; "workflowPanelUi": "workflowPanelUi"; "context": "context"; "title": "title"; "subtitle": "subtitle"; "description": "description"; "facetList": "facetList"; "fieldDict": "fieldDict"; "removeHeaderBorder": "removeHeaderBorder"; "removeContentPadding": "removeContentPadding"; "isMobile": "isMobile"; "mo": "mo"; "avatar": "avatar"; "rtl": "rtl"; "hideTitle": "hideTitle"; "hideClose": "hideClose"; "hidePin": "hidePin"; "mask": "mask"; "canSend": "canSend"; "contentIsPage": "contentIsPage"; "contentDensity": "contentDensity"; "deviceSize": "deviceSize"; "dirValue": "dirValue"; "portrait": "portrait"; "standalone": "standalone"; "modernTabs": "modernTabs"; }, { "toolbarClick": "toolbarClick"; "workflowChoiceClick": "workflowChoiceClick"; "close": "close"; }, never, never, false>;
|
|
60
61
|
}
|
package/lib/index.d.ts
CHANGED
|
@@ -72,6 +72,7 @@ import { CardItemComponent } from './card-item/card-item.component';
|
|
|
72
72
|
import { BarsaUlvMainComponent } from './barsa-ulv-main/barsa-ulv-main.component';
|
|
73
73
|
import { ListItemComponent } from './list-item/list-item.component';
|
|
74
74
|
import { BarsaTableRowComponent } from './barsa-table-row/barsa-table-row.component';
|
|
75
|
+
import { BarsaTableColumnComponent } from './barsa-table-column/barsa-table-column.component';
|
|
75
76
|
import { BarsaTableHeaderComponent } from './barsa-table-header/barsa-table-header.component';
|
|
76
77
|
import { BreadcrumbComponent } from './breadcrumb/breadcrumb.component';
|
|
77
78
|
import { FormToolbarButtonComponent } from './form-toolbar-button/form-toolbar-button.component';
|
|
@@ -83,7 +84,9 @@ import { FileViewerContentComponent } from './file-viewer-content/file-viewer-co
|
|
|
83
84
|
import { DownloadFilesDirective } from './download-files.directive';
|
|
84
85
|
import { FullscreenFilesDirective } from './fullscreen-files.directive';
|
|
85
86
|
import { ExecutePushNotificationCommandComponent } from './execute-push-notification-command/execute-push-notification-command.component';
|
|
86
|
-
|
|
87
|
+
import { BarsaCartableGroupComponent } from './barsa-group-cartable/barsa-cartable-group.component';
|
|
88
|
+
import { BarsaCartableFormComponent } from './barsa-cartable-form/barsa-cartable-form.component';
|
|
89
|
+
export declare const components: (typeof GanttDhtmlChartViewComponent | typeof LayoutControlComponent | typeof UlvColumnSettingsComponent | typeof UiGridSortSettingComponent | typeof UlvSortSettingsComponent | typeof UlvGroupbySettingsComponent | typeof UlvFilterSettingsComponent | typeof UiMoInfoGeneralObjectUiComponent | typeof FileInDialogComponent | typeof BarsaAspViewerComponent | typeof CustomDateTimeComponent | typeof UiExceptionFormComponent | typeof UiMatrixViewComponent | typeof UiGraphComponent | typeof UiTreeViewComponent | typeof ColumnRendererComponent | typeof UiCardViewComponent | typeof UiListViewComponent | typeof UiTableViewComponent | typeof UlNotifyPopupComponent | typeof ReportSearchPanelSaveComponent | typeof ReportSearchFieldsHiddenSettingsComponent | typeof ReportSearchFieldsManageComponent | typeof ManageFiltersReportComponent | typeof ReportNavigatorComponent | typeof LyLineComponent | typeof UiUlvMainUiComponent | typeof BarsaTreeItemComponent | typeof BarsaTinyemceComponent | typeof UlvFormMultiSelectComponent | typeof UiUlvFormMultiSelectUiComponent | typeof LayoutActionsComponent | typeof FundamentalDynamicFormComponent | typeof UlToastAdapterComponent | typeof GlobalSearchModuleComponent | typeof GlobalSearchPanelComponent | typeof LySimpleLabelComponent | typeof UlLoadingMaskUiComponent | typeof UlvContextMenuComponent | typeof PageWithHeaderComponent | typeof UlMsgBoxAdapterComponent | typeof LyLabelComponent | typeof LyVerticalLayoutComponent | typeof LyHorizontalLayoutComponent | typeof FormDialogLessComponent | typeof UiFormPanelComponent | typeof LayoutWizardComponent | typeof ResponsiveToolbarRendererComponent | typeof ResponsiveToolbarComponent | typeof FormDialogComponent | typeof UlvSettingsComponent | typeof UiFormPanelToolbarComponent | typeof UiInfoBarPanelComponent | typeof UlvPagingComponent | typeof UlvToolbarComponent | typeof UlvSelectionComponent | typeof LyLayoutContainerOfRootComponent | typeof CardItemComponent | typeof BarsaUlvMainComponent | typeof ListItemComponent | typeof BarsaTableRowComponent | typeof BarsaTableColumnComponent | typeof BarsaTableHeaderComponent | typeof BreadcrumbComponent | typeof FormToolbarButtonComponent | typeof ReportNewTopFormComponent | typeof BarsaNetworkOfflineComponent | typeof FileViewerContentComponent | typeof FileViewerComponent | typeof BlobViewerComponent | typeof ExecutePushNotificationCommandComponent | typeof BarsaCartableFormComponent | typeof BarsaCartableGroupComponent)[];
|
|
87
90
|
export declare const pipes: (typeof MatrixValuePipe | typeof DynamicPageSizePipe | typeof StringToArrayPipe | typeof UploadFileStatusPipe | typeof SapFontPipe | typeof SapFontClassPipe | typeof NodeHasOneDepthLevelPipe)[];
|
|
88
91
|
export declare const directives: (typeof WizardLayoutDirective | typeof ColRendererDirective | typeof ApplyConditionalFormatsDirective | typeof ReportViewRendererDirective | typeof FullscreenDialogDirective | typeof FullscreenFilesDirective | typeof DownloadFilesDirective)[];
|
|
89
92
|
export declare const INIT_SAPFIORI: (rtlService: RtlService, contentDensityService: GlobalContentDensityService, themeService: ThemesService, portalService: PortalService) => () => void;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { EjrayOlgo } from 'barsa-novin-ray-core';
|
|
2
3
|
import { MetaobjectDataModel, MoForReportModel, UiReportViewBaseSetting } from 'barsa-novin-ray-core';
|
|
3
4
|
export interface TableContext {
|
|
4
5
|
columns: number;
|
|
@@ -50,13 +51,7 @@ export interface UiCardListViewSetting extends UiReportViewBaseSetting {
|
|
|
50
51
|
ActionFieldName: string;
|
|
51
52
|
ActionFieldCommand: string;
|
|
52
53
|
CardWidth: string;
|
|
53
|
-
ContentComponent:
|
|
54
|
-
Module: string;
|
|
55
|
-
ModuleFileName: string;
|
|
56
|
-
Name: string;
|
|
57
|
-
Selector: string;
|
|
58
|
-
Settings: MetaobjectDataModel;
|
|
59
|
-
};
|
|
54
|
+
ContentComponent: EjrayOlgo;
|
|
60
55
|
}
|
|
61
56
|
export interface ActiveView {
|
|
62
57
|
template: TemplateRef<any>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ComponentRef, ElementRef, EventEmitter, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ContentDensity } from '@fundamental-ngx/core';
|
|
3
|
-
import { AbbrevationDeviceSize, BaseDirective, columnsResizedEventArgs, DefaultCommandsAccess, DeviceSize, FormSetting, MenuItem, MetaobjectDataModel, PortalService, RelationItemType, ReportViewBaseComponent, ReportViewColumn, SortSetting, UiReportViewBase, UiReportViewBaseSetting } from 'barsa-novin-ray-core';
|
|
3
|
+
import { AbbrevationDeviceSize, BaseDirective, columnsResizedEventArgs, DefaultCommandsAccess, DeviceSize, FormSetting, MenuItem, MetaobjectDataModel, PortalService, RelationItemType, ReportViewBaseComponent, ReportViewColumn, SortSetting, UiReportViewBase, UiReportViewBaseSetting, ShareButtonsChoiceDef } from 'barsa-novin-ray-core';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ReportViewRendererDirective extends BaseDirective implements OnChanges, OnInit, OnDestroy {
|
|
6
6
|
private _portalService;
|
|
@@ -56,6 +56,7 @@ export declare class ReportViewRendererDirective extends BaseDirective implement
|
|
|
56
56
|
sortAscending: EventEmitter<any>;
|
|
57
57
|
sortDescending: EventEmitter<any>;
|
|
58
58
|
filter: EventEmitter<any>;
|
|
59
|
+
deselectAll: EventEmitter<void>;
|
|
59
60
|
rowCheck: EventEmitter<{
|
|
60
61
|
mo: any;
|
|
61
62
|
index: any;
|
|
@@ -81,6 +82,7 @@ export declare class ReportViewRendererDirective extends BaseDirective implement
|
|
|
81
82
|
editFormPanelSave: EventEmitter<MetaobjectDataModel>;
|
|
82
83
|
columnResized: EventEmitter<columnsResizedEventArgs>;
|
|
83
84
|
selectNextInlineRecord: EventEmitter<MetaobjectDataModel>;
|
|
85
|
+
workflowShareButtons: EventEmitter<ShareButtonsChoiceDef>;
|
|
84
86
|
_reportViewRef: ComponentRef<ReportViewBaseComponent<UiReportViewBaseSetting>>;
|
|
85
87
|
constructor(_portalService: PortalService, _vcr: ViewContainerRef, _injector: Injector, _el: ElementRef);
|
|
86
88
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -88,5 +90,5 @@ export declare class ReportViewRendererDirective extends BaseDirective implement
|
|
|
88
90
|
ngOnDestroy(): void;
|
|
89
91
|
private _insertView;
|
|
90
92
|
static ɵfac: i0.ɵɵFactoryDeclaration<ReportViewRendererDirective, never>;
|
|
91
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ReportViewRendererDirective, "[reportViewRenderer]", never, { "view": "view"; "moDataList": "moDataList"; "allChecked": "allChecked"; "groupby": "groupby"; "isCheckList": "isCheckList"; "hasSummary": "hasSummary"; "relationList": "relationList"; "columns": "columns"; "columnsCount": "columnsCount"; "secondaryColumns": "secondaryColumns"; "contextMenuItems": "contextMenuItems"; "conditionalFormats": "conditionalFormats"; "deviceName": "deviceName"; "deviceSize": "deviceSize"; "mobileOrTablet": "mobileOrTablet"; "access": "access"; "title": "title"; "customFieldInfo": "customFieldInfo"; "allColumns": "allColumns"; "viewSetting": "viewSetting"; "inlineEditMode": "inlineEditMode"; "onlyInlineEdit": "onlyInlineEdit"; "allowInlineEdit": "allowInlineEdit"; "popin": "popin"; "formSetting": "formSetting"; "disableOverflowContextMenu": "disableOverflowContextMenu"; "navigationArrow": "navigationArrow"; "typeDefId": "typeDefId"; "containerWidth": "containerWidth"; "extraRelation": "extraRelation"; "contextView": "contextView"; "contentDensity": "contentDensity"; "hideOpenIcon": "hideOpenIcon"; "openOnClick": "openOnClick"; "inDialog": "inDialog"; "isMultiSelect": "isMultiSelect"; "disableResponsive": "disableResponsive"; "cartableTemplates": "cartableTemplates"; "cartableChildsMo": "cartableChildsMo"; }, { "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "filter": "filter"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "editFormPanelSave": "editFormPanelSave"; "columnResized": "columnResized"; "selectNextInlineRecord": "selectNextInlineRecord"; }, never, never, false>;
|
|
93
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ReportViewRendererDirective, "[reportViewRenderer]", never, { "view": "view"; "moDataList": "moDataList"; "allChecked": "allChecked"; "groupby": "groupby"; "isCheckList": "isCheckList"; "hasSummary": "hasSummary"; "relationList": "relationList"; "columns": "columns"; "columnsCount": "columnsCount"; "secondaryColumns": "secondaryColumns"; "contextMenuItems": "contextMenuItems"; "conditionalFormats": "conditionalFormats"; "deviceName": "deviceName"; "deviceSize": "deviceSize"; "mobileOrTablet": "mobileOrTablet"; "access": "access"; "title": "title"; "customFieldInfo": "customFieldInfo"; "allColumns": "allColumns"; "viewSetting": "viewSetting"; "inlineEditMode": "inlineEditMode"; "onlyInlineEdit": "onlyInlineEdit"; "allowInlineEdit": "allowInlineEdit"; "popin": "popin"; "formSetting": "formSetting"; "disableOverflowContextMenu": "disableOverflowContextMenu"; "navigationArrow": "navigationArrow"; "typeDefId": "typeDefId"; "containerWidth": "containerWidth"; "extraRelation": "extraRelation"; "contextView": "contextView"; "contentDensity": "contentDensity"; "hideOpenIcon": "hideOpenIcon"; "openOnClick": "openOnClick"; "inDialog": "inDialog"; "isMultiSelect": "isMultiSelect"; "disableResponsive": "disableResponsive"; "cartableTemplates": "cartableTemplates"; "cartableChildsMo": "cartableChildsMo"; }, { "editFormPanelCancel": "editFormPanelCancel"; "editFormPanelValueChange": "editFormPanelValueChange"; "ulvCommandClick": "ulvCommandClick"; "sortAscending": "sortAscending"; "sortDescending": "sortDescending"; "filter": "filter"; "deselectAll": "deselectAll"; "rowCheck": "rowCheck"; "rowClick": "rowClick"; "expandClick": "expandClick"; "trackBySelectedFn": "trackBySelectedFn"; "cartableFormClosed": "cartableFormClosed"; "createNewMo": "createNewMo"; "updateMo": "updateMo"; "allCheckbox": "allCheckbox"; "mandatory": "mandatory"; "editFormPanelSave": "editFormPanelSave"; "columnResized": "columnResized"; "selectNextInlineRecord": "selectNextInlineRecord"; "workflowShareButtons": "workflowShareButtons"; }, never, never, false>;
|
|
92
94
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { FieldBaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
interface SettingsMo extends MetaobjectDataModel {
|
|
@@ -18,6 +18,10 @@ export declare class RichTextStaticComponent extends FieldBaseComponent implemen
|
|
|
18
18
|
}];
|
|
19
19
|
};
|
|
20
20
|
ngOnInit(): void;
|
|
21
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
22
|
+
protected _updateText(parameters: MetaobjectDataModel): void;
|
|
23
|
+
protected get moContext(): MetaobjectDataModel;
|
|
24
|
+
protected _getPlaceholderValue(mo: MetaobjectDataModel, placeholder: string): any;
|
|
21
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<RichTextStaticComponent, never>;
|
|
22
26
|
static ɵcmp: i0.ɵɵComponentDeclaration<RichTextStaticComponent, "bsu-rich-text-static", never, { "settings": "settings"; }, {}, never, never, false>;
|
|
23
27
|
}
|
|
@@ -3,7 +3,7 @@ import { Overlay, ScrollStrategy } from '@angular/cdk/overlay';
|
|
|
3
3
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
4
4
|
import { ContentDensity, ContentDensityService, DialogConfig, DialogService, TableComponent, ToolbarComponent } from '@fundamental-ngx/core';
|
|
5
5
|
import { SelectionMode, TableDataSource } from '@fundamental-ngx/platform';
|
|
6
|
-
import { columnsResizedEventArgs, DefaultCommandsAccess, DeviceSize, FormPanelService, LayoutService, MetaobjectDataModel, PortalService, ReportBaseComponent, ReportViewColumn, UiReportViewBaseSetting, UlvMainService } from 'barsa-novin-ray-core';
|
|
6
|
+
import { columnsResizedEventArgs, DefaultCommandsAccess, DeviceSize, FormPanelService, LayoutService, MetaobjectDataModel, PortalService, ReportBaseComponent, ReportViewColumn, UiReportViewBaseSetting, UlvMainService, ShareButtonsChoiceDef } from 'barsa-novin-ray-core';
|
|
7
7
|
import { LayoutControlComponent } from './layout-control/layout-control.component';
|
|
8
8
|
import { GridMoDataList } from './models';
|
|
9
9
|
import * as i0 from "@angular/core";
|
|
@@ -85,8 +85,10 @@ export declare class SapUiReportBaseComponent<T extends UiReportViewBaseSetting>
|
|
|
85
85
|
onEditFormPanelCancel(mo: MetaobjectDataModel): void;
|
|
86
86
|
onEditFormPanelValueChange(mo: MetaobjectDataModel): void;
|
|
87
87
|
onColumnResized(columns: columnsResizedEventArgs): void;
|
|
88
|
+
onWorkflowShareButtons(e: ShareButtonsChoiceDef): void;
|
|
88
89
|
onRowClick($event: any): void;
|
|
89
90
|
onUlvCommand($event: any): void;
|
|
91
|
+
onDeselectAll(): void;
|
|
90
92
|
onRowCheck($event: any): void;
|
|
91
93
|
onCartableFormClosed({ mo }: {
|
|
92
94
|
mo: any;
|
|
@@ -18,6 +18,7 @@ export declare class UiFormPanelComponent extends FormBaseComponent {
|
|
|
18
18
|
rtl$: Observable<boolean>;
|
|
19
19
|
canSend$: Observable<boolean>;
|
|
20
20
|
portrait$: Observable<boolean>;
|
|
21
|
+
standalone$: Observable<boolean>;
|
|
21
22
|
constructor(_breadcrumbService: BreadcrumbService, _contentDensityService: ContentDensityService, _portalService: PortalService, _activatedRoute: ActivatedRoute, _router: Router, _formPanelService: FormPanelService);
|
|
22
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiFormPanelComponent, [null, null, null, null, null, { self: true; }]>;
|
|
23
24
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiFormPanelComponent, "bsu-ui-form-panel", never, {}, {}, never, never, false>;
|
|
@@ -1,12 +1,20 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { Size } from '@fundamental-ngx/core';
|
|
3
|
-
import { ReportViewBaseComponent } from 'barsa-novin-ray-core';
|
|
3
|
+
import { EjrayOlgo, MetaobjectDataModel, ReportViewBaseComponent, ReportViewColumn } from 'barsa-novin-ray-core';
|
|
4
4
|
import { UiListViewSetting } from '../models/grid-view';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class UiListViewComponent extends ReportViewBaseComponent<UiListViewSetting> implements OnInit {
|
|
7
7
|
listSetting: UiListViewSetting;
|
|
8
8
|
avatarSize: Size;
|
|
9
9
|
isDisplayType: boolean;
|
|
10
|
+
detailsColumns: ReportViewColumn[];
|
|
11
|
+
detailsComponent: EjrayOlgo;
|
|
12
|
+
showDetailsInRow: boolean;
|
|
13
|
+
hasRowOlgo: boolean;
|
|
14
|
+
columnComponents: {
|
|
15
|
+
column: ReportViewColumn;
|
|
16
|
+
component: MetaobjectDataModel;
|
|
17
|
+
}[];
|
|
10
18
|
ngOnInit(): void;
|
|
11
19
|
onListCheckboxClick(mo: any, index: any): void;
|
|
12
20
|
onListNavigationClick(mo: any, index: any): void;
|
|
@@ -14,6 +14,7 @@ export declare class UiTableViewComponent extends ReportViewBaseComponent<UiTabl
|
|
|
14
14
|
detailsColumns: ReportViewColumn[];
|
|
15
15
|
detailsComponent: EjrayOlgo;
|
|
16
16
|
showDetailsInRow: boolean;
|
|
17
|
+
hasRowOlgo: boolean;
|
|
17
18
|
columnComponents: {
|
|
18
19
|
column: ReportViewColumn;
|
|
19
20
|
component: MetaobjectDataModel;
|
|
@@ -23,8 +24,6 @@ export declare class UiTableViewComponent extends ReportViewBaseComponent<UiTabl
|
|
|
23
24
|
protected _setHeight(parentHeight: number): void;
|
|
24
25
|
protected _setHasSummery(cartableTemplates: any): void;
|
|
25
26
|
protected _containerWidthChanged(val: number): void;
|
|
26
|
-
private _setColumnsComponent;
|
|
27
|
-
private findColumn;
|
|
28
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<UiTableViewComponent, never>;
|
|
29
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<UiTableViewComponent, "bsu-ui-table-view", never, { "columnWidth": "columnWidth"; "minWidth": "minWidth"; "minHeight": "minHeight"; "rowResizer": "rowResizer"; "enableResizing": "enableResizing"; }, {}, never, never, false>;
|
|
30
29
|
}
|
|
@@ -9,6 +9,7 @@ export declare class UlvContextMenuComponent extends BaseComponent implements On
|
|
|
9
9
|
allColumns: ReportViewColumn[];
|
|
10
10
|
index: number;
|
|
11
11
|
mo: MetaobjectDataModel;
|
|
12
|
+
styleIndex: number[];
|
|
12
13
|
conditionalFormats: any[];
|
|
13
14
|
disableOverflowContextMenu: boolean;
|
|
14
15
|
footerMode: boolean;
|
|
@@ -26,5 +27,5 @@ export declare class UlvContextMenuComponent extends BaseComponent implements On
|
|
|
26
27
|
onOpenOverflow(e: any): void;
|
|
27
28
|
onCommandSplitButtonClick(e: any, btn: any): void;
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<UlvContextMenuComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UlvContextMenuComponent, "bsu-ulv-context-menu,[ulvContextMenu]", never, { "onlyOverflow": "onlyOverflow"; "deviceName": "deviceName"; "menuItems": "menuItems"; "allColumns": "allColumns"; "index": "index"; "mo": "mo"; "conditionalFormats": "conditionalFormats"; "disableOverflowContextMenu": "disableOverflowContextMenu"; "footerMode": "footerMode"; }, { "commandClick": "commandClick"; }, never, never, false>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UlvContextMenuComponent, "bsu-ulv-context-menu,[ulvContextMenu]", never, { "onlyOverflow": "onlyOverflow"; "deviceName": "deviceName"; "menuItems": "menuItems"; "allColumns": "allColumns"; "index": "index"; "mo": "mo"; "styleIndex": "styleIndex"; "conditionalFormats": "conditionalFormats"; "disableOverflowContextMenu": "disableOverflowContextMenu"; "footerMode": "footerMode"; }, { "commandClick": "commandClick"; }, never, never, false>;
|
|
30
31
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -149,6 +149,7 @@ export * from './lib/barsa-ulv-main/barsa-ulv-main.component';
|
|
|
149
149
|
export * from './lib/list-item/list-item.component';
|
|
150
150
|
export * from './lib/htree-create-new/htree-create-new.component';
|
|
151
151
|
export * from './lib/barsa-table-row/barsa-table-row.component';
|
|
152
|
+
export * from './lib/barsa-table-column/barsa-table-column.component';
|
|
152
153
|
export * from './lib/barsa-table-header/barsa-table-header.component';
|
|
153
154
|
export * from './lib/breadcrumb/breadcrumb.component';
|
|
154
155
|
export * from './lib/device-info-field-base';
|
|
@@ -165,5 +166,9 @@ export * from './lib/fullscreen-files.directive';
|
|
|
165
166
|
export * from './lib/download-files.directive';
|
|
166
167
|
export * from './lib/execute-push-notification-command/execute-push-notification-command.component';
|
|
167
168
|
export * from './lib/notification-item/notification-item.component';
|
|
169
|
+
export * from './lib/barsa-cartable-template/barsa-cartable-template.component';
|
|
170
|
+
export * from './lib/barsa-cartable-form/barsa-cartable-form.component';
|
|
171
|
+
export * from './lib/barsa-group-cartable/barsa-cartable-group.component';
|
|
172
|
+
export * from './lib/barsa-column-indicator/barsa-column-indicator.component';
|
|
168
173
|
export * from './lib/constants';
|
|
169
174
|
export * from './lib/barsa-sap-ui.module';
|