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
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ElementRef, ChangeDetectorRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
|
+
import { CarouselComponent, CarouselItemComponent } from '@fundamental-ngx/core';
|
|
3
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
4
|
+
import { BaseBtTileComponent, NewsTileSetting } from '../models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class NewsTileComponent extends BaseBtTileComponent<NewsTileSetting> implements OnInit {
|
|
7
|
+
el: ElementRef;
|
|
8
|
+
protected _renderer2: Renderer2;
|
|
9
|
+
protected _cdr: ChangeDetectorRef;
|
|
10
|
+
carouselComponent: CarouselComponent;
|
|
11
|
+
slides: MetaobjectDataModel[];
|
|
12
|
+
activeNews: MetaobjectDataModel;
|
|
13
|
+
isStop: boolean;
|
|
14
|
+
constructor(el: ElementRef, _renderer2: Renderer2, _cdr: ChangeDetectorRef);
|
|
15
|
+
get twoColumn(): boolean;
|
|
16
|
+
ngOnInit(): void;
|
|
17
|
+
trigger(): void;
|
|
18
|
+
slideChange(activeSlide: {
|
|
19
|
+
activeItems: CarouselItemComponent[];
|
|
20
|
+
}): void;
|
|
21
|
+
private _updateTile;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NewsTileComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NewsTileComponent, "bt-news-tile", never, {}, {}, never, never, false>;
|
|
24
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BaseBtTileComponent, NumericTileSetting } from '../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class NumericTileComponent extends BaseBtTileComponent<NumericTileSetting> {
|
|
4
|
+
get launchIcon(): string;
|
|
5
|
+
get kpiState(): 'positive' | 'negative';
|
|
6
|
+
get kpi(): string;
|
|
7
|
+
get scaleState(): 'positive' | 'negative';
|
|
8
|
+
get scaleText(): string;
|
|
9
|
+
get scaleArrowIcon(): string;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NumericTileComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NumericTileComponent, "bt-numeric-tile", never, {}, {}, never, never, false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { DialogRef, DialogService } from '@fundamental-ngx/core';
|
|
3
|
+
import { BaseComponent, MetaobjectDataModel, BbbTranslatePipe } from 'barsa-novin-ray-core';
|
|
4
|
+
import { AppTileGroupPin } from '../models';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PinTileComponent extends BaseComponent implements OnInit {
|
|
7
|
+
_dialogService: DialogService;
|
|
8
|
+
_dialogRef: DialogRef;
|
|
9
|
+
private bbbPipe;
|
|
10
|
+
app: MetaobjectDataModel;
|
|
11
|
+
appTileGroups: MetaobjectDataModel[];
|
|
12
|
+
mobile: boolean;
|
|
13
|
+
pin: boolean;
|
|
14
|
+
newGroupDialogRef: DialogRef;
|
|
15
|
+
newGroupText: string;
|
|
16
|
+
pinnedAppInTileGroups: {
|
|
17
|
+
[key: string]: string[];
|
|
18
|
+
};
|
|
19
|
+
constructor(_dialogService: DialogService, _dialogRef: DialogRef, bbbPipe: BbbTranslatePipe);
|
|
20
|
+
ngOnInit(): void;
|
|
21
|
+
onAccept(): void;
|
|
22
|
+
onClose(): void;
|
|
23
|
+
onNewGroup(): void;
|
|
24
|
+
_setLoading(loading: any): void;
|
|
25
|
+
_setDefaultPinTile(appTileGroup: MetaobjectDataModel, tileGroupsId: string[]): void;
|
|
26
|
+
_getChangedPinTileGroups(appTileGroup: MetaobjectDataModel, appTileGroupsPin: AppTileGroupPin[]): void;
|
|
27
|
+
_close(result?: any): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PinTileComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PinTileComponent, "bt-pin-tile", never, { "app": "app"; "appTileGroups": "appTileGroups"; "mobile": "mobile"; "pin": "pin"; }, {}, never, never, false>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
interface AppTileModel extends MetaobjectDataModel {
|
|
6
|
+
Component: MetaobjectDataModel;
|
|
7
|
+
Selector: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class GroupTilesPipe implements PipeTransform {
|
|
10
|
+
transform(appGroup: MetaobjectDataModel): Observable<AppTileModel[]>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupTilesPipe, never>;
|
|
12
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GroupTilesPipe, "groupTiles", false>;
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HomeGroupPipe implements PipeTransform {
|
|
5
|
+
constructor();
|
|
6
|
+
transform(appGroups: MetaobjectDataModel[]): MetaobjectDataModel[];
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HomeGroupPipe, never>;
|
|
8
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<HomeGroupPipe, "homeGroup", false>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TileHomeFilterPipe implements PipeTransform {
|
|
4
|
+
transform(collection: any[]): any[];
|
|
5
|
+
matchFilter(value: any): boolean;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileHomeFilterPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TileHomeFilterPipe, "tileHomeFilter", false>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { BaseBtTileComponent, ProfileTileSetting } from '../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ProfileTileComponent extends BaseBtTileComponent<ProfileTileSetting> {
|
|
4
|
+
get fileId(): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileTileComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileTileComponent, "bt-profile-tile", never, {}, {}, never, never, false>;
|
|
7
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ComboboxComponent, ProductSwitchItem, ShellbarMenuItem, ShellbarUser } from '@fundamental-ngx/core';
|
|
4
|
+
import { BaseComponent, MetaobjectDataModel, FilePictureInfoModel, MoForReportModel, PortalService, BreadcrumbService, BbbTranslatePipe } from 'barsa-novin-ray-core';
|
|
5
|
+
import { TilesService } from '../tiles.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface ShellbarSetting extends MetaobjectDataModel {
|
|
8
|
+
subtitle: string;
|
|
9
|
+
calcSubtitle: string;
|
|
10
|
+
logo: FilePictureInfoModel;
|
|
11
|
+
ProductSwitchItems: MoForReportModel;
|
|
12
|
+
ProductMenuItems: MoForReportModel;
|
|
13
|
+
UserMenuItems: MoForReportModel;
|
|
14
|
+
ActionItems: MoForReportModel;
|
|
15
|
+
}
|
|
16
|
+
export declare class ShellbarComponent extends BaseComponent implements OnInit {
|
|
17
|
+
private _portalService;
|
|
18
|
+
private _breadCrumbService;
|
|
19
|
+
private _tilesService;
|
|
20
|
+
private _cdr;
|
|
21
|
+
private _bbbTranslatePipe;
|
|
22
|
+
appVersion: string;
|
|
23
|
+
comboboxComponent: ComboboxComponent;
|
|
24
|
+
shellbarData: ShellbarSetting;
|
|
25
|
+
settings: MetaobjectDataModel;
|
|
26
|
+
isOpenNotificatoin: boolean;
|
|
27
|
+
deviceSize: 's' | 'm' | 'l' | 'xl';
|
|
28
|
+
productMenuControl: string;
|
|
29
|
+
user: ShellbarUser;
|
|
30
|
+
searchTerms: string[];
|
|
31
|
+
searchTerm: string;
|
|
32
|
+
actions$: Observable<ShellbarMenuItem[]>;
|
|
33
|
+
productMenuItems1: ShellbarMenuItem[];
|
|
34
|
+
userLoggedIn$: Observable<boolean>;
|
|
35
|
+
cssUrl$: any;
|
|
36
|
+
cssCustomUrl$: any;
|
|
37
|
+
allowAnonymous: boolean;
|
|
38
|
+
showVersion: boolean;
|
|
39
|
+
cultures: Record<string, any>;
|
|
40
|
+
notificationsCount$: Observable<number>;
|
|
41
|
+
notifications$: Observable<MetaobjectDataModel[]>;
|
|
42
|
+
constructor(_portalService: PortalService, _breadCrumbService: BreadcrumbService, _tilesService: TilesService, _cdr: ChangeDetectorRef, _bbbTranslatePipe: BbbTranslatePipe, appVersion: string);
|
|
43
|
+
get subtitle(): string;
|
|
44
|
+
get logo(): {
|
|
45
|
+
FileId: string;
|
|
46
|
+
};
|
|
47
|
+
get actions(): Array<MetaobjectDataModel>;
|
|
48
|
+
get userMenu(): {
|
|
49
|
+
text: string;
|
|
50
|
+
callback: () => void;
|
|
51
|
+
}[];
|
|
52
|
+
get productSwitcher(): ProductSwitchItem[];
|
|
53
|
+
get productMenuItems(): ShellbarMenuItem[];
|
|
54
|
+
get bodyClick(): string;
|
|
55
|
+
ngOnInit(): void;
|
|
56
|
+
onCultureChange(culture: any): void;
|
|
57
|
+
onNotificationRelatedClick(mo: MetaobjectDataModel, nama: string): void;
|
|
58
|
+
onOpenNotification: () => void;
|
|
59
|
+
onLanguage: (e: any) => void;
|
|
60
|
+
private _changeCulture;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShellbarComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShellbarComponent, "bt-shellbar", never, {}, {}, never, never, false>;
|
|
63
|
+
}
|
|
64
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class SimpleTileComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleTileComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleTileComponent, "bt-simple-tile", never, {}, {}, never, never, false>;
|
|
6
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { BaseTileComponent, BaseTileSetting } from '../models';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TileComponent extends BaseTileComponent<BaseTileSetting> {
|
|
5
|
+
type: 'feed' | 'launch' | 'kpi';
|
|
6
|
+
footerTemplate: TemplateRef<any>;
|
|
7
|
+
disableClick: boolean;
|
|
8
|
+
runningCommand: boolean;
|
|
9
|
+
onClick(): boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "bt-tile", never, { "type": "type"; "footerTemplate": "footerTemplate"; "disableClick": "disableClick"; }, {}, never, ["*"], false>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, Injector, OnChanges, OnDestroy, OnInit, SimpleChanges, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { BaseDirective, PortalService } from 'barsa-novin-ray-core';
|
|
3
|
+
import { BaseTileSetting } from './models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TileRendererDirective extends BaseDirective implements OnInit, OnChanges, OnDestroy {
|
|
6
|
+
private _cdr;
|
|
7
|
+
private _portalService;
|
|
8
|
+
private _vcr;
|
|
9
|
+
private _injector;
|
|
10
|
+
component: {
|
|
11
|
+
Module: string;
|
|
12
|
+
ModuleFileName: string;
|
|
13
|
+
Name: string;
|
|
14
|
+
Selector: string;
|
|
15
|
+
};
|
|
16
|
+
data: BaseTileSetting;
|
|
17
|
+
editHome: boolean;
|
|
18
|
+
hideClick: EventEmitter<any>;
|
|
19
|
+
renameClick: EventEmitter<any>;
|
|
20
|
+
private _tileRef;
|
|
21
|
+
constructor(_cdr: ChangeDetectorRef, _portalService: PortalService, _vcr: ViewContainerRef, _injector: Injector);
|
|
22
|
+
ngOnInit(): void;
|
|
23
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TileRendererDirective, never>;
|
|
26
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TileRendererDirective, "[tileRenderer]", never, { "component": "component"; "data": "data"; "editHome": "editHome"; }, { "hideClick": "hideClick"; "renameClick": "renameClick"; }, never, never, false>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { BaseComponent, MetaobjectDataModel, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
|
|
4
|
+
import { Nullable, TabListComponent, TabPanelComponent } from '@fundamental-ngx/core';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TilesViewerComponent extends BaseComponent {
|
|
7
|
+
tabListComponent: TabListComponent;
|
|
8
|
+
pageContentClass: boolean;
|
|
9
|
+
appTileGroups: Array<MetaobjectDataModel>;
|
|
10
|
+
loading: boolean;
|
|
11
|
+
editHome: boolean;
|
|
12
|
+
stackContent: boolean;
|
|
13
|
+
deviceSize: AbbrevationDeviceSize;
|
|
14
|
+
selectedAppGroupId: string;
|
|
15
|
+
DynamicComponents: any;
|
|
16
|
+
stackContentChange: EventEmitter<boolean>;
|
|
17
|
+
closeEditHome: EventEmitter<any>;
|
|
18
|
+
save: EventEmitter<any>;
|
|
19
|
+
listDropped: EventEmitter<{
|
|
20
|
+
appTileGroups: MetaobjectDataModel[];
|
|
21
|
+
event: CdkDragDrop<MetaobjectDataModel[]>;
|
|
22
|
+
}>;
|
|
23
|
+
tabChanged: EventEmitter<{
|
|
24
|
+
selectedTab: TabPanelComponent;
|
|
25
|
+
tabPanels: TabPanelComponent[];
|
|
26
|
+
appTileGroups: MetaobjectDataModel[];
|
|
27
|
+
}>;
|
|
28
|
+
toggleGroup: EventEmitter<MetaobjectDataModel>;
|
|
29
|
+
resetGroup: EventEmitter<MetaobjectDataModel>;
|
|
30
|
+
deleteGroup: EventEmitter<MetaobjectDataModel>;
|
|
31
|
+
hideAppTileClick: EventEmitter<MetaobjectDataModel>;
|
|
32
|
+
renameAppTileClick: EventEmitter<MetaobjectDataModel>;
|
|
33
|
+
tilesDropped: EventEmitter<{
|
|
34
|
+
appTileGroup: MetaobjectDataModel;
|
|
35
|
+
event: CdkDragDrop<{
|
|
36
|
+
isTile: boolean;
|
|
37
|
+
items: MetaobjectDataModel[];
|
|
38
|
+
}>;
|
|
39
|
+
}>;
|
|
40
|
+
rtl: any;
|
|
41
|
+
selectedTabTitle: Nullable<string>;
|
|
42
|
+
onSelectedTabChange(selectedTab: TabPanelComponent, appTileGroups: MetaobjectDataModel[]): void;
|
|
43
|
+
onDropGroup(appTileGroups: MetaobjectDataModel[], event: CdkDragDrop<MetaobjectDataModel[]>): void;
|
|
44
|
+
onDrop($event: any): void;
|
|
45
|
+
onStackContentChanged(checked: any): void;
|
|
46
|
+
onExitEditHome(appGroups: MetaobjectDataModel[]): void;
|
|
47
|
+
onCloseEditHome(): void;
|
|
48
|
+
_trackById(item: any, index: any): string | number;
|
|
49
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerComponent, never>;
|
|
50
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerComponent, "bt-tiles-viewer", never, { "appTileGroups": "appTileGroups"; "loading": "loading"; "editHome": "editHome"; "stackContent": "stackContent"; "deviceSize": "deviceSize"; "selectedAppGroupId": "selectedAppGroupId"; "DynamicComponents": "DynamicComponents"; }, { "stackContentChange": "stackContentChange"; "closeEditHome": "closeEditHome"; "save": "save"; "listDropped": "listDropped"; "tabChanged": "tabChanged"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "tilesDropped": "tilesDropped"; }, never, never, false>;
|
|
51
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
2
|
+
import { OnDestroy, OnInit } from '@angular/core';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { TabPanelComponent } from '@fundamental-ngx/core';
|
|
5
|
+
import { BaseComponent, MetaobjectDataModel, PortalService, AbbrevationDeviceSize } from 'barsa-novin-ray-core';
|
|
6
|
+
import { TilesService } from '../tiles.service';
|
|
7
|
+
import { TilesViewerService } from '../tiles-viewer.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class TilesViewerContainerComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
10
|
+
protected _portalService: PortalService;
|
|
11
|
+
protected _tilesService: TilesService;
|
|
12
|
+
protected _tilesViewerService: TilesViewerService;
|
|
13
|
+
appTileGroups$: Observable<MetaobjectDataModel[]>;
|
|
14
|
+
viewLoading$: Observable<boolean>;
|
|
15
|
+
deviceSize$: Observable<AbbrevationDeviceSize>;
|
|
16
|
+
editHome$: Observable<boolean>;
|
|
17
|
+
changedOrder: boolean;
|
|
18
|
+
userStackContent: boolean;
|
|
19
|
+
initialStackContentValue: boolean;
|
|
20
|
+
userPortalSettings: MetaobjectDataModel;
|
|
21
|
+
stackContent$: Observable<boolean>;
|
|
22
|
+
firstSelected: boolean;
|
|
23
|
+
constructor(_portalService: PortalService, _tilesService: TilesService, _tilesViewerService: TilesViewerService);
|
|
24
|
+
ngOnInit(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
onSelectedTabChange(e: {
|
|
27
|
+
selectedTab: TabPanelComponent;
|
|
28
|
+
tabPanels: TabPanelComponent[];
|
|
29
|
+
appTileGroups: MetaobjectDataModel[];
|
|
30
|
+
}): void;
|
|
31
|
+
onDropGroup(e: {
|
|
32
|
+
appTileGroups: MetaobjectDataModel[];
|
|
33
|
+
event: CdkDragDrop<MetaobjectDataModel[]>;
|
|
34
|
+
}): void;
|
|
35
|
+
onDrop(e: {
|
|
36
|
+
appTileGroup: any;
|
|
37
|
+
event: CdkDragDrop<{
|
|
38
|
+
isTile: boolean;
|
|
39
|
+
items: MetaobjectDataModel[];
|
|
40
|
+
}>;
|
|
41
|
+
}): void;
|
|
42
|
+
onStackContentChanged(checked: any): void;
|
|
43
|
+
onExitEditHome(appTileGroups: MetaobjectDataModel[]): void;
|
|
44
|
+
onCloseEditHome(): void;
|
|
45
|
+
onDelete(appTileGroup: MetaobjectDataModel): void;
|
|
46
|
+
onToggleShowHide(appTileGroup: MetaobjectDataModel): void;
|
|
47
|
+
onReset(appTileGroup: MetaobjectDataModel): void;
|
|
48
|
+
onHideAppTile(appTile: MetaobjectDataModel): void;
|
|
49
|
+
onRenameAppTile(appTile: MetaobjectDataModel): void;
|
|
50
|
+
private _setEditHome;
|
|
51
|
+
private _saveOrderAppTiles;
|
|
52
|
+
private _saveOrderActionLinks;
|
|
53
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerContainerComponent, never>;
|
|
54
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerContainerComponent, "bt-tiles-viewer-container", never, {}, {}, never, never, false>;
|
|
55
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
2
|
+
import { EventEmitter } from '@angular/core';
|
|
3
|
+
import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TilesViewerGroupComponent extends BaseComponent {
|
|
6
|
+
appTileGroup: MetaobjectDataModel;
|
|
7
|
+
stackContent: boolean;
|
|
8
|
+
editHome: boolean;
|
|
9
|
+
isAppTileSubGroup: boolean;
|
|
10
|
+
tilesDropped: EventEmitter<{
|
|
11
|
+
appTileGroup: MetaobjectDataModel;
|
|
12
|
+
event: CdkDragDrop<{
|
|
13
|
+
isTile: boolean;
|
|
14
|
+
items: MetaobjectDataModel[];
|
|
15
|
+
}>;
|
|
16
|
+
}>;
|
|
17
|
+
hideAppTileClick: EventEmitter<MetaobjectDataModel>;
|
|
18
|
+
renameAppTileClick: EventEmitter<MetaobjectDataModel>;
|
|
19
|
+
toggleGroup: EventEmitter<MetaobjectDataModel>;
|
|
20
|
+
resetGroup: EventEmitter<MetaobjectDataModel>;
|
|
21
|
+
deleteGroup: EventEmitter<MetaobjectDataModel>;
|
|
22
|
+
constructor();
|
|
23
|
+
onDrop(appTileGroup: MetaobjectDataModel, event: CdkDragDrop<{
|
|
24
|
+
isTile: boolean;
|
|
25
|
+
items: MetaobjectDataModel[];
|
|
26
|
+
}>): void;
|
|
27
|
+
onAppTileHideClick(appTile: MetaobjectDataModel): void;
|
|
28
|
+
onAppTileRenameClick(appTile: MetaobjectDataModel): void;
|
|
29
|
+
onDelete(appTileGroup: MetaobjectDataModel): void;
|
|
30
|
+
onToggleShowHide(appTileGroup: MetaobjectDataModel): void;
|
|
31
|
+
onReset(appTileGroup: MetaobjectDataModel): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerGroupComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerGroupComponent, "bt-tiles-viewer-group", never, { "appTileGroup": "appTileGroup"; "stackContent": "stackContent"; "editHome": "editHome"; "isAppTileSubGroup": "isAppTileSubGroup"; }, { "tilesDropped": "tilesDropped"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; }, never, never, false>;
|
|
34
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Observable, Subject } from 'rxjs';
|
|
3
|
+
import { DialogService } from '@fundamental-ngx/core';
|
|
4
|
+
import { MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
5
|
+
import { TilesService } from './tiles.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TilesViewerService implements OnDestroy {
|
|
8
|
+
private dialogService;
|
|
9
|
+
private tilesService;
|
|
10
|
+
viewLoading$: Observable<boolean>;
|
|
11
|
+
hideTile$: Observable<MetaobjectDataModel>;
|
|
12
|
+
updateAppTileSetting$: Observable<MetaobjectDataModel>;
|
|
13
|
+
deleteAppGroup$: Observable<MetaobjectDataModel>;
|
|
14
|
+
protected readonly _onDestroy$: Subject<void>;
|
|
15
|
+
private _hideTileSource;
|
|
16
|
+
private _updateAppTileSettingSource;
|
|
17
|
+
private _deleteGroupSource;
|
|
18
|
+
private _loadAppGroupSource;
|
|
19
|
+
private _saveAppGroupOrdersSource;
|
|
20
|
+
private saveAppGroupOrders$;
|
|
21
|
+
private _resetAppGroupSource;
|
|
22
|
+
private resetAppGroup$;
|
|
23
|
+
private _hideAppGroupSource;
|
|
24
|
+
private hideAppGroup$;
|
|
25
|
+
private _viewLoadingSource;
|
|
26
|
+
constructor(dialogService: DialogService, tilesService: TilesService);
|
|
27
|
+
get selectedAppGroupId(): string;
|
|
28
|
+
set selectedAppGroupId(groupId: string);
|
|
29
|
+
setSelectedTab(group: MetaobjectDataModel): void;
|
|
30
|
+
loadAppGroup(group: MetaobjectDataModel): void;
|
|
31
|
+
ngOnDestroy(): void;
|
|
32
|
+
openRenameForm(appTile: MetaobjectDataModel): void;
|
|
33
|
+
resetAppGroup(appGroup: MetaobjectDataModel): void;
|
|
34
|
+
toggleAppGroupSettingVisible(appGroup: MetaobjectDataModel): void;
|
|
35
|
+
deleteAppGroup(appGroup: MetaobjectDataModel): void;
|
|
36
|
+
hideTile(appTile: MetaobjectDataModel): void;
|
|
37
|
+
saveAppGroupOrders(appGroups: MetaobjectDataModel[]): void;
|
|
38
|
+
setLoaded(): void;
|
|
39
|
+
setLoading(): void;
|
|
40
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerService, never>;
|
|
41
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TilesViewerService>;
|
|
42
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { Subject, Observable } from 'rxjs';
|
|
3
|
+
import { RtlService } from '@fundamental-ngx/core';
|
|
4
|
+
import { BbbTranslatePipe, MetaobjectDataModel, MoForReportModel, PortalService } from 'barsa-novin-ray-core';
|
|
5
|
+
import { AppTileGroupPin } from './models';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class TilesService implements OnDestroy {
|
|
8
|
+
private _portalService;
|
|
9
|
+
private _rtlService;
|
|
10
|
+
private _bbbTranslatePipe;
|
|
11
|
+
deviceSize$: Observable<'s' | 'm' | 'l' | 'xl'>;
|
|
12
|
+
homeAppTileGroups$: Observable<MetaobjectDataModel[]>;
|
|
13
|
+
pinTiles$: Observable<PinTileInfo | null>;
|
|
14
|
+
shellbarSource: Subject<MetaobjectDataModel>;
|
|
15
|
+
shellbar$: Observable<MetaobjectDataModel>;
|
|
16
|
+
appTileGroups$: Observable<MoForReportModel | null>;
|
|
17
|
+
editHome$: Observable<boolean>;
|
|
18
|
+
private _OnDestroy$;
|
|
19
|
+
private _homeAppTileGroupsSource;
|
|
20
|
+
private pinTilesSource;
|
|
21
|
+
private _appTileGroupsSource;
|
|
22
|
+
private _edithomeSource;
|
|
23
|
+
constructor(_portalService: PortalService, _rtlService: RtlService, _bbbTranslatePipe: BbbTranslatePipe);
|
|
24
|
+
get appTileGroups(): MoForReportModel | null;
|
|
25
|
+
ngOnDestroy(): void;
|
|
26
|
+
loadAppTileGroups(appTileGroup: MetaobjectDataModel): void;
|
|
27
|
+
saveTilesStackContent(tilesStackContent: boolean): Promise<void>;
|
|
28
|
+
loadUserPortalSettings(): Observable<any>;
|
|
29
|
+
loadFromServerUserPortalSetting(): Observable<MetaobjectDataModel>;
|
|
30
|
+
toggleAppGroupSettingVisible(appGroup: MetaobjectDataModel): Observable<MetaobjectDataModel>;
|
|
31
|
+
resetAppGroupSetting(appGroup: MetaobjectDataModel): Observable<MetaobjectDataModel>;
|
|
32
|
+
deleteAppGroup(appGroup: MetaobjectDataModel): Observable<string>;
|
|
33
|
+
changeAppTileSetting(appTile: MetaobjectDataModel): Observable<MetaobjectDataModel | null>;
|
|
34
|
+
saveAppGroupOrders(appGroups: MetaobjectDataModel[]): Observable<void>;
|
|
35
|
+
createAppGroup(title: string): Observable<MetaobjectDataModel>;
|
|
36
|
+
saveOrderAppTiles(appGroup: MetaobjectDataModel, appTiles: number[], isActionLink?: boolean, appTileIdTransferedId?: string): void;
|
|
37
|
+
updataAppTileSetting(selectedGroup: MetaobjectDataModel, appGroupSetting: MetaobjectDataModel): void;
|
|
38
|
+
addAppGroup(mo: MetaobjectDataModel): void;
|
|
39
|
+
singlePinTileChanged(appTileId: any): Observable<boolean>;
|
|
40
|
+
pinTileChanged(appTileGroupsPin: AppTileGroupPin[], app: MetaobjectDataModel, callback: any): void;
|
|
41
|
+
_tilePinChange(appTileGroupsPin: any, allApps: any): void;
|
|
42
|
+
loadShellbar(): void;
|
|
43
|
+
loadAllAppTileGroups(): void;
|
|
44
|
+
_setTileInfo(appTile: any): void;
|
|
45
|
+
getTileGroups(): MoForReportModel | null;
|
|
46
|
+
setEditHome(edit: boolean): void;
|
|
47
|
+
private _allAppsLoaded;
|
|
48
|
+
private _loadAppTilesOfAppTileGroup;
|
|
49
|
+
private _loadAppTilesByAppTileGroup;
|
|
50
|
+
private _updateAppTilesOfAppTileGroup;
|
|
51
|
+
private _loadAppTilesByAppTileGroupSetting;
|
|
52
|
+
private _nextAllAppTileGroups;
|
|
53
|
+
private _setHomeAppTileGroups;
|
|
54
|
+
private _saveUserPortalSettings;
|
|
55
|
+
private _updateAppGroupSetting;
|
|
56
|
+
private findGroupWithAppTileId;
|
|
57
|
+
private _findGroupWithAppGroupId;
|
|
58
|
+
private _updateAppTileGroupSettings;
|
|
59
|
+
private _prepareNavigator;
|
|
60
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TilesService, never>;
|
|
61
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TilesService>;
|
|
62
|
+
}
|
|
63
|
+
interface PinTileInfo {
|
|
64
|
+
groups: MetaobjectDataModel[];
|
|
65
|
+
visible: boolean[];
|
|
66
|
+
tileId: string;
|
|
67
|
+
}
|
|
68
|
+
export {};
|
package/package.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "barsa-tiles",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^11.1.2",
|
|
6
|
+
"@angular/core": "^11.1.2"
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"tslib": "^2.0.0"
|
|
10
|
+
},
|
|
11
|
+
"module": "fesm2015/barsa-tiles.mjs",
|
|
12
|
+
"es2020": "fesm2020/barsa-tiles.mjs",
|
|
13
|
+
"esm2020": "esm2020/barsa-tiles.mjs",
|
|
14
|
+
"fesm2020": "fesm2020/barsa-tiles.mjs",
|
|
15
|
+
"fesm2015": "fesm2015/barsa-tiles.mjs",
|
|
16
|
+
"typings": "index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
"./package.json": {
|
|
19
|
+
"default": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
".": {
|
|
22
|
+
"types": "./index.d.ts",
|
|
23
|
+
"esm2020": "./esm2020/barsa-tiles.mjs",
|
|
24
|
+
"es2020": "./fesm2020/barsa-tiles.mjs",
|
|
25
|
+
"es2015": "./fesm2015/barsa-tiles.mjs",
|
|
26
|
+
"node": "./fesm2015/barsa-tiles.mjs",
|
|
27
|
+
"default": "./fesm2020/barsa-tiles.mjs"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"sideEffects": false
|
|
31
|
+
}
|
package/public-api.d.ts
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export * from './lib/form-tile/form-tile.component';
|
|
2
|
+
export * from './lib/tiles-viewer-group/tiles-viewer-group.component';
|
|
3
|
+
export * from './lib/app-finder-app-list/app-finder-app-list.component';
|
|
4
|
+
export * from './lib/app-finder-group/app-finder-group.component';
|
|
5
|
+
export * from './lib/app-finder/app-finder.component';
|
|
6
|
+
export * from './lib/tiles-viewer-container/tiles-viewer-container.component';
|
|
7
|
+
export * from './lib/micro-tile-chart-bullet/micro-tile-chart-bullet.component';
|
|
8
|
+
export * from './lib/action-item/action-item.component';
|
|
9
|
+
export * from './lib/actions-link/actions-link.component';
|
|
10
|
+
export * from './lib/news-tile/news-tile.component';
|
|
11
|
+
export * from './lib/news-tile/news-tile.component';
|
|
12
|
+
export * from './lib/news-tile/news-tile.component';
|
|
13
|
+
export * from './lib/news-tile/news-tile.component';
|
|
14
|
+
export * from './lib/news-tile/news-tile.component';
|
|
15
|
+
export * from './lib/micro-tile-chart-comparison/micro-tile-chart-comparison.component';
|
|
16
|
+
export * from './lib/micro-tile-chart-stackbar/micro-tile-chart-stackbar.component';
|
|
17
|
+
export * from './lib/micro-tile-chart-line/micro-tile-chart-line.component';
|
|
18
|
+
export * from './lib/micro-tile-chart-circular/micro-tile-chart-circular.component';
|
|
19
|
+
export * from './lib/micro-tile-chart-area/micro-tile-chart-area.component';
|
|
20
|
+
export * from './lib/micro-tile-chart-bar/micro-tile-chart-bar.component';
|
|
21
|
+
export * from './lib/change-app-tile/change-app-tile.component';
|
|
22
|
+
export * from './lib/create-app-group/create-app-group.component';
|
|
23
|
+
export * from './lib/pin-tile/pin-tile.component';
|
|
24
|
+
export * from './lib/form-app-finder/form-app-finder.component';
|
|
25
|
+
export * from './lib/footer-edit-tile/footer-edit-tile.component';
|
|
26
|
+
export * from './lib/numeric-tile/numeric-tile.component';
|
|
27
|
+
export * from './lib/logo-tile/logo-tile.component';
|
|
28
|
+
export * from './lib/tile/tile.component';
|
|
29
|
+
export * from './lib/footer-tile/footer-tile.component';
|
|
30
|
+
export * from './lib/feed-tile/feed-tile.component';
|
|
31
|
+
export * from './lib/simple-tile/simple-tile.component';
|
|
32
|
+
export * from './lib/profile-tile/profile-tile.component';
|
|
33
|
+
export * from './lib/tiles-viewer/tiles-viewer.component';
|
|
34
|
+
export * from './lib/shellbar/shellbar.component';
|
|
35
|
+
export * from './lib/pipes/tile-home-filter.pipe';
|
|
36
|
+
export * from './lib/pipes/group-tiles.pipe';
|
|
37
|
+
export * from './lib/tiles-viewer.service';
|
|
38
|
+
export * from './lib/tiles.service';
|
|
39
|
+
export * from './lib/barsa-tiles.module';
|