@trudb/tru-common-lib 0.1.282 → 0.1.284

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.
@@ -4,5 +4,6 @@ export declare abstract class TruCardColumnSearchResultsConfigBase {
4
4
  abstract rowDataEnhancer: () => TruCardColumnData;
5
5
  abstract cardSort: (cards: Array<any>) => any;
6
6
  abstract query?: (breezeQuery: EntityQuery, propertyName: string) => any;
7
+ abstract cardColumnId: (entity: any) => string | null | undefined;
7
8
  abstract cardId: (entity: any) => string | null | undefined;
8
9
  }
@@ -17,8 +17,6 @@ export declare class TruCardColumn {
17
17
  private childTablePluralLabel;
18
18
  private parentQuery;
19
19
  private lockProperty;
20
- private unassignedVisible;
21
- private unassignedName;
22
20
  private unassignedLocked;
23
21
  private unassignedDraggable;
24
22
  private unassignedDroppable;
@@ -43,9 +41,11 @@ export declare class TruCardColumn {
43
41
  color: string | null;
44
42
  unassignedColor: string | null;
45
43
  key: string;
44
+ unassignedVisible: boolean;
45
+ unassignedName: string | null;
46
+ userHasParentTableRole: boolean;
46
47
  constructor(dataContext: TruDataContext, modelTypeLookup: TruModelTypeLookup, searchViewEventHandler: TruSearchViewEventHandler);
47
48
  private parentTableModel;
48
- private userHasParentTableRole;
49
49
  private createDataForEntity;
50
50
  private hasUndefinedChildren;
51
51
  private hasEmptyChildren;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trudb/tru-common-lib",
3
- "version": "0.1.282",
3
+ "version": "0.1.284",
4
4
  "type": "module",
5
5
  "module": "fesm2022/trudb-tru-common-lib.mjs",
6
6
  "typings": "index.d.ts",