@incursa/ui-kit 0.4.0 → 1.0.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/LLMS.txt +19 -5
- package/README.md +18 -4
- package/dist/inc-design-language.css +65 -54
- package/dist/inc-design-language.css.map +1 -1
- package/dist/inc-design-language.js +132 -2
- package/dist/inc-design-language.min.css +1 -1
- package/dist/inc-design-language.min.css.map +1 -1
- package/package.json +1 -1
- package/src/_inc-tokens.scss +12 -0
- package/src/inc-design-language.js +132 -2
- package/src/inc-design-language.scss +49 -131
|
@@ -423,14 +423,6 @@
|
|
|
423
423
|
color: $inc-text-inverse;
|
|
424
424
|
}
|
|
425
425
|
|
|
426
|
-
&--light {
|
|
427
|
-
@extend .btn-light;
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
&--dark {
|
|
431
|
-
@extend .btn-dark;
|
|
432
|
-
}
|
|
433
|
-
|
|
434
426
|
&--link {
|
|
435
427
|
@extend .btn-link;
|
|
436
428
|
}
|
|
@@ -459,14 +451,6 @@
|
|
|
459
451
|
@extend .btn-outline-info;
|
|
460
452
|
}
|
|
461
453
|
|
|
462
|
-
&--outline-light {
|
|
463
|
-
@extend .btn-outline-light;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
&--outline-dark {
|
|
467
|
-
@extend .btn-outline-dark;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
454
|
&--sm {
|
|
471
455
|
@extend .btn-sm;
|
|
472
456
|
}
|
|
@@ -476,10 +460,10 @@
|
|
|
476
460
|
}
|
|
477
461
|
|
|
478
462
|
&--micro {
|
|
479
|
-
padding:
|
|
480
|
-
font-size:
|
|
481
|
-
line-height:
|
|
482
|
-
border-radius:
|
|
463
|
+
padding: $inc-control-density-micro-padding-block $inc-control-density-micro-padding-inline;
|
|
464
|
+
font-size: $inc-control-density-micro-font-size;
|
|
465
|
+
line-height: $inc-control-density-micro-line-height;
|
|
466
|
+
border-radius: $inc-control-density-micro-border-radius;
|
|
483
467
|
}
|
|
484
468
|
|
|
485
469
|
&--nowrap {
|
|
@@ -565,14 +549,6 @@
|
|
|
565
549
|
border: 1px solid $inc-blue-700;
|
|
566
550
|
}
|
|
567
551
|
|
|
568
|
-
&--light {
|
|
569
|
-
@extend .bg-light;
|
|
570
|
-
}
|
|
571
|
-
|
|
572
|
-
&--dark {
|
|
573
|
-
@extend .bg-dark;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
552
|
&--pill {
|
|
577
553
|
@extend .rounded-pill;
|
|
578
554
|
}
|
|
@@ -609,14 +585,6 @@
|
|
|
609
585
|
@extend .alert-info;
|
|
610
586
|
}
|
|
611
587
|
|
|
612
|
-
&--light {
|
|
613
|
-
@extend .alert-light;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
&--dark {
|
|
617
|
-
@extend .alert-dark;
|
|
618
|
-
}
|
|
619
|
-
|
|
620
588
|
&--dismissible {
|
|
621
589
|
@extend .alert-dismissible;
|
|
622
590
|
}
|
|
@@ -647,11 +615,11 @@
|
|
|
647
615
|
}
|
|
648
616
|
|
|
649
617
|
&--micro {
|
|
650
|
-
padding:
|
|
651
|
-
font-size:
|
|
652
|
-
line-height:
|
|
653
|
-
min-height:
|
|
654
|
-
border-radius:
|
|
618
|
+
padding: $inc-control-density-micro-padding-block $inc-control-density-micro-padding-inline;
|
|
619
|
+
font-size: $inc-control-density-micro-font-size;
|
|
620
|
+
line-height: $inc-control-density-micro-line-height;
|
|
621
|
+
min-height: $inc-control-density-micro-min-height;
|
|
622
|
+
border-radius: $inc-control-density-micro-border-radius;
|
|
655
623
|
}
|
|
656
624
|
|
|
657
625
|
&--expand {
|
|
@@ -682,13 +650,13 @@
|
|
|
682
650
|
}
|
|
683
651
|
|
|
684
652
|
&--micro {
|
|
685
|
-
padding:
|
|
686
|
-
font-size:
|
|
687
|
-
line-height:
|
|
688
|
-
min-height:
|
|
689
|
-
border-radius:
|
|
690
|
-
background-position: right
|
|
691
|
-
background-size:
|
|
653
|
+
padding: $inc-control-density-micro-padding-block $inc-control-density-micro-padding-inline $inc-control-density-micro-padding-block $inc-control-density-micro-select-padding-inline-start;
|
|
654
|
+
font-size: $inc-control-density-micro-font-size;
|
|
655
|
+
line-height: $inc-control-density-micro-line-height;
|
|
656
|
+
min-height: $inc-control-density-micro-min-height;
|
|
657
|
+
border-radius: $inc-control-density-micro-border-radius;
|
|
658
|
+
background-position: right $inc-control-density-micro-select-arrow-inset-inline-end center;
|
|
659
|
+
background-size: $inc-control-density-micro-select-arrow-width $inc-control-density-micro-select-arrow-height;
|
|
692
660
|
}
|
|
693
661
|
|
|
694
662
|
&--expand {
|
|
@@ -704,11 +672,11 @@
|
|
|
704
672
|
&__check {
|
|
705
673
|
@extend .form-check;
|
|
706
674
|
|
|
707
|
-
|
|
675
|
+
&-input {
|
|
708
676
|
@extend .form-check-input;
|
|
709
677
|
}
|
|
710
678
|
|
|
711
|
-
|
|
679
|
+
&-label {
|
|
712
680
|
@extend .form-check-label;
|
|
713
681
|
}
|
|
714
682
|
}
|
|
@@ -934,20 +902,20 @@
|
|
|
934
902
|
}
|
|
935
903
|
|
|
936
904
|
&--micro {
|
|
937
|
-
min-height:
|
|
905
|
+
min-height: $inc-control-density-micro-min-height;
|
|
938
906
|
|
|
939
907
|
> .inc-form__control,
|
|
940
908
|
> .inc-form__select {
|
|
941
|
-
font-size:
|
|
942
|
-
padding:
|
|
943
|
-
line-height:
|
|
909
|
+
font-size: $inc-control-density-micro-font-size;
|
|
910
|
+
padding: $inc-control-density-micro-padding-block $inc-control-density-micro-padding-inline;
|
|
911
|
+
line-height: $inc-control-density-micro-line-height;
|
|
944
912
|
}
|
|
945
913
|
|
|
946
914
|
> .input-group-text,
|
|
947
915
|
> .inc-input-group__text {
|
|
948
|
-
padding:
|
|
949
|
-
font-size:
|
|
950
|
-
line-height:
|
|
916
|
+
padding: $inc-control-density-micro-padding-block $inc-control-density-micro-padding-inline;
|
|
917
|
+
font-size: $inc-control-density-micro-font-size;
|
|
918
|
+
line-height: $inc-control-density-micro-line-height;
|
|
951
919
|
}
|
|
952
920
|
}
|
|
953
921
|
|
|
@@ -1016,10 +984,6 @@
|
|
|
1016
984
|
&__menu {
|
|
1017
985
|
@extend .dropdown-menu;
|
|
1018
986
|
|
|
1019
|
-
&--dark {
|
|
1020
|
-
@extend .dropdown-menu-dark;
|
|
1021
|
-
}
|
|
1022
|
-
|
|
1023
987
|
&--end {
|
|
1024
988
|
@extend .dropdown-menu-end;
|
|
1025
989
|
}
|
|
@@ -1900,14 +1864,6 @@
|
|
|
1900
1864
|
margin-left: auto;
|
|
1901
1865
|
}
|
|
1902
1866
|
|
|
1903
|
-
&--light {
|
|
1904
|
-
@extend .navbar-light;
|
|
1905
|
-
}
|
|
1906
|
-
|
|
1907
|
-
&--dark {
|
|
1908
|
-
@extend .navbar-dark;
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
1867
|
&--expand-sm {
|
|
1912
1868
|
@extend .navbar-expand-sm;
|
|
1913
1869
|
}
|
|
@@ -1967,7 +1923,7 @@
|
|
|
1967
1923
|
|
|
1968
1924
|
&__toggle {
|
|
1969
1925
|
@extend .btn;
|
|
1970
|
-
@extend .btn-outline-
|
|
1926
|
+
@extend .btn-outline-secondary;
|
|
1971
1927
|
display: inline-flex;
|
|
1972
1928
|
align-items: center;
|
|
1973
1929
|
gap: 0.625rem;
|
|
@@ -2771,13 +2727,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
2771
2727
|
@extend .list-group-item-info;
|
|
2772
2728
|
}
|
|
2773
2729
|
|
|
2774
|
-
&--light {
|
|
2775
|
-
@extend .list-group-item-light;
|
|
2776
|
-
}
|
|
2777
|
-
|
|
2778
|
-
&--dark {
|
|
2779
|
-
@extend .list-group-item-dark;
|
|
2780
|
-
}
|
|
2781
2730
|
}
|
|
2782
2731
|
}
|
|
2783
2732
|
|
|
@@ -2841,6 +2790,28 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
2841
2790
|
color: $primary;
|
|
2842
2791
|
}
|
|
2843
2792
|
|
|
2793
|
+
&__toggle {
|
|
2794
|
+
flex: 0 0 auto;
|
|
2795
|
+
|
|
2796
|
+
&.inc-btn {
|
|
2797
|
+
min-height: 1.625rem;
|
|
2798
|
+
padding: 0.2rem 0.55rem;
|
|
2799
|
+
font-size: 0.6875rem;
|
|
2800
|
+
line-height: 1;
|
|
2801
|
+
}
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
&__toggle-text {
|
|
2805
|
+
display: inline-block;
|
|
2806
|
+
min-width: 3.25rem;
|
|
2807
|
+
text-align: center;
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
&.is-paused {
|
|
2811
|
+
border-color: rgba($warning, 0.24);
|
|
2812
|
+
box-shadow: 0 0.9rem 1.75rem rgba($warning, 0.1);
|
|
2813
|
+
}
|
|
2814
|
+
|
|
2844
2815
|
&.is-loading {
|
|
2845
2816
|
border-color: rgba($primary, 0.2);
|
|
2846
2817
|
box-shadow: 0 0.9rem 1.75rem rgba($primary, 0.14);
|
|
@@ -3066,13 +3037,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
3066
3037
|
@extend .text-info;
|
|
3067
3038
|
}
|
|
3068
3039
|
|
|
3069
|
-
&--light {
|
|
3070
|
-
@extend .text-light;
|
|
3071
|
-
}
|
|
3072
|
-
|
|
3073
|
-
&--dark {
|
|
3074
|
-
@extend .text-dark;
|
|
3075
|
-
}
|
|
3076
3040
|
}
|
|
3077
3041
|
|
|
3078
3042
|
&--grow {
|
|
@@ -3106,13 +3070,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
3106
3070
|
@extend .text-info;
|
|
3107
3071
|
}
|
|
3108
3072
|
|
|
3109
|
-
&--light {
|
|
3110
|
-
@extend .text-light;
|
|
3111
|
-
}
|
|
3112
|
-
|
|
3113
|
-
&--dark {
|
|
3114
|
-
@extend .text-dark;
|
|
3115
|
-
}
|
|
3116
3073
|
}
|
|
3117
3074
|
}
|
|
3118
3075
|
|
|
@@ -3165,12 +3122,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
3165
3122
|
border-right: none;
|
|
3166
3123
|
}
|
|
3167
3124
|
|
|
3168
|
-
&--light thead th {
|
|
3169
|
-
background-color: $inc-surface-primary !important;
|
|
3170
|
-
color: $inc-text-primary !important;
|
|
3171
|
-
border-color: $inc-border-default !important;
|
|
3172
|
-
}
|
|
3173
|
-
|
|
3174
3125
|
tbody,
|
|
3175
3126
|
tfoot {
|
|
3176
3127
|
td,
|
|
@@ -3271,14 +3222,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
3271
3222
|
@extend .table-info;
|
|
3272
3223
|
}
|
|
3273
3224
|
|
|
3274
|
-
&--light {
|
|
3275
|
-
@extend .table-light;
|
|
3276
|
-
}
|
|
3277
|
-
|
|
3278
|
-
&--dark {
|
|
3279
|
-
@extend .table-dark;
|
|
3280
|
-
}
|
|
3281
|
-
|
|
3282
3225
|
&--text-small {
|
|
3283
3226
|
tbody td,
|
|
3284
3227
|
tbody th,
|
|
@@ -3426,16 +3369,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
3426
3369
|
@extend .table-info;
|
|
3427
3370
|
}
|
|
3428
3371
|
|
|
3429
|
-
&--light,
|
|
3430
|
-
th.inc-table__header--light {
|
|
3431
|
-
@extend .table-light;
|
|
3432
|
-
}
|
|
3433
|
-
|
|
3434
|
-
&--dark,
|
|
3435
|
-
th.inc-table__header--dark {
|
|
3436
|
-
@extend .table-dark;
|
|
3437
|
-
}
|
|
3438
|
-
|
|
3439
3372
|
&--center,
|
|
3440
3373
|
th.inc-table__header--center {
|
|
3441
3374
|
text-align: center;
|
|
@@ -3492,13 +3425,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
3492
3425
|
@extend .table-info;
|
|
3493
3426
|
}
|
|
3494
3427
|
|
|
3495
|
-
&--light {
|
|
3496
|
-
@extend .table-light;
|
|
3497
|
-
}
|
|
3498
|
-
|
|
3499
|
-
&--dark {
|
|
3500
|
-
@extend .table-dark;
|
|
3501
|
-
}
|
|
3502
3428
|
}
|
|
3503
3429
|
|
|
3504
3430
|
&__cell {
|
|
@@ -3530,14 +3456,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
3530
3456
|
@extend .table-info;
|
|
3531
3457
|
}
|
|
3532
3458
|
|
|
3533
|
-
&--light {
|
|
3534
|
-
@extend .table-light;
|
|
3535
|
-
}
|
|
3536
|
-
|
|
3537
|
-
&--dark {
|
|
3538
|
-
@extend .table-dark;
|
|
3539
|
-
}
|
|
3540
|
-
|
|
3541
3459
|
&--action {
|
|
3542
3460
|
width: 1%;
|
|
3543
3461
|
white-space: nowrap;
|
|
@@ -4106,7 +4024,7 @@ body.inc-offcanvas-open {
|
|
|
4106
4024
|
}
|
|
4107
4025
|
|
|
4108
4026
|
&__check {
|
|
4109
|
-
&.is-invalid .inc-
|
|
4027
|
+
&.is-invalid .inc-form__check-label {
|
|
4110
4028
|
color: $danger;
|
|
4111
4029
|
}
|
|
4112
4030
|
}
|