igniteui-angular-core 13.2.0-beta.2 → 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 +1062 -11
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +1 -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 +1 -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 +856 -13
  52. package/fesm5/igniteui-angular-core.js +1045 -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,40 @@
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 { Base, String_$type, markType } from "./type";
8
+ import { Dictionary$2 } from "./Dictionary$2";
9
+ import { WebTreeItemDescriptionMetadata } from "./WebTreeItemDescriptionMetadata";
10
+ import { WebTreeItemComponentEventArgsDescription } from "./WebTreeItemComponentEventArgsDescription";
11
+ /**
12
+ * @hidden
13
+ */
14
+ export let WebTreeItemComponentEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
15
+ class WebTreeItemComponentEventArgsDescriptionMetadata extends Base {
16
+ static b(a) {
17
+ if (WebTreeItemComponentEventArgsDescriptionMetadata.a == null) {
18
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
19
+ WebTreeItemComponentEventArgsDescriptionMetadata.c(WebTreeItemComponentEventArgsDescriptionMetadata.a);
20
+ }
21
+ if (a.g(WebTreeItemComponentEventArgsDescriptionMetadata.a)) {
22
+ return;
23
+ }
24
+ a.s(WebTreeItemComponentEventArgsDescriptionMetadata.a);
25
+ WebTreeItemDescriptionMetadata.d(a);
26
+ }
27
+ static c(a) {
28
+ a.item("__qualifiedNameTS", "String:TreeItemComponentEventArgs");
29
+ a.item("Detail", "ExportedType:WebTreeItem");
30
+ }
31
+ static d(a) {
32
+ WebTreeItemComponentEventArgsDescriptionMetadata.b(a);
33
+ a.u("WebTreeItemComponentEventArgs", () => new WebTreeItemComponentEventArgsDescription());
34
+ a.t("WebTreeItemComponentEventArgs", WebTreeItemComponentEventArgsDescriptionMetadata.a);
35
+ }
36
+ }
37
+ WebTreeItemComponentEventArgsDescriptionMetadata.$t = markType(WebTreeItemComponentEventArgsDescriptionMetadata, 'WebTreeItemComponentEventArgsDescriptionMetadata');
38
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = null;
39
+ return WebTreeItemComponentEventArgsDescriptionMetadata;
40
+ })();
@@ -0,0 +1,106 @@
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 { Description } from "./Description";
8
+ import { markType } from "./type";
9
+ /**
10
+ * @hidden
11
+ */
12
+ export let WebTreeItemDescription = /*@__PURE__*/ (() => {
13
+ class WebTreeItemDescription extends Description {
14
+ constructor() {
15
+ super();
16
+ this.f = null;
17
+ this.k = false;
18
+ this.t = 0;
19
+ this.v = null;
20
+ this.j = false;
21
+ this.h = false;
22
+ this.i = false;
23
+ this.m = false;
24
+ this.l = false;
25
+ this.w = null;
26
+ }
27
+ get_type() {
28
+ return "WebTreeItem";
29
+ }
30
+ get type() {
31
+ return this.get_type();
32
+ }
33
+ get parent() {
34
+ return this.f;
35
+ }
36
+ set parent(a) {
37
+ this.f = a;
38
+ this.e("Parent");
39
+ }
40
+ get init() {
41
+ return this.k;
42
+ }
43
+ set init(a) {
44
+ this.k = a;
45
+ this.e("Init");
46
+ }
47
+ get level() {
48
+ return this.t;
49
+ }
50
+ set level(a) {
51
+ this.t = a;
52
+ this.e("Level");
53
+ }
54
+ get label() {
55
+ return this.v;
56
+ }
57
+ set label(a) {
58
+ this.v = a;
59
+ this.e("Label");
60
+ }
61
+ get expanded() {
62
+ return this.j;
63
+ }
64
+ set expanded(a) {
65
+ this.j = a;
66
+ this.e("Expanded");
67
+ }
68
+ get active() {
69
+ return this.h;
70
+ }
71
+ set active(a) {
72
+ this.h = a;
73
+ this.e("Active");
74
+ }
75
+ get disabled() {
76
+ return this.i;
77
+ }
78
+ set disabled(a) {
79
+ this.i = a;
80
+ this.e("Disabled");
81
+ }
82
+ get selected() {
83
+ return this.m;
84
+ }
85
+ set selected(a) {
86
+ this.m = a;
87
+ this.e("Selected");
88
+ }
89
+ get loading() {
90
+ return this.l;
91
+ }
92
+ set loading(a) {
93
+ this.l = a;
94
+ this.e("Loading");
95
+ }
96
+ get valueRef() {
97
+ return this.w;
98
+ }
99
+ set valueRef(a) {
100
+ this.w = a;
101
+ this.e("ValueRef");
102
+ }
103
+ }
104
+ WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
105
+ return WebTreeItemDescription;
106
+ })();
@@ -0,0 +1,48 @@
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 { Base, String_$type, markType } from "./type";
8
+ import { Dictionary$2 } from "./Dictionary$2";
9
+ import { WebTreeItemDescription } from "./WebTreeItemDescription";
10
+ /**
11
+ * @hidden
12
+ */
13
+ export let WebTreeItemDescriptionMetadata = /*@__PURE__*/ (() => {
14
+ class WebTreeItemDescriptionMetadata extends Base {
15
+ static b(a) {
16
+ if (WebTreeItemDescriptionMetadata.a == null) {
17
+ WebTreeItemDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
18
+ WebTreeItemDescriptionMetadata.c(WebTreeItemDescriptionMetadata.a);
19
+ }
20
+ if (a.g(WebTreeItemDescriptionMetadata.a)) {
21
+ return;
22
+ }
23
+ a.s(WebTreeItemDescriptionMetadata.a);
24
+ WebTreeItemDescriptionMetadata.d(a);
25
+ }
26
+ static c(a) {
27
+ a.item("__qualifiedNameTS", "String:TreeItem");
28
+ a.item("Parent", "ExportedType:WebTreeItem");
29
+ a.item("Init", "Boolean");
30
+ a.item("Level", "Number:double");
31
+ a.item("Label", "String");
32
+ a.item("Expanded", "Boolean");
33
+ a.item("Active", "Boolean");
34
+ a.item("Disabled", "Boolean");
35
+ a.item("Selected", "Boolean");
36
+ a.item("Loading", "Boolean");
37
+ a.item("ValueRef", "(w:Value,wf:Value)DataRef");
38
+ }
39
+ static d(a) {
40
+ WebTreeItemDescriptionMetadata.b(a);
41
+ a.u("WebTreeItem", () => new WebTreeItemDescription());
42
+ a.t("WebTreeItem", WebTreeItemDescriptionMetadata.a);
43
+ }
44
+ }
45
+ WebTreeItemDescriptionMetadata.$t = markType(WebTreeItemDescriptionMetadata, 'WebTreeItemDescriptionMetadata');
46
+ WebTreeItemDescriptionMetadata.a = null;
47
+ return WebTreeItemDescriptionMetadata;
48
+ })();
@@ -0,0 +1,20 @@
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 { Base, markType } from "./type";
8
+ import { WebTreeItemDescriptionMetadata } from "./WebTreeItemDescriptionMetadata";
9
+ /**
10
+ * @hidden
11
+ */
12
+ export let WebTreeItemDescriptionModule = /*@__PURE__*/ (() => {
13
+ class WebTreeItemDescriptionModule extends Base {
14
+ static register(a) {
15
+ WebTreeItemDescriptionMetadata.d(a);
16
+ }
17
+ }
18
+ WebTreeItemDescriptionModule.$t = markType(WebTreeItemDescriptionModule, 'WebTreeItemDescriptionModule');
19
+ return WebTreeItemDescriptionModule;
20
+ })();
@@ -0,0 +1,34 @@
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 { Description } from "./Description";
8
+ import { markType } from "./type";
9
+ /**
10
+ * @hidden
11
+ */
12
+ export let WebTreeSelectionOptionsEventArgsDescription = /*@__PURE__*/ (() => {
13
+ class WebTreeSelectionOptionsEventArgsDescription extends Description {
14
+ constructor() {
15
+ super();
16
+ this.f = null;
17
+ }
18
+ get_type() {
19
+ return "WebTreeSelectionOptionsEventArgs";
20
+ }
21
+ get type() {
22
+ return this.get_type();
23
+ }
24
+ get newSelection() {
25
+ return this.f;
26
+ }
27
+ set newSelection(a) {
28
+ this.f = a;
29
+ this.e("NewSelection");
30
+ }
31
+ }
32
+ WebTreeSelectionOptionsEventArgsDescription.$t = markType(WebTreeSelectionOptionsEventArgsDescription, 'WebTreeSelectionOptionsEventArgsDescription', Description.$);
33
+ return WebTreeSelectionOptionsEventArgsDescription;
34
+ })();
@@ -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 { Base, String_$type, markType } from "./type";
8
+ import { Dictionary$2 } from "./Dictionary$2";
9
+ import { WebTreeSelectionOptionsEventArgsDescription } from "./WebTreeSelectionOptionsEventArgsDescription";
10
+ /**
11
+ * @hidden
12
+ */
13
+ export let WebTreeSelectionOptionsEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
14
+ class WebTreeSelectionOptionsEventArgsDescriptionMetadata extends Base {
15
+ static b(a) {
16
+ if (WebTreeSelectionOptionsEventArgsDescriptionMetadata.a == null) {
17
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
18
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.c(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
19
+ }
20
+ if (a.g(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a)) {
21
+ return;
22
+ }
23
+ a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
24
+ }
25
+ static c(a) {
26
+ a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
27
+ a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
28
+ }
29
+ static d(a) {
30
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
31
+ a.u("WebTreeSelectionOptionsEventArgs", () => new WebTreeSelectionOptionsEventArgsDescription());
32
+ a.t("WebTreeSelectionOptionsEventArgs", WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
33
+ }
34
+ }
35
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventArgsDescriptionMetadata, 'WebTreeSelectionOptionsEventArgsDescriptionMetadata');
36
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = null;
37
+ return WebTreeSelectionOptionsEventArgsDescriptionMetadata;
38
+ })();
@@ -61,7 +61,7 @@ export let IgxTooltipContainerComponent = /*@__PURE__*/ (() => {
61
61
  </ng-template>
62
62
  <ng-container *ngTemplateOutlet="containerTemplate ? containerTemplate : defaultContainer; context: context">
63
63
  </ng-container>
64
- `, 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 });
64
+ `, 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 });
65
65
  return IgxTooltipContainerComponent;
