igniteui-webcomponents-inputs 5.2.0 → 5.2.1-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.
- package/bundles/igniteui-webcomponents-inputs.umd.js +3252 -3096
- package/bundles/igniteui-webcomponents-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 +3 -3
- package/esm2015/lib/igc-x-button-component.js +555 -545
- package/esm2015/lib/igc-x-icon-component.js +89 -89
- 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 +3 -3
- package/esm5/lib/igc-x-button-component.js +559 -545
- package/esm5/lib/igc-x-icon-component.js +89 -89
- package/esm5/public_api.js +1 -0
- package/fesm2015/igniteui-webcomponents-inputs.js +3399 -3252
- package/fesm5/igniteui-webcomponents-inputs.js +3253 -3098
- 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/igc-x-button-component.d.ts +5 -0
- package/package.json +2 -2
- package/public_api.d.ts +1 -0
|
@@ -186,51 +186,51 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
186
186
|
* Gets or sets the base built in theme to use for the button.
|
|
187
187
|
*/
|
|
188
188
|
get baseTheme() {
|
|
189
|
-
return this.i.
|
|
189
|
+
return this.i.m;
|
|
190
190
|
}
|
|
191
191
|
set baseTheme(v) {
|
|
192
|
-
this.i.
|
|
193
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
192
|
+
this.i.m = ensureEnum(BaseControlTheme_$type, v);
|
|
193
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.m));
|
|
194
194
|
}
|
|
195
195
|
/**
|
|
196
196
|
* Gets the fill color currently used by the icon.
|
|
197
197
|
*/
|
|
198
198
|
get actualFill() {
|
|
199
|
-
return brushToString(this.i.
|
|
199
|
+
return brushToString(this.i.c1);
|
|
200
200
|
}
|
|
201
201
|
set actualFill(v) {
|
|
202
|
-
this.i.
|
|
203
|
-
this._a("actualFill", brushToString(this.i.
|
|
202
|
+
this.i.c1 = stringToBrush(v);
|
|
203
|
+
this._a("actualFill", brushToString(this.i.c1));
|
|
204
204
|
}
|
|
205
205
|
/**
|
|
206
206
|
* Gets the stroke color currently used by the icon.
|
|
207
207
|
*/
|
|
208
208
|
get actualStroke() {
|
|
209
|
-
return brushToString(this.i.
|
|
209
|
+
return brushToString(this.i.c2);
|
|
210
210
|
}
|
|
211
211
|
set actualStroke(v) {
|
|
212
|
-
this.i.
|
|
213
|
-
this._a("actualStroke", brushToString(this.i.
|
|
212
|
+
this.i.c2 = stringToBrush(v);
|
|
213
|
+
this._a("actualStroke", brushToString(this.i.c2));
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
216
|
* Gets the text color currently used by the icon.
|
|
217
217
|
*/
|
|
218
218
|
get actualTextColor() {
|
|
219
|
-
return brushToString(this.i.
|
|
219
|
+
return brushToString(this.i.c3);
|
|
220
220
|
}
|
|
221
221
|
set actualTextColor(v) {
|
|
222
|
-
this.i.
|
|
223
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
222
|
+
this.i.c3 = stringToBrush(v);
|
|
223
|
+
this._a("actualTextColor", brushToString(this.i.c3));
|
|
224
224
|
}
|
|
225
225
|
/**
|
|
226
226
|
* Gets the stroke width currently used by the icon.
|
|
227
227
|
*/
|
|
228
228
|
get actualStrokeWidth() {
|
|
229
|
-
return this.i.
|
|
229
|
+
return this.i.ai;
|
|
230
230
|
}
|
|
231
231
|
set actualStrokeWidth(v) {
|
|
232
|
-
this.i.
|
|
233
|
-
this._a("actualStrokeWidth", this.i.
|
|
232
|
+
this.i.ai = +v;
|
|
233
|
+
this._a("actualStrokeWidth", this.i.ai);
|
|
234
234
|
}
|
|
235
235
|
/**
|
|
236
236
|
* Gets or sets the fill color to use for the icon.
|
|
@@ -246,71 +246,71 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
246
246
|
* Gets or sets the stroke color to use for the icon.
|
|
247
247
|
*/
|
|
248
248
|
get stroke() {
|
|
249
|
-
return brushToString(this.i.
|
|
249
|
+
return brushToString(this.i.dh);
|
|
250
250
|
}
|
|
251
251
|
set stroke(v) {
|
|
252
|
-
this.i.
|
|
253
|
-
this._a("stroke", brushToString(this.i.
|
|
252
|
+
this.i.dh = stringToBrush(v);
|
|
253
|
+
this._a("stroke", brushToString(this.i.dh));
|
|
254
254
|
}
|
|
255
255
|
/**
|
|
256
256
|
* Gets or sets the stroke thickness to use for the icon.
|
|
257
257
|
*/
|
|
258
258
|
get strokeWidth() {
|
|
259
|
-
return this.i.
|
|
259
|
+
return this.i.ao;
|
|
260
260
|
}
|
|
261
261
|
set strokeWidth(v) {
|
|
262
|
-
this.i.
|
|
263
|
-
this._a("strokeWidth", this.i.
|
|
262
|
+
this.i.ao = +v;
|
|
263
|
+
this._a("strokeWidth", this.i.ao);
|
|
264
264
|
}
|
|
265
265
|
/**
|
|
266
266
|
* Gets or sets the text color to use for the icon.
|
|
267
267
|
*/
|
|
268
268
|
get textColor() {
|
|
269
|
-
return brushToString(this.i.
|
|
269
|
+
return brushToString(this.i.di);
|
|
270
270
|
}
|
|
271
271
|
set textColor(v) {
|
|
272
|
-
this.i.
|
|
273
|
-
this._a("textColor", brushToString(this.i.
|
|
272
|
+
this.i.di = stringToBrush(v);
|
|
273
|
+
this._a("textColor", brushToString(this.i.di));
|
|
274
274
|
}
|
|
275
275
|
/**
|
|
276
276
|
* Gets or sets the fill color to use when the icon is hovered.
|
|
277
277
|
*/
|
|
278
278
|
get hoverFill() {
|
|
279
|
-
return brushToString(this.i.
|
|
279
|
+
return brushToString(this.i.da);
|
|
280
280
|
}
|
|
281
281
|
set hoverFill(v) {
|
|
282
|
-
this.i.
|
|
283
|
-
this._a("hoverFill", brushToString(this.i.
|
|
282
|
+
this.i.da = stringToBrush(v);
|
|
283
|
+
this._a("hoverFill", brushToString(this.i.da));
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
286
|
* Gets or sets the stroke color to use when the icon is hovered.
|
|
287
287
|
*/
|
|
288
288
|
get hoverStroke() {
|
|
289
|
-
return brushToString(this.i.
|
|
289
|
+
return brushToString(this.i.db);
|
|
290
290
|
}
|
|
291
291
|
set hoverStroke(v) {
|
|
292
|
-
this.i.
|
|
293
|
-
this._a("hoverStroke", brushToString(this.i.
|
|
292
|
+
this.i.db = stringToBrush(v);
|
|
293
|
+
this._a("hoverStroke", brushToString(this.i.db));
|
|
294
294
|
}
|
|
295
295
|
/**
|
|
296
296
|
* Gets or sets the stroke thickness to use when the icon is hovered.
|
|
297
297
|
*/
|
|
298
298
|
get hoverStrokeThickness() {
|
|
299
|
-
return this.i.
|
|
299
|
+
return this.i.am;
|
|
300
300
|
}
|
|
301
301
|
set hoverStrokeThickness(v) {
|
|
302
|
-
this.i.
|
|
303
|
-
this._a("hoverStrokeThickness", this.i.
|
|
302
|
+
this.i.am = +v;
|
|
303
|
+
this._a("hoverStrokeThickness", this.i.am);
|
|
304
304
|
}
|
|
305
305
|
/**
|
|
306
306
|
* Gets or sets the text color to use when the icon is hovered.
|
|
307
307
|
*/
|
|
308
308
|
get hoverTextColor() {
|
|
309
|
-
return brushToString(this.i.
|
|
309
|
+
return brushToString(this.i.dc);
|
|
310
310
|
}
|
|
311
311
|
set hoverTextColor(v) {
|
|
312
|
-
this.i.
|
|
313
|
-
this._a("hoverTextColor", brushToString(this.i.
|
|
312
|
+
this.i.dc = stringToBrush(v);
|
|
313
|
+
this._a("hoverTextColor", brushToString(this.i.dc));
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
316
|
* Gets or sets a collection of fill colors to use in the icon.
|
|
@@ -346,11 +346,11 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
346
346
|
* class.
|
|
347
347
|
*/
|
|
348
348
|
get primaryFillColor() {
|
|
349
|
-
return brushToString(this.i.
|
|
349
|
+
return brushToString(this.i.dd);
|
|
350
350
|
}
|
|
351
351
|
set primaryFillColor(v) {
|
|
352
|
-
this.i.
|
|
353
|
-
this._a("primaryFillColor", brushToString(this.i.
|
|
352
|
+
this.i.dd = stringToBrush(v);
|
|
353
|
+
this._a("primaryFillColor", brushToString(this.i.dd));
|
|
354
354
|
}
|
|
355
355
|
/**
|
|
356
356
|
* Gets or sets a primary stroke color for the icon.
|
|
@@ -360,11 +360,11 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
360
360
|
* class.
|
|
361
361
|
*/
|
|
362
362
|
get primaryStrokeColor() {
|
|
363
|
-
return brushToString(this.i.
|
|
363
|
+
return brushToString(this.i.de);
|
|
364
364
|
}
|
|
365
365
|
set primaryStrokeColor(v) {
|
|
366
|
-
this.i.
|
|
367
|
-
this._a("primaryStrokeColor", brushToString(this.i.
|
|
366
|
+
this.i.de = stringToBrush(v);
|
|
367
|
+
this._a("primaryStrokeColor", brushToString(this.i.de));
|
|
368
368
|
}
|
|
369
369
|
/**
|
|
370
370
|
* Gets or sets a secondary fill color for the icon.
|
|
@@ -374,11 +374,11 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
374
374
|
* class.
|
|
375
375
|
*/
|
|
376
376
|
get secondaryFillColor() {
|
|
377
|
-
return brushToString(this.i.
|
|
377
|
+
return brushToString(this.i.df);
|
|
378
378
|
}
|
|
379
379
|
set secondaryFillColor(v) {
|
|
380
|
-
this.i.
|
|
381
|
-
this._a("secondaryFillColor", brushToString(this.i.
|
|
380
|
+
this.i.df = stringToBrush(v);
|
|
381
|
+
this._a("secondaryFillColor", brushToString(this.i.df));
|
|
382
382
|
}
|
|
383
383
|
/**
|
|
384
384
|
* Gets or sets a secondary stroke color for the icon.
|
|
@@ -388,29 +388,29 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
388
388
|
* class.
|
|
389
389
|
*/
|
|
390
390
|
get secondaryStrokeColor() {
|
|
391
|
-
return brushToString(this.i.
|
|
391
|
+
return brushToString(this.i.dg);
|
|
392
392
|
}
|
|
393
393
|
set secondaryStrokeColor(v) {
|
|
394
|
-
this.i.
|
|
395
|
-
this._a("secondaryStrokeColor", brushToString(this.i.
|
|
394
|
+
this.i.dg = stringToBrush(v);
|
|
395
|
+
this._a("secondaryStrokeColor", brushToString(this.i.dg));
|
|
396
396
|
}
|
|
397
397
|
/**
|
|
398
398
|
* Gets or sets the image source for the icon. Used if none of the other icon types are not used.
|
|
399
399
|
*/
|
|
400
400
|
get source() {
|
|
401
|
-
return this.i.
|
|
401
|
+
return this.i.az;
|
|
402
402
|
}
|
|
403
403
|
set source(v) {
|
|
404
|
-
this.i.
|
|
404
|
+
this.i.az = v;
|
|
405
405
|
}
|
|
406
406
|
/**
|
|
407
407
|
* Gets or sets data url for the icon to use.
|
|
408
408
|
*/
|
|
409
409
|
get dataURL() {
|
|
410
|
-
return this.i.
|
|
410
|
+
return this.i.bc;
|
|
411
411
|
}
|
|
412
412
|
set dataURL(v) {
|
|
413
|
-
this.i.
|
|
413
|
+
this.i.bc = v;
|
|
414
414
|
}
|
|
415
415
|
/**
|
|
416
416
|
* Gets or sets path data for the icon to use.
|
|
@@ -447,54 +447,54 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
447
447
|
* Gets or sets the use for the button.
|
|
448
448
|
*/
|
|
449
449
|
get textStyle() {
|
|
450
|
-
if (this.i.
|
|
450
|
+
if (this.i.o == null) {
|
|
451
451
|
return null;
|
|
452
452
|
}
|
|
453
|
-
return this.i.
|
|
453
|
+
return this.i.o.fontString;
|
|
454
454
|
}
|
|
455
455
|
set textStyle(v) {
|
|
456
456
|
let fi = new FontInfo();
|
|
457
457
|
fi.fontString = v;
|
|
458
|
-
this.i.
|
|
459
|
-
this._a("textStyle", this.i.
|
|
458
|
+
this.i.o = fi;
|
|
459
|
+
this._a("textStyle", this.i.o != null ? this.i.o.fontString : "");
|
|
460
460
|
}
|
|
461
461
|
/**
|
|
462
462
|
* Gets or sets the id to use for the checkbox.
|
|
463
463
|
*/
|
|
464
464
|
get id() {
|
|
465
|
-
return this.i.
|
|
465
|
+
return this.i.bm;
|
|
466
466
|
}
|
|
467
467
|
set id(v) {
|
|
468
|
-
this.i.
|
|
468
|
+
this.i.bm = v;
|
|
469
469
|
}
|
|
470
470
|
/**
|
|
471
471
|
* Gets or sets TabIndex to use for the checkbox.
|
|
472
472
|
*/
|
|
473
473
|
get tabIndex() {
|
|
474
|
-
return this.i.
|
|
474
|
+
return this.i.av;
|
|
475
475
|
}
|
|
476
476
|
set tabIndex(v) {
|
|
477
|
-
this.i.
|
|
478
|
-
this._a("tabIndex", this.i.
|
|
477
|
+
this.i.av = +v;
|
|
478
|
+
this._a("tabIndex", this.i.av);
|
|
479
479
|
}
|
|
480
480
|
/**
|
|
481
481
|
* Gets or sets the value of the aria-label attribute.
|
|
482
482
|
*/
|
|
483
483
|
get ariaLabel() {
|
|
484
|
-
return this.i.
|
|
484
|
+
return this.i.a9;
|
|
485
485
|
}
|
|
486
486
|
set ariaLabel(v) {
|
|
487
|
-
this.i.
|
|
487
|
+
this.i.a9 = v;
|
|
488
488
|
}
|
|
489
489
|
/**
|
|
490
490
|
* Gets or sets whether the icon is hovered.
|
|
491
491
|
*/
|
|
492
492
|
get isHover() {
|
|
493
|
-
return this.i.
|
|
493
|
+
return this.i.v;
|
|
494
494
|
}
|
|
495
495
|
set isHover(v) {
|
|
496
|
-
this.i.
|
|
497
|
-
this._a("isHover", this.i.
|
|
496
|
+
this.i.v = ensureBool(v);
|
|
497
|
+
this._a("isHover", this.i.v);
|
|
498
498
|
}
|
|
499
499
|
/**
|
|
500
500
|
* Gets or sets whether the checkbox is disabled.
|
|
@@ -507,71 +507,71 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
507
507
|
this._a("disabled", this.i.disabled);
|
|
508
508
|
}
|
|
509
509
|
get opacity() {
|
|
510
|
-
return this.i.
|
|
510
|
+
return this.i.an;
|
|
511
511
|
}
|
|
512
512
|
set opacity(v) {
|
|
513
|
-
this.i.
|
|
514
|
-
this._a("opacity", this.i.
|
|
513
|
+
this.i.an = +v;
|
|
514
|
+
this._a("opacity", this.i.an);
|
|
515
515
|
}
|
|
516
516
|
/**
|
|
517
517
|
* Gets or sets the viewbox left for the svg icon.
|
|
518
518
|
*/
|
|
519
519
|
get viewBoxLeft() {
|
|
520
|
-
return this.i.
|
|
520
|
+
return this.i.aq;
|
|
521
521
|
}
|
|
522
522
|
set viewBoxLeft(v) {
|
|
523
|
-
this.i.
|
|
524
|
-
this._a("viewBoxLeft", this.i.
|
|
523
|
+
this.i.aq = +v;
|
|
524
|
+
this._a("viewBoxLeft", this.i.aq);
|
|
525
525
|
}
|
|
526
526
|
/**
|
|
527
527
|
* Gets or sets the viewbox top for the svg icon.
|
|
528
528
|
*/
|
|
529
529
|
get viewBoxTop() {
|
|
530
|
-
return this.i.
|
|
530
|
+
return this.i.ar;
|
|
531
531
|
}
|
|
532
532
|
set viewBoxTop(v) {
|
|
533
|
-
this.i.
|
|
534
|
-
this._a("viewBoxTop", this.i.
|
|
533
|
+
this.i.ar = +v;
|
|
534
|
+
this._a("viewBoxTop", this.i.ar);
|
|
535
535
|
}
|
|
536
536
|
/**
|
|
537
537
|
* Gets or sets the viewbox width for the svg icon.
|
|
538
538
|
*/
|
|
539
539
|
get viewBoxWidth() {
|
|
540
|
-
return this.i.
|
|
540
|
+
return this.i.as;
|
|
541
541
|
}
|
|
542
542
|
set viewBoxWidth(v) {
|
|
543
|
-
this.i.
|
|
544
|
-
this._a("viewBoxWidth", this.i.
|
|
543
|
+
this.i.as = +v;
|
|
544
|
+
this._a("viewBoxWidth", this.i.as);
|
|
545
545
|
}
|
|
546
546
|
/**
|
|
547
547
|
* Gets or sets the viewbox height for the svg icon.
|
|
548
548
|
*/
|
|
549
549
|
get viewBoxHeight() {
|
|
550
|
-
return this.i.
|
|
550
|
+
return this.i.ap;
|
|
551
551
|
}
|
|
552
552
|
set viewBoxHeight(v) {
|
|
553
|
-
this.i.
|
|
554
|
-
this._a("viewBoxHeight", this.i.
|
|
553
|
+
this.i.ap = +v;
|
|
554
|
+
this._a("viewBoxHeight", this.i.ap);
|
|
555
555
|
}
|
|
556
556
|
/**
|
|
557
557
|
* Gets or sets the width of the icon.
|
|
558
558
|
*/
|
|
559
559
|
get width() {
|
|
560
|
-
return this.i.
|
|
560
|
+
return this.i.at;
|
|
561
561
|
}
|
|
562
562
|
set width(v) {
|
|
563
|
-
this.i.
|
|
564
|
-
this._a("width", this.i.
|
|
563
|
+
this.i.at = +v;
|
|
564
|
+
this._a("width", this.i.at);
|
|
565
565
|
}
|
|
566
566
|
/**
|
|
567
567
|
* Gets or sets the height of the icon.
|
|
568
568
|
*/
|
|
569
569
|
get height() {
|
|
570
|
-
return this.i.
|
|
570
|
+
return this.i.al;
|
|
571
571
|
}
|
|
572
572
|
set height(v) {
|
|
573
|
-
this.i.
|
|
574
|
-
this._a("height", this.i.
|
|
573
|
+
this.i.al = +v;
|
|
574
|
+
this._a("height", this.i.al);
|
|
575
575
|
}
|
|
576
576
|
findByName(name) {
|
|
577
577
|
if (this.findEphemera) {
|
|
@@ -645,7 +645,7 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
645
645
|
|
|
646
646
|
*/
|
|
647
647
|
exportVisualModel() {
|
|
648
|
-
let iv = this.i.
|
|
648
|
+
let iv = this.i.ay();
|
|
649
649
|
return (iv);
|
|
650
650
|
}
|
|
651
651
|
/**
|
|
@@ -653,7 +653,7 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
653
653
|
|
|
654
654
|
*/
|
|
655
655
|
exportSerializedVisualModel() {
|
|
656
|
-
let iv = this.i.
|
|
656
|
+
let iv = this.i.be();
|
|
657
657
|
return (iv);
|
|
658
658
|
}
|
|
659
659
|
}
|
package/esm2015/public_api.js
CHANGED
|
@@ -141,6 +141,7 @@ export * from './lib/igc-input-change-event-args';
|
|
|
141
141
|
export * from './lib/InputShiftType';
|
|
142
142
|
export * from './lib/XIcon';
|
|
143
143
|
export * from './lib/IconClickedEventArgs';
|
|
144
|
+
export * from './lib/IconViewType';
|
|
144
145
|
export * from './lib/XButton';
|
|
145
146
|
export * from './lib/ThemeResolver';
|
|
146
147
|
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
|
};
|