igniteui-angular-core 21.0.1-beta.0 → 21.0.1

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,14 @@
1
+ import { ValueType, Type } from "./type";
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare class ValueTuple$2<T1, T2> extends ValueType {
6
+ static $t: Type;
7
+ protected $t1: Type;
8
+ protected $t2: Type;
9
+ constructor($t1: Type, $t2: Type, a: number, b: T1, c: T2);
10
+ constructor($t1: Type, $t2: Type);
11
+ constructor($t1: Type, $t2: Type, a: number, ..._rest: any[]);
12
+ a: T1;
13
+ b: T2;
14
+ }
@@ -0,0 +1,16 @@
1
+ import { ValueType, Type } from "./type";
2
+ /**
3
+ * @hidden
4
+ */
5
+ export declare class ValueTuple$3<T1, T2, T3> extends ValueType {
6
+ static $t: Type;
7
+ protected $t1: Type;
8
+ protected $t2: Type;
9
+ protected $t3: Type;
10
+ constructor($t1: Type, $t2: Type, $t3: Type, a: number, b: T1, c: T2, d: T3);
11
+ constructor($t1: Type, $t2: Type, $t3: Type);
12
+ constructor($t1: Type, $t2: Type, $t3: Type, a: number, ..._rest: any[]);
13
+ a: T1;
14
+ b: T2;
15
+ c: T3;
16
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular-core",
3
- "version": "21.0.1-beta.0",
3
+ "version": "21.0.1",
4
4
  "description": "Ignite UI Angular Core logic used in multiple UI components.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-angular-charts",
6
6
  "keywords": [
package/public_api.d.ts CHANGED
@@ -3854,6 +3854,8 @@ export * from './lib/StringComparer';
3854
3854
  export * from './lib/Tuple$2';
3855
3855
  export * from './lib/Tuple$3';
3856
3856
  export * from './lib/Tuple';
3857
+ export * from './lib/ValueTuple$2';
3858
+ export * from './lib/ValueTuple$3';
3857
3859
  export * from './lib/Uri';
3858
3860
  export * from './lib/UriKind';
3859
3861
  export * from './lib/WeakReference';