igniteui-webcomponents-inputs 7.1.0-beta.2 → 7.1.0-beta.4
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 +766 -158
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/CheckboxView_combined.js +7 -7
- package/esm2015/lib/igc-x-button-component.js +280 -56
- package/esm2015/lib/igc-x-input-group-component.js +480 -96
- package/esm5/lib/CheckboxView_combined.js +7 -7
- package/esm5/lib/igc-x-button-component.js +280 -56
- package/esm5/lib/igc-x-input-group-component.js +480 -96
- package/fesm2015/igniteui-webcomponents-inputs.js +766 -158
- package/fesm5/igniteui-webcomponents-inputs.js +766 -158
- package/package.json +2 -2
|
@@ -22,8 +22,8 @@ import { Thickness } from "igniteui-webcomponents-core";
|
|
|
22
22
|
import { CheckboxChangeEventArgs } from "./CheckboxChangeEventArgs";
|
|
23
23
|
import { AnimationKeyFrameProperty } from "igniteui-webcomponents-core";
|
|
24
24
|
import { TransformGroup } from "igniteui-webcomponents-core";
|
|
25
|
-
import { RotateTransform } from "igniteui-webcomponents-core";
|
|
26
25
|
import { TranslateTransform } from "igniteui-webcomponents-core";
|
|
26
|
+
import { RotateTransform } from "igniteui-webcomponents-core";
|
|
27
27
|
import { CheckboxVisualModelExport } from "./CheckboxVisualModelExport";
|
|
28
28
|
import { AppearanceHelper } from "igniteui-webcomponents-core";
|
|
29
29
|
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
@@ -935,13 +935,13 @@ let XCheckbox = /*@__PURE__*/ (() => {
|
|
|
935
935
|
let g = new TransformGroup();
|
|
936
936
|
let h = this.view.am();
|
|
937
937
|
g.j.add(((() => {
|
|
938
|
-
let $ret = new
|
|
939
|
-
$ret.j =
|
|
938
|
+
let $ret = new TranslateTransform();
|
|
939
|
+
$ret.j = this.ap / 24 * -16;
|
|
940
940
|
return $ret;
|
|
941
941
|
})()));
|
|
942
942
|
g.j.add(((() => {
|
|
943
|
-
let $ret = new
|
|
944
|
-
$ret.j =
|
|
943
|
+
let $ret = new RotateTransform();
|
|
944
|
+
$ret.j = 45;
|
|
945
945
|
return $ret;
|
|
946
946
|
})()));
|
|
947
947
|
NativeUI.n(d, this.c8);
|
|
@@ -1081,7 +1081,7 @@ let XCheckbox = /*@__PURE__*/ (() => {
|
|
|
1081
1081
|
})()));
|
|
1082
1082
|
XCheckbox.j = /*@__PURE__*/ ThemeResolver.a(/*@__PURE__*/ ((() => {
|
|
1083
1083
|
let $ret = new Dictionary$2(String_$type, Base.$, 0);
|
|
1084
|
-
$ret.addItem("CheckPath", "
|
|
1084
|
+
$ret.addItem("CheckPath", "M4.1,12.7 9,17.6 20.3,6.3");
|
|
1085
1085
|
$ret.addItem("UncheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1086
1086
|
$ret.addItem("CheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1087
1087
|
$ret.addItem("UncheckedBackgroundColor", BrushUtil.l(255, 255, 255, 255));
|
|
@@ -1094,7 +1094,7 @@ let XCheckbox = /*@__PURE__*/ (() => {
|
|
|
1094
1094
|
})()));
|
|
1095
1095
|
XCheckbox.i = /*@__PURE__*/ ThemeResolver.a(/*@__PURE__*/ ((() => {
|
|
1096
1096
|
let $ret = new Dictionary$2(String_$type, Base.$, 0);
|
|
1097
|
-
$ret.addItem("CheckPath", "
|
|
1097
|
+
$ret.addItem("CheckPath", "M4.1,12.7 9,17.6 20.3,6.3");
|
|
1098
1098
|
$ret.addItem("UncheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1099
1099
|
$ret.addItem("CheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1100
1100
|
$ret.addItem("UncheckedBackgroundColor", BrushUtil.l(255, 55, 63, 86));
|
|
@@ -353,36 +353,68 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
353
353
|
}
|
|
354
354
|
set actualCornerRadiusBottomRight(v) {
|
|
355
355
|
this.ensureActualCornerRadius();
|
|
356
|
-
|
|
356
|
+
const __nv = +v;
|
|
357
|
+
if (this.i.k4.c === __nv) {
|
|
358
|
+
return;
|
|
359
|
+
}
|
|
360
|
+
const __copy = new CornerRadius(2);
|
|
361
|
+
__copy.c = __nv;
|
|
362
|
+
__copy.b = this.i.k4.b;
|
|
363
|
+
__copy.d = this.i.k4.d;
|
|
364
|
+
__copy.e = this.i.k4.e;
|
|
365
|
+
this.i.k4 = __copy;
|
|
357
366
|
this._a("actualCornerRadiusBottomRight", this.i.k4.c);
|
|
358
|
-
this.i.k4 = this.i.k4;
|
|
359
367
|
}
|
|
360
368
|
get actualCornerRadiusBottomLeft() {
|
|
361
369
|
return this.i.k4 ? this.i.k4.b : NaN;
|
|
362
370
|
}
|
|
363
371
|
set actualCornerRadiusBottomLeft(v) {
|
|
364
372
|
this.ensureActualCornerRadius();
|
|
365
|
-
|
|
373
|
+
const __nv = +v;
|
|
374
|
+
if (this.i.k4.b === __nv) {
|
|
375
|
+
return;
|
|
376
|
+
}
|
|
377
|
+
const __copy = new CornerRadius(2);
|
|
378
|
+
__copy.b = __nv;
|
|
379
|
+
__copy.c = this.i.k4.c;
|
|
380
|
+
__copy.d = this.i.k4.d;
|
|
381
|
+
__copy.e = this.i.k4.e;
|
|
382
|
+
this.i.k4 = __copy;
|
|
366
383
|
this._a("actualCornerRadiusBottomLeft", this.i.k4.b);
|
|
367
|
-
this.i.k4 = this.i.k4;
|
|
368
384
|
}
|
|
369
385
|
get actualCornerRadiusTopLeft() {
|
|
370
386
|
return this.i.k4 ? this.i.k4.d : NaN;
|
|
371
387
|
}
|
|
372
388
|
set actualCornerRadiusTopLeft(v) {
|
|
373
389
|
this.ensureActualCornerRadius();
|
|
374
|
-
|
|
390
|
+
const __nv = +v;
|
|
391
|
+
if (this.i.k4.d === __nv) {
|
|
392
|
+
return;
|
|
393
|
+
}
|
|
394
|
+
const __copy = new CornerRadius(2);
|
|
395
|
+
__copy.d = __nv;
|
|
396
|
+
__copy.c = this.i.k4.c;
|
|
397
|
+
__copy.b = this.i.k4.b;
|
|
398
|
+
__copy.e = this.i.k4.e;
|
|
399
|
+
this.i.k4 = __copy;
|
|
375
400
|
this._a("actualCornerRadiusTopLeft", this.i.k4.d);
|
|
376
|
-
this.i.k4 = this.i.k4;
|
|
377
401
|
}
|
|
378
402
|
get actualCornerRadiusTopRight() {
|
|
379
403
|
return this.i.k4 ? this.i.k4.e : NaN;
|
|
380
404
|
}
|
|
381
405
|
set actualCornerRadiusTopRight(v) {
|
|
382
406
|
this.ensureActualCornerRadius();
|
|
383
|
-
|
|
407
|
+
const __nv = +v;
|
|
408
|
+
if (this.i.k4.e === __nv) {
|
|
409
|
+
return;
|
|
410
|
+
}
|
|
411
|
+
const __copy = new CornerRadius(2);
|
|
412
|
+
__copy.e = __nv;
|
|
413
|
+
__copy.c = this.i.k4.c;
|
|
414
|
+
__copy.b = this.i.k4.b;
|
|
415
|
+
__copy.d = this.i.k4.d;
|
|
416
|
+
this.i.k4 = __copy;
|
|
384
417
|
this._a("actualCornerRadiusTopRight", this.i.k4.e);
|
|
385
|
-
this.i.k4 = this.i.k4;
|
|
386
418
|
}
|
|
387
419
|
ensureActualCornerRadius() {
|
|
388
420
|
if (this.i.k4) {
|
|
@@ -625,36 +657,68 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
625
657
|
}
|
|
626
658
|
set raisedCornerRadiusBottomRight(v) {
|
|
627
659
|
this.ensureRaisedCornerRadius();
|
|
628
|
-
|
|
660
|
+
const __nv = +v;
|
|
661
|
+
if (this.i.lh.c === __nv) {
|
|
662
|
+
return;
|
|
663
|
+
}
|
|
664
|
+
const __copy = new CornerRadius(2);
|
|
665
|
+
__copy.c = __nv;
|
|
666
|
+
__copy.b = this.i.lh.b;
|
|
667
|
+
__copy.d = this.i.lh.d;
|
|
668
|
+
__copy.e = this.i.lh.e;
|
|
669
|
+
this.i.lh = __copy;
|
|
629
670
|
this._a("raisedCornerRadiusBottomRight", this.i.lh.c);
|
|
630
|
-
this.i.lh = this.i.lh;
|
|
631
671
|
}
|
|
632
672
|
get raisedCornerRadiusBottomLeft() {
|
|
633
673
|
return this.i.lh ? this.i.lh.b : NaN;
|
|
634
674
|
}
|
|
635
675
|
set raisedCornerRadiusBottomLeft(v) {
|
|
636
676
|
this.ensureRaisedCornerRadius();
|
|
637
|
-
|
|
677
|
+
const __nv = +v;
|
|
678
|
+
if (this.i.lh.b === __nv) {
|
|
679
|
+
return;
|
|
680
|
+
}
|
|
681
|
+
const __copy = new CornerRadius(2);
|
|
682
|
+
__copy.b = __nv;
|
|
683
|
+
__copy.c = this.i.lh.c;
|
|
684
|
+
__copy.d = this.i.lh.d;
|
|
685
|
+
__copy.e = this.i.lh.e;
|
|
686
|
+
this.i.lh = __copy;
|
|
638
687
|
this._a("raisedCornerRadiusBottomLeft", this.i.lh.b);
|
|
639
|
-
this.i.lh = this.i.lh;
|
|
640
688
|
}
|
|
641
689
|
get raisedCornerRadiusTopLeft() {
|
|
642
690
|
return this.i.lh ? this.i.lh.d : NaN;
|
|
643
691
|
}
|
|
644
692
|
set raisedCornerRadiusTopLeft(v) {
|
|
645
693
|
this.ensureRaisedCornerRadius();
|
|
646
|
-
|
|
694
|
+
const __nv = +v;
|
|
695
|
+
if (this.i.lh.d === __nv) {
|
|
696
|
+
return;
|
|
697
|
+
}
|
|
698
|
+
const __copy = new CornerRadius(2);
|
|
699
|
+
__copy.d = __nv;
|
|
700
|
+
__copy.c = this.i.lh.c;
|
|
701
|
+
__copy.b = this.i.lh.b;
|
|
702
|
+
__copy.e = this.i.lh.e;
|
|
703
|
+
this.i.lh = __copy;
|
|
647
704
|
this._a("raisedCornerRadiusTopLeft", this.i.lh.d);
|
|
648
|
-
this.i.lh = this.i.lh;
|
|
649
705
|
}
|
|
650
706
|
get raisedCornerRadiusTopRight() {
|
|
651
707
|
return this.i.lh ? this.i.lh.e : NaN;
|
|
652
708
|
}
|
|
653
709
|
set raisedCornerRadiusTopRight(v) {
|
|
654
710
|
this.ensureRaisedCornerRadius();
|
|
655
|
-
|
|
711
|
+
const __nv = +v;
|
|
712
|
+
if (this.i.lh.e === __nv) {
|
|
713
|
+
return;
|
|
714
|
+
}
|
|
715
|
+
const __copy = new CornerRadius(2);
|
|
716
|
+
__copy.e = __nv;
|
|
717
|
+
__copy.c = this.i.lh.c;
|
|
718
|
+
__copy.b = this.i.lh.b;
|
|
719
|
+
__copy.d = this.i.lh.d;
|
|
720
|
+
this.i.lh = __copy;
|
|
656
721
|
this._a("raisedCornerRadiusTopRight", this.i.lh.e);
|
|
657
|
-
this.i.lh = this.i.lh;
|
|
658
722
|
}
|
|
659
723
|
ensureRaisedCornerRadius() {
|
|
660
724
|
if (this.i.lh) {
|
|
@@ -837,36 +901,68 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
837
901
|
}
|
|
838
902
|
set flatCornerRadiusBottomRight(v) {
|
|
839
903
|
this.ensureFlatCornerRadius();
|
|
840
|
-
|
|
904
|
+
const __nv = +v;
|
|
905
|
+
if (this.i.ld.c === __nv) {
|
|
906
|
+
return;
|
|
907
|
+
}
|
|
908
|
+
const __copy = new CornerRadius(2);
|
|
909
|
+
__copy.c = __nv;
|
|
910
|
+
__copy.b = this.i.ld.b;
|
|
911
|
+
__copy.d = this.i.ld.d;
|
|
912
|
+
__copy.e = this.i.ld.e;
|
|
913
|
+
this.i.ld = __copy;
|
|
841
914
|
this._a("flatCornerRadiusBottomRight", this.i.ld.c);
|
|
842
|
-
this.i.ld = this.i.ld;
|
|
843
915
|
}
|
|
844
916
|
get flatCornerRadiusBottomLeft() {
|
|
845
917
|
return this.i.ld ? this.i.ld.b : NaN;
|
|
846
918
|
}
|
|
847
919
|
set flatCornerRadiusBottomLeft(v) {
|
|
848
920
|
this.ensureFlatCornerRadius();
|
|
849
|
-
|
|
921
|
+
const __nv = +v;
|
|
922
|
+
if (this.i.ld.b === __nv) {
|
|
923
|
+
return;
|
|
924
|
+
}
|
|
925
|
+
const __copy = new CornerRadius(2);
|
|
926
|
+
__copy.b = __nv;
|
|
927
|
+
__copy.c = this.i.ld.c;
|
|
928
|
+
__copy.d = this.i.ld.d;
|
|
929
|
+
__copy.e = this.i.ld.e;
|
|
930
|
+
this.i.ld = __copy;
|
|
850
931
|
this._a("flatCornerRadiusBottomLeft", this.i.ld.b);
|
|
851
|
-
this.i.ld = this.i.ld;
|
|
852
932
|
}
|
|
853
933
|
get flatCornerRadiusTopLeft() {
|
|
854
934
|
return this.i.ld ? this.i.ld.d : NaN;
|
|
855
935
|
}
|
|
856
936
|
set flatCornerRadiusTopLeft(v) {
|
|
857
937
|
this.ensureFlatCornerRadius();
|
|
858
|
-
|
|
938
|
+
const __nv = +v;
|
|
939
|
+
if (this.i.ld.d === __nv) {
|
|
940
|
+
return;
|
|
941
|
+
}
|
|
942
|
+
const __copy = new CornerRadius(2);
|
|
943
|
+
__copy.d = __nv;
|
|
944
|
+
__copy.c = this.i.ld.c;
|
|
945
|
+
__copy.b = this.i.ld.b;
|
|
946
|
+
__copy.e = this.i.ld.e;
|
|
947
|
+
this.i.ld = __copy;
|
|
859
948
|
this._a("flatCornerRadiusTopLeft", this.i.ld.d);
|
|
860
|
-
this.i.ld = this.i.ld;
|
|
861
949
|
}
|
|
862
950
|
get flatCornerRadiusTopRight() {
|
|
863
951
|
return this.i.ld ? this.i.ld.e : NaN;
|
|
864
952
|
}
|
|
865
953
|
set flatCornerRadiusTopRight(v) {
|
|
866
954
|
this.ensureFlatCornerRadius();
|
|
867
|
-
|
|
955
|
+
const __nv = +v;
|
|
956
|
+
if (this.i.ld.e === __nv) {
|
|
957
|
+
return;
|
|
958
|
+
}
|
|
959
|
+
const __copy = new CornerRadius(2);
|
|
960
|
+
__copy.e = __nv;
|
|
961
|
+
__copy.c = this.i.ld.c;
|
|
962
|
+
__copy.b = this.i.ld.b;
|
|
963
|
+
__copy.d = this.i.ld.d;
|
|
964
|
+
this.i.ld = __copy;
|
|
868
965
|
this._a("flatCornerRadiusTopRight", this.i.ld.e);
|
|
869
|
-
this.i.ld = this.i.ld;
|
|
870
966
|
}
|
|
871
967
|
ensureFlatCornerRadius() {
|
|
872
968
|
if (this.i.ld) {
|
|
@@ -1104,36 +1200,68 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
1104
1200
|
}
|
|
1105
1201
|
set cornerRadiusBottomRight(v) {
|
|
1106
1202
|
this.ensureCornerRadius();
|
|
1107
|
-
|
|
1203
|
+
const __nv = +v;
|
|
1204
|
+
if (this.i.k6.c === __nv) {
|
|
1205
|
+
return;
|
|
1206
|
+
}
|
|
1207
|
+
const __copy = new CornerRadius(2);
|
|
1208
|
+
__copy.c = __nv;
|
|
1209
|
+
__copy.b = this.i.k6.b;
|
|
1210
|
+
__copy.d = this.i.k6.d;
|
|
1211
|
+
__copy.e = this.i.k6.e;
|
|
1212
|
+
this.i.k6 = __copy;
|
|
1108
1213
|
this._a("cornerRadiusBottomRight", this.i.k6.c);
|
|
1109
|
-
this.i.k6 = this.i.k6;
|
|
1110
1214
|
}
|
|
1111
1215
|
get cornerRadiusBottomLeft() {
|
|
1112
1216
|
return this.i.k6 ? this.i.k6.b : NaN;
|
|
1113
1217
|
}
|
|
1114
1218
|
set cornerRadiusBottomLeft(v) {
|
|
1115
1219
|
this.ensureCornerRadius();
|
|
1116
|
-
|
|
1220
|
+
const __nv = +v;
|
|
1221
|
+
if (this.i.k6.b === __nv) {
|
|
1222
|
+
return;
|
|
1223
|
+
}
|
|
1224
|
+
const __copy = new CornerRadius(2);
|
|
1225
|
+
__copy.b = __nv;
|
|
1226
|
+
__copy.c = this.i.k6.c;
|
|
1227
|
+
__copy.d = this.i.k6.d;
|
|
1228
|
+
__copy.e = this.i.k6.e;
|
|
1229
|
+
this.i.k6 = __copy;
|
|
1117
1230
|
this._a("cornerRadiusBottomLeft", this.i.k6.b);
|
|
1118
|
-
this.i.k6 = this.i.k6;
|
|
1119
1231
|
}
|
|
1120
1232
|
get cornerRadiusTopLeft() {
|
|
1121
1233
|
return this.i.k6 ? this.i.k6.d : NaN;
|
|
1122
1234
|
}
|
|
1123
1235
|
set cornerRadiusTopLeft(v) {
|
|
1124
1236
|
this.ensureCornerRadius();
|
|
1125
|
-
|
|
1237
|
+
const __nv = +v;
|
|
1238
|
+
if (this.i.k6.d === __nv) {
|
|
1239
|
+
return;
|
|
1240
|
+
}
|
|
1241
|
+
const __copy = new CornerRadius(2);
|
|
1242
|
+
__copy.d = __nv;
|
|
1243
|
+
__copy.c = this.i.k6.c;
|
|
1244
|
+
__copy.b = this.i.k6.b;
|
|
1245
|
+
__copy.e = this.i.k6.e;
|
|
1246
|
+
this.i.k6 = __copy;
|
|
1126
1247
|
this._a("cornerRadiusTopLeft", this.i.k6.d);
|
|
1127
|
-
this.i.k6 = this.i.k6;
|
|
1128
1248
|
}
|
|
1129
1249
|
get cornerRadiusTopRight() {
|
|
1130
1250
|
return this.i.k6 ? this.i.k6.e : NaN;
|
|
1131
1251
|
}
|
|
1132
1252
|
set cornerRadiusTopRight(v) {
|
|
1133
1253
|
this.ensureCornerRadius();
|
|
1134
|
-
|
|
1254
|
+
const __nv = +v;
|
|
1255
|
+
if (this.i.k6.e === __nv) {
|
|
1256
|
+
return;
|
|
1257
|
+
}
|
|
1258
|
+
const __copy = new CornerRadius(2);
|
|
1259
|
+
__copy.e = __nv;
|
|
1260
|
+
__copy.c = this.i.k6.c;
|
|
1261
|
+
__copy.b = this.i.k6.b;
|
|
1262
|
+
__copy.d = this.i.k6.d;
|
|
1263
|
+
this.i.k6 = __copy;
|
|
1135
1264
|
this._a("cornerRadiusTopRight", this.i.k6.e);
|
|
1136
|
-
this.i.k6 = this.i.k6;
|
|
1137
1265
|
}
|
|
1138
1266
|
ensureCornerRadius() {
|
|
1139
1267
|
if (this.i.k6) {
|
|
@@ -1256,36 +1384,68 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
1256
1384
|
}
|
|
1257
1385
|
set outlinedCornerRadiusBottomRight(v) {
|
|
1258
1386
|
this.ensureOutlinedCornerRadius();
|
|
1259
|
-
|
|
1387
|
+
const __nv = +v;
|
|
1388
|
+
if (this.i.lg.c === __nv) {
|
|
1389
|
+
return;
|
|
1390
|
+
}
|
|
1391
|
+
const __copy = new CornerRadius(2);
|
|
1392
|
+
__copy.c = __nv;
|
|
1393
|
+
__copy.b = this.i.lg.b;
|
|
1394
|
+
__copy.d = this.i.lg.d;
|
|
1395
|
+
__copy.e = this.i.lg.e;
|
|
1396
|
+
this.i.lg = __copy;
|
|
1260
1397
|
this._a("outlinedCornerRadiusBottomRight", this.i.lg.c);
|
|
1261
|
-
this.i.lg = this.i.lg;
|
|
1262
1398
|
}
|
|
1263
1399
|
get outlinedCornerRadiusBottomLeft() {
|
|
1264
1400
|
return this.i.lg ? this.i.lg.b : NaN;
|
|
1265
1401
|
}
|
|
1266
1402
|
set outlinedCornerRadiusBottomLeft(v) {
|
|
1267
1403
|
this.ensureOutlinedCornerRadius();
|
|
1268
|
-
|
|
1404
|
+
const __nv = +v;
|
|
1405
|
+
if (this.i.lg.b === __nv) {
|
|
1406
|
+
return;
|
|
1407
|
+
}
|
|
1408
|
+
const __copy = new CornerRadius(2);
|
|
1409
|
+
__copy.b = __nv;
|
|
1410
|
+
__copy.c = this.i.lg.c;
|
|
1411
|
+
__copy.d = this.i.lg.d;
|
|
1412
|
+
__copy.e = this.i.lg.e;
|
|
1413
|
+
this.i.lg = __copy;
|
|
1269
1414
|
this._a("outlinedCornerRadiusBottomLeft", this.i.lg.b);
|
|
1270
|
-
this.i.lg = this.i.lg;
|
|
1271
1415
|
}
|
|
1272
1416
|
get outlinedCornerRadiusTopLeft() {
|
|
1273
1417
|
return this.i.lg ? this.i.lg.d : NaN;
|
|
1274
1418
|
}
|
|
1275
1419
|
set outlinedCornerRadiusTopLeft(v) {
|
|
1276
1420
|
this.ensureOutlinedCornerRadius();
|
|
1277
|
-
|
|
1421
|
+
const __nv = +v;
|
|
1422
|
+
if (this.i.lg.d === __nv) {
|
|
1423
|
+
return;
|
|
1424
|
+
}
|
|
1425
|
+
const __copy = new CornerRadius(2);
|
|
1426
|
+
__copy.d = __nv;
|
|
1427
|
+
__copy.c = this.i.lg.c;
|
|
1428
|
+
__copy.b = this.i.lg.b;
|
|
1429
|
+
__copy.e = this.i.lg.e;
|
|
1430
|
+
this.i.lg = __copy;
|
|
1278
1431
|
this._a("outlinedCornerRadiusTopLeft", this.i.lg.d);
|
|
1279
|
-
this.i.lg = this.i.lg;
|
|
1280
1432
|
}
|
|
1281
1433
|
get outlinedCornerRadiusTopRight() {
|
|
1282
1434
|
return this.i.lg ? this.i.lg.e : NaN;
|
|
1283
1435
|
}
|
|
1284
1436
|
set outlinedCornerRadiusTopRight(v) {
|
|
1285
1437
|
this.ensureOutlinedCornerRadius();
|
|
1286
|
-
|
|
1438
|
+
const __nv = +v;
|
|
1439
|
+
if (this.i.lg.e === __nv) {
|
|
1440
|
+
return;
|
|
1441
|
+
}
|
|
1442
|
+
const __copy = new CornerRadius(2);
|
|
1443
|
+
__copy.e = __nv;
|
|
1444
|
+
__copy.c = this.i.lg.c;
|
|
1445
|
+
__copy.b = this.i.lg.b;
|
|
1446
|
+
__copy.d = this.i.lg.d;
|
|
1447
|
+
this.i.lg = __copy;
|
|
1287
1448
|
this._a("outlinedCornerRadiusTopRight", this.i.lg.e);
|
|
1288
|
-
this.i.lg = this.i.lg;
|
|
1289
1449
|
}
|
|
1290
1450
|
ensureOutlinedCornerRadius() {
|
|
1291
1451
|
if (this.i.lg) {
|
|
@@ -1458,36 +1618,68 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
1458
1618
|
}
|
|
1459
1619
|
set fabCornerRadiusBottomRight(v) {
|
|
1460
1620
|
this.ensureFabCornerRadius();
|
|
1461
|
-
|
|
1621
|
+
const __nv = +v;
|
|
1622
|
+
if (this.i.lc.c === __nv) {
|
|
1623
|
+
return;
|
|
1624
|
+
}
|
|
1625
|
+
const __copy = new CornerRadius(2);
|
|
1626
|
+
__copy.c = __nv;
|
|
1627
|
+
__copy.b = this.i.lc.b;
|
|
1628
|
+
__copy.d = this.i.lc.d;
|
|
1629
|
+
__copy.e = this.i.lc.e;
|
|
1630
|
+
this.i.lc = __copy;
|
|
1462
1631
|
this._a("fabCornerRadiusBottomRight", this.i.lc.c);
|
|
1463
|
-
this.i.lc = this.i.lc;
|
|
1464
1632
|
}
|
|
1465
1633
|
get fabCornerRadiusBottomLeft() {
|
|
1466
1634
|
return this.i.lc ? this.i.lc.b : NaN;
|
|
1467
1635
|
}
|
|
1468
1636
|
set fabCornerRadiusBottomLeft(v) {
|
|
1469
1637
|
this.ensureFabCornerRadius();
|
|
1470
|
-
|
|
1638
|
+
const __nv = +v;
|
|
1639
|
+
if (this.i.lc.b === __nv) {
|
|
1640
|
+
return;
|
|
1641
|
+
}
|
|
1642
|
+
const __copy = new CornerRadius(2);
|
|
1643
|
+
__copy.b = __nv;
|
|
1644
|
+
__copy.c = this.i.lc.c;
|
|
1645
|
+
__copy.d = this.i.lc.d;
|
|
1646
|
+
__copy.e = this.i.lc.e;
|
|
1647
|
+
this.i.lc = __copy;
|
|
1471
1648
|
this._a("fabCornerRadiusBottomLeft", this.i.lc.b);
|
|
1472
|
-
this.i.lc = this.i.lc;
|
|
1473
1649
|
}
|
|
1474
1650
|
get fabCornerRadiusTopLeft() {
|
|
1475
1651
|
return this.i.lc ? this.i.lc.d : NaN;
|
|
1476
1652
|
}
|
|
1477
1653
|
set fabCornerRadiusTopLeft(v) {
|
|
1478
1654
|
this.ensureFabCornerRadius();
|
|
1479
|
-
|
|
1655
|
+
const __nv = +v;
|
|
1656
|
+
if (this.i.lc.d === __nv) {
|
|
1657
|
+
return;
|
|
1658
|
+
}
|
|
1659
|
+
const __copy = new CornerRadius(2);
|
|
1660
|
+
__copy.d = __nv;
|
|
1661
|
+
__copy.c = this.i.lc.c;
|
|
1662
|
+
__copy.b = this.i.lc.b;
|
|
1663
|
+
__copy.e = this.i.lc.e;
|
|
1664
|
+
this.i.lc = __copy;
|
|
1480
1665
|
this._a("fabCornerRadiusTopLeft", this.i.lc.d);
|
|
1481
|
-
this.i.lc = this.i.lc;
|
|
1482
1666
|
}
|
|
1483
1667
|
get fabCornerRadiusTopRight() {
|
|
1484
1668
|
return this.i.lc ? this.i.lc.e : NaN;
|
|
1485
1669
|
}
|
|
1486
1670
|
set fabCornerRadiusTopRight(v) {
|
|
1487
1671
|
this.ensureFabCornerRadius();
|
|
1488
|
-
|
|
1672
|
+
const __nv = +v;
|
|
1673
|
+
if (this.i.lc.e === __nv) {
|
|
1674
|
+
return;
|
|
1675
|
+
}
|
|
1676
|
+
const __copy = new CornerRadius(2);
|
|
1677
|
+
__copy.e = __nv;
|
|
1678
|
+
__copy.c = this.i.lc.c;
|
|
1679
|
+
__copy.b = this.i.lc.b;
|
|
1680
|
+
__copy.d = this.i.lc.d;
|
|
1681
|
+
this.i.lc = __copy;
|
|
1489
1682
|
this._a("fabCornerRadiusTopRight", this.i.lc.e);
|
|
1490
|
-
this.i.lc = this.i.lc;
|
|
1491
1683
|
}
|
|
1492
1684
|
ensureFabCornerRadius() {
|
|
1493
1685
|
if (this.i.lc) {
|
|
@@ -1660,36 +1852,68 @@ let IgcXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
1660
1852
|
}
|
|
1661
1853
|
set iconCornerRadiusBottomRight(v) {
|
|
1662
1854
|
this.ensureIconCornerRadius();
|
|
1663
|
-
|
|
1855
|
+
const __nv = +v;
|
|
1856
|
+
if (this.i.lf.c === __nv) {
|
|
1857
|
+
return;
|
|
1858
|
+
}
|
|
1859
|
+
const __copy = new CornerRadius(2);
|
|
1860
|
+
__copy.c = __nv;
|
|
1861
|
+
__copy.b = this.i.lf.b;
|
|
1862
|
+
__copy.d = this.i.lf.d;
|
|
1863
|
+
__copy.e = this.i.lf.e;
|
|
1864
|
+
this.i.lf = __copy;
|
|
1664
1865
|
this._a("iconCornerRadiusBottomRight", this.i.lf.c);
|
|
1665
|
-
this.i.lf = this.i.lf;
|
|
1666
1866
|
}
|
|
1667
1867
|
get iconCornerRadiusBottomLeft() {
|
|
1668
1868
|
return this.i.lf ? this.i.lf.b : NaN;
|
|
1669
1869
|
}
|
|
1670
1870
|
set iconCornerRadiusBottomLeft(v) {
|
|
1671
1871
|
this.ensureIconCornerRadius();
|
|
1672
|
-
|
|
1872
|
+
const __nv = +v;
|
|
1873
|
+
if (this.i.lf.b === __nv) {
|
|
1874
|
+
return;
|
|
1875
|
+
}
|
|
1876
|
+
const __copy = new CornerRadius(2);
|
|
1877
|
+
__copy.b = __nv;
|
|
1878
|
+
__copy.c = this.i.lf.c;
|
|
1879
|
+
__copy.d = this.i.lf.d;
|
|
1880
|
+
__copy.e = this.i.lf.e;
|
|
1881
|
+
this.i.lf = __copy;
|
|
1673
1882
|
this._a("iconCornerRadiusBottomLeft", this.i.lf.b);
|
|
1674
|
-
this.i.lf = this.i.lf;
|
|
1675
1883
|
}
|
|
1676
1884
|
get iconCornerRadiusTopLeft() {
|
|
1677
1885
|
return this.i.lf ? this.i.lf.d : NaN;
|
|
1678
1886
|
}
|
|
1679
1887
|
set iconCornerRadiusTopLeft(v) {
|
|
1680
1888
|
this.ensureIconCornerRadius();
|
|
1681
|
-
|
|
1889
|
+
const __nv = +v;
|
|
1890
|
+
if (this.i.lf.d === __nv) {
|
|
1891
|
+
return;
|
|
1892
|
+
}
|
|
1893
|
+
const __copy = new CornerRadius(2);
|
|
1894
|
+
__copy.d = __nv;
|
|
1895
|
+
__copy.c = this.i.lf.c;
|
|
1896
|
+
__copy.b = this.i.lf.b;
|
|
1897
|
+
__copy.e = this.i.lf.e;
|
|
1898
|
+
this.i.lf = __copy;
|
|
1682
1899
|
this._a("iconCornerRadiusTopLeft", this.i.lf.d);
|
|
1683
|
-
this.i.lf = this.i.lf;
|
|
1684
1900
|
}
|
|
1685
1901
|
get iconCornerRadiusTopRight() {
|
|
1686
1902
|
return this.i.lf ? this.i.lf.e : NaN;
|
|
1687
1903
|
}
|
|
1688
1904
|
set iconCornerRadiusTopRight(v) {
|
|
1689
1905
|
this.ensureIconCornerRadius();
|
|
1690
|
-
|
|
1906
|
+
const __nv = +v;
|
|
1907
|
+
if (this.i.lf.e === __nv) {
|
|
1908
|
+
return;
|
|
1909
|
+
}
|
|
1910
|
+
const __copy = new CornerRadius(2);
|
|
1911
|
+
__copy.e = __nv;
|
|
1912
|
+
__copy.c = this.i.lf.c;
|
|
1913
|
+
__copy.b = this.i.lf.b;
|
|
1914
|
+
__copy.d = this.i.lf.d;
|
|
1915
|
+
this.i.lf = __copy;
|
|
1691
1916
|
this._a("iconCornerRadiusTopRight", this.i.lf.e);
|
|
1692
|
-
this.i.lf = this.i.lf;
|
|
1693
1917
|
}
|
|
1694
1918
|
ensureIconCornerRadius() {
|
|
1695
1919
|
if (this.i.lf) {
|