igniteui-angular-core 16.1.0-beta.0 → 16.1.0-beta.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 (53) hide show
  1. package/bundles/igniteui-angular-core.umd.js +747 -710
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonDescription.js +502 -494
  4. package/esm2015/lib/ButtonDescriptionMetadata.js +1 -0
  5. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +19 -8
  6. package/esm2015/lib/ComboBoxColumnDescription.js +12 -11
  7. package/esm2015/lib/DataGridColumnDescription.js +80 -79
  8. package/esm2015/lib/DateTimeColumnDescription.js +30 -29
  9. package/esm2015/lib/EditRowDefinitionDescription.js +1 -0
  10. package/esm2015/lib/EditorDefinitionDescription.js +1 -0
  11. package/esm2015/lib/FilterRowDefinitionDescription.js +1 -0
  12. package/esm2015/lib/HeaderDescription.js +11 -10
  13. package/esm2015/lib/ImageColumnDescription.js +16 -15
  14. package/esm2015/lib/NumericColumnDescription.js +42 -41
  15. package/esm2015/lib/PropertyEditorPropertyDescriptionDescriptionMetadata.js +1 -1
  16. package/esm2015/lib/TemplateColumnDescription.js +7 -6
  17. package/esm2015/lib/TemplateHeaderDescription.js +4 -3
  18. package/esm2015/lib/TextColumnDescription.js +14 -13
  19. package/esm2015/lib/TextHeaderDescription.js +1 -0
  20. package/esm5/lib/ButtonDescription.js +506 -494
  21. package/esm5/lib/ButtonDescriptionMetadata.js +1 -0
  22. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +19 -8
  23. package/esm5/lib/ComboBoxColumnDescription.js +12 -11
  24. package/esm5/lib/DataGridColumnDescription.js +80 -79
  25. package/esm5/lib/DateTimeColumnDescription.js +30 -29
  26. package/esm5/lib/EditRowDefinitionDescription.js +1 -0
  27. package/esm5/lib/EditorDefinitionDescription.js +1 -0
  28. package/esm5/lib/FilterRowDefinitionDescription.js +1 -0
  29. package/esm5/lib/HeaderDescription.js +11 -10
  30. package/esm5/lib/ImageColumnDescription.js +16 -15
  31. package/esm5/lib/NumericColumnDescription.js +42 -41
  32. package/esm5/lib/PropertyEditorPropertyDescriptionDescriptionMetadata.js +1 -1
  33. package/esm5/lib/TemplateColumnDescription.js +7 -6
  34. package/esm5/lib/TemplateHeaderDescription.js +4 -3
  35. package/esm5/lib/TextColumnDescription.js +14 -13
  36. package/esm5/lib/TextHeaderDescription.js +1 -0
  37. package/fesm2015/igniteui-angular-core.js +743 -710
  38. package/fesm5/igniteui-angular-core.js +747 -710
  39. package/lib/ButtonDescription.d.ts +186 -183
  40. package/lib/ComboBoxColumnDescription.d.ts +5 -4
  41. package/lib/DataGridColumnDescription.d.ts +29 -28
  42. package/lib/DateTimeColumnDescription.d.ts +12 -11
  43. package/lib/EditRowDefinitionDescription.d.ts +1 -0
  44. package/lib/EditorDefinitionDescription.d.ts +1 -0
  45. package/lib/FilterRowDefinitionDescription.d.ts +1 -0
  46. package/lib/HeaderDescription.d.ts +5 -4
  47. package/lib/ImageColumnDescription.d.ts +7 -6
  48. package/lib/NumericColumnDescription.d.ts +17 -16
  49. package/lib/TemplateColumnDescription.d.ts +3 -2
  50. package/lib/TemplateHeaderDescription.d.ts +2 -1
  51. package/lib/TextColumnDescription.d.ts +6 -5
  52. package/lib/TextHeaderDescription.d.ts +1 -0
  53. package/package.json +1 -1
