barsa-novin-ray-core 0.0.2
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/README.md +25 -0
- package/esm2020/barsa-novin-ray-core.mjs +5 -0
- package/esm2020/lib/abstract-classes/application-base.mjs +24 -0
- package/esm2020/lib/abstract-classes/barsa-api.mjs +40 -0
- package/esm2020/lib/abstract-classes/field-base.mjs +167 -0
- package/esm2020/lib/abstract-classes/files-validation-helper.mjs +71 -0
- package/esm2020/lib/abstract-classes/form-base.mjs +101 -0
- package/esm2020/lib/abstract-classes/form-props.base.mjs +79 -0
- package/esm2020/lib/abstract-classes/form-toolbar-base.mjs +45 -0
- package/esm2020/lib/abstract-classes/index.mjs +21 -0
- package/esm2020/lib/abstract-classes/layout-item-base.mjs +33 -0
- package/esm2020/lib/abstract-classes/layout-panel-base.mjs +80 -0
- package/esm2020/lib/abstract-classes/models.mjs +172 -0
- package/esm2020/lib/abstract-classes/module-with-dynamic-components.mjs +2 -0
- package/esm2020/lib/abstract-classes/number-base.mjs +117 -0
- package/esm2020/lib/abstract-classes/page-base.mjs +97 -0
- package/esm2020/lib/abstract-classes/report-base.mjs +231 -0
- package/esm2020/lib/abstract-classes/report-item-base.mjs +53 -0
- package/esm2020/lib/abstract-classes/report-view-base.component.mjs +262 -0
- package/esm2020/lib/abstract-classes/system-base.mjs +24 -0
- package/esm2020/lib/auth-guard.mjs +37 -0
- package/esm2020/lib/barsa-novin-ray-core-routing.module.mjs +18 -0
- package/esm2020/lib/barsa-novin-ray-core.module.mjs +271 -0
- package/esm2020/lib/base-ulv-setting.component.mjs +37 -0
- package/esm2020/lib/base.component.mjs +59 -0
- package/esm2020/lib/base.module.mjs +28 -0
- package/esm2020/lib/constants.mjs +441 -0
- package/esm2020/lib/container.component.mjs +76 -0
- package/esm2020/lib/custom-route-reuse-strategy.mjs +32 -0
- package/esm2020/lib/date-services/date-hijri.service.mjs +127 -0
- package/esm2020/lib/date-services/date-info.mjs +2 -0
- package/esm2020/lib/date-services/date-miladi.service.mjs +124 -0
- package/esm2020/lib/date-services/date-shamsi.service.mjs +129 -0
- package/esm2020/lib/date-services/date.service.mjs +139 -0
- package/esm2020/lib/date-services/index.mjs +6 -0
- package/esm2020/lib/device.mjs +663 -0
- package/esm2020/lib/directives/anchor-scroll.directive.mjs +24 -0
- package/esm2020/lib/directives/attr-rtl.directive.mjs +35 -0
- package/esm2020/lib/directives/base.directive.mjs +51 -0
- package/esm2020/lib/directives/column-resizer.directive.mjs +39 -0
- package/esm2020/lib/directives/dynamic-command.directive.mjs +43 -0
- package/esm2020/lib/directives/ellipsify.directive.mjs +72 -0
- package/esm2020/lib/directives/field-binding.directive.mjs +17 -0
- package/esm2020/lib/directives/img-lazy.directive.mjs +75 -0
- package/esm2020/lib/directives/index.mjs +19 -0
- package/esm2020/lib/directives/intersection-observer.directive.mjs +49 -0
- package/esm2020/lib/directives/items-renderer.directive.mjs +59 -0
- package/esm2020/lib/directives/numbers-only-input.directive.mjs +26 -0
- package/esm2020/lib/directives/placeHolder.directive.mjs +15 -0
- package/esm2020/lib/directives/render-ulv-paging.directive.mjs +58 -0
- package/esm2020/lib/directives/render-ulv-viewer.directive.mjs +60 -0
- package/esm2020/lib/directives/table-resizer.directive.mjs +235 -0
- package/esm2020/lib/directives/ulv-command.directive.mjs +41 -0
- package/esm2020/lib/directives/until-inview.directive.mjs +51 -0
- package/esm2020/lib/dynamic-component/base-dynamic.component.mjs +89 -0
- package/esm2020/lib/dynamic-component/base-form-toolbaritem-props.mjs +50 -0
- package/esm2020/lib/dynamic-component/base-item-content-props.mjs +70 -0
- package/esm2020/lib/dynamic-component/base-view-content-props.mjs +26 -0
- package/esm2020/lib/dynamic-component/base-view-item-props.mjs +374 -0
- package/esm2020/lib/dynamic-component/base-view-props.mjs +127 -0
- package/esm2020/lib/dynamic-component/dynamic-form-toolbar-item.component.mjs +36 -0
- package/esm2020/lib/dynamic-component/dynamic-form.component.mjs +62 -0
- package/esm2020/lib/dynamic-component/dynamic-item.component.mjs +60 -0
- package/esm2020/lib/dynamic-component/index.mjs +10 -0
- package/esm2020/lib/empty-page-with-router-and-router-outlet/empty-page-with-router-and-router-outlet.component.mjs +16 -0
- package/esm2020/lib/field-ui/field-ui.component.mjs +116 -0
- package/esm2020/lib/form/form.component.mjs +151 -0
- package/esm2020/lib/form-new/form-new.component.mjs +30 -0
- package/esm2020/lib/from-intersection-observer.mjs +53 -0
- package/esm2020/lib/global-error-handler.mjs +26 -0
- package/esm2020/lib/modal-root.component.mjs +31 -0
- package/esm2020/lib/not-found/not-found.component.mjs +16 -0
- package/esm2020/lib/pipes/barsa-icon-dict.pipe.mjs +18 -0
- package/esm2020/lib/pipes/bbb-translate.pipe.mjs +29 -0
- package/esm2020/lib/pipes/can-upload.pipe.mjs +30 -0
- package/esm2020/lib/pipes/context-menu.pipe.mjs +40 -0
- package/esm2020/lib/pipes/control-ui.pipe.mjs +31 -0
- package/esm2020/lib/pipes/convert-to-style.pipe.mjs +32 -0
- package/esm2020/lib/pipes/date-time-to-caption.pipe.mjs +34 -0
- package/esm2020/lib/pipes/fileinfo-count.pipe.mjs +20 -0
- package/esm2020/lib/pipes/filter-columns-by-details.pipe.mjs +20 -0
- package/esm2020/lib/pipes/filter-string.pipe.mjs +44 -0
- package/esm2020/lib/pipes/filter-tab.pipe.mjs +19 -0
- package/esm2020/lib/pipes/filter-toolbar-control.pipe.mjs +16 -0
- package/esm2020/lib/pipes/filter.pipe.mjs +33 -0
- package/esm2020/lib/pipes/find-column-by-db-name.pipe.mjs +17 -0
- package/esm2020/lib/pipes/fiori-icon.pipe.mjs +42 -0
- package/esm2020/lib/pipes/groupby.pipe.mjs +48 -0
- package/esm2020/lib/pipes/header-facet-value.pipe.mjs +22 -0
- package/esm2020/lib/pipes/index.mjs +33 -0
- package/esm2020/lib/pipes/list-count.pipe.mjs +17 -0
- package/esm2020/lib/pipes/merge-fields-to-columns.pipe.mjs +42 -0
- package/esm2020/lib/pipes/mo-info-ulv-data.pipe.mjs +24 -0
- package/esm2020/lib/pipes/mo-report-value-concat.pipe.mjs +35 -0
- package/esm2020/lib/pipes/mo-report-value.pipe.mjs +28 -0
- package/esm2020/lib/pipes/mo-value.pipe.mjs +31 -0
- package/esm2020/lib/pipes/multiple-groupby.pipe.mjs +97 -0
- package/esm2020/lib/pipes/numeral.pipe.mjs +40 -0
- package/esm2020/lib/pipes/picture-field-source.pipe.mjs +22 -0
- package/esm2020/lib/pipes/remove-newline.pipe.mjs +20 -0
- package/esm2020/lib/pipes/seperator-fix.pipe.mjs +23 -0
- package/esm2020/lib/pipes/sort.pipe.mjs +48 -0
- package/esm2020/lib/pipes/tlbButtons.pipe.mjs +58 -0
- package/esm2020/lib/pipes/total-summary.pipe.mjs +16 -0
- package/esm2020/lib/pipes/visible-value.pipe.mjs +24 -0
- package/esm2020/lib/portal-page/portal-page.component.mjs +13 -0
- package/esm2020/lib/redirect-home-guard.mjs +28 -0
- package/esm2020/lib/redirect-report-navigator-command/redirect-report-navigator-command.component.mjs +33 -0
- package/esm2020/lib/report-container/report-container.component.mjs +52 -0
- package/esm2020/lib/resolvers/index.mjs +5 -0
- package/esm2020/lib/resolvers/portal-dynamic-page.resolver.mjs +49 -0
- package/esm2020/lib/resolvers/portal-form-page.resolver.mjs +18 -0
- package/esm2020/lib/resolvers/portal-page.resolver.mjs +30 -0
- package/esm2020/lib/resolvers/portal-report-page.resolver.mjs +37 -0
- package/esm2020/lib/root-page/root-page.component.mjs +21 -0
- package/esm2020/lib/root-portal/root-portal.component.mjs +51 -0
- package/esm2020/lib/services/api.service.mjs +60 -0
- package/esm2020/lib/services/barsa-dialog.service.mjs +80 -0
- package/esm2020/lib/services/breadcrumb.service.mjs +60 -0
- package/esm2020/lib/services/container.service.mjs +36 -0
- package/esm2020/lib/services/dynamic-component.service.mjs +55 -0
- package/esm2020/lib/services/form-panel.service.mjs +235 -0
- package/esm2020/lib/services/form.service.mjs +14 -0
- package/esm2020/lib/services/horizontal-layout.service.mjs +16 -0
- package/esm2020/lib/services/index.mjs +16 -0
- package/esm2020/lib/services/layout.service.mjs +42 -0
- package/esm2020/lib/services/log.service.mjs +50 -0
- package/esm2020/lib/services/network-status.service.mjs +15 -0
- package/esm2020/lib/services/portal.service.mjs +638 -0
- package/esm2020/lib/services/ui.service.mjs +23 -0
- package/esm2020/lib/services/ulvmain.service.mjs +594 -0
- package/esm2020/lib/services/upload.service.mjs +75 -0
- package/esm2020/public-api.mjs +33 -0
- package/fesm2015/barsa-novin-ray-core.mjs +9047 -0
- package/fesm2015/barsa-novin-ray-core.mjs.map +1 -0
- package/fesm2020/barsa-novin-ray-core.mjs +8945 -0
- package/fesm2020/barsa-novin-ray-core.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/abstract-classes/application-base.d.ts +53 -0
- package/lib/abstract-classes/barsa-api.d.ts +28 -0
- package/lib/abstract-classes/field-base.d.ts +81 -0
- package/lib/abstract-classes/files-validation-helper.d.ts +15 -0
- package/lib/abstract-classes/form-base.d.ts +59 -0
- package/lib/abstract-classes/form-props.base.d.ts +45 -0
- package/lib/abstract-classes/form-toolbar-base.d.ts +17 -0
- package/lib/abstract-classes/index.d.ts +20 -0
- package/lib/abstract-classes/layout-item-base.d.ts +15 -0
- package/lib/abstract-classes/layout-panel-base.d.ts +24 -0
- package/lib/abstract-classes/models.d.ts +660 -0
- package/lib/abstract-classes/module-with-dynamic-components.d.ts +4 -0
- package/lib/abstract-classes/number-base.d.ts +20 -0
- package/lib/abstract-classes/page-base.d.ts +31 -0
- package/lib/abstract-classes/report-base.d.ts +97 -0
- package/lib/abstract-classes/report-item-base.d.ts +33 -0
- package/lib/abstract-classes/report-view-base.component.d.ts +130 -0
- package/lib/abstract-classes/system-base.d.ts +45 -0
- package/lib/auth-guard.d.ts +12 -0
- package/lib/barsa-novin-ray-core-routing.module.d.ts +7 -0
- package/lib/barsa-novin-ray-core.module.d.ts +88 -0
- package/lib/base-ulv-setting.component.d.ts +18 -0
- package/lib/base.component.d.ts +15 -0
- package/lib/base.module.d.ts +13 -0
- package/lib/constants.d.ts +89 -0
- package/lib/container.component.d.ts +33 -0
- package/lib/custom-route-reuse-strategy.d.ts +11 -0
- package/lib/date-services/date-hijri.service.d.ts +40 -0
- package/lib/date-services/date-info.d.ts +15 -0
- package/lib/date-services/date-miladi.service.d.ts +39 -0
- package/lib/date-services/date-shamsi.service.d.ts +40 -0
- package/lib/date-services/date.service.d.ts +54 -0
- package/lib/date-services/index.d.ts +5 -0
- package/lib/device.d.ts +15 -0
- package/lib/directives/anchor-scroll.directive.d.ts +7 -0
- package/lib/directives/attr-rtl.directive.d.ts +13 -0
- package/lib/directives/base.directive.d.ts +13 -0
- package/lib/directives/column-resizer.directive.d.ts +13 -0
- package/lib/directives/dynamic-command.directive.d.ts +12 -0
- package/lib/directives/ellipsify.directive.d.ts +17 -0
- package/lib/directives/field-binding.directive.d.ts +7 -0
- package/lib/directives/img-lazy.directive.d.ts +20 -0
- package/lib/directives/index.d.ts +18 -0
- package/lib/directives/intersection-observer.directive.d.ts +17 -0
- package/lib/directives/items-renderer.directive.d.ts +17 -0
- package/lib/directives/numbers-only-input.directive.d.ts +9 -0
- package/lib/directives/placeHolder.directive.d.ts +6 -0
- package/lib/directives/render-ulv-paging.directive.d.ts +19 -0
- package/lib/directives/render-ulv-viewer.directive.d.ts +19 -0
- package/lib/directives/table-resizer.directive.d.ts +47 -0
- package/lib/directives/ulv-command.directive.d.ts +11 -0
- package/lib/directives/until-inview.directive.d.ts +17 -0
- package/lib/dynamic-component/base-dynamic.component.d.ts +26 -0
- package/lib/dynamic-component/base-form-toolbaritem-props.d.ts +28 -0
- package/lib/dynamic-component/base-item-content-props.d.ts +40 -0
- package/lib/dynamic-component/base-view-content-props.d.ts +11 -0
- package/lib/dynamic-component/base-view-item-props.d.ts +95 -0
- package/lib/dynamic-component/base-view-props.d.ts +65 -0
- package/lib/dynamic-component/dynamic-form-toolbar-item.component.d.ts +18 -0
- package/lib/dynamic-component/dynamic-form.component.d.ts +33 -0
- package/lib/dynamic-component/dynamic-item.component.d.ts +30 -0
- package/lib/dynamic-component/index.d.ts +9 -0
- package/lib/empty-page-with-router-and-router-outlet/empty-page-with-router-and-router-outlet.component.d.ts +7 -0
- package/lib/field-ui/field-ui.component.d.ts +27 -0
- package/lib/form/form.component.d.ts +36 -0
- package/lib/form-new/form-new.component.d.ts +23 -0
- package/lib/from-intersection-observer.d.ts +7 -0
- package/lib/global-error-handler.d.ts +8 -0
- package/lib/modal-root.component.d.ts +15 -0
- package/lib/not-found/not-found.component.d.ts +8 -0
- package/lib/pipes/barsa-icon-dict.pipe.d.ts +9 -0
- package/lib/pipes/bbb-translate.pipe.d.ts +7 -0
- package/lib/pipes/can-upload.pipe.d.ts +8 -0
- package/lib/pipes/context-menu.pipe.d.ts +11 -0
- package/lib/pipes/control-ui.pipe.d.ts +9 -0
- package/lib/pipes/convert-to-style.pipe.d.ts +8 -0
- package/lib/pipes/date-time-to-caption.pipe.d.ts +9 -0
- package/lib/pipes/fileinfo-count.pipe.d.ts +10 -0
- package/lib/pipes/filter-columns-by-details.pipe.d.ts +8 -0
- package/lib/pipes/filter-string.pipe.d.ts +11 -0
- package/lib/pipes/filter-tab.pipe.d.ts +7 -0
- package/lib/pipes/filter-toolbar-control.pipe.d.ts +8 -0
- package/lib/pipes/filter.pipe.d.ts +10 -0
- package/lib/pipes/find-column-by-db-name.pipe.d.ts +8 -0
- package/lib/pipes/fiori-icon.pipe.d.ts +7 -0
- package/lib/pipes/groupby.pipe.d.ts +7 -0
- package/lib/pipes/header-facet-value.pipe.d.ts +8 -0
- package/lib/pipes/index.d.ts +32 -0
- package/lib/pipes/list-count.pipe.d.ts +8 -0
- package/lib/pipes/merge-fields-to-columns.pipe.d.ts +10 -0
- package/lib/pipes/mo-info-ulv-data.pipe.d.ts +7 -0
- package/lib/pipes/mo-report-value-concat.pipe.d.ts +9 -0
- package/lib/pipes/mo-report-value.pipe.d.ts +12 -0
- package/lib/pipes/mo-value.pipe.d.ts +9 -0
- package/lib/pipes/multiple-groupby.pipe.d.ts +23 -0
- package/lib/pipes/numeral.pipe.d.ts +9 -0
- package/lib/pipes/picture-field-source.pipe.d.ts +8 -0
- package/lib/pipes/remove-newline.pipe.d.ts +8 -0
- package/lib/pipes/seperator-fix.pipe.d.ts +7 -0
- package/lib/pipes/sort.pipe.d.ts +9 -0
- package/lib/pipes/tlbButtons.pipe.d.ts +9 -0
- package/lib/pipes/total-summary.pipe.d.ts +8 -0
- package/lib/pipes/visible-value.pipe.d.ts +8 -0
- package/lib/portal-page/portal-page.component.d.ts +6 -0
- package/lib/redirect-home-guard.d.ts +13 -0
- package/lib/redirect-report-navigator-command/redirect-report-navigator-command.component.d.ts +14 -0
- package/lib/report-container/report-container.component.d.ts +24 -0
- package/lib/resolvers/index.d.ts +4 -0
- package/lib/resolvers/portal-dynamic-page.resolver.d.ts +12 -0
- package/lib/resolvers/portal-form-page.resolver.d.ts +8 -0
- package/lib/resolvers/portal-page.resolver.d.ts +12 -0
- package/lib/resolvers/portal-report-page.resolver.d.ts +12 -0
- package/lib/root-page/root-page.component.d.ts +10 -0
- package/lib/root-portal/root-portal.component.d.ts +14 -0
- package/lib/services/api.service.d.ts +18 -0
- package/lib/services/barsa-dialog.service.d.ts +31 -0
- package/lib/services/breadcrumb.service.d.ts +14 -0
- package/lib/services/container.service.d.ts +14 -0
- package/lib/services/dynamic-component.service.d.ts +13 -0
- package/lib/services/form-panel.service.d.ts +83 -0
- package/lib/services/form.service.d.ts +8 -0
- package/lib/services/horizontal-layout.service.d.ts +7 -0
- package/lib/services/index.d.ts +15 -0
- package/lib/services/layout.service.d.ts +23 -0
- package/lib/services/log.service.d.ts +17 -0
- package/lib/services/network-status.service.d.ts +7 -0
- package/lib/services/portal.service.d.ts +130 -0
- package/lib/services/ui.service.d.ts +14 -0
- package/lib/services/ulvmain.service.d.ts +178 -0
- package/lib/services/upload.service.d.ts +18 -0
- package/package.json +38 -0
- package/public-api.d.ts +29 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MoInfoUlvMoListPipe implements PipeTransform {
|
|
4
|
+
transform(loading: boolean, isDataLoadedFirstTime: boolean, ulvAdapter?: any, ulvUi?: any): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoInfoUlvMoListPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MoInfoUlvMoListPipe, "moInfoUlvMoList", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { MetaobjectDataModel } from '../abstract-classes/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MoReportValueConcatPipe implements PipeTransform {
|
|
5
|
+
constructor();
|
|
6
|
+
transform(names: string[], symbol: string, mo: MetaobjectDataModel, Columns?: any[]): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoReportValueConcatPipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MoReportValueConcatPipe, "rvalConcat", false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { MetaobjectDataModel } from '../abstract-classes/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MoReportValuePipe implements PipeTransform {
|
|
5
|
+
transform(name: string, mo: MetaobjectDataModel, Columns?: {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
Name: string;
|
|
8
|
+
Caption: string;
|
|
9
|
+
}[], caption?: boolean): any;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoReportValuePipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MoReportValuePipe, "rval", false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { MetaobjectDataModel } from '../abstract-classes/models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MoValuePipe implements PipeTransform {
|
|
5
|
+
constructor();
|
|
6
|
+
transform(name: string, mo: MetaobjectDataModel, caption?: boolean): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoValuePipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MoValuePipe, "val", false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { SortSetting } from '../abstract-classes';
|
|
3
|
+
import { BbbTranslatePipe } from '../pipes/bbb-translate.pipe';
|
|
4
|
+
import { VisibleValuePipe } from './visible-value.pipe';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class MultipleGroupByPipe implements PipeTransform {
|
|
7
|
+
private bbbPipe;
|
|
8
|
+
private visibleValuePipe;
|
|
9
|
+
constructor(bbbPipe: BbbTranslatePipe, visibleValuePipe: VisibleValuePipe);
|
|
10
|
+
transform(collection: any[], sortSettings: SortSetting[]): any;
|
|
11
|
+
prepareArr(arr: any, parent: Group | null, item: Group, maxlevel: any, level: any): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MultipleGroupByPipe, never>;
|
|
13
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MultipleGroupByPipe, "multipleGroupBy", false>;
|
|
14
|
+
}
|
|
15
|
+
export interface Group {
|
|
16
|
+
$Group: any;
|
|
17
|
+
$Level: number;
|
|
18
|
+
$Count: number;
|
|
19
|
+
$Expanded: boolean;
|
|
20
|
+
$Parent: any;
|
|
21
|
+
$Children: any[];
|
|
22
|
+
$Visibility: boolean;
|
|
23
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NumeralPipe implements PipeTransform {
|
|
4
|
+
transform(value: string | number, decimalPrecision: number, showThousandSeperator: boolean): string | number;
|
|
5
|
+
floor(num: any, precision: any): number;
|
|
6
|
+
getValue(value: any): string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumeralPipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<NumeralPipe, "numeral", false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PictureFieldSourcePipe implements PipeTransform {
|
|
4
|
+
constructor();
|
|
5
|
+
transform(value: string | any, type: string, moId: string | null, fieldDefId?: string, sw?: number, sh?: number): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PictureFieldSourcePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PictureFieldSourcePipe, "picFieldSrc", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class RemoveNewlinePipe implements PipeTransform {
|
|
4
|
+
constructor();
|
|
5
|
+
transform(text: string | undefined): string | undefined;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RemoveNewlinePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RemoveNewlinePipe, "removeNewline", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SeperatorFixPipe implements PipeTransform {
|
|
4
|
+
transform(buttons: any[]): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SeperatorFixPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SeperatorFixPipe, "seperatorFix", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare type SortOrder = 'asc' | 'desc';
|
|
4
|
+
export declare class SortPipe implements PipeTransform {
|
|
5
|
+
transform(value: any[], sortOrder?: SortOrder | string, sortKey?: string): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SortPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SortPipe, "sort", false>;
|
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SortPipe>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TlbButtonsPipe implements PipeTransform {
|
|
4
|
+
constructor();
|
|
5
|
+
transform(buttons: any[] | null, property: string | string[], value?: any | any[]): any[];
|
|
6
|
+
filterBtn(btn: any, property: any, value: any): boolean;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TlbButtonsPipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TlbButtonsPipe, "tlbButtons", false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { MetaobjectDataModel } from '../abstract-classes';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TotalSummaryPipe implements PipeTransform {
|
|
5
|
+
transform(moDataList: MetaobjectDataModel[], columnName: string): number;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TotalSummaryPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TotalSummaryPipe, "totalSummary", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class VisibleValuePipe implements PipeTransform {
|
|
4
|
+
constructor();
|
|
5
|
+
transform(object: any, feild: any): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<VisibleValuePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<VisibleValuePipe, "barsaVisibleValue", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PageBaseComponent } from '../abstract-classes';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PortalPageComponent extends PageBaseComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortalPageComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PortalPageComponent, "bnrc-portal-page", never, {}, {}, never, never, false>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { CanActivate, Router, UrlTree } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { PortalService } from './services/portal.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RedirectHomeGuard implements CanActivate {
|
|
6
|
+
private router;
|
|
7
|
+
protected portalService: PortalService;
|
|
8
|
+
constructor(router: Router, portalService: PortalService);
|
|
9
|
+
canActivate(): // activatedRouteSnapshot: ActivatedRouteSnapshot,
|
|
10
|
+
Observable<boolean | UrlTree> | Promise<boolean | UrlTree> | boolean | UrlTree;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RedirectHomeGuard, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RedirectHomeGuard>;
|
|
13
|
+
}
|
package/lib/redirect-report-navigator-command/redirect-report-navigator-command.component.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { MetaobjectDataModel } from '../abstract-classes';
|
|
3
|
+
import { BaseComponent } from '../base.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RedirectReportNavigatorCommandComponent extends BaseComponent {
|
|
6
|
+
private router;
|
|
7
|
+
settings: MetaobjectDataModel;
|
|
8
|
+
_Object: {
|
|
9
|
+
ShowSystemContainerPage: (navItem: any) => void;
|
|
10
|
+
};
|
|
11
|
+
constructor(router: Router);
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RedirectReportNavigatorCommandComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RedirectReportNavigatorCommandComponent, "bnrc-redirect-report-navigator-command", never, {}, {}, never, never, false>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Injector, OnInit, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { MetaobjectDataModel } from '../abstract-classes/models';
|
|
4
|
+
import { BaseComponent } from '../base.component';
|
|
5
|
+
import { PortalService } from '../services/portal.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface ReportSetting extends MetaobjectDataModel {
|
|
8
|
+
RelatedReport: MetaobjectDataModel;
|
|
9
|
+
RowClick: string;
|
|
10
|
+
DataOnly: boolean;
|
|
11
|
+
}
|
|
12
|
+
export declare class ReportContainerComponent extends BaseComponent implements OnInit {
|
|
13
|
+
private portalService;
|
|
14
|
+
private injector;
|
|
15
|
+
private vcr;
|
|
16
|
+
settings: ReportSetting;
|
|
17
|
+
loading$: Observable<boolean>;
|
|
18
|
+
private _loadingSource;
|
|
19
|
+
constructor(portalService: PortalService, injector: Injector, vcr: ViewContainerRef);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReportContainerComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ReportContainerComponent, "bnrc-report-container", never, { "settings": "settings"; }, {}, never, never, false>;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { PageDataModel } from '../abstract-classes';
|
|
4
|
+
import { PortalService } from '../services/portal.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PortalDynamicPageResolver implements Resolve<PageDataModel | null> {
|
|
7
|
+
private portalService;
|
|
8
|
+
constructor(portalService: PortalService);
|
|
9
|
+
resolve(route: ActivatedRouteSnapshot): Observable<PageDataModel | null>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortalDynamicPageResolver, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PortalDynamicPageResolver>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PortalFormPageResolver implements Resolve<string> {
|
|
4
|
+
constructor();
|
|
5
|
+
resolve(route: ActivatedRouteSnapshot): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortalFormPageResolver, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PortalFormPageResolver>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { PageDataModel } from '../abstract-classes/models';
|
|
4
|
+
import { PortalService } from '../services/portal.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PortalPageResolver implements Resolve<PageDataModel | null> {
|
|
7
|
+
private portalService;
|
|
8
|
+
constructor(portalService: PortalService);
|
|
9
|
+
resolve(route: ActivatedRouteSnapshot): Observable<PageDataModel | null>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortalPageResolver, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PortalPageResolver>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ActivatedRouteSnapshot, Resolve } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { PageDataModel } from '../abstract-classes';
|
|
4
|
+
import { PortalService } from '../services/portal.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PortalReportPageResolver implements Resolve<PageDataModel | null> {
|
|
7
|
+
private portalService;
|
|
8
|
+
constructor(portalService: PortalService);
|
|
9
|
+
resolve(route: ActivatedRouteSnapshot): Observable<PageDataModel | null>;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PortalReportPageResolver, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PortalReportPageResolver>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { BaseComponent } from '../base.component';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class RootPageComponent extends BaseComponent {
|
|
5
|
+
protected viewContainerRef: ViewContainerRef;
|
|
6
|
+
_pageContent: boolean;
|
|
7
|
+
constructor(viewContainerRef: ViewContainerRef);
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RootPageComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RootPageComponent, "bnrc-root-page", never, {}, {}, never, never, false>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { PageBaseComponent } from '../abstract-classes';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class RootPortalComponent extends PageBaseComponent implements OnInit {
|
|
6
|
+
sectionRef: ElementRef;
|
|
7
|
+
footerRef: ElementRef;
|
|
8
|
+
portalLoading$: Observable<boolean>;
|
|
9
|
+
modules: any;
|
|
10
|
+
isRoot: boolean;
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RootPortalComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RootPortalComponent, "bnrc-root-portal", never, {}, {}, never, never, false>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { LoginResult, PortalDataModel } from '../abstract-classes/models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ApiService {
|
|
6
|
+
private httpClient;
|
|
7
|
+
portalLoginUrl: string;
|
|
8
|
+
executeUrl: string;
|
|
9
|
+
constructor(httpClient: HttpClient);
|
|
10
|
+
loginPortal(): Observable<LoginResult>;
|
|
11
|
+
loadPortalPageData(pageId: any, typeDefId: any): Observable<any>;
|
|
12
|
+
loadPortal(portalId: any, typeDefId: any): Observable<PortalDataModel>;
|
|
13
|
+
loadPortalSync(portalId: any, typeDefId: any): PortalDataModel;
|
|
14
|
+
private getServerDataSync;
|
|
15
|
+
private loadFormAjax;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiService>;
|
|
18
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ComponentFactoryResolver, InjectFlags, InjectionToken, Injector, OnDestroy, Type, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { ContainerComponent } from '../container.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CustomInjector implements Injector {
|
|
7
|
+
private parentInjector;
|
|
8
|
+
private additionalTokens;
|
|
9
|
+
private activatedRoute?;
|
|
10
|
+
constructor(parentInjector: Injector, additionalTokens: WeakMap<any, any>, activatedRoute?: ActivatedRoute | undefined);
|
|
11
|
+
get<T>(token: Type<T> | InjectionToken<T>, notFoundValue?: T, flags?: InjectFlags): T;
|
|
12
|
+
}
|
|
13
|
+
export declare class DialogParams implements OnDestroy {
|
|
14
|
+
context: any;
|
|
15
|
+
afterClosed$: Observable<any>;
|
|
16
|
+
private afterClosed;
|
|
17
|
+
constructor();
|
|
18
|
+
close(result?: any): void;
|
|
19
|
+
ngOnDestroy(): void;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DialogParams, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DialogParams>;
|
|
22
|
+
}
|
|
23
|
+
export declare class BarsaDialogService {
|
|
24
|
+
protected factoryResolver: ComponentFactoryResolver;
|
|
25
|
+
protected injector: Injector;
|
|
26
|
+
containerComponent: ContainerComponent;
|
|
27
|
+
constructor(factoryResolver: ComponentFactoryResolver, injector: Injector);
|
|
28
|
+
showForm(component: Type<any>, context: any, container?: ViewContainerRef): Observable<any>;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaDialogService, never>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BarsaDialogService>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Router } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { BreadCrumbInfo } from './portal.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BreadcrumbService {
|
|
6
|
+
private router;
|
|
7
|
+
readonly breadcrumbs$: Observable<BreadCrumbInfo[]>;
|
|
8
|
+
private readonly _breadcrumbs$;
|
|
9
|
+
constructor(router: Router);
|
|
10
|
+
private addBreadcrumb;
|
|
11
|
+
private getLabel;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ContainerService implements OnDestroy {
|
|
4
|
+
private _parentService;
|
|
5
|
+
private _viewContainerRef;
|
|
6
|
+
private _viewRef;
|
|
7
|
+
constructor(_parentService: ContainerService);
|
|
8
|
+
ngOnDestroy(): void;
|
|
9
|
+
setViewContainerRef(viewContainerRef: ViewContainerRef): void;
|
|
10
|
+
private detach;
|
|
11
|
+
private insert;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContainerService, [{ optional: true; skipSelf: true; }]>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ContainerService>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Injector, ComponentRef, ComponentFactoryResolver } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicComponentService {
|
|
5
|
+
private cfr;
|
|
6
|
+
private _dynamicModuleWithComponents;
|
|
7
|
+
constructor(cfr: ComponentFactoryResolver);
|
|
8
|
+
addModuleWithComponents(moduleName: string, ngModuleRef: any): void;
|
|
9
|
+
getComponentBySelector(selector: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
10
|
+
getComponentByName(componentName: string, moduleName: string, injector: Injector): Observable<ComponentRef<unknown>>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicComponentService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { FormViewSetting, IHeaderLayout, LayoutSetting, MetaobjectDataModel } from '../abstract-classes/models';
|
|
3
|
+
import { BaseComponent } from '../base.component';
|
|
4
|
+
export declare class FormPanelService extends BaseComponent {
|
|
5
|
+
context$: Observable<any>;
|
|
6
|
+
searchPanelIsObject$: Observable<boolean>;
|
|
7
|
+
isSearchPanel$: Observable<boolean>;
|
|
8
|
+
workflowPanelUi$: Observable<any>;
|
|
9
|
+
mo$: Observable<MetaobjectDataModel>;
|
|
10
|
+
view$: Observable<any>;
|
|
11
|
+
toolbarItems$: Observable<any[]>;
|
|
12
|
+
maxContentWidth$: Observable<string>;
|
|
13
|
+
wizardNextStep$: Observable<void>;
|
|
14
|
+
layout$: Observable<any>;
|
|
15
|
+
forceClose$: Observable<void>;
|
|
16
|
+
groupLayout$: Observable<LayoutSetting>;
|
|
17
|
+
isSimpleForm$: Observable<boolean>;
|
|
18
|
+
formWidth$: Observable<string>;
|
|
19
|
+
toolbarVisible$: Observable<boolean>;
|
|
20
|
+
headerLayout$: Observable<IHeaderLayout>;
|
|
21
|
+
_hideClose$: BehaviorSubject<boolean>;
|
|
22
|
+
_hideTitle$: BehaviorSubject<boolean>;
|
|
23
|
+
_hidePin$: BehaviorSubject<boolean>;
|
|
24
|
+
title$: Observable<string>;
|
|
25
|
+
headerDescription$: Observable<string>;
|
|
26
|
+
headerRemoveContentPadding$: Observable<boolean>;
|
|
27
|
+
headerSubtitle$: Observable<string>;
|
|
28
|
+
avatar$: Observable<any>;
|
|
29
|
+
mask$: Observable<boolean>;
|
|
30
|
+
fieldDict$: Observable<{
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
} | undefined>;
|
|
33
|
+
private _context;
|
|
34
|
+
private _contextSource;
|
|
35
|
+
private _searchPanelIsObjectSource;
|
|
36
|
+
private _isSearchPanelSource;
|
|
37
|
+
private _workflowPanelUiSource;
|
|
38
|
+
private _moSource;
|
|
39
|
+
private _viewSource;
|
|
40
|
+
private _toolbarItemsSource;
|
|
41
|
+
private _titleSource;
|
|
42
|
+
private _maxContentWidthSource;
|
|
43
|
+
private _wizardNextStepSource;
|
|
44
|
+
private _layoutSource;
|
|
45
|
+
private _forceCloseSource;
|
|
46
|
+
private _groupBRuleSource;
|
|
47
|
+
private _isSimpleFormSource;
|
|
48
|
+
private _formWidthSource;
|
|
49
|
+
private _toolbarVisibleSource;
|
|
50
|
+
private _headerLayoutSource;
|
|
51
|
+
private _headerTitleSource;
|
|
52
|
+
private _maskSource;
|
|
53
|
+
private _headerRemoveContentPaddingSource;
|
|
54
|
+
private _headerDescriptionSource;
|
|
55
|
+
private _canSend$;
|
|
56
|
+
constructor();
|
|
57
|
+
get hidePin$(): Observable<boolean>;
|
|
58
|
+
get hideClose$(): Observable<boolean>;
|
|
59
|
+
get hideTitle$(): Observable<boolean>;
|
|
60
|
+
get canSend$(): Observable<boolean>;
|
|
61
|
+
get mo(): MetaobjectDataModel;
|
|
62
|
+
set context(val: any);
|
|
63
|
+
destroy(): void;
|
|
64
|
+
toolbarClick(btn: any): void;
|
|
65
|
+
wfChoice(btn: any): void;
|
|
66
|
+
protected _initialize(context: any): void;
|
|
67
|
+
protected _prepareView(view: any): void;
|
|
68
|
+
protected _filterToolbarItems(items: Array<any>): Array<any>;
|
|
69
|
+
protected _getHeaderLayout(view: any): IHeaderLayout;
|
|
70
|
+
protected _getIsSimpleForm(view: FormViewSetting): boolean;
|
|
71
|
+
protected _getToolbarVisibility(context: any): boolean;
|
|
72
|
+
protected _getMaxContentWidth(view: any): string;
|
|
73
|
+
protected _addListener(context: any): void;
|
|
74
|
+
protected _refresh(): void;
|
|
75
|
+
protected _forceClose(): void;
|
|
76
|
+
protected _maskChanged(mask: any): void;
|
|
77
|
+
protected _toolbarItemsChanged(items: any): void;
|
|
78
|
+
protected _titleChanged(title: any): void;
|
|
79
|
+
protected _wizardNextStep(): void;
|
|
80
|
+
protected _doLayout(context: any): void;
|
|
81
|
+
protected _groupBRuleChanged(groupItem: LayoutSetting): void;
|
|
82
|
+
protected _prepareContext(context: any): void;
|
|
83
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export * from './api.service';
|
|
2
|
+
export * from './breadcrumb.service';
|
|
3
|
+
export * from './barsa-dialog.service';
|
|
4
|
+
export * from './dynamic-component.service';
|
|
5
|
+
export * from './form-panel.service';
|
|
6
|
+
export * from './form.service';
|
|
7
|
+
export * from './container.service';
|
|
8
|
+
export * from './horizontal-layout.service';
|
|
9
|
+
export * from './layout.service';
|
|
10
|
+
export * from './log.service';
|
|
11
|
+
export * from './portal.service';
|
|
12
|
+
export * from './ui.service';
|
|
13
|
+
export * from './ulvmain.service';
|
|
14
|
+
export * from './upload.service';
|
|
15
|
+
export * from './network-status.service';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LayoutService {
|
|
4
|
+
rootRendered$: Observable<boolean>;
|
|
5
|
+
maxWidth$: Observable<number>;
|
|
6
|
+
refreshLayout$: Observable<void>;
|
|
7
|
+
horizontal$: Observable<any[]>;
|
|
8
|
+
id: string;
|
|
9
|
+
isTab: boolean;
|
|
10
|
+
private rendered;
|
|
11
|
+
private maxWidth;
|
|
12
|
+
private refreshLayoutSource;
|
|
13
|
+
private horizontalSource;
|
|
14
|
+
private _listOfHorizontal;
|
|
15
|
+
constructor();
|
|
16
|
+
setRendered(val: boolean): void;
|
|
17
|
+
setMaxWidth(val: any): void;
|
|
18
|
+
refreshLayout(): void;
|
|
19
|
+
addHorizontal(id: any): void;
|
|
20
|
+
removeHorizontal(id: any): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LayoutService>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export interface IDebug {
|
|
3
|
+
LEVEL_1: boolean;
|
|
4
|
+
LEVEL_2: boolean;
|
|
5
|
+
LEVEL_3: boolean;
|
|
6
|
+
LEVEL_4: boolean;
|
|
7
|
+
LEVEL_5: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare class LogService {
|
|
10
|
+
static DEBUG: IDebug;
|
|
11
|
+
info(...msg: Array<any>): void;
|
|
12
|
+
debug(...msg: Array<any>): void;
|
|
13
|
+
error(...err: Array<any>): void;
|
|
14
|
+
warn(...warn: Array<any>): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LogService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NetworkStatusService {
|
|
4
|
+
get networkStatus$(): Observable<boolean>;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NetworkStatusService, never>;
|
|
6
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NetworkStatusService>;
|
|
7
|
+
}
|