@trudb/tru-common-lib 0.0.468 → 0.0.471

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.
@@ -1,16 +1,9 @@
1
- import { Observable } from 'rxjs';
2
1
  import { TruPropertyConfigBase } from './tru-property-config-base';
3
- import { TruEntityBase } from './tru-entity-base';
4
- import { TruChoice } from '../classes/tru-choice';
5
2
  export declare abstract class TruEditParentControlConfigBase {
6
3
  abstract label: string | undefined;
7
4
  abstract propertyName: string | undefined;
8
5
  abstract rootTable: string | undefined;
9
6
  abstract propertyPath: string | undefined;
10
- abstract rules(entity: any): {} | null;
11
- abstract value: (entity: any) => {};
12
7
  abstract get property(): TruPropertyConfigBase;
13
8
  constructor();
14
- protected hid?(entity: TruEntityBase): string | null | undefined;
15
- protected choices?: () => Observable<TruChoice[]>;
16
9
  }
@@ -0,0 +1,10 @@
1
+ import { TruPropertyConfigBase } from './tru-property-config-base';
2
+ export declare abstract class TruEditPkeyControlConfigBase {
3
+ abstract label: string | undefined;
4
+ abstract propertyName: string | undefined;
5
+ abstract rootTable: string | undefined;
6
+ abstract propertyPath: string | undefined;
7
+ abstract value: (entity: any) => {};
8
+ abstract get property(): TruPropertyConfigBase;
9
+ constructor();
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trudb/tru-common-lib",
3
- "version": "0.0.468",
3
+ "version": "0.0.471",
4
4
  "type": "module",
5
5
  "peerDependencies": {},
6
6
  "dependencies": {
package/public-api.d.ts CHANGED
@@ -3,6 +3,7 @@ export * from './lib/base-classes/tru-control-component-config-base';
3
3
  export * from './lib/base-classes/tru-edit-control-base';
4
4
  export * from './lib/base-classes/tru-edit-control-config-base';
5
5
  export * from './lib/base-classes/tru-edit-parent-control-config-base';
6
+ export * from './lib/base-classes/tru-edit-pkey-control-config-base';
6
7
  export * from './lib/base-classes/tru-entity-base';
7
8
  export * from './lib/base-classes/tru-property-config-base';
8
9
  export * from './lib/base-classes/tru-search-control-base';