igniteui-angular-inputs 19.0.0 → 19.1.0-beta.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 (57) hide show
  1. package/bundles/igniteui-angular-inputs.umd.js +3805 -3574
  2. package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +74 -74
  4. package/esm2015/lib/ButtonView_combined.js +1890 -1834
  5. package/esm2015/lib/CalendarView_combined.js +322 -308
  6. package/esm2015/lib/CheckboxView_combined.js +25 -25
  7. package/esm2015/lib/DatePickerView_combined.js +6 -6
  8. package/esm2015/lib/IconViewType.js +11 -0
  9. package/esm2015/lib/IconView_combined.js +529 -451
  10. package/esm2015/lib/InputGroupView_combined.js +433 -404
  11. package/esm2015/lib/MultiSliderBridge.js +14 -14
  12. package/esm2015/lib/NativeUIXInputsFactory_combined.js +43 -43
  13. package/esm2015/lib/RippleView_combined.js +2 -2
  14. package/esm2015/lib/XButtonBridge.js +39 -35
  15. package/esm2015/lib/XButtonGroupBridge.js +2 -2
  16. package/esm2015/lib/XCheckboxBridge.js +8 -8
  17. package/esm2015/lib/XComponentBridge.js +1 -1
  18. package/esm2015/lib/XIconBridge.js +25 -23
  19. package/esm2015/lib/XInputBridge.js +22 -22
  20. package/esm2015/lib/XPopupBridge.js +15 -5
  21. package/esm2015/lib/igx-x-button-component.js +396 -385
  22. package/esm2015/lib/igx-x-icon-component.js +63 -63
  23. package/esm2015/lib/igx-x-label-component.js +40 -40
  24. package/esm2015/public_api.js +1 -0
  25. package/esm5/lib/ButtonGroupView_combined.js +74 -74
  26. package/esm5/lib/ButtonView_combined.js +1756 -1696
  27. package/esm5/lib/CalendarView_combined.js +322 -308
  28. package/esm5/lib/CheckboxView_combined.js +25 -25
  29. package/esm5/lib/DatePickerView_combined.js +6 -6
  30. package/esm5/lib/IconViewType.js +11 -0
  31. package/esm5/lib/IconView_combined.js +515 -429
  32. package/esm5/lib/InputGroupView_combined.js +426 -397
  33. package/esm5/lib/MultiSliderBridge.js +14 -14
  34. package/esm5/lib/NativeUIXInputsFactory_combined.js +43 -43
  35. package/esm5/lib/RippleView_combined.js +2 -2
  36. package/esm5/lib/XButtonBridge.js +39 -35
  37. package/esm5/lib/XButtonGroupBridge.js +2 -2
  38. package/esm5/lib/XCheckboxBridge.js +8 -8
  39. package/esm5/lib/XComponentBridge.js +1 -1
  40. package/esm5/lib/XIconBridge.js +25 -23
  41. package/esm5/lib/XInputBridge.js +22 -22
  42. package/esm5/lib/XPopupBridge.js +15 -5
  43. package/esm5/lib/igx-x-button-component.js +400 -385
  44. package/esm5/lib/igx-x-icon-component.js +63 -63
  45. package/esm5/lib/igx-x-label-component.js +40 -40
  46. package/esm5/public_api.js +1 -0
  47. package/fesm2015/igniteui-angular-inputs.js +3962 -3748
  48. package/fesm5/igniteui-angular-inputs.js +3806 -3576
  49. package/lib/ButtonView_combined.d.ts +513 -504
  50. package/lib/CalendarView_combined.d.ts +38 -35
  51. package/lib/IconViewType.d.ts +16 -0
  52. package/lib/IconView_combined.d.ts +139 -125
  53. package/lib/InputGroupView_combined.d.ts +103 -100
  54. package/lib/XPopupBridge.d.ts +1 -0
  55. package/lib/igx-x-button-component.d.ts +7 -1
  56. package/package.json +2 -2
  57. package/public_api.d.ts +1 -0
@@ -75,46 +75,46 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
75
75
  * Gets or sets the base built in theme to use for the button.
76
76
  */
