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.
- package/bundles/igniteui-angular-core.umd.js +747 -710
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/ButtonDescription.js +502 -494
- package/esm2015/lib/ButtonDescriptionMetadata.js +1 -0
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +19 -8
- package/esm2015/lib/ComboBoxColumnDescription.js +12 -11
- package/esm2015/lib/DataGridColumnDescription.js +80 -79
- package/esm2015/lib/DateTimeColumnDescription.js +30 -29
- package/esm2015/lib/EditRowDefinitionDescription.js +1 -0
- package/esm2015/lib/EditorDefinitionDescription.js +1 -0
- package/esm2015/lib/FilterRowDefinitionDescription.js +1 -0
- package/esm2015/lib/HeaderDescription.js +11 -10
- package/esm2015/lib/ImageColumnDescription.js +16 -15
- package/esm2015/lib/NumericColumnDescription.js +42 -41
- package/esm2015/lib/PropertyEditorPropertyDescriptionDescriptionMetadata.js +1 -1
- package/esm2015/lib/TemplateColumnDescription.js +7 -6
- package/esm2015/lib/TemplateHeaderDescription.js +4 -3
- package/esm2015/lib/TextColumnDescription.js +14 -13
- package/esm2015/lib/TextHeaderDescription.js +1 -0
- package/esm5/lib/ButtonDescription.js +506 -494
- package/esm5/lib/ButtonDescriptionMetadata.js +1 -0
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +19 -8
- package/esm5/lib/ComboBoxColumnDescription.js +12 -11
- package/esm5/lib/DataGridColumnDescription.js +80 -79
- package/esm5/lib/DateTimeColumnDescription.js +30 -29
- package/esm5/lib/EditRowDefinitionDescription.js +1 -0
- package/esm5/lib/EditorDefinitionDescription.js +1 -0
- package/esm5/lib/FilterRowDefinitionDescription.js +1 -0
- package/esm5/lib/HeaderDescription.js +11 -10
- package/esm5/lib/ImageColumnDescription.js +16 -15
- package/esm5/lib/NumericColumnDescription.js +42 -41
- package/esm5/lib/PropertyEditorPropertyDescriptionDescriptionMetadata.js +1 -1
- package/esm5/lib/TemplateColumnDescription.js +7 -6
- package/esm5/lib/TemplateHeaderDescription.js +4 -3
- package/esm5/lib/TextColumnDescription.js +14 -13
- package/esm5/lib/TextHeaderDescription.js +1 -0
- package/fesm2015/igniteui-angular-core.js +743 -710
- package/fesm5/igniteui-angular-core.js +747 -710
- package/lib/ButtonDescription.d.ts +186 -183
- package/lib/ComboBoxColumnDescription.d.ts +5 -4
- package/lib/DataGridColumnDescription.d.ts +29 -28
- package/lib/DateTimeColumnDescription.d.ts +12 -11
- package/lib/EditRowDefinitionDescription.d.ts +1 -0
- package/lib/EditorDefinitionDescription.d.ts +1 -0
- package/lib/FilterRowDefinitionDescription.d.ts +1 -0
- package/lib/HeaderDescription.d.ts +5 -4
- package/lib/ImageColumnDescription.d.ts +7 -6
- package/lib/NumericColumnDescription.d.ts +17 -16
- package/lib/TemplateColumnDescription.d.ts +3 -2
- package/lib/TemplateHeaderDescription.d.ts +2 -1
- package/lib/TextColumnDescription.d.ts +6 -5
- package/lib/TextHeaderDescription.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14,17 +14,17 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(DateTimeColumnDescription, _super);
|
|
15
15
|
function DateTimeColumnDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.fn = null;
|
|
18
|
-
_this.fu = null;
|
|
19
17
|
_this.fp = null;
|
|
20
|
-
_this.
|
|
21
|
-
_this.ft = null;
|
|
22
|
-
_this.fl = false;
|
|
18
|
+
_this.fw = null;
|
|
23
19
|
_this.fr = null;
|
|
24
|
-
_this.
|
|
25
|
-
_this.
|
|
20
|
+
_this.fh = null;
|
|
21
|
+
_this.fv = null;
|
|
22
|
+
_this.fm = false;
|
|
23
|
+
_this.ft = null;
|
|
26
24
|
_this.fq = null;
|
|
25
|
+
_this.fj = null;
|
|
27
26
|
_this.fs = null;
|
|
27
|
+
_this.fu = null;
|
|
28
28
|
return _this;
|
|
29
29
|
}
|
|
30
30
|
DateTimeColumnDescription.prototype.get_type = function () {
|
|
@@ -32,10 +32,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
32
32
|
};
|
|
33
33
|
Object.defineProperty(DateTimeColumnDescription.prototype, "dateTimeFormat", {
|
|
34
34
|
get: function () {
|
|
35
|
-
return this.
|
|
35
|
+
return this.fp;
|
|
36
36
|
},
|
|
37
37
|
set: function (a) {
|
|
38
|
-
this.
|
|
38
|
+
this.fp = a;
|
|
39
39
|
this.g("DateTimeFormat");
|
|
40
40
|
},
|
|
41
41
|
enumerable: false,
|
|
@@ -43,10 +43,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
43
43
|
});
|
|
44
44
|
Object.defineProperty(DateTimeColumnDescription.prototype, "formatString", {
|
|
45
45
|
get: function () {
|
|
46
|
-
return this.
|
|
46
|
+
return this.fw;
|
|
47
47
|
},
|
|
48
48
|
set: function (a) {
|
|
49
|
-
this.
|
|
49
|
+
this.fw = a;
|
|
50
50
|
this.g("FormatString");
|
|
51
51
|
},
|
|
52
52
|
enumerable: false,
|
|
@@ -54,10 +54,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
54
54
|
});
|
|
55
55
|
Object.defineProperty(DateTimeColumnDescription.prototype, "editorFormatString", {
|
|
56
56
|
get: function () {
|
|
57
|
-
return this.
|
|
57
|
+
return this.fr;
|
|
58
58
|
},
|
|
59
59
|
set: function (a) {
|
|
60
|
-
this.
|
|
60
|
+
this.fr = a;
|
|
61
61
|
this.g("EditorFormatString");
|
|
62
62
|
},
|
|
63
63
|
enumerable: false,
|
|
@@ -65,10 +65,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
65
65
|
});
|
|
66
66
|
Object.defineProperty(DateTimeColumnDescription.prototype, "formatSpecifiers", {
|
|
67
67
|
get: function () {
|
|
68
|
-
return this.
|
|
68
|
+
return this.fh;
|
|
69
69
|
},
|
|
70
70
|
set: function (a) {
|
|
71
|
-
this.
|
|
71
|
+
this.fh = a;
|
|
72
72
|
this.g("FormatSpecifiers");
|
|
73
73
|
},
|
|
74
74
|
enumerable: false,
|
|
@@ -76,10 +76,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
76
76
|
});
|
|
77
77
|
Object.defineProperty(DateTimeColumnDescription.prototype, "formatOverrideRef", {
|
|
78
78
|
get: function () {
|
|
79
|
-
return this.
|
|
79
|
+
return this.fv;
|
|
80
80
|
},
|
|
81
81
|
set: function (a) {
|
|
82
|
-
this.
|
|
82
|
+
this.fv = a;
|
|
83
83
|
this.g("FormatOverrideRef");
|
|
84
84
|
},
|
|
85
85
|
enumerable: false,
|
|
@@ -87,10 +87,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
87
87
|
});
|
|
88
88
|
Object.defineProperty(DateTimeColumnDescription.prototype, "showTodayButton", {
|
|
89
89
|
get: function () {
|
|
90
|
-
return this.
|
|
90
|
+
return this.fm;
|
|
91
91
|
},
|
|
92
92
|
set: function (a) {
|
|
93
|
-
this.
|
|
93
|
+
this.fm = a;
|
|
94
94
|
this.g("ShowTodayButton");
|
|
95
95
|
},
|
|
96
96
|
enumerable: false,
|
|
@@ -98,10 +98,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
98
98
|
});
|
|
99
99
|
Object.defineProperty(DateTimeColumnDescription.prototype, "editorType", {
|
|
100
100
|
get: function () {
|
|
101
|
-
return this.
|
|
101
|
+
return this.ft;
|
|
102
102
|
},
|
|
103
103
|
set: function (a) {
|
|
104
|
-
this.
|
|
104
|
+
this.ft = a;
|
|
105
105
|
this.g("EditorType");
|
|
106
106
|
},
|
|
107
107
|
enumerable: false,
|
|
@@ -109,10 +109,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
109
109
|
});
|
|
110
110
|
Object.defineProperty(DateTimeColumnDescription.prototype, "editorDataSourceRef", {
|
|
111
111
|
get: function () {
|
|
112
|
-
return this.
|
|
112
|
+
return this.fq;
|
|
113
113
|
},
|
|
114
114
|
set: function (a) {
|
|
115
|
-
this.
|
|
115
|
+
this.fq = a;
|
|
116
116
|
this.g("EditorDataSourceRef");
|
|
117
117
|
},
|
|
118
118
|
enumerable: false,
|
|
@@ -120,10 +120,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
120
120
|
});
|
|
121
121
|
Object.defineProperty(DateTimeColumnDescription.prototype, "editorDataSource", {
|
|
122
122
|
get: function () {
|
|
123
|
-
return this.
|
|
123
|
+
return this.fj;
|
|
124
124
|
},
|
|
125
125
|
set: function (a) {
|
|
126
|
-
this.
|
|
126
|
+
this.fj = a;
|
|
127
127
|
this.g("EditorDataSource");
|
|
128
128
|
},
|
|
129
129
|
enumerable: false,
|
|
@@ -131,10 +131,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
131
131
|
});
|
|
132
132
|
Object.defineProperty(DateTimeColumnDescription.prototype, "editorTextField", {
|
|
133
133
|
get: function () {
|
|
134
|
-
return this.
|
|
134
|
+
return this.fs;
|
|
135
135
|
},
|
|
136
136
|
set: function (a) {
|
|
137
|
-
this.
|
|
137
|
+
this.fs = a;
|
|
138
138
|
this.g("EditorTextField");
|
|
139
139
|
},
|
|
140
140
|
enumerable: false,
|
|
@@ -142,10 +142,10 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
142
142
|
});
|
|
143
143
|
Object.defineProperty(DateTimeColumnDescription.prototype, "editorValueField", {
|
|
144
144
|
get: function () {
|
|
145
|
-
return this.
|
|
145
|
+
return this.fu;
|
|
146
146
|
},
|
|
147
147
|
set: function (a) {
|
|
148
|
-
this.
|
|
148
|
+
this.fu = a;
|
|
149
149
|
this.g("EditorValueField");
|
|
150
150
|
},
|
|
151
151
|
enumerable: false,
|
|
@@ -153,6 +153,7 @@ var DateTimeColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
153
153
|
});
|
|
154
154
|
DateTimeColumnDescription.$t = markType(DateTimeColumnDescription, 'DateTimeColumnDescription', DataGridColumnDescription.$);
|
|
155
155
|
DateTimeColumnDescription.__canMarshalByValue1 = true;
|
|
156
|
+
DateTimeColumnDescription.__marshalByValueAlias1 = "DateTimeColumn";
|
|
156
157
|
return DateTimeColumnDescription;
|
|
157
158
|
}(DataGridColumnDescription));
|
|
158
159
|
export { DateTimeColumnDescription };
|
|
@@ -20,6 +20,7 @@ var EditRowDefinitionDescription = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
20
20
|
};
|
|
21
21
|
EditRowDefinitionDescription.$t = markType(EditRowDefinitionDescription, 'EditRowDefinitionDescription', DefinitionBaseDescription.$);
|
|
22
22
|
EditRowDefinitionDescription.__canMarshalByValue = true;
|
|
23
|
+
EditRowDefinitionDescription.__marshalByValueAlias = "EditRowDefinition";
|
|
23
24
|
return EditRowDefinitionDescription;
|
|
24
25
|
}(DefinitionBaseDescription));
|
|
25
26
|
export { EditRowDefinitionDescription };
|
|
@@ -20,6 +20,7 @@ var EditorDefinitionDescription = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
20
20
|
};
|
|
21
21
|
EditorDefinitionDescription.$t = markType(EditorDefinitionDescription, 'EditorDefinitionDescription', DefinitionBaseDescription.$);
|
|
22
22
|
EditorDefinitionDescription.__canMarshalByValue = true;
|
|
23
|
+
EditorDefinitionDescription.__marshalByValueAlias = "EditorDefinition";
|
|
23
24
|
return EditorDefinitionDescription;
|
|
24
25
|
}(DefinitionBaseDescription));
|
|
25
26
|
export { EditorDefinitionDescription };
|
|
@@ -69,6 +69,7 @@ var FilterRowDefinitionDescription = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
69
69
|
});
|
|
70
70
|
FilterRowDefinitionDescription.$t = markType(FilterRowDefinitionDescription, 'FilterRowDefinitionDescription', DefinitionBaseDescription.$);
|
|
71
71
|
FilterRowDefinitionDescription.__canMarshalByValue = true;
|
|
72
|
+
FilterRowDefinitionDescription.__marshalByValueAlias = "FilterRowDefinition";
|
|
72
73
|
return FilterRowDefinitionDescription;
|
|
73
74
|
}(DefinitionBaseDescription));
|
|
74
75
|
export { FilterRowDefinitionDescription };
|
|
@@ -14,10 +14,10 @@ var HeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(HeaderDescription, _super);
|
|
15
15
|
function HeaderDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.cf = null;
|
|
18
|
-
_this.cd = null;
|
|
19
17
|
_this.cg = null;
|
|
20
18
|
_this.ce = null;
|
|
19
|
+
_this.ch = null;
|
|
20
|
+
_this.cf = null;
|
|
21
21
|
_this.b6 = 0;
|
|
22
22
|
_this.b8 = 0;
|
|
23
23
|
_this.b7 = 0;
|
|
@@ -29,10 +29,10 @@ var HeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
29
29
|
};
|
|
30
30
|
Object.defineProperty(HeaderDescription.prototype, "sortIndicatorColor", {
|
|
31
31
|
get: function () {
|
|
32
|
-
return this.
|
|
32
|
+
return this.cg;
|
|
33
33
|
},
|
|
34
34
|
set: function (a) {
|
|
35
|
-
this.
|
|
35
|
+
this.cg = a;
|
|
36
36
|
this.g("SortIndicatorColor");
|
|
37
37
|
},
|
|
38
38
|
enumerable: false,
|
|
@@ -40,10 +40,10 @@ var HeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
40
40
|
});
|
|
41
41
|
Object.defineProperty(HeaderDescription.prototype, "actualSortIndicatorColor", {
|
|
42
42
|
get: function () {
|
|
43
|
-
return this.
|
|
43
|
+
return this.ce;
|
|
44
44
|
},
|
|
45
45
|
set: function (a) {
|
|
46
|
-
this.
|
|
46
|
+
this.ce = a;
|
|
47
47
|
this.g("ActualSortIndicatorColor");
|
|
48
48
|
},
|
|
49
49
|
enumerable: false,
|
|
@@ -51,10 +51,10 @@ var HeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
51
51
|
});
|
|
52
52
|
Object.defineProperty(HeaderDescription.prototype, "sortIndicatorStyle", {
|
|
53
53
|
get: function () {
|
|
54
|
-
return this.
|
|
54
|
+
return this.ch;
|
|
55
55
|
},
|
|
56
56
|
set: function (a) {
|
|
57
|
-
this.
|
|
57
|
+
this.ch = a;
|
|
58
58
|
this.g("SortIndicatorStyle");
|
|
59
59
|
},
|
|
60
60
|
enumerable: false,
|
|
@@ -62,10 +62,10 @@ var HeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62
62
|
});
|
|
63
63
|
Object.defineProperty(HeaderDescription.prototype, "actualSortIndicatorStyle", {
|
|
64
64
|
get: function () {
|
|
65
|
-
return this.
|
|
65
|
+
return this.cf;
|
|
66
66
|
},
|
|
67
67
|
set: function (a) {
|
|
68
|
-
this.
|
|
68
|
+
this.cf = a;
|
|
69
69
|
this.g("ActualSortIndicatorStyle");
|
|
70
70
|
},
|
|
71
71
|
enumerable: false,
|
|
@@ -117,6 +117,7 @@ var HeaderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
117
117
|
});
|
|
118
118
|
HeaderDescription.$t = markType(HeaderDescription, 'HeaderDescription', DefinitionBaseDescription.$);
|
|
119
119
|
HeaderDescription.__canMarshalByValue = true;
|
|
120
|
+
HeaderDescription.__marshalByValueAlias = "Header";
|
|
120
121
|
return HeaderDescription;
|
|
121
122
|
}(DefinitionBaseDescription));
|
|
122
123
|
export { HeaderDescription };
|
|
@@ -14,12 +14,12 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(ImageColumnDescription, _super);
|
|
15
15
|
function ImageColumnDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
+
_this.fp = null;
|
|
17
18
|
_this.fn = null;
|
|
18
19
|
_this.fl = null;
|
|
19
|
-
_this.
|
|
20
|
-
_this.fg = null;
|
|
21
|
-
_this.fk = null;
|
|
20
|
+
_this.fh = null;
|
|
22
21
|
_this.fm = null;
|
|
22
|
+
_this.fo = null;
|
|
23
23
|
return _this;
|
|
24
24
|
}
|
|
25
25
|
ImageColumnDescription.prototype.get_type = function () {
|
|
@@ -27,10 +27,10 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(ImageColumnDescription.prototype, "imageStretchOption", {
|
|
29
29
|
get: function () {
|
|
30
|
-
return this.
|
|
30
|
+
return this.fp;
|
|
31
31
|
},
|
|
32
32
|
set: function (a) {
|
|
33
|
-
this.
|
|
33
|
+
this.fp = a;
|
|
34
34
|
this.g("ImageStretchOption");
|
|
35
35
|
},
|
|
36
36
|
enumerable: false,
|
|
@@ -38,10 +38,10 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
38
38
|
});
|
|
39
39
|
Object.defineProperty(ImageColumnDescription.prototype, "editorType", {
|
|
40
40
|
get: function () {
|
|
41
|
-
return this.
|
|
41
|
+
return this.fn;
|
|
42
42
|
},
|
|
43
43
|
set: function (a) {
|
|
44
|
-
this.
|
|
44
|
+
this.fn = a;
|
|
45
45
|
this.g("EditorType");
|
|
46
46
|
},
|
|
47
47
|
enumerable: false,
|
|
@@ -49,10 +49,10 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
49
49
|
});
|
|
50
50
|
Object.defineProperty(ImageColumnDescription.prototype, "editorDataSourceRef", {
|
|
51
51
|
get: function () {
|
|
52
|
-
return this.
|
|
52
|
+
return this.fl;
|
|
53
53
|
},
|
|
54
54
|
set: function (a) {
|
|
55
|
-
this.
|
|
55
|
+
this.fl = a;
|
|
56
56
|
this.g("EditorDataSourceRef");
|
|
57
57
|
},
|
|
58
58
|
enumerable: false,
|
|
@@ -60,10 +60,10 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
60
60
|
});
|
|
61
61
|
Object.defineProperty(ImageColumnDescription.prototype, "editorDataSource", {
|
|
62
62
|
get: function () {
|
|
63
|
-
return this.
|
|
63
|
+
return this.fh;
|
|
64
64
|
},
|
|
65
65
|
set: function (a) {
|
|
66
|
-
this.
|
|
66
|
+
this.fh = a;
|
|
67
67
|
this.g("EditorDataSource");
|
|
68
68
|
},
|
|
69
69
|
enumerable: false,
|
|
@@ -71,10 +71,10 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
71
71
|
});
|
|
72
72
|
Object.defineProperty(ImageColumnDescription.prototype, "editorTextField", {
|
|
73
73
|
get: function () {
|
|
74
|
-
return this.
|
|
74
|
+
return this.fm;
|
|
75
75
|
},
|
|
76
76
|
set: function (a) {
|
|
77
|
-
this.
|
|
77
|
+
this.fm = a;
|
|
78
78
|
this.g("EditorTextField");
|
|
79
79
|
},
|
|
80
80
|
enumerable: false,
|
|
@@ -82,10 +82,10 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
82
82
|
});
|
|
83
83
|
Object.defineProperty(ImageColumnDescription.prototype, "editorValueField", {
|
|
84
84
|
get: function () {
|
|
85
|
-
return this.
|
|
85
|
+
return this.fo;
|
|
86
86
|
},
|
|
87
87
|
set: function (a) {
|
|
88
|
-
this.
|
|
88
|
+
this.fo = a;
|
|
89
89
|
this.g("EditorValueField");
|
|
90
90
|
},
|
|
91
91
|
enumerable: false,
|
|
@@ -93,6 +93,7 @@ var ImageColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
93
93
|
});
|
|
94
94
|
ImageColumnDescription.$t = markType(ImageColumnDescription, 'ImageColumnDescription', DataGridColumnDescription.$);
|
|
95
95
|
ImageColumnDescription.__canMarshalByValue1 = true;
|
|
96
|
+
ImageColumnDescription.__marshalByValueAlias1 = "ImageColumn";
|
|
96
97
|
return ImageColumnDescription;
|
|
97
98
|
}(DataGridColumnDescription));
|
|
98
99
|
export { ImageColumnDescription };
|
|
@@ -14,22 +14,22 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(NumericColumnDescription, _super);
|
|
15
15
|
function NumericColumnDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.fz = null;
|
|
18
17
|
_this.f1 = null;
|
|
19
|
-
_this.
|
|
18
|
+
_this.f3 = null;
|
|
20
19
|
_this.f2 = null;
|
|
21
|
-
_this.
|
|
20
|
+
_this.f4 = null;
|
|
22
21
|
_this.fo = 0;
|
|
23
22
|
_this.fp = 0;
|
|
24
|
-
_this.
|
|
25
|
-
_this.
|
|
26
|
-
_this.
|
|
23
|
+
_this.fq = 0;
|
|
24
|
+
_this.fm = false;
|
|
25
|
+
_this.f0 = null;
|
|
26
|
+
_this.fh = null;
|
|
27
|
+
_this.fz = null;
|
|
27
28
|
_this.fx = null;
|
|
28
29
|
_this.fv = null;
|
|
29
|
-
_this.
|
|
30
|
-
_this.fi = null;
|
|
31
|
-
_this.fu = null;
|
|
30
|
+
_this.fj = null;
|
|
32
31
|
_this.fw = null;
|
|
32
|
+
_this.fy = null;
|
|
33
33
|
return _this;
|
|
34
34
|
}
|
|
35
35
|
NumericColumnDescription.prototype.get_type = function () {
|
|
@@ -37,10 +37,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(NumericColumnDescription.prototype, "negativePrefix", {
|
|
39
39
|
get: function () {
|
|
40
|
-
return this.
|
|
40
|
+
return this.f1;
|
|
41
41
|
},
|
|
42
42
|
set: function (a) {
|
|
43
|
-
this.
|
|
43
|
+
this.f1 = a;
|
|
44
44
|
this.g("NegativePrefix");
|
|
45
45
|
},
|
|
46
46
|
enumerable: false,
|
|
@@ -48,10 +48,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
48
48
|
});
|
|
49
49
|
Object.defineProperty(NumericColumnDescription.prototype, "positivePrefix", {
|
|
50
50
|
get: function () {
|
|
51
|
-
return this.
|
|
51
|
+
return this.f3;
|
|
52
52
|
},
|
|
53
53
|
set: function (a) {
|
|
54
|
-
this.
|
|
54
|
+
this.f3 = a;
|
|
55
55
|
this.g("PositivePrefix");
|
|
56
56
|
},
|
|
57
57
|
enumerable: false,
|
|
@@ -59,10 +59,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
59
59
|
});
|
|
60
60
|
Object.defineProperty(NumericColumnDescription.prototype, "negativeSuffix", {
|
|
61
61
|
get: function () {
|
|
62
|
-
return this.
|
|
62
|
+
return this.f2;
|
|
63
63
|
},
|
|
64
64
|
set: function (a) {
|
|
65
|
-
this.
|
|
65
|
+
this.f2 = a;
|
|
66
66
|
this.g("NegativeSuffix");
|
|
67
67
|
},
|
|
68
68
|
enumerable: false,
|
|
@@ -70,10 +70,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
70
70
|
});
|
|
71
71
|
Object.defineProperty(NumericColumnDescription.prototype, "positiveSuffix", {
|
|
72
72
|
get: function () {
|
|
73
|
-
return this.
|
|
73
|
+
return this.f4;
|
|
74
74
|
},
|
|
75
75
|
set: function (a) {
|
|
76
|
-
this.
|
|
76
|
+
this.f4 = a;
|
|
77
77
|
this.g("PositiveSuffix");
|
|
78
78
|
},
|
|
79
79
|
enumerable: false,
|
|
@@ -81,10 +81,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81
81
|
});
|
|
82
82
|
Object.defineProperty(NumericColumnDescription.prototype, "maxFractionDigits", {
|
|
83
83
|
get: function () {
|
|
84
|
-
return this.
|
|
84
|
+
return this.fo;
|
|
85
85
|
},
|
|
86
86
|
set: function (a) {
|
|
87
|
-
this.
|
|
87
|
+
this.fo = a;
|
|
88
88
|
this.g("MaxFractionDigits");
|
|
89
89
|
},
|
|
90
90
|
enumerable: false,
|
|
@@ -92,10 +92,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
92
92
|
});
|
|
93
93
|
Object.defineProperty(NumericColumnDescription.prototype, "minFractionDigits", {
|
|
94
94
|
get: function () {
|
|
95
|
-
return this.
|
|
95
|
+
return this.fp;
|
|
96
96
|
},
|
|
97
97
|
set: function (a) {
|
|
98
|
-
this.
|
|
98
|
+
this.fp = a;
|
|
99
99
|
this.g("MinFractionDigits");
|
|
100
100
|
},
|
|
101
101
|
enumerable: false,
|
|
@@ -103,10 +103,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
103
103
|
});
|
|
104
104
|
Object.defineProperty(NumericColumnDescription.prototype, "minIntegerDigits", {
|
|
105
105
|
get: function () {
|
|
106
|
-
return this.
|
|
106
|
+
return this.fq;
|
|
107
107
|
},
|
|
108
108
|
set: function (a) {
|
|
109
|
-
this.
|
|
109
|
+
this.fq = a;
|
|
110
110
|
this.g("MinIntegerDigits");
|
|
111
111
|
},
|
|
112
112
|
enumerable: false,
|
|
@@ -114,10 +114,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
114
114
|
});
|
|
115
115
|
Object.defineProperty(NumericColumnDescription.prototype, "showGroupingSeparator", {
|
|
116
116
|
get: function () {
|
|
117
|
-
return this.
|
|
117
|
+
return this.fm;
|
|
118
118
|
},
|
|
119
119
|
set: function (a) {
|
|
120
|
-
this.
|
|
120
|
+
this.fm = a;
|
|
121
121
|
this.g("ShowGroupingSeparator");
|
|
122
122
|
},
|
|
123
123
|
enumerable: false,
|
|
@@ -125,10 +125,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
125
125
|
});
|
|
126
126
|
Object.defineProperty(NumericColumnDescription.prototype, "formatString", {
|
|
127
127
|
get: function () {
|
|
128
|
-
return this.
|
|
128
|
+
return this.f0;
|
|
129
129
|
},
|
|
130
130
|
set: function (a) {
|
|
131
|
-
this.
|
|
131
|
+
this.f0 = a;
|
|
132
132
|
this.g("FormatString");
|
|
133
133
|
},
|
|
134
134
|
enumerable: false,
|
|
@@ -136,10 +136,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
136
136
|
});
|
|
137
137
|
Object.defineProperty(NumericColumnDescription.prototype, "formatSpecifiers", {
|
|
138
138
|
get: function () {
|
|
139
|
-
return this.
|
|
139
|
+
return this.fh;
|
|
140
140
|
},
|
|
141
141
|
set: function (a) {
|
|
142
|
-
this.
|
|
142
|
+
this.fh = a;
|
|
143
143
|
this.g("FormatSpecifiers");
|
|
144
144
|
},
|
|
145
145
|
enumerable: false,
|
|
@@ -147,10 +147,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
147
147
|
});
|
|
148
148
|
Object.defineProperty(NumericColumnDescription.prototype, "formatOverrideRef", {
|
|
149
149
|
get: function () {
|
|
150
|
-
return this.
|
|
150
|
+
return this.fz;
|
|
151
151
|
},
|
|
152
152
|
set: function (a) {
|
|
153
|
-
this.
|
|
153
|
+
this.fz = a;
|
|
154
154
|
this.g("FormatOverrideRef");
|
|
155
155
|
},
|
|
156
156
|
enumerable: false,
|
|
@@ -158,10 +158,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
158
158
|
});
|
|
159
159
|
Object.defineProperty(NumericColumnDescription.prototype, "editorType", {
|
|
160
160
|
get: function () {
|
|
161
|
-
return this.
|
|
161
|
+
return this.fx;
|
|
162
162
|
},
|
|
163
163
|
set: function (a) {
|
|
164
|
-
this.
|
|
164
|
+
this.fx = a;
|
|
165
165
|
this.g("EditorType");
|
|
166
166
|
},
|
|
167
167
|
enumerable: false,
|
|
@@ -169,10 +169,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
169
169
|
});
|
|
170
170
|
Object.defineProperty(NumericColumnDescription.prototype, "editorDataSourceRef", {
|
|
171
171
|
get: function () {
|
|
172
|
-
return this.
|
|
172
|
+
return this.fv;
|
|
173
173
|
},
|
|
174
174
|
set: function (a) {
|
|
175
|
-
this.
|
|
175
|
+
this.fv = a;
|
|
176
176
|
this.g("EditorDataSourceRef");
|
|
177
177
|
},
|
|
178
178
|
enumerable: false,
|
|
@@ -180,10 +180,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
180
180
|
});
|
|
181
181
|
Object.defineProperty(NumericColumnDescription.prototype, "editorDataSource", {
|
|
182
182
|
get: function () {
|
|
183
|
-
return this.
|
|
183
|
+
return this.fj;
|
|
184
184
|
},
|
|
185
185
|
set: function (a) {
|
|
186
|
-
this.
|
|
186
|
+
this.fj = a;
|
|
187
187
|
this.g("EditorDataSource");
|
|
188
188
|
},
|
|
189
189
|
enumerable: false,
|
|
@@ -191,10 +191,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
191
191
|
});
|
|
192
192
|
Object.defineProperty(NumericColumnDescription.prototype, "editorTextField", {
|
|
193
193
|
get: function () {
|
|
194
|
-
return this.
|
|
194
|
+
return this.fw;
|
|
195
195
|
},
|
|
196
196
|
set: function (a) {
|
|
197
|
-
this.
|
|
197
|
+
this.fw = a;
|
|
198
198
|
this.g("EditorTextField");
|
|
199
199
|
},
|
|
200
200
|
enumerable: false,
|
|
@@ -202,10 +202,10 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
202
202
|
});
|
|
203
203
|
Object.defineProperty(NumericColumnDescription.prototype, "editorValueField", {
|
|
204
204
|
get: function () {
|
|
205
|
-
return this.
|
|
205
|
+
return this.fy;
|
|
206
206
|
},
|
|
207
207
|
set: function (a) {
|
|
208
|
-
this.
|
|
208
|
+
this.fy = a;
|
|
209
209
|
this.g("EditorValueField");
|
|
210
210
|
},
|
|
211
211
|
enumerable: false,
|
|
@@ -213,6 +213,7 @@ var NumericColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
213
213
|
});
|
|
214
214
|
NumericColumnDescription.$t = markType(NumericColumnDescription, 'NumericColumnDescription', DataGridColumnDescription.$);
|
|
215
215
|
NumericColumnDescription.__canMarshalByValue1 = true;
|
|
216
|
+
NumericColumnDescription.__marshalByValueAlias1 = "NumericColumn";
|
|
216
217
|
return NumericColumnDescription;
|
|
217
218
|
}(DataGridColumnDescription));
|
|
218
219
|
export { NumericColumnDescription };
|
|
@@ -38,7 +38,7 @@ var PropertyEditorPropertyDescriptionDescriptionMetadata = /** @class */ /*@__PU
|
|
|
38
38
|
a.item("PropertyPath", "String");
|
|
39
39
|
a.item("Label", "String");
|
|
40
40
|
a.item("ValueType", "ExportedType:string:PropertyEditorValueType");
|
|
41
|
-
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");
|
|
41
|
+
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");
|
|
42
42
|
a.item("PropertyDescriptionType", "String");
|
|
43
43
|
a.item("ShouldOverrideDefaultEditor", "Boolean");
|
|
44
44
|
a.item("ElementDescriptionType", "String");
|
|
@@ -14,16 +14,16 @@ var TemplateColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
14
14
|
__extends(TemplateColumnDescription, _super);
|
|
15
15
|
function TemplateColumnDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.
|
|
18
|
-
_this.
|
|
17
|
+
_this.fk = null;
|
|
18
|
+
_this.fj = null;
|
|
19
19
|
return _this;
|
|
20
20
|
}
|
|
21
21
|
Object.defineProperty(TemplateColumnDescription.prototype, "templateRef", {
|
|
22
22
|
get: function () {
|
|
23
|
-
return this.
|
|
23
|
+
return this.fk;
|
|
24
24
|
},
|
|
25
25
|
set: function (a) {
|
|
26
|
-
this.
|
|
26
|
+
this.fk = a;
|
|
27
27
|
this.g("TemplateRef");
|
|
28
28
|
},
|
|
29
29
|
enumerable: false,
|
|
@@ -34,10 +34,10 @@ var TemplateColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
34
34
|
};
|
|
35
35
|
Object.defineProperty(TemplateColumnDescription.prototype, "cellUpdatingRef", {
|
|
36
36
|
get: function () {
|
|
37
|
-
return this.
|
|
37
|
+
return this.fj;
|
|
38
38
|
},
|
|
39
39
|
set: function (a) {
|
|
40
|
-
this.
|
|
40
|
+
this.fj = a;
|
|
41
41
|
this.g("CellUpdatingRef");
|
|
42
42
|
},
|
|
43
43
|
enumerable: false,
|
|
@@ -45,6 +45,7 @@ var TemplateColumnDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
45
45
|
});
|
|
46
46
|
TemplateColumnDescription.$t = markType(TemplateColumnDescription, 'TemplateColumnDescription', DataGridColumnDescription.$);
|
|
47
47
|
TemplateColumnDescription.__canMarshalByValue1 = true;
|
|
48
|
+
TemplateColumnDescription.__marshalByValueAlias1 = "TemplateColumn";
|
|
48
49
|
return TemplateColumnDescription;
|
|
49
50
|
}(DataGridColumnDescription));
|
|
50
51
|
export { TemplateColumnDescription };
|