@trudb/tru-common-lib 0.1.207 → 0.1.209

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.
@@ -0,0 +1,5 @@
1
+ import { Observable } from "rxjs";
2
+ export declare abstract class TruReportConfig {
3
+ actionRefs: string;
4
+ allMenus: () => Observable<any>;
5
+ }
@@ -1,5 +1,5 @@
1
- import { Observable } from "rxjs";
2
1
  import { TruTableConfigBase } from "../../../base-classes/tru-table-config-base";
2
+ import { TruReportConfig } from "../../../classes/tru-report-config";
3
3
  export interface ITruDataGridConfig {
4
4
  tableName: string;
5
5
  tablePluralName: string;
@@ -7,6 +7,6 @@ export interface ITruDataGridConfig {
7
7
  resultConfig: any;
8
8
  tableConfig: TruTableConfigBase;
9
9
  noQuery: boolean;
10
- reportMenu: () => Observable<any>;
10
+ reportConfig: TruReportConfig;
11
11
  rowHeaderDoubleClicked: (data: any) => void;
12
12
  }
@@ -48,6 +48,7 @@ export declare class TruDataGrid implements OnInit, OnChanges, AfterViewInit {
48
48
  private enhanceRowDataForEntity;
49
49
  private setNoRowsTemplate;
50
50
  private subscribeTo;
51
+ private getRefs;
51
52
  private getRowData;
52
53
  private loadGridData;
53
54
  private loadManyToManyGridData;
@@ -7,11 +7,13 @@ export declare class TruDesktopViewConfig {
7
7
  set active(value: boolean);
8
8
  entities: Array<any> | undefined;
9
9
  entityIndex: number;
10
+ entityRefs: string;
10
11
  isDirty: boolean;
11
12
  isEditing: boolean;
12
13
  isInvalid: boolean;
13
14
  componentName: string;
14
15
  openAsDetaiView: boolean;
15
16
  window: WindowConfig;
17
+ selectedRefs: () => string;
16
18
  constructor();
17
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trudb/tru-common-lib",
3
- "version": "0.1.207",
3
+ "version": "0.1.209",
4
4
  "type": "module",
5
5
  "peerDependencies": {},
6
6
  "dependencies": {
package/public-api.d.ts CHANGED
@@ -41,6 +41,7 @@ export * from './lib/classes/tru-property-config-text-choices';
41
41
  export * from './lib/classes/tru-property-config-usa-address';
42
42
  export * from './lib/classes/tru-property-config-zip-code';
43
43
  export * from './lib/classes/tru-query-predicate-manager';
44
+ export * from './lib/classes/tru-report-config';
44
45
  export * from './lib/classes/tru-validator-factory';
45
46
  export * from './lib/components/confirm-dialog/tru-confirm-dialog';
46
47
  export * from './lib/components/confirm-dialog/tru-confirm-dialog-module';
@@ -1,3 +0,0 @@
1
- export class TruReport {
2
- }
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHJ1LXJlcG9ydC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3RydS1jb21tb24tbGliL3NyYy9saWIvY2xhc3Nlcy90cnUtcmVwb3J0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBZ0IsU0FBUztDQUs5QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBhYnN0cmFjdCBjbGFzcyBUcnVSZXBvcnQge1xyXG4gIGFic3RyYWN0IGxhYmVsOiBzdHJpbmc7XHJcbiAgYWJzdHJhY3QgdmFsdWU6IHsgJDogc3RyaW5nIHwgbnVtYmVyIHwgbnVsbCB8IHVuZGVmaW5lZCB9O1xyXG4gIGFic3RyYWN0IGNoZWNrZWQ/OiBib29sZWFuIHwgbnVsbCB8IHVuZGVmaW5lZDtcclxuICBhYnN0cmFjdCBub3RBbk9wdGlvbj86IGJvb2xlYW4gfCB1bmRlZmluZWQ7XHJcbn1cclxuIl19
@@ -1,8 +0,0 @@
1
- export declare abstract class TruReport {
2
- abstract label: string;
3
- abstract value: {
4
- $: string | number | null | undefined;
5
- };
6
- abstract checked?: boolean | null | undefined;
7
- abstract notAnOption?: boolean | undefined;
8
- }