igniteui-angular-core 13.2.0-beta.0 → 13.2.0-beta.3

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 (74) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1063 -11
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
  4. package/esm2015/lib/FontDefaults.js +7 -7
  5. package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
  6. package/esm2015/lib/WebExpansionPanelComponentEventArgsDescription.js +34 -0
  7. package/esm2015/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
  8. package/esm2015/lib/WebExpansionPanelDescription.js +82 -0
  9. package/esm2015/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
  10. package/esm2015/lib/WebExpansionPanelDescriptionMetadata_combined.js +77 -0
  11. package/esm2015/lib/WebExpansionPanelDescriptionModule.js +20 -0
  12. package/esm2015/lib/WebMaskInputDescription.js +71 -0
  13. package/esm2015/lib/WebMaskInputDescriptionMetadata.js +47 -0
  14. package/esm2015/lib/WebMaskInputDescriptionModule.js +22 -0
  15. package/esm2015/lib/WebTreeDescription.js +106 -0
  16. package/esm2015/lib/WebTreeDescriptionMetadata.js +54 -0
  17. package/esm2015/lib/WebTreeDescriptionModule.js +26 -0
  18. package/esm2015/lib/WebTreeItemComponentEventArgsDescription.js +34 -0
  19. package/esm2015/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +40 -0
  20. package/esm2015/lib/WebTreeItemDescription.js +106 -0
  21. package/esm2015/lib/WebTreeItemDescriptionMetadata.js +48 -0
  22. package/esm2015/lib/WebTreeItemDescriptionModule.js +20 -0
  23. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +34 -0
  24. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +38 -0
  25. package/esm2015/lib/igx-tooltip-container-component.js +3 -3
  26. package/esm2015/public_api.js +18 -0
  27. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
  28. package/esm5/lib/FontDefaults.js +7 -7
  29. package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
  30. package/esm5/lib/WebExpansionPanelComponentEventArgsDescription.js +44 -0
  31. package/esm5/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
  32. package/esm5/lib/WebExpansionPanelDescription.js +116 -0
  33. package/esm5/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
  34. package/esm5/lib/WebExpansionPanelDescriptionMetadata_combined.js +84 -0
  35. package/esm5/lib/WebExpansionPanelDescriptionModule.js +24 -0
  36. package/esm5/lib/WebMaskInputDescription.js +97 -0
  37. package/esm5/lib/WebMaskInputDescriptionMetadata.js +51 -0
  38. package/esm5/lib/WebMaskInputDescriptionModule.js +26 -0
  39. package/esm5/lib/WebTreeDescription.js +152 -0
  40. package/esm5/lib/WebTreeDescriptionMetadata.js +58 -0
  41. package/esm5/lib/WebTreeDescriptionModule.js +30 -0
  42. package/esm5/lib/WebTreeItemComponentEventArgsDescription.js +44 -0
  43. package/esm5/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +44 -0
  44. package/esm5/lib/WebTreeItemDescription.js +152 -0
  45. package/esm5/lib/WebTreeItemDescriptionMetadata.js +52 -0
  46. package/esm5/lib/WebTreeItemDescriptionModule.js +24 -0
  47. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +44 -0
  48. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +42 -0
  49. package/esm5/lib/igx-tooltip-container-component.js +2 -2
  50. package/esm5/public_api.js +18 -0
  51. package/fesm2015/igniteui-angular-core.js +857 -13
  52. package/fesm5/igniteui-angular-core.js +1046 -12
  53. package/lib/WebDropdownGroupDescription.d.ts +2 -2
  54. package/lib/WebExpansionPanelComponentEventArgsDescription.d.ts +15 -0
  55. package/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.d.ts +1 -0
  56. package/lib/WebExpansionPanelDescription.d.ts +32 -0
  57. package/lib/WebExpansionPanelDescriptionMetadata.d.ts +1 -0
  58. package/lib/WebExpansionPanelDescriptionMetadata_combined.d.ts +23 -0
  59. package/lib/WebExpansionPanelDescriptionModule.d.ts +9 -0
  60. package/lib/WebMaskInputDescription.d.ts +28 -0
  61. package/lib/WebMaskInputDescriptionMetadata.d.ts +13 -0
  62. package/lib/WebMaskInputDescriptionModule.d.ts +9 -0
  63. package/lib/WebTreeDescription.d.ts +41 -0
  64. package/lib/WebTreeDescriptionMetadata.d.ts +13 -0
  65. package/lib/WebTreeDescriptionModule.d.ts +9 -0
  66. package/lib/WebTreeItemComponentEventArgsDescription.d.ts +15 -0
  67. package/lib/WebTreeItemComponentEventArgsDescriptionMetadata.d.ts +13 -0
  68. package/lib/WebTreeItemDescription.d.ts +41 -0
  69. package/lib/WebTreeItemDescriptionMetadata.d.ts +13 -0
  70. package/lib/WebTreeItemDescriptionModule.d.ts +9 -0
  71. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +15 -0
  72. package/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.d.ts +13 -0
  73. package/package.json +1 -1
  74. package/public_api.d.ts +18 -0
