barsa-tiles 1.0.291 → 1.0.294
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/action-item/action-item.component.mjs +3 -3
- package/esm2020/lib/actions-link/actions-link.component.mjs +5 -4
- package/esm2020/lib/barsa-tiles.module.mjs +4 -3
- package/esm2020/lib/feed-tile/feed-tile.component.mjs +4 -3
- package/esm2020/lib/form-tile/form-tile.component.mjs +4 -3
- package/esm2020/lib/logo-tile/logo-tile.component.mjs +4 -3
- package/esm2020/lib/micro-tile-chart-area/micro-tile-chart-area.component.mjs +4 -3
- package/esm2020/lib/micro-tile-chart-bar/micro-tile-chart-bar.component.mjs +4 -3
- package/esm2020/lib/micro-tile-chart-bullet/micro-tile-chart-bullet.component.mjs +4 -3
- package/esm2020/lib/micro-tile-chart-circular/micro-tile-chart-circular.component.mjs +4 -3
- package/esm2020/lib/micro-tile-chart-comparison/micro-tile-chart-comparison.component.mjs +4 -3
- package/esm2020/lib/micro-tile-chart-line/micro-tile-chart-line.component.mjs +4 -3
- package/esm2020/lib/micro-tile-chart-stackbar/micro-tile-chart-stackbar.component.mjs +4 -3
- package/esm2020/lib/models/base-tile-component.mjs +15 -25
- package/esm2020/lib/news-tile/news-tile.component.mjs +4 -3
- package/esm2020/lib/numeric-tile/numeric-tile.component.mjs +4 -3
- package/esm2020/lib/pipes/tile-prop.pipe.mjs +28 -0
- package/esm2020/lib/profile-tile/profile-tile.component.mjs +4 -3
- package/esm2020/lib/simple-tile/simple-tile.component.mjs +9 -3
- package/esm2020/lib/tile/tile.component.mjs +21 -9
- package/esm2020/lib/tile-renderer.directive.mjs +7 -7
- package/esm2020/lib/tiles-viewer/tiles-viewer.component.mjs +5 -5
- package/esm2020/lib/tiles-viewer-container/tiles-viewer-container.component.mjs +4 -4
- package/esm2020/lib/tiles-viewer-group/tiles-viewer-group.component.mjs +5 -5
- package/esm2020/lib/tiles.service.mjs +2 -2
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/barsa-tiles.mjs +119 -84
- package/fesm2015/barsa-tiles.mjs.map +1 -1
- package/fesm2020/barsa-tiles.mjs +118 -84
- package/fesm2020/barsa-tiles.mjs.map +1 -1
- package/lib/actions-link/actions-link.component.d.ts +2 -2
- package/lib/barsa-tiles.module.d.ts +30 -15
- package/lib/models/base-tile-component.d.ts +5 -12
- package/lib/pipes/tile-prop.pipe.d.ts +8 -0
- package/lib/simple-tile/simple-tile.component.d.ts +5 -1
- package/lib/tile/tile.component.d.ts +11 -4
- package/lib/tile-renderer.directive.d.ts +2 -2
- package/lib/tiles-viewer/tiles-viewer.component.d.ts +2 -2
- package/lib/tiles-viewer-container/tiles-viewer-container.component.d.ts +1 -1
- package/lib/tiles-viewer-group/tiles-viewer-group.component.d.ts +2 -2
- package/lib/tiles.service.d.ts +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -3,8 +3,8 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ActionsLinkComponent extends BaseComponent {
|
|
4
4
|
hide: any;
|
|
5
5
|
actionsLink: any;
|
|
6
|
-
|
|
6
|
+
edit: boolean;
|
|
7
7
|
ngOnInit(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionsLinkComponent, never>;
|
|
9
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionsLinkComponent, "bt-actions-link", never, { "actionsLink": "actionsLink"; "
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionsLinkComponent, "bt-actions-link", never, { "actionsLink": "actionsLink"; "edit": "edit"; }, {}, never, never, false>;
|
|
10
10
|
}
|
|
@@ -1,13 +1,27 @@
|
|
|
1
1
|
import { ComponentFactoryResolver } from '@angular/core';
|
|
2
2
|
import { BaseModule, DynamicComponentService } from 'barsa-novin-ray-core';
|
|
3
3
|
import { ShellbarComponent } from './shellbar/shellbar.component';
|
|
4
|
+
import { ProfileTileComponent } from './profile-tile/profile-tile.component';
|
|
4
5
|
import { SimpleTileComponent } from './simple-tile/simple-tile.component';
|
|
6
|
+
import { FeedTileComponent } from './feed-tile/feed-tile.component';
|
|
7
|
+
import { TileComponent } from './tile/tile.component';
|
|
8
|
+
import { LogoTileComponent } from './logo-tile/logo-tile.component';
|
|
9
|
+
import { NumericTileComponent } from './numeric-tile/numeric-tile.component';
|
|
5
10
|
import { FooterEditTileComponent } from './footer-edit-tile/footer-edit-tile.component';
|
|
6
11
|
import { FormAppFinderComponent } from './form-app-finder/form-app-finder.component';
|
|
7
12
|
import { PinTileComponent } from './pin-tile/pin-tile.component';
|
|
8
13
|
import { ChangeAppTileComponent } from './change-app-tile/change-app-tile.component';
|
|
9
14
|
import { CreateAppGroupComponent } from './create-app-group/create-app-group.component';
|
|
15
|
+
import { MicroTileChartBarComponent } from './micro-tile-chart-bar/micro-tile-chart-bar.component';
|
|
16
|
+
import { MicroTileChartAreaComponent } from './micro-tile-chart-area/micro-tile-chart-area.component';
|
|
17
|
+
import { MicroTileChartCircularComponent } from './micro-tile-chart-circular/micro-tile-chart-circular.component';
|
|
18
|
+
import { MicroTileChartLineComponent } from './micro-tile-chart-line/micro-tile-chart-line.component';
|
|
19
|
+
import { MicroTileChartStackbarComponent } from './micro-tile-chart-stackbar/micro-tile-chart-stackbar.component';
|
|
20
|
+
import { MicroTileChartComparisonComponent } from './micro-tile-chart-comparison/micro-tile-chart-comparison.component';
|
|
21
|
+
import { NewsTileComponent } from './news-tile/news-tile.component';
|
|
22
|
+
import { MicroTileChartBulletComponent } from './micro-tile-chart-bullet/micro-tile-chart-bullet.component';
|
|
10
23
|
import { TilesViewerContainerComponent } from './tiles-viewer-container/tiles-viewer-container.component';
|
|
24
|
+
import { FormTileComponent } from './form-tile/form-tile.component';
|
|
11
25
|
import * as i0 from "@angular/core";
|
|
12
26
|
import * as i1 from "./shellbar/shellbar.component";
|
|
13
27
|
import * as i2 from "./simple-tile/simple-tile.component";
|
|
@@ -43,25 +57,26 @@ import * as i31 from "./pipes/group-tiles.pipe";
|
|
|
43
57
|
import * as i32 from "./pipes/tile-home-filter.pipe";
|
|
44
58
|
import * as i33 from "./pipes/home-group.pipe";
|
|
45
59
|
import * as i34 from "./action-links.pipe";
|
|
46
|
-
import * as i35 from "./
|
|
47
|
-
import * as i36 from "./
|
|
48
|
-
import * as i37 from "./
|
|
49
|
-
import * as i38 from "./notification-group
|
|
50
|
-
import * as i39 from "
|
|
51
|
-
import * as i40 from "@angular/
|
|
52
|
-
import * as i41 from "@angular/
|
|
53
|
-
import * as i42 from "@angular/cdk/
|
|
54
|
-
import * as i43 from "@
|
|
55
|
-
import * as i44 from "@fundamental-ngx/
|
|
56
|
-
import * as i45 from "
|
|
57
|
-
import * as i46 from "barsa-
|
|
58
|
-
import * as i47 from "barsa-
|
|
60
|
+
import * as i35 from "./pipes/tile-prop.pipe";
|
|
61
|
+
import * as i36 from "./directives/emptylist.directive";
|
|
62
|
+
import * as i37 from "./tile-renderer.directive";
|
|
63
|
+
import * as i38 from "./notification-group/notification-group.component";
|
|
64
|
+
import * as i39 from "./notification-group-header/notification-group-header.component";
|
|
65
|
+
import * as i40 from "@angular/common";
|
|
66
|
+
import * as i41 from "@angular/forms";
|
|
67
|
+
import * as i42 from "@angular/cdk/drag-drop";
|
|
68
|
+
import * as i43 from "@angular/cdk/table";
|
|
69
|
+
import * as i44 from "@fundamental-ngx/core";
|
|
70
|
+
import * as i45 from "@fundamental-ngx/platform";
|
|
71
|
+
import * as i46 from "barsa-novin-ray-core";
|
|
72
|
+
import * as i47 from "barsa-sap-ui";
|
|
73
|
+
import * as i48 from "barsa-echarts";
|
|
59
74
|
export declare class BarsaTilesModule extends BaseModule {
|
|
60
75
|
protected dcm: DynamicComponentService;
|
|
61
76
|
protected componentFactoryResolver: ComponentFactoryResolver;
|
|
62
|
-
protected dynamicComponents: (typeof ChangeAppTileComponent | typeof TilesViewerContainerComponent | typeof CreateAppGroupComponent | typeof PinTileComponent | typeof FormAppFinderComponent | typeof FooterEditTileComponent | typeof SimpleTileComponent | typeof ShellbarComponent)[];
|
|
77
|
+
protected dynamicComponents: (typeof FormTileComponent | typeof ChangeAppTileComponent | typeof TilesViewerContainerComponent | typeof MicroTileChartBulletComponent | typeof TileComponent | typeof NewsTileComponent | typeof MicroTileChartComparisonComponent | typeof MicroTileChartStackbarComponent | typeof MicroTileChartLineComponent | typeof MicroTileChartCircularComponent | typeof MicroTileChartAreaComponent | typeof MicroTileChartBarComponent | typeof CreateAppGroupComponent | typeof PinTileComponent | typeof FormAppFinderComponent | typeof FooterEditTileComponent | typeof NumericTileComponent | typeof LogoTileComponent | typeof FeedTileComponent | typeof SimpleTileComponent | typeof ProfileTileComponent | typeof ShellbarComponent)[];
|
|
63
78
|
constructor(dcm: DynamicComponentService, componentFactoryResolver: ComponentFactoryResolver);
|
|
64
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<BarsaTilesModule, never>;
|
|
65
|
-
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.
|
|
80
|
+
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.TilePropPipe, typeof i36.EmptyListDirective, typeof i37.TileRendererDirective, typeof i38.NotificationGroupComponent, typeof i39.NotificationGroupHeaderComponent], [typeof i40.CommonModule, typeof i41.FormsModule, typeof i42.DragDropModule, typeof i43.CdkTableModule, typeof i44.FundamentalNgxCoreModule, typeof i44.GridListModule, typeof i45.FundamentalNgxPlatformModule, typeof i41.ReactiveFormsModule, typeof i46.BarsaNovinRayCoreModule, typeof i47.BarsaSapUiModule, typeof i48.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]>;
|
|
66
81
|
static ɵinj: i0.ɵɵInjectorDeclaration<BarsaTilesModule>;
|
|
67
82
|
}
|
|
@@ -1,18 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BaseComponent, MetaobjectDataModel } from 'barsa-novin-ray-core';
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
3
2
|
import { AppTileFooter } from './app-tile-footer';
|
|
4
3
|
import { BaseTileSetting } from './base-tile-setting';
|
|
5
4
|
import { TileSetting } from './tile-setting';
|
|
5
|
+
import { TilePropsComponent } from 'barsa-novin-ray-core';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare abstract class BaseTileComponent<T extends BaseTileSetting> extends
|
|
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);
|
|
7
|
+
export declare abstract class BaseTileComponent<T extends BaseTileSetting> extends TilePropsComponent implements OnInit {
|
|
16
8
|
get settings(): T;
|
|
17
9
|
get title(): string;
|
|
18
10
|
get subtitle(): string;
|
|
@@ -21,6 +13,7 @@ export declare abstract class BaseTileComponent<T extends BaseTileSetting> exten
|
|
|
21
13
|
get footer(): AppTileFooter;
|
|
22
14
|
get tileSetting(): TileSetting;
|
|
23
15
|
setEditHome(val: boolean): void;
|
|
16
|
+
onTileClick(): void;
|
|
24
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseTileComponent<any>, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseTileComponent<any>, "bt-base-tile", never, {
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseTileComponent<any>, "bt-base-tile", never, {}, {}, never, never, false>;
|
|
26
19
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
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 TilePropPipe implements PipeTransform {
|
|
5
|
+
transform(data: any, prop: string, parameters?: MetaobjectDataModel): string | any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TilePropPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TilePropPipe, "tileProp", false>;
|
|
8
|
+
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { BaseBtTileComponent, BaseTileSetting } from '../models';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class SimpleTileComponent extends BaseBtTileComponent<BaseTileSetting> {
|
|
4
|
+
export declare class SimpleTileComponent extends BaseBtTileComponent<BaseTileSetting> implements OnInit {
|
|
5
|
+
icon: string;
|
|
6
|
+
iconColor: string;
|
|
7
|
+
ngOnInit(): void;
|
|
4
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<SimpleTileComponent, never>;
|
|
5
9
|
static ɵcmp: i0.ɵɵComponentDeclaration<SimpleTileComponent, "bt-simple-tile", never, {}, {}, never, never, false>;
|
|
6
10
|
}
|
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { TilePropsComponent } from 'barsa-novin-ray-core';
|
|
3
|
+
import { AppTileFooter } from '../models';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class TileComponent extends
|
|
5
|
+
export declare class TileComponent extends TilePropsComponent {
|
|
5
6
|
type: 'feed' | 'launch' | 'kpi';
|
|
6
7
|
footerTemplate: TemplateRef<any>;
|
|
8
|
+
footer: AppTileFooter;
|
|
7
9
|
disableClick: boolean;
|
|
10
|
+
title: string;
|
|
11
|
+
subtitle: string;
|
|
12
|
+
isDouble: boolean;
|
|
13
|
+
edit: boolean;
|
|
14
|
+
dynamicCommand: any;
|
|
8
15
|
runningCommand: boolean;
|
|
9
|
-
onClick(): boolean;
|
|
16
|
+
onClick(ev: any): boolean;
|
|
10
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<TileComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "bt-tile", never, { "type": "type"; "footerTemplate": "footerTemplate"; "disableClick": "disableClick"; }, {}, never, ["*"], false>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TileComponent, "bt-tile", never, { "type": "type"; "footerTemplate": "footerTemplate"; "footer": "footer"; "disableClick": "disableClick"; "title": "title"; "subtitle": "subtitle"; "isDouble": "isDouble"; "edit": "edit"; "dynamicCommand": "dynamicCommand"; }, {}, never, ["*"], false>;
|
|
12
19
|
}
|
|
@@ -15,7 +15,7 @@ export declare class TileRendererDirective extends BaseDirective implements OnIn
|
|
|
15
15
|
Selector: string;
|
|
16
16
|
};
|
|
17
17
|
data: BaseTileSetting;
|
|
18
|
-
|
|
18
|
+
edit: boolean;
|
|
19
19
|
hideClick: EventEmitter<any>;
|
|
20
20
|
renameClick: EventEmitter<any>;
|
|
21
21
|
private _tileRef;
|
|
@@ -24,5 +24,5 @@ export declare class TileRendererDirective extends BaseDirective implements OnIn
|
|
|
24
24
|
ngOnChanges(changes: SimpleChanges): void;
|
|
25
25
|
ngOnDestroy(): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<TileRendererDirective, never>;
|
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TileRendererDirective, "[tileRenderer]", never, { "component": "component"; "data": "data"; "
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TileRendererDirective, "[tileRenderer]", never, { "component": "component"; "data": "data"; "edit": "edit"; }, { "hideClick": "hideClick"; "renameClick": "renameClick"; }, never, never, false>;
|
|
28
28
|
}
|
|
@@ -8,7 +8,7 @@ export declare class TilesViewerComponent extends BaseComponent {
|
|
|
8
8
|
pageContentClass: boolean;
|
|
9
9
|
appTileGroups: Array<MetaobjectDataModel>;
|
|
10
10
|
loading: boolean;
|
|
11
|
-
|
|
11
|
+
edit: boolean;
|
|
12
12
|
stackContent: boolean;
|
|
13
13
|
deviceSize: AbbrevationDeviceSize;
|
|
14
14
|
selectedAppGroupId: string;
|
|
@@ -49,5 +49,5 @@ export declare class TilesViewerComponent extends BaseComponent {
|
|
|
49
49
|
onCloseEditHome(): void;
|
|
50
50
|
_trackById(item: any, index: any): string | number;
|
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerComponent, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerComponent, "bt-tiles-viewer", never, { "appTileGroups": "appTileGroups"; "loading": "loading"; "
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerComponent, "bt-tiles-viewer", never, { "appTileGroups": "appTileGroups"; "loading": "loading"; "edit": "edit"; "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>;
|
|
53
53
|
}
|
|
@@ -13,7 +13,7 @@ export declare class TilesViewerContainerComponent extends BaseComponent impleme
|
|
|
13
13
|
appTileGroups$: Observable<MetaobjectDataModel[]>;
|
|
14
14
|
viewLoading$: Observable<boolean>;
|
|
15
15
|
deviceSize$: Observable<AbbrevationDeviceSize>;
|
|
16
|
-
|
|
16
|
+
edit$: Observable<boolean>;
|
|
17
17
|
changedOrder: boolean;
|
|
18
18
|
userStackContent: boolean;
|
|
19
19
|
initialStackContentValue: boolean;
|
|
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class TilesViewerGroupComponent extends BaseComponent {
|
|
6
6
|
appTileGroup: MetaobjectDataModel;
|
|
7
7
|
stackContent: boolean;
|
|
8
|
-
|
|
8
|
+
edit: boolean;
|
|
9
9
|
isAppTileSubGroup: boolean;
|
|
10
10
|
deviceSize: AbbrevationDeviceSize;
|
|
11
11
|
tilesDropped: EventEmitter<{
|
|
@@ -31,5 +31,5 @@ export declare class TilesViewerGroupComponent extends BaseComponent {
|
|
|
31
31
|
onToggleShowHide(appTileGroup: MetaobjectDataModel): void;
|
|
32
32
|
onReset(appTileGroup: MetaobjectDataModel): void;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<TilesViewerGroupComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerGroupComponent, "bt-tiles-viewer-group", never, { "appTileGroup": "appTileGroup"; "stackContent": "stackContent"; "
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TilesViewerGroupComponent, "bt-tiles-viewer-group", never, { "appTileGroup": "appTileGroup"; "stackContent": "stackContent"; "edit": "edit"; "isAppTileSubGroup": "isAppTileSubGroup"; "deviceSize": "deviceSize"; }, { "tilesDropped": "tilesDropped"; "hideAppTileClick": "hideAppTileClick"; "renameAppTileClick": "renameAppTileClick"; "toggleGroup": "toggleGroup"; "resetGroup": "resetGroup"; "deleteGroup": "deleteGroup"; }, never, never, false>;
|
|
35
35
|
}
|
package/lib/tiles.service.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare class TilesService implements OnDestroy {
|
|
|
14
14
|
shellbarSource: Subject<MetaobjectDataModel>;
|
|
15
15
|
shellbar$: Observable<MetaobjectDataModel>;
|
|
16
16
|
appTileGroups$: Observable<MoForReportModel | null>;
|
|
17
|
-
|
|
17
|
+
edit$: Observable<boolean>;
|
|
18
18
|
private _OnDestroy$;
|
|
19
19
|
private _homeAppTileGroupsSource;
|
|
20
20
|
private pinTilesSource;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -36,4 +36,5 @@ export * from './lib/pipes/tile-home-filter.pipe';
|
|
|
36
36
|
export * from './lib/pipes/group-tiles.pipe';
|
|
37
37
|
export * from './lib/tiles-viewer.service';
|
|
38
38
|
export * from './lib/tiles.service';
|
|
39
|
+
export * from './lib/pipes/tile-prop.pipe';
|
|
39
40
|
export * from './lib/barsa-tiles.module';
|