66
66
  })();
67
67
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.14", ngImport: i0, type: IgxTooltipContainerComponent, decorators: [{
@@ -92,8 +92,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.14", ngImpo
92
92
  border-width: var(--tooltip-container-border-width, 1px);
93
93
  color: rgba(34,34,34,0.8);
94
94
  color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));
95
- font: 14px "Titillium Web", Verdana, Arial, sans-serif;
96
- font: var(--tooltip-container-font, 14px "Titillium Web", Verdana, Arial, sans-serif);
95
+ font: 13px "Titillium Web", Verdana, Arial, sans-serif;
96
+ font: var(--tooltip-container-font, 13px "Titillium Web", Verdana, Arial, sans-serif);
97
97
  pointer-events: none;
98
98
  white-space: nowrap;
99
99
  }
@@ -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';
@@ -1634,7 +1634,7 @@ var DotNetCodeGeneratingComponentRendererDataEmitter = /** @class */ /*@__PURE__
1634
1634
  else {
1635
1635
  e = " OnPropertyChanged(\"" + this.v(a, false) + "\");";
1636
1636
  }
1637
- if (c.isAsync) {
1637
+ if (c != null && c.isAsync) {
1638
1638
  d = this.v(a, false) + ".Fetch().ContinueWith((t) => {" + this.ao(a) + " = t.Result; " + e + " });";
1639
1639
  }
1640
1640
  this.g.k("private " + this.v(a, false) + " " + this.ao(a) + " = null;");
@@ -21,13 +21,13 @@ var FontDefaults = /** @class */ /*@__PURE__*/ (function (_super) {
21
21
  };
22
22
  FontDefaults.$t = markType(FontDefaults, 'FontDefaults');
23
23
  FontDefaults.legendLabelsBrush = BrushUtil.g(255, 37, 37, 37);
24
- FontDefaults.legendLabelsFontSizeConst = 14;
25
- FontDefaults.legendLabelsFontSize = DeviceUtils.f(14);
24
+ FontDefaults.legendLabelsFontSizeConst = 13;
25
+ FontDefaults.legendLabelsFontSize = DeviceUtils.f(13);
26
26
  FontDefaults.legendLabelsFontConst = "Verdana";
27
27
  FontDefaults.legendLabelsFontFamily = FontDefaults.aq("Verdana");
28
28
  FontDefaults.dataLegendFontBrush = BrushUtil.g(255, 37, 37, 37);
29
- FontDefaults.dataLegendFontSizeConst = 14;
30
- FontDefaults.dataLegendFontSize = DeviceUtils.f(14);
29
+ FontDefaults.dataLegendFontSizeConst = 13;
30
+ FontDefaults.dataLegendFontSize = DeviceUtils.f(13);
31
31
  FontDefaults.dataLegendFontFamilyConst = "Verdana";
32
32
  FontDefaults.dataLegendFontFamily = FontDefaults.aq("Verdana");
33
33
  FontDefaults.dataLegendFontWeight = "400";
@@ -36,8 +36,8 @@ var FontDefaults = /** @class */ /*@__PURE__*/ (function (_super) {
36
36
  FontDefaults.dataLegendFontVariant = "Normal";
37
37
  FontDefaults.dataLegendHeaderFontWeight = "600";
38
38
  FontDefaults.chartAxisLabelBrush = BrushUtil.g(255, 78, 78, 78);
39
- FontDefaults.chartFontSizeConst = 14;
40
- FontDefaults.chartFontSize = DeviceUtils.f(14);
39
+ FontDefaults.chartFontSizeConst = 13;
40
+ FontDefaults.chartFontSize = DeviceUtils.f(13);
41
41
  FontDefaults.chartFontNameConst = "Verdana";
42
42
  FontDefaults.chartFontFamily = FontDefaults.aq("Verdana");
43
43
  FontDefaults.chartFontWeight = "400";
@@ -53,7 +53,7 @@ var FontDefaults = /** @class */ /*@__PURE__*/ (function (_super) {
53
53
  FontDefaults.chartSubtitleNameConst = "Verdana";
54
54
  FontDefaults.chartSubtitleFontWeight = "600";
55
55
  FontDefaults.tooltipLabelsBrush = BrushUtil.g(255, 78, 78, 78);
56
- FontDefaults.tooltipLabelsFontSizeConst = 14;
56
+ FontDefaults.tooltipLabelsFontSizeConst = 13;
57
57
  FontDefaults.tooltipLabelsFontSize = DeviceUtils.f(FontDefaults.tooltipLabelsFontSizeConst);
58
58
  FontDefaults.tooltipFontNameConst = "Verdana";
59
59
  FontDefaults.tooltipLabelsFontFamily = FontDefaults.aq("Verdana");
@@ -30,7 +30,7 @@ var WebDropdownGroupDescriptionMetadata = /** @class */ /*@__PURE__*/ (function
30
30
  };
31
31
  WebDropdownGroupDescriptionMetadata.c = function (a) {
32
32
  a.item("__qualifiedNameTS", "String:DropdownGroup");
33
- a.item("Items", "ExportedType:WebDropdownItem");
33
+ a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
34
34
  a.item("Size", "ExportedType:string:DropdownGroupSize");
35
35
  a.item("Size@names", "Small;Medium;Large");
36
36
  };
@@ -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 WebExpansionPanelComponentEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebExpansionPanelComponentEventArgsDescription, _super);
15
+ function WebExpansionPanelComponentEventArgsDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.f = null;
18
+ return _this;
19
+ }
20
+ WebExpansionPanelComponentEventArgsDescription.prototype.get_type = function () {
21
+ return "WebExpansionPanelComponentEventArgs";
22
+ };
23
+ Object.defineProperty(WebExpansionPanelComponentEventArgsDescription.prototype, "type", {
24
+ get: function () {
25
+ return this.get_type();
26
+ },
27
+ enumerable: false,
28
+ configurable: true
29
+ });
30
+ Object.defineProperty(WebExpansionPanelComponentEventArgsDescription.prototype, "detail", {
31
+ get: function () {
32
+ return this.f;
33
+ },
34
+ set: function (a) {
35
+ this.f = a;
36
+ this.e("Detail");
37
+ },
38
+ enumerable: false,
39
+ configurable: true
40
+ });
41
+ WebExpansionPanelComponentEventArgsDescription.$t = markType(WebExpansionPanelComponentEventArgsDescription, 'WebExpansionPanelComponentEventArgsDescription', Description.$);
42
+ return WebExpansionPanelComponentEventArgsDescription;
43
+ }(Description));
44
+ export { WebExpansionPanelComponentEventArgsDescription };
@@ -0,0 +1,7 @@
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
+ export { WebExpansionPanelComponentEventArgsDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata_combined";
@@ -0,0 +1,116 @@
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 WebExpansionPanelDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebExpansionPanelDescription, _super);
15
+ function WebExpansionPanelDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.g = false;
18
+ _this.f = false;
19
+ _this.l = null;
20
+ _this.n = null;
21
+ _this.m = null;
22
+ _this.k = null;
23
+ _this.j = null;
24
+ return _this;
25
+ }
26
+ WebExpansionPanelDescription.prototype.get_type = function () {
27
+ return "WebExpansionPanel";
28
+ };
29
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "type", {
30
+ get: function () {
31
+ return this.get_type();
32
+ },
33
+ enumerable: false,
34
+ configurable: true
35
+ });
36
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "open", {
37
+ get: function () {
38
+ return this.g;
39
+ },
40
+ set: function (a) {
41
+ this.g = a;
42
+ this.e("Open");
43
+ },
44
+ enumerable: false,
45
+ configurable: true
46
+ });
47
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "disabled", {
48
+ get: function () {
49
+ return this.f;
50
+ },
51
+ set: function (a) {
52
+ this.f = a;
53
+ this.e("Disabled");
54
+ },
55
+ enumerable: false,
56
+ configurable: true
57
+ });
58
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "indicatorPosition", {
59
+ get: function () {
60
+ return this.l;
61
+ },
62
+ set: function (a) {
63
+ this.l = a;
64
+ this.e("IndicatorPosition");
65
+ },
66
+ enumerable: false,
67
+ configurable: true
68
+ });
69
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "openingRef", {
70
+ get: function () {
71
+ return this.n;
72
+ },
73
+ set: function (a) {
74
+ this.n = a;
75
+ this.e("OpeningRef");
76
+ },
77
+ enumerable: false,
78
+ configurable: true
79
+ });
80
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "openedRef", {
81
+ get: function () {
82
+ return this.m;
83
+ },
84
+ set: function (a) {
85
+ this.m = a;
86
+ this.e("OpenedRef");
87
+ },
88
+ enumerable: false,
89
+ configurable: true
90
+ });
91
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "closingRef", {
92
+ get: function () {
93
+ return this.k;
94
+ },
95
+ set: function (a) {
96
+ this.k = a;
97
+ this.e("ClosingRef");
98
+ },
99
+ enumerable: false,
100
+ configurable: true
101
+ });
102
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "closedRef", {
103
+ get: function () {
104
+ return this.j;
105
+ },
106
+ set: function (a) {
107
+ this.j = a;
108
+ this.e("ClosedRef");
109
+ },
110
+ enumerable: false,
111
+ configurable: true
112
+ });
113
+ WebExpansionPanelDescription.$t = markType(WebExpansionPanelDescription, 'WebExpansionPanelDescription', Description.$);
114
+ return WebExpansionPanelDescription;
115
+ }(Description));
116
+ export { WebExpansionPanelDescription };
@@ -0,0 +1,7 @@
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
+ export { WebExpansionPanelDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata_combined";