@smartbit4all/ng-client 3.3.92 → 3.3.94
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/smart-table/smarttable.model.mjs +1 -1
- package/esm2020/lib/smart-table/tables/material-table/material-table.component.mjs +3 -3
- package/esm2020/lib/smart-table/tables/mobile-table/mobile-table.component.mjs +5 -4
- package/esm2020/lib/smart-table/tables/table.mjs +16 -3
- package/esm2020/lib/smart-tree/smarttree-generic.service.mjs +4 -7
- package/esm2020/lib/view-context/smart-view-context.service.mjs +5 -1
- package/fesm2015/smartbit4all-ng-client.mjs +39 -24
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +38 -24
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/lib/smart-table/smarttable.model.d.ts +1 -0
- package/lib/smart-table/tables/table.d.ts +4 -3
- package/lib/smart-tree/smarttree-generic.service.d.ts +0 -2
- package/lib/view-context/smart-view-context.service.d.ts +1 -0
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.94.tgz +0 -0
- package/smartbit4all-ng-client-3.3.92.tgz +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ComponentRef, OnDestroy, OnInit, QueryList, ViewContainerRef } from '@angular/core';
|
|
2
2
|
import { ThemePalette } from '@angular/material/core';
|
|
3
3
|
import { MatMenuTrigger } from '@angular/material/menu';
|
|
4
|
-
import { SmartTable, SmartTableButton, SmartTableButtonType, SmartTableHeader, SmartTableHeaderPropertyType, SmartTableOptionButtonDirection, SmartTableType } from '../smarttable.model';
|
|
5
|
-
import { Subject } from 'rxjs';
|
|
6
4
|
import { MatTable } from '@angular/material/table';
|
|
5
|
+
import { Subject } from 'rxjs';
|
|
7
6
|
import { ComponentFactoryService } from '../../component-factory-service/projects';
|
|
7
|
+
import { ImageResource, UiActionTooltip } from '../../view-context/api/model/models';
|
|
8
8
|
import { DefaultActionsPopupComponent } from '../components/default-actions-popup/default-actions-popup.component';
|
|
9
|
-
import {
|
|
9
|
+
import { SmartTable, SmartTableButton, SmartTableButtonType, SmartTableHeader, SmartTableHeaderPropertyType, SmartTableOptionButtonDirection, SmartTableType } from '../smarttable.model';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class Table implements OnInit, OnDestroy {
|
|
12
12
|
protected cfService: ComponentFactoryService;
|
|
@@ -40,6 +40,7 @@ export declare class Table implements OnInit, OnDestroy {
|
|
|
40
40
|
getSortIcon(header: string): string | undefined;
|
|
41
41
|
hasSortNumIcon(header: string): boolean;
|
|
42
42
|
getSortNumIcon(header: string): string;
|
|
43
|
+
getToolTip(element: any, headerIndex: number): UiActionTooltip | undefined;
|
|
43
44
|
getIcon(value: string | number | boolean, headerIndex: number): string;
|
|
44
45
|
getColor(value: string | number | boolean, headerIndex: number): ThemePalette;
|
|
45
46
|
tableOptionButtonDirection(): typeof SmartTableOptionButtonDirection;
|
|
@@ -6,7 +6,6 @@ import { Subject } from 'rxjs';
|
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export interface SmarttreeConfiguration {
|
|
8
8
|
treeid: string;
|
|
9
|
-
viewContextName: string;
|
|
10
9
|
pageName: string;
|
|
11
10
|
}
|
|
12
11
|
export declare class SmarttreeGenericService extends SmarttreeService<SmartTreeNode[]> implements UseUiAction {
|
|
@@ -16,7 +15,6 @@ export declare class SmarttreeGenericService extends SmarttreeService<SmartTreeN
|
|
|
16
15
|
reSubscribeToChange: Subject<void>;
|
|
17
16
|
uiActionDescriptors: Map<string, UiActionDescriptor>;
|
|
18
17
|
selectedNode?: SmartTreeNode;
|
|
19
|
-
viewContextName: string;
|
|
20
18
|
protected viewContext: SmartViewContextService;
|
|
21
19
|
private service;
|
|
22
20
|
private uiActionDescriptorService;
|
|
@@ -68,6 +68,7 @@ export declare class SmartViewContextService implements OnDestroy {
|
|
|
68
68
|
syncView(): void;
|
|
69
69
|
private setViewContextUuid;
|
|
70
70
|
getViewContextUuid(): string;
|
|
71
|
+
hasViewContextUuid(): boolean;
|
|
71
72
|
setUuidOfPage(pageName: string, uuid: string, componentName?: string): void;
|
|
72
73
|
clearUuidOfPage(pageName: string, componentName?: string): void;
|
|
73
74
|
getUuidOfPage(pageName: string): string;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|