77
77
  get baseTheme() {
78
- return this.i.k;
78
+ return this.i.m;
79
79
  }
80
80
  set baseTheme(v) {
81
- this.i.k = ensureEnum(BaseControlTheme_$type, v);
81
+ this.i.m = ensureEnum(BaseControlTheme_$type, v);
82
82
  }
83
83
  /**
84
84
  * Gets the fill color currently used by the icon.
85
85
  */
86
86
  get actualFill() {
87
- return brushToString(this.i.cz);
87
+ return brushToString(this.i.c8);
88
88
  }
89
89
  set actualFill(v) {
90
- this.i.cz = stringToBrush(v);
90
+ this.i.c8 = stringToBrush(v);
91
91
  }
92
92
  /**
93
93
  * Gets the stroke color currently used by the icon.
94
94
  */
95
95
  get actualStroke() {
96
- return brushToString(this.i.c0);
96
+ return brushToString(this.i.c9);
97
97
  }
98
98
  set actualStroke(v) {
99
- this.i.c0 = stringToBrush(v);
99
+ this.i.c9 = stringToBrush(v);
100
100
  }
101
101
  /**
102
102
  * Gets the text color currently used by the icon.
103
103
  */
104
104
  get actualTextColor() {
105
- return brushToString(this.i.c1);
105
+ return brushToString(this.i.da);
106
106
  }
107
107
  set actualTextColor(v) {
108
- this.i.c1 = stringToBrush(v);
108
+ this.i.da = stringToBrush(v);
109
109
  }
110
110
  /**
111
111
  * Gets the stroke width currently used by the icon.
112
112
  */
113
113
  get actualStrokeWidth() {
114
- return this.i.ag;
114
+ return this.i.ai;
115
115
  }
116
116
  set actualStrokeWidth(v) {
117
- this.i.ag = +v;
117
+ this.i.ai = +v;
118
118
  }
119
119
  /**
120
120
  * Gets or sets the fill color to use for the icon.
@@ -129,64 +129,64 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
129
129
  * Gets or sets the stroke color to use for the icon.
130
130
  */
131
131
  get stroke() {
132
- return brushToString(this.i.df);
132
+ return brushToString(this.i.dp);
133
133
  }
134
134
  set stroke(v) {
135
- this.i.df = stringToBrush(v);
135
+ this.i.dp = stringToBrush(v);
136
136
  }
137
137
  /**
138
138
  * Gets or sets the stroke thickness to use for the icon.
139
139
  */
140
140
  get strokeWidth() {
141
- return this.i.am;
141
+ return this.i.ao;
142
142
  }
143
143
  set strokeWidth(v) {
144
- this.i.am = +v;
144
+ this.i.ao = +v;
145
145
  }
146
146
  /**
147
147
  * Gets or sets the text color to use for the icon.
148
148
  */
149
149
  get textColor() {
150
- return brushToString(this.i.dg);
150
+ return brushToString(this.i.dq);
151
151
  }
152
152
  set textColor(v) {
153
- this.i.dg = stringToBrush(v);
153
+ this.i.dq = stringToBrush(v);
154
154
  }
155
155
  /**
156
156
  * Gets or sets the fill color to use when the icon is hovered.
157
157
  */
158
158
  get hoverFill() {
159
- return brushToString(this.i.c8);
159
+ return brushToString(this.i.dh);
160
160
  }
161
161
  set hoverFill(v) {
162
- this.i.c8 = stringToBrush(v);
162
+ this.i.dh = stringToBrush(v);
163
163
  }
164
164
  /**
165
165
  * Gets or sets the stroke color to use when the icon is hovered.
166
166
  */
167
167
  get hoverStroke() {
168
- return brushToString(this.i.c9);
168
+ return brushToString(this.i.di);
169
169
  }
170
170
  set hoverStroke(v) {
171
- this.i.c9 = stringToBrush(v);
171
+ this.i.di = stringToBrush(v);
172
172
  }
173
173
  /**
174
174
  * Gets or sets the stroke thickness to use when the icon is hovered.
175
175
  */
176
176
  get hoverStrokeThickness() {
177
- return this.i.ak;
177
+ return this.i.am;
178
178
  }
