igniteui-angular-core 13.2.0 → 14.1.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.
Files changed (81) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1513 -1158
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  4. package/esm2015/lib/CanvasViewRenderer.js +1 -1
  5. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +382 -314
  6. package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  7. package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  8. package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
  9. package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
  10. package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
  11. package/esm2015/lib/CodeGenerationTransformer.js +19 -19
  12. package/esm2015/lib/ComponentRendererAdapter.js +3 -0
  13. package/esm2015/lib/ComponentRenderer_combined.js +178 -169
  14. package/esm2015/lib/DescriptionSerializer.js +72 -58
  15. package/esm2015/lib/DescriptionTreeAction.js +10 -9
  16. package/esm2015/lib/DescriptionTreeBuilder.js +4 -4
  17. package/esm2015/lib/DescriptionTreeNode.js +64 -36
  18. package/esm2015/lib/DescriptionTreeReconciler.js +156 -141
  19. package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  20. package/esm2015/lib/IgcSliderBridge.js +38 -12
  21. package/esm2015/lib/NativeUIInputsFactory.js +1 -0
  22. package/esm2015/lib/NativeUISlider.js +24 -10
  23. package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
  24. package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  25. package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  26. package/esm2015/lib/TypeDescriptionPropretyTransforms.js +49 -25
  27. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
  28. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  29. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
  30. package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
  31. package/esm2015/lib/componentUtil.js +4 -1
  32. package/esm2015/public_api.js +2 -0
  33. package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
  34. package/esm5/lib/CanvasViewRenderer.js +1 -1
  35. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +449 -363
  36. package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
  37. package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
  38. package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
  39. package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
  40. package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
  41. package/esm5/lib/CodeGenerationTransformer.js +19 -19
  42. package/esm5/lib/ComponentRendererAdapter.js +3 -0
  43. package/esm5/lib/ComponentRenderer_combined.js +184 -175
  44. package/esm5/lib/DescriptionSerializer.js +72 -58
  45. package/esm5/lib/DescriptionTreeAction.js +10 -9
  46. package/esm5/lib/DescriptionTreeBuilder.js +4 -4
  47. package/esm5/lib/DescriptionTreeNode.js +64 -36
  48. package/esm5/lib/DescriptionTreeReconciler.js +156 -141
  49. package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
  50. package/esm5/lib/IgcSliderBridge.js +38 -12
  51. package/esm5/lib/NativeUIInputsFactory.js +1 -0
  52. package/esm5/lib/NativeUISlider.js +23 -5
  53. package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
  54. package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
  55. package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
  56. package/esm5/lib/TypeDescriptionPropretyTransforms.js +49 -25
  57. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
  58. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
  59. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
  60. package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
  61. package/esm5/lib/componentUtil.js +4 -1
  62. package/esm5/public_api.js +2 -0
  63. package/fesm2015/igniteui-angular-core.js +1385 -1085
  64. package/fesm5/igniteui-angular-core.js +1512 -1159
  65. package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
  66. package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
  67. package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
  68. package/lib/CodeGeneratingRendererResult.d.ts +15 -12
  69. package/lib/DescriptionSerializer.d.ts +7 -6
  70. package/lib/DescriptionTreeAction.d.ts +6 -5
  71. package/lib/DescriptionTreeNode.d.ts +13 -12
  72. package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  73. package/lib/IgcSliderBridge.d.ts +7 -3
  74. package/lib/NativeUISlider.d.ts +9 -6
  75. package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
  76. package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
  77. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
  78. package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
  79. package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
  80. package/package.json +4 -4
  81. package/public_api.d.ts +2 -0
@@ -17,27 +17,27 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
17
17
  __extends(DotNetCodeGeneratingComponentRendererModuleEmitter, _super);
18
18
  function DotNetCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
19
19
  var _this = _super.call(this, b, c) || this;
20
- _this.o = 0;
21
- _this.r = 0;
22
- _this.p = false;
23
- _this.q = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
24
- _this.o = a;
20
+ _this.p = 0;
21
+ _this.s = 0;
22
+ _this.q = false;
23
+ _this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
24
+ _this.p = a;
25
25
  return _this;
26
26
  }
