@agility/plenum-ui 1.3.46 → 1.3.48
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/lib/components/Button/Button.d.ts +5 -3
- package/lib/components/Button/Button.stories.d.ts +1 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +2 -2
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts +1 -0
- package/lib/components/Combobox/Combobox.d.ts +2 -2
- package/lib/components/Dropdown/Dropdown.d.ts +33 -19
- package/lib/components/Dropdown/Dropdown.stories.d.ts +6 -7
- package/lib/components/DynamicIcons/DynamicIcons.d.ts +17 -0
- package/lib/components/DynamicIcons/DynamicIcons.stories.d.ts +9 -0
- package/lib/components/DynamicIcons/TablerIcon.d.ts +9 -0
- package/lib/components/DynamicIcons/index.d.ts +3 -0
- package/lib/components/DynamicIcons/tablerIconNames.d.ts +2 -0
- package/lib/components/Forms/BaseField/BaseField.d.ts +1 -1
- package/lib/components/Forms/Checkbox/Checkbox.d.ts +4 -0
- package/lib/components/Forms/Checkbox/Checkbox.stories.d.ts +1 -0
- package/lib/components/Forms/Select/Select.d.ts +1 -1
- package/lib/components/Forms/TextInput/TextInput.d.ts +1 -1
- package/lib/components/Forms/TextInputAddon/InputCta/InputCta.d.ts +3 -3
- package/lib/components/Forms/TextInputAddon/TextInputAddon.d.ts +6 -6
- package/lib/components/Forms/TextInputAddon/TextInputAddon.stories.d.ts +1 -0
- package/lib/components/Forms/TextInputSelect/TextInputSelect.d.ts +2 -2
- package/lib/index.esm.js +99909 -1854
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +99921 -1865
- package/lib/index.js.map +1 -1
- package/lib/tailwind.css +161 -105
- package/lib/util/Loader.d.ts +0 -1
- package/lib/util/types.d.ts +2 -0
- package/package.json +6 -2
- package/coverage/base.css +0 -224
- package/coverage/block-navigation.js +0 -87
- package/coverage/components/Button/Button.tsx.html +0 -739
- package/coverage/components/Button/index.html +0 -116
- package/coverage/components/Forms/BaseField/BaseField.tsx.html +0 -415
- package/coverage/components/Forms/BaseField/index.html +0 -116
- package/coverage/components/Forms/Checkbox/Checkbox.tsx.html +0 -346
- package/coverage/components/Forms/Checkbox/index.html +0 -116
- package/coverage/components/Forms/InputCounter/InputCounter.tsx.html +0 -163
- package/coverage/components/Forms/InputCounter/index.html +0 -116
- package/coverage/components/Forms/InputLabel/InputLabel.tsx.html +0 -211
- package/coverage/components/Forms/InputLabel/index.html +0 -131
- package/coverage/components/Forms/InputLabel/index.ts.html +0 -94
- package/coverage/components/Forms/Radio/Radio.tsx.html +0 -364
- package/coverage/components/Forms/Radio/index.html +0 -116
- package/coverage/components/Forms/Select/Select.tsx.html +0 -394
- package/coverage/components/Forms/Select/index.html +0 -116
- package/coverage/components/Forms/TextInputAddon/InputCta/InputCta.tsx.html +0 -271
- package/coverage/components/Forms/TextInputAddon/InputCta/index.html +0 -116
- package/coverage/components/Forms/TextInputSelect/InputSelect/InputSelect.tsx.html +0 -259
- package/coverage/components/Forms/TextInputSelect/InputSelect/index.html +0 -116
- package/coverage/coverage-final.json +0 -14
- package/coverage/favicon.png +0 -0
- package/coverage/index.html +0 -251
- package/coverage/prettify.css +0 -1
- package/coverage/prettify.js +0 -2
- package/coverage/sort-arrow-sprite.png +0 -0
- package/coverage/sorter.js +0 -196
- package/coverage/util/DynamicIcons.tsx.html +0 -151
- package/coverage/util/Loader.tsx.html +0 -139
- package/coverage/util/index.html +0 -146
- package/coverage/util/useID.ts.html +0 -133
- package/lib/components/Switch/Switch.d.ts +0 -11
- package/lib/components/Switch/Switch.stories.d.ts +0 -9
- package/lib/components/Switch/Switch.test.d.ts +0 -1
- package/lib/components/Switch/index.d.ts +0 -1
package/lib/tailwind.css
CHANGED
|
@@ -353,13 +353,6 @@ input::-moz-placeholder, textarea::-moz-placeholder {
|
|
|
353
353
|
/* 2 */
|
|
354
354
|
}
|
|
355
355
|
|
|
356
|
-
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
357
|
-
opacity: 1;
|
|
358
|
-
/* 1 */
|
|
359
|
-
color: #9ca3af;
|
|
360
|
-
/* 2 */
|
|
361
|
-
}
|
|
362
|
-
|
|
363
356
|
input::placeholder,
|
|
364
357
|
textarea::placeholder {
|
|
365
358
|
opacity: 1;
|
|
@@ -423,7 +416,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
423
416
|
display: none;
|
|
424
417
|
}
|
|
425
418
|
|
|
426
|
-
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
|
|
419
|
+
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
|
|
427
420
|
-webkit-appearance: none;
|
|
428
421
|
-moz-appearance: none;
|
|
429
422
|
appearance: none;
|
|
@@ -440,7 +433,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
440
433
|
--tw-shadow: 0 0 #0000;
|
|
441
434
|
}
|
|
442
435
|
|
|
443
|
-
[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
|
|
436
|
+
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
|
|
444
437
|
outline: 2px solid transparent;
|
|
445
438
|
outline-offset: 2px;
|
|
446
439
|
--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
|
|
@@ -458,11 +451,6 @@ input::-moz-placeholder, textarea::-moz-placeholder {
|
|
|
458
451
|
opacity: 1;
|
|
459
452
|
}
|
|
460
453
|
|
|
461
|
-
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
|
|
462
|
-
color: #6b7280;
|
|
463
|
-
opacity: 1;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
454
|
input::placeholder,textarea::placeholder {
|
|
467
455
|
color: #6b7280;
|
|
468
456
|
opacity: 1;
|
|
@@ -487,16 +475,18 @@ select {
|
|
|
487
475
|
background-repeat: no-repeat;
|
|
488
476
|
background-size: 1.5em 1.5em;
|
|
489
477
|
padding-right: 2.5rem;
|
|
490
|
-
print-color-adjust: exact;
|
|
478
|
+
-webkit-print-color-adjust: exact;
|
|
479
|
+
print-color-adjust: exact;
|
|
491
480
|
}
|
|
492
481
|
|
|
493
|
-
[multiple] {
|
|
482
|
+
[multiple],[size]:where(select:not([size="1"])) {
|
|
494
483
|
background-image: initial;
|
|
495
484
|
background-position: initial;
|
|
496
485
|
background-repeat: unset;
|
|
497
486
|
background-size: initial;
|
|
498
487
|
padding-right: 0.75rem;
|
|
499
|
-
print-color-adjust: unset;
|
|
488
|
+
-webkit-print-color-adjust: unset;
|
|
489
|
+
print-color-adjust: unset;
|
|
500
490
|
}
|
|
501
491
|
|
|
502
492
|
[type='checkbox'],[type='radio'] {
|
|
@@ -504,13 +494,13 @@ select {
|
|
|
504
494
|
-moz-appearance: none;
|
|
505
495
|
appearance: none;
|
|
506
496
|
padding: 0;
|
|
507
|
-
print-color-adjust: exact;
|
|
497
|
+
-webkit-print-color-adjust: exact;
|
|
498
|
+
print-color-adjust: exact;
|
|
508
499
|
display: inline-block;
|
|
509
500
|
vertical-align: middle;
|
|
510
501
|
background-origin: border-box;
|
|
511
502
|
-webkit-user-select: none;
|
|
512
503
|
-moz-user-select: none;
|
|
513
|
-
-ms-user-select: none;
|
|
514
504
|
user-select: none;
|
|
515
505
|
flex-shrink: 0;
|
|
516
506
|
height: 1rem;
|
|
@@ -682,14 +672,6 @@ select {
|
|
|
682
672
|
top: 1px;
|
|
683
673
|
}
|
|
684
674
|
|
|
685
|
-
.bottom-10 {
|
|
686
|
-
bottom: 2.5rem;
|
|
687
|
-
}
|
|
688
|
-
|
|
689
|
-
.left-0 {
|
|
690
|
-
left: 0px;
|
|
691
|
-
}
|
|
692
|
-
|
|
693
675
|
.top-8 {
|
|
694
676
|
top: 2rem;
|
|
695
677
|
}
|
|
@@ -698,6 +680,10 @@ select {
|
|
|
698
680
|
top: 10px;
|
|
699
681
|
}
|
|
700
682
|
|
|
683
|
+
.left-0 {
|
|
684
|
+
left: 0px;
|
|
685
|
+
}
|
|
686
|
+
|
|
701
687
|
.z-30 {
|
|
702
688
|
z-index: 30;
|
|
703
689
|
}
|
|
@@ -722,6 +708,11 @@ select {
|
|
|
722
708
|
margin: 0px;
|
|
723
709
|
}
|
|
724
710
|
|
|
711
|
+
.mx-12 {
|
|
712
|
+
margin-left: 3rem;
|
|
713
|
+
margin-right: 3rem;
|
|
714
|
+
}
|
|
715
|
+
|
|
725
716
|
.mt-5 {
|
|
726
717
|
margin-top: 1.25rem;
|
|
727
718
|
}
|
|
@@ -734,8 +725,8 @@ select {
|
|
|
734
725
|
margin-top: 0.5rem;
|
|
735
726
|
}
|
|
736
727
|
|
|
737
|
-
.
|
|
738
|
-
margin-
|
|
728
|
+
.ml-1 {
|
|
729
|
+
margin-left: 0.25rem;
|
|
739
730
|
}
|
|
740
731
|
|
|
741
732
|
.mr-2 {
|
|
@@ -798,14 +789,14 @@ select {
|
|
|
798
789
|
display: none;
|
|
799
790
|
}
|
|
800
791
|
|
|
801
|
-
.h-6 {
|
|
802
|
-
height: 1.5rem;
|
|
803
|
-
}
|
|
804
|
-
|
|
805
792
|
.h-16 {
|
|
806
793
|
height: 4rem;
|
|
807
794
|
}
|
|
808
795
|
|
|
796
|
+
.h-6 {
|
|
797
|
+
height: 1.5rem;
|
|
798
|
+
}
|
|
799
|
+
|
|
809
800
|
.h-8 {
|
|
810
801
|
height: 2rem;
|
|
811
802
|
}
|
|
@@ -858,14 +849,14 @@ select {
|
|
|
858
849
|
height: 1.25rem;
|
|
859
850
|
}
|
|
860
851
|
|
|
861
|
-
.h-9 {
|
|
862
|
-
height: 2.25rem;
|
|
863
|
-
}
|
|
864
|
-
|
|
865
852
|
.h-\[38px\] {
|
|
866
853
|
height: 38px;
|
|
867
854
|
}
|
|
868
855
|
|
|
856
|
+
.h-9 {
|
|
857
|
+
height: 2.25rem;
|
|
858
|
+
}
|
|
859
|
+
|
|
869
860
|
.h-\[28px\] {
|
|
870
861
|
height: 28px;
|
|
871
862
|
}
|
|
@@ -890,14 +881,18 @@ select {
|
|
|
890
881
|
max-height: 15rem;
|
|
891
882
|
}
|
|
892
883
|
|
|
893
|
-
.
|
|
894
|
-
|
|
884
|
+
.min-h-\[38px\] {
|
|
885
|
+
min-height: 38px;
|
|
895
886
|
}
|
|
896
887
|
|
|
897
888
|
.w-16 {
|
|
898
889
|
width: 4rem;
|
|
899
890
|
}
|
|
900
891
|
|
|
892
|
+
.w-6 {
|
|
893
|
+
width: 1.5rem;
|
|
894
|
+
}
|
|
895
|
+
|
|
901
896
|
.w-8 {
|
|
902
897
|
width: 2rem;
|
|
903
898
|
}
|
|
@@ -974,12 +969,6 @@ select {
|
|
|
974
969
|
width: 14px;
|
|
975
970
|
}
|
|
976
971
|
|
|
977
|
-
.min-w-fit {
|
|
978
|
-
min-width: -webkit-fit-content;
|
|
979
|
-
min-width: -moz-fit-content;
|
|
980
|
-
min-width: fit-content;
|
|
981
|
-
}
|
|
982
|
-
|
|
983
972
|
.min-w-\[320px\] {
|
|
984
973
|
min-width: 320px;
|
|
985
974
|
}
|
|
@@ -1035,12 +1024,6 @@ select {
|
|
|
1035
1024
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1036
1025
|
}
|
|
1037
1026
|
|
|
1038
|
-
@-webkit-keyframes spin {
|
|
1039
|
-
to {
|
|
1040
|
-
transform: rotate(360deg);
|
|
1041
|
-
}
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
1027
|
@keyframes spin {
|
|
1045
1028
|
to {
|
|
1046
1029
|
transform: rotate(360deg);
|
|
@@ -1048,8 +1031,7 @@ select {
|
|
|
1048
1031
|
}
|
|
1049
1032
|
|
|
1050
1033
|
.animate-spin {
|
|
1051
|
-
|
|
1052
|
-
animation: spin 1s linear infinite;
|
|
1034
|
+
animation: spin 1s linear infinite;
|
|
1053
1035
|
}
|
|
1054
1036
|
|
|
1055
1037
|
.cursor-auto {
|
|
@@ -1067,7 +1049,6 @@ select {
|
|
|
1067
1049
|
.select-none {
|
|
1068
1050
|
-webkit-user-select: none;
|
|
1069
1051
|
-moz-user-select: none;
|
|
1070
|
-
-ms-user-select: none;
|
|
1071
1052
|
user-select: none;
|
|
1072
1053
|
}
|
|
1073
1054
|
|
|
@@ -1075,10 +1056,18 @@ select {
|
|
|
1075
1056
|
grid-auto-flow: row;
|
|
1076
1057
|
}
|
|
1077
1058
|
|
|
1059
|
+
.grid-cols-3 {
|
|
1060
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1078
1063
|
.flex-row {
|
|
1079
1064
|
flex-direction: row;
|
|
1080
1065
|
}
|
|
1081
1066
|
|
|
1067
|
+
.flex-col {
|
|
1068
|
+
flex-direction: column;
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1082
1071
|
.items-start {
|
|
1083
1072
|
align-items: flex-start;
|
|
1084
1073
|
}
|
|
@@ -1103,6 +1092,10 @@ select {
|
|
|
1103
1092
|
gap: 1rem;
|
|
1104
1093
|
}
|
|
1105
1094
|
|
|
1095
|
+
.gap-2 {
|
|
1096
|
+
gap: 0.5rem;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1106
1099
|
.gap-1 {
|
|
1107
1100
|
gap: 0.25rem;
|
|
1108
1101
|
}
|
|
@@ -1111,6 +1104,15 @@ select {
|
|
|
1111
1104
|
gap: 0.75rem;
|
|
1112
1105
|
}
|
|
1113
1106
|
|
|
1107
|
+
.gap-y-4 {
|
|
1108
|
+
row-gap: 1rem;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
.gap-x-4 {
|
|
1112
|
+
-moz-column-gap: 1rem;
|
|
1113
|
+
column-gap: 1rem;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1114
1116
|
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1115
1117
|
--tw-space-x-reverse: 0;
|
|
1116
1118
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
@@ -1134,10 +1136,6 @@ select {
|
|
|
1134
1136
|
border-color: rgb(243 244 246 / var(--tw-divide-opacity));
|
|
1135
1137
|
}
|
|
1136
1138
|
|
|
1137
|
-
.self-end {
|
|
1138
|
-
align-self: flex-end;
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
1139
|
.overflow-auto {
|
|
1142
1140
|
overflow: auto;
|
|
1143
1141
|
}
|
|
@@ -1160,21 +1158,16 @@ select {
|
|
|
1160
1158
|
border-radius: 9999px;
|
|
1161
1159
|
}
|
|
1162
1160
|
|
|
1163
|
-
.rounded-\[3px\] {
|
|
1164
|
-
border-radius: 3px;
|
|
1165
|
-
}
|
|
1166
|
-
|
|
1167
1161
|
.rounded {
|
|
1168
1162
|
border-radius: 0.25rem;
|
|
1169
1163
|
}
|
|
1170
1164
|
|
|
1171
|
-
.rounded-
|
|
1172
|
-
border-radius:
|
|
1165
|
+
.rounded-sm {
|
|
1166
|
+
border-radius: 0.125rem;
|
|
1173
1167
|
}
|
|
1174
1168
|
|
|
1175
|
-
|
|
1176
|
-
border-
|
|
1177
|
-
border-bottom-right-radius: 0px !important;
|
|
1169
|
+
.rounded-none {
|
|
1170
|
+
border-radius: 0px;
|
|
1178
1171
|
}
|
|
1179
1172
|
|
|
1180
1173
|
.rounded-l-none {
|
|
@@ -1187,11 +1180,21 @@ select {
|
|
|
1187
1180
|
border-bottom-right-radius: 0.25rem;
|
|
1188
1181
|
}
|
|
1189
1182
|
|
|
1183
|
+
.\!rounded-r-none {
|
|
1184
|
+
border-top-right-radius: 0px !important;
|
|
1185
|
+
border-bottom-right-radius: 0px !important;
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1190
1188
|
.\!rounded-l {
|
|
1191
1189
|
border-top-left-radius: 0.25rem !important;
|
|
1192
1190
|
border-bottom-left-radius: 0.25rem !important;
|
|
1193
1191
|
}
|
|
1194
1192
|
|
|
1193
|
+
.\!rounded-l-none {
|
|
1194
|
+
border-top-left-radius: 0px !important;
|
|
1195
|
+
border-bottom-left-radius: 0px !important;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1195
1198
|
.\!rounded-r {
|
|
1196
1199
|
border-top-right-radius: 0.25rem !important;
|
|
1197
1200
|
border-bottom-right-radius: 0.25rem !important;
|
|
@@ -1214,14 +1217,14 @@ select {
|
|
|
1214
1217
|
border-width: 2px;
|
|
1215
1218
|
}
|
|
1216
1219
|
|
|
1217
|
-
.\!border-r-0 {
|
|
1218
|
-
border-right-width: 0px !important;
|
|
1219
|
-
}
|
|
1220
|
-
|
|
1221
1220
|
.\!border-l-0 {
|
|
1222
1221
|
border-left-width: 0px !important;
|
|
1223
1222
|
}
|
|
1224
1223
|
|
|
1224
|
+
.\!border-r-0 {
|
|
1225
|
+
border-right-width: 0px !important;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1225
1228
|
.border-purple-700 {
|
|
1226
1229
|
--tw-border-opacity: 1;
|
|
1227
1230
|
border-color: rgb(88 0 212 / var(--tw-border-opacity));
|
|
@@ -1232,9 +1235,9 @@ select {
|
|
|
1232
1235
|
border-color: rgb(105 44 216 / var(--tw-border-opacity));
|
|
1233
1236
|
}
|
|
1234
1237
|
|
|
1235
|
-
.border-purple-
|
|
1238
|
+
.border-purple-50 {
|
|
1236
1239
|
--tw-border-opacity: 1;
|
|
1237
|
-
border-color: rgb(
|
|
1240
|
+
border-color: rgb(238 230 251 / var(--tw-border-opacity));
|
|
1238
1241
|
}
|
|
1239
1242
|
|
|
1240
1243
|
.border-gray-300 {
|
|
@@ -1331,6 +1334,11 @@ select {
|
|
|
1331
1334
|
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1332
1335
|
}
|
|
1333
1336
|
|
|
1337
|
+
.bg-purple-50 {
|
|
1338
|
+
--tw-bg-opacity: 1;
|
|
1339
|
+
background-color: rgb(238 230 251 / var(--tw-bg-opacity));
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1334
1342
|
.bg-red-600 {
|
|
1335
1343
|
--tw-bg-opacity: 1;
|
|
1336
1344
|
background-color: rgb(220 38 38 / var(--tw-bg-opacity));
|
|
@@ -1371,6 +1379,22 @@ select {
|
|
|
1371
1379
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
1372
1380
|
}
|
|
1373
1381
|
|
|
1382
|
+
.fill-inherit {
|
|
1383
|
+
fill: inherit;
|
|
1384
|
+
}
|
|
1385
|
+
|
|
1386
|
+
.fill-white {
|
|
1387
|
+
fill: #fff;
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
.fill-purple-700 {
|
|
1391
|
+
fill: #5800D4;
|
|
1392
|
+
}
|
|
1393
|
+
|
|
1394
|
+
.fill-gray-700 {
|
|
1395
|
+
fill: #374151;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1374
1398
|
.px-4 {
|
|
1375
1399
|
padding-left: 1rem;
|
|
1376
1400
|
padding-right: 1rem;
|
|
@@ -1401,6 +1425,11 @@ select {
|
|
|
1401
1425
|
padding-right: 0.75rem;
|
|
1402
1426
|
}
|
|
1403
1427
|
|
|
1428
|
+
.py-3 {
|
|
1429
|
+
padding-top: 0.75rem;
|
|
1430
|
+
padding-bottom: 0.75rem;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1404
1433
|
.px-1 {
|
|
1405
1434
|
padding-left: 0.25rem;
|
|
1406
1435
|
padding-right: 0.25rem;
|
|
@@ -1503,11 +1532,6 @@ select {
|
|
|
1503
1532
|
line-height: 1.25rem;
|
|
1504
1533
|
}
|
|
1505
1534
|
|
|
1506
|
-
.text-gray-600 {
|
|
1507
|
-
--tw-text-opacity: 1;
|
|
1508
|
-
color: rgb(75 85 99 / var(--tw-text-opacity));
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
1535
|
.text-white {
|
|
1512
1536
|
--tw-text-opacity: 1;
|
|
1513
1537
|
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
@@ -1518,6 +1542,11 @@ select {
|
|
|
1518
1542
|
color: rgb(209 213 219 / var(--tw-text-opacity));
|
|
1519
1543
|
}
|
|
1520
1544
|
|
|
1545
|
+
.text-gray-400 {
|
|
1546
|
+
--tw-text-opacity: 1;
|
|
1547
|
+
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1521
1550
|
.text-purple-700 {
|
|
1522
1551
|
--tw-text-opacity: 1;
|
|
1523
1552
|
color: rgb(88 0 212 / var(--tw-text-opacity));
|
|
@@ -1538,9 +1567,9 @@ select {
|
|
|
1538
1567
|
color: rgb(88 0 212 / var(--tw-text-opacity)) !important;
|
|
1539
1568
|
}
|
|
1540
1569
|
|
|
1541
|
-
.\!text-gray-
|
|
1570
|
+
.\!text-gray-700 {
|
|
1542
1571
|
--tw-text-opacity: 1 !important;
|
|
1543
|
-
color: rgb(
|
|
1572
|
+
color: rgb(55 65 81 / var(--tw-text-opacity)) !important;
|
|
1544
1573
|
}
|
|
1545
1574
|
|
|
1546
1575
|
.\!text-purple-600 {
|
|
@@ -1548,11 +1577,6 @@ select {
|
|
|
1548
1577
|
color: rgb(105 44 216 / var(--tw-text-opacity)) !important;
|
|
1549
1578
|
}
|
|
1550
1579
|
|
|
1551
|
-
.text-gray-400 {
|
|
1552
|
-
--tw-text-opacity: 1;
|
|
1553
|
-
color: rgb(156 163 175 / var(--tw-text-opacity));
|
|
1554
|
-
}
|
|
1555
|
-
|
|
1556
1580
|
.text-gray-900 {
|
|
1557
1581
|
--tw-text-opacity: 1;
|
|
1558
1582
|
color: rgb(17 24 39 / var(--tw-text-opacity));
|
|
@@ -1573,6 +1597,11 @@ select {
|
|
|
1573
1597
|
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
1574
1598
|
}
|
|
1575
1599
|
|
|
1600
|
+
.text-gray-600 {
|
|
1601
|
+
--tw-text-opacity: 1;
|
|
1602
|
+
color: rgb(75 85 99 / var(--tw-text-opacity));
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1576
1605
|
.text-gray-700\/\[\.5\] {
|
|
1577
1606
|
color: rgb(55 65 81 / .5);
|
|
1578
1607
|
}
|
|
@@ -1659,6 +1688,11 @@ select {
|
|
|
1659
1688
|
--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));
|
|
1660
1689
|
}
|
|
1661
1690
|
|
|
1691
|
+
.ring-gray-300 {
|
|
1692
|
+
--tw-ring-opacity: 1;
|
|
1693
|
+
--tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity));
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1662
1696
|
.ring-opacity-5 {
|
|
1663
1697
|
--tw-ring-opacity: 0.05;
|
|
1664
1698
|
}
|
|
@@ -1679,17 +1713,15 @@ select {
|
|
|
1679
1713
|
}
|
|
1680
1714
|
|
|
1681
1715
|
.transition {
|
|
1682
|
-
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-
|
|
1716
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
1683
1717
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
1684
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-
|
|
1718
|
+
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
|
|
1685
1719
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1686
1720
|
transition-duration: 150ms;
|
|
1687
1721
|
}
|
|
1688
1722
|
|
|
1689
1723
|
.transition-colors {
|
|
1690
|
-
transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
|
|
1691
1724
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
|
|
1692
|
-
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
|
|
1693
1725
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1694
1726
|
transition-duration: 150ms;
|
|
1695
1727
|
}
|
|
@@ -1746,14 +1778,14 @@ select {
|
|
|
1746
1778
|
--tw-ring-opacity: 0.75;
|
|
1747
1779
|
}
|
|
1748
1780
|
|
|
1749
|
-
.hover\:\!border-r-0:hover {
|
|
1750
|
-
border-right-width: 0px !important;
|
|
1751
|
-
}
|
|
1752
|
-
|
|
1753
1781
|
.hover\:\!border-l-0:hover {
|
|
1754
1782
|
border-left-width: 0px !important;
|
|
1755
1783
|
}
|
|
1756
1784
|
|
|
1785
|
+
.hover\:\!border-r-0:hover {
|
|
1786
|
+
border-right-width: 0px !important;
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1757
1789
|
.hover\:border-purple-700:hover {
|
|
1758
1790
|
--tw-border-opacity: 1;
|
|
1759
1791
|
border-color: rgb(88 0 212 / var(--tw-border-opacity));
|
|
@@ -1764,6 +1796,11 @@ select {
|
|
|
1764
1796
|
border-color: rgb(205 179 242 / var(--tw-border-opacity));
|
|
1765
1797
|
}
|
|
1766
1798
|
|
|
1799
|
+
.hover\:border-purple-100:hover {
|
|
1800
|
+
--tw-border-opacity: 1;
|
|
1801
|
+
border-color: rgb(222 204 246 / var(--tw-border-opacity));
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1767
1804
|
.hover\:border-gray-300:hover {
|
|
1768
1805
|
--tw-border-opacity: 1;
|
|
1769
1806
|
border-color: rgb(209 213 219 / var(--tw-border-opacity));
|
|
@@ -1789,9 +1826,9 @@ select {
|
|
|
1789
1826
|
background-color: rgb(185 28 28 / var(--tw-bg-opacity));
|
|
1790
1827
|
}
|
|
1791
1828
|
|
|
1792
|
-
.hover\:bg-
|
|
1829
|
+
.hover\:bg-purple-100:hover {
|
|
1793
1830
|
--tw-bg-opacity: 1;
|
|
1794
|
-
background-color: rgb(
|
|
1831
|
+
background-color: rgb(222 204 246 / var(--tw-bg-opacity));
|
|
1795
1832
|
}
|
|
1796
1833
|
|
|
1797
1834
|
.hover\:bg-gray-100:hover {
|
|
@@ -1799,6 +1836,11 @@ select {
|
|
|
1799
1836
|
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
|
|
1800
1837
|
}
|
|
1801
1838
|
|
|
1839
|
+
.hover\:bg-gray-200:hover {
|
|
1840
|
+
--tw-bg-opacity: 1;
|
|
1841
|
+
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1802
1844
|
.hover\:text-purple-700:hover {
|
|
1803
1845
|
--tw-text-opacity: 1;
|
|
1804
1846
|
color: rgb(88 0 212 / var(--tw-text-opacity));
|
|
@@ -1824,16 +1866,31 @@ select {
|
|
|
1824
1866
|
color: rgb(75 85 99 / var(--tw-text-opacity));
|
|
1825
1867
|
}
|
|
1826
1868
|
|
|
1869
|
+
.hover\:text-gray-900:hover {
|
|
1870
|
+
--tw-text-opacity: 1;
|
|
1871
|
+
color: rgb(17 24 39 / var(--tw-text-opacity));
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1827
1874
|
.hover\:text-red-500:hover {
|
|
1828
1875
|
--tw-text-opacity: 1;
|
|
1829
1876
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
1830
1877
|
}
|
|
1831
1878
|
|
|
1879
|
+
.focus\:border-purple-700:focus {
|
|
1880
|
+
--tw-border-opacity: 1;
|
|
1881
|
+
border-color: rgb(88 0 212 / var(--tw-border-opacity));
|
|
1882
|
+
}
|
|
1883
|
+
|
|
1832
1884
|
.focus\:border-purple-500:focus {
|
|
1833
1885
|
--tw-border-opacity: 1;
|
|
1834
1886
|
border-color: rgb(121 51 221 / var(--tw-border-opacity));
|
|
1835
1887
|
}
|
|
1836
1888
|
|
|
1889
|
+
.focus\:bg-purple-100:focus {
|
|
1890
|
+
--tw-bg-opacity: 1;
|
|
1891
|
+
background-color: rgb(222 204 246 / var(--tw-bg-opacity));
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1837
1894
|
.focus\:bg-purple-300:focus {
|
|
1838
1895
|
--tw-bg-opacity: 1;
|
|
1839
1896
|
background-color: rgb(188 153 238 / var(--tw-bg-opacity));
|
|
@@ -1844,6 +1901,10 @@ select {
|
|
|
1844
1901
|
outline-offset: 2px;
|
|
1845
1902
|
}
|
|
1846
1903
|
|
|
1904
|
+
.focus\:outline-purple-600:focus {
|
|
1905
|
+
outline-color: #692CD8;
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1847
1908
|
.focus\:ring-1:focus {
|
|
1848
1909
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1849
1910
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1866,6 +1927,11 @@ select {
|
|
|
1866
1927
|
--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));
|
|
1867
1928
|
}
|
|
1868
1929
|
|
|
1930
|
+
.focus\:ring-purple-600:focus {
|
|
1931
|
+
--tw-ring-opacity: 1;
|
|
1932
|
+
--tw-ring-color: rgb(105 44 216 / var(--tw-ring-opacity));
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1869
1935
|
.focus\:\!ring-purple-500:focus {
|
|
1870
1936
|
--tw-ring-opacity: 1 !important;
|
|
1871
1937
|
--tw-ring-color: rgb(121 51 221 / var(--tw-ring-opacity)) !important;
|
|
@@ -1945,16 +2011,6 @@ select {
|
|
|
1945
2011
|
background-color: rgb(188 153 238 / var(--tw-bg-opacity)) !important;
|
|
1946
2012
|
}
|
|
1947
2013
|
|
|
1948
|
-
.group:hover .group-hover\:text-gray-500 {
|
|
1949
|
-
--tw-text-opacity: 1;
|
|
1950
|
-
color: rgb(107 114 128 / var(--tw-text-opacity));
|
|
1951
|
-
}
|
|
1952
|
-
|
|
1953
|
-
.group:hover .group-hover\:text-red-500 {
|
|
1954
|
-
--tw-text-opacity: 1;
|
|
1955
|
-
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
1956
|
-
}
|
|
1957
|
-
|
|
1958
2014
|
.group:hover .group-hover\:opacity-100 {
|
|
1959
2015
|
opacity: 1;
|
|
1960
2016
|
}
|
package/lib/util/Loader.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agility/plenum-ui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.48",
|
|
4
4
|
"description": "Components that are part of the Agility CMS design system.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.esm.js",
|
|
@@ -78,8 +78,12 @@
|
|
|
78
78
|
"react-dom": "^17.0.2"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
+
"@floating-ui/react": "^0.24.8",
|
|
81
82
|
"@headlessui/react": "^1.7.8",
|
|
82
83
|
"@heroicons/react": "^1.0.5",
|
|
83
|
-
"
|
|
84
|
+
"@tabler/icons": "^2.26.0",
|
|
85
|
+
"@tabler/icons-react": "^2.27.0",
|
|
86
|
+
"classnames": "^2.3.1",
|
|
87
|
+
"react-icons": "^4.10.1"
|
|
84
88
|
}
|
|
85
89
|
}
|