@@ -13,60 +13,61 @@ export let ImageColumnDescription = /*@__PURE__*/ (() => {
13
13
  class ImageColumnDescription extends DataGridColumnDescription {
14
14
  constructor() {
15
15
  super();
16
+ this.fp = null;
16
17
  this.fn = null;
17
18
  this.fl = null;
18
- this.fj = null;
19
- this.fg = null;
20
- this.fk = null;
19
+ this.fh = null;
21
20
  this.fm = null;
21
+ this.fo = null;
22
22
  }
23
23
  get_type() {
24
24
  return "ImageColumn";
25
25
  }
26
26
  get imageStretchOption() {
27
- return this.fn;
27
+ return this.fp;
28
28
  }
29
29
  set imageStretchOption(a) {
30
- this.fn = a;
30
+ this.fp = a;
31
31
  this.g("ImageStretchOption");
32
32
  }
33
33
  get editorType() {
34
- return this.fl;
34
+ return this.fn;
35
35
  }
36
36
  set editorType(a) {
37
- this.fl = a;
37
+ this.fn = a;
38
38
  this.g("EditorType");
39
39
  }
40
40
  get editorDataSourceRef() {
41
- return this.fj;
41
+ return this.fl;
42
42
  }
43
43
  set editorDataSourceRef(a) {
44
- this.fj = a;
44
+ this.fl = a;
45
45
  this.g("EditorDataSourceRef");
46
46
  }
47
47
  get editorDataSource() {
48
- return this.fg;
48
+ return this.fh;
49
49
  }
50
50
  set editorDataSource(a) {
51
- this.fg = a;
51
+ this.fh = a;
52
52
  this.g("EditorDataSource");
53
53
  }
54
54
  get editorTextField() {
55
- return this.fk;
55
+ return this.fm;
56
56
  }
57
57
  set editorTextField(a) {
58
- this.fk = a;
58
+ this.fm = a;
59
59
  this.g("EditorTextField");
60
60
  }
61
61
  get editorValueField() {
62
- return this.fm;
62
+ return this.fo;
63
63
  }
64
64
  set editorValueField(a) {
65
- this.fm = a;
65
+ this.fo = a;
66
66
  this.g("EditorValueField");
67
67
  }
68
68
  }
69
69
  ImageColumnDescription.$t = markType(ImageColumnDescription, 'ImageColumnDescription', DataGridColumnDescription.$);
70
70
  ImageColumnDescription.__canMarshalByValue1 = true;
71
+ ImageColumnDescription.__marshalByValueAlias1 = "ImageColumn";
71
72
  return ImageColumnDescription;
72
73
  })();
