igniteui-webcomponents-grids 5.3.0 → 5.4.0

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 (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
@@ -69,142 +69,142 @@ export let IgcNumericColumnComponent = /*@__PURE__*/ (() => {
69
69
  * Gets or sets the string to prefix a negative value. If FormatString is specificied this value is ignored.
70
70
  */
71
71
  get negativePrefix() {
72
- return this.i.ox;
72
+ return this.i.oy;
73
73
  }
74
74
  set negativePrefix(v) {
75
- this.i.ox = v;
75
+ this.i.oy = v;
76
76
  }
77
77
  /**
78
78
  * Gets or sets the string to prefix a positive value. If FormatString is specificied this value is ignored.
79
79
  */
80
80
  get positivePrefix() {
81
- return this.i.o1;
81
+ return this.i.o2;
82
82
  }
83
83
  set positivePrefix(v) {
84
- this.i.o1 = v;
84
+ this.i.o2 = v;
85
85
  }
86
86
  /**
87
87
  * Gets or sets the string to suffix a negative value. If FormatString is specificied this value is ignored.
88
88
  */
89
89
  get negativeSuffix() {
90
- return this.i.oz;
90
+ return this.i.o0;
91
91
  }
92
92
  set negativeSuffix(v) {
93
- this.i.oz = v;
93
+ this.i.o0 = v;
94
94
  }
95
95
  /**
96
96
  * Gets or sets the string to suffix a positive value. If FormatString is specificied this value is ignored.
97
97
  */
98
98
  get positiveSuffix() {
99
- return this.i.o3;
99
+ return this.i.o4;
100
100
  }
101
101
  set positiveSuffix(v) {
102
- this.i.o3 = v;
102
+ this.i.o4 = v;
103
103
  }
104
104
  /**
105
105
  * Gets or sets the maximum fraction digits. If FormatString is specificied this value is ignored.
106
106
  */
107
107
  get maxFractionDigits() {
108
- return this.i.oc;
108
+ return this.i.od;
109
109
  }
110
110
  set maxFractionDigits(v) {
111
- this.i.oc = +v;
112
- this._a("maxFractionDigits", this.i.oc);
111
+ this.i.od = +v;
112
+ this._a("maxFractionDigits", this.i.od);
113
113
  }
114
114
  /**
115
115
  * Gets or sets the minimum fraction digits. If FormatString is specificied this value is ignored.
116
116
  */
117
117
  get minFractionDigits() {
118
- return this.i.od;
118
+ return this.i.oe;
119
119
  }
120
120
  set minFractionDigits(v) {
121
- this.i.od = +v;
122
- this._a("minFractionDigits", this.i.od);
121
+ this.i.oe = +v;
122
+ this._a("minFractionDigits", this.i.oe);
123
123
  }
124
124
  /**
125
125
  * Gets or sets the minimum integer digits. If FormatString is specificied this value is ignored.
126
126
  */
127
127
  get minIntegerDigits() {
128
- return this.i.oe;
128
+ return this.i.of;
129
129
  }
130
130
  set minIntegerDigits(v) {
131
- this.i.oe = +v;
132
- this._a("minIntegerDigits", this.i.oe);
131
+ this.i.of = +v;
132
+ this._a("minIntegerDigits", this.i.of);
133
133
  }
134
134
  /**
135
135
  * Gets or sets whether to show a grouping separator. If FormatString is specificied this value is ignored.
136
136
  */
137
137
  get showGroupingSeparator() {
138
- return this.i.n7;
138
+ return this.i.n8;
139
139
  }
140
140
  set showGroupingSeparator(v) {
141
- this.i.n7 = ensureBool(v);
142
- this._a("showGroupingSeparator", this.i.n7);
141
+ this.i.n8 = ensureBool(v);
142
+ this._a("showGroupingSeparator", this.i.n8);
143
143
  }
144
144
  /**
145
145
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
146
146
  */
147
147
  get formatString() {
148
- return this.i.os;
148
+ return this.i.ot;
149
149
  }
150
150
  set formatString(v) {
151
- this.i.os = v;
151
+ this.i.ot = v;
152
152
  }
153
153
  get formatSpecifiers() {
154
- return this.i.n3;
154
+ return this.i.n4;
155
155
  }
156
156
  set formatSpecifiers(v) {
157
157
  if (v && !Array.isArray(v) && typeof (v) == "string") {
158
158
  const re = /\s*(?:,|\s|$)\s*/gm;
159
159
  v = v.split(re);
160
160
  }
161
- this.i.n3 = v;
161
+ this.i.n4 = v;
162
162
  }
163
163
  /**
164
164
  * Gets or sets the INTL NumericFormat object to use for formatting the date values.
165
165
  */
166
166
  get formatOverride() {
167
- return this.i.oh;
167
+ return this.i.oi;
168
168
  }
169
169
  set formatOverride(v) {
170
- this.i.oh = v;
170
+ this.i.oi = v;
171
171
  }
172
172
  /**
173
173
  * Gets or sets the editor type used for editing cells in this column.
174
174
  */
175
175
  get editorType() {
176
- return this.i.n5;
176
+ return this.i.n6;
177
177
  }
178
178
  set editorType(v) {
179
- this.i.n5 = ensureEnum(EditorType_$type, v);
180
- this._a("editorType", enumToString(EditorType_$type, this.i.n5));
179
+ this.i.n6 = ensureEnum(EditorType_$type, v);
180
+ this._a("editorType", enumToString(EditorType_$type, this.i.n6));
181
181
  }
182
182
  /**
183
183
  * Gets or sets the ComboBox data source.
184
184
  */
185
185
  get editorDataSource() {
186
- return this.i.og;
186
+ return this.i.oh;
187
187
  }
188
188
  set editorDataSource(v) {
189
- this.i.og = v;
189
+ this.i.oh = v;
190
190
  }
191
191
  /**
192
192
  * Gets or sets the ComboBox text field.
193
193
  */
194
194
  get editorTextField() {
195
- return this.i.on;
195
+ return this.i.oo;
196
196
  }
197
197
  set editorTextField(v) {
198
- this.i.on = v;
198
+ this.i.oo = v;
199
199
  }
200
200
  /**
201
201
  * Gets or sets the ComboBox value field.
202
202
  */
203
203
  get editorValueField() {
204
- return this.i.oo;
204
+ return this.i.op;
205
205
  }
206
206
  set editorValueField(v) {
207
- this.i.oo = v;
207
+ this.i.op = v;
208
208
  }
209
209
  findByName(name) {
210
210
  var baseResult = super.findByName(name);
@@ -69,38 +69,38 @@ export let IgcTextColumnComponent = /*@__PURE__*/ (() => {
69
69
  * Gets or sets the editor type used for editing cells in this column.
70
70
  */
71
71
  get editorType() {
72
- return this.i.n2;
72
+ return this.i.n3;
73
73
  }
74
74
  set editorType(v) {
75
- this.i.n2 = ensureEnum(EditorType_$type, v);
76
- this._a("editorType", enumToString(EditorType_$type, this.i.n2));
75
+ this.i.n3 = ensureEnum(EditorType_$type, v);
76
+ this._a("editorType", enumToString(EditorType_$type, this.i.n3));
77
77
  }
78
78
  /**
79
79
  * Gets or sets the ComboBox data source.
80
80
  */
81
81
  get editorDataSource() {
82
- return this.i.n3;
82
+ return this.i.n4;
83
83
  }
84
84
  set editorDataSource(v) {
85
- this.i.n3 = v;
85
+ this.i.n4 = v;
86
86
  }
87
87
  /**
88
88
  * Gets or sets the ComboBox text field.
89
89
  */
90
90
  get editorTextField() {
91
- return this.i.n5;
91
+ return this.i.n6;
92
92
  }
93
93
  set editorTextField(v) {
94
- this.i.n5 = v;
94
+ this.i.n6 = v;
95
95
  }
96
96
  /**
97
97
  * Gets or sets the ComboBox value field.
98
98
  */
99
99
  get editorValueField() {
100
- return this.i.n6;
100
+ return this.i.n7;
101
101
  }
102
102
  set editorValueField(v) {
103
- this.i.n6 = v;
103
+ this.i.n7 = v;
104
104
  }
105
105
  }
106
106
  IgcTextColumnComponent._observedAttributesIgcTextColumnComponent = null;
@@ -36,7 +36,7 @@ var CanvasTemplateCellPresenter = /** @class */ /*@__PURE__*/ (function (_super)
36
36
  this.d.db.opacity = e;
37
37
  }
38
38
  this.d.dc();
39
- c.n3(a, this.d);
39
+ c.n4(a, this.d);
40
40
  };
41
41
  CanvasTemplateCellPresenter.$t = markType(CanvasTemplateCellPresenter, 'CanvasTemplateCellPresenter', CanvasCellPresenterBase.$);
42
42
  return CanvasTemplateCellPresenter;
@@ -22,16 +22,18 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
22
22
  __extends(CheckboxListBridge, _super);
23
23
  function CheckboxListBridge(a) {
24
24
  var _this = _super.call(this, a) || this;
25
- _this.ab = null;
26
25
  _this.ac = null;
26
+ _this.af = null;
27
27
  _this.ad = null;
28
+ _this.ae = null;
28
29
  _this.u = null;
30
+ _this.x = null;
29
31
  _this.v = null;
30
32
  _this.w = null;
31
- _this.x = null;
32
- _this.z = null;
33
33
  _this.y = null;
34
34
  _this.aa = null;
35
+ _this.z = null;
36
+ _this.ab = null;
35
37
  return _this;
36
38
  }
37
39
  CheckboxListBridge.prototype.getDesiredSize = function (a, b) {
@@ -41,43 +43,48 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
41
43
  var e = a;
42
44
  switch (c) {
43
45
  case 2:
44
- e.checkedChanged = delegateCombine(e.checkedChanged, runOn(this, this.ae));
46
+ e.checkedChanged = delegateCombine(e.checkedChanged, runOn(this, this.ag));
45
47
  this.u = d;
46
- this.ab = b;
48
+ this.ac = b;
49
+ break;
50
+ case 20:
51
+ e.labelClicked = delegateCombine(e.labelClicked, runOn(this, this.al));
52
+ this.x = d;
53
+ this.af = b;
47
54
  break;
48
55
  case 18:
49
- e.selectedKeyAdded = delegateCombine(e.selectedKeyAdded, runOn(this, this.ag));
56
+ e.selectedKeyAdded = delegateCombine(e.selectedKeyAdded, runOn(this, this.ai));
50
57
  this.v = d;
51
- this.ac = b;
58
+ this.ad = b;
52
59
  break;
53
60
  case 19:
54
- e.selectedKeyRemoved = delegateCombine(e.selectedKeyRemoved, runOn(this, this.ah));
61
+ e.selectedKeyRemoved = delegateCombine(e.selectedKeyRemoved, runOn(this, this.aj));
55
62
  this.w = d;
56
- this.ad = b;
57
- break;
58
- case 21:
59
- e.indexTypeChanged = delegateCombine(e.indexTypeChanged, runOn(this, this.af));
60
- this.x = d;
61
- this.z = b;
63
+ this.ae = b;
62
64
  break;
63
- case 25:
64
- e.keysCleared = delegateCombine(e.keysCleared, runOn(this, this.ai));
65
+ case 22:
66
+ e.indexTypeChanged = delegateCombine(e.indexTypeChanged, runOn(this, this.ah));
65
67
  this.y = d;
66
68
  this.aa = b;
67
69
  break;
70
+ case 26:
71
+ e.keysCleared = delegateCombine(e.keysCleared, runOn(this, this.ak));
72
+ this.z = d;
73
+ this.ab = b;
74
+ break;
68
75
  }
69
76
  };
70
- CheckboxListBridge.prototype.ai = function (a, b) {
71
- if (this.y != null) {
72
- this.y(this.aa, ((function () {
77
+ CheckboxListBridge.prototype.ak = function (a, b) {
78
+ if (this.z != null) {
79
+ this.z(this.ab, ((function () {
73
80
  var $ret = new NativeUICheckboxListKeysClearedEventArgs();
74
81
  return $ret;
75
82
  })()));
76
83
  }
77
84
  };
78
- CheckboxListBridge.prototype.af = function (a, b) {
79
- if (this.x != null) {
80
- this.x(this.z, ((function () {
85
+ CheckboxListBridge.prototype.ah = function (a, b) {
86
+ if (this.y != null) {
87
+ this.y(this.aa, ((function () {
81
88
  var $ret = new NativeUICheckboxListIndexTypeChangedEventArgs();
82
89
  $ret.b = b.b;
83
90
  $ret.a = b.a;
@@ -89,31 +96,36 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
89
96
  var e = a;
90
97
  switch (c) {
91
98
  case 2:
92
- e.checkedChanged = delegateRemove(e.checkedChanged, runOn(this, this.ae));
99
+ e.checkedChanged = delegateRemove(e.checkedChanged, runOn(this, this.ag));
93
100
  this.u = null;
94
- this.ab = null;
101
+ this.ac = null;
102
+ break;
103
+ case 20:
104
+ e.labelClicked = delegateRemove(e.labelClicked, runOn(this, this.al));
105
+ this.x = null;
106
+ this.af = null;
95
107
  break;
96
108
  case 18:
97
- e.selectedKeyAdded = delegateRemove(e.selectedKeyAdded, runOn(this, this.ag));
109
+ e.selectedKeyAdded = delegateRemove(e.selectedKeyAdded, runOn(this, this.ai));
98
110
  this.v = null;
99
- this.ac = null;
111
+ this.ad = null;
100
112
  break;
101
113
  case 19:
102
- e.selectedKeyRemoved = delegateRemove(e.selectedKeyRemoved, runOn(this, this.ah));
114
+ e.selectedKeyRemoved = delegateRemove(e.selectedKeyRemoved, runOn(this, this.aj));
103
115
  this.w = null;
104
- this.ad = null;
116
+ this.ae = null;
105
117
  break;
106
- case 21:
107
- e.indexTypeChanged = delegateRemove(e.indexTypeChanged, runOn(this, this.af));
108
- this.x = null;
109
- this.z = null;
118
+ case 22:
119
+ e.indexTypeChanged = delegateRemove(e.indexTypeChanged, runOn(this, this.ah));
120
+ this.y = null;
121
+ this.aa = null;
110
122
  break;
111
123
  }
112
124
  };
113
- CheckboxListBridge.prototype.ae = function (a, b) {
125
+ CheckboxListBridge.prototype.ag = function (a, b) {
114
126
  var c = a;
115
127
  if (this.u != null) {
116
- this.u(this.ab, ((function () {
128
+ this.u(this.ac, ((function () {
117
129
  var $ret = new NativeUICheckboxListChangeEventArgs();
118
130
  $ret.c = b.c;
119
131
  $ret.b = b.b;
@@ -122,10 +134,21 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
122
134
  })()));
123
135
  }
124
136
  };
125
- CheckboxListBridge.prototype.ag = function (a, b) {
137
+ CheckboxListBridge.prototype.al = function (a, b) {
138
+ if (this.x != null) {
139
+ this.x(this.af, ((function () {
140
+ var $ret = new NativeUICheckboxListChangeEventArgs();
141
+ $ret.c = b.c;
142
+ $ret.b = b.b;
143
+ $ret.a = b.a;
144
+ return $ret;
145
+ })()));
146
+ }
147
+ };
148
+ CheckboxListBridge.prototype.ai = function (a, b) {
126
149
  var c = a;
127
150
  if (this.v != null) {
128
- this.v(this.ac, ((function () {
151
+ this.v(this.ad, ((function () {
129
152
  var $ret = new NativeUICheckboxListChangeEventArgs();
130
153
  $ret.c = b.c;
131
154
  $ret.b = b.b;
@@ -134,10 +157,10 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
134
157
  })()));
135
158
  }
136
159
  };
137
- CheckboxListBridge.prototype.ah = function (a, b) {
160
+ CheckboxListBridge.prototype.aj = function (a, b) {
138
161
  var c = a;
139
162
  if (this.w != null) {
140
- this.w(this.ad, ((function () {
163
+ this.w(this.ae, ((function () {
141
164
  var $ret = new NativeUICheckboxListChangeEventArgs();
142
165
  $ret.c = b.c;
143
166
  $ret.b = b.b;
@@ -162,9 +185,12 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
162
185
  d.dataMemberPath = c;
163
186
  break;
164
187
  case 77:
188
+ d.subtitleMemberPath = c;
189
+ break;
190
+ case 79:
165
191
  d.showSelectAll = c;
166
192
  break;
167
- case 78:
193
+ case 80:
168
194
  d.primaryKey = c;
169
195
  break;
170
196
  case 1:
@@ -179,15 +205,30 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
179
205
  case 24:
180
206
  d.rowHoverBackgroundColor = c;
181
207
  break;
182
- case 79:
208
+ case 81:
183
209
  d.searchIconColor = c;
184
210
  break;
185
- case 80:
211
+ case 82:
186
212
  d.searchTextColor = c;
187
213
  break;
188
- case 97:
214
+ case 99:
189
215
  d.indexType = EnumUtil.getEnumValue(NativeUICheckboxListIndexType_$type, c);
190
216
  break;
217
+ case 113:
218
+ d.checkboxAlignedRight = c;
219
+ break;
220
+ case 114:
221
+ d.labelClickTriggersChange = c;
222
+ break;
223
+ case 115:
224
+ d.dataLegendTarget = c;
225
+ break;
226
+ case 78:
227
+ d.propertyTypeMemberPath = c;
228
+ break;
229
+ case 17:
230
+ d.checkboxCornerRadius = c;
231
+ break;
191
232
  }
192
233
  };
193
234
  CheckboxListBridge.prototype.getValue = function (a, b) {
@@ -197,15 +238,21 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
197
238
  case 8: return c.itemsSource;
198
239
  case 75: return c.selectedMemberPath;
199
240
  case 76: return c.dataMemberPath;
200
- case 77: return c.showSelectAll;
201
- case 78: return c.primaryKey;
241
+ case 77: return c.subtitleMemberPath;
242
+ case 79: return c.showSelectAll;
243
+ case 80: return c.primaryKey;
202
244
  case 1: return enumGetBox(ControlDisplayDensity_$type, c.density);
203
245
  case 18: return enumGetBox(BaseControlTheme_$type, c.baseTheme);
204
246
  case 33: return c.textColor;
205
247
  case 24: return c.rowHoverBackgroundColor;
206
- case 79: return c.searchIconColor;
207
- case 80: return c.searchTextColor;
208
- case 97: return enumGetBox(CheckboxListExternalIndexType_$type, c.indexType);
248
+ case 81: return c.searchIconColor;
249
+ case 82: return c.searchTextColor;
250
+ case 99: return enumGetBox(CheckboxListExternalIndexType_$type, c.indexType);
251
+ case 113: return c.checkboxAlignedRight;
252
+ case 114: return c.labelClickTriggersChange;
253
+ case 115: return c.dataLegendTarget;
254
+ case 78: return c.propertyTypeMemberPath;
255
+ case 17: return c.checkboxCornerRadius;
209
256
  }
210
257
  return null;
211
258
  };
@@ -225,9 +272,10 @@ var CheckboxListBridge = /** @class */ /*@__PURE__*/ (function (_super) {
225
272
  var c = a;
226
273
  c.removeSelectedKeyAt(b);
227
274
  };
228
- CheckboxListBridge.prototype.ak = function (a) {
275
+ CheckboxListBridge.prototype.refresh = function (a) {
276
+ a.refresh();
229
277
  };
230
- CheckboxListBridge.prototype.aj = function (a, b) {
278
+ CheckboxListBridge.prototype.am = function (a, b) {
231
279
  };
232
280
  CheckboxListBridge.$t = markType(CheckboxListBridge, 'CheckboxListBridge', XComponentBridge.$, [INativeUICheckboxListBridge_$type]);
233
281
  return CheckboxListBridge;