27
- Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "s", {
27
+ Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
28
28
  get: function () {
29
- return this.r;
29
+ return this.s;
30
30
  },
31
31
  enumerable: false,
32
32
  configurable: true
33
33
  });
34
- DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
35
- _super.prototype.n.call(this);
36
- this.r = 0;
34
+ DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
35
+ _super.prototype.o.call(this);
36
+ this.s = 0;
37
37
  };
38
- Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
38
+ Object.defineProperty(DotNetCodeGeneratingComponentRendererModuleEmitter.prototype, "u", {
39
39
  get: function () {
40
- switch (this.o) {
40
+ switch (this.p) {
41
41
  case 0: return "Xam";
42
42
  case 4: return "Ultra";
43
43
  case 5: return "Igb";
@@ -47,22 +47,24 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
47
47
  enumerable: false,
48
48
  configurable: true
49
49
  });
50
- DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.k = function (a) {
51
- _super.prototype.k.call(this, a);
52
- if (a == "withDescriptions" && this.o != 5) {
53
- this.p = true;
50
+ DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
51
+ _super.prototype.l.call(this, a);
52
+ if (a == "withDescriptions" && this.p != 5) {
53
+ this.q = true;
54
54
  return;
55
55
  }
56
56
  var b = "";
57
57
  var c = a.split('/');
58
58
  if (c.length == 1) {
59
59
  b = c[0];
60
+ this.j.addPackageRef(b);
60
61
  }
61
62
  else {
63
+ this.j.addPackageRef(c[0]);
62
64
  b = c[1];
63
65
  }
64
- if (this.p) {
65
- if (this.r == 0) {
66
+ if (this.q) {
67
+ if (this.s == 0) {
66
68
  this.c.k("private ComponentRenderer _componentRenderer = null;");
67
69
  this.c.k("public ComponentRenderer Renderer");
68
70
  this.c.k("{");
@@ -83,11 +85,11 @@ var DotNetCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE
83
85
  }
84
86
  this.c.k(d + ".Register(context);");
85
87
  }
86
- this.r++;
88
+ this.s++;
87
89
  };
88
- DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.m = function () {
89
- _super.prototype.m.call(this);
90
- if (this.p) {
90
+ DotNetCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
91
+ _super.prototype.n.call(this);
92
+ if (this.q) {
91
93
  this.g.addUsing("using Infragistics.Controls.Description;");
92
94
  this.c.f();
93
95
  this.c.k("}");
@@ -15,25 +15,44 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  __extends(IgcSliderBridge, _super);
16
16
  function IgcSliderBridge() {
17
17
  var _this = _super !== null && _super.apply(this, arguments) || this;
18
- _this.d = null;
19
- _this.c = null;
20
18
  _this.e = null;
19
+ _this.c = null;
20
+ _this.g = null;
21
+ _this.f = null;
22
+ _this.d = null;
23
+ _this.h = null;
21
24
  return _this;
22
25
  }
23
26
  IgcSliderBridge.prototype.addHandler = function (a, b, c, d) {
24
27
  switch (c) {
28
+ case 0:
29
+ {
30
+ var e = a;
31
+ this.f = e.listen("igcInput", runOn(this, this.j));
32
+ this.d = d;
33
+ this.h = b;
34
+ }
35
+ break;
25
36
  case 4:
26
- var e = a;
27
- this.d = e.listen("igcChange", runOn(this, this.f));
28
- this.c = d;
29
- this.e = b;
37
+ {
38
+ var f = a;
39
+ this.e = f.listen("igcChange", runOn(this, this.i));
40
+ this.c = d;
41
+ this.g = b;
42
+ }
30
43
  break;
31
44
  }
32
45
  };
33
- IgcSliderBridge.prototype.f = function (a) {
46
+ IgcSliderBridge.prototype.j = function (a) {
47
+ if (this.d != null) {
48
+ var b = new NativeUISliderValueChangedEventArgs();
49
+ this.d(this.h, b);
50
+ }
51
+ };
52
+ IgcSliderBridge.prototype.i = function (a) {
34
53
  if (this.c != null) {
35
54
  var b = new NativeUISliderValueChangedEventArgs();
36
- this.c(this.e, b);
55
+ this.c(this.g, b);
37
56
  }
38
57
  };
39
58
  IgcSliderBridge.prototype.getValue = function (a, b) {
@@ -47,12 +66,19 @@ var IgcSliderBridge = /** @class */ /*@__PURE__*/ (function (_super) {
47
66
  };
48
67
  IgcSliderBridge.prototype.removeHandler = function (a, b, c, d) {
49
68
  switch (c) {
50
- case 2:
51
- if (this.d != null) {
52
- this.d();
69
+ case 0:
70
+ if (this.f != null) {
71
+ this.f();
72
+ }
73
+ this.d = null;
74
+ this.h = null;
75
+ break;
76
+ case 4:
77
+ if (this.e != null) {
78
+ this.e();
53
79
  }
54
80
  this.c = null;
55
- this.e = null;
81
+ this.g = null;
56
82
  break;
57
83
  }
58
84
  };
@@ -113,6 +113,7 @@ var NativeUIInputsFactory = /** @class */ /*@__PURE__*/ (function (_super) {
113
113
  NativeUIInputsFactory.prototype.j = function (a, b) {
114
114
  var c = a;
115
115
  var d = c.createElement("igc-slider");
116
+ d.setProperty("hideTooltip", true);
116
117
  var e = new IgcSliderBridge();
117
118
  var f = new NativeUISlider();
118
119
  f.u = d;
@@ -15,12 +15,13 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
15
15
  function NativeUISlider() {
16
16
  var _this = _super !== null && _super.apply(this, arguments) || this;
17
17
  _this.ap = null;
18
+ _this.aq = null;
18
19
  return _this;
19
20
  }
20
21
  NativeUISlider.prototype.get_c = function () {
21
22
  return 5;
22
23
  };
23
- Object.defineProperty(NativeUISlider.prototype, "au", {
24
+ Object.defineProperty(NativeUISlider.prototype, "aw", {
24
25
  get: function () {
25
26
  var a = this.o(2);
26
27
  return a;
@@ -31,7 +32,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
31
32
  enumerable: false,
32
33
  configurable: true
33
34
  });
34
- Object.defineProperty(NativeUISlider.prototype, "as", {
35
+ Object.defineProperty(NativeUISlider.prototype, "au", {
35
36
  get: function () {
36
37
  var a = this.o(10);
37
38
  return a;
@@ -42,7 +43,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
42
43
  enumerable: false,
43
44
  configurable: true
44
45
  });
45
- Object.defineProperty(NativeUISlider.prototype, "ar", {
46
+ Object.defineProperty(NativeUISlider.prototype, "at", {
46
47
  get: function () {
47
48
  var a = this.o(11);
48
49
  return a;
@@ -53,7 +54,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
53
54
  enumerable: false,
54
55
  configurable: true
55
56
  });
56
- Object.defineProperty(NativeUISlider.prototype, "at", {
57
+ Object.defineProperty(NativeUISlider.prototype, "av", {
57
58
  get: function () {
58
59
  var a = this.o(12);
59
60
  return a;
@@ -64,7 +65,7 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
64
65
  enumerable: false,
65
66
  configurable: true
66
67
  });
67
- Object.defineProperty(NativeUISlider.prototype, "aq", {
68
+ Object.defineProperty(NativeUISlider.prototype, "ar", {
68
69
  get: function () {
69
70
  return this.ap;
70
71
  },
@@ -81,6 +82,23 @@ var NativeUISlider = /** @class */ /*@__PURE__*/ (function (_super) {
81
82
  enumerable: false,
82
83
  configurable: true
83
84
  });
85
+ Object.defineProperty(NativeUISlider.prototype, "as", {
86
+ get: function () {
87
+ return this.aq;
88
+ },
89
+ set: function (a) {
90
+ var b = this.aq;
91
+ this.aq = a;
92
+ if (this.aq != null) {
93
+ this.w(0, this.aq);
94
+ }
95
+ else {
96
+ this.ab(0, b);
97
+ }
98
+ },
99
+ enumerable: false,
100
+ configurable: true
101
+ });
84
102
  NativeUISlider.$t = markType(NativeUISlider, 'NativeUISlider', NativeUIComponent.$);
85
103
  return NativeUISlider;
86
104
  }(NativeUIComponent));