barsa-tiles 0.0.1
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-tiles.mjs +5 -0
- package/esm2020/lib/action-item/action-item.component.mjs +17 -0
- package/esm2020/lib/action-links.pipe.mjs +16 -0
- package/esm2020/lib/actions-link/actions-link.component.mjs +19 -0
- package/esm2020/lib/app-finder/app-finder.component.mjs +53 -0
- package/esm2020/lib/app-finder-app-list/app-finder-app-list.component.mjs +40 -0
- package/esm2020/lib/app-finder-group/app-finder-group.component.mjs +42 -0
- package/esm2020/lib/app-finder.service.mjs +121 -0
- package/esm2020/lib/barsa-tiles.module.mjs +196 -0
- package/esm2020/lib/change-app-tile/change-app-tile.component.mjs +47 -0
- package/esm2020/lib/create-app-group/create-app-group.component.mjs +44 -0
- package/esm2020/lib/directives/emptylist.directive.mjs +36 -0
- package/esm2020/lib/feed-tile/feed-tile.component.mjs +31 -0
- package/esm2020/lib/footer-edit-tile/footer-edit-tile.component.mjs +13 -0
- package/esm2020/lib/footer-tile/footer-tile.component.mjs +28 -0
- package/esm2020/lib/form-app-finder/form-app-finder.component.mjs +94 -0
- package/esm2020/lib/form-tile/form-tile.component.mjs +34 -0
- package/esm2020/lib/logo-tile/logo-tile.component.mjs +22 -0
- package/esm2020/lib/micro-tile-chart-area/micro-tile-chart-area.component.mjs +39 -0
- package/esm2020/lib/micro-tile-chart-bar/micro-tile-chart-bar.component.mjs +28 -0
- package/esm2020/lib/micro-tile-chart-bullet/micro-tile-chart-bullet.component.mjs +26 -0
- package/esm2020/lib/micro-tile-chart-circular/micro-tile-chart-circular.component.mjs +19 -0
- package/esm2020/lib/micro-tile-chart-comparison/micro-tile-chart-comparison.component.mjs +30 -0
- package/esm2020/lib/micro-tile-chart-line/micro-tile-chart-line.component.mjs +31 -0
- package/esm2020/lib/micro-tile-chart-stackbar/micro-tile-chart-stackbar.component.mjs +26 -0
- package/esm2020/lib/models/app-tile-footer-section.mjs +2 -0
- package/esm2020/lib/models/app-tile-footer.mjs +2 -0
- package/esm2020/lib/models/app-tile-group-pin.mjs +2 -0
- package/esm2020/lib/models/base-bt-tile-component.mjs +20 -0
- package/esm2020/lib/models/base-tile-component.mjs +57 -0
- package/esm2020/lib/models/base-tile-setting.mjs +2 -0
- package/esm2020/lib/models/feed-tile-setting.mjs +2 -0
- package/esm2020/lib/models/index.mjs +14 -0
- package/esm2020/lib/models/logo-tile-setting.mjs +2 -0
- package/esm2020/lib/models/micro-tile-chart-bullet-setting.mjs +2 -0
- package/esm2020/lib/models/news-tile-setting.mjs +2 -0
- package/esm2020/lib/models/numeric-tile-setting.mjs +2 -0
- package/esm2020/lib/models/profile-tile-setting.mjs +2 -0
- package/esm2020/lib/models/tile-setting.mjs +2 -0
- package/esm2020/lib/models/user-portal-settings.mjs +2 -0
- package/esm2020/lib/news-tile/news-tile.component.mjs +59 -0
- package/esm2020/lib/numeric-tile/numeric-tile.component.mjs +33 -0
- package/esm2020/lib/pin-tile/pin-tile.component.mjs +111 -0
- package/esm2020/lib/pipes/group-tiles.pipe.mjs +31 -0
- package/esm2020/lib/pipes/home-group.pipe.mjs +17 -0
- package/esm2020/lib/pipes/tile-home-filter.pipe.mjs +28 -0
- package/esm2020/lib/profile-tile/profile-tile.component.mjs +25 -0
- package/esm2020/lib/shellbar/shellbar.component.mjs +159 -0
- package/esm2020/lib/simple-tile/simple-tile.component.mjs +17 -0
- package/esm2020/lib/tile/tile.component.mjs +47 -0
- package/esm2020/lib/tile-renderer.directive.mjs +69 -0
- package/esm2020/lib/tiles-viewer/tiles-viewer.component.mjs +118 -0
- package/esm2020/lib/tiles-viewer-container/tiles-viewer-container.component.mjs +158 -0
- package/esm2020/lib/tiles-viewer-group/tiles-viewer-group.component.mjs +75 -0
- package/esm2020/lib/tiles-viewer.service.mjs +130 -0
- package/esm2020/lib/tiles.service.mjs +500 -0
- package/esm2020/public-api.mjs +43 -0
- package/fesm2015/barsa-tiles.mjs +2415 -0
- package/fesm2015/barsa-tiles.mjs.map +1 -0
- package/fesm2020/barsa-tiles.mjs +2386 -0
- package/fesm2020/barsa-tiles.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/action-item/action-item.component.d.ts +6 -0
- package/lib/action-links.pipe.d.ts +7 -0
- package/lib/actions-link/actions-link.component.d.ts +8 -0
- package/lib/app-finder/app-finder.component.d.ts +24 -0
- package/lib/app-finder-app-list/app-finder-app-list.component.d.ts +20 -0
- package/lib/app-finder-group/app-finder-group.component.d.ts +14 -0
- package/lib/app-finder.service.d.ts +33 -0
- package/lib/barsa-tiles.module.d.ts +65 -0
- package/lib/change-app-tile/change-app-tile.component.d.ts +20 -0
- package/lib/create-app-group/create-app-group.component.d.ts +19 -0
- package/lib/directives/emptylist.directive.d.ts +14 -0
- package/lib/feed-tile/feed-tile.component.d.ts +11 -0
- package/lib/footer-edit-tile/footer-edit-tile.component.d.ts +6 -0
- package/lib/footer-tile/footer-tile.component.d.ts +11 -0
- package/lib/form-app-finder/form-app-finder.component.d.ts +38 -0
- package/lib/form-tile/form-tile.component.d.ts +24 -0
- package/lib/logo-tile/logo-tile.component.d.ts +7 -0
- package/lib/micro-tile-chart-area/micro-tile-chart-area.component.d.ts +8 -0
- package/lib/micro-tile-chart-bar/micro-tile-chart-bar.component.d.ts +12 -0
- package/lib/micro-tile-chart-bullet/micro-tile-chart-bullet.component.d.ts +16 -0
- package/lib/micro-tile-chart-circular/micro-tile-chart-circular.component.d.ts +7 -0
- package/lib/micro-tile-chart-comparison/micro-tile-chart-comparison.component.d.ts +8 -0
- package/lib/micro-tile-chart-line/micro-tile-chart-line.component.d.ts +8 -0
- package/lib/micro-tile-chart-stackbar/micro-tile-chart-stackbar.component.d.ts +8 -0
- package/lib/models/app-tile-footer-section.d.ts +6 -0
- package/lib/models/app-tile-footer.d.ts +8 -0
- package/lib/models/app-tile-group-pin.d.ts +5 -0
- package/lib/models/base-bt-tile-component.d.ts +9 -0
- package/lib/models/base-tile-component.d.ts +26 -0
- package/lib/models/base-tile-setting.d.ts +5 -0
- package/lib/models/feed-tile-setting.d.ts +7 -0
- package/lib/models/index.d.ts +13 -0
- package/lib/models/logo-tile-setting.d.ts +6 -0
- package/lib/models/micro-tile-chart-bullet-setting.d.ts +10 -0
- package/lib/models/news-tile-setting.d.ts +4 -0
- package/lib/models/numeric-tile-setting.d.ts +9 -0
- package/lib/models/profile-tile-setting.d.ts +7 -0
- package/lib/models/tile-setting.d.ts +9 -0
- package/lib/models/user-portal-settings.d.ts +9 -0
- package/lib/news-tile/news-tile.component.d.ts +24 -0
- package/lib/numeric-tile/numeric-tile.component.d.ts +12 -0
- package/lib/pin-tile/pin-tile.component.d.ts +30 -0
- package/lib/pipes/group-tiles.pipe.d.ts +14 -0
- package/lib/pipes/home-group.pipe.d.ts +9 -0
- package/lib/pipes/tile-home-filter.pipe.d.ts +8 -0
- package/lib/profile-tile/profile-tile.component.d.ts +7 -0
- package/lib/shellbar/shellbar.component.d.ts +64 -0
- package/lib/simple-tile/simple-tile.component.d.ts +6 -0
- package/lib/tile/tile.component.d.ts +12 -0
- package/lib/tile-renderer.directive.d.ts +27 -0
- package/lib/tiles-viewer/tiles-viewer.component.d.ts +51 -0
- package/lib/tiles-viewer-container/tiles-viewer-container.component.d.ts +55 -0
- package/lib/tiles-viewer-group/tiles-viewer-group.component.d.ts +34 -0
- package/lib/tiles-viewer.service.d.ts +42 -0
- package/lib/tiles.service.d.ts +68 -0
- package/package.json +31 -0
- package/public-api.d.ts +39 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { TileComponent } from '../tile/tile.component';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ActionItemComponent extends TileComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionItemComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionItemComponent, "bt-action-item", never, {}, {}, never, never, false>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ActionLinksPipe implements PipeTransform {
|
|
4
|
+
transform(tiles: any): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionLinksPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ActionLinksPipe, "actionLinks", false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseComponent } from 'barsa-novin-ray-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ActionsLinkComponent extends BaseComponent {
|
|
4
|
+
actionsLink: any;
|
|
5
|
+
editHome: boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionsLinkComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionsLinkComponent, "bt-actions-link", never, { "actionsLink": "actionsLink"; "editHome": "editHome"; }, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { ContentDensity } from '@fundamental-ngx/core';
|
|
3
|
+
import { SearchInput } from '@fundamental-ngx/platform';
|
|
4
|
+
import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class AppFinderComponent extends BaseComponent {
|
|
7
|
+
appGroups: MetaobjectDataModel[];
|
|
8
|
+
deviceSize: AbbrevationDeviceSize;
|
|
9
|
+
sideContentSize: string;
|
|
10
|
+
selectedAppGroup: MetaobjectDataModel;
|
|
11
|
+
selectedAppGroupId: string;
|
|
12
|
+
mobile: boolean;
|
|
13
|
+
contentDensity: ContentDensity;
|
|
14
|
+
contentHeight: string;
|
|
15
|
+
pinnedAppInAppTileGroups: {
|
|
16
|
+
[key: string]: string[];
|
|
17
|
+
};
|
|
18
|
+
pinClick: EventEmitter<MetaobjectDataModel>;
|
|
19
|
+
selectedAppGroupIdChange: EventEmitter<string>;
|
|
20
|
+
searchTerm: string;
|
|
21
|
+
onSearchSubmit($event: SearchInput): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderComponent, "bt-app-finder", never, { "appGroups": "appGroups"; "deviceSize": "deviceSize"; "sideContentSize": "sideContentSize"; "selectedAppGroup": "selectedAppGroup"; "selectedAppGroupId": "selectedAppGroupId"; "mobile": "mobile"; "contentDensity": "contentDensity"; "contentHeight": "contentHeight"; "pinnedAppInAppTileGroups": "pinnedAppInAppTileGroups"; }, { "pinClick": "pinClick"; "selectedAppGroupIdChange": "selectedAppGroupIdChange"; }, never, never, false>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import { AppTileGroupPin } from '../models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class AppFinderAppListComponent extends BaseComponent {
|
|
6
|
+
appGroup: MetaobjectDataModel;
|
|
7
|
+
mobile: boolean;
|
|
8
|
+
searchTerm: string;
|
|
9
|
+
pinnedAppInAppTileGroups: {
|
|
10
|
+
[key: string]: string[];
|
|
11
|
+
};
|
|
12
|
+
pinClick: EventEmitter<MetaobjectDataModel>;
|
|
13
|
+
appTileGroupsPinChange: EventEmitter<{
|
|
14
|
+
appTileGroupsPin: AppTileGroupPin[];
|
|
15
|
+
app: MetaobjectDataModel;
|
|
16
|
+
}>;
|
|
17
|
+
onPinTap(app: MetaobjectDataModel): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderAppListComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderAppListComponent, "bt-app-finder-app-list", never, { "appGroup": "appGroup"; "mobile": "mobile"; "searchTerm": "searchTerm"; "pinnedAppInAppTileGroups": "pinnedAppInAppTileGroups"; }, { "pinClick": "pinClick"; "appTileGroupsPinChange": "appTileGroupsPinChange"; }, never, never, false>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AppFinderGroupComponent extends BaseComponent implements OnChanges {
|
|
5
|
+
appGroups: MetaobjectDataModel[];
|
|
6
|
+
selectedId: string;
|
|
7
|
+
listMode: boolean;
|
|
8
|
+
selectedIdChange: EventEmitter<string>;
|
|
9
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
10
|
+
OnMenuGroupClick(group: MetaobjectDataModel): void;
|
|
11
|
+
OnGroupClick(group: MetaobjectDataModel): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderGroupComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppFinderGroupComponent, "bt-app-finder-group", never, { "appGroups": "appGroups"; "selectedId": "selectedId"; "listMode": "listMode"; }, { "selectedIdChange": "selectedIdChange"; }, never, never, false>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AbbrevationDeviceSize, MetaobjectDataModel, PortalService } from 'barsa-novin-ray-core';
|
|
4
|
+
import { TilesService } from './tiles.service';
|
|
5
|
+
import { AppTileGroupPin } from './models';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class AppFinderService implements OnDestroy {
|
|
8
|
+
private _portalService;
|
|
9
|
+
private _tileService;
|
|
10
|
+
pinnedAppInAppTileGroups$: Observable<Record<string, string[]>>;
|
|
11
|
+
appGroups$: Observable<MetaobjectDataModel[]>;
|
|
12
|
+
selectedAppGroupId$: Observable<string>;
|
|
13
|
+
selectedAppGroup$: Observable<MetaobjectDataModel | undefined>;
|
|
14
|
+
deviceSize$: Observable<'s' | 'm' | 'l' | 'xl'>;
|
|
15
|
+
private _appGroupsSource;
|
|
16
|
+
private _OnDestroy$;
|
|
17
|
+
private _selectedAppGroupIdSource;
|
|
18
|
+
private _pinnedAppInAppTileGroupsSource;
|
|
19
|
+
constructor(_portalService: PortalService, _tileService: TilesService);
|
|
20
|
+
get deviceSize(): AbbrevationDeviceSize;
|
|
21
|
+
get appTileGroups(): MetaobjectDataModel[] | undefined;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
loadAppGroups(): void;
|
|
24
|
+
selectAppGroup(appGroupId: string): void;
|
|
25
|
+
loadAppsByAppGroup(appGroups: MetaobjectDataModel[], appGroup: MetaobjectDataModel): void;
|
|
26
|
+
loadPinnedAppInTileGroups(app: MetaobjectDataModel): {
|
|
27
|
+
[key: string]: string[];
|
|
28
|
+
};
|
|
29
|
+
pinTileChanged(appTileGroups: AppTileGroupPin[], app: MetaobjectDataModel, callback: any): void;
|
|
30
|
+
private _nextAllApps;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppFinderService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AppFinderService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { ComponentFactoryResolver } from '@angular/core';
|
|
2
|
+
import { BaseModule, DynamicComponentService } from 'barsa-novin-ray-core';
|
|
3
|
+
import { ShellbarComponent } from './shellbar/shellbar.component';
|
|
4
|
+
import { SimpleTileComponent } from './simple-tile/simple-tile.component';
|
|
5
|
+
import { FooterEditTileComponent } from './footer-edit-tile/footer-edit-tile.component';
|
|
6
|
+
import { FormAppFinderComponent } from './form-app-finder/form-app-finder.component';
|
|
7
|
+
import { PinTileComponent } from './pin-tile/pin-tile.component';
|
|
8
|
+
import { ChangeAppTileComponent } from './change-app-tile/change-app-tile.component';
|
|
9
|
+
import { CreateAppGroupComponent } from './create-app-group/create-app-group.component';
|
|
10
|
+
import { TilesViewerContainerComponent } from './tiles-viewer-container/tiles-viewer-container.component';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
import * as i1 from "./shellbar/shellbar.component";
|
|
13
|
+
import * as i2 from "./simple-tile/simple-tile.component";
|
|
14
|
+
import * as i3 from "./tiles-viewer/tiles-viewer.component";
|
|
15
|
+
import * as i4 from "./profile-tile/profile-tile.component";
|
|
16
|
+
import * as i5 from "./feed-tile/feed-tile.component";
|
|
17
|
+
import * as i6 from "./footer-tile/footer-tile.component";
|
|
18
|
+
import * as i7 from "./tile/tile.component";
|
|
19
|
+
import * as i8 from "./logo-tile/logo-tile.component";
|
|
20
|
+
import * as i9 from "./numeric-tile/numeric-tile.component";
|
|
21
|
+
import * as i10 from "./footer-edit-tile/footer-edit-tile.component";
|
|
22
|
+
import * as i11 from "./form-app-finder/form-app-finder.component";
|
|
23
|
+
import * as i12 from "./pin-tile/pin-tile.component";
|
|
24
|
+
import * as i13 from "./change-app-tile/change-app-tile.component";
|
|
25
|
+
import * as i14 from "./create-app-group/create-app-group.component";
|
|
26
|
+
import * as i15 from "./micro-tile-chart-area/micro-tile-chart-area.component";
|
|
27
|
+
import * as i16 from "./micro-tile-chart-circular/micro-tile-chart-circular.component";
|
|
28
|
+
import * as i17 from "./micro-tile-chart-line/micro-tile-chart-line.component";
|
|
29
|
+
import * as i18 from "./micro-tile-chart-stackbar/micro-tile-chart-stackbar.component";
|
|
30
|
+
import * as i19 from "./micro-tile-chart-comparison/micro-tile-chart-comparison.component";
|
|
31
|
+
import * as i20 from "./micro-tile-chart-bar/micro-tile-chart-bar.component";
|
|
32
|
+
import * as i21 from "./micro-tile-chart-bullet/micro-tile-chart-bullet.component";
|
|
33
|
+
import * as i22 from "./tiles-viewer-container/tiles-viewer-container.component";
|
|
34
|
+
import * as i23 from "./news-tile/news-tile.component";
|
|
35
|
+
import * as i24 from "./actions-link/actions-link.component";
|
|
36
|
+
import * as i25 from "./action-item/action-item.component";
|
|
37
|
+
import * as i26 from "./app-finder/app-finder.component";
|
|
38
|
+
import * as i27 from "./app-finder-group/app-finder-group.component";
|
|
39
|
+
import * as i28 from "./app-finder-app-list/app-finder-app-list.component";
|
|
40
|
+
import * as i29 from "./tiles-viewer-group/tiles-viewer-group.component";
|
|
41
|
+
import * as i30 from "./form-tile/form-tile.component";
|
|
42
|
+
import * as i31 from "./pipes/group-tiles.pipe";
|
|
43
|
+
import * as i32 from "./pipes/tile-home-filter.pipe";
|
|
44
|
+
import * as i33 from "./pipes/home-group.pipe";
|
|
45
|
+
import * as i34 from "./action-links.pipe";
|
|
46
|
+
import * as i35 from "./directives/emptylist.directive";
|
|
47
|
+
import * as i36 from "./tile-renderer.directive";
|
|
48
|
+
import * as i37 from "@angular/common";
|
|
49
|
+
import * as i38 from "@angular/forms";
|
|
50
|
+
import * as i39 from "@angular/cdk/drag-drop";
|
|
51
|
+
import * as i40 from "@angular/cdk/table";
|
|
52
|
+
import * as i41 from "@fundamental-ngx/core";
|
|
53
|
+
import * as i42 from "@fundamental-ngx/platform";
|
|
54
|
+
import * as i43 from "barsa-novin-ray-core";
|
|
55
|
+
import * as i44 from "barsa-sap-ui";
|
|
56
|
+
import * as i45 from "barsa-echarts";
|
|
57
|
+
export declare class BarsaTilesModule extends BaseModule {
|
|
58
|
+
protected dcm: DynamicComponentService;
|
|
59
|
+
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
60
|
+
protected dynamicComponents: (typeof ChangeAppTileComponent | typeof TilesViewerContainerComponent | typeof CreateAppGroupComponent | typeof PinTileComponent | typeof FormAppFinderComponent | typeof FooterEditTileComponent | typeof SimpleTileComponent | typeof ShellbarComponent)[];
|
|
61
|
+
constructor(dcm: DynamicComponentService, componentFactoryResolver: ComponentFactoryResolver);
|
|
62
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTilesModule, never>;
|
|
63
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<BarsaTilesModule, [typeof i1.ShellbarComponent, typeof i2.SimpleTileComponent, typeof i3.TilesViewerComponent, typeof i4.ProfileTileComponent, typeof i5.FeedTileComponent, typeof i6.FooterTileComponent, typeof i7.TileComponent, typeof i8.LogoTileComponent, typeof i9.NumericTileComponent, typeof i10.FooterEditTileComponent, typeof i11.FormAppFinderComponent, typeof i12.PinTileComponent, typeof i13.ChangeAppTileComponent, typeof i14.CreateAppGroupComponent, typeof i15.MicroTileChartAreaComponent, typeof i16.MicroTileChartCircularComponent, typeof i17.MicroTileChartLineComponent, typeof i18.MicroTileChartStackbarComponent, typeof i19.MicroTileChartComparisonComponent, typeof i20.MicroTileChartBarComponent, typeof i21.MicroTileChartBulletComponent, typeof i22.TilesViewerContainerComponent, typeof i23.NewsTileComponent, typeof i24.ActionsLinkComponent, typeof i25.ActionItemComponent, typeof i26.AppFinderComponent, typeof i27.AppFinderGroupComponent, typeof i28.AppFinderAppListComponent, typeof i29.TilesViewerGroupComponent, typeof i30.FormTileComponent, typeof i31.GroupTilesPipe, typeof i32.TileHomeFilterPipe, typeof i33.HomeGroupPipe, typeof i34.ActionLinksPipe, typeof i35.EmptyListDirective, typeof i36.TileRendererDirective], [typeof i37.CommonModule, typeof i38.FormsModule, typeof i39.DragDropModule, typeof i40.CdkTableModule, typeof i41.FundamentalNgxCoreModule, typeof i41.GridListModule, typeof i42.FundamentalNgxPlatformModule, typeof i38.ReactiveFormsModule, typeof i43.BarsaNovinRayCoreModule, typeof i44.BarsaSapUiModule, typeof i45.BarsaEchartsModule], [typeof i1.ShellbarComponent, typeof i2.SimpleTileComponent, typeof i3.TilesViewerComponent, typeof i4.ProfileTileComponent, typeof i5.FeedTileComponent, typeof i6.FooterTileComponent, typeof i7.TileComponent, typeof i8.LogoTileComponent, typeof i9.NumericTileComponent, typeof i10.FooterEditTileComponent, typeof i11.FormAppFinderComponent, typeof i12.PinTileComponent, typeof i13.ChangeAppTileComponent, typeof i14.CreateAppGroupComponent, typeof i15.MicroTileChartAreaComponent, typeof i16.MicroTileChartCircularComponent, typeof i17.MicroTileChartLineComponent, typeof i18.MicroTileChartStackbarComponent, typeof i19.MicroTileChartComparisonComponent, typeof i20.MicroTileChartBarComponent, typeof i21.MicroTileChartBulletComponent, typeof i22.TilesViewerContainerComponent, typeof i23.NewsTileComponent, typeof i24.ActionsLinkComponent, typeof i25.ActionItemComponent, typeof i26.AppFinderComponent, typeof i27.AppFinderGroupComponent, typeof i28.AppFinderAppListComponent, typeof i29.TilesViewerGroupComponent, typeof i30.FormTileComponent]>;
|
|
64
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaTilesModule>;
|
|
65
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
|
+
import { DialogRef } from '@fundamental-ngx/core';
|
|
4
|
+
import { BaseComponent, BbbTranslatePipe } from 'barsa-novin-ray-core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ChangeAppTileComponent extends BaseComponent implements OnInit {
|
|
7
|
+
private fb;
|
|
8
|
+
dialogRef: DialogRef;
|
|
9
|
+
private bbbPipe;
|
|
10
|
+
title: string;
|
|
11
|
+
subtitle: string;
|
|
12
|
+
appGroupForm: UntypedFormGroup;
|
|
13
|
+
submitted: boolean;
|
|
14
|
+
RequiredText: string;
|
|
15
|
+
constructor(fb: UntypedFormBuilder, dialogRef: DialogRef, bbbPipe: BbbTranslatePipe);
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
onSave(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChangeAppTileComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChangeAppTileComponent, "bt-change-app-tile", never, {}, {}, never, never, false>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms';
|
|
3
|
+
import { DialogRef } from '@fundamental-ngx/core';
|
|
4
|
+
import { BaseComponent, BbbTranslatePipe } from 'barsa-novin-ray-core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CreateAppGroupComponent extends BaseComponent implements OnInit {
|
|
7
|
+
private fb;
|
|
8
|
+
dialogRef: DialogRef;
|
|
9
|
+
private bbbPipe;
|
|
10
|
+
title: string;
|
|
11
|
+
appGroupForm: UntypedFormGroup;
|
|
12
|
+
submitted: boolean;
|
|
13
|
+
RequiredText: string;
|
|
14
|
+
constructor(fb: UntypedFormBuilder, dialogRef: DialogRef, bbbPipe: BbbTranslatePipe);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
onSave(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateAppGroupComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreateAppGroupComponent, "bt-create-app-group", never, {}, {}, never, never, false>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { EmbeddedViewRef, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { BbbTranslatePipe } from 'barsa-novin-ray-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class EmptyListDirective {
|
|
5
|
+
private templateRef;
|
|
6
|
+
private viewContainer;
|
|
7
|
+
private bbbPipe;
|
|
8
|
+
set emptyList(list: any[]);
|
|
9
|
+
private hasView;
|
|
10
|
+
constructor(templateRef: TemplateRef<any>, viewContainer: ViewContainerRef, bbbPipe: BbbTranslatePipe);
|
|
11
|
+
setNoData(view: EmbeddedViewRef<any>): void;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyListDirective, never>;
|
|
13
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EmptyListDirective, "[emptyList]", never, { "emptyList": "emptyList"; }, {}, never, never, false>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseBtTileComponent, FeedTileSetting } from '../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FeedTileComponent extends BaseBtTileComponent<FeedTileSetting> {
|
|
4
|
+
get twoColumn(): boolean;
|
|
5
|
+
get text(): string;
|
|
6
|
+
get byline(): string;
|
|
7
|
+
get kpi(): string;
|
|
8
|
+
get state(): 'positive' | 'negative';
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedTileComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeedTileComponent, "bt-feed-tile", never, {}, {}, never, never, false>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseComponent } from 'barsa-novin-ray-core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FooterEditTileComponent extends BaseComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterEditTileComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterEditTileComponent, "bt-footer-edit-tile", never, {}, {}, never, never, false>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BaseComponent } from 'barsa-novin-ray-core';
|
|
2
|
+
import { AppTileFooter, AppTileFooterSection } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FooterTileComponent extends BaseComponent {
|
|
5
|
+
settings: AppTileFooter;
|
|
6
|
+
get twoColumn(): boolean;
|
|
7
|
+
get firstSection(): AppTileFooterSection;
|
|
8
|
+
get secondSection(): AppTileFooterSection;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FooterTileComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FooterTileComponent, "bt-footer-tile", never, { "settings": "settings"; }, {}, never, never, false>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ContentDensity, ContentDensityService, DialogService } from '@fundamental-ngx/core';
|
|
4
|
+
import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
|
|
5
|
+
import { AppFinderService } from '../app-finder.service';
|
|
6
|
+
import { AppTileGroupPin } from '../models';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class FormAppFinderComponent extends BaseComponent implements OnInit {
|
|
9
|
+
private _cdr;
|
|
10
|
+
private _dialogService;
|
|
11
|
+
private _appFinderService;
|
|
12
|
+
private _el;
|
|
13
|
+
selectedGroups: MetaobjectDataModel[];
|
|
14
|
+
isAllSelected: boolean;
|
|
15
|
+
appGroups$: Observable<MetaobjectDataModel[] | undefined>;
|
|
16
|
+
appTileGroups$: Observable<MetaobjectDataModel[]>;
|
|
17
|
+
searchTerm: string;
|
|
18
|
+
deviceSize$: Observable<AbbrevationDeviceSize>;
|
|
19
|
+
sideContentSize$: Observable<string>;
|
|
20
|
+
contentDensity$: Observable<ContentDensity>;
|
|
21
|
+
selectedAppGroup$: Observable<MetaobjectDataModel | undefined>;
|
|
22
|
+
selectedAppGroupId$: Observable<string>;
|
|
23
|
+
mobile$: Observable<boolean>;
|
|
24
|
+
contentHeight: string;
|
|
25
|
+
pinnedAppInAppTileGroups$: Observable<Record<string, string[]>>;
|
|
26
|
+
constructor(_cdr: ChangeDetectorRef, _dialogService: DialogService, _appFinderService: AppFinderService, _el: ElementRef, _contentDensityService: ContentDensityService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
onSelectedAppGroupChange(appGroupId: string): void;
|
|
29
|
+
onPinClick(app: MetaobjectDataModel): void;
|
|
30
|
+
onRefresh(): void;
|
|
31
|
+
_appTileGroupsPinChange(result: {
|
|
32
|
+
appTileGroupsPin: AppTileGroupPin[];
|
|
33
|
+
app: MetaobjectDataModel;
|
|
34
|
+
}): Promise<void>;
|
|
35
|
+
private _changeGroup;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormAppFinderComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormAppFinderComponent, "bt-form-app-finder", never, {}, {}, never, never, false>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface FormTileSetting extends BaseTileSetting {
|
|
5
|
+
RunBlMethod: string;
|
|
6
|
+
TypeViewEntity: {
|
|
7
|
+
Id: any;
|
|
8
|
+
};
|
|
9
|
+
TypeDef: {
|
|
10
|
+
Id: any;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
export declare class FormTileComponent extends BaseBtTileComponent<FormTileSetting> implements OnInit {
|
|
14
|
+
newId: string;
|
|
15
|
+
params: {
|
|
16
|
+
moId: string;
|
|
17
|
+
typeDefId: string;
|
|
18
|
+
viewId: string;
|
|
19
|
+
};
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormTileComponent, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormTileComponent, "bt-form-tile", never, {}, {}, never, never, false>;
|
|
23
|
+
}
|
|
24
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseBtTileComponent, LogoTileSetting } from '../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LogoTileComponent extends BaseBtTileComponent<LogoTileSetting> {
|
|
4
|
+
get fileId(): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LogoTileComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LogoTileComponent, "bt-logo-tile", never, {}, {}, never, never, false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
2
|
+
import { AreaChart } from 'barsa-echarts';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MicroTileChartAreaComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
5
|
+
chartData: AreaChart;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroTileChartAreaComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MicroTileChartAreaComponent, "bt-micro-tile-chart-area", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BarItem } from 'barsa-echarts';
|
|
2
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MicroTileChartBarComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
5
|
+
chartData: BarItem[];
|
|
6
|
+
extraData: {
|
|
7
|
+
value: number;
|
|
8
|
+
suffix: string;
|
|
9
|
+
};
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroTileChartBarComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MicroTileChartBarComponent, "bt-micro-tile-chart-bar", never, {}, {}, never, never, false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseBtTileComponent } from '../models';
|
|
3
|
+
import { MicroTileChartBulletSetting } from '../models/micro-tile-chart-bullet-setting';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class MicroTileChartBulletComponent extends BaseBtTileComponent<MicroTileChartBulletSetting> implements OnInit {
|
|
6
|
+
target: number;
|
|
7
|
+
value: number;
|
|
8
|
+
range: number;
|
|
9
|
+
forecast: number;
|
|
10
|
+
suffix: string;
|
|
11
|
+
separatorLines: number;
|
|
12
|
+
isDelta: boolean;
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroTileChartBulletComponent, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MicroTileChartBulletComponent, "bt-micro-tile-chart-bullet", never, {}, {}, never, never, false>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MicroTileChartCircularComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
4
|
+
chartData: number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroTileChartCircularComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MicroTileChartCircularComponent, "bt-micro-tile-chart-circular", never, {}, {}, never, never, false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ComparisonItem } from 'barsa-echarts';
|
|
2
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MicroTileChartComparisonComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
5
|
+
chartData: ComparisonItem;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroTileChartComparisonComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MicroTileChartComparisonComponent, "bt-micro-tile-chart-comparison", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LineItem } from 'barsa-echarts';
|
|
2
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MicroTileChartLineComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
5
|
+
chartData: LineItem;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroTileChartLineComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MicroTileChartLineComponent, "bt-micro-tile-chart-line", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { StackbarItem } from 'barsa-echarts';
|
|
2
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MicroTileChartStackbarComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
5
|
+
charData: StackbarItem;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MicroTileChartStackbarComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MicroTileChartStackbarComponent, "bt-micro-tile-chart-stackbar", never, {}, {}, never, never, false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
2
|
+
import { AppTileFooterSection } from './app-tile-footer-section';
|
|
3
|
+
export interface AppTileFooter extends MetaobjectDataModel {
|
|
4
|
+
EditMode: boolean;
|
|
5
|
+
TwoColumn: boolean;
|
|
6
|
+
FirstSection: AppTileFooterSection;
|
|
7
|
+
SecondSection: AppTileFooterSection;
|
|
8
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { BaseTileComponent } from './base-tile-component';
|
|
3
|
+
import { BaseTileSetting } from './base-tile-setting';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare abstract class BaseBtTileComponent<T extends BaseTileSetting> extends BaseTileComponent<T> implements OnInit {
|
|
6
|
+
ngOnInit(): void;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseBtTileComponent<any>, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseBtTileComponent<any>, "bt-base-bt-tile", never, {}, {}, never, never, false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, EventEmitter, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import { AppTileFooter } from './app-tile-footer';
|
|
4
|
+
import { BaseTileSetting } from './base-tile-setting';
|
|
5
|
+
import { TileSetting } from './tile-setting';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare abstract class BaseTileComponent<T extends BaseTileSetting> extends BaseComponent implements OnInit {
|
|
8
|
+
el: ElementRef;
|
|
9
|
+
protected _renderer2: Renderer2;
|
|
10
|
+
protected _cdr: ChangeDetectorRef;
|
|
11
|
+
data: MetaobjectDataModel;
|
|
12
|
+
editHome: boolean;
|
|
13
|
+
hideClick: EventEmitter<any>;
|
|
14
|
+
renameClick: EventEmitter<any>;
|
|
15
|
+
constructor(el: ElementRef, _renderer2: Renderer2, _cdr: ChangeDetectorRef);
|
|
16
|
+
get settings(): T;
|
|
17
|
+
get title(): string;
|
|
18
|
+
get subtitle(): string;
|
|
19
|
+
get double(): boolean;
|
|
20
|
+
get badge(): string;
|
|
21
|
+
get footer(): AppTileFooter;
|
|
22
|
+
get tileSetting(): TileSetting;
|
|
23
|
+
setEditHome(val: boolean): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseTileComponent<any>, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseTileComponent<any>, "bt-base-tile", never, { "data": "data"; "editHome": "editHome"; }, { "hideClick": "hideClick"; "renameClick": "renameClick"; }, never, never, false>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './app-tile-footer';
|
|
2
|
+
export * from './app-tile-footer-section';
|
|
3
|
+
export * from './tile-setting';
|
|
4
|
+
export * from './base-tile-setting';
|
|
5
|
+
export * from './base-tile-component';
|
|
6
|
+
export * from './base-bt-tile-component';
|
|
7
|
+
export * from './feed-tile-setting';
|
|
8
|
+
export * from './profile-tile-setting';
|
|
9
|
+
export * from './logo-tile-setting';
|
|
10
|
+
export * from './numeric-tile-setting';
|
|
11
|
+
export * from './user-portal-settings';
|
|
12
|
+
export * from './news-tile-setting';
|
|
13
|
+
export * from './app-tile-group-pin';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseTileSetting } from './base-tile-setting';
|
|
2
|
+
export interface MicroTileChartBulletSetting extends BaseTileSetting {
|
|
3
|
+
Target: number;
|
|
4
|
+
Value: number;
|
|
5
|
+
Range: number;
|
|
6
|
+
Forecast: number;
|
|
7
|
+
Suffix: string;
|
|
8
|
+
SeparatorLines: number;
|
|
9
|
+
IsDelta: boolean;
|
|
10
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { BaseTileSetting } from './base-tile-setting';
|
|
2
|
+
export interface NumericTileSetting extends BaseTileSetting {
|
|
3
|
+
LaunchIcon: string;
|
|
4
|
+
ContentKpi: string;
|
|
5
|
+
ContentKpiState: 'positive' | 'negative';
|
|
6
|
+
ScaleState: 'positive' | 'negative';
|
|
7
|
+
ScaleText: string;
|
|
8
|
+
ScaleArrowIcon: string;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
2
|
+
import { AppTileFooter } from './app-tile-footer';
|
|
3
|
+
export interface TileSetting extends MetaobjectDataModel {
|
|
4
|
+
Title: string;
|
|
5
|
+
Subtitle: string;
|
|
6
|
+
IsDouble: boolean;
|
|
7
|
+
Badge: string;
|
|
8
|
+
Footer: AppTileFooter;
|
|
9
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ContentDensity } from '@fundamental-ngx/core';
|
|
2
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
export interface UserPortalSettings extends MetaobjectDataModel {
|
|
4
|
+
TilesStackConent?: boolean;
|
|
5
|
+
Theme?: number;
|
|
6
|
+
Theme$Caption?: string;
|
|
7
|
+
ContentDensity?: number;
|
|
8
|
+
ContentDensity$Caption?: ContentDensity;
|
|
9
|
+
}
|