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,38 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { ValueType, markStruct } from "./type";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export let ValueTuple$2 = /*@__PURE__*/ (() => {
12
+ class ValueTuple$2 extends ValueType {
13
+ constructor($t1, $t2, a, ..._rest) {
14
+ super();
15
+ this.$t1 = null;
16
+ this.$t2 = null;
17
+ this.a = null;
18
+ this.b = null;
19
+ this.$t1 = $t1;
20
+ this.$t2 = $t2;
21
+ this.$type = this.$type.specialize(this.$t1, this.$t2);
22
+ a = (a == void 0) ? 0 : a;
23
+ switch (a) {
24
+ case 0: break;
25
+ case 1:
26
+ {
27
+ let c = _rest[0];
28
+ let d = _rest[1];
29
+ this.a = c;
30
+ this.b = d;
31
+ }
32
+ break;
33
+ }
34
+ }
35
+ }
36
+ ValueTuple$2.$t = markStruct(ValueTuple$2, 'ValueTuple$2');
37
+ return ValueTuple$2;
38
+ })();
@@ -0,0 +1,43 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { ValueType, markStruct } from "./type";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export let ValueTuple$3 = /*@__PURE__*/ (() => {
12
+ class ValueTuple$3 extends ValueType {
13
+ constructor($t1, $t2, $t3, a, ..._rest) {
14
+ super();
15
+ this.$t1 = null;
16
+ this.$t2 = null;
17
+ this.$t3 = null;
18
+ this.a = null;
19
+ this.b = null;
20
+ this.c = null;
21
+ this.$t1 = $t1;
22
+ this.$t2 = $t2;
23
+ this.$t3 = $t3;
24
+ this.$type = this.$type.specialize(this.$t1, this.$t2, this.$t3);
25
+ a = (a == void 0) ? 0 : a;
26
+ switch (a) {
27
+ case 0: break;
28
+ case 1:
29
+ {
30
+ let c = _rest[0];
31
+ let d = _rest[1];
32
+ let e = _rest[2];
33
+ this.a = c;
34
+ this.b = d;
35
+ this.c = e;
36
+ }
37
+ break;
38
+ }
39
+ }
40
+ }
41
+ ValueTuple$3.$t = markStruct(ValueTuple$3, 'ValueTuple$3');
42
+ return ValueTuple$3;
43
+ })();
@@ -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';
@@ -0,0 +1,44 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { ValueType, markStruct } from "./type";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ValueTuple$2 = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(ValueTuple$2, _super);
14
+ function ValueTuple$2($t1, $t2, a) {
15
+ var _rest = [];
16
+ for (var _i = 3; _i < arguments.length; _i++) {
17
+ _rest[_i - 3] = arguments[_i];
18
+ }
19
+ var _this = _super.call(this) || this;
20
+ _this.$t1 = null;
21
+ _this.$t2 = null;
22
+ _this.a = null;
23
+ _this.b = null;
24
+ _this.$t1 = $t1;
25
+ _this.$t2 = $t2;
26
+ _this.$type = _this.$type.specialize(_this.$t1, _this.$t2);
27
+ a = (a == void 0) ? 0 : a;
28
+ switch (a) {
29
+ case 0: break;
30
+ case 1:
31
+ {
32
+ var c = _rest[0];
33
+ var d = _rest[1];
34
+ _this.a = c;
35
+ _this.b = d;
36
+ }
37
+ break;
38
+ }
39
+ return _this;
40
+ }
41
+ ValueTuple$2.$t = markStruct(ValueTuple$2, 'ValueTuple$2');
42
+ return ValueTuple$2;
43
+ }(ValueType));
44
+ export { ValueTuple$2 };
@@ -0,0 +1,49 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { ValueType, markStruct } from "./type";
9
+ /**
10
+ * @hidden
11
+ */
12
+ var ValueTuple$3 = /** @class */ /*@__PURE__*/ (function (_super) {
13
+ __extends(ValueTuple$3, _super);
14
+ function ValueTuple$3($t1, $t2, $t3, a) {
15
+ var _rest = [];
16
+ for (var _i = 4; _i < arguments.length; _i++) {
17
+ _rest[_i - 4] = arguments[_i];
18
+ }
19
+ var _this = _super.call(this) || this;
20
+ _this.$t1 = null;
21
+ _this.$t2 = null;
22
+ _this.$t3 = null;
23
+ _this.a = null;
24
+ _this.b = null;
25
+ _this.c = null;
26
+ _this.$t1 = $t1;
27
+ _this.$t2 = $t2;
28
+ _this.$t3 = $t3;
29
+ _this.$type = _this.$type.specialize(_this.$t1, _this.$t2, _this.$t3);
30
+ a = (a == void 0) ? 0 : a;
31
+ switch (a) {
32
+ case 0: break;
33
+ case 1:
34
+ {
35
+ var c = _rest[0];
36
+ var d = _rest[1];
37
+ var e = _rest[2];
38
+ _this.a = c;
39
+ _this.b = d;
40
+ _this.c = e;
41
+ }
42
+ break;
43
+ }
44
+ return _this;
45
+ }
46
+ ValueTuple$3.$t = markStruct(ValueTuple$3, 'ValueTuple$3');
47
+ return ValueTuple$3;
48
+ }(ValueType));
49
+ export { ValueTuple$3 };
@@ -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';