@homebound/beam 2.235.3 → 2.235.5
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/dist/Css.d.ts +152 -94
- package/dist/Css.js +395 -347
- package/dist/components/Filters/MultiFilter.js +15 -4
- package/dist/components/Filters/testDomain.d.ts +1 -0
- package/dist/components/Filters/testDomain.js +7 -1
- package/dist/components/Tabs.js +1 -1
- package/dist/inputs/Switch.js +1 -1
- package/dist/inputs/ToggleChipGroup.d.ts +7 -0
- package/dist/inputs/ToggleChipGroup.js +20 -13
- package/dist/inputs/internal/SelectFieldBase.d.ts +5 -1
- package/dist/inputs/internal/SelectFieldBase.js +2 -1
- package/package.json +2 -2
package/dist/Css.js
CHANGED
|
@@ -402,179 +402,179 @@ class CssBuilder {
|
|
|
402
402
|
// coordinates
|
|
403
403
|
/** Sets `top: "0px"`. */
|
|
404
404
|
get top0() {
|
|
405
|
-
return this.top
|
|
405
|
+
return this.add("top", "0px");
|
|
406
406
|
}
|
|
407
407
|
/** Sets `top: "8px"`. */
|
|
408
408
|
get top1() {
|
|
409
|
-
return this.top
|
|
409
|
+
return this.add("top", "8px");
|
|
410
410
|
}
|
|
411
411
|
/** Sets `top: "16px"`. */
|
|
412
412
|
get top2() {
|
|
413
|
-
return this.top
|
|
413
|
+
return this.add("top", "16px");
|
|
414
414
|
}
|
|
415
415
|
/** Sets `top: "24px"`. */
|
|
416
416
|
get top3() {
|
|
417
|
-
return this.top
|
|
417
|
+
return this.add("top", "24px");
|
|
418
418
|
}
|
|
419
419
|
/** Sets `top: "32px"`. */
|
|
420
420
|
get top4() {
|
|
421
|
-
return this.top
|
|
421
|
+
return this.add("top", "32px");
|
|
422
422
|
}
|
|
423
423
|
/** Sets `top: "40px"`. */
|
|
424
424
|
get top5() {
|
|
425
|
-
return this.top
|
|
425
|
+
return this.add("top", "40px");
|
|
426
426
|
}
|
|
427
427
|
/** Sets `top: "48px"`. */
|
|
428
428
|
get top6() {
|
|
429
|
-
return this.top
|
|
429
|
+
return this.add("top", "48px");
|
|
430
430
|
}
|
|
431
431
|
/** Sets `top: "56px"`. */
|
|
432
432
|
get top7() {
|
|
433
|
-
return this.top
|
|
433
|
+
return this.add("top", "56px");
|
|
434
434
|
}
|
|
435
435
|
/** Sets `top: "64px"`. */
|
|
436
436
|
get top8() {
|
|
437
|
-
return this.top
|
|
437
|
+
return this.add("top", "64px");
|
|
438
438
|
}
|
|
439
|
-
/** Sets `top:
|
|
440
|
-
top(
|
|
441
|
-
return this.add("top", maybeInc(
|
|
439
|
+
/** Sets `top: "v"`. */
|
|
440
|
+
top(v) {
|
|
441
|
+
return this.add("top", maybeInc(v));
|
|
442
442
|
}
|
|
443
443
|
/** Sets `top: px`. */
|
|
444
444
|
topPx(px) {
|
|
445
|
-
return this.top
|
|
445
|
+
return this.add("top", `${px}px`);
|
|
446
446
|
}
|
|
447
447
|
/** Sets `right: "0px"`. */
|
|
448
448
|
get right0() {
|
|
449
|
-
return this.right
|
|
449
|
+
return this.add("right", "0px");
|
|
450
450
|
}
|
|
451
451
|
/** Sets `right: "8px"`. */
|
|
452
452
|
get right1() {
|
|
453
|
-
return this.right
|
|
453
|
+
return this.add("right", "8px");
|
|
454
454
|
}
|
|
455
455
|
/** Sets `right: "16px"`. */
|
|
456
456
|
get right2() {
|
|
457
|
-
return this.right
|
|
457
|
+
return this.add("right", "16px");
|
|
458
458
|
}
|
|
459
459
|
/** Sets `right: "24px"`. */
|
|
460
460
|
get right3() {
|
|
461
|
-
return this.right
|
|
461
|
+
return this.add("right", "24px");
|
|
462
462
|
}
|
|
463
463
|
/** Sets `right: "32px"`. */
|
|
464
464
|
get right4() {
|
|
465
|
-
return this.right
|
|
465
|
+
return this.add("right", "32px");
|
|
466
466
|
}
|
|
467
467
|
/** Sets `right: "40px"`. */
|
|
468
468
|
get right5() {
|
|
469
|
-
return this.right
|
|
469
|
+
return this.add("right", "40px");
|
|
470
470
|
}
|
|
471
471
|
/** Sets `right: "48px"`. */
|
|
472
472
|
get right6() {
|
|
473
|
-
return this.right
|
|
473
|
+
return this.add("right", "48px");
|
|
474
474
|
}
|
|
475
475
|
/** Sets `right: "56px"`. */
|
|
476
476
|
get right7() {
|
|
477
|
-
return this.right
|
|
477
|
+
return this.add("right", "56px");
|
|
478
478
|
}
|
|
479
479
|
/** Sets `right: "64px"`. */
|
|
480
480
|
get right8() {
|
|
481
|
-
return this.right
|
|
481
|
+
return this.add("right", "64px");
|
|
482
482
|
}
|
|
483
|
-
/** Sets `right:
|
|
484
|
-
right(
|
|
485
|
-
return this.add("right", maybeInc(
|
|
483
|
+
/** Sets `right: "v"`. */
|
|
484
|
+
right(v) {
|
|
485
|
+
return this.add("right", maybeInc(v));
|
|
486
486
|
}
|
|
487
487
|
/** Sets `right: px`. */
|
|
488
488
|
rightPx(px) {
|
|
489
|
-
return this.right
|
|
489
|
+
return this.add("right", `${px}px`);
|
|
490
490
|
}
|
|
491
491
|
/** Sets `bottom: "0px"`. */
|
|
492
492
|
get bottom0() {
|
|
493
|
-
return this.bottom
|
|
493
|
+
return this.add("bottom", "0px");
|
|
494
494
|
}
|
|
495
495
|
/** Sets `bottom: "8px"`. */
|
|
496
496
|
get bottom1() {
|
|
497
|
-
return this.bottom
|
|
497
|
+
return this.add("bottom", "8px");
|
|
498
498
|
}
|
|
499
499
|
/** Sets `bottom: "16px"`. */
|
|
500
500
|
get bottom2() {
|
|
501
|
-
return this.bottom
|
|
501
|
+
return this.add("bottom", "16px");
|
|
502
502
|
}
|
|
503
503
|
/** Sets `bottom: "24px"`. */
|
|
504
504
|
get bottom3() {
|
|
505
|
-
return this.bottom
|
|
505
|
+
return this.add("bottom", "24px");
|
|
506
506
|
}
|
|
507
507
|
/** Sets `bottom: "32px"`. */
|
|
508
508
|
get bottom4() {
|
|
509
|
-
return this.bottom
|
|
509
|
+
return this.add("bottom", "32px");
|
|
510
510
|
}
|
|
511
511
|
/** Sets `bottom: "40px"`. */
|
|
512
512
|
get bottom5() {
|
|
513
|
-
return this.bottom
|
|
513
|
+
return this.add("bottom", "40px");
|
|
514
514
|
}
|
|
515
515
|
/** Sets `bottom: "48px"`. */
|
|
516
516
|
get bottom6() {
|
|
517
|
-
return this.bottom
|
|
517
|
+
return this.add("bottom", "48px");
|
|
518
518
|
}
|
|
519
519
|
/** Sets `bottom: "56px"`. */
|
|
520
520
|
get bottom7() {
|
|
521
|
-
return this.bottom
|
|
521
|
+
return this.add("bottom", "56px");
|
|
522
522
|
}
|
|
523
523
|
/** Sets `bottom: "64px"`. */
|
|
524
524
|
get bottom8() {
|
|
525
|
-
return this.bottom
|
|
525
|
+
return this.add("bottom", "64px");
|
|
526
526
|
}
|
|
527
|
-
/** Sets `bottom:
|
|
528
|
-
bottom(
|
|
529
|
-
return this.add("bottom", maybeInc(
|
|
527
|
+
/** Sets `bottom: "v"`. */
|
|
528
|
+
bottom(v) {
|
|
529
|
+
return this.add("bottom", maybeInc(v));
|
|
530
530
|
}
|
|
531
531
|
/** Sets `bottom: px`. */
|
|
532
532
|
bottomPx(px) {
|
|
533
|
-
return this.bottom
|
|
533
|
+
return this.add("bottom", `${px}px`);
|
|
534
534
|
}
|
|
535
535
|
/** Sets `left: "0px"`. */
|
|
536
536
|
get left0() {
|
|
537
|
-
return this.left
|
|
537
|
+
return this.add("left", "0px");
|
|
538
538
|
}
|
|
539
539
|
/** Sets `left: "8px"`. */
|
|
540
540
|
get left1() {
|
|
541
|
-
return this.left
|
|
541
|
+
return this.add("left", "8px");
|
|
542
542
|
}
|
|
543
543
|
/** Sets `left: "16px"`. */
|
|
544
544
|
get left2() {
|
|
545
|
-
return this.left
|
|
545
|
+
return this.add("left", "16px");
|
|
546
546
|
}
|
|
547
547
|
/** Sets `left: "24px"`. */
|
|
548
548
|
get left3() {
|
|
549
|
-
return this.left
|
|
549
|
+
return this.add("left", "24px");
|
|
550
550
|
}
|
|
551
551
|
/** Sets `left: "32px"`. */
|
|
552
552
|
get left4() {
|
|
553
|
-
return this.left
|
|
553
|
+
return this.add("left", "32px");
|
|
554
554
|
}
|
|
555
555
|
/** Sets `left: "40px"`. */
|
|
556
556
|
get left5() {
|
|
557
|
-
return this.left
|
|
557
|
+
return this.add("left", "40px");
|
|
558
558
|
}
|
|
559
559
|
/** Sets `left: "48px"`. */
|
|
560
560
|
get left6() {
|
|
561
|
-
return this.left
|
|
561
|
+
return this.add("left", "48px");
|
|
562
562
|
}
|
|
563
563
|
/** Sets `left: "56px"`. */
|
|
564
564
|
get left7() {
|
|
565
|
-
return this.left
|
|
565
|
+
return this.add("left", "56px");
|
|
566
566
|
}
|
|
567
567
|
/** Sets `left: "64px"`. */
|
|
568
568
|
get left8() {
|
|
569
|
-
return this.left
|
|
569
|
+
return this.add("left", "64px");
|
|
570
570
|
}
|
|
571
|
-
/** Sets `left:
|
|
572
|
-
left(
|
|
573
|
-
return this.add("left", maybeInc(
|
|
571
|
+
/** Sets `left: "v"`. */
|
|
572
|
+
left(v) {
|
|
573
|
+
return this.add("left", maybeInc(v));
|
|
574
574
|
}
|
|
575
575
|
/** Sets `left: px`. */
|
|
576
576
|
leftPx(px) {
|
|
577
|
-
return this.left
|
|
577
|
+
return this.add("left", `${px}px`);
|
|
578
578
|
}
|
|
579
579
|
// cursor
|
|
580
580
|
/** Sets `cursor: "pointer"`. */
|
|
@@ -960,180 +960,184 @@ class CssBuilder {
|
|
|
960
960
|
}
|
|
961
961
|
/** Sets `gap: "0px"`. */
|
|
962
962
|
get gap0() {
|
|
963
|
-
return this.gap
|
|
963
|
+
return this.add("gap", "0px");
|
|
964
964
|
}
|
|
965
965
|
/** Sets `gap: "8px"`. */
|
|
966
966
|
get gap1() {
|
|
967
|
-
return this.gap
|
|
967
|
+
return this.add("gap", "8px");
|
|
968
968
|
}
|
|
969
969
|
/** Sets `gap: "16px"`. */
|
|
970
970
|
get gap2() {
|
|
971
|
-
return this.gap
|
|
971
|
+
return this.add("gap", "16px");
|
|
972
972
|
}
|
|
973
973
|
/** Sets `gap: "24px"`. */
|
|
974
974
|
get gap3() {
|
|
975
|
-
return this.gap
|
|
975
|
+
return this.add("gap", "24px");
|
|
976
976
|
}
|
|
977
977
|
/** Sets `gap: "32px"`. */
|
|
978
978
|
get gap4() {
|
|
979
|
-
return this.gap
|
|
979
|
+
return this.add("gap", "32px");
|
|
980
980
|
}
|
|
981
981
|
/** Sets `gap: "40px"`. */
|
|
982
982
|
get gap5() {
|
|
983
|
-
return this.gap
|
|
983
|
+
return this.add("gap", "40px");
|
|
984
984
|
}
|
|
985
985
|
/** Sets `gap: "48px"`. */
|
|
986
986
|
get gap6() {
|
|
987
|
-
return this.gap
|
|
987
|
+
return this.add("gap", "48px");
|
|
988
988
|
}
|
|
989
989
|
/** Sets `gap: "56px"`. */
|
|
990
990
|
get gap7() {
|
|
991
|
-
return this.gap
|
|
991
|
+
return this.add("gap", "56px");
|
|
992
992
|
}
|
|
993
993
|
/** Sets `gap: "64px"`. */
|
|
994
994
|
get gap8() {
|
|
995
|
-
return this.gap
|
|
995
|
+
return this.add("gap", "64px");
|
|
996
996
|
}
|
|
997
|
-
/** Sets `gap:
|
|
998
|
-
gap(
|
|
999
|
-
return this.add("gap", maybeInc(
|
|
997
|
+
/** Sets `gap: "v"`. */
|
|
998
|
+
gap(v) {
|
|
999
|
+
return this.add("gap", maybeInc(v));
|
|
1000
1000
|
}
|
|
1001
1001
|
/** Sets `gap: px`. */
|
|
1002
1002
|
gapPx(px) {
|
|
1003
|
-
return this.gap
|
|
1003
|
+
return this.add("gap", `${px}px`);
|
|
1004
1004
|
}
|
|
1005
1005
|
/** Sets `rowGap: "0px"`. */
|
|
1006
1006
|
get rg0() {
|
|
1007
|
-
return this.
|
|
1007
|
+
return this.add("rowGap", "0px");
|
|
1008
1008
|
}
|
|
1009
1009
|
/** Sets `rowGap: "8px"`. */
|
|
1010
1010
|
get rg1() {
|
|
1011
|
-
return this.
|
|
1011
|
+
return this.add("rowGap", "8px");
|
|
1012
1012
|
}
|
|
1013
1013
|
/** Sets `rowGap: "16px"`. */
|
|
1014
1014
|
get rg2() {
|
|
1015
|
-
return this.
|
|
1015
|
+
return this.add("rowGap", "16px");
|
|
1016
1016
|
}
|
|
1017
1017
|
/** Sets `rowGap: "24px"`. */
|
|
1018
1018
|
get rg3() {
|
|
1019
|
-
return this.
|
|
1019
|
+
return this.add("rowGap", "24px");
|
|
1020
1020
|
}
|
|
1021
1021
|
/** Sets `rowGap: "32px"`. */
|
|
1022
1022
|
get rg4() {
|
|
1023
|
-
return this.
|
|
1023
|
+
return this.add("rowGap", "32px");
|
|
1024
1024
|
}
|
|
1025
1025
|
/** Sets `rowGap: "40px"`. */
|
|
1026
1026
|
get rg5() {
|
|
1027
|
-
return this.
|
|
1027
|
+
return this.add("rowGap", "40px");
|
|
1028
1028
|
}
|
|
1029
1029
|
/** Sets `rowGap: "48px"`. */
|
|
1030
1030
|
get rg6() {
|
|
1031
|
-
return this.
|
|
1031
|
+
return this.add("rowGap", "48px");
|
|
1032
1032
|
}
|
|
1033
1033
|
/** Sets `rowGap: "56px"`. */
|
|
1034
1034
|
get rg7() {
|
|
1035
|
-
return this.
|
|
1035
|
+
return this.add("rowGap", "56px");
|
|
1036
1036
|
}
|
|
1037
1037
|
/** Sets `rowGap: "64px"`. */
|
|
1038
1038
|
get rg8() {
|
|
1039
|
-
return this.
|
|
1039
|
+
return this.add("rowGap", "64px");
|
|
1040
1040
|
}
|
|
1041
|
-
/** Sets `rowGap:
|
|
1042
|
-
rg(
|
|
1043
|
-
return this.add("rowGap", maybeInc(
|
|
1041
|
+
/** Sets `rowGap: "v"`. */
|
|
1042
|
+
rg(v) {
|
|
1043
|
+
return this.add("rowGap", maybeInc(v));
|
|
1044
1044
|
}
|
|
1045
1045
|
/** Sets `rowGap: px`. */
|
|
1046
1046
|
rgPx(px) {
|
|
1047
|
-
return this.
|
|
1047
|
+
return this.add("rowGap", `${px}px`);
|
|
1048
1048
|
}
|
|
1049
1049
|
/** Sets `columnGap: "0px"`. */
|
|
1050
1050
|
get cg0() {
|
|
1051
|
-
return this.
|
|
1051
|
+
return this.add("columnGap", "0px");
|
|
1052
1052
|
}
|
|
1053
1053
|
/** Sets `columnGap: "8px"`. */
|
|
1054
1054
|
get cg1() {
|
|
1055
|
-
return this.
|
|
1055
|
+
return this.add("columnGap", "8px");
|
|
1056
1056
|
}
|
|
1057
1057
|
/** Sets `columnGap: "16px"`. */
|
|
1058
1058
|
get cg2() {
|
|
1059
|
-
return this.
|
|
1059
|
+
return this.add("columnGap", "16px");
|
|
1060
1060
|
}
|
|
1061
1061
|
/** Sets `columnGap: "24px"`. */
|
|
1062
1062
|
get cg3() {
|
|
1063
|
-
return this.
|
|
1063
|
+
return this.add("columnGap", "24px");
|
|
1064
1064
|
}
|
|
1065
1065
|
/** Sets `columnGap: "32px"`. */
|
|
1066
1066
|
get cg4() {
|
|
1067
|
-
return this.
|
|
1067
|
+
return this.add("columnGap", "32px");
|
|
1068
1068
|
}
|
|
1069
1069
|
/** Sets `columnGap: "40px"`. */
|
|
1070
1070
|
get cg5() {
|
|
1071
|
-
return this.
|
|
1071
|
+
return this.add("columnGap", "40px");
|
|
1072
1072
|
}
|
|
1073
1073
|
/** Sets `columnGap: "48px"`. */
|
|
1074
1074
|
get cg6() {
|
|
1075
|
-
return this.
|
|
1075
|
+
return this.add("columnGap", "48px");
|
|
1076
1076
|
}
|
|
1077
1077
|
/** Sets `columnGap: "56px"`. */
|
|
1078
1078
|
get cg7() {
|
|
1079
|
-
return this.
|
|
1079
|
+
return this.add("columnGap", "56px");
|
|
1080
1080
|
}
|
|
1081
1081
|
/** Sets `columnGap: "64px"`. */
|
|
1082
1082
|
get cg8() {
|
|
1083
|
-
return this.
|
|
1083
|
+
return this.add("columnGap", "64px");
|
|
1084
1084
|
}
|
|
1085
|
-
/** Sets `columnGap:
|
|
1086
|
-
cg(
|
|
1087
|
-
return this.add("columnGap", maybeInc(
|
|
1085
|
+
/** Sets `columnGap: "v"`. */
|
|
1086
|
+
cg(v) {
|
|
1087
|
+
return this.add("columnGap", maybeInc(v));
|
|
1088
1088
|
}
|
|
1089
1089
|
/** Sets `columnGap: px`. */
|
|
1090
1090
|
cgPx(px) {
|
|
1091
|
-
return this.
|
|
1091
|
+
return this.add("columnGap", `${px}px`);
|
|
1092
1092
|
}
|
|
1093
1093
|
// height
|
|
1094
1094
|
/** Sets `height: "0px"`. */
|
|
1095
1095
|
get h0() {
|
|
1096
|
-
return this.
|
|
1096
|
+
return this.add("height", "0px");
|
|
1097
1097
|
}
|
|
1098
1098
|
/** Sets `height: "8px"`. */
|
|
1099
1099
|
get h1() {
|
|
1100
|
-
return this.
|
|
1100
|
+
return this.add("height", "8px");
|
|
1101
1101
|
}
|
|
1102
1102
|
/** Sets `height: "16px"`. */
|
|
1103
1103
|
get h2() {
|
|
1104
|
-
return this.
|
|
1104
|
+
return this.add("height", "16px");
|
|
1105
1105
|
}
|
|
1106
1106
|
/** Sets `height: "24px"`. */
|
|
1107
1107
|
get h3() {
|
|
1108
|
-
return this.
|
|
1108
|
+
return this.add("height", "24px");
|
|
1109
1109
|
}
|
|
1110
1110
|
/** Sets `height: "32px"`. */
|
|
1111
1111
|
get h4() {
|
|
1112
|
-
return this.
|
|
1112
|
+
return this.add("height", "32px");
|
|
1113
1113
|
}
|
|
1114
1114
|
/** Sets `height: "40px"`. */
|
|
1115
1115
|
get h5() {
|
|
1116
|
-
return this.
|
|
1116
|
+
return this.add("height", "40px");
|
|
1117
1117
|
}
|
|
1118
1118
|
/** Sets `height: "48px"`. */
|
|
1119
1119
|
get h6() {
|
|
1120
|
-
return this.
|
|
1120
|
+
return this.add("height", "48px");
|
|
1121
1121
|
}
|
|
1122
1122
|
/** Sets `height: "56px"`. */
|
|
1123
1123
|
get h7() {
|
|
1124
|
-
return this.
|
|
1124
|
+
return this.add("height", "56px");
|
|
1125
1125
|
}
|
|
1126
1126
|
/** Sets `height: "64px"`. */
|
|
1127
1127
|
get h8() {
|
|
1128
|
-
return this.
|
|
1128
|
+
return this.add("height", "64px");
|
|
1129
1129
|
}
|
|
1130
|
-
/** Sets `height:
|
|
1131
|
-
|
|
1132
|
-
return this.add("height",
|
|
1130
|
+
/** Sets `height: "auto"`. */
|
|
1131
|
+
get ha() {
|
|
1132
|
+
return this.add("height", "auto");
|
|
1133
|
+
}
|
|
1134
|
+
/** Sets `height: "v"`. */
|
|
1135
|
+
h(v) {
|
|
1136
|
+
return this.add("height", maybeInc(v));
|
|
1133
1137
|
}
|
|
1134
1138
|
/** Sets `height: px`. */
|
|
1135
1139
|
hPx(px) {
|
|
1136
|
-
return this.
|
|
1140
|
+
return this.add("height", `${px}px`);
|
|
1137
1141
|
}
|
|
1138
1142
|
/** Sets `height: "25%"`. */
|
|
1139
1143
|
get h25() {
|
|
@@ -2148,607 +2152,647 @@ class CssBuilder {
|
|
|
2148
2152
|
// spacing
|
|
2149
2153
|
/** Sets `marginTop: "0px"`. */
|
|
2150
2154
|
get mt0() {
|
|
2151
|
-
return this.
|
|
2155
|
+
return this.add("marginTop", "0px");
|
|
2152
2156
|
}
|
|
2153
2157
|
/** Sets `marginTop: "8px"`. */
|
|
2154
2158
|
get mt1() {
|
|
2155
|
-
return this.
|
|
2159
|
+
return this.add("marginTop", "8px");
|
|
2156
2160
|
}
|
|
2157
2161
|
/** Sets `marginTop: "16px"`. */
|
|
2158
2162
|
get mt2() {
|
|
2159
|
-
return this.
|
|
2163
|
+
return this.add("marginTop", "16px");
|
|
2160
2164
|
}
|
|
2161
2165
|
/** Sets `marginTop: "24px"`. */
|
|
2162
2166
|
get mt3() {
|
|
2163
|
-
return this.
|
|
2167
|
+
return this.add("marginTop", "24px");
|
|
2164
2168
|
}
|
|
2165
2169
|
/** Sets `marginTop: "32px"`. */
|
|
2166
2170
|
get mt4() {
|
|
2167
|
-
return this.
|
|
2171
|
+
return this.add("marginTop", "32px");
|
|
2168
2172
|
}
|
|
2169
2173
|
/** Sets `marginTop: "40px"`. */
|
|
2170
2174
|
get mt5() {
|
|
2171
|
-
return this.
|
|
2175
|
+
return this.add("marginTop", "40px");
|
|
2172
2176
|
}
|
|
2173
2177
|
/** Sets `marginTop: "48px"`. */
|
|
2174
2178
|
get mt6() {
|
|
2175
|
-
return this.
|
|
2179
|
+
return this.add("marginTop", "48px");
|
|
2176
2180
|
}
|
|
2177
2181
|
/** Sets `marginTop: "56px"`. */
|
|
2178
2182
|
get mt7() {
|
|
2179
|
-
return this.
|
|
2183
|
+
return this.add("marginTop", "56px");
|
|
2180
2184
|
}
|
|
2181
2185
|
/** Sets `marginTop: "64px"`. */
|
|
2182
2186
|
get mt8() {
|
|
2183
|
-
return this.
|
|
2187
|
+
return this.add("marginTop", "64px");
|
|
2188
|
+
}
|
|
2189
|
+
/** Sets `marginTop: "auto"`. */
|
|
2190
|
+
get mta() {
|
|
2191
|
+
return this.add("marginTop", "auto");
|
|
2184
2192
|
}
|
|
2185
|
-
/** Sets `marginTop:
|
|
2186
|
-
mt(
|
|
2187
|
-
return this.add("marginTop", maybeInc(
|
|
2193
|
+
/** Sets `marginTop: "v"`. */
|
|
2194
|
+
mt(v) {
|
|
2195
|
+
return this.add("marginTop", maybeInc(v));
|
|
2188
2196
|
}
|
|
2189
2197
|
/** Sets `marginTop: px`. */
|
|
2190
2198
|
mtPx(px) {
|
|
2191
|
-
return this.
|
|
2199
|
+
return this.add("marginTop", `${px}px`);
|
|
2192
2200
|
}
|
|
2193
2201
|
/** Sets `marginRight: "0px"`. */
|
|
2194
2202
|
get mr0() {
|
|
2195
|
-
return this.
|
|
2203
|
+
return this.add("marginRight", "0px");
|
|
2196
2204
|
}
|
|
2197
2205
|
/** Sets `marginRight: "8px"`. */
|
|
2198
2206
|
get mr1() {
|
|
2199
|
-
return this.
|
|
2207
|
+
return this.add("marginRight", "8px");
|
|
2200
2208
|
}
|
|
2201
2209
|
/** Sets `marginRight: "16px"`. */
|
|
2202
2210
|
get mr2() {
|
|
2203
|
-
return this.
|
|
2211
|
+
return this.add("marginRight", "16px");
|
|
2204
2212
|
}
|
|
2205
2213
|
/** Sets `marginRight: "24px"`. */
|
|
2206
2214
|
get mr3() {
|
|
2207
|
-
return this.
|
|
2215
|
+
return this.add("marginRight", "24px");
|
|
2208
2216
|
}
|
|
2209
2217
|
/** Sets `marginRight: "32px"`. */
|
|
2210
2218
|
get mr4() {
|
|
2211
|
-
return this.
|
|
2219
|
+
return this.add("marginRight", "32px");
|
|
2212
2220
|
}
|
|
2213
2221
|
/** Sets `marginRight: "40px"`. */
|
|
2214
2222
|
get mr5() {
|
|
2215
|
-
return this.
|
|
2223
|
+
return this.add("marginRight", "40px");
|
|
2216
2224
|
}
|
|
2217
2225
|
/** Sets `marginRight: "48px"`. */
|
|
2218
2226
|
get mr6() {
|
|
2219
|
-
return this.
|
|
2227
|
+
return this.add("marginRight", "48px");
|
|
2220
2228
|
}
|
|
2221
2229
|
/** Sets `marginRight: "56px"`. */
|
|
2222
2230
|
get mr7() {
|
|
2223
|
-
return this.
|
|
2231
|
+
return this.add("marginRight", "56px");
|
|
2224
2232
|
}
|
|
2225
2233
|
/** Sets `marginRight: "64px"`. */
|
|
2226
2234
|
get mr8() {
|
|
2227
|
-
return this.
|
|
2235
|
+
return this.add("marginRight", "64px");
|
|
2236
|
+
}
|
|
2237
|
+
/** Sets `marginRight: "auto"`. */
|
|
2238
|
+
get mra() {
|
|
2239
|
+
return this.add("marginRight", "auto");
|
|
2228
2240
|
}
|
|
2229
|
-
/** Sets `marginRight:
|
|
2230
|
-
mr(
|
|
2231
|
-
return this.add("marginRight", maybeInc(
|
|
2241
|
+
/** Sets `marginRight: "v"`. */
|
|
2242
|
+
mr(v) {
|
|
2243
|
+
return this.add("marginRight", maybeInc(v));
|
|
2232
2244
|
}
|
|
2233
2245
|
/** Sets `marginRight: px`. */
|
|
2234
2246
|
mrPx(px) {
|
|
2235
|
-
return this.
|
|
2247
|
+
return this.add("marginRight", `${px}px`);
|
|
2236
2248
|
}
|
|
2237
2249
|
/** Sets `marginBottom: "0px"`. */
|
|
2238
2250
|
get mb0() {
|
|
2239
|
-
return this.
|
|
2251
|
+
return this.add("marginBottom", "0px");
|
|
2240
2252
|
}
|
|
2241
2253
|
/** Sets `marginBottom: "8px"`. */
|
|
2242
2254
|
get mb1() {
|
|
2243
|
-
return this.
|
|
2255
|
+
return this.add("marginBottom", "8px");
|
|
2244
2256
|
}
|
|
2245
2257
|
/** Sets `marginBottom: "16px"`. */
|
|
2246
2258
|
get mb2() {
|
|
2247
|
-
return this.
|
|
2259
|
+
return this.add("marginBottom", "16px");
|
|
2248
2260
|
}
|
|
2249
2261
|
/** Sets `marginBottom: "24px"`. */
|
|
2250
2262
|
get mb3() {
|
|
2251
|
-
return this.
|
|
2263
|
+
return this.add("marginBottom", "24px");
|
|
2252
2264
|
}
|
|
2253
2265
|
/** Sets `marginBottom: "32px"`. */
|
|
2254
2266
|
get mb4() {
|
|
2255
|
-
return this.
|
|
2267
|
+
return this.add("marginBottom", "32px");
|
|
2256
2268
|
}
|
|
2257
2269
|
/** Sets `marginBottom: "40px"`. */
|
|
2258
2270
|
get mb5() {
|
|
2259
|
-
return this.
|
|
2271
|
+
return this.add("marginBottom", "40px");
|
|
2260
2272
|
}
|
|
2261
2273
|
/** Sets `marginBottom: "48px"`. */
|
|
2262
2274
|
get mb6() {
|
|
2263
|
-
return this.
|
|
2275
|
+
return this.add("marginBottom", "48px");
|
|
2264
2276
|
}
|
|
2265
2277
|
/** Sets `marginBottom: "56px"`. */
|
|
2266
2278
|
get mb7() {
|
|
2267
|
-
return this.
|
|
2279
|
+
return this.add("marginBottom", "56px");
|
|
2268
2280
|
}
|
|
2269
2281
|
/** Sets `marginBottom: "64px"`. */
|
|
2270
2282
|
get mb8() {
|
|
2271
|
-
return this.
|
|
2283
|
+
return this.add("marginBottom", "64px");
|
|
2272
2284
|
}
|
|
2273
|
-
/** Sets `marginBottom:
|
|
2274
|
-
|
|
2275
|
-
return this.add("marginBottom",
|
|
2285
|
+
/** Sets `marginBottom: "auto"`. */
|
|
2286
|
+
get mba() {
|
|
2287
|
+
return this.add("marginBottom", "auto");
|
|
2288
|
+
}
|
|
2289
|
+
/** Sets `marginBottom: "v"`. */
|
|
2290
|
+
mb(v) {
|
|
2291
|
+
return this.add("marginBottom", maybeInc(v));
|
|
2276
2292
|
}
|
|
2277
2293
|
/** Sets `marginBottom: px`. */
|
|
2278
2294
|
mbPx(px) {
|
|
2279
|
-
return this.
|
|
2295
|
+
return this.add("marginBottom", `${px}px`);
|
|
2280
2296
|
}
|
|
2281
2297
|
/** Sets `marginLeft: "0px"`. */
|
|
2282
2298
|
get ml0() {
|
|
2283
|
-
return this.
|
|
2299
|
+
return this.add("marginLeft", "0px");
|
|
2284
2300
|
}
|
|
2285
2301
|
/** Sets `marginLeft: "8px"`. */
|
|
2286
2302
|
get ml1() {
|
|
2287
|
-
return this.
|
|
2303
|
+
return this.add("marginLeft", "8px");
|
|
2288
2304
|
}
|
|
2289
2305
|
/** Sets `marginLeft: "16px"`. */
|
|
2290
2306
|
get ml2() {
|
|
2291
|
-
return this.
|
|
2307
|
+
return this.add("marginLeft", "16px");
|
|
2292
2308
|
}
|
|
2293
2309
|
/** Sets `marginLeft: "24px"`. */
|
|
2294
2310
|
get ml3() {
|
|
2295
|
-
return this.
|
|
2311
|
+
return this.add("marginLeft", "24px");
|
|
2296
2312
|
}
|
|
2297
2313
|
/** Sets `marginLeft: "32px"`. */
|
|
2298
2314
|
get ml4() {
|
|
2299
|
-
return this.
|
|
2315
|
+
return this.add("marginLeft", "32px");
|
|
2300
2316
|
}
|
|
2301
2317
|
/** Sets `marginLeft: "40px"`. */
|
|
2302
2318
|
get ml5() {
|
|
2303
|
-
return this.
|
|
2319
|
+
return this.add("marginLeft", "40px");
|
|
2304
2320
|
}
|
|
2305
2321
|
/** Sets `marginLeft: "48px"`. */
|
|
2306
2322
|
get ml6() {
|
|
2307
|
-
return this.
|
|
2323
|
+
return this.add("marginLeft", "48px");
|
|
2308
2324
|
}
|
|
2309
2325
|
/** Sets `marginLeft: "56px"`. */
|
|
2310
2326
|
get ml7() {
|
|
2311
|
-
return this.
|
|
2327
|
+
return this.add("marginLeft", "56px");
|
|
2312
2328
|
}
|
|
2313
2329
|
/** Sets `marginLeft: "64px"`. */
|
|
2314
2330
|
get ml8() {
|
|
2315
|
-
return this.
|
|
2331
|
+
return this.add("marginLeft", "64px");
|
|
2332
|
+
}
|
|
2333
|
+
/** Sets `marginLeft: "auto"`. */
|
|
2334
|
+
get mla() {
|
|
2335
|
+
return this.add("marginLeft", "auto");
|
|
2316
2336
|
}
|
|
2317
|
-
/** Sets `marginLeft:
|
|
2318
|
-
ml(
|
|
2319
|
-
return this.add("marginLeft", maybeInc(
|
|
2337
|
+
/** Sets `marginLeft: "v"`. */
|
|
2338
|
+
ml(v) {
|
|
2339
|
+
return this.add("marginLeft", maybeInc(v));
|
|
2320
2340
|
}
|
|
2321
2341
|
/** Sets `marginLeft: px`. */
|
|
2322
2342
|
mlPx(px) {
|
|
2323
|
-
return this.
|
|
2343
|
+
return this.add("marginLeft", `${px}px`);
|
|
2324
2344
|
}
|
|
2325
|
-
/** Sets `
|
|
2345
|
+
/** Sets `marginLeft: "0px"; marginRight: "0px"`. */
|
|
2326
2346
|
get mx0() {
|
|
2327
|
-
return this.
|
|
2347
|
+
return this.add("marginLeft", "0px").add("marginRight", "0px");
|
|
2328
2348
|
}
|
|
2329
|
-
/** Sets `
|
|
2349
|
+
/** Sets `marginLeft: "8px"; marginRight: "8px"`. */
|
|
2330
2350
|
get mx1() {
|
|
2331
|
-
return this.
|
|
2351
|
+
return this.add("marginLeft", "8px").add("marginRight", "8px");
|
|
2332
2352
|
}
|
|
2333
|
-
/** Sets `
|
|
2353
|
+
/** Sets `marginLeft: "16px"; marginRight: "16px"`. */
|
|
2334
2354
|
get mx2() {
|
|
2335
|
-
return this.
|
|
2355
|
+
return this.add("marginLeft", "16px").add("marginRight", "16px");
|
|
2336
2356
|
}
|
|
2337
|
-
/** Sets `
|
|
2357
|
+
/** Sets `marginLeft: "24px"; marginRight: "24px"`. */
|
|
2338
2358
|
get mx3() {
|
|
2339
|
-
return this.
|
|
2359
|
+
return this.add("marginLeft", "24px").add("marginRight", "24px");
|
|
2340
2360
|
}
|
|
2341
|
-
/** Sets `
|
|
2361
|
+
/** Sets `marginLeft: "32px"; marginRight: "32px"`. */
|
|
2342
2362
|
get mx4() {
|
|
2343
|
-
return this.
|
|
2363
|
+
return this.add("marginLeft", "32px").add("marginRight", "32px");
|
|
2344
2364
|
}
|
|
2345
|
-
/** Sets `
|
|
2365
|
+
/** Sets `marginLeft: "40px"; marginRight: "40px"`. */
|
|
2346
2366
|
get mx5() {
|
|
2347
|
-
return this.
|
|
2367
|
+
return this.add("marginLeft", "40px").add("marginRight", "40px");
|
|
2348
2368
|
}
|
|
2349
|
-
/** Sets `
|
|
2369
|
+
/** Sets `marginLeft: "48px"; marginRight: "48px"`. */
|
|
2350
2370
|
get mx6() {
|
|
2351
|
-
return this.
|
|
2371
|
+
return this.add("marginLeft", "48px").add("marginRight", "48px");
|
|
2352
2372
|
}
|
|
2353
|
-
/** Sets `
|
|
2373
|
+
/** Sets `marginLeft: "56px"; marginRight: "56px"`. */
|
|
2354
2374
|
get mx7() {
|
|
2355
|
-
return this.
|
|
2375
|
+
return this.add("marginLeft", "56px").add("marginRight", "56px");
|
|
2356
2376
|
}
|
|
2357
|
-
/** Sets `
|
|
2377
|
+
/** Sets `marginLeft: "64px"; marginRight: "64px"`. */
|
|
2358
2378
|
get mx8() {
|
|
2359
|
-
return this.
|
|
2379
|
+
return this.add("marginLeft", "64px").add("marginRight", "64px");
|
|
2360
2380
|
}
|
|
2361
|
-
|
|
2362
|
-
|
|
2381
|
+
/** Sets `marginLeft: "auto"; marginRight: "auto"`. */
|
|
2382
|
+
get mxa() {
|
|
2383
|
+
return this.add("marginLeft", "auto").add("marginRight", "auto");
|
|
2363
2384
|
}
|
|
2385
|
+
/** Sets `marginLeft: "v"; marginRight: "v"`. */
|
|
2386
|
+
mx(v) {
|
|
2387
|
+
return this.add("marginLeft", maybeInc(v)).add("marginRight", maybeInc(v));
|
|
2388
|
+
}
|
|
2389
|
+
/** Sets `marginLeft: px; marginRight: px`. */
|
|
2364
2390
|
mxPx(px) {
|
|
2365
|
-
return this.
|
|
2391
|
+
return this.add("marginLeft", `${px}px`).add("marginRight", `${px}px`);
|
|
2366
2392
|
}
|
|
2367
|
-
/** Sets `
|
|
2393
|
+
/** Sets `marginTop: "0px"; marginBottom: "0px"`. */
|
|
2368
2394
|
get my0() {
|
|
2369
|
-
return this.
|
|
2395
|
+
return this.add("marginTop", "0px").add("marginBottom", "0px");
|
|
2370
2396
|
}
|
|
2371
|
-
/** Sets `
|
|
2397
|
+
/** Sets `marginTop: "8px"; marginBottom: "8px"`. */
|
|
2372
2398
|
get my1() {
|
|
2373
|
-
return this.
|
|
2399
|
+
return this.add("marginTop", "8px").add("marginBottom", "8px");
|
|
2374
2400
|
}
|
|
2375
|
-
/** Sets `
|
|
2401
|
+
/** Sets `marginTop: "16px"; marginBottom: "16px"`. */
|
|
2376
2402
|
get my2() {
|
|
2377
|
-
return this.
|
|
2403
|
+
return this.add("marginTop", "16px").add("marginBottom", "16px");
|
|
2378
2404
|
}
|
|
2379
|
-
/** Sets `
|
|
2405
|
+
/** Sets `marginTop: "24px"; marginBottom: "24px"`. */
|
|
2380
2406
|
get my3() {
|
|
2381
|
-
return this.
|
|
2407
|
+
return this.add("marginTop", "24px").add("marginBottom", "24px");
|
|
2382
2408
|
}
|
|
2383
|
-
/** Sets `
|
|
2409
|
+
/** Sets `marginTop: "32px"; marginBottom: "32px"`. */
|
|
2384
2410
|
get my4() {
|
|
2385
|
-
return this.
|
|
2411
|
+
return this.add("marginTop", "32px").add("marginBottom", "32px");
|
|
2386
2412
|
}
|
|
2387
|
-
/** Sets `
|
|
2413
|
+
/** Sets `marginTop: "40px"; marginBottom: "40px"`. */
|
|
2388
2414
|
get my5() {
|
|
2389
|
-
return this.
|
|
2415
|
+
return this.add("marginTop", "40px").add("marginBottom", "40px");
|
|
2390
2416
|
}
|
|
2391
|
-
/** Sets `
|
|
2417
|
+
/** Sets `marginTop: "48px"; marginBottom: "48px"`. */
|
|
2392
2418
|
get my6() {
|
|
2393
|
-
return this.
|
|
2419
|
+
return this.add("marginTop", "48px").add("marginBottom", "48px");
|
|
2394
2420
|
}
|
|
2395
|
-
/** Sets `
|
|
2421
|
+
/** Sets `marginTop: "56px"; marginBottom: "56px"`. */
|
|
2396
2422
|
get my7() {
|
|
2397
|
-
return this.
|
|
2423
|
+
return this.add("marginTop", "56px").add("marginBottom", "56px");
|
|
2398
2424
|
}
|
|
2399
|
-
/** Sets `
|
|
2425
|
+
/** Sets `marginTop: "64px"; marginBottom: "64px"`. */
|
|
2400
2426
|
get my8() {
|
|
2401
|
-
return this.
|
|
2427
|
+
return this.add("marginTop", "64px").add("marginBottom", "64px");
|
|
2428
|
+
}
|
|
2429
|
+
/** Sets `marginTop: "auto"; marginBottom: "auto"`. */
|
|
2430
|
+
get mya() {
|
|
2431
|
+
return this.add("marginTop", "auto").add("marginBottom", "auto");
|
|
2402
2432
|
}
|
|
2403
|
-
|
|
2404
|
-
|
|
2433
|
+
/** Sets `marginTop: "v"; marginBottom: "v"`. */
|
|
2434
|
+
my(v) {
|
|
2435
|
+
return this.add("marginTop", maybeInc(v)).add("marginBottom", maybeInc(v));
|
|
2405
2436
|
}
|
|
2437
|
+
/** Sets `marginTop: px; marginBottom: px`. */
|
|
2406
2438
|
myPx(px) {
|
|
2407
|
-
return this.
|
|
2439
|
+
return this.add("marginTop", `${px}px`).add("marginBottom", `${px}px`);
|
|
2408
2440
|
}
|
|
2409
|
-
/** Sets `
|
|
2441
|
+
/** Sets `marginTop: "0px"; marginBottom: "0px"; marginRight: "0px"; marginLeft: "0px"`. */
|
|
2410
2442
|
get m0() {
|
|
2411
|
-
return this.
|
|
2443
|
+
return this.add("marginTop", "0px").add("marginBottom", "0px").add("marginRight", "0px").add("marginLeft", "0px");
|
|
2412
2444
|
}
|
|
2413
|
-
/** Sets `
|
|
2445
|
+
/** Sets `marginTop: "8px"; marginBottom: "8px"; marginRight: "8px"; marginLeft: "8px"`. */
|
|
2414
2446
|
get m1() {
|
|
2415
|
-
return this.
|
|
2447
|
+
return this.add("marginTop", "8px").add("marginBottom", "8px").add("marginRight", "8px").add("marginLeft", "8px");
|
|
2416
2448
|
}
|
|
2417
|
-
/** Sets `
|
|
2449
|
+
/** Sets `marginTop: "16px"; marginBottom: "16px"; marginRight: "16px"; marginLeft: "16px"`. */
|
|
2418
2450
|
get m2() {
|
|
2419
|
-
return this.
|
|
2451
|
+
return this.add("marginTop", "16px").add("marginBottom", "16px").add("marginRight", "16px").add("marginLeft", "16px");
|
|
2420
2452
|
}
|
|
2421
|
-
/** Sets `
|
|
2453
|
+
/** Sets `marginTop: "24px"; marginBottom: "24px"; marginRight: "24px"; marginLeft: "24px"`. */
|
|
2422
2454
|
get m3() {
|
|
2423
|
-
return this.
|
|
2455
|
+
return this.add("marginTop", "24px").add("marginBottom", "24px").add("marginRight", "24px").add("marginLeft", "24px");
|
|
2424
2456
|
}
|
|
2425
|
-
/** Sets `
|
|
2457
|
+
/** Sets `marginTop: "32px"; marginBottom: "32px"; marginRight: "32px"; marginLeft: "32px"`. */
|
|
2426
2458
|
get m4() {
|
|
2427
|
-
return this.
|
|
2459
|
+
return this.add("marginTop", "32px").add("marginBottom", "32px").add("marginRight", "32px").add("marginLeft", "32px");
|
|
2428
2460
|
}
|
|
2429
|
-
/** Sets `
|
|
2461
|
+
/** Sets `marginTop: "40px"; marginBottom: "40px"; marginRight: "40px"; marginLeft: "40px"`. */
|
|
2430
2462
|
get m5() {
|
|
2431
|
-
return this.
|
|
2463
|
+
return this.add("marginTop", "40px").add("marginBottom", "40px").add("marginRight", "40px").add("marginLeft", "40px");
|
|
2432
2464
|
}
|
|
2433
|
-
/** Sets `
|
|
2465
|
+
/** Sets `marginTop: "48px"; marginBottom: "48px"; marginRight: "48px"; marginLeft: "48px"`. */
|
|
2434
2466
|
get m6() {
|
|
2435
|
-
return this.
|
|
2467
|
+
return this.add("marginTop", "48px").add("marginBottom", "48px").add("marginRight", "48px").add("marginLeft", "48px");
|
|
2436
2468
|
}
|
|
2437
|
-
/** Sets `
|
|
2469
|
+
/** Sets `marginTop: "56px"; marginBottom: "56px"; marginRight: "56px"; marginLeft: "56px"`. */
|
|
2438
2470
|
get m7() {
|
|
2439
|
-
return this.
|
|
2471
|
+
return this.add("marginTop", "56px").add("marginBottom", "56px").add("marginRight", "56px").add("marginLeft", "56px");
|
|
2440
2472
|
}
|
|
2441
|
-
/** Sets `
|
|
2473
|
+
/** Sets `marginTop: "64px"; marginBottom: "64px"; marginRight: "64px"; marginLeft: "64px"`. */
|
|
2442
2474
|
get m8() {
|
|
2443
|
-
return this.
|
|
2475
|
+
return this.add("marginTop", "64px").add("marginBottom", "64px").add("marginRight", "64px").add("marginLeft", "64px");
|
|
2444
2476
|
}
|
|
2445
|
-
|
|
2446
|
-
|
|
2477
|
+
/** Sets `marginTop: "auto"; marginBottom: "auto"; marginRight: "auto"; marginLeft: "auto"`. */
|
|
2478
|
+
get ma() {
|
|
2479
|
+
return this.add("marginTop", "auto").add("marginBottom", "auto").add("marginRight", "auto").add("marginLeft", "auto");
|
|
2447
2480
|
}
|
|
2481
|
+
/** Sets `marginTop: "v"; marginBottom: "v"; marginRight: "v"; marginLeft: "v"`. */
|
|
2482
|
+
m(v) {
|
|
2483
|
+
return this.add("marginTop", maybeInc(v)).add("marginBottom", maybeInc(v)).add("marginRight", maybeInc(v)).add("marginLeft", maybeInc(v));
|
|
2484
|
+
}
|
|
2485
|
+
/** Sets `marginTop: px; marginBottom: px; marginRight: px; marginLeft: px`. */
|
|
2448
2486
|
mPx(px) {
|
|
2449
|
-
return this.
|
|
2487
|
+
return this.add("marginTop", `${px}px`).add("marginBottom", `${px}px`).add("marginRight", `${px}px`).add("marginLeft", `${px}px`);
|
|
2450
2488
|
}
|
|
2451
2489
|
/** Sets `paddingTop: "0px"`. */
|
|
2452
2490
|
get pt0() {
|
|
2453
|
-
return this.
|
|
2491
|
+
return this.add("paddingTop", "0px");
|
|
2454
2492
|
}
|
|
2455
2493
|
/** Sets `paddingTop: "8px"`. */
|
|
2456
2494
|
get pt1() {
|
|
2457
|
-
return this.
|
|
2495
|
+
return this.add("paddingTop", "8px");
|
|
2458
2496
|
}
|
|
2459
2497
|
/** Sets `paddingTop: "16px"`. */
|
|
2460
2498
|
get pt2() {
|
|
2461
|
-
return this.
|
|
2499
|
+
return this.add("paddingTop", "16px");
|
|
2462
2500
|
}
|
|
2463
2501
|
/** Sets `paddingTop: "24px"`. */
|
|
2464
2502
|
get pt3() {
|
|
2465
|
-
return this.
|
|
2503
|
+
return this.add("paddingTop", "24px");
|
|
2466
2504
|
}
|
|
2467
2505
|
/** Sets `paddingTop: "32px"`. */
|
|
2468
2506
|
get pt4() {
|
|
2469
|
-
return this.
|
|
2507
|
+
return this.add("paddingTop", "32px");
|
|
2470
2508
|
}
|
|
2471
2509
|
/** Sets `paddingTop: "40px"`. */
|
|
2472
2510
|
get pt5() {
|
|
2473
|
-
return this.
|
|
2511
|
+
return this.add("paddingTop", "40px");
|
|
2474
2512
|
}
|
|
2475
2513
|
/** Sets `paddingTop: "48px"`. */
|
|
2476
2514
|
get pt6() {
|
|
2477
|
-
return this.
|
|
2515
|
+
return this.add("paddingTop", "48px");
|
|
2478
2516
|
}
|
|
2479
2517
|
/** Sets `paddingTop: "56px"`. */
|
|
2480
2518
|
get pt7() {
|
|
2481
|
-
return this.
|
|
2519
|
+
return this.add("paddingTop", "56px");
|
|
2482
2520
|
}
|
|
2483
2521
|
/** Sets `paddingTop: "64px"`. */
|
|
2484
2522
|
get pt8() {
|
|
2485
|
-
return this.
|
|
2523
|
+
return this.add("paddingTop", "64px");
|
|
2486
2524
|
}
|
|
2487
|
-
/** Sets `paddingTop:
|
|
2488
|
-
pt(
|
|
2489
|
-
return this.add("paddingTop", maybeInc(
|
|
2525
|
+
/** Sets `paddingTop: "v"`. */
|
|
2526
|
+
pt(v) {
|
|
2527
|
+
return this.add("paddingTop", maybeInc(v));
|
|
2490
2528
|
}
|
|
2491
2529
|
/** Sets `paddingTop: px`. */
|
|
2492
2530
|
ptPx(px) {
|
|
2493
|
-
return this.
|
|
2531
|
+
return this.add("paddingTop", `${px}px`);
|
|
2494
2532
|
}
|
|
2495
2533
|
/** Sets `paddingRight: "0px"`. */
|
|
2496
2534
|
get pr0() {
|
|
2497
|
-
return this.
|
|
2535
|
+
return this.add("paddingRight", "0px");
|
|
2498
2536
|
}
|
|
2499
2537
|
/** Sets `paddingRight: "8px"`. */
|
|
2500
2538
|
get pr1() {
|
|
2501
|
-
return this.
|
|
2539
|
+
return this.add("paddingRight", "8px");
|
|
2502
2540
|
}
|
|
2503
2541
|
/** Sets `paddingRight: "16px"`. */
|
|
2504
2542
|
get pr2() {
|
|
2505
|
-
return this.
|
|
2543
|
+
return this.add("paddingRight", "16px");
|
|
2506
2544
|
}
|
|
2507
2545
|
/** Sets `paddingRight: "24px"`. */
|
|
2508
2546
|
get pr3() {
|
|
2509
|
-
return this.
|
|
2547
|
+
return this.add("paddingRight", "24px");
|
|
2510
2548
|
}
|
|
2511
2549
|
/** Sets `paddingRight: "32px"`. */
|
|
2512
2550
|
get pr4() {
|
|
2513
|
-
return this.
|
|
2551
|
+
return this.add("paddingRight", "32px");
|
|
2514
2552
|
}
|
|
2515
2553
|
/** Sets `paddingRight: "40px"`. */
|
|
2516
2554
|
get pr5() {
|
|
2517
|
-
return this.
|
|
2555
|
+
return this.add("paddingRight", "40px");
|
|
2518
2556
|
}
|
|
2519
2557
|
/** Sets `paddingRight: "48px"`. */
|
|
2520
2558
|
get pr6() {
|
|
2521
|
-
return this.
|
|
2559
|
+
return this.add("paddingRight", "48px");
|
|
2522
2560
|
}
|
|
2523
2561
|
/** Sets `paddingRight: "56px"`. */
|
|
2524
2562
|
get pr7() {
|
|
2525
|
-
return this.
|
|
2563
|
+
return this.add("paddingRight", "56px");
|
|
2526
2564
|
}
|
|
2527
2565
|
/** Sets `paddingRight: "64px"`. */
|
|
2528
2566
|
get pr8() {
|
|
2529
|
-
return this.
|
|
2567
|
+
return this.add("paddingRight", "64px");
|
|
2530
2568
|
}
|
|
2531
|
-
/** Sets `paddingRight:
|
|
2532
|
-
pr(
|
|
2533
|
-
return this.add("paddingRight", maybeInc(
|
|
2569
|
+
/** Sets `paddingRight: "v"`. */
|
|
2570
|
+
pr(v) {
|
|
2571
|
+
return this.add("paddingRight", maybeInc(v));
|
|
2534
2572
|
}
|
|
2535
2573
|
/** Sets `paddingRight: px`. */
|
|
2536
2574
|
prPx(px) {
|
|
2537
|
-
return this.
|
|
2575
|
+
return this.add("paddingRight", `${px}px`);
|
|
2538
2576
|
}
|
|
2539
2577
|
/** Sets `paddingBottom: "0px"`. */
|
|
2540
2578
|
get pb0() {
|
|
2541
|
-
return this.
|
|
2579
|
+
return this.add("paddingBottom", "0px");
|
|
2542
2580
|
}
|
|
2543
2581
|
/** Sets `paddingBottom: "8px"`. */
|
|
2544
2582
|
get pb1() {
|
|
2545
|
-
return this.
|
|
2583
|
+
return this.add("paddingBottom", "8px");
|
|
2546
2584
|
}
|
|
2547
2585
|
/** Sets `paddingBottom: "16px"`. */
|
|
2548
2586
|
get pb2() {
|
|
2549
|
-
return this.
|
|
2587
|
+
return this.add("paddingBottom", "16px");
|
|
2550
2588
|
}
|
|
2551
2589
|
/** Sets `paddingBottom: "24px"`. */
|
|
2552
2590
|
get pb3() {
|
|
2553
|
-
return this.
|
|
2591
|
+
return this.add("paddingBottom", "24px");
|
|
2554
2592
|
}
|
|
2555
2593
|
/** Sets `paddingBottom: "32px"`. */
|
|
2556
2594
|
get pb4() {
|
|
2557
|
-
return this.
|
|
2595
|
+
return this.add("paddingBottom", "32px");
|
|
2558
2596
|
}
|
|
2559
2597
|
/** Sets `paddingBottom: "40px"`. */
|
|
2560
2598
|
get pb5() {
|
|
2561
|
-
return this.
|
|
2599
|
+
return this.add("paddingBottom", "40px");
|
|
2562
2600
|
}
|
|
2563
2601
|
/** Sets `paddingBottom: "48px"`. */
|
|
2564
2602
|
get pb6() {
|
|
2565
|
-
return this.
|
|
2603
|
+
return this.add("paddingBottom", "48px");
|
|
2566
2604
|
}
|
|
2567
2605
|
/** Sets `paddingBottom: "56px"`. */
|
|
2568
2606
|
get pb7() {
|
|
2569
|
-
return this.
|
|
2607
|
+
return this.add("paddingBottom", "56px");
|
|
2570
2608
|
}
|
|
2571
2609
|
/** Sets `paddingBottom: "64px"`. */
|
|
2572
2610
|
get pb8() {
|
|
2573
|
-
return this.
|
|
2611
|
+
return this.add("paddingBottom", "64px");
|
|
2574
2612
|
}
|
|
2575
|
-
/** Sets `paddingBottom:
|
|
2576
|
-
pb(
|
|
2577
|
-
return this.add("paddingBottom", maybeInc(
|
|
2613
|
+
/** Sets `paddingBottom: "v"`. */
|
|
2614
|
+
pb(v) {
|
|
2615
|
+
return this.add("paddingBottom", maybeInc(v));
|
|
2578
2616
|
}
|
|
2579
2617
|
/** Sets `paddingBottom: px`. */
|
|
2580
2618
|
pbPx(px) {
|
|
2581
|
-
return this.
|
|
2619
|
+
return this.add("paddingBottom", `${px}px`);
|
|
2582
2620
|
}
|
|
2583
2621
|
/** Sets `paddingLeft: "0px"`. */
|
|
2584
2622
|
get pl0() {
|
|
2585
|
-
return this.
|
|
2623
|
+
return this.add("paddingLeft", "0px");
|
|
2586
2624
|
}
|
|
2587
2625
|
/** Sets `paddingLeft: "8px"`. */
|
|
2588
2626
|
get pl1() {
|
|
2589
|
-
return this.
|
|
2627
|
+
return this.add("paddingLeft", "8px");
|
|
2590
2628
|
}
|
|
2591
2629
|
/** Sets `paddingLeft: "16px"`. */
|
|
2592
2630
|
get pl2() {
|
|
2593
|
-
return this.
|
|
2631
|
+
return this.add("paddingLeft", "16px");
|
|
2594
2632
|
}
|
|
2595
2633
|
/** Sets `paddingLeft: "24px"`. */
|
|
2596
2634
|
get pl3() {
|
|
2597
|
-
return this.
|
|
2635
|
+
return this.add("paddingLeft", "24px");
|
|
2598
2636
|
}
|
|
2599
2637
|
/** Sets `paddingLeft: "32px"`. */
|
|
2600
2638
|
get pl4() {
|
|
2601
|
-
return this.
|
|
2639
|
+
return this.add("paddingLeft", "32px");
|
|
2602
2640
|
}
|
|
2603
2641
|
/** Sets `paddingLeft: "40px"`. */
|
|
2604
2642
|
get pl5() {
|
|
2605
|
-
return this.
|
|
2643
|
+
return this.add("paddingLeft", "40px");
|
|
2606
2644
|
}
|
|
2607
2645
|
/** Sets `paddingLeft: "48px"`. */
|
|
2608
2646
|
get pl6() {
|
|
2609
|
-
return this.
|
|
2647
|
+
return this.add("paddingLeft", "48px");
|
|
2610
2648
|
}
|
|
2611
2649
|
/** Sets `paddingLeft: "56px"`. */
|
|
2612
2650
|
get pl7() {
|
|
2613
|
-
return this.
|
|
2651
|
+
return this.add("paddingLeft", "56px");
|
|
2614
2652
|
}
|
|
2615
2653
|
/** Sets `paddingLeft: "64px"`. */
|
|
2616
2654
|
get pl8() {
|
|
2617
|
-
return this.
|
|
2655
|
+
return this.add("paddingLeft", "64px");
|
|
2618
2656
|
}
|
|
2619
|
-
/** Sets `paddingLeft:
|
|
2620
|
-
pl(
|
|
2621
|
-
return this.add("paddingLeft", maybeInc(
|
|
2657
|
+
/** Sets `paddingLeft: "v"`. */
|
|
2658
|
+
pl(v) {
|
|
2659
|
+
return this.add("paddingLeft", maybeInc(v));
|
|
2622
2660
|
}
|
|
2623
2661
|
/** Sets `paddingLeft: px`. */
|
|
2624
2662
|
plPx(px) {
|
|
2625
|
-
return this.
|
|
2663
|
+
return this.add("paddingLeft", `${px}px`);
|
|
2626
2664
|
}
|
|
2627
|
-
/** Sets `
|
|
2665
|
+
/** Sets `paddingLeft: "0px"; paddingRight: "0px"`. */
|
|
2628
2666
|
get px0() {
|
|
2629
|
-
return this.
|
|
2667
|
+
return this.add("paddingLeft", "0px").add("paddingRight", "0px");
|
|
2630
2668
|
}
|
|
2631
|
-
/** Sets `
|
|
2669
|
+
/** Sets `paddingLeft: "8px"; paddingRight: "8px"`. */
|
|
2632
2670
|
get px1() {
|
|
2633
|
-
return this.
|
|
2671
|
+
return this.add("paddingLeft", "8px").add("paddingRight", "8px");
|
|
2634
2672
|
}
|
|
2635
|
-
/** Sets `
|
|
2673
|
+
/** Sets `paddingLeft: "16px"; paddingRight: "16px"`. */
|
|
2636
2674
|
get px2() {
|
|
2637
|
-
return this.
|
|
2675
|
+
return this.add("paddingLeft", "16px").add("paddingRight", "16px");
|
|
2638
2676
|
}
|
|
2639
|
-
/** Sets `
|
|
2677
|
+
/** Sets `paddingLeft: "24px"; paddingRight: "24px"`. */
|
|
2640
2678
|
get px3() {
|
|
2641
|
-
return this.
|
|
2679
|
+
return this.add("paddingLeft", "24px").add("paddingRight", "24px");
|
|
2642
2680
|
}
|
|
2643
|
-
/** Sets `
|
|
2681
|
+
/** Sets `paddingLeft: "32px"; paddingRight: "32px"`. */
|
|
2644
2682
|
get px4() {
|
|
2645
|
-
return this.
|
|
2683
|
+
return this.add("paddingLeft", "32px").add("paddingRight", "32px");
|
|
2646
2684
|
}
|
|
2647
|
-
/** Sets `
|
|
2685
|
+
/** Sets `paddingLeft: "40px"; paddingRight: "40px"`. */
|
|
2648
2686
|
get px5() {
|
|
2649
|
-
return this.
|
|
2687
|
+
return this.add("paddingLeft", "40px").add("paddingRight", "40px");
|
|
2650
2688
|
}
|
|
2651
|
-
/** Sets `
|
|
2689
|
+
/** Sets `paddingLeft: "48px"; paddingRight: "48px"`. */
|
|
2652
2690
|
get px6() {
|
|
2653
|
-
return this.
|
|
2691
|
+
return this.add("paddingLeft", "48px").add("paddingRight", "48px");
|
|
2654
2692
|
}
|
|
2655
|
-
/** Sets `
|
|
2693
|
+
/** Sets `paddingLeft: "56px"; paddingRight: "56px"`. */
|
|
2656
2694
|
get px7() {
|
|
2657
|
-
return this.
|
|
2695
|
+
return this.add("paddingLeft", "56px").add("paddingRight", "56px");
|
|
2658
2696
|
}
|
|
2659
|
-
/** Sets `
|
|
2697
|
+
/** Sets `paddingLeft: "64px"; paddingRight: "64px"`. */
|
|
2660
2698
|
get px8() {
|
|
2661
|
-
return this.
|
|
2699
|
+
return this.add("paddingLeft", "64px").add("paddingRight", "64px");
|
|
2662
2700
|
}
|
|
2663
|
-
|
|
2664
|
-
|
|
2701
|
+
/** Sets `paddingLeft: "v"; paddingRight: "v"`. */
|
|
2702
|
+
px(v) {
|
|
2703
|
+
return this.add("paddingLeft", maybeInc(v)).add("paddingRight", maybeInc(v));
|
|
2665
2704
|
}
|
|
2705
|
+
/** Sets `paddingLeft: px; paddingRight: px`. */
|
|
2666
2706
|
pxPx(px) {
|
|
2667
|
-
return this.
|
|
2707
|
+
return this.add("paddingLeft", `${px}px`).add("paddingRight", `${px}px`);
|
|
2668
2708
|
}
|
|
2669
|
-
/** Sets `
|
|
2709
|
+
/** Sets `paddingTop: "0px"; paddingBottom: "0px"`. */
|
|
2670
2710
|
get py0() {
|
|
2671
|
-
return this.
|
|
2711
|
+
return this.add("paddingTop", "0px").add("paddingBottom", "0px");
|
|
2672
2712
|
}
|
|
2673
|
-
/** Sets `
|
|
2713
|
+
/** Sets `paddingTop: "8px"; paddingBottom: "8px"`. */
|
|
2674
2714
|
get py1() {
|
|
2675
|
-
return this.
|
|
2715
|
+
return this.add("paddingTop", "8px").add("paddingBottom", "8px");
|
|
2676
2716
|
}
|
|
2677
|
-
/** Sets `
|
|
2717
|
+
/** Sets `paddingTop: "16px"; paddingBottom: "16px"`. */
|
|
2678
2718
|
get py2() {
|
|
2679
|
-
return this.
|
|
2719
|
+
return this.add("paddingTop", "16px").add("paddingBottom", "16px");
|
|
2680
2720
|
}
|
|
2681
|
-
/** Sets `
|
|
2721
|
+
/** Sets `paddingTop: "24px"; paddingBottom: "24px"`. */
|
|
2682
2722
|
get py3() {
|
|
2683
|
-
return this.
|
|
2723
|
+
return this.add("paddingTop", "24px").add("paddingBottom", "24px");
|
|
2684
2724
|
}
|
|
2685
|
-
/** Sets `
|
|
2725
|
+
/** Sets `paddingTop: "32px"; paddingBottom: "32px"`. */
|
|
2686
2726
|
get py4() {
|
|
2687
|
-
return this.
|
|
2727
|
+
return this.add("paddingTop", "32px").add("paddingBottom", "32px");
|
|
2688
2728
|
}
|
|
2689
|
-
/** Sets `
|
|
2729
|
+
/** Sets `paddingTop: "40px"; paddingBottom: "40px"`. */
|
|
2690
2730
|
get py5() {
|
|
2691
|
-
return this.
|
|
2731
|
+
return this.add("paddingTop", "40px").add("paddingBottom", "40px");
|
|
2692
2732
|
}
|
|
2693
|
-
/** Sets `
|
|
2733
|
+
/** Sets `paddingTop: "48px"; paddingBottom: "48px"`. */
|
|
2694
2734
|
get py6() {
|
|
2695
|
-
return this.
|
|
2735
|
+
return this.add("paddingTop", "48px").add("paddingBottom", "48px");
|
|
2696
2736
|
}
|
|
2697
|
-
/** Sets `
|
|
2737
|
+
/** Sets `paddingTop: "56px"; paddingBottom: "56px"`. */
|
|
2698
2738
|
get py7() {
|
|
2699
|
-
return this.
|
|
2739
|
+
return this.add("paddingTop", "56px").add("paddingBottom", "56px");
|
|
2700
2740
|
}
|
|
2701
|
-
/** Sets `
|
|
2741
|
+
/** Sets `paddingTop: "64px"; paddingBottom: "64px"`. */
|
|
2702
2742
|
get py8() {
|
|
2703
|
-
return this.
|
|
2743
|
+
return this.add("paddingTop", "64px").add("paddingBottom", "64px");
|
|
2704
2744
|
}
|
|
2705
|
-
|
|
2706
|
-
|
|
2745
|
+
/** Sets `paddingTop: "v"; paddingBottom: "v"`. */
|
|
2746
|
+
py(v) {
|
|
2747
|
+
return this.add("paddingTop", maybeInc(v)).add("paddingBottom", maybeInc(v));
|
|
2707
2748
|
}
|
|
2749
|
+
/** Sets `paddingTop: px; paddingBottom: px`. */
|
|
2708
2750
|
pyPx(px) {
|
|
2709
|
-
return this.
|
|
2751
|
+
return this.add("paddingTop", `${px}px`).add("paddingBottom", `${px}px`);
|
|
2710
2752
|
}
|
|
2711
|
-
/** Sets `
|
|
2753
|
+
/** Sets `paddingTop: "0px"; paddingBottom: "0px"; paddingRight: "0px"; paddingLeft: "0px"`. */
|
|
2712
2754
|
get p0() {
|
|
2713
|
-
return this.
|
|
2755
|
+
return this.add("paddingTop", "0px").add("paddingBottom", "0px").add("paddingRight", "0px").add("paddingLeft", "0px");
|
|
2714
2756
|
}
|
|
2715
|
-
/** Sets `
|
|
2757
|
+
/** Sets `paddingTop: "8px"; paddingBottom: "8px"; paddingRight: "8px"; paddingLeft: "8px"`. */
|
|
2716
2758
|
get p1() {
|
|
2717
|
-
return this.
|
|
2759
|
+
return this.add("paddingTop", "8px").add("paddingBottom", "8px").add("paddingRight", "8px").add("paddingLeft", "8px");
|
|
2718
2760
|
}
|
|
2719
|
-
/** Sets `
|
|
2761
|
+
/** Sets `paddingTop: "16px"; paddingBottom: "16px"; paddingRight: "16px"; paddingLeft: "16px"`. */
|
|
2720
2762
|
get p2() {
|
|
2721
|
-
return this.
|
|
2763
|
+
return this.add("paddingTop", "16px").add("paddingBottom", "16px").add("paddingRight", "16px").add("paddingLeft", "16px");
|
|
2722
2764
|
}
|
|
2723
|
-
/** Sets `
|
|
2765
|
+
/** Sets `paddingTop: "24px"; paddingBottom: "24px"; paddingRight: "24px"; paddingLeft: "24px"`. */
|
|
2724
2766
|
get p3() {
|
|
2725
|
-
return this.
|
|
2767
|
+
return this.add("paddingTop", "24px").add("paddingBottom", "24px").add("paddingRight", "24px").add("paddingLeft", "24px");
|
|
2726
2768
|
}
|
|
2727
|
-
/** Sets `
|
|
2769
|
+
/** Sets `paddingTop: "32px"; paddingBottom: "32px"; paddingRight: "32px"; paddingLeft: "32px"`. */
|
|
2728
2770
|
get p4() {
|
|
2729
|
-
return this.
|
|
2771
|
+
return this.add("paddingTop", "32px").add("paddingBottom", "32px").add("paddingRight", "32px").add("paddingLeft", "32px");
|
|
2730
2772
|
}
|
|
2731
|
-
/** Sets `
|
|
2773
|
+
/** Sets `paddingTop: "40px"; paddingBottom: "40px"; paddingRight: "40px"; paddingLeft: "40px"`. */
|
|
2732
2774
|
get p5() {
|
|
2733
|
-
return this.
|
|
2775
|
+
return this.add("paddingTop", "40px").add("paddingBottom", "40px").add("paddingRight", "40px").add("paddingLeft", "40px");
|
|
2734
2776
|
}
|
|
2735
|
-
/** Sets `
|
|
2777
|
+
/** Sets `paddingTop: "48px"; paddingBottom: "48px"; paddingRight: "48px"; paddingLeft: "48px"`. */
|
|
2736
2778
|
get p6() {
|
|
2737
|
-
return this.
|
|
2779
|
+
return this.add("paddingTop", "48px").add("paddingBottom", "48px").add("paddingRight", "48px").add("paddingLeft", "48px");
|
|
2738
2780
|
}
|
|
2739
|
-
/** Sets `
|
|
2781
|
+
/** Sets `paddingTop: "56px"; paddingBottom: "56px"; paddingRight: "56px"; paddingLeft: "56px"`. */
|
|
2740
2782
|
get p7() {
|
|
2741
|
-
return this.
|
|
2783
|
+
return this.add("paddingTop", "56px").add("paddingBottom", "56px").add("paddingRight", "56px").add("paddingLeft", "56px");
|
|
2742
2784
|
}
|
|
2743
|
-
/** Sets `
|
|
2785
|
+
/** Sets `paddingTop: "64px"; paddingBottom: "64px"; paddingRight: "64px"; paddingLeft: "64px"`. */
|
|
2744
2786
|
get p8() {
|
|
2745
|
-
return this.
|
|
2787
|
+
return this.add("paddingTop", "64px").add("paddingBottom", "64px").add("paddingRight", "64px").add("paddingLeft", "64px");
|
|
2746
2788
|
}
|
|
2747
|
-
|
|
2748
|
-
|
|
2789
|
+
/** Sets `paddingTop: "v"; paddingBottom: "v"; paddingRight: "v"; paddingLeft: "v"`. */
|
|
2790
|
+
p(v) {
|
|
2791
|
+
return this.add("paddingTop", maybeInc(v)).add("paddingBottom", maybeInc(v)).add("paddingRight", maybeInc(v)).add("paddingLeft", maybeInc(v));
|
|
2749
2792
|
}
|
|
2793
|
+
/** Sets `paddingTop: px; paddingBottom: px; paddingRight: px; paddingLeft: px`. */
|
|
2750
2794
|
pPx(px) {
|
|
2751
|
-
return this.
|
|
2795
|
+
return this.add("paddingTop", `${px}px`).add("paddingBottom", `${px}px`).add("paddingRight", `${px}px`).add("paddingLeft", `${px}px`);
|
|
2752
2796
|
}
|
|
2753
2797
|
// textAlign
|
|
2754
2798
|
/** Sets `textAlign: "left"`. */
|
|
@@ -3146,47 +3190,51 @@ class CssBuilder {
|
|
|
3146
3190
|
}
|
|
3147
3191
|
/** Sets `width: "0px"`. */
|
|
3148
3192
|
get w0() {
|
|
3149
|
-
return this.
|
|
3193
|
+
return this.add("width", "0px");
|
|
3150
3194
|
}
|
|
3151
3195
|
/** Sets `width: "8px"`. */
|
|
3152
3196
|
get w1() {
|
|
3153
|
-
return this.
|
|
3197
|
+
return this.add("width", "8px");
|
|
3154
3198
|
}
|
|
3155
3199
|
/** Sets `width: "16px"`. */
|
|
3156
3200
|
get w2() {
|
|
3157
|
-
return this.
|
|
3201
|
+
return this.add("width", "16px");
|
|
3158
3202
|
}
|
|
3159
3203
|
/** Sets `width: "24px"`. */
|
|
3160
3204
|
get w3() {
|
|
3161
|
-
return this.
|
|
3205
|
+
return this.add("width", "24px");
|
|
3162
3206
|
}
|
|
3163
3207
|
/** Sets `width: "32px"`. */
|
|
3164
3208
|
get w4() {
|
|
3165
|
-
return this.
|
|
3209
|
+
return this.add("width", "32px");
|
|
3166
3210
|
}
|
|
3167
3211
|
/** Sets `width: "40px"`. */
|
|
3168
3212
|
get w5() {
|
|
3169
|
-
return this.
|
|
3213
|
+
return this.add("width", "40px");
|
|
3170
3214
|
}
|
|
3171
3215
|
/** Sets `width: "48px"`. */
|
|
3172
3216
|
get w6() {
|
|
3173
|
-
return this.
|
|
3217
|
+
return this.add("width", "48px");
|
|
3174
3218
|
}
|
|
3175
3219
|
/** Sets `width: "56px"`. */
|
|
3176
3220
|
get w7() {
|
|
3177
|
-
return this.
|
|
3221
|
+
return this.add("width", "56px");
|
|
3178
3222
|
}
|
|
3179
3223
|
/** Sets `width: "64px"`. */
|
|
3180
3224
|
get w8() {
|
|
3181
|
-
return this.
|
|
3225
|
+
return this.add("width", "64px");
|
|
3226
|
+
}
|
|
3227
|
+
/** Sets `width: "auto"`. */
|
|
3228
|
+
get wa() {
|
|
3229
|
+
return this.add("width", "auto");
|
|
3182
3230
|
}
|
|
3183
|
-
/** Sets `width:
|
|
3184
|
-
w(
|
|
3185
|
-
return this.add("width", maybeInc(
|
|
3231
|
+
/** Sets `width: "v"`. */
|
|
3232
|
+
w(v) {
|
|
3233
|
+
return this.add("width", maybeInc(v));
|
|
3186
3234
|
}
|
|
3187
3235
|
/** Sets `width: px`. */
|
|
3188
3236
|
wPx(px) {
|
|
3189
|
-
return this.
|
|
3237
|
+
return this.add("width", `${px}px`);
|
|
3190
3238
|
}
|
|
3191
3239
|
// wordBreak
|
|
3192
3240
|
/** Sets `wordBreak: "normal"`. */
|