igniteui-angular-inputs 18.2.0 → 19.0.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-inputs.umd.js +3069 -2910
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +26 -26
- package/esm2015/lib/ButtonView_combined.js +1716 -1662
- package/esm2015/lib/CalendarView_combined.js +312 -298
- package/esm2015/lib/IconViewType.js +11 -0
- package/esm2015/lib/IconView_combined.js +462 -432
- package/esm2015/lib/InputGroupView_combined.js +115 -93
- package/esm2015/lib/MultiSliderBridge.js +14 -14
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +4 -4
- package/esm2015/lib/XButtonBridge.js +39 -35
- package/esm2015/lib/XButtonGroupBridge.js +2 -2
- package/esm2015/lib/XCheckboxBridge.js +8 -8
- package/esm2015/lib/XComponentBridge.js +1 -1
- package/esm2015/lib/XIconBridge.js +25 -23
- package/esm2015/lib/XInputBridge.js +16 -16
- package/esm2015/lib/XPopupBridge.js +5 -3
- package/esm2015/lib/igx-x-button-component.js +396 -385
- package/esm2015/lib/igx-x-icon-component.js +63 -63
- package/esm2015/public_api.js +1 -0
- package/esm5/lib/ButtonGroupView_combined.js +26 -26
- package/esm5/lib/ButtonView_combined.js +1583 -1525
- package/esm5/lib/CalendarView_combined.js +312 -298
- package/esm5/lib/IconViewType.js +11 -0
- package/esm5/lib/IconView_combined.js +449 -419
- package/esm5/lib/InputGroupView_combined.js +115 -93
- package/esm5/lib/MultiSliderBridge.js +14 -14
- package/esm5/lib/NativeUIXInputsFactory_combined.js +4 -4
- package/esm5/lib/XButtonBridge.js +39 -35
- package/esm5/lib/XButtonGroupBridge.js +2 -2
- package/esm5/lib/XCheckboxBridge.js +8 -8
- package/esm5/lib/XComponentBridge.js +1 -1
- package/esm5/lib/XIconBridge.js +25 -23
- package/esm5/lib/XInputBridge.js +16 -16
- package/esm5/lib/XPopupBridge.js +5 -3
- package/esm5/lib/igx-x-button-component.js +400 -385
- package/esm5/lib/igx-x-icon-component.js +63 -63
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-angular-inputs.js +3204 -3054
- package/fesm5/igniteui-angular-inputs.js +3070 -2912
- package/lib/ButtonView_combined.d.ts +513 -504
- package/lib/CalendarView_combined.d.ts +38 -35
- package/lib/IconViewType.d.ts +16 -0
- package/lib/IconView_combined.d.ts +115 -111
- package/lib/InputGroupView_combined.d.ts +28 -26
- package/lib/igx-x-button-component.d.ts +7 -1
- package/package.json +5 -5
- 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.
|
|
78
|
+
return this.i.m;
|
|
79
79
|
}
|
|
80
80
|
set baseTheme(v) {
|
|
81
|
-
this.i.
|
|
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.
|
|
87
|
+
return brushToString(this.i.c1);
|
|
88
88
|
}
|
|
89
89
|
set actualFill(v) {
|
|
90
|
-
this.i.
|
|
90
|
+
this.i.c1 = 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.
|
|
96
|
+
return brushToString(this.i.c2);
|
|
97
97
|
}
|
|
98
98
|
set actualStroke(v) {
|
|
99
|
-
this.i.
|
|
99
|
+
this.i.c2 = 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.
|
|
105
|
+
return brushToString(this.i.c3);
|
|
106
106
|
}
|
|
107
107
|
set actualTextColor(v) {
|
|
108
|
-
this.i.
|
|
108
|
+
this.i.c3 = 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.
|
|
114
|
+
return this.i.ai;
|
|
115
115
|
}
|
|
116
116
|
set actualStrokeWidth(v) {
|
|
117
|
-
this.i.
|
|
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.
|
|
132
|
+
return brushToString(this.i.dh);
|
|
133
133
|
}
|
|
134
134
|
set stroke(v) {
|
|
135
|
-
this.i.
|
|
135
|
+
this.i.dh = 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.
|
|
141
|
+
return this.i.ao;
|
|
142
142
|
}
|
|
143
143
|
set strokeWidth(v) {
|
|
144
|
-
this.i.
|
|
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.
|
|
150
|
+
return brushToString(this.i.di);
|
|
151
151
|
}
|
|
152
152
|
set textColor(v) {
|
|
153
|
-
this.i.
|
|
153
|
+
this.i.di = 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.
|
|
159
|
+
return brushToString(this.i.da);
|
|
160
160
|
}
|
|
161
161
|
set hoverFill(v) {
|
|
162
|
-
this.i.
|
|
162
|
+
this.i.da = 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.
|
|
168
|
+
return brushToString(this.i.db);
|
|
169
169
|
}
|
|
170
170
|
set hoverStroke(v) {
|
|
171
|
-
this.i.
|
|
171
|
+
this.i.db = 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.
|
|
177
|
+
return this.i.am;
|
|
178
178
|
}
|
|
179
179
|
set hoverStrokeThickness(v) {
|
|
180
|
-
this.i.
|
|
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.
|
|
186
|
+
return brushToString(this.i.dc);
|
|
187
187
|
}
|
|
188
188
|
set hoverTextColor(v) {
|
|
189
|
-
this.i.
|
|
189
|
+
this.i.dc = 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.
|
|
223
|
+
return brushToString(this.i.dd);
|
|
224
224
|
}
|
|
225
225
|
set primaryFillColor(v) {
|
|
226
|
-
this.i.
|
|
226
|
+
this.i.dd = 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.
|
|
236
|
+
return brushToString(this.i.de);
|
|
237
237
|
}
|
|
238
238
|
set primaryStrokeColor(v) {
|
|
239
|
-
this.i.
|
|
239
|
+
this.i.de = 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.
|
|
249
|
+
return brushToString(this.i.df);
|
|
250
250
|
}
|
|
251
251
|
set secondaryFillColor(v) {
|
|
252
|
-
this.i.
|
|
252
|
+
this.i.df = 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.
|
|
262
|
+
return brushToString(this.i.dg);
|
|
263
263
|
}
|
|
264
264
|
set secondaryStrokeColor(v) {
|
|
265
|
-
this.i.
|
|
265
|
+
this.i.dg = 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.
|
|
271
|
+
return this.i.az;
|
|
272
272
|
}
|
|
273
273
|
set source(v) {
|
|
274
|
-
this.i.
|
|
274
|
+
this.i.az = 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.
|
|
280
|
+
return this.i.bc;
|
|
281
281
|
}
|
|
282
282
|
set dataURL(v) {
|
|
283
|
-
this.i.
|
|
283
|
+
this.i.bc = 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.
|
|
320
|
+
if (this.i.o == null) {
|
|
321
321
|
return null;
|
|
322
322
|
}
|
|
323
|
-
return this.i.
|
|
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.
|
|
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.
|
|
334
|
+
return this.i.bm;
|
|
335
335
|
}
|
|
336
336
|
set id(v) {
|
|
337
|
-
this.i.
|
|
337
|
+
this.i.bm = 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.
|
|
343
|
+
return this.i.av;
|
|
344
344
|
}
|
|
345
345
|
set tabIndex(v) {
|
|
346
|
-
this.i.
|
|
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.
|
|
352
|
+
return this.i.a9;
|
|
353
353
|
}
|
|
354
354
|
set ariaLabel(v) {
|
|
355
|
-
this.i.
|
|
355
|
+
this.i.a9 = 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.
|
|
361
|
+
return this.i.v;
|
|
362
362
|
}
|
|
363
363
|
set isHover(v) {
|
|
364
|
-
this.i.
|
|
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.
|
|
376
|
+
return this.i.an;
|
|
377
377
|
}
|
|
378
378
|
set opacity(v) {
|
|
379
|
-
this.i.
|
|
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.
|
|
385
|
+
return this.i.aq;
|
|
386
386
|
}
|
|
387
387
|
set viewBoxLeft(v) {
|
|
388
|
-
this.i.
|
|
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.
|
|
394
|
+
return this.i.ar;
|
|
395
395
|
}
|
|
396
396
|
set viewBoxTop(v) {
|
|
397
|
-
this.i.
|
|
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.
|
|
403
|
+
return this.i.as;
|
|
404
404
|
}
|
|
405
405
|
set viewBoxWidth(v) {
|
|
406
|
-
this.i.
|
|
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.
|
|
412
|
+
return this.i.ap;
|
|
413
413
|
}
|
|
414
414
|
set viewBoxHeight(v) {
|
|
415
|
-
this.i.
|
|
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.
|
|
421
|
+
return this.i.at;
|
|
422
422
|
}
|
|
423
423
|
set width(v) {
|
|
424
|
-
this.i.
|
|
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.
|
|
430
|
+
return this.i.al;
|
|
431
431
|
}
|
|
432
432
|
set height(v) {
|
|
433
|
-
this.i.
|
|
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.
|
|
507
|
+
let iv = this.i.ay();
|
|
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.
|
|
515
|
+
let iv = this.i.be();
|
|
516
516
|
return (iv);
|
|
517
517
|
}
|
|
518
518
|
_runInZone(act) {
|
package/esm2015/public_api.js
CHANGED
|
@@ -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';
|
|
@@ -187,14 +187,14 @@ var ButtonGroupView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
187
187
|
};
|
|
188
188
|
ButtonGroupView.prototype.x = function (a) {
|
|
189
189
|
if (this.a.k == 0) {
|
|
190
|
-
a.
|
|
191
|
-
a.
|
|
192
|
-
a.
|
|
190
|
+
a.f0 = "flex";
|
|
191
|
+
a.g4 = "row";
|
|
192
|
+
a.fb = "center";
|
|
193
193
|
}
|
|
194
194
|
else {
|
|
195
|
-
a.
|
|
196
|
-
a.
|
|
197
|
-
a.
|
|
195
|
+
a.f0 = "flex";
|
|
196
|
+
a.g4 = "column";
|
|
197
|
+
a.fb = "stretch";
|
|
198
198
|
}
|
|
199
199
|
};
|
|
200
200
|
ButtonGroupView.prototype.o = function (a) {
|
|
@@ -667,27 +667,27 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
667
667
|
this.dk(b);
|
|
668
668
|
}
|
|
669
669
|
b.e = 1;
|
|
670
|
-
b.
|
|
670
|
+
b.a2 = false;
|
|
671
671
|
if (this.v) {
|
|
672
672
|
b.disabled = this.disabled;
|
|
673
673
|
}
|
|
674
|
-
b.
|
|
675
|
-
b.
|
|
676
|
-
b.
|
|
677
|
-
b.
|
|
678
|
-
b.
|
|
674
|
+
b.n2 = this.e0;
|
|
675
|
+
b.bk = this.ak;
|
|
676
|
+
b.pq = this.e2;
|
|
677
|
+
b.pp = this.e1;
|
|
678
|
+
b.pr = this.e3;
|
|
679
679
|
this.view.x(b);
|
|
680
680
|
if (this.aa(b)) {
|
|
681
|
-
b.
|
|
682
|
-
b.
|
|
683
|
-
b.
|
|
684
|
-
b.
|
|
681
|
+
b.n1 = this.e7;
|
|
682
|
+
b.rg = this.fa;
|
|
683
|
+
b.qg = this.e8;
|
|
684
|
+
b.qh = this.e9;
|
|
685
685
|
}
|
|
686
686
|
else {
|
|
687
|
-
b.
|
|
688
|
-
b.
|
|
689
|
-
b.
|
|
690
|
-
b.
|
|
687
|
+
b.n1 = this.ez;
|
|
688
|
+
b.rg = this.e6;
|
|
689
|
+
b.qg = this.e4;
|
|
690
|
+
b.qh = this.e5;
|
|
691
691
|
}
|
|
692
692
|
}
|
|
693
693
|
};
|
|
@@ -701,22 +701,22 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
701
701
|
return false;
|
|
702
702
|
};
|
|
703
703
|
XButtonGroup.prototype.dk = function (a) {
|
|
704
|
-
a.
|
|
704
|
+
a.k1 = new CornerRadius(1, 0, 0, 0, 0);
|
|
705
705
|
};
|
|
706
706
|
XButtonGroup.prototype.dj = function (a) {
|
|
707
707
|
if (this.k == 1) {
|
|
708
|
-
a.
|
|
708
|
+
a.k1 = new CornerRadius(1, 0, 0, this.al, this.al);
|
|
709
709
|
}
|
|
710
710
|
else {
|
|
711
|
-
a.
|
|
711
|
+
a.k1 = new CornerRadius(1, 0, this.al, this.al, 0);
|
|
712
712
|
}
|
|
713
713
|
};
|
|
714
714
|
XButtonGroup.prototype.di = function (a) {
|
|
715
715
|
if (this.k == 1) {
|
|
716
|
-
a.
|
|
716
|
+
a.k1 = new CornerRadius(1, this.al, this.al, 0, 0);
|
|
717
717
|
}
|
|
718
718
|
else {
|
|
719
|
-
a.
|
|
719
|
+
a.k1 = new CornerRadius(1, this.al, 0, 0, this.al);
|
|
720
720
|
}
|
|
721
721
|
};
|
|
722
722
|
XButtonGroup.prototype.dh = function (a) {
|
|
@@ -1622,7 +1622,7 @@ var XButtonGroup = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1622
1622
|
a.h = this.z;
|
|
1623
1623
|
a.i = new List$1(ButtonVisualModelExport.$, 0);
|
|
1624
1624
|
for (var b = 0; b < this.buttons.count; b++) {
|
|
1625
|
-
a.i.add1(this.buttons._inner[b].
|
|
1625
|
+
a.i.add1(this.buttons._inner[b].eb());
|
|
1626
1626
|
}
|
|
1627
1627
|
return a;
|
|
1628
1628
|
};
|