@trudb/tru-common-lib 0.0.298 → 0.0.300

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,25 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare abstract class TruSearchControlRangeBase {
3
+ operatorLookup: {
4
+ [key: string]: string;
5
+ };
6
+ operatorIconLookup: {
7
+ [key: string]: string;
8
+ };
9
+ operatorIconTitleLookup: {
10
+ [key: string]: string;
11
+ };
12
+ abstract config: any;
13
+ abstract label: string | undefined;
14
+ abstract startOperator: string | undefined;
15
+ abstract startOperatorIcon: string;
16
+ abstract startOperatorIconTitle: string;
17
+ abstract endOperator: string | undefined;
18
+ abstract endOperatorIcon: string;
19
+ abstract endOperatorIconTitle: string;
20
+ abstract onStartOperatorIconClick(): void;
21
+ abstract onEndOperatorIconClick(): void;
22
+ abstract updatePredicate(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruSearchControlRangeBase, never>;
24
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TruSearchControlRangeBase, never, never, { "config": "config"; }, {}, never, never, false, never>;
25
+ }
@@ -4,6 +4,7 @@ export declare class TruUtil {
4
4
  tryParseInt: (str: any, defaultValue: any) => any;
5
5
  tryParseBool(value: any, defaultValue: any): any;
6
6
  findClosestAncestorByClass: (element: any, cssSelector: string) => any;
7
+ strIsDate: (date: string, format?: string | undefined) => boolean;
7
8
  static ɵfac: i0.ɵɵFactoryDeclaration<TruUtil, never>;
8
9
  static ɵprov: i0.ɵɵInjectableDeclaration<TruUtil>;
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trudb/tru-common-lib",
3
- "version": "0.0.298",
3
+ "version": "0.0.300",
4
4
  "type": "module",
5
5
  "peerDependencies": {},
6
6
  "dependencies": {
package/public-api.d.ts CHANGED
@@ -4,6 +4,7 @@ export * from './lib/base-classes/tru-entity-base';
4
4
  export * from './lib/base-classes/tru-property-config-base';
5
5
  export * from './lib/base-classes/tru-search-control-base';
6
6
  export * from './lib/base-classes/tru-search-control-config-base';
7
+ export * from './lib/base-classes/tru-search-control-range-base';
7
8
  export * from './lib/base-classes/tru-search-config-base';
8
9
  export * from './lib/base-classes/tru-table-config-base';
9
10
  export * from './lib/base-views/detail/tru-detail-view-base';