@@ -0,0 +1,152 @@
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 { Description } from "./Description";
9
+ import { markType } from "./type";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebTreeItemDescription, _super);
15
+ function WebTreeItemDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.f = null;
18
+ _this.k = false;
19
+ _this.t = 0;
20
+ _this.v = null;
21
+ _this.j = false;
22
+ _this.h = false;
23
+ _this.i = false;
24
+ _this.m = false;
25
+ _this.l = false;
26
+ _this.w = null;
27
+ return _this;
28
+ }
29
+ WebTreeItemDescription.prototype.get_type = function () {
30
+ return "WebTreeItem";
31
+ };
32
+ Object.defineProperty(WebTreeItemDescription.prototype, "type", {
33
+ get: function () {
34
+ return this.get_type();
35
+ },
36
+ enumerable: false,
37
+ configurable: true
38
+ });
39
+ Object.defineProperty(WebTreeItemDescription.prototype, "parent", {
40
+ get: function () {
41
+ return this.f;
42
+ },
43
+ set: function (a) {
44
+ this.f = a;
45
+ this.e("Parent");
46
+ },
47
+ enumerable: false,
48
+ configurable: true
49
+ });
50
+ Object.defineProperty(WebTreeItemDescription.prototype, "init", {
51
+ get: function () {
52
+ return this.k;
53
+ },
54
+ set: function (a) {
55
+ this.k = a;
56
+ this.e("Init");
57
+ },
58
+ enumerable: false,
59
+ configurable: true
60
+ });
61
+ Object.defineProperty(WebTreeItemDescription.prototype, "level", {
62
+ get: function () {
63
+ return this.t;
64
+ },
65
+ set: function (a) {
66
+ this.t = a;
67
+ this.e("Level");
68
+ },
69
+ enumerable: false,
70
+ configurable: true
71
+ });
72
+ Object.defineProperty(WebTreeItemDescription.prototype, "label", {
73
+ get: function () {
74
+ return this.v;
75
+ },
76
+ set: function (a) {
77
+ this.v = a;
78
+ this.e("Label");
79
+ },
80
+ enumerable: false,
81
+ configurable: true
82
+ });
83
+ Object.defineProperty(WebTreeItemDescription.prototype, "expanded", {
84
+ get: function () {
85
+ return this.j;
86
+ },
87
+ set: function (a) {
88
+ this.j = a;
89
+ this.e("Expanded");
90
+ },
91
+ enumerable: false,
92
+ configurable: true
93
+ });
94
+ Object.defineProperty(WebTreeItemDescription.prototype, "active", {
95
+ get: function () {
96
+ return this.h;
97
+ },
98
+ set: function (a) {
99
+ this.h = a;
100
+ this.e("Active");
101
+ },
102
+ enumerable: false,
103
+ configurable: true
104
+ });
105
+ Object.defineProperty(WebTreeItemDescription.prototype, "disabled", {
106
+ get: function () {
107
+ return this.i;
108
+ },
109
+ set: function (a) {
110
+ this.i = a;
111
+ this.e("Disabled");
112
+ },
113
+ enumerable: false,
114
+ configurable: true
115
+ });
116
+ Object.defineProperty(WebTreeItemDescription.prototype, "selected", {
117
+ get: function () {
118
+ return this.m;
119
+ },
120
+ set: function (a) {
121
+ this.m = a;
122
+ this.e("Selected");
123
+ },
124
+ enumerable: false,
125
+ configurable: true
126
+ });
127
+ Object.defineProperty(WebTreeItemDescription.prototype, "loading", {
128
+ get: function () {
129
+ return this.l;
130
+ },
131
+ set: function (a) {
132
+ this.l = a;
133
+ this.e("Loading");
134
+ },
135
+ enumerable: false,
136
+ configurable: true
137
+ });
138
+ Object.defineProperty(WebTreeItemDescription.prototype, "valueRef", {
139
+ get: function () {
140
+ return this.w;
141
+ },
142
+ set: function (a) {
143
+ this.w = a;
144
+ this.e("ValueRef");
145
+ },
146
+ enumerable: false,
147
+ configurable: true
148
+ });
149
+ WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
150
+ return WebTreeItemDescription;
151
+ }(Description));
152
+ export { WebTreeItemDescription };
@@ -0,0 +1,52 @@
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 { Base, String_$type, markType } from "./type";
9
+ import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebTreeItemDescription } from "./WebTreeItemDescription";
11
+ /**
12
+ * @hidden
13
+ */
14
+ var WebTreeItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
15
+ __extends(WebTreeItemDescriptionMetadata, _super);
16
+ function WebTreeItemDescriptionMetadata() {
17
+ return _super !== null && _super.apply(this, arguments) || this;
18
+ }
19
+ WebTreeItemDescriptionMetadata.b = function (a) {
20
+ if (WebTreeItemDescriptionMetadata.a == null) {
21
+ WebTreeItemDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
22
+ WebTreeItemDescriptionMetadata.c(WebTreeItemDescriptionMetadata.a);
23
+ }
24
+ if (a.g(WebTreeItemDescriptionMetadata.a)) {
25
+ return;
26
+ }
27
+ a.s(WebTreeItemDescriptionMetadata.a);
28
+ WebTreeItemDescriptionMetadata.d(a);
29
+ };
30
+ WebTreeItemDescriptionMetadata.c = function (a) {
31
+ a.item("__qualifiedNameTS", "String:TreeItem");
32
+ a.item("Parent", "ExportedType:WebTreeItem");
33
+ a.item("Init", "Boolean");
34
+ a.item("Level", "Number:double");
35
+ a.item("Label", "String");
36
+ a.item("Expanded", "Boolean");
37
+ a.item("Active", "Boolean");
38
+ a.item("Disabled", "Boolean");
39
+ a.item("Selected", "Boolean");
40
+ a.item("Loading", "Boolean");
41
+ a.item("ValueRef", "(w:Value,wf:Value)DataRef");
42
+ };
43
+ WebTreeItemDescriptionMetadata.d = function (a) {
44
+ WebTreeItemDescriptionMetadata.b(a);
45
+ a.u("WebTreeItem", function () { return new WebTreeItemDescription(); });
46
+ a.t("WebTreeItem", WebTreeItemDescriptionMetadata.a);
47
+ };
48
+ WebTreeItemDescriptionMetadata.$t = markType(WebTreeItemDescriptionMetadata, 'WebTreeItemDescriptionMetadata');
49
+ WebTreeItemDescriptionMetadata.a = null;
50
+ return WebTreeItemDescriptionMetadata;
51
+ }(Base));
52
+ export { WebTreeItemDescriptionMetadata };
@@ -0,0 +1,24 @@
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 { Base, markType } from "./type";
9
+ import { WebTreeItemDescriptionMetadata } from "./WebTreeItemDescriptionMetadata";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebTreeItemDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebTreeItemDescriptionModule, _super);
15
+ function WebTreeItemDescriptionModule() {
16
+ return _super !== null && _super.apply(this, arguments) || this;
17
+ }
18
+ WebTreeItemDescriptionModule.register = function (a) {
19
+ WebTreeItemDescriptionMetadata.d(a);
20
+ };
21
+ WebTreeItemDescriptionModule.$t = markType(WebTreeItemDescriptionModule, 'WebTreeItemDescriptionModule');
22
+ return WebTreeItemDescriptionModule;
23
+ }(Base));
24
+ export { WebTreeItemDescriptionModule };
@@ -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 { Description } from "./Description";
9
+ import { markType } from "./type";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebTreeSelectionOptionsEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebTreeSelectionOptionsEventArgsDescription, _super);
15
+ function WebTreeSelectionOptionsEventArgsDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.f = null;
18
+ return _this;
19
+ }
20
+ WebTreeSelectionOptionsEventArgsDescription.prototype.get_type = function () {
21
+ return "WebTreeSelectionOptionsEventArgs";
22
+ };
23
+ Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "type", {
24
+ get: function () {
25
+ return this.get_type();
26
+ },
27
+ enumerable: false,
28
+ configurable: true
29
+ });
30
+ Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "newSelection", {
31
+ get: function () {
32
+ return this.f;
33
+ },
34
+ set: function (a) {
35
+ this.f = a;
36
+ this.e("NewSelection");
37
+ },
38
+ enumerable: false,
39
+ configurable: true
40
+ });
41
+ WebTreeSelectionOptionsEventArgsDescription.$t = markType(WebTreeSelectionOptionsEventArgsDescription, 'WebTreeSelectionOptionsEventArgsDescription', Description.$);
42
+ return WebTreeSelectionOptionsEventArgsDescription;
43
+ }(Description));
44
+ export { WebTreeSelectionOptionsEventArgsDescription };
@@ -0,0 +1,42 @@
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 { Base, String_$type, markType } from "./type";
9
+ import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebTreeSelectionOptionsEventArgsDescription } from "./WebTreeSelectionOptionsEventArgsDescription";
11
+ /**
12
+ * @hidden
13
+ */
14
+ var WebTreeSelectionOptionsEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
15
+ __extends(WebTreeSelectionOptionsEventArgsDescriptionMetadata, _super);
16
+ function WebTreeSelectionOptionsEventArgsDescriptionMetadata() {
17
+ return _super !== null && _super.apply(this, arguments) || this;
18
+ }
19
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.b = function (a) {
20
+ if (WebTreeSelectionOptionsEventArgsDescriptionMetadata.a == null) {
21
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
22
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.c(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
23
+ }
24
+ if (a.g(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a)) {
25
+ return;
26
+ }
27
+ a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
28
+ };
29
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.c = function (a) {
30
+ a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
31
+ a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
32
+ };
33
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.d = function (a) {
34
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
35
+ a.u("WebTreeSelectionOptionsEventArgs", function () { return new WebTreeSelectionOptionsEventArgsDescription(); });
36
+ a.t("WebTreeSelectionOptionsEventArgs", WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
37
+ };
38
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventArgsDescriptionMetadata, 'WebTreeSelectionOptionsEventArgsDescriptionMetadata');
39
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = null;
40
+ return WebTreeSelectionOptionsEventArgsDescriptionMetadata;
41
+ }(Base));
42
+ export { WebTreeSelectionOptionsEventArgsDescriptionMetadata };
@@ -62,7 +62,7 @@ var IgxTooltipContainerComponent = /** @class */ /*@__PURE__*/ (function () {
62
62
  TypeRegistrar.registerCons("IgxTooltipContainerComponent", IgxTooltipContainerComponent);
63
63
  };
64
64
  IgxTooltipContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.14", ngImport: i0, type: IgxTooltipContainerComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
65
- IgxTooltipContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.14", type: IgxTooltipContainerComponent, selector: "igx-tooltip-container", inputs: { template: "template", containerTemplate: "containerTemplate", context: "context" }, host: { classAttribute: "ig-tooltip-container igx-tooltip-container" }, viewQueries: [{ propertyName: "_tooltipContent", first: true, predicate: IgxTemplateContentComponent, descendants: true, static: true }], ngImport: i0, template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ", isInline: true, styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 14px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 14px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"], components: [{ type: i1.IgxTemplateContentComponent, selector: "igx-template-content", inputs: ["template", "context"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
65
+ IgxTooltipContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.14", type: IgxTooltipContainerComponent, selector: "igx-tooltip-container", inputs: { template: "template", containerTemplate: "containerTemplate", context: "context" }, host: { classAttribute: "ig-tooltip-container igx-tooltip-container" }, viewQueries: [{ propertyName: "_tooltipContent", first: true, predicate: IgxTemplateContentComponent, descendants: true, static: true }], ngImport: i0, template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ", isInline: true, styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 13px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 13px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"], components: [{ type: i1.IgxTemplateContentComponent, selector: "igx-template-content", inputs: ["template", "context"] }], directives: [{ type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i2.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
66
66
  return IgxTooltipContainerComponent;
67
67
  }());