179
179
  set hoverStrokeThickness(v) {
180
- this.i.ak = +v;
180
+ this.i.am = +v;
181
181
  }
182
182
  /**
183
183
  * Gets or sets the text color to use when the icon is hovered.
184
184
  */
185
185
  get hoverTextColor() {
186
- return brushToString(this.i.da);
186
+ return brushToString(this.i.dj);
187
187
  }
188
188
  set hoverTextColor(v) {
189
- this.i.da = stringToBrush(v);
189
+ this.i.dj = stringToBrush(v);
190
190
  }
191
191
  /**
192
192
  * Gets or sets a collection of fill colors to use in the icon.
@@ -220,10 +220,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
220
220
  * class.
221
221
  */
222
222
  get primaryFillColor() {
223
- return brushToString(this.i.db);
223
+ return brushToString(this.i.dk);
224
224
  }
225
225
  set primaryFillColor(v) {
226
- this.i.db = stringToBrush(v);
226
+ this.i.dk = stringToBrush(v);
227
227
  }
228
228
  /**
229
229
  * Gets or sets a primary stroke color for the icon.
@@ -233,10 +233,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
233
233
  * class.
234
234
  */
235
235
  get primaryStrokeColor() {
236
- return brushToString(this.i.dc);
236
+ return brushToString(this.i.dl);
237
237
  }
238
238
  set primaryStrokeColor(v) {
239
- this.i.dc = stringToBrush(v);
239
+ this.i.dl = stringToBrush(v);
240
240
  }
241
241
  /**
242
242
  * Gets or sets a secondary fill color for the icon.
@@ -246,10 +246,10 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
246
246
  * class.
247
247
  */
248
248
  get secondaryFillColor() {
249
- return brushToString(this.i.dd);
249
+ return brushToString(this.i.dm);
250
250
  }
251
251
  set secondaryFillColor(v) {
252
- this.i.dd = stringToBrush(v);
252
+ this.i.dm = stringToBrush(v);
253
253
  }
254
254
  /**
255
255
  * Gets or sets a secondary stroke color for the icon.
@@ -259,28 +259,28 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
259
259
  * class.
260
260
  */
261
261
  get secondaryStrokeColor() {
262
- return brushToString(this.i.de);
262
+ return brushToString(this.i.dn);
263
263
  }
264
264
  set secondaryStrokeColor(v) {
265
- this.i.de = stringToBrush(v);
265
+ this.i.dn = stringToBrush(v);
266
266
  }
267
267
  /**
268
268
  * Gets or sets the image source for the icon. Used if none of the other icon types are not used.
269
269
  */
270
270
  get source() {
271
- return this.i.ax;
271
+ return this.i.a1;
272
272
  }
273
273
  set source(v) {
274
- this.i.ax = v;
274
+ this.i.a1 = v;
275
275
  }
276
276
  /**
277
277
  * Gets or sets data url for the icon to use.
278
278
  */
279
279
  get dataURL() {
280
- return this.i.ba;
280
+ return this.i.bg;
281
281
  }
282
282
  set dataURL(v) {
283
- this.i.ba = v;
283
+ this.i.bg = v;
284
284
  }
285
285
  /**
286
286
  * Gets or sets path data for the icon to use.
@@ -317,51 +317,51 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
317
317
  * Gets or sets the use for the button.
318
318
  */
