igniteui-angular-inputs 21.1.0-beta.2 → 21.1.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-angular-inputs.umd.js +766 -158
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/CheckboxView_combined.js +7 -7
- package/esm2015/lib/igx-x-button-component.js +280 -56
- package/esm2015/lib/igx-x-input-group-component.js +480 -96
- package/esm5/lib/CheckboxView_combined.js +7 -7
- package/esm5/lib/igx-x-button-component.js +280 -56
- package/esm5/lib/igx-x-input-group-component.js +480 -96
- package/fesm2015/igniteui-angular-inputs.js +766 -158
- package/fesm5/igniteui-angular-inputs.js +766 -158
- package/package.json +2 -2
|
@@ -22,8 +22,8 @@ import { Thickness } from "igniteui-angular-core";
|
|
|
22
22
|
import { CheckboxChangeEventArgs } from "./CheckboxChangeEventArgs";
|
|
23
23
|
import { AnimationKeyFrameProperty } from "igniteui-angular-core";
|
|
24
24
|
import { TransformGroup } from "igniteui-angular-core";
|
|
25
|
-
import { RotateTransform } from "igniteui-angular-core";
|
|
26
25
|
import { TranslateTransform } from "igniteui-angular-core";
|
|
26
|
+
import { RotateTransform } from "igniteui-angular-core";
|
|
27
27
|
import { CheckboxVisualModelExport } from "./CheckboxVisualModelExport";
|
|
28
28
|
import { AppearanceHelper } from "igniteui-angular-core";
|
|
29
29
|
import { Dictionary$2 } from "igniteui-angular-core";
|
|
@@ -940,13 +940,13 @@ export let XCheckbox = /*@__PURE__*/ (() => {
|
|
|
940
940
|
let g = new TransformGroup();
|
|
941
941
|
let h = this.view.am();
|
|
942
942
|
g.j.add(((() => {
|
|
943
|
-
let $ret = new
|
|
944
|
-
$ret.j =
|
|
943
|
+
let $ret = new TranslateTransform();
|
|
944
|
+
$ret.j = this.ap / 24 * -16;
|
|
945
945
|
return $ret;
|
|
946
946
|
})()));
|
|
947
947
|
g.j.add(((() => {
|
|
948
|
-
let $ret = new
|
|
949
|
-
$ret.j =
|
|
948
|
+
let $ret = new RotateTransform();
|
|
949
|
+
$ret.j = 45;
|
|
950
950
|
return $ret;
|
|
951
951
|
})()));
|
|
952
952
|
NativeUI.n(d, this.c8);
|
|
@@ -1086,7 +1086,7 @@ export let XCheckbox = /*@__PURE__*/ (() => {
|
|
|
1086
1086
|
})()));
|
|
1087
1087
|
XCheckbox.j = ThemeResolver.a(((() => {
|
|
1088
1088
|
let $ret = new Dictionary$2(String_$type, Base.$, 0);
|
|
1089
|
-
$ret.addItem("CheckPath", "
|
|
1089
|
+
$ret.addItem("CheckPath", "M4.1,12.7 9,17.6 20.3,6.3");
|
|
1090
1090
|
$ret.addItem("UncheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1091
1091
|
$ret.addItem("CheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1092
1092
|
$ret.addItem("UncheckedBackgroundColor", BrushUtil.l(255, 255, 255, 255));
|
|
@@ -1099,7 +1099,7 @@ export let XCheckbox = /*@__PURE__*/ (() => {
|
|
|
1099
1099
|
})()));
|
|
1100
1100
|
XCheckbox.i = ThemeResolver.a(((() => {
|
|
1101
1101
|
let $ret = new Dictionary$2(String_$type, Base.$, 0);
|
|
1102
|
-
$ret.addItem("CheckPath", "
|
|
1102
|
+
$ret.addItem("CheckPath", "M4.1,12.7 9,17.6 20.3,6.3");
|
|
1103
1103
|
$ret.addItem("UncheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1104
1104
|
$ret.addItem("CheckedBorderColor", BrushUtil.l(255, 105, 136, 255));
|
|
1105
1105
|
$ret.addItem("UncheckedBackgroundColor", BrushUtil.l(255, 55, 63, 86));
|
|
@@ -233,32 +233,64 @@ export let IgxXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
233
233
|
}
|
|
234
234
|
set actualCornerRadiusBottomRight(v) {
|
|
235
235
|
this.ensureActualCornerRadius();
|
|
236
|
-
|
|
237
|
-
this.i.k4
|
|
236
|
+
const __nv = +v;
|
|
237
|
+
if (this.i.k4.c === __nv) {
|
|
238
|
+
return;
|
|
239
|
+
}
|
|
240
|
+
const __copy = new CornerRadius(2);
|
|
241
|
+
__copy.c = __nv;
|
|
242
|
+
__copy.b = this.i.k4.b;
|
|
243
|
+
__copy.d = this.i.k4.d;
|
|
244
|
+
__copy.e = this.i.k4.e;
|
|
245
|
+
this.i.k4 = __copy;
|
|
238
246
|
}
|
|
239
247
|
get actualCornerRadiusBottomLeft() {
|
|
240
248
|
return this.i.k4 ? this.i.k4.b : NaN;
|
|
241
249
|
}
|
|
242
250
|
set actualCornerRadiusBottomLeft(v) {
|
|
243
251
|
this.ensureActualCornerRadius();
|
|
244
|
-
|
|
245
|
-
this.i.k4
|
|
252
|
+
const __nv = +v;
|
|
253
|
+
if (this.i.k4.b === __nv) {
|
|
254
|
+
return;
|
|
255
|
+
}
|
|
256
|
+
const __copy = new CornerRadius(2);
|
|
257
|
+
__copy.b = __nv;
|
|
258
|
+
__copy.c = this.i.k4.c;
|
|
259
|
+
__copy.d = this.i.k4.d;
|
|
260
|
+
__copy.e = this.i.k4.e;
|
|
261
|
+
this.i.k4 = __copy;
|
|
246
262
|
}
|
|
247
263
|
get actualCornerRadiusTopLeft() {
|
|
248
264
|
return this.i.k4 ? this.i.k4.d : NaN;
|
|
249
265
|
}
|
|
250
266
|
set actualCornerRadiusTopLeft(v) {
|
|
251
267
|
this.ensureActualCornerRadius();
|
|
252
|
-
|
|
253
|
-
this.i.k4
|
|
268
|
+
const __nv = +v;
|
|
269
|
+
if (this.i.k4.d === __nv) {
|
|
270
|
+
return;
|
|
271
|
+
}
|
|
272
|
+
const __copy = new CornerRadius(2);
|
|
273
|
+
__copy.d = __nv;
|
|
274
|
+
__copy.c = this.i.k4.c;
|
|
275
|
+
__copy.b = this.i.k4.b;
|
|
276
|
+
__copy.e = this.i.k4.e;
|
|
277
|
+
this.i.k4 = __copy;
|
|
254
278
|
}
|
|
255
279
|
get actualCornerRadiusTopRight() {
|
|
256
280
|
return this.i.k4 ? this.i.k4.e : NaN;
|
|
257
281
|
}
|
|
258
282
|
set actualCornerRadiusTopRight(v) {
|
|
259
283
|
this.ensureActualCornerRadius();
|
|
260
|
-
|
|
261
|
-
this.i.k4
|
|
284
|
+
const __nv = +v;
|
|
285
|
+
if (this.i.k4.e === __nv) {
|
|
286
|
+
return;
|
|
287
|
+
}
|
|
288
|
+
const __copy = new CornerRadius(2);
|
|
289
|
+
__copy.e = __nv;
|
|
290
|
+
__copy.c = this.i.k4.c;
|
|
291
|
+
__copy.b = this.i.k4.b;
|
|
292
|
+
__copy.d = this.i.k4.d;
|
|
293
|
+
this.i.k4 = __copy;
|
|
262
294
|
}
|
|
263
295
|
ensureActualCornerRadius() {
|
|
264
296
|
if (this.i.k4) {
|
|
@@ -478,32 +510,64 @@ export let IgxXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
478
510
|
}
|
|
479
511
|
set raisedCornerRadiusBottomRight(v) {
|
|
480
512
|
this.ensureRaisedCornerRadius();
|
|
481
|
-
|
|
482
|
-
this.i.lh
|
|
513
|
+
const __nv = +v;
|
|
514
|
+
if (this.i.lh.c === __nv) {
|
|
515
|
+
return;
|
|
516
|
+
}
|
|
517
|
+
const __copy = new CornerRadius(2);
|
|
518
|
+
__copy.c = __nv;
|
|
519
|
+
__copy.b = this.i.lh.b;
|
|
520
|
+
__copy.d = this.i.lh.d;
|
|
521
|
+
__copy.e = this.i.lh.e;
|
|
522
|
+
this.i.lh = __copy;
|
|
483
523
|
}
|
|
484
524
|
get raisedCornerRadiusBottomLeft() {
|
|
485
525
|
return this.i.lh ? this.i.lh.b : NaN;
|
|
486
526
|
}
|
|
487
527
|
set raisedCornerRadiusBottomLeft(v) {
|
|
488
528
|
this.ensureRaisedCornerRadius();
|
|
489
|
-
|
|
490
|
-
this.i.lh
|
|
529
|
+
const __nv = +v;
|
|
530
|
+
if (this.i.lh.b === __nv) {
|
|
531
|
+
return;
|
|
532
|
+
}
|
|
533
|
+
const __copy = new CornerRadius(2);
|
|
534
|
+
__copy.b = __nv;
|
|
535
|
+
__copy.c = this.i.lh.c;
|
|
536
|
+
__copy.d = this.i.lh.d;
|
|
537
|
+
__copy.e = this.i.lh.e;
|
|
538
|
+
this.i.lh = __copy;
|
|
491
539
|
}
|
|
492
540
|
get raisedCornerRadiusTopLeft() {
|
|
493
541
|
return this.i.lh ? this.i.lh.d : NaN;
|
|
494
542
|
}
|
|
495
543
|
set raisedCornerRadiusTopLeft(v) {
|
|
496
544
|
this.ensureRaisedCornerRadius();
|
|
497
|
-
|
|
498
|
-
this.i.lh
|
|
545
|
+
const __nv = +v;
|
|
546
|
+
if (this.i.lh.d === __nv) {
|
|
547
|
+
return;
|
|
548
|
+
}
|
|
549
|
+
const __copy = new CornerRadius(2);
|
|
550
|
+
__copy.d = __nv;
|
|
551
|
+
__copy.c = this.i.lh.c;
|
|
552
|
+
__copy.b = this.i.lh.b;
|
|
553
|
+
__copy.e = this.i.lh.e;
|
|
554
|
+
this.i.lh = __copy;
|
|
499
555
|
}
|
|
500
556
|
get raisedCornerRadiusTopRight() {
|
|
501
557
|
return this.i.lh ? this.i.lh.e : NaN;
|
|
502
558
|
}
|
|
503
559
|
set raisedCornerRadiusTopRight(v) {
|
|
504
560
|
this.ensureRaisedCornerRadius();
|
|
505
|
-
|
|
506
|
-
this.i.lh
|
|
561
|
+
const __nv = +v;
|
|
562
|
+
if (this.i.lh.e === __nv) {
|
|
563
|
+
return;
|
|
564
|
+
}
|
|
565
|
+
const __copy = new CornerRadius(2);
|
|
566
|
+
__copy.e = __nv;
|
|
567
|
+
__copy.c = this.i.lh.c;
|
|
568
|
+
__copy.b = this.i.lh.b;
|
|
569
|
+
__copy.d = this.i.lh.d;
|
|
570
|
+
this.i.lh = __copy;
|
|
507
571
|
}
|
|
508
572
|
ensureRaisedCornerRadius() {
|
|
509
573
|
if (this.i.lh) {
|
|
@@ -669,32 +733,64 @@ export let IgxXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
669
733
|
}
|
|
670
734
|
set flatCornerRadiusBottomRight(v) {
|
|
671
735
|
this.ensureFlatCornerRadius();
|
|
672
|
-
|
|
673
|
-
this.i.ld
|
|
736
|
+
const __nv = +v;
|
|
737
|
+
if (this.i.ld.c === __nv) {
|
|
738
|
+
return;
|
|
739
|
+
}
|
|
740
|
+
const __copy = new CornerRadius(2);
|
|
741
|
+
__copy.c = __nv;
|
|
742
|
+
__copy.b = this.i.ld.b;
|
|
743
|
+
__copy.d = this.i.ld.d;
|
|
744
|
+
__copy.e = this.i.ld.e;
|
|
745
|
+
this.i.ld = __copy;
|
|
674
746
|
}
|
|
675
747
|
get flatCornerRadiusBottomLeft() {
|
|
676
748
|
return this.i.ld ? this.i.ld.b : NaN;
|
|
677
749
|
}
|
|
678
750
|
set flatCornerRadiusBottomLeft(v) {
|
|
679
751
|
this.ensureFlatCornerRadius();
|
|
680
|
-
|
|
681
|
-
this.i.ld
|
|
752
|
+
const __nv = +v;
|
|
753
|
+
if (this.i.ld.b === __nv) {
|
|
754
|
+
return;
|
|
755
|
+
}
|
|
756
|
+
const __copy = new CornerRadius(2);
|
|
757
|
+
__copy.b = __nv;
|
|
758
|
+
__copy.c = this.i.ld.c;
|
|
759
|
+
__copy.d = this.i.ld.d;
|
|
760
|
+
__copy.e = this.i.ld.e;
|
|
761
|
+
this.i.ld = __copy;
|
|
682
762
|
}
|
|
683
763
|
get flatCornerRadiusTopLeft() {
|
|
684
764
|
return this.i.ld ? this.i.ld.d : NaN;
|
|
685
765
|
}
|
|
686
766
|
set flatCornerRadiusTopLeft(v) {
|
|
687
767
|
this.ensureFlatCornerRadius();
|
|
688
|
-
|
|
689
|
-
this.i.ld
|
|
768
|
+
const __nv = +v;
|
|
769
|
+
if (this.i.ld.d === __nv) {
|
|
770
|
+
return;
|
|
771
|
+
}
|
|
772
|
+
const __copy = new CornerRadius(2);
|
|
773
|
+
__copy.d = __nv;
|
|
774
|
+
__copy.c = this.i.ld.c;
|
|
775
|
+
__copy.b = this.i.ld.b;
|
|
776
|
+
__copy.e = this.i.ld.e;
|
|
777
|
+
this.i.ld = __copy;
|
|
690
778
|
}
|
|
691
779
|
get flatCornerRadiusTopRight() {
|
|
692
780
|
return this.i.ld ? this.i.ld.e : NaN;
|
|
693
781
|
}
|
|
694
782
|
set flatCornerRadiusTopRight(v) {
|
|
695
783
|
this.ensureFlatCornerRadius();
|
|
696
|
-
|
|
697
|
-
this.i.ld
|
|
784
|
+
const __nv = +v;
|
|
785
|
+
if (this.i.ld.e === __nv) {
|
|
786
|
+
return;
|
|
787
|
+
}
|
|
788
|
+
const __copy = new CornerRadius(2);
|
|
789
|
+
__copy.e = __nv;
|
|
790
|
+
__copy.c = this.i.ld.c;
|
|
791
|
+
__copy.b = this.i.ld.b;
|
|
792
|
+
__copy.d = this.i.ld.d;
|
|
793
|
+
this.i.ld = __copy;
|
|
698
794
|
}
|
|
699
795
|
ensureFlatCornerRadius() {
|
|
700
796
|
if (this.i.ld) {
|
|
@@ -910,32 +1006,64 @@ export let IgxXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
910
1006
|
}
|
|
911
1007
|
set cornerRadiusBottomRight(v) {
|
|
912
1008
|
this.ensureCornerRadius();
|
|
913
|
-
|
|
914
|
-
this.i.k6
|
|
1009
|
+
const __nv = +v;
|
|
1010
|
+
if (this.i.k6.c === __nv) {
|
|
1011
|
+
return;
|
|
1012
|
+
}
|
|
1013
|
+
const __copy = new CornerRadius(2);
|
|
1014
|
+
__copy.c = __nv;
|
|
1015
|
+
__copy.b = this.i.k6.b;
|
|
1016
|
+
__copy.d = this.i.k6.d;
|
|
1017
|
+
__copy.e = this.i.k6.e;
|
|
1018
|
+
this.i.k6 = __copy;
|
|
915
1019
|
}
|
|
916
1020
|
get cornerRadiusBottomLeft() {
|
|
917
1021
|
return this.i.k6 ? this.i.k6.b : NaN;
|
|
918
1022
|
}
|
|
919
1023
|
set cornerRadiusBottomLeft(v) {
|
|
920
1024
|
this.ensureCornerRadius();
|
|
921
|
-
|
|
922
|
-
this.i.k6
|
|
1025
|
+
const __nv = +v;
|
|
1026
|
+
if (this.i.k6.b === __nv) {
|
|
1027
|
+
return;
|
|
1028
|
+
}
|
|
1029
|
+
const __copy = new CornerRadius(2);
|
|
1030
|
+
__copy.b = __nv;
|
|
1031
|
+
__copy.c = this.i.k6.c;
|
|
1032
|
+
__copy.d = this.i.k6.d;
|
|
1033
|
+
__copy.e = this.i.k6.e;
|
|
1034
|
+
this.i.k6 = __copy;
|
|
923
1035
|
}
|
|
924
1036
|
get cornerRadiusTopLeft() {
|
|
925
1037
|
return this.i.k6 ? this.i.k6.d : NaN;
|
|
926
1038
|
}
|
|
927
1039
|
set cornerRadiusTopLeft(v) {
|
|
928
1040
|
this.ensureCornerRadius();
|
|
929
|
-
|
|
930
|
-
this.i.k6
|
|
1041
|
+
const __nv = +v;
|
|
1042
|
+
if (this.i.k6.d === __nv) {
|
|
1043
|
+
return;
|
|
1044
|
+
}
|
|
1045
|
+
const __copy = new CornerRadius(2);
|
|
1046
|
+
__copy.d = __nv;
|
|
1047
|
+
__copy.c = this.i.k6.c;
|
|
1048
|
+
__copy.b = this.i.k6.b;
|
|
1049
|
+
__copy.e = this.i.k6.e;
|
|
1050
|
+
this.i.k6 = __copy;
|
|
931
1051
|
}
|
|
932
1052
|
get cornerRadiusTopRight() {
|
|
933
1053
|
return this.i.k6 ? this.i.k6.e : NaN;
|
|
934
1054
|
}
|
|
935
1055
|
set cornerRadiusTopRight(v) {
|
|
936
1056
|
this.ensureCornerRadius();
|
|
937
|
-
|
|
938
|
-
this.i.k6
|
|
1057
|
+
const __nv = +v;
|
|
1058
|
+
if (this.i.k6.e === __nv) {
|
|
1059
|
+
return;
|
|
1060
|
+
}
|
|
1061
|
+
const __copy = new CornerRadius(2);
|
|
1062
|
+
__copy.e = __nv;
|
|
1063
|
+
__copy.c = this.i.k6.c;
|
|
1064
|
+
__copy.b = this.i.k6.b;
|
|
1065
|
+
__copy.d = this.i.k6.d;
|
|
1066
|
+
this.i.k6 = __copy;
|
|
939
1067
|
}
|
|
940
1068
|
ensureCornerRadius() {
|
|
941
1069
|
if (this.i.k6) {
|
|
@@ -1047,32 +1175,64 @@ export let IgxXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
1047
1175
|
}
|
|
1048
1176
|
set outlinedCornerRadiusBottomRight(v) {
|
|
1049
1177
|
this.ensureOutlinedCornerRadius();
|
|
1050
|
-
|
|
1051
|
-
this.i.lg
|
|
1178
|
+
const __nv = +v;
|
|
1179
|
+
if (this.i.lg.c === __nv) {
|
|
1180
|
+
return;
|
|
1181
|
+
}
|
|
1182
|
+
const __copy = new CornerRadius(2);
|
|
1183
|
+
__copy.c = __nv;
|
|
1184
|
+
__copy.b = this.i.lg.b;
|
|
1185
|
+
__copy.d = this.i.lg.d;
|
|
1186
|
+
__copy.e = this.i.lg.e;
|
|
1187
|
+
this.i.lg = __copy;
|
|
1052
1188
|
}
|
|
1053
1189
|
get outlinedCornerRadiusBottomLeft() {
|
|
1054
1190
|
return this.i.lg ? this.i.lg.b : NaN;
|
|
1055
1191
|
}
|
|
1056
1192
|
set outlinedCornerRadiusBottomLeft(v) {
|
|
1057
1193
|
this.ensureOutlinedCornerRadius();
|
|
1058
|
-
|
|
1059
|
-
this.i.lg
|
|
1194
|
+
const __nv = +v;
|
|
1195
|
+
if (this.i.lg.b === __nv) {
|
|
1196
|
+
return;
|
|
1197
|
+
}
|
|
1198
|
+
const __copy = new CornerRadius(2);
|
|
1199
|
+
__copy.b = __nv;
|
|
1200
|
+
__copy.c = this.i.lg.c;
|
|
1201
|
+
__copy.d = this.i.lg.d;
|
|
1202
|
+
__copy.e = this.i.lg.e;
|
|
1203
|
+
this.i.lg = __copy;
|
|
1060
1204
|
}
|
|
1061
1205
|
get outlinedCornerRadiusTopLeft() {
|
|
1062
1206
|
return this.i.lg ? this.i.lg.d : NaN;
|
|
1063
1207
|
}
|
|
1064
1208
|
set outlinedCornerRadiusTopLeft(v) {
|
|
1065
1209
|
this.ensureOutlinedCornerRadius();
|
|
1066
|
-
|
|
1067
|
-
this.i.lg
|
|
1210
|
+
const __nv = +v;
|
|
1211
|
+
if (this.i.lg.d === __nv) {
|
|
1212
|
+
return;
|
|
1213
|
+
}
|
|
1214
|
+
const __copy = new CornerRadius(2);
|
|
1215
|
+
__copy.d = __nv;
|
|
1216
|
+
__copy.c = this.i.lg.c;
|
|
1217
|
+
__copy.b = this.i.lg.b;
|
|
1218
|
+
__copy.e = this.i.lg.e;
|
|
1219
|
+
this.i.lg = __copy;
|
|
1068
1220
|
}
|
|
1069
1221
|
get outlinedCornerRadiusTopRight() {
|
|
1070
1222
|
return this.i.lg ? this.i.lg.e : NaN;
|
|
1071
1223
|
}
|
|
1072
1224
|
set outlinedCornerRadiusTopRight(v) {
|
|
1073
1225
|
this.ensureOutlinedCornerRadius();
|
|
1074
|
-
|
|
1075
|
-
this.i.lg
|
|
1226
|
+
const __nv = +v;
|
|
1227
|
+
if (this.i.lg.e === __nv) {
|
|
1228
|
+
return;
|
|
1229
|
+
}
|
|
1230
|
+
const __copy = new CornerRadius(2);
|
|
1231
|
+
__copy.e = __nv;
|
|
1232
|
+
__copy.c = this.i.lg.c;
|
|
1233
|
+
__copy.b = this.i.lg.b;
|
|
1234
|
+
__copy.d = this.i.lg.d;
|
|
1235
|
+
this.i.lg = __copy;
|
|
1076
1236
|
}
|
|
1077
1237
|
ensureOutlinedCornerRadius() {
|
|
1078
1238
|
if (this.i.lg) {
|
|
@@ -1229,32 +1389,64 @@ export let IgxXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
1229
1389
|
}
|
|
1230
1390
|
set fabCornerRadiusBottomRight(v) {
|
|
1231
1391
|
this.ensureFabCornerRadius();
|
|
1232
|
-
|
|
1233
|
-
this.i.lc
|
|
1392
|
+
const __nv = +v;
|
|
1393
|
+
if (this.i.lc.c === __nv) {
|
|
1394
|
+
return;
|
|
1395
|
+
}
|
|
1396
|
+
const __copy = new CornerRadius(2);
|
|
1397
|
+
__copy.c = __nv;
|
|
1398
|
+
__copy.b = this.i.lc.b;
|
|
1399
|
+
__copy.d = this.i.lc.d;
|
|
1400
|
+
__copy.e = this.i.lc.e;
|
|
1401
|
+
this.i.lc = __copy;
|
|
1234
1402
|
}
|
|
1235
1403
|
get fabCornerRadiusBottomLeft() {
|
|
1236
1404
|
return this.i.lc ? this.i.lc.b : NaN;
|
|
1237
1405
|
}
|
|
1238
1406
|
set fabCornerRadiusBottomLeft(v) {
|
|
1239
1407
|
this.ensureFabCornerRadius();
|
|
1240
|
-
|
|
1241
|
-
this.i.lc
|
|
1408
|
+
const __nv = +v;
|
|
1409
|
+
if (this.i.lc.b === __nv) {
|
|
1410
|
+
return;
|
|
1411
|
+
}
|
|
1412
|
+
const __copy = new CornerRadius(2);
|
|
1413
|
+
__copy.b = __nv;
|
|
1414
|
+
__copy.c = this.i.lc.c;
|
|
1415
|
+
__copy.d = this.i.lc.d;
|
|
1416
|
+
__copy.e = this.i.lc.e;
|
|
1417
|
+
this.i.lc = __copy;
|
|
1242
1418
|
}
|
|
1243
1419
|
get fabCornerRadiusTopLeft() {
|
|
1244
1420
|
return this.i.lc ? this.i.lc.d : NaN;
|
|
1245
1421
|
}
|
|
1246
1422
|
set fabCornerRadiusTopLeft(v) {
|
|
1247
1423
|
this.ensureFabCornerRadius();
|
|
1248
|
-
|
|
1249
|
-
this.i.lc
|
|
1424
|
+
const __nv = +v;
|
|
1425
|
+
if (this.i.lc.d === __nv) {
|
|
1426
|
+
return;
|
|
1427
|
+
}
|
|
1428
|
+
const __copy = new CornerRadius(2);
|
|
1429
|
+
__copy.d = __nv;
|
|
1430
|
+
__copy.c = this.i.lc.c;
|
|
1431
|
+
__copy.b = this.i.lc.b;
|
|
1432
|
+
__copy.e = this.i.lc.e;
|
|
1433
|
+
this.i.lc = __copy;
|
|
1250
1434
|
}
|
|
1251
1435
|
get fabCornerRadiusTopRight() {
|
|
1252
1436
|
return this.i.lc ? this.i.lc.e : NaN;
|
|
1253
1437
|
}
|
|
1254
1438
|
set fabCornerRadiusTopRight(v) {
|
|
1255
1439
|
this.ensureFabCornerRadius();
|
|
1256
|
-
|
|
1257
|
-
this.i.lc
|
|
1440
|
+
const __nv = +v;
|
|
1441
|
+
if (this.i.lc.e === __nv) {
|
|
1442
|
+
return;
|
|
1443
|
+
}
|
|
1444
|
+
const __copy = new CornerRadius(2);
|
|
1445
|
+
__copy.e = __nv;
|
|
1446
|
+
__copy.c = this.i.lc.c;
|
|
1447
|
+
__copy.b = this.i.lc.b;
|
|
1448
|
+
__copy.d = this.i.lc.d;
|
|
1449
|
+
this.i.lc = __copy;
|
|
1258
1450
|
}
|
|
1259
1451
|
ensureFabCornerRadius() {
|
|
1260
1452
|
if (this.i.lc) {
|
|
@@ -1411,32 +1603,64 @@ export let IgxXButtonComponent = /*@__PURE__*/ (() => {
|
|
|
1411
1603
|
}
|
|
1412
1604
|
set iconCornerRadiusBottomRight(v) {
|
|
1413
1605
|
this.ensureIconCornerRadius();
|
|
1414
|
-
|
|
1415
|
-
this.i.lf
|
|
1606
|
+
const __nv = +v;
|
|
1607
|
+
if (this.i.lf.c === __nv) {
|
|
1608
|
+
return;
|
|
1609
|
+
}
|
|
1610
|
+
const __copy = new CornerRadius(2);
|
|
1611
|
+
__copy.c = __nv;
|
|
1612
|
+
__copy.b = this.i.lf.b;
|
|
1613
|
+
__copy.d = this.i.lf.d;
|
|
1614
|
+
__copy.e = this.i.lf.e;
|
|
1615
|
+
this.i.lf = __copy;
|
|
1416
1616
|
}
|
|
1417
1617
|
get iconCornerRadiusBottomLeft() {
|
|
1418
1618
|
return this.i.lf ? this.i.lf.b : NaN;
|
|
1419
1619
|
}
|
|
1420
1620
|
set iconCornerRadiusBottomLeft(v) {
|
|
1421
1621
|
this.ensureIconCornerRadius();
|
|
1422
|
-
|
|
1423
|
-
this.i.lf
|
|
1622
|
+
const __nv = +v;
|
|
1623
|
+
if (this.i.lf.b === __nv) {
|
|
1624
|
+
return;
|
|
1625
|
+
}
|
|
1626
|
+
const __copy = new CornerRadius(2);
|
|
1627
|
+
__copy.b = __nv;
|
|
1628
|
+
__copy.c = this.i.lf.c;
|
|
1629
|
+
__copy.d = this.i.lf.d;
|
|
1630
|
+
__copy.e = this.i.lf.e;
|
|
1631
|
+
this.i.lf = __copy;
|
|
1424
1632
|
}
|
|
1425
1633
|
get iconCornerRadiusTopLeft() {
|
|
1426
1634
|
return this.i.lf ? this.i.lf.d : NaN;
|
|
1427
1635
|
}
|
|
1428
1636
|
set iconCornerRadiusTopLeft(v) {
|
|
1429
1637
|
this.ensureIconCornerRadius();
|
|
1430
|
-
|
|
1431
|
-
this.i.lf
|
|
1638
|
+
const __nv = +v;
|
|
1639
|
+
if (this.i.lf.d === __nv) {
|
|
1640
|
+
return;
|
|
1641
|
+
}
|
|
1642
|
+
const __copy = new CornerRadius(2);
|
|
1643
|
+
__copy.d = __nv;
|
|
1644
|
+
__copy.c = this.i.lf.c;
|
|
1645
|
+
__copy.b = this.i.lf.b;
|
|
1646
|
+
__copy.e = this.i.lf.e;
|
|
1647
|
+
this.i.lf = __copy;
|
|
1432
1648
|
}
|
|
1433
1649
|
get iconCornerRadiusTopRight() {
|
|
1434
1650
|
return this.i.lf ? this.i.lf.e : NaN;
|
|
1435
1651
|
}
|
|
1436
1652
|
set iconCornerRadiusTopRight(v) {
|
|
1437
1653
|
this.ensureIconCornerRadius();
|
|
1438
|
-
|
|
1439
|
-
this.i.lf
|
|
1654
|
+
const __nv = +v;
|
|
1655
|
+
if (this.i.lf.e === __nv) {
|
|
1656
|
+
return;
|
|
1657
|
+
}
|
|
1658
|
+
const __copy = new CornerRadius(2);
|
|
1659
|
+
__copy.e = __nv;
|
|
1660
|
+
__copy.c = this.i.lf.c;
|
|
1661
|
+
__copy.b = this.i.lf.b;
|
|
1662
|
+
__copy.d = this.i.lf.d;
|
|
1663
|
+
this.i.lf = __copy;
|
|
1440
1664
|
}
|
|
1441
1665
|
ensureIconCornerRadius() {
|
|
1442
1666
|
if (this.i.lf) {
|