@@ -13,140 +13,141 @@ export let NumericColumnDescription = /*@__PURE__*/ (() => {
13
13
  class NumericColumnDescription extends DataGridColumnDescription {
14
14
  constructor() {
15
15
  super();
16
- this.fz = null;
17
16
  this.f1 = null;
18
- this.f0 = null;
17
+ this.f3 = null;
19
18
  this.f2 = null;
20
- this.fn = 0;
19
+ this.f4 = null;
21
20
  this.fo = 0;
22
21
  this.fp = 0;
23
- this.fl = false;
24
- this.fy = null;
25
- this.fg = null;
22
+ this.fq = 0;
23
+ this.fm = false;
24
+ this.f0 = null;
25
+ this.fh = null;
26
+ this.fz = null;
26
27
  this.fx = null;
27
28
  this.fv = null;
28
- this.ft = null;
29
- this.fi = null;
30
- this.fu = null;
29
+ this.fj = null;
31
30
  this.fw = null;
31
+ this.fy = null;
32
32
  }
33
33
  get_type() {
34
34
  return "NumericColumn";
35
35
  }
36
36
  get negativePrefix() {
37
- return this.fz;
37
+ return this.f1;
38
38
  }
39
39
  set negativePrefix(a) {
40
- this.fz = a;
40
+ this.f1 = a;
41
41
  this.g("NegativePrefix");
42
42
  }
43
43
  get positivePrefix() {
44
- return this.f1;
44
+ return this.f3;
45
45
  }
46
46
  set positivePrefix(a) {
47
- this.f1 = a;
47
+ this.f3 = a;
48
48
  this.g("PositivePrefix");
49
49
  }
50
50
  get negativeSuffix() {
51
- return this.f0;
51
+ return this.f2;
52
52
  }
53
53
  set negativeSuffix(a) {
54
- this.f0 = a;
54
+ this.f2 = a;
55
55
  this.g("NegativeSuffix");
56
56
  }
57
57
  get positiveSuffix() {
58
- return this.f2;
58
+ return this.f4;
59
59
  }
60
60
  set positiveSuffix(a) {
61
- this.f2 = a;
61
+ this.f4 = a;
62
62
  this.g("PositiveSuffix");
63
63
  }
64
64
  get maxFractionDigits() {
65
- return this.fn;
65
+ return this.fo;
66
66
  }
67
67
  set maxFractionDigits(a) {
68
- this.fn = a;
68
+ this.fo = a;
69
69
  this.g("MaxFractionDigits");
70
70
  }
71
71
  get minFractionDigits() {
72
- return this.fo;
72
+ return this.fp;
73
73
  }
74
74
  set minFractionDigits(a) {
75
- this.fo = a;
75
+ this.fp = a;
76
76
  this.g("MinFractionDigits");
77
77
  }
78
78
  get minIntegerDigits() {
79
- return this.fp;
79
+ return this.fq;
80
80
  }
81
81
  set minIntegerDigits(a) {
82
- this.fp = a;
82
+ this.fq = a;
83
83
  this.g("MinIntegerDigits");
84
84
  }
85
85
  get showGroupingSeparator() {
86
- return this.fl;
86
+ return this.fm;
87
87
  }
88
88
  set showGroupingSeparator(a) {
89
- this.fl = a;
89
+ this.fm = a;
90
90
  this.g("ShowGroupingSeparator");
91
91
  }
92
92
  get formatString() {
93
- return this.fy;
93
+ return this.f0;
94
94
  }
95
95
  set formatString(a) {
96
- this.fy = a;
96
+ this.f0 = a;
97
97
  this.g("FormatString");
98
98
  }
99
99
  get formatSpecifiers() {
100
- return this.fg;
100
+ return this.fh;
101
101
  }
102
102
  set formatSpecifiers(a) {
103
- this.fg = a;
103
+ this.fh = a;
104
104
  this.g("FormatSpecifiers");
105
105
  }
106
106
  get formatOverrideRef() {
107
- return this.fx;
107
+ return this.fz;
108
108
  }
109
109
  set formatOverrideRef(a) {
110
- this.fx = a;
110
+ this.fz = a;
111
111
  this.g("FormatOverrideRef");
112
112
  }
113
113
  get editorType() {
114
- return this.fv;
114
+ return this.fx;
115
115
  }
116
116
  set editorType(a) {
117
- this.fv = a;
117
+ this.fx = a;
118
118
  this.g("EditorType");
119
119
  }
120
120
  get editorDataSourceRef() {
121
- return this.ft;
121
+ return this.fv;
122
122
  }
123
123
  set editorDataSourceRef(a) {
124
- this.ft = a;
124
+ this.fv = a;
125
125
  this.g("EditorDataSourceRef");
126
126
  }
127
127
  get editorDataSource() {
128
- return this.fi;
128
+ return this.fj;
129
129
  }
130
130
  set editorDataSource(a) {
131
- this.fi = a;
131
+ this.fj = a;
132
132
  this.g("EditorDataSource");
133
133
  }
134
134
  get editorTextField() {
135
- return this.fu;
135
+ return this.fw;
136
136
  }
137
137
  set editorTextField(a) {
138
- this.fu = a;
138
+ this.fw = a;
139
139
  this.g("EditorTextField");
140
140
  }
141
141
  get editorValueField() {
142
- return this.fw;
142
+ return this.fy;
143
143
  }
144
144
  set editorValueField(a) {
145
- this.fw = a;
145
+ this.fy = a;
146
146
  this.g("EditorValueField");
147
147
  }
148
148
  }
149
149
  NumericColumnDescription.$t = markType(NumericColumnDescription, 'NumericColumnDescription', DataGridColumnDescription.$);
150
150
  NumericColumnDescription.__canMarshalByValue1 = true;
151
+ NumericColumnDescription.__marshalByValueAlias1 = "NumericColumn";
151
152
  return NumericColumnDescription;
152
153
  })();
@@ -34,7 +34,7 @@ export let PropertyEditorPropertyDescriptionDescriptionMetadata = /*@__PURE__*/
34
34
  a.item("PropertyPath", "String");
35
35
  a.item("Label", "String");
36
36
  a.item("ValueType", "ExportedType:string:PropertyEditorValueType");
37
- a.item("ValueType@names", "Unhandled;Number;StringValue;Date;Brush;Color;BrushCollection;Boolean1;SubType;Collection;Array;Point;Size;Rect;ColorCollection;EnumValue;MethodRef;EventRef;DataRef;TimeSpan;Button;Slider;TemplateRef");
37
+ a.item("ValueType@names", "Unhandled;Number;StringValue;Date;Brush;Color;BrushCollection;Boolean1;SubType;Collection;Array;Point;Size;Rect;ColorCollection;EnumValue;MethodRef;EventRef;DataRef;TimeSpan;Button;Slider;TemplateRef;DoubleCollection");
38
38
  a.item("PropertyDescriptionType", "String");
39
39
  a.item("ShouldOverrideDefaultEditor", "Boolean");
40
40
  a.item("ElementDescriptionType", "String");