68
68
  export { IgxTooltipContainerComponent };
@@ -73,7 +73,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.14", ngImpo
73
73
  changeDetection: ChangeDetectionStrategy.OnPush,
74
74
  host: { class: "ig-tooltip-container igx-tooltip-container" },
75
75
  template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ",
76
- styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 14px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 14px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"]
76
+ styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 13px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 13px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"]
77
77
  }]
78
78
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { _tooltipContent: [{
79
79
  type: ViewChild,
@@ -1251,6 +1251,11 @@ export * from './lib/WebDropdownItemComponentEventArgsDescription';
1251
1251
  export * from './lib/WebDropdownItemComponentEventArgsDescriptionMetadata';
1252
1252
  export * from './lib/WebDropdownItemDescriptionModule';
1253
1253
  export * from './lib/WebDropdownDescriptionModule';
1254
+ export * from './lib/WebExpansionPanelDescription';
1255
+ export * from './lib/WebExpansionPanelDescriptionMetadata';
1256
+ export * from './lib/WebExpansionPanelComponentEventArgsDescription';
1257
+ export * from './lib/WebExpansionPanelComponentEventArgsDescriptionMetadata';
1258
+ export * from './lib/WebExpansionPanelDescriptionModule';
1254
1259
  export * from './lib/WebFloatingPaneResizeEventArgsDescription';
1255
1260
  export * from './lib/WebFloatingPaneResizeEventArgsDescriptionMetadata';
1256
1261
  export * from './lib/WebFloatingPaneResizeMoveEventArgsDescription';
@@ -1288,6 +1293,9 @@ export * from './lib/WebListItemDescription';
1288
1293
  export * from './lib/WebListItemDescriptionMetadata';
1289
1294
  export * from './lib/WebListItemDescriptionModule';
1290
1295
  export * from './lib/WebListDescriptionModule';
1296
+ export * from './lib/WebMaskInputDescription';
1297
+ export * from './lib/WebMaskInputDescriptionMetadata';
1298
+ export * from './lib/WebMaskInputDescriptionModule';
1291
1299
  export * from './lib/WebMoveFloatingPaneActionDescription';
1292
1300
  export * from './lib/WebMoveFloatingPaneActionDescriptionMetadata';
1293
1301
  export * from './lib/WebMoveTabActionDescription';
@@ -1379,6 +1387,16 @@ export * from './lib/WebThemeControllerDescriptionMetadata';
1379
1387
  export * from './lib/WebToastDescription';
1380
1388
  export * from './lib/WebToastDescriptionMetadata';
1381
1389
  export * from './lib/WebToastDescriptionModule';
1390
+ export * from './lib/WebTreeDescription';
1391
+ export * from './lib/WebTreeDescriptionMetadata';
1392
+ export * from './lib/WebTreeItemDescription';
1393
+ export * from './lib/WebTreeItemDescriptionMetadata';
1394
+ export * from './lib/WebTreeItemComponentEventArgsDescription';
1395
+ export * from './lib/WebTreeItemComponentEventArgsDescriptionMetadata';
1396
+ export * from './lib/WebTreeItemDescriptionModule';
1397
+ export * from './lib/WebTreeDescriptionModule';
1398
+ export * from './lib/WebTreeSelectionOptionsEventArgsDescription';
1399
+ export * from './lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata';
1382
1400
  export * from './lib/WebValueChangedEventArgsDescription';
1383
1401
  export * from './lib/WebValueChangedEventArgsDescriptionMetadata';
1384
1402
  export * from './lib/WrapperExpressionDescription';