igniteui-webcomponents-inputs 4.7.2 → 4.8.1-alpha.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 +1123 -821
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonView_combined.js +22 -22
- package/esm2015/lib/CalendarView_combined.js +14 -14
- package/esm2015/lib/CheckboxView_combined.js +73 -67
- package/esm2015/lib/DatePickerView_combined.js +14 -14
- package/esm2015/lib/IconView_combined.js +659 -472
- package/esm2015/lib/IconVisualModelExport.js +13 -11
- package/esm2015/lib/InputGroupView_combined.js +29 -29
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -1
- package/esm2015/lib/XButtonBridge.js +7 -0
- package/esm2015/lib/XIconBridge.js +55 -31
- package/esm2015/lib/XIconButtonBridge.js +1 -1
- package/esm2015/lib/igc-x-icon-component.js +113 -91
- package/esm5/lib/ButtonView_combined.js +22 -22
- package/esm5/lib/CalendarView_combined.js +14 -14
- package/esm5/lib/CheckboxView_combined.js +77 -67
- package/esm5/lib/DatePickerView_combined.js +14 -14
- package/esm5/lib/IconView_combined.js +678 -446
- package/esm5/lib/IconVisualModelExport.js +13 -11
- package/esm5/lib/InputGroupView_combined.js +29 -29
- package/esm5/lib/NativeUIXInputsFactory.js +1 -1
- package/esm5/lib/XButtonBridge.js +7 -0
- package/esm5/lib/XIconBridge.js +55 -31
- package/esm5/lib/XIconButtonBridge.js +1 -1
- package/esm5/lib/igc-x-icon-component.js +121 -91
- package/fesm2015/igniteui-webcomponents-inputs.js +995 -750
- package/fesm5/igniteui-webcomponents-inputs.js +1124 -822
- package/lib/CheckboxView_combined.d.ts +17 -16
- package/lib/IconView_combined.d.ts +155 -136
- package/lib/IconVisualModelExport.d.ts +4 -3
- package/lib/XIconBridge.d.ts +3 -0
- package/lib/igc-x-icon-component.d.ts +10 -0
- package/package.json +2 -2
|
@@ -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.k;
|
|
190
190
|
}
|
|
191
191
|
set baseTheme(v) {
|
|
192
|
-
this.i.
|
|
193
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
192
|
+
this.i.k = ensureEnum(BaseControlTheme_$type, v);
|
|
193
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.k));
|
|
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.cw);
|
|
200
200
|
}
|
|
201
201
|
set actualFill(v) {
|
|
202
|
-
this.i.
|
|
203
|
-
this._a("actualFill", brushToString(this.i.
|
|
202
|
+
this.i.cw = stringToBrush(v);
|
|
203
|
+
this._a("actualFill", brushToString(this.i.cw));
|
|
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.cx);
|
|
210
210
|
}
|
|
211
211
|
set actualStroke(v) {
|
|
212
|
-
this.i.
|
|
213
|
-
this._a("actualStroke", brushToString(this.i.
|
|
212
|
+
this.i.cx = stringToBrush(v);
|
|
213
|
+
this._a("actualStroke", brushToString(this.i.cx));
|
|
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.cy);
|
|
220
220
|
}
|
|
221
221
|
set actualTextColor(v) {
|
|
222
|
-
this.i.
|
|
223
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
222
|
+
this.i.cy = stringToBrush(v);
|
|
223
|
+
this._a("actualTextColor", brushToString(this.i.cy));
|
|
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.af;
|
|
230
230
|
}
|
|
231
231
|
set actualStrokeWidth(v) {
|
|
232
|
-
this.i.
|
|
233
|
-
this._a("actualStrokeWidth", this.i.
|
|
232
|
+
this.i.af = +v;
|
|
233
|
+
this._a("actualStrokeWidth", this.i.af);
|
|
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.dc);
|
|
250
250
|
}
|
|
251
251
|
set stroke(v) {
|
|
252
|
-
this.i.
|
|
253
|
-
this._a("stroke", brushToString(this.i.
|
|
252
|
+
this.i.dc = stringToBrush(v);
|
|
253
|
+
this._a("stroke", brushToString(this.i.dc));
|
|
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.al;
|
|
260
260
|
}
|
|
261
261
|
set strokeWidth(v) {
|
|
262
|
-
this.i.
|
|
263
|
-
this._a("strokeWidth", this.i.
|
|
262
|
+
this.i.al = +v;
|
|
263
|
+
this._a("strokeWidth", this.i.al);
|
|
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.dd);
|
|
270
270
|
}
|
|
271
271
|
set textColor(v) {
|
|
272
|
-
this.i.
|
|
273
|
-
this._a("textColor", brushToString(this.i.
|
|
272
|
+
this.i.dd = stringToBrush(v);
|
|
273
|
+
this._a("textColor", brushToString(this.i.dd));
|
|
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.c5);
|
|
280
280
|
}
|
|
281
281
|
set hoverFill(v) {
|
|
282
|
-
this.i.
|
|
283
|
-
this._a("hoverFill", brushToString(this.i.
|
|
282
|
+
this.i.c5 = stringToBrush(v);
|
|
283
|
+
this._a("hoverFill", brushToString(this.i.c5));
|
|
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.c6);
|
|
290
290
|
}
|
|
291
291
|
set hoverStroke(v) {
|
|
292
|
-
this.i.
|
|
293
|
-
this._a("hoverStroke", brushToString(this.i.
|
|
292
|
+
this.i.c6 = stringToBrush(v);
|
|
293
|
+
this._a("hoverStroke", brushToString(this.i.c6));
|
|
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.aj;
|
|
300
300
|
}
|
|
301
301
|
set hoverStrokeThickness(v) {
|
|
302
|
-
this.i.
|
|
303
|
-
this._a("hoverStrokeThickness", this.i.
|
|
302
|
+
this.i.aj = +v;
|
|
303
|
+
this._a("hoverStrokeThickness", this.i.aj);
|
|
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.c7);
|
|
310
310
|
}
|
|
311
311
|
set hoverTextColor(v) {
|
|
312
|
-
this.i.
|
|
313
|
-
this._a("hoverTextColor", brushToString(this.i.
|
|
312
|
+
this.i.c7 = stringToBrush(v);
|
|
313
|
+
this._a("hoverTextColor", brushToString(this.i.c7));
|
|
314
314
|
}
|
|
315
315
|
/**
|
|
316
316
|
* Gets or sets a collection of fill colors to use in the icon.
|
|
@@ -319,11 +319,11 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
319
319
|
* class where # is a number from 0 to count - 1.
|
|
320
320
|
*/
|
|
321
321
|
get fillColors() {
|
|
322
|
-
return fromBrushCollection(this.i.
|
|
322
|
+
return fromBrushCollection(this.i.e);
|
|
323
323
|
}
|
|
324
324
|
set fillColors(v) {
|
|
325
|
-
this.i.
|
|
326
|
-
this._a("fillColors", brushCollectionToString(this.i.
|
|
325
|
+
this.i.e = toBrushCollection(v);
|
|
326
|
+
this._a("fillColors", brushCollectionToString(this.i.e));
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
329
|
* Gets or sets a collection of stroke colors to use in the icon.
|
|
@@ -332,11 +332,11 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
332
332
|
* class where # is a number from 0 to count - 1.
|
|
333
333
|
*/
|
|
334
334
|
get strokeColors() {
|
|
335
|
-
return fromBrushCollection(this.i.
|
|
335
|
+
return fromBrushCollection(this.i.f);
|
|
336
336
|
}
|
|
337
337
|
set strokeColors(v) {
|
|
338
|
-
this.i.
|
|
339
|
-
this._a("strokeColors", brushCollectionToString(this.i.
|
|
338
|
+
this.i.f = toBrushCollection(v);
|
|
339
|
+
this._a("strokeColors", brushCollectionToString(this.i.f));
|
|
340
340
|
}
|
|
341
341
|
/**
|
|
342
342
|
* Gets or sets a primary fill color for 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.c8);
|
|
350
350
|
}
|
|
351
351
|
set primaryFillColor(v) {
|
|
352
|
-
this.i.
|
|
353
|
-
this._a("primaryFillColor", brushToString(this.i.
|
|
352
|
+
this.i.c8 = stringToBrush(v);
|
|
353
|
+
this._a("primaryFillColor", brushToString(this.i.c8));
|
|
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.c9);
|
|
364
364
|
}
|
|
365
365
|
set primaryStrokeColor(v) {
|
|
366
|
-
this.i.
|
|
367
|
-
this._a("primaryStrokeColor", brushToString(this.i.
|
|
366
|
+
this.i.c9 = stringToBrush(v);
|
|
367
|
+
this._a("primaryStrokeColor", brushToString(this.i.c9));
|
|
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.da);
|
|
378
378
|
}
|
|
379
379
|
set secondaryFillColor(v) {
|
|
380
|
-
this.i.
|
|
381
|
-
this._a("secondaryFillColor", brushToString(this.i.
|
|
380
|
+
this.i.da = stringToBrush(v);
|
|
381
|
+
this._a("secondaryFillColor", brushToString(this.i.da));
|
|
382
382
|
}
|
|
383
383
|
/**
|
|
384
384
|
* Gets or sets a secondary stroke color for the icon.
|
|
@@ -388,11 +388,20 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
388
388
|
* class.
|
|
389
389
|
*/
|
|
390
390
|
get secondaryStrokeColor() {
|
|
391
|
-
return brushToString(this.i.
|
|
391
|
+
return brushToString(this.i.db);
|
|
392
392
|
}
|
|
393
393
|
set secondaryStrokeColor(v) {
|
|
394
|
-
this.i.
|
|
395
|
-
this._a("secondaryStrokeColor", brushToString(this.i.
|
|
394
|
+
this.i.db = stringToBrush(v);
|
|
395
|
+
this._a("secondaryStrokeColor", brushToString(this.i.db));
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* Gets or sets data url for the icon to use.
|
|
399
|
+
*/
|
|
400
|
+
get dataURL() {
|
|
401
|
+
return this.i.a7;
|
|
402
|
+
}
|
|
403
|
+
set dataURL(v) {
|
|
404
|
+
this.i.a7 = v;
|
|
396
405
|
}
|
|
397
406
|
/**
|
|
398
407
|
* Gets or sets path data for the icon to use.
|
|
@@ -412,58 +421,71 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
412
421
|
set svg(v) {
|
|
413
422
|
this.i.svg = v;
|
|
414
423
|
}
|
|
424
|
+
/**
|
|
425
|
+
* Gets or sets an array of path data for the icon to use.
|
|
426
|
+
*/
|
|
427
|
+
get sVGPaths() {
|
|
428
|
+
return this.i.b;
|
|
429
|
+
}
|
|
430
|
+
set sVGPaths(v) {
|
|
431
|
+
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
432
|
+
const re = /\s*(?:,|\s|$)\s*/gm;
|
|
433
|
+
v = v.split(re);
|
|
434
|
+
}
|
|
435
|
+
this.i.b = v;
|
|
436
|
+
}
|
|
415
437
|
/**
|
|
416
438
|
* Gets or sets the use for the button.
|
|
417
439
|
*/
|
|
418
440
|
get textStyle() {
|
|
419
|
-
if (this.i.
|
|
441
|
+
if (this.i.m == null) {
|
|
420
442
|
return null;
|
|
421
443
|
}
|
|
422
|
-
return this.i.
|
|
444
|
+
return this.i.m.fontString;
|
|
423
445
|
}
|
|
424
446
|
set textStyle(v) {
|
|
425
447
|
let fi = new FontInfo();
|
|
426
448
|
fi.fontString = v;
|
|
427
|
-
this.i.
|
|
428
|
-
this._a("textStyle", this.i.
|
|
449
|
+
this.i.m = fi;
|
|
450
|
+
this._a("textStyle", this.i.m != null ? this.i.m.fontString : "");
|
|
429
451
|
}
|
|
430
452
|
/**
|
|
431
453
|
* Gets or sets the id to use for the checkbox.
|
|
432
454
|
*/
|
|
433
455
|
get id() {
|
|
434
|
-
return this.i.
|
|
456
|
+
return this.i.bh;
|
|
435
457
|
}
|
|
436
458
|
set id(v) {
|
|
437
|
-
this.i.
|
|
459
|
+
this.i.bh = v;
|
|
438
460
|
}
|
|
439
461
|
/**
|
|
440
462
|
* Gets or sets TabIndex to use for the checkbox.
|
|
441
463
|
*/
|
|
442
464
|
get tabIndex() {
|
|
443
|
-
return this.i.
|
|
465
|
+
return this.i.as;
|
|
444
466
|
}
|
|
445
467
|
set tabIndex(v) {
|
|
446
|
-
this.i.
|
|
447
|
-
this._a("tabIndex", this.i.
|
|
468
|
+
this.i.as = +v;
|
|
469
|
+
this._a("tabIndex", this.i.as);
|
|
448
470
|
}
|
|
449
471
|
/**
|
|
450
472
|
* Gets or sets the value of the aria-label attribute.
|
|
451
473
|
*/
|
|
452
474
|
get ariaLabel() {
|
|
453
|
-
return this.i.
|
|
475
|
+
return this.i.a4;
|
|
454
476
|
}
|
|
455
477
|
set ariaLabel(v) {
|
|
456
|
-
this.i.
|
|
478
|
+
this.i.a4 = v;
|
|
457
479
|
}
|
|
458
480
|
/**
|
|
459
481
|
* Gets or sets whether the icon is hovered.
|
|
460
482
|
*/
|
|
461
483
|
get isHover() {
|
|
462
|
-
return this.i.
|
|
484
|
+
return this.i.t;
|
|
463
485
|
}
|
|
464
486
|
set isHover(v) {
|
|
465
|
-
this.i.
|
|
466
|
-
this._a("isHover", this.i.
|
|
487
|
+
this.i.t = ensureBool(v);
|
|
488
|
+
this._a("isHover", this.i.t);
|
|
467
489
|
}
|
|
468
490
|
/**
|
|
469
491
|
* Gets or sets whether the checkbox is disabled.
|
|
@@ -476,71 +498,71 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
476
498
|
this._a("disabled", this.i.disabled);
|
|
477
499
|
}
|
|
478
500
|
get opacity() {
|
|
479
|
-
return this.i.
|
|
501
|
+
return this.i.ak;
|
|
480
502
|
}
|
|
481
503
|
set opacity(v) {
|
|
482
|
-
this.i.
|
|
483
|
-
this._a("opacity", this.i.
|
|
504
|
+
this.i.ak = +v;
|
|
505
|
+
this._a("opacity", this.i.ak);
|
|
484
506
|
}
|
|
485
507
|
/**
|
|
486
508
|
* Gets or sets the viewbox left for the svg icon.
|
|
487
509
|
*/
|
|
488
510
|
get viewBoxLeft() {
|
|
489
|
-
return this.i.
|
|
511
|
+
return this.i.an;
|
|
490
512
|
}
|
|
491
513
|
set viewBoxLeft(v) {
|
|
492
|
-
this.i.
|
|
493
|
-
this._a("viewBoxLeft", this.i.
|
|
514
|
+
this.i.an = +v;
|
|
515
|
+
this._a("viewBoxLeft", this.i.an);
|
|
494
516
|
}
|
|
495
517
|
/**
|
|
496
518
|
* Gets or sets the viewbox top for the svg icon.
|
|
497
519
|
*/
|
|
498
520
|
get viewBoxTop() {
|
|
499
|
-
return this.i.
|
|
521
|
+
return this.i.ao;
|
|
500
522
|
}
|
|
501
523
|
set viewBoxTop(v) {
|
|
502
|
-
this.i.
|
|
503
|
-
this._a("viewBoxTop", this.i.
|
|
524
|
+
this.i.ao = +v;
|
|
525
|
+
this._a("viewBoxTop", this.i.ao);
|
|
504
526
|
}
|
|
505
527
|
/**
|
|
506
528
|
* Gets or sets the viewbox width for the svg icon.
|
|
507
529
|
*/
|
|
508
530
|
get viewBoxWidth() {
|
|
509
|
-
return this.i.
|
|
531
|
+
return this.i.ap;
|
|
510
532
|
}
|
|
511
533
|
set viewBoxWidth(v) {
|
|
512
|
-
this.i.
|
|
513
|
-
this._a("viewBoxWidth", this.i.
|
|
534
|
+
this.i.ap = +v;
|
|
535
|
+
this._a("viewBoxWidth", this.i.ap);
|
|
514
536
|
}
|
|
515
537
|
/**
|
|
516
538
|
* Gets or sets the viewbox height for the svg icon.
|
|
517
539
|
*/
|
|
518
540
|
get viewBoxHeight() {
|
|
519
|
-
return this.i.
|
|
541
|
+
return this.i.am;
|
|
520
542
|
}
|
|
521
543
|
set viewBoxHeight(v) {
|
|
522
|
-
this.i.
|
|
523
|
-
this._a("viewBoxHeight", this.i.
|
|
544
|
+
this.i.am = +v;
|
|
545
|
+
this._a("viewBoxHeight", this.i.am);
|
|
524
546
|
}
|
|
525
547
|
/**
|
|
526
548
|
* Gets or sets the width of the icon.
|
|
527
549
|
*/
|
|
528
550
|
get width() {
|
|
529
|
-
return this.i.
|
|
551
|
+
return this.i.aq;
|
|
530
552
|
}
|
|
531
553
|
set width(v) {
|
|
532
|
-
this.i.
|
|
533
|
-
this._a("width", this.i.
|
|
554
|
+
this.i.aq = +v;
|
|
555
|
+
this._a("width", this.i.aq);
|
|
534
556
|
}
|
|
535
557
|
/**
|
|
536
558
|
* Gets or sets the height of the icon.
|
|
537
559
|
*/
|
|
538
560
|
get height() {
|
|
539
|
-
return this.i.
|
|
561
|
+
return this.i.ai;
|
|
540
562
|
}
|
|
541
563
|
set height(v) {
|
|
542
|
-
this.i.
|
|
543
|
-
this._a("height", this.i.
|
|
564
|
+
this.i.ai = +v;
|
|
565
|
+
this._a("height", this.i.ai);
|
|
544
566
|
}
|
|
545
567
|
findByName(name) {
|
|
546
568
|
if (this.findEphemera) {
|
|
@@ -614,7 +636,7 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
614
636
|
|
|
615
637
|
*/
|
|
616
638
|
exportVisualModel() {
|
|
617
|
-
let iv = this.i.
|
|
639
|
+
let iv = this.i.au();
|
|
618
640
|
return (iv);
|
|
619
641
|
}
|
|
620
642
|
/**
|
|
@@ -622,7 +644,7 @@ export let IgcXIconComponent = /*@__PURE__*/ (() => {
|
|
|
622
644
|
|
|
623
645
|
*/
|
|
624
646
|
exportSerializedVisualModel() {
|
|
625
|
-
let iv = this.i.
|
|
647
|
+
let iv = this.i.a9();
|
|
626
648
|
return (iv);
|
|
627
649
|
}
|
|
628
650
|
}
|
|
@@ -794,7 +794,6 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
794
794
|
case "DisabledTextColor":
|
|
795
795
|
case "DisabledElevation":
|
|
796
796
|
case "HoverBackgroundColor":
|
|
797
|
-
case "TextStyle":
|
|
798
797
|
case "FocusTextColor":
|
|
799
798
|
case "TextColor":
|
|
800
799
|
case "HoverTextColor":
|
|
@@ -900,6 +899,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
900
899
|
this.ap = this.disabled || this.at;
|
|
901
900
|
this.ki();
|
|
902
901
|
break;
|
|
902
|
+
case "TextStyle":
|
|
903
903
|
case "DisableHover":
|
|
904
904
|
this.kh();
|
|
905
905
|
break;
|
|
@@ -3590,30 +3590,30 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3590
3590
|
c.l = this.disabled;
|
|
3591
3591
|
if (this.aa != null) {
|
|
3592
3592
|
var g = this.aa;
|
|
3593
|
-
if (this.view != null && g.
|
|
3593
|
+
if (this.view != null && g.q == null) {
|
|
3594
3594
|
var h = this.view.k;
|
|
3595
3595
|
var i = FontUtil.getFontInfoFromString(h, g.fontString);
|
|
3596
|
-
g.p = i.p;
|
|
3597
|
-
g.e = i.e;
|
|
3598
3596
|
g.q = i.q;
|
|
3599
|
-
g.
|
|
3597
|
+
g.f = i.f;
|
|
3598
|
+
g.r = i.r;
|
|
3600
3599
|
g.t = i.t;
|
|
3601
3600
|
g.u = i.u;
|
|
3601
|
+
g.v = i.v;
|
|
3602
3602
|
}
|
|
3603
|
-
if (g.
|
|
3604
|
-
c.ac = g.
|
|
3603
|
+
if (g.q != null) {
|
|
3604
|
+
c.ac = g.q;
|
|
3605
3605
|
}
|
|
3606
|
-
if (!isNaN_(g.
|
|
3607
|
-
c.r = g.
|
|
3606
|
+
if (!isNaN_(g.f)) {
|
|
3607
|
+
c.r = g.f;
|
|
3608
3608
|
}
|
|
3609
|
-
if (g.
|
|
3610
|
-
c.ag = g.
|
|
3609
|
+
if (g.v != null) {
|
|
3610
|
+
c.ag = g.v;
|
|
3611
3611
|
}
|
|
3612
|
-
if (g.
|
|
3613
|
-
c.ae = g.
|
|
3612
|
+
if (g.t != null) {
|
|
3613
|
+
c.ae = g.t;
|
|
3614
3614
|
}
|
|
3615
|
-
if (g.
|
|
3616
|
-
c.ad = g.
|
|
3615
|
+
if (g.r != null) {
|
|
3616
|
+
c.ad = g.t;
|
|
3617
3617
|
}
|
|
3618
3618
|
}
|
|
3619
3619
|
return c;
|
|
@@ -3644,7 +3644,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3644
3644
|
$ret.addItem("HoverElevation", 4);
|
|
3645
3645
|
$ret.addItem("FocusElevation", 8);
|
|
3646
3646
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3647
|
-
$ret.addItem("RippleColor", BrushUtil.h(
|
|
3647
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3648
3648
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3649
3649
|
$ret.addItem("BorderWidth", NaN);
|
|
3650
3650
|
$ret.addItem("BackgroundColor", BrushUtil.h(255, 228, 28, 119));
|
|
@@ -3665,11 +3665,11 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3665
3665
|
$ret.addItem("HoverElevation", 0);
|
|
3666
3666
|
$ret.addItem("FocusElevation", 0);
|
|
3667
3667
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3668
|
-
$ret.addItem("RippleColor",
|
|
3668
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3669
3669
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3670
3670
|
$ret.addItem("BorderWidth", NaN);
|
|
3671
3671
|
$ret.addItem("BackgroundColor", BrushUtil.h(0, 0, 0, 0));
|
|
3672
|
-
$ret.addItem("TextColor", BrushUtil.h(255,
|
|
3672
|
+
$ret.addItem("TextColor", BrushUtil.h(255, 228, 28, 119));
|
|
3673
3673
|
$ret.addItem("HoverTextColor", BrushUtil.h(255, 228, 28, 119));
|
|
3674
3674
|
$ret.addItem("HoverBackgroundColor", BrushUtil.h(13, 228, 28, 119));
|
|
3675
3675
|
$ret.addItem("FocusBackgroundColor", BrushUtil.h(30, 228, 28, 119));
|
|
@@ -3685,8 +3685,8 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3685
3685
|
$ret.addItem("RestingElevation", 0);
|
|
3686
3686
|
$ret.addItem("HoverElevation", 0);
|
|
3687
3687
|
$ret.addItem("FocusElevation", 0);
|
|
3688
|
-
$ret.addItem("BorderColor", BrushUtil.h(
|
|
3689
|
-
$ret.addItem("RippleColor", BrushUtil.h(
|
|
3688
|
+
$ret.addItem("BorderColor", BrushUtil.h(255, 228, 28, 119));
|
|
3689
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3690
3690
|
$ret.addItem("CornerRadius", new CornerRadius(0, 4));
|
|
3691
3691
|
$ret.addItem("BorderWidth", 1);
|
|
3692
3692
|
$ret.addItem("BackgroundColor", BrushUtil.h(0, 0, 0, 0));
|
|
@@ -3707,7 +3707,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3707
3707
|
$ret.addItem("HoverElevation", 0);
|
|
3708
3708
|
$ret.addItem("FocusElevation", 0);
|
|
3709
3709
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3710
|
-
$ret.addItem("RippleColor",
|
|
3710
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3711
3711
|
$ret.addItem("CornerRadius", new CornerRadius(0, 28));
|
|
3712
3712
|
$ret.addItem("BorderWidth", NaN);
|
|
3713
3713
|
$ret.addItem("BackgroundColor", BrushUtil.h(0, 0, 0, 0));
|
|
@@ -3728,7 +3728,7 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
3728
3728
|
$ret.addItem("HoverElevation", 12);
|
|
3729
3729
|
$ret.addItem("FocusElevation", 12);
|
|
3730
3730
|
$ret.addItem("BorderColor", BrushUtil.h(138, 0, 0, 0));
|
|
3731
|
-
$ret.addItem("RippleColor", BrushUtil.h(
|
|
3731
|
+
$ret.addItem("RippleColor", BrushUtil.h(138, 0, 0, 0));
|
|
3732
3732
|
$ret.addItem("CornerRadius", new CornerRadius(0, 28));
|
|
3733
3733
|
$ret.addItem("BorderWidth", NaN);
|
|
3734
3734
|
$ret.addItem("BackgroundColor", BrushUtil.h(255, 228, 28, 119));
|
|
@@ -2877,30 +2877,30 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2877
2877
|
}
|
|
2878
2878
|
if (this.v != null) {
|
|
2879
2879
|
var w = this.v;
|
|
2880
|
-
if (this.h != null && w.
|
|
2880
|
+
if (this.h != null && w.q == null) {
|
|
2881
2881
|
var x = this.h.m;
|
|
2882
2882
|
var y = FontUtil.getFontInfoFromString(x, w.fontString);
|
|
2883
|
-
w.p = y.p;
|
|
2884
|
-
w.e = y.e;
|
|
2885
2883
|
w.q = y.q;
|
|
2886
|
-
w.
|
|
2884
|
+
w.f = y.f;
|
|
2885
|
+
w.r = y.r;
|
|
2887
2886
|
w.t = y.t;
|
|
2888
2887
|
w.u = y.u;
|
|
2888
|
+
w.v = y.v;
|
|
2889
2889
|
}
|
|
2890
|
-
if (w.
|
|
2891
|
-
a.p = w.
|
|
2890
|
+
if (w.q != null) {
|
|
2891
|
+
a.p = w.q;
|
|
2892
2892
|
}
|
|
2893
|
-
if (!isNaN_(w.
|
|
2894
|
-
a.m = w.
|
|
2893
|
+
if (!isNaN_(w.f)) {
|
|
2894
|
+
a.m = w.f;
|
|
2895
2895
|
}
|
|
2896
|
-
if (w.
|
|
2897
|
-
a.t = w.
|
|
2896
|
+
if (w.v != null) {
|
|
2897
|
+
a.t = w.v;
|
|
2898
2898
|
}
|
|
2899
|
-
if (w.
|
|
2900
|
-
a.r = w.
|
|
2899
|
+
if (w.t != null) {
|
|
2900
|
+
a.r = w.t;
|
|
2901
2901
|
}
|
|
2902
|
-
if (w.
|
|
2903
|
-
a.q = w.
|
|
2902
|
+
if (w.r != null) {
|
|
2903
|
+
a.q = w.t;
|
|
2904
2904
|
}
|
|
2905
2905
|
}
|
|
2906
2906
|
return a;
|