@trudb/tru-common-lib 0.2.237 → 0.2.239

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,7 @@
1
+ export declare abstract class TruCountry {
2
+ abstract name: string;
3
+ abstract iso2: string;
4
+ abstract dialCode: string;
5
+ abstract priority?: number | undefined;
6
+ abstract areaCodes?: Array<string> | undefined;
7
+ }
@@ -0,0 +1,10 @@
1
+ import { TruCountry } from '../classes/tru-country';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TruCountries {
4
+ private countries;
5
+ constructor();
6
+ private getAllCountries;
7
+ all: () => Array<TruCountry>;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<TruCountries, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<TruCountries>;
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trudb/tru-common-lib",
3
- "version": "0.2.237",
3
+ "version": "0.2.239",
4
4
  "type": "module",
5
5
  "module": "fesm2022/trudb-tru-common-lib.mjs",
6
6
  "typings": "index.d.ts",
package/public-api.d.ts CHANGED
@@ -115,6 +115,7 @@ export * from './lib/services/tru-cloud-file-manager';
115
115
  export * from './lib/services/tru-component-lookup';
116
116
  export * from './lib/services/tru-connection-hub';
117
117
  export * from './lib/services/tru-context-filters';
118
+ export * from './lib/services/tru-countries';
118
119
  export * from './lib/services/tru-data-context';
119
120
  export * from './lib/services/tru-entity-accessor';
120
121
  export * from './lib/services/tru-formatter';