319
319
  get textStyle() {
320
- if (this.i.m == null) {
320
+ if (this.i.o == null) {
321
321
  return null;
322
322
  }
323
- return this.i.m.fontString;
323
+ return this.i.o.fontString;
324
324
  }
325
325
  set textStyle(v) {
326
326
  let fi = new FontInfo();
327
327
  fi.fontString = v;
328
- this.i.m = fi;
328
+ this.i.o = fi;
329
329
  }
330
330
  /**
331
331
  * Gets or sets the id to use for the checkbox.
332
332
  */
333
333
  get id() {
334
- return this.i.bk;
334
+ return this.i.bq;
335
335
  }
336
336
  set id(v) {
337
- this.i.bk = v;
337
+ this.i.bq = v;
338
338
  }
339
339
  /**
340
340
  * Gets or sets TabIndex to use for the checkbox.
341
341
  */
342
342
  get tabIndex() {
343
- return this.i.at;
343
+ return this.i.av;
344
344
  }
345
345
  set tabIndex(v) {
346
- this.i.at = +v;
346
+ this.i.av = +v;
347
347
  }
348
348
  /**
349
349
  * Gets or sets the value of the aria-label attribute.
350
350
  */
351
351
  get ariaLabel() {
352
- return this.i.a7;
352
+ return this.i.bb;
353
353
  }
354
354
  set ariaLabel(v) {
355
- this.i.a7 = v;
355
+ this.i.bb = v;
356
356
  }
357
357
  /**
358
358
  * Gets or sets whether the icon is hovered.
359
359
  */
360
360
  get isHover() {
361
- return this.i.t;
361
+ return this.i.v;
362
362
  }
363
363
  set isHover(v) {
364
- this.i.t = ensureBool(v);
364
+ this.i.v = ensureBool(v);
365
365
  }
366
366
  /**
367
367
  * Gets or sets whether the checkbox is disabled.
@@ -373,64 +373,64 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
373
373
  this.i.disabled = ensureBool(v);
374
374
  }
375
375
  get opacity() {
376
- return this.i.al;
376
+ return this.i.an;
377
377
  }
378
378
  set opacity(v) {
379
- this.i.al = +v;
379
+ this.i.an = +v;
380
380
  }
381
381
  /**
382
382
  * Gets or sets the viewbox left for the svg icon.
383
383
  */
384
384
  get viewBoxLeft() {
385
- return this.i.ao;
385
+ return this.i.aq;
386
386
  }
387
387
  set viewBoxLeft(v) {
388
- this.i.ao = +v;
388
+ this.i.aq = +v;
389
389
  }
390
390
  /**
391
391
  * Gets or sets the viewbox top for the svg icon.
392
392
  */
393
393
  get viewBoxTop() {
394
- return this.i.ap;
394
+ return this.i.ar;
395
395
  }
396
396
  set viewBoxTop(v) {
397
- this.i.ap = +v;
397
+ this.i.ar = +v;
398
398
  }
399
399
  /**
400
400
  * Gets or sets the viewbox width for the svg icon.
401
401
  */
402
402
  get viewBoxWidth() {
403
- return this.i.aq;
403
+ return this.i.as;
404
404
  }
405
405
  set viewBoxWidth(v) {
406
- this.i.aq = +v;
406
+ this.i.as = +v;
407
407
  }
408
408
  /**
409
409
  * Gets or sets the viewbox height for the svg icon.
410
410
  */
411
411
  get viewBoxHeight() {
412
- return this.i.an;
412
+ return this.i.ap;
413
413
  }
414
414
  set viewBoxHeight(v) {
415
- this.i.an = +v;
415
+ this.i.ap = +v;
416
416
  }
417
417
  /**
418
418
  * Gets or sets the width of the icon.
419
419
  */
420
420
  get width() {
421
- return this.i.ar;
421
+ return this.i.at;
422
422
  }
423
423
  set width(v) {
424
- this.i.ar = +v;
424
+ this.i.at = +v;
425
425
  }
426
426
  /**
427
427
  * Gets or sets the height of the icon.
428
428
  */
429
429
  get height() {
430
- return this.i.aj;
430
+ return this.i.al;
431
431
  }
432
432
  set height(v) {
433
- this.i.aj = +v;
433
+ this.i.al = +v;
434
434
  }
435
435
  findByName(name) {
436
436
  if (this.findEphemera) {
@@ -504,7 +504,7 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
504
504
 
505
505
  */
506
506
  exportVisualModel() {
507
- let iv = this.i.aw();
507
+ let iv = this.i.a0();
508
508
  return (iv);
509
509
  }
510
510
  /**
@@ -512,7 +512,7 @@ export let IgxXIconComponent = /*@__PURE__*/ (() => {
512
512
 
513
513
  */
514
514
  exportSerializedVisualModel() {
515
- let iv = this.i.bc();
515
+ let iv = this.i.bi();
516
516
  return (iv);
517
517
  }
518
518
  _runInZone(act) {
@@ -102,64 +102,64 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
102
102
  * Gets the actual color to use for the text color.
103
103
  */
104
104
  get actualTextColor() {
105
- return brushToString(this.i.c2);
105
+ return brushToString(this.i.c3);
106
106
  }
107
107
  set actualTextColor(v) {
108
- this.i.c2 = stringToBrush(v);
108
+ this.i.c3 = stringToBrush(v);
109
109
  }
110
110
  /**
111
111
  * Gets the actual color to use for the text color.
112
112
  */
113
113
  get actualHighlightTextColor() {
114
- return brushToString(this.i.cz);
114
+ return brushToString(this.i.c0);
115
115
  }
116
116
  set actualHighlightTextColor(v) {
117
- this.i.cz = stringToBrush(v);
117
+ this.i.c0 = stringToBrush(v);
118
118
  }
119
119
  /**
120
120
  * Gets the actual color to use for the text color when highlighted and hovered.
121
121
  */
122
122
  get actualHoverHighlightTextColor() {
123
- return brushToString(this.i.c0);
123
+ return brushToString(this.i.c1);
124
124
  }
125
125
  set actualHoverHighlightTextColor(v) {
126
- this.i.c0 = stringToBrush(v);
126
+ this.i.c1 = stringToBrush(v);
127
127
  }
128
128
  /**
129
129
  * Gets the actual hover color to use for the text.
130
130
  */
131
131
  get actualHoverTextColor() {
132
- return brushToString(this.i.c1);
132
+ return brushToString(this.i.c2);
133
133
  }
134
134
  set actualHoverTextColor(v) {
135
- this.i.c1 = stringToBrush(v);
135
+ this.i.c2 = stringToBrush(v);
136
136
  }
137
137
  /**
138
138
  * Gets or sets the color to use for the text.
139
139
  */
140
140
  get textColor() {
141
- return brushToString(this.i.di);
141
+ return brushToString(this.i.dj);
142
142
  }
143
143
  set textColor(v) {
144
- this.i.di = stringToBrush(v);
144
+ this.i.dj = stringToBrush(v);
145
145
  }
146
146
  /**
147
147
  * Gets or sets the color to use for the text.
148
148
  */
149
149
  get highlightTextColor() {
150
- return brushToString(this.i.df);
150
+ return brushToString(this.i.dg);
151
151
  }
152
152
  set highlightTextColor(v) {
153
- this.i.df = stringToBrush(v);
153
+ this.i.dg = stringToBrush(v);
154
154
  }
155
155
  /**
156
156
  * Gets or sets the color to use for the text.
157
157
  */
158
158
  get hoverHighlightTextColor() {
159
- return brushToString(this.i.dg);
159
+ return brushToString(this.i.dh);
160
160
  }
161
161
  set hoverHighlightTextColor(v) {
162
- this.i.dg = stringToBrush(v);
162
+ this.i.dh = stringToBrush(v);
163
163
  }
164
164
  /**
165
165
  * Gets or sets the use for the button.
@@ -179,91 +179,91 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
179
179
  * Gets or sets the color to use for the hovered text of the button regardless of type.
180
180
  */
181
181
  get hoverTextColor() {
182
- return brushToString(this.i.dh);
182
+ return brushToString(this.i.di);
183
183
  }
184
184
  set hoverTextColor(v) {
185
- this.i.dh = stringToBrush(v);
185
+ this.i.di = stringToBrush(v);
186
186
  }
187
187
  /**
188
188
  * Gets or sets the id to use for the checkbox.
189
189
  */
190
190
  get id() {
191
- return this.i.bv;
191
+ return this.i.bw;
192
192
  }
193
193
  set id(v) {
194
- this.i.bv = v;
194
+ this.i.bw = v;
195
195
  }
196
196
  /**
197
197
  * Gets or sets the id to use for the checkbox.
198
198
  */
199
199
  get display() {
200
- return this.i.bj;
200
+ return this.i.bk;
201
201
  }
202
202
  set display(v) {
203
- this.i.bj = v;
203
+ this.i.bk = v;
204
204
  }
205
205
  /**
206
206
  * Gets or sets the id to use for the checkbox.
207
207
  */
208
208
  get flexDirection() {
209
- return this.i.bm;
209
+ return this.i.bn;
210
210
  }
211
211
  set flexDirection(v) {
212
- this.i.bm = v;
212
+ this.i.bn = v;
213
213
  }
214
214
  /**
215
215
  * Gets or sets the flex-grow setting for the button.
216
216
  */
217
217
  get flexGrow() {
218
- return this.i.bo;
218
+ return this.i.bp;
219
219
  }
220
220
  set flexGrow(v) {
221
- this.i.bo = v;
221
+ this.i.bp = v;
222
222
  }
223
223
  /**
224
224
  * Gets or sets the id to use for the checkbox.
225
225
  */
226
226
  get alignItems() {
227
- return this.i.bb;
227
+ return this.i.bc;
228
228
  }
229
229
  set alignItems(v) {
230
- this.i.bb = v;
230
+ this.i.bc = v;
231
231
  }
232
232
  /**
233
233
  * Gets or sets the id to use for the checkbox.
234
234
  */
235
235
  get alignSelf() {
236
- return this.i.bd;
236
+ return this.i.be;
237
237
  }
238
238
  set alignSelf(v) {
239
- this.i.bd = v;
239
+ this.i.be = v;
240
240
  }
241
241
  /**
242
242
  * Gets or sets TabIndex to use for the checkbox.
243
243
  */
244
244
  get tabIndex() {
245
- return this.i.at;
245
+ return this.i.au;
246
246
  }
247
247
  set tabIndex(v) {
248
- this.i.at = +v;
248
+ this.i.au = +v;
249
249
  }
250
250
  /**
251
251
  * Gets or sets the for attribute to use for the label.
252
252
  */
253
253
  get for() {
254
- return this.i.bq;
254
+ return this.i.br;
255
255
  }
256
256
  set for(v) {
257
- this.i.bq = v;
257
+ this.i.br = v;
258
258
  }
259
259
  /**
260
260
  * Gets or sets the value of the aria-label attribute.
261
261
  */
262
262
  get ariaLabel() {
263
- return this.i.bf;
263
+ return this.i.bg;
264
264
  }
265
265
  set ariaLabel(v) {
266
- this.i.bf = v;
266
+ this.i.bg = v;
267
267
  }
268
268
  /**
269
269
  * Gets or sets the text for the label.
@@ -278,19 +278,19 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
278
278
  * Gets or sets whether the label is hovered.
279
279
  */
280
280
  get isHover() {
281
- return this.i.an;
281
+ return this.i.ao;
282
282
  }
283
283
  set isHover(v) {
284
- this.i.an = ensureBool(v);
284
+ this.i.ao = ensureBool(v);
285
285
  }
286
286
  /**
287
287
  * Gets or sets the value for the label.
288
288
  */
289
289
  get value() {
290
- return this.i.ar;
290
+ return this.i.as;
291
291
  }
292
292
  set value(v) {
293
- this.i.ar = ensureBool(v);
293
+ this.i.as = ensureBool(v);
294
294
  }
295
295
  /**
296
296
  * Gets or sets whether the checkbox is disabled.
@@ -312,7 +312,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
312
312
 
313
313
  */
314
314
  exportVisualModel() {
315
- let iv = this.i.av();
315
+ let iv = this.i.aw();
316
316
  return (iv);
317
317
  }
318
318
  /**
@@ -320,7 +320,7 @@ export let IgxXLabelComponent = /*@__PURE__*/ (() => {
320
320
 
321
321
  */
322
322
  exportSerializedVisualModel() {
323
- let iv = this.i.bl();
323
+ let iv = this.i.bm();
324
324
  return (iv);
325
325
  }
326
326
  }
@@ -155,6 +155,7 @@ export * from './lib/igx-input-change-event-args';
155
155
  export * from './lib/InputShiftType';
156
156
  export * from './lib/XIcon';
157
157
  export * from './lib/IconClickedEventArgs';
158
+ export * from './lib/IconViewType';
158
159
  export * from './lib/XButton';
159
160
  export * from './lib/ThemeResolver';
160
161
  export * from './lib/Theme';