@@ -13,28 +13,29 @@ export let TemplateColumnDescription = /*@__PURE__*/ (() => {
13
13
  class TemplateColumnDescription extends DataGridColumnDescription {
14
14
  constructor() {
15
15
  super();
16
- this.fi = null;
17
- this.fh = null;
16
+ this.fk = null;
17
+ this.fj = null;
18
18
  }
19
19
  get templateRef() {
20
- return this.fi;
20
+ return this.fk;
21
21
  }
22
22
  set templateRef(a) {
23
- this.fi = a;
23
+ this.fk = a;
24
24
  this.g("TemplateRef");
25
25
  }
26
26
  get_type() {
27
27
  return "TemplateColumn";
28
28
  }
29
29
  get cellUpdatingRef() {
30
- return this.fh;
30
+ return this.fj;
31
31
  }
32
32
  set cellUpdatingRef(a) {
33
- this.fh = a;
33
+ this.fj = a;
34
34
  this.g("CellUpdatingRef");
35
35
  }
36
36
  }
37
37
  TemplateColumnDescription.$t = markType(TemplateColumnDescription, 'TemplateColumnDescription', DataGridColumnDescription.$);
38
38
  TemplateColumnDescription.__canMarshalByValue1 = true;
39
+ TemplateColumnDescription.__marshalByValueAlias1 = "TemplateColumn";
39
40
  return TemplateColumnDescription;
40
41
  })();
@@ -13,20 +13,21 @@ export let TemplateHeaderDescription = /*@__PURE__*/ (() => {
13
13
  class TemplateHeaderDescription extends HeaderDescription {
14
14
  constructor() {
15
15
  super();
16
- this.cm = null;
16
+ this.co = null;
17
17
  }
18
18
  get_type() {
19
19
  return "TemplateHeader";
20
20
  }
21
21
  get cellUpdatingRef() {
22
- return this.cm;
22
+ return this.co;
23
23
  }
24
24
  set cellUpdatingRef(a) {
25
- this.cm = a;
25
+ this.co = a;
26
26
  this.g("CellUpdatingRef");
27
27
  }
28
28
  }
29
29
  TemplateHeaderDescription.$t = markType(TemplateHeaderDescription, 'TemplateHeaderDescription', HeaderDescription.$);
30
30
  TemplateHeaderDescription.__canMarshalByValue1 = true;
31
+ TemplateHeaderDescription.__marshalByValueAlias1 = "TemplateHeader";
31
32
  return TemplateHeaderDescription;
32
33
  })();
@@ -13,52 +13,53 @@ export let TextColumnDescription = /*@__PURE__*/ (() => {
13
13
  class TextColumnDescription extends DataGridColumnDescription {
14
14
  constructor() {
15
15
  super();
16
+ this.fn = null;
16
17
  this.fl = null;
17
- this.fj = null;
18
- this.fg = null;
19
- this.fk = null;
18
+ this.fh = null;
20
19
  this.fm = null;
20
+ this.fo = null;
21
21
  }
22
22
  get_type() {
23
23
  return "TextColumn";
24
24
  }
25
25
  get editorType() {
26
- return this.fl;
26
+ return this.fn;
27
27
  }
28
28
  set editorType(a) {
29
- this.fl = a;
29
+ this.fn = a;
30
30
  this.g("EditorType");
31
31
  }
32
32
  get editorDataSourceRef() {
33
- return this.fj;
33
+ return this.fl;
34
34
  }
35
35
  set editorDataSourceRef(a) {
36
- this.fj = a;
36
+ this.fl = a;
37
37
  this.g("EditorDataSourceRef");
38
38
  }
39
39
  get editorDataSource() {
40
- return this.fg;
40
+ return this.fh;
41
41
  }
42
42
  set editorDataSource(a) {
43
- this.fg = a;
43
+ this.fh = a;
44
44
  this.g("EditorDataSource");
45
45
  }
46
46
  get editorTextField() {
47
- return this.fk;
47
+ return this.fm;
48
48
  }
49
49
  set editorTextField(a) {
50
- this.fk = a;
50
+ this.fm = a;
51
51
  this.g("EditorTextField");
52
52
  }
53
53
  get editorValueField() {
54
- return this.fm;
54
+ return this.fo;
55
55
  }
56
56
  set editorValueField(a) {
57
- this.fm = a;
57
+ this.fo = a;
58
58
  this.g("EditorValueField");
59
59
  }
60
60
  }
61
61
  TextColumnDescription.$t = markType(TextColumnDescription, 'TextColumnDescription', DataGridColumnDescription.$);
62
62
  TextColumnDescription.__canMarshalByValue1 = true;
63
+ TextColumnDescription.__marshalByValueAlias1 = "TextColumn";
63
64
  return TextColumnDescription;
64
65
  })();
@@ -20,5 +20,6 @@ export let TextHeaderDescription = /*@__PURE__*/ (() => {
20
20
  }
21
21
  TextHeaderDescription.$t = markType(TextHeaderDescription, 'TextHeaderDescription', HeaderDescription.$);
22
22
  TextHeaderDescription.__canMarshalByValue1 = true;
23
+ TextHeaderDescription.__marshalByValueAlias1 = "TextHeader";
23
24
  return TextHeaderDescription;
24
25
  })();